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

Christian Hesse eworm at archlinux.org
Sat Jul 16 12:05:33 UTC 2016


    Date: Saturday, July 16, 2016 @ 12:05:33
  Author: eworm
Revision: 271941

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

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

---------------------------------+
 testing-i686/PKGBUILD           |   44 ++++++++++++++++++++++++++++++++++++++
 testing-i686/fakeroot.install   |   14 ++++++++++++
 testing-x86_64/PKGBUILD         |   44 ++++++++++++++++++++++++++++++++++++++
 testing-x86_64/fakeroot.install |   14 ++++++++++++
 4 files changed, 116 insertions(+)

Copied: fakeroot/repos/testing-i686/PKGBUILD (from rev 271940, fakeroot/trunk/PKGBUILD)
===================================================================
--- testing-i686/PKGBUILD	                        (rev 0)
+++ testing-i686/PKGBUILD	2016-07-16 12:05:33 UTC (rev 271941)
@@ -0,0 +1,44 @@
+# $Id$
+# 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.21
+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')
+source=(http://ftp.debian.org/debian/pool/main/f/$pkgname/${pkgname}_${pkgver}.orig.tar.gz)
+md5sums=('be5c9a0e516869fca4a6758105968e5a')
+
+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 271940, fakeroot/trunk/fakeroot.install)
===================================================================
--- testing-i686/fakeroot.install	                        (rev 0)
+++ testing-i686/fakeroot.install	2016-07-16 12:05:33 UTC (rev 271941)
@@ -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-x86_64/PKGBUILD (from rev 271940, fakeroot/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD	                        (rev 0)
+++ testing-x86_64/PKGBUILD	2016-07-16 12:05:33 UTC (rev 271941)
@@ -0,0 +1,44 @@
+# $Id$
+# 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.21
+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')
+source=(http://ftp.debian.org/debian/pool/main/f/$pkgname/${pkgname}_${pkgver}.orig.tar.gz)
+md5sums=('be5c9a0e516869fca4a6758105968e5a')
+
+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-x86_64/fakeroot.install (from rev 271940, fakeroot/trunk/fakeroot.install)
===================================================================
--- testing-x86_64/fakeroot.install	                        (rev 0)
+++ testing-x86_64/fakeroot.install	2016-07-16 12:05:33 UTC (rev 271941)
@@ -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 .
+}



More information about the arch-commits mailing list