diff options
| author | Eugen Wissner <belka@caraus.de> | 2023-08-28 21:05:47 +0200 |
|---|---|---|
| committer | Eugen Wissner <belka@caraus.de> | 2023-08-28 21:05:47 +0200 |
| commit | c2b98ba395aa486c18fa002175d93aa789b231d6 (patch) | |
| tree | abd459165ae6c51f38358c65ed55a57efacab4c7 /Rakefile | |
| parent | 2126488066713719e26a1049adb080e68ec124f1 (diff) | |
| download | slackbuilder-c2b98ba395aa486c18fa002175d93aa789b231d6.tar.gz | |
Reimplement the info file printer
Diffstat (limited to 'Rakefile')
| -rw-r--r-- | Rakefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 |
