Skip to content
Snippets Groups Projects
Commit 40179445 authored by Levente Polyak's avatar Levente Polyak :rocket:
Browse files

upgpkg: 3.22.3-1

parent 5902892d
No related branches found
Tags 4.2.1-1
No related merge requests found
......@@ -4,9 +4,9 @@
_gemname=hoe
pkgname=ruby-${_gemname}
_gitcommit=c5bb62f78193e8dcb734d412c38791ce6f74773c
pkgver=3.20.0
pkgrel=4
_gitcommit=c50be1641440a5fd821c5438219a9a88e189461c
pkgver=3.22.3
pkgrel=1
pkgdesc='Hoe is a rake/rubygems helper for project Rakefiles'
url='https://www.zenspider.com/projects/hoe.html'
arch=('any')
......@@ -15,21 +15,14 @@ depends=('ruby')
makedepends=('git' 'ruby-rdoc' 'ruby-rake')
checkdepends=('ruby-minitest')
options=('!emptydirs')
source=("git+https://github.com/seattlerb/hoe#commit=${_gitcommit}"
ruby27.patch)
sha512sums=('SKIP'
'ec5e34b53fafc72fb6d9af3aa79dc1509632c390668a97db807d370759a6f0bdfe328933b648d35dedcc9662f94d6f1f99a2b982a037b49d354592a86f782a57')
source=("git+https://github.com/seattlerb/hoe#commit=${_gitcommit}")
sha512sums=('SKIP')
pkgver() {
cd ${_gemname}
grep 'VERSION = "' lib/hoe.rb|sed -E 's|.*"(.+)"|\1|'
}
prepare() {
cd ${_gemname}
patch -p1 < ../ruby27.patch
}
build() {
cd ${_gemname}
rake gem
......
commit d8e33cd84ae01ca281d497e390101c79e03f70a1
Author: Anatol Pomozov <anatol.pomozov@gmail.com>
Date: Wed Dec 25 15:35:42 2019 -0800
Fix ruby 2.7 keyword parameter warning
warning: Using the last argument as keyword parameters is deprecated; maybe ** should be added to the call
diff --git a/lib/hoe/debug.rb b/lib/hoe/debug.rb
index 8bfdcf1..67be47b 100644
--- a/lib/hoe/debug.rb
+++ b/lib/hoe/debug.rb
@@ -91,7 +91,7 @@ module Hoe::Debug
begin
sh "#{DIFF} -du Manifest.txt #{f}", verbose
ensure
- rm f, verbose
+ rm f, **verbose
end
end
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment