From d51e8e2c67383274dc0f3e697ea80fca4f72ccdf Mon Sep 17 00:00:00 2001 From: Juan RP Date: Mon, 14 Jan 2013 14:08:26 +0100 Subject: [PATCH] xbps: add another patch from git master. --- ...f-5d59a15faf67d921dfb190195c07bf4a70.patch | 31 +++++++++++++++++++ srcpkgs/xbps/template | 2 +- 2 files changed, 32 insertions(+), 1 deletion(-) create mode 100644 srcpkgs/xbps/patches/0003-Partial-revert-of-5d59a15faf67d921dfb190195c07bf4a70.patch diff --git a/srcpkgs/xbps/patches/0003-Partial-revert-of-5d59a15faf67d921dfb190195c07bf4a70.patch b/srcpkgs/xbps/patches/0003-Partial-revert-of-5d59a15faf67d921dfb190195c07bf4a70.patch new file mode 100644 index 00000000000..de5b183dd1f --- /dev/null +++ b/srcpkgs/xbps/patches/0003-Partial-revert-of-5d59a15faf67d921dfb190195c07bf4a70.patch @@ -0,0 +1,31 @@ +From b5bb1debe4f1686aa018cc941389ced8c4b97cbb Mon Sep 17 00:00:00 2001 +From: Juan RP +Date: Mon, 14 Jan 2013 14:01:35 +0100 +Subject: [PATCH] Partial revert of 5d59a15faf67d921dfb190195c07bf4a70bca137. + +Error out if "pre-remove" script action fails, otherwise package is +removed but its files are still there (ouch). +--- + NEWS | 3 --- + lib/package_remove.c | 5 ++--- + 2 files changed, 2 insertions(+), 6 deletions(-) + +diff --git a/lib/package_remove.c b/lib/package_remove.c +index a207fc0..4e69e82 100644 +--- lib/package_remove.c ++++ lib/package_remove.c +@@ -264,9 +264,8 @@ xbps_remove_pkg(struct xbps_handle *xhp, + errno, pkgname, version, + "%s: [remove] REMOVE script failed to " + "execute pre ACTION: %s", +- pkgver, strerror(errno)); +- rv = errno; +- goto purge; ++ pkgver, strerror(rv)); ++ goto out; + } + } + /* +-- +1.8.1 + diff --git a/srcpkgs/xbps/template b/srcpkgs/xbps/template index 7d07673e90a..a71013d61ae 100644 --- a/srcpkgs/xbps/template +++ b/srcpkgs/xbps/template @@ -1,7 +1,7 @@ # Template file for 'xbps' pkgname=xbps version=0.19.1 -revision=3 +revision=4 build_style=configure configure_args="--prefix=/ --exec-prefix=/usr --sbindir=/usr/sbin --with-tests --with-static"