[arch-commits] Commit in rubinius/repos/community-x86_64 (6 files)

Jan Steffens heftig at archlinux.org
Sun May 13 01:09:30 UTC 2018


    Date: Sunday, May 13, 2018 @ 01:09:29
  Author: heftig
Revision: 321440

archrelease: copy trunk to community-x86_64

Added:
  rubinius/repos/community-x86_64/PKGBUILD
    (from rev 321439, rubinius/trunk/PKGBUILD)
  rubinius/repos/community-x86_64/dirs.patch
    (from rev 321439, rubinius/trunk/dirs.patch)
  rubinius/repos/community-x86_64/gemrc
    (from rev 321439, rubinius/trunk/gemrc)
Deleted:
  rubinius/repos/community-x86_64/PKGBUILD
  rubinius/repos/community-x86_64/dirs.patch
  rubinius/repos/community-x86_64/gemrc

------------+
 PKGBUILD   |  152 +++++++++++++++++++++++++++++------------------------------
 dirs.patch |   42 ++++++++--------
 gemrc      |   10 +--
 3 files changed, 102 insertions(+), 102 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2018-05-13 01:08:06 UTC (rev 321439)
+++ PKGBUILD	2018-05-13 01:09:29 UTC (rev 321440)
@@ -1,76 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) <jan.steffens at gmail.com>
-
-pkgbase=rubinius
-pkgname=(rubinius rubinius-ruby)
-pkgver=3.101
-pkgrel=1
-pkgdesc="Ruby runtime written in Ruby, designed for concurrency"
-arch=(x86_64)
-url="https://rubinius.com"
-license=(custom:BSD MPL2)
-depends=(libffi openssl-1.0 libyaml)
-makedepends=(llvm ruby ruby-rake clang valgrind)
-options=(!emptydirs)
-source=(http://releases.rubinius.com/${pkgbase}-${pkgver}.tar.bz2
-        gemrc dirs.patch)
-sha256sums=('ce9861e569807c8db5de3dcbe093441a61de623d9df7c52de78891962c3f66e8'
-            '4bb7eb2fe66e396ed16b589cdb656831407b39ad4e138d88536754c0448ac614'
-            '01eaefc509d3192ade1115282b42e06a72b0ab9353b61d1779db296bb832e2f2')
-
-prepare() {
-  cd $pkgbase-$pkgver
-  patch -Np1 -i ../dirs.patch
-}
-
-build() {
-  export PKG_CONFIG_PATH=/usr/lib/openssl-1.0/pkgconfig
-
-  cd $pkgbase-$pkgver
-  ./configure \
-    --prefix=/usr \
-    --mandir=/usr/share/man \
-    --includedir=/usr/include/rubinius \
-    --appdir=/usr/lib/rubinius \
-    --gemsdir=/usr/lib/rubinius/gems \
-    --bin-link bundle \
-    --bin-link bundler \
-    --preserve-prefix \
-    --without-rpath \
-    --release-build
-  rake build
-}
-
-check() {
-  cd $pkgbase-$pkgver
-  rake vm:test
-}
-
-package_rubinius() {
-  export PKG_CONFIG_PATH=/usr/lib/openssl-1.0/pkgconfig
-
-  cd $pkgbase-$pkgver
-  DESTDIR="$pkgdir" rake install:files
-  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 LICENSE BSD_LICENSE
-
-### Split rubinius-ruby
-  mkdir -p "$srcdir/ruby/usr/bin"
-  for _f in "$pkgdir"/usr/bin/*; do
-    [[ $_f == */rbx ]] && continue
-    mv $_f "$srcdir/ruby/usr/bin"
-  done
-}
-
-package_rubinius-ruby() {
-  pkgdesc="Ruby compat for Rubinius"
-  depends=("rubinius=$pkgver-$pkgrel")
-  provides=(ruby)
-  conflicts=(ruby)
-  backup=(etc/gemrc)
-
-  mv ruby/* "$pkgdir"
-  install -Dt "$pkgdir/etc" -m644 gemrc
-
-  mkdir -p "$pkgdir/usr/share/licenses"
-  ln -s rubinius "$pkgdir/usr/share/licenses/$pkgname"
-}

Copied: rubinius/repos/community-x86_64/PKGBUILD (from rev 321439, rubinius/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2018-05-13 01:09:29 UTC (rev 321440)
@@ -0,0 +1,76 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) <jan.steffens at gmail.com>
+
+pkgbase=rubinius
+pkgname=(rubinius rubinius-ruby)
+pkgver=3.103
+pkgrel=1
+pkgdesc="Ruby runtime written in Ruby, designed for concurrency"
+arch=(x86_64)
+url="https://rubinius.com"
+license=(custom:BSD MPL2)
+depends=(libffi openssl-1.0 libyaml)
+makedepends=(llvm ruby ruby-rake clang valgrind)
+options=(!emptydirs)
+source=(http://releases.rubinius.com/${pkgbase}-${pkgver}.tar.bz2
+        gemrc dirs.patch)
+sha256sums=('5cc15e89005b1824bf6c4d62d66e4cbadafe8af29baf4cfd5a1c1ecc8df2d67a'
+            '4bb7eb2fe66e396ed16b589cdb656831407b39ad4e138d88536754c0448ac614'
+            '01eaefc509d3192ade1115282b42e06a72b0ab9353b61d1779db296bb832e2f2')
+
+prepare() {
+  cd $pkgbase-$pkgver
+  patch -Np1 -i ../dirs.patch
+}
+
+build() {
+  export PKG_CONFIG_PATH=/usr/lib/openssl-1.0/pkgconfig
+
+  cd $pkgbase-$pkgver
+  ./configure \
+    --prefix=/usr \
+    --mandir=/usr/share/man \
+    --includedir=/usr/include/rubinius \
+    --appdir=/usr/lib/rubinius \
+    --gemsdir=/usr/lib/rubinius/gems \
+    --bin-link bundle \
+    --bin-link bundler \
+    --preserve-prefix \
+    --without-rpath \
+    --release-build
+  rake build
+}
+
+check() {
+  cd $pkgbase-$pkgver
+  rake vm:test
+}
+
+package_rubinius() {
+  export PKG_CONFIG_PATH=/usr/lib/openssl-1.0/pkgconfig
+
+  cd $pkgbase-$pkgver
+  DESTDIR="$pkgdir" rake install:files
+  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 LICENSE BSD_LICENSE
+
+### Split rubinius-ruby
+  mkdir -p "$srcdir/ruby/usr/bin"
+  for _f in "$pkgdir"/usr/bin/*; do
+    [[ $_f == */rbx ]] && continue
+    mv $_f "$srcdir/ruby/usr/bin"
+  done
+}
+
+package_rubinius-ruby() {
+  pkgdesc="Ruby compat for Rubinius"
+  depends=("rubinius=$pkgver-$pkgrel")
+  provides=(ruby)
+  conflicts=(ruby)
+  backup=(etc/gemrc)
+
+  mv ruby/* "$pkgdir"
+  install -Dt "$pkgdir/etc" -m644 gemrc
+
+  mkdir -p "$pkgdir/usr/share/licenses"
+  ln -s rubinius "$pkgdir/usr/share/licenses/$pkgname"
+}

Deleted: dirs.patch
===================================================================
--- dirs.patch	2018-05-13 01:08:06 UTC (rev 321439)
+++ dirs.patch	2018-05-13 01:09:29 UTC (rev 321440)
@@ -1,21 +0,0 @@
-diff --git i/core/rbconfig.rb w/core/rbconfig.rb
-index c6c03f0bec61b5b4..f393497c26ff3c64 100644
---- i/core/rbconfig.rb
-+++ w/core/rbconfig.rb
-@@ -15,12 +15,12 @@ module RbConfig
-   CONFIG["exec_prefix"]        = "$(prefix)"
-   CONFIG["bindir"]             = Rubinius::BIN_PATH.dup
-   CONFIG["sbindir"]            = "$(exec_prefix)/sbin"
--  CONFIG["libexecdir"]         = "$(exec_prefix)/libexec"
-+  CONFIG["libexecdir"]         = "$(exec_prefix)/lib"
-   CONFIG["datarootdir"]        = "$(prefix)/share"
-   CONFIG["datadir"]            = "$(datarootdir)"
--  CONFIG["sysconfdir"]         = "$(prefix)/etc"
--  CONFIG["sharedstatedir"]     = "$(prefix)/com"
--  CONFIG["localstatedir"]      = "$(prefix)/var"
-+  CONFIG["sysconfdir"]         = "/etc"
-+  CONFIG["sharedstatedir"]     = "/var/lib"
-+  CONFIG["localstatedir"]      = "/var"
-   CONFIG["includedir"]         = "$(prefix)/include"
-   CONFIG["oldincludedir"]      = "/usr/include"
-   CONFIG["docdir"]             = "$(datarootdir)/doc/$(PACKAGE)"

Copied: rubinius/repos/community-x86_64/dirs.patch (from rev 321439, rubinius/trunk/dirs.patch)
===================================================================
--- dirs.patch	                        (rev 0)
+++ dirs.patch	2018-05-13 01:09:29 UTC (rev 321440)
@@ -0,0 +1,21 @@
+diff --git i/core/rbconfig.rb w/core/rbconfig.rb
+index c6c03f0bec61b5b4..f393497c26ff3c64 100644
+--- i/core/rbconfig.rb
++++ w/core/rbconfig.rb
+@@ -15,12 +15,12 @@ module RbConfig
+   CONFIG["exec_prefix"]        = "$(prefix)"
+   CONFIG["bindir"]             = Rubinius::BIN_PATH.dup
+   CONFIG["sbindir"]            = "$(exec_prefix)/sbin"
+-  CONFIG["libexecdir"]         = "$(exec_prefix)/libexec"
++  CONFIG["libexecdir"]         = "$(exec_prefix)/lib"
+   CONFIG["datarootdir"]        = "$(prefix)/share"
+   CONFIG["datadir"]            = "$(datarootdir)"
+-  CONFIG["sysconfdir"]         = "$(prefix)/etc"
+-  CONFIG["sharedstatedir"]     = "$(prefix)/com"
+-  CONFIG["localstatedir"]      = "$(prefix)/var"
++  CONFIG["sysconfdir"]         = "/etc"
++  CONFIG["sharedstatedir"]     = "/var/lib"
++  CONFIG["localstatedir"]      = "/var"
+   CONFIG["includedir"]         = "$(prefix)/include"
+   CONFIG["oldincludedir"]      = "/usr/include"
+   CONFIG["docdir"]             = "$(datarootdir)/doc/$(PACKAGE)"

Deleted: gemrc
===================================================================
--- gemrc	2018-05-13 01:08:06 UTC (rev 321439)
+++ gemrc	2018-05-13 01:09:29 UTC (rev 321440)
@@ -1,5 +0,0 @@
-# Read about the gemrc format at http://docs.rubygems.org/read/chapter/11
-
-# --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: rubinius/repos/community-x86_64/gemrc (from rev 321439, rubinius/trunk/gemrc)
===================================================================
--- gemrc	                        (rev 0)
+++ gemrc	2018-05-13 01:09:29 UTC (rev 321440)
@@ -0,0 +1,5 @@
+# Read about the gemrc format at http://docs.rubygems.org/read/chapter/11
+
+# --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



More information about the arch-commits mailing list