summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2023-08-28 21:05:47 +0200
committerEugen Wissner <belka@caraus.de>2023-08-28 21:05:47 +0200
commitc2b98ba395aa486c18fa002175d93aa789b231d6 (patch)
treeabd459165ae6c51f38358c65ed55a57efacab4c7 /Rakefile
parent2126488066713719e26a1049adb080e68ec124f1 (diff)
downloadslackbuilder-c2b98ba395aa486c18fa002175d93aa789b231d6.tar.gz
Reimplement the info file printer
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile6
1 files changed, 3 insertions, 3 deletions
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