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

Felix Yan felixonmars at archlinux.org
Wed Nov 13 16:13:09 UTC 2019


    Date: Wednesday, November 13, 2019 @ 16:13:08
  Author: felixonmars
Revision: 368167

archrelease: copy trunk to staging-x86_64

Added:
  fakeroot/repos/staging-x86_64/
  fakeroot/repos/staging-x86_64/PKGBUILD
    (from rev 368166, fakeroot/trunk/PKGBUILD)
  fakeroot/repos/staging-x86_64/fakeroot.install
    (from rev 368166, fakeroot/trunk/fakeroot.install)
  fakeroot/repos/staging-x86_64/silence-dlerror.patch
    (from rev 368166, fakeroot/trunk/silence-dlerror.patch)

-----------------------+
 PKGBUILD              |   57 ++++++++++++++++++++++++++++++++++++++++++++++++
 fakeroot.install      |   14 +++++++++++
 silence-dlerror.patch |   17 ++++++++++++++
 3 files changed, 88 insertions(+)

Copied: fakeroot/repos/staging-x86_64/PKGBUILD (from rev 368166, fakeroot/trunk/PKGBUILD)
===================================================================
--- staging-x86_64/PKGBUILD	                        (rev 0)
+++ staging-x86_64/PKGBUILD	2019-11-13 16:13:08 UTC (rev 368167)
@@ -0,0 +1,57 @@
+# Maintainer:  Bartłomiej Piotrowski <bpiotrowski at archlinux.org>
+# Contributor: Allan McRae <allan at archlinux.org>
+# Contributor: Jochem Kossen <j.kossen at home.nl>
+
+pkgname=fakeroot
+pkgver=1.24
+pkgrel=2
+pkgdesc='Tool for simulating superuser privileges'
+arch=(x86_64)
+license=(GPL)
+url='https://packages.debian.org/fakeroot'
+groups=(base-devel)
+install=fakeroot.install
+depends=(glibc filesystem sed util-linux sh)
+makedepends=(po4a)
+checkdepends=(sharutils)
+source=("https://deb.debian.org/debian/pool/main/f/$pkgname/${pkgname}_${pkgver}.orig.tar.gz"
+        'silence-dlerror.patch')
+sha256sums=('2e045b3160370b8ab4d44d1f8d267e5d1d555f1bb522d650e7167b09477266ed'
+            '347f6496c93ed0d91dcb554db92602b50520a16308e3b8bc33822bd69966267b')
+
+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/staging-x86_64/fakeroot.install (from rev 368166, fakeroot/trunk/fakeroot.install)
===================================================================
--- staging-x86_64/fakeroot.install	                        (rev 0)
+++ staging-x86_64/fakeroot.install	2019-11-13 16:13:08 UTC (rev 368167)
@@ -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/staging-x86_64/silence-dlerror.patch (from rev 368166, fakeroot/trunk/silence-dlerror.patch)
===================================================================
--- staging-x86_64/silence-dlerror.patch	                        (rev 0)
+++ staging-x86_64/silence-dlerror.patch	2019-11-13 16:13:08 UTC (rev 368167)
@@ -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 */
+   }
+ }
+ 



More information about the arch-commits mailing list