diff options
author | Andreas Grapentin <andreas@grapentin.org> | 2018-01-22 19:02:22 +0100 |
---|---|---|
committer | Andreas Grapentin <andreas@grapentin.org> | 2018-01-22 19:02:22 +0100 |
commit | 6fc85bbde0dfe85187ba1077b07c7eb5671b7e1c (patch) | |
tree | 55ec3fca36cc09f55f7d45db169ff04ee130aa8a /pcr/rbenv | |
parent | 8421f66020809b6e7e18d8c5a9dd68e6518dfc23 (diff) | |
download | abslibre-6fc85bbde0dfe85187ba1077b07c7eb5671b7e1c.tar.gz abslibre-6fc85bbde0dfe85187ba1077b07c7eb5671b7e1c.tar.bz2 abslibre-6fc85bbde0dfe85187ba1077b07c7eb5671b7e1c.zip |
pcr/rbenv: updated to 1.1.1
Diffstat (limited to 'pcr/rbenv')
-rw-r--r-- | pcr/rbenv/PKGBUILD | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/pcr/rbenv/PKGBUILD b/pcr/rbenv/PKGBUILD index a8655df1b..1d8f5813e 100644 --- a/pcr/rbenv/PKGBUILD +++ b/pcr/rbenv/PKGBUILD @@ -1,20 +1,26 @@ +# Maintainer (AUR): Chris Down <chris@chrisdown.name> +# Contributor (AUR): Vladimir Chizhov <jagoterr@gmail.com> +# Contributor (AUR): Jochen Schalanda <jochen+aur (-AT-) schalanda.name> +# Contributor (AUR): Ichimonji10 <Ichimonji10@gmail.com> # Maintainer : Aurélien Desbrières <aurelien@hackers.camp> -# Contributor: Vladimir Chizhov <jagoterr@gmail.com> -# Contributor: Jochen Schalanda <jochen+aur (-AT-) schalanda.name> -# Contributor: Ichimonji10 <Ichimonji10@gmail.com> + +# parabola changes and rationale: +# no changes. + pkgname=rbenv -pkgver=0.4.0 +pkgver=1.1.1 pkgrel=1 pkgdesc="Simple Ruby version manager" arch=('any') -url="https://github.com/sstephenson/rbenv" +url="https://github.com/rbenv/rbenv" license=('MIT') depends=() optdepends=('ruby-build') conflicts=('rbenv-git') install="rbenv.install" noextract=("v${pkgver}") -source=("https://github.com/sstephenson/rbenv/tarball/v${pkgver}") +source=("https://github.com/rbenv/rbenv/tarball/v${pkgver}") +md5sums=('c95109ee20e70bf2955cf1cfffbcde75') build() { cd $srcdir @@ -38,4 +44,3 @@ package() { ln -s /usr/lib/rbenv/libexec/rbenv $pkgdir/usr/bin/ } - |