[arch-commits] Commit in fakeroot/repos (8 files)

2017-08-18 Thread Bartłomiej Piotrowski
Date: Friday, August 18, 2017 @ 06:18:55
  Author: bpiotrowski
Revision: 302361

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

Added:
  fakeroot/repos/testing-i686/
  fakeroot/repos/testing-i686/PKGBUILD
(from rev 302360, fakeroot/trunk/PKGBUILD)
  fakeroot/repos/testing-i686/fakeroot.install
(from rev 302360, fakeroot/trunk/fakeroot.install)
  fakeroot/repos/testing-i686/silence-dlerror.patch
(from rev 302360, fakeroot/trunk/silence-dlerror.patch)
  fakeroot/repos/testing-x86_64/
  fakeroot/repos/testing-x86_64/PKGBUILD
(from rev 302360, fakeroot/trunk/PKGBUILD)
  fakeroot/repos/testing-x86_64/fakeroot.install
(from rev 302360, fakeroot/trunk/fakeroot.install)
  fakeroot/repos/testing-x86_64/silence-dlerror.patch
(from rev 302360, fakeroot/trunk/silence-dlerror.patch)

--+
 testing-i686/PKGBUILD|   58 +
 testing-i686/fakeroot.install|   14 +++
 testing-i686/silence-dlerror.patch   |   17 +
 testing-x86_64/PKGBUILD  |   58 +
 testing-x86_64/fakeroot.install  |   14 +++
 testing-x86_64/silence-dlerror.patch |   17 +
 6 files changed, 178 insertions(+)

Copied: fakeroot/repos/testing-i686/PKGBUILD (from rev 302360, 
fakeroot/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-08-18 06:18:55 UTC (rev 302361)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: Allan McRae 
+# Contributor: Jochem Kossen 
+
+pkgname=fakeroot
+pkgver=1.22
+pkgrel=1
+pkgdesc='Tool for simulating superuser privileges'
+arch=(i686 x86_64)
+license=(GPL)
+url='http://packages.debian.org/fakeroot'
+groups=(base-devel)
+install=fakeroot.install
+depends=(glibc filesystem sed util-linux sh)
+makedepends=(po4a)
+checkdepends=(sharutils)
+source=(http://ftp.debian.org/debian/pool/main/f/$pkgname/${pkgname}_${pkgver}.orig.tar.bz2
+silence-dlerror.patch)
+md5sums=('fae64c9aeb2c895ead8e1b99bf50c631'
+ '5fba0b541b5af39d804265223fda525c')
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -p1 -i "$srcdir"/silence-dlerror.patch
+
+  ./bootstrap
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr \
+--libdir=/usr/lib/libfakeroot \
+--disable-static \
+--with-ipc=sysv
+
+  make
+
+  cd doc
+  po4a -k 0 --rm-backups --variable 'srcdir=../doc/' po4a/po4a.cfg
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+
+  install -dm755 "$pkgdir/etc/ld.so.conf.d/"
+  echo '/usr/lib/libfakeroot' > "$pkgdir/etc/ld.so.conf.d/fakeroot.conf"
+
+  # install README for sysv/tcp usage
+  install -Dm644 README "$pkgdir/usr/share/doc/$pkgname/README"
+}

Copied: fakeroot/repos/testing-i686/fakeroot.install (from rev 302360, 
fakeroot/trunk/fakeroot.install)
===
--- testing-i686/fakeroot.install   (rev 0)
+++ testing-i686/fakeroot.install   2017-08-18 06:18:55 UTC (rev 302361)
@@ -0,0 +1,14 @@
+post_install() {
+  usr/bin/ldconfig -r .
+}
+
+post_upgrade() {
+  if [ "$(vercmp $2 1.14.4-2)" -lt 0 ]; then
+sed -i -e '/\/usr\/lib\/libfakeroot/d' etc/ld.so.conf
+  fi
+  usr/bin/ldconfig -r .
+}
+
+pre_remove() {
+  usr/bin/ldconfig -r .
+}

Copied: fakeroot/repos/testing-i686/silence-dlerror.patch (from rev 302360, 
fakeroot/trunk/silence-dlerror.patch)
===
--- testing-i686/silence-dlerror.patch  (rev 0)
+++ testing-i686/silence-dlerror.patch  2017-08-18 06:18:55 UTC (rev 302361)
@@ -0,0 +1,17 @@
+diff --git a/libfakeroot.c b/libfakeroot.c
+index f867758..7ef6e47 100644
+--- a/libfakeroot.c
 b/libfakeroot.c
+@@ -256,10 +256,12 @@ void load_library_symbols(void){
+  /* clear dlerror() just in case dlsym() legitimately returns NULL */
+ msg = dlerror();
+ *(next_wrap[i].doit)=dlsym(get_libc(), next_wrap[i].name);
++#ifdef LIBFAKEROOT_DEBUGGING
+ if ( (msg = dlerror()) != NULL){
+   fprintf (stderr, "dlsym(%s): %s\n", next_wrap[i].name, msg);
+ /*abort ();*/
+ }
++#endif /* LIBFAKEROOT_DEBUGGING */
+   }
+ }
+ 

Copied: fakeroot/repos/testing-x86_64/PKGBUILD (from rev 302360, 
fakeroot/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-08-18 06:18:55 UTC (rev 302361)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: Allan McRae 
+# Contributor: Jochem Kossen 
+
+pkgname=fakeroot
+pkgver=1.22

[arch-commits] Commit in fakeroot/repos (8 files)

2016-08-05 Thread Bartłomiej Piotrowski
Date: Friday, August 5, 2016 @ 17:06:49
  Author: bpiotrowski
Revision: 273133

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

Added:
  fakeroot/repos/testing-i686/
  fakeroot/repos/testing-i686/PKGBUILD
(from rev 273132, fakeroot/trunk/PKGBUILD)
  fakeroot/repos/testing-i686/fakeroot.install
(from rev 273132, fakeroot/trunk/fakeroot.install)
  fakeroot/repos/testing-i686/silence-dlerror.patch
(from rev 273132, fakeroot/trunk/silence-dlerror.patch)
  fakeroot/repos/testing-x86_64/
  fakeroot/repos/testing-x86_64/PKGBUILD
(from rev 273132, fakeroot/trunk/PKGBUILD)
  fakeroot/repos/testing-x86_64/fakeroot.install
(from rev 273132, fakeroot/trunk/fakeroot.install)
  fakeroot/repos/testing-x86_64/silence-dlerror.patch
(from rev 273132, fakeroot/trunk/silence-dlerror.patch)

--+
 testing-i686/PKGBUILD|   51 +
 testing-i686/fakeroot.install|   14 +
 testing-i686/silence-dlerror.patch   |   17 +++
 testing-x86_64/PKGBUILD  |   51 +
 testing-x86_64/fakeroot.install  |   14 +
 testing-x86_64/silence-dlerror.patch |   17 +++
 6 files changed, 164 insertions(+)

Copied: fakeroot/repos/testing-i686/PKGBUILD (from rev 273132, 
fakeroot/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-08-05 17:06:49 UTC (rev 273133)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: Allan McRae 
+# Contributor: Jochem Kossen 
+
+pkgname=fakeroot
+pkgver=1.21
+pkgrel=2
+pkgdesc='Tool for simulating superuser privileges'
+arch=('i686' 'x86_64')
+license=('GPL')
+url="http://packages.debian.org/fakeroot;
+groups=('base-devel')
+install=fakeroot.install
+depends=('glibc' 'filesystem' 'sed' 'util-linux' 'sh')
+makedepends=('po4a')
+source=(http://ftp.debian.org/debian/pool/main/f/$pkgname/${pkgname}_${pkgver}.orig.tar.gz
+silence-dlerror.patch)
+md5sums=('be5c9a0e516869fca4a6758105968e5a'
+ '5fba0b541b5af39d804265223fda525c')
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -p1 -i "$srcdir"/silence-dlerror.patch
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./bootstrap
+  ./configure --prefix=/usr \
+--libdir=/usr/lib/libfakeroot \
+--disable-static \
+--with-ipc=sysv
+
+  make
+
+  cd doc
+  po4a -k 0 --rm-backups --variable "srcdir=../doc/" po4a/po4a.cfg
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+
+  install -dm755 "$pkgdir"/etc/ld.so.conf.d/
+  echo '/usr/lib/libfakeroot' > "$pkgdir"/etc/ld.so.conf.d/fakeroot.conf
+
+  # install README for sysv/tcp usage
+  install -Dm644 README "$pkgdir"/usr/share/doc/$pkgname/README
+}

Copied: fakeroot/repos/testing-i686/fakeroot.install (from rev 273132, 
fakeroot/trunk/fakeroot.install)
===
--- testing-i686/fakeroot.install   (rev 0)
+++ testing-i686/fakeroot.install   2016-08-05 17:06:49 UTC (rev 273133)
@@ -0,0 +1,14 @@
+post_install() {
+  usr/bin/ldconfig -r .
+}
+
+post_upgrade() {
+  if [ "$(vercmp $2 1.14.4-2)" -lt 0 ]; then
+sed -i -e '/\/usr\/lib\/libfakeroot/d' etc/ld.so.conf
+  fi
+  usr/bin/ldconfig -r .
+}
+
+pre_remove() {
+  usr/bin/ldconfig -r .
+}

Copied: fakeroot/repos/testing-i686/silence-dlerror.patch (from rev 273132, 
fakeroot/trunk/silence-dlerror.patch)
===
--- testing-i686/silence-dlerror.patch  (rev 0)
+++ testing-i686/silence-dlerror.patch  2016-08-05 17:06:49 UTC (rev 273133)
@@ -0,0 +1,17 @@
+diff --git a/libfakeroot.c b/libfakeroot.c
+index f867758..7ef6e47 100644
+--- a/libfakeroot.c
 b/libfakeroot.c
+@@ -256,10 +256,12 @@ void load_library_symbols(void){
+  /* clear dlerror() just in case dlsym() legitimately returns NULL */
+ msg = dlerror();
+ *(next_wrap[i].doit)=dlsym(get_libc(), next_wrap[i].name);
++#ifdef LIBFAKEROOT_DEBUGGING
+ if ( (msg = dlerror()) != NULL){
+   fprintf (stderr, "dlsym(%s): %s\n", next_wrap[i].name, msg);
+ /*abort ();*/
+ }
++#endif /* LIBFAKEROOT_DEBUGGING */
+   }
+ }
+ 

Copied: fakeroot/repos/testing-x86_64/PKGBUILD (from rev 273132, 
fakeroot/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-08-05 17:06:49 UTC (rev 273133)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: Allan McRae 
+# Contributor: Jochem Kossen 
+
+pkgname=fakeroot
+pkgver=1.21
+pkgrel=2
+pkgdesc='Tool for simulating superuser privileges'

[arch-commits] Commit in fakeroot/repos (8 files)

2012-06-03 Thread Allan McRae
Date: Monday, June 4, 2012 @ 01:04:59
  Author: allan
Revision: 160705

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

Added:
  fakeroot/repos/testing-i686/PKGBUILD
(from rev 160704, fakeroot/trunk/PKGBUILD)
  fakeroot/repos/testing-i686/fakeroot.install
(from rev 160704, fakeroot/trunk/fakeroot.install)
  fakeroot/repos/testing-x86_64/PKGBUILD
(from rev 160704, fakeroot/trunk/PKGBUILD)
  fakeroot/repos/testing-x86_64/fakeroot.install
(from rev 160704, fakeroot/trunk/fakeroot.install)
Deleted:
  fakeroot/repos/testing-i686/PKGBUILD
  fakeroot/repos/testing-i686/fakeroot.install
  fakeroot/repos/testing-x86_64/PKGBUILD
  fakeroot/repos/testing-x86_64/fakeroot.install

-+
 testing-i686/PKGBUILD   |   70 +++---
 testing-i686/fakeroot.install   |   28 +++
 testing-x86_64/PKGBUILD |   70 +++---
 testing-x86_64/fakeroot.install |   28 +++
 4 files changed, 98 insertions(+), 98 deletions(-)

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2012-06-04 05:04:01 UTC (rev 160704)
+++ testing-i686/PKGBUILD   2012-06-04 05:04:59 UTC (rev 160705)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae al...@archlinux.org
-# Contributor: Jochem Kossen j.kos...@home.nl
-
-pkgname=fakeroot
-pkgver=1.18.4
-pkgrel=1
-pkgdesc=Gives a fake root environment, useful for building packages as a 
non-privileged user
-arch=('i686' 'x86_64')
-license=('GPL')
-url=http://packages.debian.org/fakeroot;
-groups=('base-devel')
-install=fakeroot.install
-depends=('glibc' 'filesystem' 'sed' 'util-linux' 'sh')
-options=('!libtool')
-source=(http://ftp.debian.org/debian/pool/main/f/${pkgname}/${pkgname}_${pkgver}.orig.tar.bz2)
-md5sums=('706171d8d520b1ca1576ac73f2ceb4f3')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr --libdir=/usr/lib/libfakeroot \
-  --disable-static --with-ipc=sysv
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-
-  install -dm755 ${pkgdir}/etc/ld.so.conf.d/
-  echo '/usr/lib/libfakeroot'  ${pkgdir}/etc/ld.so.conf.d/fakeroot.conf
-
-  # install README for sysv/tcp usage
-  install -Dm644 $srcdir/$pkgname-$pkgver/README 
$pkgdir/usr/share/doc/$pkgname/README
-}

Copied: fakeroot/repos/testing-i686/PKGBUILD (from rev 160704, 
fakeroot/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-06-04 05:04:59 UTC (rev 160705)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+# Contributor: Jochem Kossen j.kos...@home.nl
+
+pkgname=fakeroot
+pkgver=1.18.4
+pkgrel=1
+pkgdesc=Gives a fake root environment, useful for building packages as a 
non-privileged user
+arch=('i686' 'x86_64')
+license=('GPL')
+url=http://packages.debian.org/fakeroot;
+groups=('base-devel')
+install=fakeroot.install
+depends=('glibc' 'filesystem' 'sed' 'util-linux' 'sh')
+options=('!libtool')
+source=(http://ftp.debian.org/debian/pool/main/f/${pkgname}/${pkgname}_${pkgver}.orig.tar.bz2)
+md5sums=('706171d8d520b1ca1576ac73f2ceb4f3')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr --libdir=/usr/lib/libfakeroot \
+  --disable-static --with-ipc=sysv
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  install -dm755 ${pkgdir}/etc/ld.so.conf.d/
+  echo '/usr/lib/libfakeroot'  ${pkgdir}/etc/ld.so.conf.d/fakeroot.conf
+
+  # install README for sysv/tcp usage
+  install -Dm644 $srcdir/$pkgname-$pkgver/README 
$pkgdir/usr/share/doc/$pkgname/README
+}

Deleted: testing-i686/fakeroot.install
===
--- testing-i686/fakeroot.install   2012-06-04 05:04:01 UTC (rev 160704)
+++ testing-i686/fakeroot.install   2012-06-04 05:04:59 UTC (rev 160705)
@@ -1,14 +0,0 @@
-post_install() {
-  sbin/ldconfig -r .
-}
-
-post_upgrade() {
-  if [ $(vercmp $2 1.14.4-2) -lt 0 ]; then
-sed -i -e '/\/usr\/lib\/libfakeroot/d' etc/ld.so.conf
-  fi
-  sbin/ldconfig -r .
-}
-
-pre_remove() {
-  sbin/ldconfig -r .
-}

Copied: fakeroot/repos/testing-i686/fakeroot.install (from rev 160704, 
fakeroot/trunk/fakeroot.install)
===
--- testing-i686/fakeroot.install   (rev 0)
+++ testing-i686/fakeroot.install   2012-06-04 05:04:59 UTC (rev 160705)
@@ -0,0 +1,14 @@
+post_install() {
+  sbin/ldconfig -r .
+}
+
+post_upgrade() {
+  if [ $(vercmp $2 1.14.4-2) -lt 0 ]; then
+sed -i -e '/\/usr\/lib\/libfakeroot/d' etc/ld.so.conf
+  fi
+  sbin/ldconfig -r .
+}
+
+pre_remove() {
+  sbin/ldconfig -r .
+}

Deleted: testing-x86_64/PKGBUILD