[pacman-dev] Patch for srcpac to work with current makepkg
From: unohu <unohu0@gmail.com> Date: Fri, 15 May 2009 18:33:55 +0530 Subject: [PATCH] 2 bugfixes Replaced outdated makepkg option b with s copy all files instead of just PKGBUILD --- srcpac | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpac b/srcpac index 3445c58..45f1b5d 100755 --- a/srcpac +++ b/srcpac @@ -129,13 +129,13 @@ build_packages() fi mkdir -p ${builddir} - cp ${pkgdir}/PKGBUILD ${builddir} + cp ${pkgdir}/* ${builddir} # apply configuration apply_config ${pkg} ${builddir} # seperate out our makepkg flags - MAKEPKGOPTS="-c -b -r -f" + MAKEPKGOPTS="-c -s -r -f" cd ${builddir} -- 1.6.2.3
u no hu wrote:
From: unohu <unohu0@gmail.com> Date: Fri, 15 May 2009 18:33:55 +0530 Subject: [PATCH] 2 bugfixes Replaced outdated makepkg option b with s copy all files instead of just PKGBUILD
--- srcpac | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
<snip> @Aaron/Dan: Can one of you guys please commit this? It appears the Jason is the only one with commit access to srcpac at the moment. Allan
On Sun, May 17, 2009 at 10:01 PM, Allan McRae <allan@archlinux.org> wrote:
u no hu wrote:
From: unohu <unohu0@gmail.com> Date: Fri, 15 May 2009 18:33:55 +0530 Subject: [PATCH] 2 bugfixes Replaced outdated makepkg option b with s copy all files instead of just PKGBUILD
--- srcpac | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
<snip>
@Aaron/Dan: Can one of you guys please commit this? It appears the Jason is the only one with commit access to srcpac at the moment.
Sure; I should be doing a handful of Arch stuff tomorrow around this time. I'll try to remember to add you to the allowed users list as well. -Dan
On Fri, May 15, 2009 at 1:34 PM, u no hu <unohu0@gmail.com> wrote:
From: unohu <unohu0@gmail.com> Date: Fri, 15 May 2009 18:33:55 +0530 Subject: [PATCH] 2 bugfixes Replaced outdated makepkg option b with s copy all files instead of just PKGBUILD
--- Applied, BUT:
1. Please signoff on your patches. 2. Format the commit message correctly- Subject and body should have a blank line between them. 3. Punctuation is a good thing. Thanks! Allan- you should also be in the correct group now so you can commit directly to srcpac.
srcpac | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/srcpac b/srcpac index 3445c58..45f1b5d 100755 --- a/srcpac +++ b/srcpac @@ -129,13 +129,13 @@ build_packages() fi
mkdir -p ${builddir} - cp ${pkgdir}/PKGBUILD ${builddir} + cp ${pkgdir}/* ${builddir}
# apply configuration apply_config ${pkg} ${builddir}
# seperate out our makepkg flags - MAKEPKGOPTS="-c -b -r -f" + MAKEPKGOPTS="-c -s -r -f"
cd ${builddir}
-- 1.6.2.3
_______________________________________________ pacman-dev mailing list pacman-dev@archlinux.org http://www.archlinux.org/mailman/listinfo/pacman-dev
participants (3)
-
Allan McRae
-
Dan McGee
-
u no hu