Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2017-06-22 11:00:15 +0200
committerErich Eckner <git@eckner.net>2019-02-01 11:23:01 +0100
commit464a6851c928a4ae1eb046b4cac390db960ec200 (patch)
tree3340530d97876738da623f2dd50fc5c44d16ee1f
parent0f3fcbd5d8c9d5d2ed971491d9d17b8480825304 (diff)
introduce i486 as well
-rw-r--r--.gitignore2
-rw-r--r--Makefile31
2 files changed, 32 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore
index 281e864..0f4e6ef 100644
--- a/.gitignore
+++ b/.gitignore
@@ -17,5 +17,7 @@ find-libdeps
crossrepomove
arch-nspawn
doc/*.1
+pacman-*-i486.conf
pacman-*-i686.conf
+makepkg-i486.conf
makepkg-i686.conf
diff --git a/Makefile b/Makefile
index 1e375e0..90455e7 100644
--- a/Makefile
+++ b/Makefile
@@ -20,12 +20,19 @@ BINPROGS = \
makechrootpkg
GENERATED_CONFIGFILES = \
+ pacman-extra-i486.conf \
pacman-extra-i686.conf \
+ pacman-testing-i486.conf \
pacman-testing-i686.conf \
+ pacman-staging-i486.conf \
pacman-staging-i686.conf \
+ pacman-staging-with-build-support-i486.conf \
pacman-staging-with-build-support-i686.conf \
+ pacman-kde-unstable-i486.conf \
pacman-kde-unstable-i686.conf \
+ pacman-gnome-unstable-i486.conf \
pacman-gnome-unstable-i686.conf \
+ makepkg-i486.conf \
makepkg-i686.conf
CONFIGFILES = \
@@ -54,18 +61,24 @@ COMMITPKG_LINKS = \
gnome-unstablepkg
ARCHBUILD_LINKS = \
+ extra-i486-build \
extra-i686-build \
extra-x86_64-build \
+ testing-i486-build \
testing-i686-build \
testing-x86_64-build \
+ staging-i486-build \
staging-i686-build \
staging-x86_64-build \
+ staging-with-build-support-i486-build \
staging-with-build-support-i686-build \
multilib-build \
multilib-testing-build \
multilib-staging-build \
+ kde-unstable-i486-build \
kde-unstable-i686-build \
kde-unstable-x86_64-build \
+ gnome-unstable-i486-build \
gnome-unstable-i686-build \
gnome-unstable-x86_64-build
@@ -88,13 +101,29 @@ man: $(MANS)
edit = sed -e "s|@pkgdatadir[@]|$(DESTDIR)$(PREFIX)/share/devtools|g"
+makepkg-i486.conf: makepkg-x86_64.conf
+ @echo "GEN $@"
+ @sed 's,\(["=]\)x86[-_]64\([-" ]\),\1i486\2,g' "$<" > "$@"
+
makepkg-i686.conf: makepkg-x86_64.conf
@echo "GEN $@"
@sed 's,\(["=]\)x86[-_]64\([-" ]\),\1i686\2,g' "$<" > "$@"
+pacman-%-i486.conf: pacman-%.conf
+ @echo "GEN $@"
+ @sed " \
+ s,/mirrorlist$$,\032,; \
+ /^Architecture = / s/^.*\$$/Architecture = i486/; \
+ $$ a [bootstrap]\\n\
+ Server = http://archlinux32.andreasbaumann.cc/\$$repo/\$$arch \
+ " "$<" > "$@"
+
pacman-%-i686.conf: pacman-%.conf
@echo "GEN $@"
- @sed 's,/mirrorlist$$,\032,' "$<" > "$@"
+ @sed " \
+ s,/mirrorlist\$$,\032,; \
+ /^Architecture = / s/^.*$$/Architecture = i686/ \
+ " "$<" > "$@"
%: %.in Makefile lib/common.sh
@echo "GEN $@"