From c2b98ba395aa486c18fa002175d93aa789b231d6 Mon Sep 17 00:00:00 2001 From: Eugen Wissner Date: Mon, 28 Aug 2023 21:05:47 +0200 Subject: Reimplement the info file printer --- Rakefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Rakefile') diff --git a/Rakefile b/Rakefile index 45da38b..29f9aaf 100644 --- a/Rakefile +++ b/Rakefile @@ -101,7 +101,7 @@ module SlackBuilder checksum = SlackBuilder.download URI(uri), tarball download = "https://download.dlackware.com/hosted-sources/universal-ctags/ctags-#{version}.tar.gz" - write_info package, downloads: [Download.new(download, checksum.hexdigest)] + write_info package, downloads: [Download.new(download, checksum)] update_slackbuild_version 'development/universal-ctags', version sh 'scp', tarball, "#{CONFIG[:remote_path]}/universal-ctags" @@ -126,7 +126,7 @@ module SlackBuilder uri = "https://getcomposer.org/download/#{version}/composer.phar" checksum = SlackBuilder.download URI(uri), 'slackbuilds/development/composer/composer.phar' - write_info package, downloads: [Download.new(uri, checksum.hexdigest)] + write_info package, downloads: [Download.new(uri, checksum)] update_slackbuild_version 'development/composer', version commit 'development/composer', version @@ -141,7 +141,7 @@ module SlackBuilder uri = "https://github.com/jitsi/jitsi-meet-electron/releases/download/v#{version}/jitsi-meet-x86_64.AppImage" checksum = SlackBuilder.download URI(uri), 'slackbuilds/network/jitsi-meet-desktop/jitsi-meet-x86_64.AppImage' - write_info package, downloads: [Download.new(uri, checksum.hexdigest, is64: true)] + write_info package, downloads: [Download.new(uri, checksum, is64: true)] update_slackbuild_version 'network/jitsi-meet-desktop', version commit 'network/jitsi-meet-desktop', version end -- cgit v1.2.3