summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2017-05-17 16:08:01 +0200
committerErich Eckner <git@eckner.net>2017-05-17 16:08:01 +0200
commita525d316f5e882039f3072f087d92e4b8f625bf9 (patch)
tree5404977c00989662180fd6d3fdba782073c91a6d /bin
parent9703006a04a334e40a894849a6a962b8fed1a947 (diff)
downloadbuilder-a525d316f5e882039f3072f087d92e4b8f625bf9.tar.xz
split off customization of PKGBUILDs from searching for PKGBUILDs
Diffstat (limited to 'bin')
-rwxr-xr-xbin/build-packages1
-rwxr-xr-xbin/common-functions44
-rwxr-xr-xbin/get-package-updates1
3 files changed, 29 insertions, 17 deletions
diff --git a/bin/build-packages b/bin/build-packages
index 985c59a..30430a0 100755
--- a/bin/build-packages
+++ b/bin/build-packages
@@ -103,6 +103,7 @@ while [ ${count} -ne 0 ]; do
fi
cd "${PKGBUILD%/*}"
+ apply_package_customizations
success=false
for parameters in '' '-c'; do
rm -f *.pkg.tar.xz{,.sig}
diff --git a/bin/common-functions b/bin/common-functions
index d5a15f8..7783031 100755
--- a/bin/common-functions
+++ b/bin/common-functions
@@ -38,28 +38,38 @@ find_pkgbuild() {
)"
if [ -n "${PKGBUILD}" ]; then
echo "${PKGBUILD}"
- if [ ! -f "${PKGBUILD}.changes-applied" ]; then
- # add i486 to the arch list
- sed '/^arch=[^#]*any/!s|^\(arch=(\)\([^#]*)\)\s*\(#.*\)\?$|\1i486 \2|' -i "${PKGBUILD}"
- if [ -f "${repo_paths["archlinux32"]}/$2/$1/PKGBUILD" ]; then
- # If this package has modifications (or is new), apply them now:
- # append PKGBUILD
- cat "${repo_paths["archlinux32"]}/$2/$1/PKGBUILD" >> \
- "${PKGBUILD}"
- # copy (and overwrite) other files
- for file in "${repo_paths["archlinux32"]}/$2/$1/"*; do
- if [ -f "${file}" ] && [ "${file##*/}" != "PKGBUILD" ]; then
- cp "${file}" "${PKGBUILD%/*}/"
- fi
- done
- fi
- touch "${PKGBUILD}.changes-applied"
- fi
break
fi
done
}
+# to be executed in the package directory
+apply_package_customizations() {
+ if [ ! -f 'PKGBUILD' ]; then
+ >&2 echo 'PKGBUILD not found.'
+ pwd
+ exit 1
+ fi
+
+ if [ ! -f 'PKGBUILD.changes-applied' ]; then
+ # add i486 to the arch list
+ sed '/^arch=[^#]*any/!s|^\(arch=(\)\([^#]*)\)\s*\(#.*\)\?$|\1i486 \2|' -i 'PKGBUILD'
+ if [ -f "${repo_paths["archlinux32"]}/$2/$1/PKGBUILD" ]; then
+ # If this package has modifications (or is new), apply them now:
+ # append PKGBUILD
+ cat "${repo_paths["archlinux32"]}/$2/$1/PKGBUILD" >> \
+ 'PKGBUILD'
+ # copy (and overwrite) other files
+ for file in "${repo_paths["archlinux32"]}/$2/$1/"*; do
+ if [ -f "${file}" ] && [ "${file##*/}" != 'PKGBUILD' ]; then
+ cp "${file}" ./
+ fi
+ done
+ fi
+ touch 'PKGBUILD.changes-applied'
+ fi
+}
+
find_repository_with_commit() {
local repository
diff --git a/bin/get-package-updates b/bin/get-package-updates
index caef397..71f379c 100755
--- a/bin/get-package-updates
+++ b/bin/get-package-updates
@@ -149,6 +149,7 @@ while read -r package git_revision mod_git_revision repository; do
(
cd "${PKGBUILD%/*}"
+ apply_package_customizations
mksrcinfo -o "${work_dir}/package-infos/${package}.${git_revision}.${new_repo_revisions["archlinux32"]}.SRCINFO"
)