Update to: 2.0.8-1

This commit is contained in:
Justin Dray 2015-09-09 20:09:29 +10:00
commit 9160e5f463
3 changed files with 50 additions and 0 deletions

17
.SRCINFO Normal file
View file

@ -0,0 +1,17 @@
pkgbase = ruby-hiera-eyaml
pkgdesc = OpenSSL Encryption backend for Hiera
pkgver = 2.0.8
pkgrel = 1
url = http://github.com/TomPoulton/hiera-eyaml
arch = any
license = MIT
depends = ruby
depends = ruby-trollop
depends = ruby-highline-1.6
noextract = hiera-eyaml-2.0.8.gem
options = !emptydirs
source = https://rubygems.org/downloads/hiera-eyaml-2.0.8.gem
sha1sums = 6d558f6616662f9da2778fc3d2af73a145c260c8
pkgname = ruby-hiera-eyaml

10
.gitignore vendored Normal file
View file

@ -0,0 +1,10 @@
*
!PKGBUILD
!.SRCINFO
!*.patch
!*.desktop
!*.install
!*.service
!*.sh
!*.conf
!.gitignore

23
PKGBUILD Normal file
View file

@ -0,0 +1,23 @@
# Generated by gem2arch (https://github.com/anatol/gem2arch)
# Maintainer: Justin Dray <justin@dray.be>
_gemname=hiera-eyaml
pkgname=ruby-$_gemname
pkgver=2.0.8
pkgrel=1
pkgdesc='OpenSSL Encryption backend for Hiera'
arch=(any)
url='http://github.com/TomPoulton/hiera-eyaml'
license=(MIT)
depends=(ruby ruby-trollop ruby-highline-1.6)
options=(!emptydirs)
source=(https://rubygems.org/downloads/$_gemname-$pkgver.gem)
noextract=($_gemname-$pkgver.gem)
sha1sums=('6d558f6616662f9da2778fc3d2af73a145c260c8')
package() {
local _gemdir="$(ruby -e'puts Gem.default_dir')"
gem install --ignore-dependencies --no-user-install -i "$pkgdir/$_gemdir" -n "$pkgdir/usr/bin" $_gemname-$pkgver.gem
rm "$pkgdir/$_gemdir/cache/$_gemname-$pkgver.gem"
install -D -m644 "$pkgdir/$_gemdir/gems/$_gemname-$pkgver/LICENSE.txt" "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
}