summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2023-10-20 15:53:48 +0200
committerEugen Wissner <belka@caraus.de>2023-10-20 15:53:48 +0200
commit3a6d17952b247682f1cb794ef27b26c9b007f00d (patch)
treedfbfd7fe8ad4bba5084b6d5de7c9f97b010d5c51 /Rakefile
parent4105ffa91f85d66e631383211b5d074b04fc0d3c (diff)
downloadslackbuilder-3a6d17952b247682f1cb794ef27b26c9b007f00d.tar.gz
Allow looking on the text page for the latest version
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile21
1 files changed, 0 insertions, 21 deletions
diff --git a/Rakefile b/Rakefile
index 9cf1c36..45a6821 100644
--- a/Rakefile
+++ b/Rakefile
@@ -43,27 +43,6 @@ task :hhvm, [:version] do |_, arguments|
update_slackbuild_version 'development/hhvm', package.version
end
-task :webex do
- tarball = 'slackbuilds/network/webex/Webex.deb'
- uri = 'https://binaries.webex.com/WebexDesktop-Ubuntu-Official-Package/Webex.deb'
- checksum = SlackBuilder.download URI(uri), tarball
-
- last_stdout, = Open3.pipeline_r ['ar', 'p', tarball, 'control.tar.gz'], ['tar', 'zxO', './control']
- version = last_stdout.read.lines
- .find { |line| line.start_with? 'Version: ' }
- .split.last
-
- package = Package.new 'network/webex',
- version: version,
- homepage: 'https://www.webex.com'
-
- write_info package,
- downloads: [Download.new(uri, checksum, is64: true)]
-
- update_slackbuild_version 'network/webex', package.version
- commit 'network/webex', package.version
-end
-
AUTO_UPDATABLE = {
'dmd' => [SlackBuilder::LatestText.new('https://downloads.dlang.org/releases/LATEST')]
}.freeze