[arch-commits] Commit in ruby/repos (4 files)
Anatol Pomozov
anatolik at archlinux.org
Fri Dec 15 15:25:47 UTC 2017
Date: Friday, December 15, 2017 @ 15:25:47
Author: anatolik
Revision: 312931
archrelease: copy trunk to testing-x86_64
Added:
ruby/repos/testing-x86_64/
ruby/repos/testing-x86_64/PKGBUILD
(from rev 312930, ruby/trunk/PKGBUILD)
ruby/repos/testing-x86_64/gemrc
(from rev 312930, ruby/trunk/gemrc)
ruby/repos/testing-x86_64/ruby.install
(from rev 312930, ruby/trunk/ruby.install)
--------------+
PKGBUILD | 72 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
gemrc | 5 +++
ruby.install | 22 +++++++++++++++++
3 files changed, 99 insertions(+)
Copied: ruby/repos/testing-x86_64/PKGBUILD (from rev 312930, ruby/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-12-15 15:25:47 UTC (rev 312931)
@@ -0,0 +1,72 @@
+# Maintainer: Thomas Dziedzic <gostrc at gmail.com>
+# Contributor: Allan McRae <allan at archlinux.org>
+# Contributor: John Proctor <jproctor at prium.net>
+# Contributor: Jeramy Rutley <jrutley at gmail.com>
+
+pkgname=(ruby ruby-docs)
+pkgver=2.4.3
+pkgrel=1
+arch=(x86_64)
+url='http://www.ruby-lang.org/en/'
+license=(BSD custom)
+makedepends=(gdbm openssl libffi doxygen graphviz libyaml ttf-dejavu tk)
+options=(!emptydirs)
+source=(https://cache.ruby-lang.org/pub/ruby/${pkgver:0:3}/ruby-${pkgver}.tar.xz
+ gemrc)
+sha1sums=('f0a49dddb4e7903a11a80554fd7a317a854cd365'
+ 'dc536754c8fac2c3d82965c5a708cd8f79562d98')
+
+build() {
+ cd ruby-${pkgver}
+
+ PKG_CONFIG=/usr/bin/pkg-config ./configure \
+ --prefix=/usr \
+ --sysconfdir=/etc \
+ --localstatedir=/var \
+ --sharedstatedir=/var/lib \
+ --libexecdir=/usr/lib/ruby \
+ --enable-shared \
+ --disable-rpath \
+ --with-dbm-type=gdbm_compat
+
+ make
+}
+
+check() {
+ cd ruby-${pkgver}
+
+ make test
+}
+
+package_ruby() {
+ pkgdesc='An object-oriented language for quick and easy programming'
+ depends=(gdbm openssl libffi libyaml gmp zlib)
+ optdepends=(
+ 'ruby-docs: Ruby documentation'
+ 'tk: for Ruby/TK'
+ )
+ provides=(rubygems rake)
+ conflicts=(rake)
+ backup=(etc/gemrc)
+ install=ruby.install
+
+ cd ruby-${pkgver}
+
+ make DESTDIR="${pkgdir}" install-nodoc
+
+ install -D -m644 ${srcdir}/gemrc "${pkgdir}/etc/gemrc"
+
+ install -D -m644 COPYING "${pkgdir}/usr/share/licenses/ruby/LICENSE"
+ install -D -m644 BSDL "${pkgdir}/usr/share/licenses/ruby/BSDL"
+}
+
+package_ruby-docs() {
+ pkgdesc='Documentation files for ruby'
+
+ cd ruby-${pkgver}
+
+ make DESTDIR="${pkgdir}" install-doc install-capi
+
+ install -D -m644 COPYING "${pkgdir}/usr/share/licenses/ruby-docs/LICENSE"
+ install -D -m644 BSDL "${pkgdir}/usr/share/licenses/ruby-docs/BSDL"
+}
Copied: ruby/repos/testing-x86_64/gemrc (from rev 312930, ruby/trunk/gemrc)
===================================================================
--- testing-x86_64/gemrc (rev 0)
+++ testing-x86_64/gemrc 2017-12-15 15:25:47 UTC (rev 312931)
@@ -0,0 +1,5 @@
+# Read about the gemrc format at http://guides.rubygems.org/command-reference/#gem-environment
+
+# --user-install is used to install to $HOME/.gem/ by default since we want to separate
+# pacman installed gems and gem installed gems
+gem: --user-install
Copied: ruby/repos/testing-x86_64/ruby.install (from rev 312930, ruby/trunk/ruby.install)
===================================================================
--- testing-x86_64/ruby.install (rev 0)
+++ testing-x86_64/ruby.install 2017-12-15 15:25:47 UTC (rev 312931)
@@ -0,0 +1,22 @@
+#!/bin/sh
+
+print_gem_default_target() {
+ echo 'The default location of gem installs is $HOME/.gem/ruby'
+ echo 'Add the following line to your PATH if you plan to install using gem'
+ echo '$(ruby -rubygems -e "puts Gem.user_dir")/bin'
+ echo 'If you want to install to the system wide location, you must either:'
+ echo 'edit /etc/gemrc or run gem with the --no-user-install flag.'
+}
+
+# arg 1: the new package version
+post_install() {
+ print_gem_default_target
+}
+
+# arg 1: the new package version
+# arg 2: the old package version
+post_upgrade() {
+ if [ "$(vercmp $2 1.9.3_p125-4)" -lt 0 ]; then
+ print_gem_default_target
+ fi
+}
More information about the arch-commits
mailing list