[arch-commits] Commit in make/repos (6 files)

Bartłomiej Piotrowski bpiotrowski at archlinux.org
Wed Mar 29 08:53:59 UTC 2017


    Date: Wednesday, March 29, 2017 @ 08:53:58
  Author: bpiotrowski
Revision: 291779

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  make/repos/staging-i686/
  make/repos/staging-i686/PKGBUILD
    (from rev 291778, make/trunk/PKGBUILD)
  make/repos/staging-i686/guile-2.2.patch
    (from rev 291778, make/trunk/guile-2.2.patch)
  make/repos/staging-x86_64/
  make/repos/staging-x86_64/PKGBUILD
    (from rev 291778, make/trunk/PKGBUILD)
  make/repos/staging-x86_64/guile-2.2.patch
    (from rev 291778, make/trunk/guile-2.2.patch)

--------------------------------+
 staging-i686/PKGBUILD          |   41 +++++++++++++++++++++++++++++++++++++++
 staging-i686/guile-2.2.patch   |   15 ++++++++++++++
 staging-x86_64/PKGBUILD        |   41 +++++++++++++++++++++++++++++++++++++++
 staging-x86_64/guile-2.2.patch |   15 ++++++++++++++
 4 files changed, 112 insertions(+)

Copied: make/repos/staging-i686/PKGBUILD (from rev 291778, make/trunk/PKGBUILD)
===================================================================
--- staging-i686/PKGBUILD	                        (rev 0)
+++ staging-i686/PKGBUILD	2017-03-29 08:53:58 UTC (rev 291779)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Allan McRae <allan at archlinux.org>
+# Contributor: judd <jvinet at zeroflux.org>
+
+pkgname=make
+pkgver=4.2.1
+pkgrel=2
+pkgdesc="GNU make utility to maintain groups of programs"
+arch=('i686' 'x86_64')
+url="http://www.gnu.org/software/make"
+license=('GPL3')
+groups=('base-devel')
+depends=('glibc' 'guile')
+source=(ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.bz2{,.sig}
+        guile-2.2.patch)
+md5sums=('15b012617e7c44c0ed482721629577ac'
+         'SKIP'
+         '89bbbe3f806f208608e117665feb562b')
+validpgpkeys=('3D2554F0A15338AB9AF1BB9D96B047156338B6D4')   # Paul Smith
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  patch -p1 -i ${srcdir}/guile-2.2.patch
+  autoreconf -fi
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make -k check
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Copied: make/repos/staging-i686/guile-2.2.patch (from rev 291778, make/trunk/guile-2.2.patch)
===================================================================
--- staging-i686/guile-2.2.patch	                        (rev 0)
+++ staging-i686/guile-2.2.patch	2017-03-29 08:53:58 UTC (rev 291779)
@@ -0,0 +1,15 @@
+diff --git a/configure.ac b/configure.ac
+index 64ec870..eb1139f 100644
+--- a/configure.ac
++++ b/configure.ac
+@@ -168,8 +168,8 @@ AC_ARG_WITH([guile], [AS_HELP_STRING([--with-guile],
+ # comes with it's own PC file so we have to specify them as individual
+ # packages.  Ugh.
+ AS_IF([test "x$with_guile" != xno],
+-[ PKG_CHECK_MODULES([GUILE], [guile-2.0], [have_guile=yes],
+-  [PKG_CHECK_MODULES([GUILE], [guile-1.8], [have_guile=yes],
++[ PKG_CHECK_MODULES([GUILE], [guile-2.2], [have_guile=yes],
++  [PKG_CHECK_MODULES([GUILE], [guile-2.0], [have_guile=yes],
+     [have_guile=no])])
+ ])
+ 

Copied: make/repos/staging-x86_64/PKGBUILD (from rev 291778, make/trunk/PKGBUILD)
===================================================================
--- staging-x86_64/PKGBUILD	                        (rev 0)
+++ staging-x86_64/PKGBUILD	2017-03-29 08:53:58 UTC (rev 291779)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Allan McRae <allan at archlinux.org>
+# Contributor: judd <jvinet at zeroflux.org>
+
+pkgname=make
+pkgver=4.2.1
+pkgrel=2
+pkgdesc="GNU make utility to maintain groups of programs"
+arch=('i686' 'x86_64')
+url="http://www.gnu.org/software/make"
+license=('GPL3')
+groups=('base-devel')
+depends=('glibc' 'guile')
+source=(ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.bz2{,.sig}
+        guile-2.2.patch)
+md5sums=('15b012617e7c44c0ed482721629577ac'
+         'SKIP'
+         '89bbbe3f806f208608e117665feb562b')
+validpgpkeys=('3D2554F0A15338AB9AF1BB9D96B047156338B6D4')   # Paul Smith
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  patch -p1 -i ${srcdir}/guile-2.2.patch
+  autoreconf -fi
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make -k check
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Copied: make/repos/staging-x86_64/guile-2.2.patch (from rev 291778, make/trunk/guile-2.2.patch)
===================================================================
--- staging-x86_64/guile-2.2.patch	                        (rev 0)
+++ staging-x86_64/guile-2.2.patch	2017-03-29 08:53:58 UTC (rev 291779)
@@ -0,0 +1,15 @@
+diff --git a/configure.ac b/configure.ac
+index 64ec870..eb1139f 100644
+--- a/configure.ac
++++ b/configure.ac
+@@ -168,8 +168,8 @@ AC_ARG_WITH([guile], [AS_HELP_STRING([--with-guile],
+ # comes with it's own PC file so we have to specify them as individual
+ # packages.  Ugh.
+ AS_IF([test "x$with_guile" != xno],
+-[ PKG_CHECK_MODULES([GUILE], [guile-2.0], [have_guile=yes],
+-  [PKG_CHECK_MODULES([GUILE], [guile-1.8], [have_guile=yes],
++[ PKG_CHECK_MODULES([GUILE], [guile-2.2], [have_guile=yes],
++  [PKG_CHECK_MODULES([GUILE], [guile-2.0], [have_guile=yes],
+     [have_guile=no])])
+ ])
+ 



More information about the arch-commits mailing list