Date: Saturday, March 30, 2019 @ 17:14:00
Author: bpiotrowski
Revision: 349451
archrelease: copy trunk to extra-x86_64
Added:
fakechroot/repos/extra-x86_64/PKGBUILD
(from rev 349450, fakechroot/trunk/PKGBUILD)
Deleted:
fakechroot/repos/extra-x86_64/PKGBUILD
fakechroot/repos/extra-x86_64/fakechroot.install
--------------------+
PKGBUILD | 72 +++++++++++++++++++++++++--------------------------
fakechroot.install | 11 -------
2 files changed, 36 insertions(+), 47 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2019-03-30 17:13:51 UTC (rev 349450)
+++ PKGBUILD 2019-03-30 17:14:00 UTC (rev 349451)
@@ -1,36 +0,0 @@
-# Maintainer : Allan McRae <[email protected]>
-# Contributor: Aaron Griffin <[email protected]>
-
-pkgname=fakechroot
-pkgver=2.19
-pkgrel=2
-pkgdesc="Gives a fake chroot environment"
-arch=('x86_64')
-url="https://github.com/dex4er/fakechroot/wiki"
-license=('LGPL')
-install=fakechroot.install
-source=($pkgname-$pkgver.tar.gz::https://github.com/dex4er/fakechroot/archive/${pkgver}.tar.gz)
-md5sums=('db6378420c769232e69508bb78612c34')
-
-
-build() {
- cd ${srcdir}/${pkgname}-${pkgver}
- ./configure --prefix=/usr --sbindir=/usr/bin \
- --libdir=/usr/lib/libfakeroot --sysconfdir=/etc
- make
-}
-
-check() {
- cd ${srcdir}/${pkgname}-${pkgver}
-
- # t/fts.t fails when building on BTRFS... (really!)
- make -k check || true
-}
-
-package() {
- cd ${srcdir}/${pkgname}-${pkgver}
- make DESTDIR=${pkgdir} install
-
- install -dm755 ${pkgdir}/etc/ld.so.conf.d/
- echo '/usr/lib/libfakeroot/fakechroot/' >
${pkgdir}/etc/ld.so.conf.d/fakechroot.conf
-}
Copied: fakechroot/repos/extra-x86_64/PKGBUILD (from rev 349450,
fakechroot/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2019-03-30 17:14:00 UTC (rev 349451)
@@ -0,0 +1,36 @@
+# Maintainer:
+# Contributor: Allan McRae <[email protected]>
+# Contributor: Aaron Griffin <[email protected]>
+
+pkgname=fakechroot
+pkgver=2.20.1
+pkgrel=1
+pkgdesc="Gives a fake chroot environment"
+arch=('x86_64')
+url="https://github.com/dex4er/fakechroot/wiki"
+license=('LGPL')
+source=($pkgname-$pkgver.tar.gz::https://github.com/dex4er/fakechroot/archive/${pkgver}.tar.gz)
+md5sums=('69612efa06636e79a56898512222b0fc')
+
+
+build() {
+ cd $pkgname-$pkgver
+ ./configure --prefix=/usr --sbindir=/usr/bin \
+ --libdir=/usr/lib/libfakeroot --sysconfdir=/etc
+ make
+}
+
+check() {
+ cd $pkgname-$pkgver
+
+ # t/fts.t fails when building on BTRFS... (really!)
+ make -k check
+}
+
+package() {
+ cd $pkgname-$pkgver
+ make DESTDIR=${pkgdir} install
+
+ install -dm755 ${pkgdir}/etc/ld.so.conf.d/
+ echo '/usr/lib/libfakeroot/fakechroot/' >
${pkgdir}/etc/ld.so.conf.d/fakechroot.conf
+}
Deleted: fakechroot.install
===================================================================
--- fakechroot.install 2019-03-30 17:13:51 UTC (rev 349450)
+++ fakechroot.install 2019-03-30 17:14:00 UTC (rev 349451)
@@ -1,11 +0,0 @@
-post_install() {
- sbin/ldconfig -r .
-}
-
-post_upgrade() {
- sbin/ldconfig -r .
-}
-
-post_remove() {
- sbin/ldconfig -r .
-}