mirror of
https://gitlab.archlinux.org/archlinux/devtools.git
synced 2025-09-13 18:06:19 +02:00
Compare commits
62 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
2020fb406a | ||
![]() |
4427b80aba | ||
![]() |
41b54bdde5 | ||
![]() |
54bad4c91d | ||
![]() |
fc95a57556 | ||
![]() |
21458bd07b | ||
![]() |
a05969b29d | ||
![]() |
fdeaed894a | ||
![]() |
3699321904 | ||
![]() |
d8ec9c9066 | ||
![]() |
fbb2bd2b8e | ||
![]() |
d5c6bc7656 | ||
![]() |
f7615fe7d7 | ||
![]() |
1703b92e1a | ||
![]() |
cfd81ab563 | ||
![]() |
ac1ee41e4d | ||
![]() |
ecae65e7fd | ||
![]() |
c617c67ff8 | ||
![]() |
7228cc00e8 | ||
![]() |
a26416dca3 | ||
![]() |
37bb1d33a7 | ||
![]() |
dbef0b91bf | ||
![]() |
499f20071a | ||
![]() |
0d3d63e3aa | ||
![]() |
d2ec5ab67d | ||
![]() |
a23d93ce7f | ||
![]() |
246b8ead60 | ||
![]() |
b14a1b1bcc | ||
![]() |
0cd9e1ae7e | ||
![]() |
3734c80bf7 | ||
![]() |
7b696f6f8d | ||
![]() |
ed9d5a16e3 | ||
![]() |
e44c49aebb | ||
![]() |
c5cd72c085 | ||
![]() |
8bedb89fd6 | ||
![]() |
c7cda47342 | ||
![]() |
41b39c3e78 | ||
![]() |
6743c97383 | ||
![]() |
231496c82a | ||
![]() |
fda394f1a0 | ||
![]() |
addea828fe | ||
![]() |
acbbe8cb90 | ||
![]() |
9840730880 | ||
![]() |
502813a107 | ||
![]() |
181646d03b | ||
![]() |
2d9a99ee15 | ||
![]() |
cecd257786 | ||
![]() |
82dcc19ff9 | ||
![]() |
c5893672a6 | ||
![]() |
73d61f43c7 | ||
![]() |
afc93f3430 | ||
![]() |
9ab0d94578 | ||
![]() |
5e8cb67603 | ||
![]() |
65365f1853 | ||
![]() |
06a681ca3d | ||
![]() |
b763788b16 | ||
![]() |
c2d9a0e7b1 | ||
![]() |
ee4edefa2f | ||
![]() |
a8b64995ee | ||
![]() |
2c9855fe6b | ||
![]() |
4d4ffb5d8f | ||
![]() |
2d79191c97 |
3
.gitignore
vendored
3
.gitignore
vendored
@@ -1,5 +1,5 @@
|
|||||||
*~
|
*~
|
||||||
devtools-*.tar.gz
|
devtools-*.tar.gz*
|
||||||
archbuild
|
archbuild
|
||||||
archco
|
archco
|
||||||
archrelease
|
archrelease
|
||||||
@@ -14,3 +14,4 @@ mkarchroot
|
|||||||
rebuildpkgs
|
rebuildpkgs
|
||||||
zsh_completion
|
zsh_completion
|
||||||
find-libdeps
|
find-libdeps
|
||||||
|
crossrepomove
|
||||||
|
20
Makefile
20
Makefile
@@ -1,4 +1,4 @@
|
|||||||
V=20120114
|
V=20121115
|
||||||
|
|
||||||
PREFIX = /usr/local
|
PREFIX = /usr/local
|
||||||
|
|
||||||
@@ -12,7 +12,8 @@ BINPROGS = \
|
|||||||
lddd \
|
lddd \
|
||||||
finddeps \
|
finddeps \
|
||||||
rebuildpkgs \
|
rebuildpkgs \
|
||||||
find-libdeps
|
find-libdeps \
|
||||||
|
crossrepomove
|
||||||
|
|
||||||
SBINPROGS = \
|
SBINPROGS = \
|
||||||
mkarchroot \
|
mkarchroot \
|
||||||
@@ -59,6 +60,14 @@ ARCHBUILD_LINKS = \
|
|||||||
gnome-unstable-i686-build \
|
gnome-unstable-i686-build \
|
||||||
gnome-unstable-x86_64-build
|
gnome-unstable-x86_64-build
|
||||||
|
|
||||||
|
CROSSREPOMOVE_LINKS = \
|
||||||
|
extra2community \
|
||||||
|
community2extra
|
||||||
|
|
||||||
|
BASHCOMPLETION_LINKS = \
|
||||||
|
archco \
|
||||||
|
communityco
|
||||||
|
|
||||||
all: $(BINPROGS) $(SBINPROGS) bash_completion zsh_completion
|
all: $(BINPROGS) $(SBINPROGS) bash_completion zsh_completion
|
||||||
|
|
||||||
edit = sed -e "s|@pkgdatadir[@]|$(DESTDIR)$(PREFIX)/share/devtools|g"
|
edit = sed -e "s|@pkgdatadir[@]|$(DESTDIR)$(PREFIX)/share/devtools|g"
|
||||||
@@ -82,8 +91,10 @@ install:
|
|||||||
install -m0644 ${CONFIGFILES} $(DESTDIR)$(PREFIX)/share/devtools
|
install -m0644 ${CONFIGFILES} $(DESTDIR)$(PREFIX)/share/devtools
|
||||||
for l in ${COMMITPKG_LINKS}; do ln -sf commitpkg $(DESTDIR)$(PREFIX)/bin/$$l; done
|
for l in ${COMMITPKG_LINKS}; do ln -sf commitpkg $(DESTDIR)$(PREFIX)/bin/$$l; done
|
||||||
for l in ${ARCHBUILD_LINKS}; do ln -sf archbuild $(DESTDIR)$(PREFIX)/bin/$$l; done
|
for l in ${ARCHBUILD_LINKS}; do ln -sf archbuild $(DESTDIR)$(PREFIX)/bin/$$l; done
|
||||||
|
for l in ${CROSSREPOMOVE_LINKS}; do ln -sf crossrepomove $(DESTDIR)$(PREFIX)/bin/$$l; done
|
||||||
ln -sf find-libdeps $(DESTDIR)$(PREFIX)/bin/find-libprovides
|
ln -sf find-libdeps $(DESTDIR)$(PREFIX)/bin/find-libprovides
|
||||||
install -Dm0644 bash_completion $(DESTDIR)/etc/bash_completion.d/devtools
|
install -Dm0644 bash_completion $(DESTDIR)/usr/share/bash-completion/completions/devtools
|
||||||
|
for l in ${BASHCOMPLETION_LINKS}; do ln -sf devtools $(DESTDIR)/usr/share/bash-completion/completions/$$l; done
|
||||||
install -Dm0644 zsh_completion $(DESTDIR)$(PREFIX)/share/zsh/site-functions/_devtools
|
install -Dm0644 zsh_completion $(DESTDIR)$(PREFIX)/share/zsh/site-functions/_devtools
|
||||||
ln -sf archco $(DESTDIR)$(PREFIX)/bin/communityco
|
ln -sf archco $(DESTDIR)$(PREFIX)/bin/communityco
|
||||||
|
|
||||||
@@ -93,7 +104,8 @@ uninstall:
|
|||||||
for f in ${CONFIGFILES}; do rm -f $(DESTDIR)$(PREFIX)/share/devtools/$$f; done
|
for f in ${CONFIGFILES}; do rm -f $(DESTDIR)$(PREFIX)/share/devtools/$$f; done
|
||||||
for l in ${COMMITPKG_LINKS}; do rm -f $(DESTDIR)$(PREFIX)/bin/$$l; done
|
for l in ${COMMITPKG_LINKS}; do rm -f $(DESTDIR)$(PREFIX)/bin/$$l; done
|
||||||
for l in ${ARCHBUILD_LINKS}; do rm -f $(DESTDIR)$(PREFIX)/bin/$$l; done
|
for l in ${ARCHBUILD_LINKS}; do rm -f $(DESTDIR)$(PREFIX)/bin/$$l; done
|
||||||
rm $(DESTDIR)/etc/bash_completion.d/devtools
|
for l in ${CROSSREPOMOVE_LINKS}; do rm -f $(DESTDIR)$(PREFIX)/bin/$$l; done
|
||||||
|
rm $(DESTDIR)/usr/share/bash-completion/completions/devtools
|
||||||
rm $(DESTDIR)$(PREFIX)/share/zsh/site-functions/_devtools
|
rm $(DESTDIR)$(PREFIX)/share/zsh/site-functions/_devtools
|
||||||
rm -f $(DESTDIR)$(PREFIX)/bin/communityco
|
rm -f $(DESTDIR)$(PREFIX)/bin/communityco
|
||||||
rm -f $(DESTDIR)$(PREFIX)/bin/find-libprovides
|
rm -f $(DESTDIR)$(PREFIX)/bin/find-libprovides
|
||||||
|
36
archbuild.in
36
archbuild.in
@@ -2,8 +2,7 @@
|
|||||||
|
|
||||||
m4_include(lib/common.sh)
|
m4_include(lib/common.sh)
|
||||||
|
|
||||||
# FIXME: temporary added curl until pacman 4.0 moves to [core]
|
base_packages=(base base-devel sudo)
|
||||||
base_packages=(base base-devel sudo curl)
|
|
||||||
|
|
||||||
cmd="${0##*/}"
|
cmd="${0##*/}"
|
||||||
if [[ "${cmd%%-*}" == 'multilib' ]]; then
|
if [[ "${cmd%%-*}" == 'multilib' ]]; then
|
||||||
@@ -15,7 +14,7 @@ else
|
|||||||
repo=${tag%-*}
|
repo=${tag%-*}
|
||||||
arch=${tag##*-}
|
arch=${tag##*-}
|
||||||
fi
|
fi
|
||||||
chroots='/var/tmp/archbuild'
|
chroots='/var/lib/archbuild'
|
||||||
clean_first=false
|
clean_first=false
|
||||||
|
|
||||||
usage() {
|
usage() {
|
||||||
@@ -44,42 +43,31 @@ if ${clean_first} || [[ ! -d "${chroots}/${repo}-${arch}" ]]; then
|
|||||||
[[ -d $copy ]] || continue
|
[[ -d $copy ]] || continue
|
||||||
msg2 "Deleting chroot copy '$(basename "${copy}")'..."
|
msg2 "Deleting chroot copy '$(basename "${copy}")'..."
|
||||||
|
|
||||||
# Lock the copy
|
exec 9>"$copydir.lock"
|
||||||
exec 9>"${copy}.lock"
|
if ! flock -n 9; then
|
||||||
|
stat_busy "Locking chroot copy '$copy'"
|
||||||
flock 9
|
flock 9
|
||||||
|
stat_done
|
||||||
|
fi
|
||||||
|
|
||||||
{ type -P btrfs && btrfs subvolume delete "${copy}"; } &>/dev/null
|
{ type -P btrfs && btrfs subvolume delete "${copy}"; } &>/dev/null
|
||||||
rm -rf "${copy}"
|
rm -rf --one-file-system "${copy}"
|
||||||
done
|
done
|
||||||
exec 9>&-
|
exec 9>&-
|
||||||
|
|
||||||
# FIXME: temporary workaround until pacman 4.0 moves to [core]
|
rm -rf --one-file-system "${chroots}/${repo}-${arch}"
|
||||||
if pacman -V | grep -q 'v4.' && ( [[ "$repo" == 'extra' || "$repo" == 'multilib' ]] ); then
|
|
||||||
pacman_conf=$(mktemp)
|
|
||||||
cp "@pkgdatadir@/pacman-${repo}.conf" "${pacman_conf}"
|
|
||||||
sed -r 's/^#(SigLevel = Never)/\1/' -i "${pacman_conf}"
|
|
||||||
else
|
|
||||||
pacman_conf="@pkgdatadir@/pacman-${repo}.conf"
|
|
||||||
fi
|
|
||||||
|
|
||||||
rm -rf "${chroots}/${repo}-${arch}"
|
|
||||||
mkdir -p "${chroots}/${repo}-${arch}"
|
mkdir -p "${chroots}/${repo}-${arch}"
|
||||||
setarch "${arch}" mkarchroot \
|
setarch "${arch}" mkarchroot \
|
||||||
-C "${pacman_conf}" \
|
-C "@pkgdatadir@/pacman-${repo}.conf" \
|
||||||
-M "@pkgdatadir@/makepkg-${arch}.conf" \
|
-M "@pkgdatadir@/makepkg-${arch}.conf" \
|
||||||
"${chroots}/${repo}-${arch}/root" \
|
"${chroots}/${repo}-${arch}/root" \
|
||||||
"${base_packages[@]}"
|
"${base_packages[@]}" || abort
|
||||||
|
|
||||||
# FIXME: temporary workaround until pacman 4.0 moves to [core]
|
|
||||||
if pacman -V | grep -q 'v4.' && ( [[ "$repo" == 'extra' || "$repo" == 'multilib' ]] ); then
|
|
||||||
cp "@pkgdatadir@/pacman-${repo}.conf" "${chroots}/${repo}-${arch}/root/etc/pacman.conf"
|
|
||||||
fi
|
|
||||||
else
|
else
|
||||||
setarch ${arch} mkarchroot \
|
setarch ${arch} mkarchroot \
|
||||||
-u \
|
-u \
|
||||||
-C "@pkgdatadir@/pacman-${repo}.conf" \
|
-C "@pkgdatadir@/pacman-${repo}.conf" \
|
||||||
-M "@pkgdatadir@/makepkg-${arch}.conf" \
|
-M "@pkgdatadir@/makepkg-${arch}.conf" \
|
||||||
"${chroots}/${repo}-${arch}/root"
|
"${chroots}/${repo}-${arch}/root" || abort
|
||||||
fi
|
fi
|
||||||
|
|
||||||
msg "Building in chroot for [${repo}] (${arch})..."
|
msg "Building in chroot for [${repo}] (${arch})..."
|
||||||
|
@@ -13,7 +13,7 @@ case $scriptname in
|
|||||||
archco)
|
archco)
|
||||||
SVNURL="svn+ssh://gerolde.archlinux.org/srv/svn-packages";;
|
SVNURL="svn+ssh://gerolde.archlinux.org/srv/svn-packages";;
|
||||||
communityco)
|
communityco)
|
||||||
SVNURL="svn+ssh://aur.archlinux.org/srv/svn-packages";;
|
SVNURL="svn+ssh://svn-community@nymeria.archlinux.org/srv/repos/svn-community/svn";;
|
||||||
*)
|
*)
|
||||||
die "Couldn't find svn url for $scriptname"
|
die "Couldn't find svn url for $scriptname"
|
||||||
;;
|
;;
|
||||||
|
@@ -1,13 +1,32 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
m4_include(lib/common.sh)
|
m4_include(lib/common.sh)
|
||||||
|
m4_include(lib/valid-tags.sh)
|
||||||
|
|
||||||
if [[ -z $1 ]]; then
|
# parse command line options
|
||||||
echo 'Usage: archrelease <repo>...'
|
FORCE=
|
||||||
|
while getopts ':f' flag; do
|
||||||
|
case $flag in
|
||||||
|
f) FORCE=1 ;;
|
||||||
|
:) die "Option requires an argument -- '$OPTARG'" ;;
|
||||||
|
\?) die "Invalid option -- '$OPTARG'" ;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
shift $(( OPTIND - 1 ))
|
||||||
|
|
||||||
|
if ! (( $# )); then
|
||||||
|
echo 'Usage: archrelease [-f] <repo>...'
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# TODO: validate repo is really repo-arch
|
# validate repo is really repo-arch
|
||||||
|
if [[ -z $FORCE ]]; then
|
||||||
|
for tag in "$@"; do
|
||||||
|
if ! in_array "$tag" "${_tags[@]}"; then
|
||||||
|
die 'archrelease: Invalid tag: "'$tag'" (use -f to force release)'
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
fi
|
||||||
|
|
||||||
if [[ ! -f PKGBUILD ]]; then
|
if [[ ! -f PKGBUILD ]]; then
|
||||||
die 'archrelease: PKGBUILD not found'
|
die 'archrelease: PKGBUILD not found'
|
||||||
@@ -35,6 +54,9 @@ for file in "${known_files[@]}"; do
|
|||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
|
# gracefully handle files containing an "@" character
|
||||||
|
known_files=("${known_files[@]/%/@}")
|
||||||
|
|
||||||
for tag in "$@"; do
|
for tag in "$@"; do
|
||||||
stat_busy "Copying ${trunk} to ${tag}"
|
stat_busy "Copying ${trunk} to ${tag}"
|
||||||
|
|
||||||
@@ -44,7 +66,7 @@ for tag in "$@"; do
|
|||||||
while read -r file; do
|
while read -r file; do
|
||||||
trash+=("repos/$tag/$file")
|
trash+=("repos/$tag/$file")
|
||||||
done < <(svn ls "repos/$tag")
|
done < <(svn ls "repos/$tag")
|
||||||
[[ $trash ]] && svn rm -q "${trash[@]}"
|
[[ $trash ]] && svn rm -q "${trash[@]/%/@}"
|
||||||
else
|
else
|
||||||
mkdir -p "repos/$tag"
|
mkdir -p "repos/$tag"
|
||||||
svn add --parents -q "repos/$tag"
|
svn add --parents -q "repos/$tag"
|
||||||
|
@@ -58,7 +58,7 @@ for _pkgname in "${pkgname[@]}"; do
|
|||||||
elif [[ -f "$STARTDIR/$oldpkg" ]]; then
|
elif [[ -f "$STARTDIR/$oldpkg" ]]; then
|
||||||
ln -s "$STARTDIR/$oldpkg" "$oldpkg"
|
ln -s "$STARTDIR/$oldpkg" "$oldpkg"
|
||||||
else
|
else
|
||||||
wget --quiet "$pkgurl"
|
curl -fsLC - --retry 3 --retry-delay 3 -o "$oldpkg" "$pkgurl"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
104
commitpkg.in
104
commitpkg.in
@@ -3,13 +3,19 @@
|
|||||||
m4_include(lib/common.sh)
|
m4_include(lib/common.sh)
|
||||||
|
|
||||||
getpkgfile() {
|
getpkgfile() {
|
||||||
if [[ ${#} -ne 1 ]]; then
|
case $# in
|
||||||
die 'No canonical package found!'
|
0)
|
||||||
elif [[ ! -f $1 ]]; then
|
error 'No canonical package found!'
|
||||||
die "Package ${1} not found!"
|
return 1
|
||||||
fi
|
;;
|
||||||
|
[!1])
|
||||||
|
error 'Failed to canonicalize package name -- multiple packages found:'
|
||||||
|
msg2 '%s' "$@"
|
||||||
|
return 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
echo ${1}
|
echo "$1"
|
||||||
}
|
}
|
||||||
|
|
||||||
# Source makepkg.conf; fail if it is not found
|
# Source makepkg.conf; fail if it is not found
|
||||||
@@ -36,7 +42,7 @@ pkgbase=${pkgbase:-$pkgname}
|
|||||||
case "$cmd" in
|
case "$cmd" in
|
||||||
commitpkg)
|
commitpkg)
|
||||||
if (( $# == 0 )); then
|
if (( $# == 0 )); then
|
||||||
die 'usage: commitpkg <reponame> [-l limit] [-a arch] [commit message]'
|
die 'usage: commitpkg <reponame> [-f] [-s server] [-l limit] [-a arch] [commit message]'
|
||||||
fi
|
fi
|
||||||
repo="$1"
|
repo="$1"
|
||||||
shift
|
shift
|
||||||
@@ -45,23 +51,13 @@ case "$cmd" in
|
|||||||
repo="${cmd%pkg}"
|
repo="${cmd%pkg}"
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
die 'usage: commitpkg <reponame> [-l limit] [-a arch] [commit message]'
|
die 'usage: commitpkg <reponame> [-f] [-s server] [-l limit] [-a arch] [commit message]'
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
case "$repo" in
|
|
||||||
core|extra|testing|staging|kde-unstable|gnome-unstable)
|
|
||||||
server='gerolde.archlinux.org' ;;
|
|
||||||
community*|multilib*)
|
|
||||||
server='aur.archlinux.org' ;;
|
|
||||||
*)
|
|
||||||
server='gerolde.archlinux.org'
|
|
||||||
msg "Non-standard repository $repo in use, defaulting to server $server" ;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
# check if all local source files are under version control
|
# check if all local source files are under version control
|
||||||
for s in "${source[@]}"; do
|
for s in "${source[@]}"; do
|
||||||
if [[ $s != *://* ]] && ! svn status -v "$s" | grep -q '^[ AMRX~]'; then
|
if [[ $s != *://* ]] && ! svn status -v "$s@" | grep -q '^[ AMRX~]'; then
|
||||||
die "$s is not under version control"
|
die "$s is not under version control"
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
@@ -77,18 +73,49 @@ for i in 'changelog' 'install'; do
|
|||||||
done < <(sed -n "s/^[[:space:]]*$i=//p" PKGBUILD)
|
done < <(sed -n "s/^[[:space:]]*$i=//p" PKGBUILD)
|
||||||
done
|
done
|
||||||
|
|
||||||
# see if any limit options were passed, we'll send them to rsync
|
|
||||||
rsyncopts=(-e ssh -p --chmod=ug=rw,o=r -c -h -L --progress --partial -y)
|
rsyncopts=(-e ssh -p --chmod=ug=rw,o=r -c -h -L --progress --partial -y)
|
||||||
while getopts ':l:a:' flag; do
|
archreleaseopts=()
|
||||||
|
while getopts ':l:a:s:f' flag; do
|
||||||
case $flag in
|
case $flag in
|
||||||
l) rsyncopts+=("--bwlimit=$2") ;;
|
f) archreleaseopts+=('-f') ;;
|
||||||
a) commit_arch=$2 ;;
|
s) server=$OPTARG ;;
|
||||||
|
l) rsyncopts+=("--bwlimit=$OPTARG") ;;
|
||||||
|
a) commit_arch=$OPTARG ;;
|
||||||
:) die "Option requires an argument -- '$OPTARG'" ;;
|
:) die "Option requires an argument -- '$OPTARG'" ;;
|
||||||
\?) die "Invalid option -- '$OPTARG'" ;;
|
\?) die "Invalid option -- '$OPTARG'" ;;
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
shift $(( OPTIND - 1 ))
|
shift $(( OPTIND - 1 ))
|
||||||
|
|
||||||
|
# check packages have the packager field set
|
||||||
|
for _arch in ${arch[@]}; do
|
||||||
|
if [[ -n $commit_arch && ${_arch} != "$commit_arch" ]]; then
|
||||||
|
continue
|
||||||
|
fi
|
||||||
|
for _pkgname in ${pkgname[@]}; do
|
||||||
|
fullver=$(get_full_version $_pkgname)
|
||||||
|
|
||||||
|
if pkgfile=$(shopt -s nullglob;
|
||||||
|
getpkgfile "${PKGDEST+$PKGDEST/}$_pkgname-$fullver-${_arch}".pkg.tar.?z); then
|
||||||
|
if grep -q "packager = Unknown Packager" <(bsdtar -xOqf $pkgfile .PKGINFO); then
|
||||||
|
die "PACKAGER was not set when building package"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
done
|
||||||
|
|
||||||
|
if [[ -z $server ]]; then
|
||||||
|
case "$repo" in
|
||||||
|
core|extra|testing|staging|kde-unstable|gnome-unstable)
|
||||||
|
server='gerolde.archlinux.org' ;;
|
||||||
|
community*|multilib*)
|
||||||
|
server='nymeria.archlinux.org' ;;
|
||||||
|
*)
|
||||||
|
server='gerolde.archlinux.org'
|
||||||
|
msg "Non-standard repository $repo in use, defaulting to server $server" ;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
|
||||||
if [[ -n $(svn status -q) ]]; then
|
if [[ -n $(svn status -q) ]]; then
|
||||||
msgtemplate="upgpkg: $pkgbase $(get_full_version)"$'\n\n'
|
msgtemplate="upgpkg: $pkgbase $(get_full_version)"$'\n\n'
|
||||||
if [[ -n $1 ]]; then
|
if [[ -n $1 ]]; then
|
||||||
@@ -127,36 +154,27 @@ for _arch in ${arch[@]}; do
|
|||||||
|
|
||||||
for _pkgname in ${pkgname[@]}; do
|
for _pkgname in ${pkgname[@]}; do
|
||||||
fullver=$(get_full_version $_pkgname)
|
fullver=$(get_full_version $_pkgname)
|
||||||
pkgfile=$(getpkgfile "$_pkgname-$fullver-${_arch}".pkg.tar.?z 2>/dev/null)
|
|
||||||
pkgdestfile=$(getpkgfile "$PKGDEST/$_pkgname-$fullver-${_arch}".pkg.tar.?z 2>/dev/null)
|
|
||||||
|
|
||||||
if [[ -f $pkgfile ]]; then
|
if ! pkgfile=$(shopt -s nullglob;
|
||||||
pkgfile="./$pkgfile"
|
getpkgfile "${PKGDEST+$PKGDEST/}$_pkgname-$fullver-${_arch}".pkg.tar.?z); then
|
||||||
elif [[ -f $pkgdestfile ]]; then
|
warning "Skipping $_pkgname-$fullver-$_arch: failed to locate package file"
|
||||||
pkgfile="$pkgdestfile"
|
|
||||||
else
|
|
||||||
warning "Could not find ${pkgfile}. Skipping ${_arch}"
|
|
||||||
skip_arches+=($_arch)
|
skip_arches+=($_arch)
|
||||||
continue 2
|
continue 2
|
||||||
fi
|
fi
|
||||||
uploads+=("$pkgfile")
|
uploads+=("$pkgfile")
|
||||||
|
|
||||||
sigfile="${pkgfile}.sig"
|
sigfile="${pkgfile}.sig"
|
||||||
if [[ $SIGNPKG == 'y' && ! -f $sigfile ]]; then
|
if [[ ! -f $sigfile ]]; then
|
||||||
msg "Signing package ${pkgfile}..."
|
msg "Signing package ${pkgfile}..."
|
||||||
if [[ -n $GPGKEY ]]; then
|
if [[ -n $GPGKEY ]]; then
|
||||||
SIGNWITHKEY="-u ${GPGKEY}"
|
SIGNWITHKEY="-u ${GPGKEY}"
|
||||||
fi
|
fi
|
||||||
gpg --detach-sign --use-agent ${SIGNWITHKEY} "${pkgfile}" || die
|
gpg --detach-sign --use-agent ${SIGNWITHKEY} "${pkgfile}" || die
|
||||||
fi
|
fi
|
||||||
if [[ -f $sigfile ]]; then
|
|
||||||
if ! gpg --verify "$sigfile" >/dev/null 2>&1; then
|
if ! gpg --verify "$sigfile" >/dev/null 2>&1; then
|
||||||
die "Signature ${pkgfile}.sig is incorrect!"
|
die "Signature ${pkgfile}.sig is incorrect!"
|
||||||
fi
|
fi
|
||||||
uploads+=("$sigfile")
|
uploads+=("$sigfile")
|
||||||
else
|
|
||||||
die "Signature ${pkgfile}.sig was not found"
|
|
||||||
fi
|
|
||||||
done
|
done
|
||||||
done
|
done
|
||||||
|
|
||||||
@@ -165,9 +183,21 @@ for _arch in ${arch[@]}; do
|
|||||||
commit_arches+=($_arch)
|
commit_arches+=($_arch)
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
archrelease "${commit_arches[@]/#/$repo-}" || die
|
|
||||||
|
if [[ ${#commit_arches[*]} -gt 0 ]]; then
|
||||||
|
archrelease "${archreleaseopts[@]}" "${commit_arches[@]/#/$repo-}" || die
|
||||||
|
fi
|
||||||
|
|
||||||
if [[ ${#uploads[*]} -gt 0 ]]; then
|
if [[ ${#uploads[*]} -gt 0 ]]; then
|
||||||
|
new_uploads=()
|
||||||
|
|
||||||
|
# convert to absolute paths so rsync can work with colons (epoch)
|
||||||
|
while read -r -d '' upload; do
|
||||||
|
new_uploads+=("$upload")
|
||||||
|
done < <(realpath -z "${uploads[@]}")
|
||||||
|
|
||||||
|
uploads=("${new_uploads[@]}")
|
||||||
|
unset new_uploads
|
||||||
msg 'Uploading all package and signature files'
|
msg 'Uploading all package and signature files'
|
||||||
rsync "${rsyncopts[@]}" "${uploads[@]}" "$server:staging/$repo/" || die
|
rsync "${rsyncopts[@]}" "${uploads[@]}" "$server:staging/$repo/" || die
|
||||||
fi
|
fi
|
||||||
|
98
crossrepomove.in
Normal file
98
crossrepomove.in
Normal file
@@ -0,0 +1,98 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
m4_include(lib/common.sh)
|
||||||
|
|
||||||
|
scriptname=${0##*/}
|
||||||
|
|
||||||
|
if [[ -z $1 ]]; then
|
||||||
|
echo 'Usage: '$scriptname' [pkgbase]'
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
pkgbase="${1}"
|
||||||
|
|
||||||
|
packages_svn='svn+ssh://gerolde.archlinux.org/srv/svn-packages'
|
||||||
|
packages_server='gerolde.archlinux.org'
|
||||||
|
community_svn='svn+ssh://svn-community@nymeria.archlinux.org/srv/repos/svn-community/svn'
|
||||||
|
community_server='nymeria.archlinux.org'
|
||||||
|
mirror='http://mirrors.kernel.org/archlinux'
|
||||||
|
|
||||||
|
case $scriptname in
|
||||||
|
extra2community)
|
||||||
|
source_svn="${packages_svn}"
|
||||||
|
target_svn="${community_svn}"
|
||||||
|
source_server="${packages_server}"
|
||||||
|
target_server="${community_server}"
|
||||||
|
source_repo='extra'
|
||||||
|
target_repo='community'
|
||||||
|
;;
|
||||||
|
community2extra)
|
||||||
|
source_svn="${community_svn}"
|
||||||
|
target_svn="${packages_svn}"
|
||||||
|
source_server="${community_server}"
|
||||||
|
target_server="${packages_server}"
|
||||||
|
source_repo='community'
|
||||||
|
target_repo='extra'
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
die "Couldn't find configuration for $scriptname"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
setup_workdir
|
||||||
|
|
||||||
|
pushd $WORKDIR >/dev/null
|
||||||
|
|
||||||
|
msg "Downloading sources for ${pkgbase}"
|
||||||
|
svn -q checkout -N "${target_svn}" target_checkout
|
||||||
|
mkdir -p "target_checkout/${pkgbase}/repos"
|
||||||
|
svn -q export "${source_svn}/${pkgbase}/trunk" "target_checkout/${pkgbase}/trunk" || die
|
||||||
|
. "target_checkout/${pkgbase}/trunk/PKGBUILD"
|
||||||
|
|
||||||
|
msg "Downloading packages for ${pkgbase}"
|
||||||
|
for _arch in ${arch[@]}; do
|
||||||
|
if [[ "${_arch[*]}" == 'any' ]]; then
|
||||||
|
repo_arch='x86_64'
|
||||||
|
else
|
||||||
|
repo_arch=${_arch}
|
||||||
|
fi
|
||||||
|
for _pkgname in ${pkgname[@]}; do
|
||||||
|
fullver=$(get_full_version $_pkgname)
|
||||||
|
# FIXME: this only works with .xz packages
|
||||||
|
ssh "${target_server}" "cd staging/${target_repo}
|
||||||
|
curl -O ${mirror}/${source_repo}/os/${repo_arch}/$_pkgname-$fullver-${_arch}.pkg.tar.xz
|
||||||
|
curl -O ${mirror}/${source_repo}/os/${repo_arch}/$_pkgname-$fullver-${_arch}.pkg.tar.xz.sig" || die
|
||||||
|
done
|
||||||
|
done
|
||||||
|
|
||||||
|
msg "Adding ${pkgbase} to ${target_repo}"
|
||||||
|
svn -q add "target_checkout/${pkgbase}"
|
||||||
|
svn -q propset svn:keywords 'Id' "target_checkout/${pkgbase}/trunk/PKGBUILD"
|
||||||
|
svn -q commit -m"${scriptname}: Moving ${pkgbase} from ${source_repo} to ${target_repo}" target_checkout
|
||||||
|
pushd "target_checkout/${pkgbase}/trunk" >/dev/null
|
||||||
|
archrelease "${arch[@]/#/$target_repo-}" || die
|
||||||
|
popd >/dev/null
|
||||||
|
|
||||||
|
if [[ "${target_server}" == "${community_server}" ]]; then
|
||||||
|
dbscripts_path='/srv/repos/svn-community/dbscripts'
|
||||||
|
else
|
||||||
|
dbscripts_path='/arch'
|
||||||
|
fi
|
||||||
|
|
||||||
|
ssh "${target_server}" "${dbscripts_path}/db-update" || die
|
||||||
|
|
||||||
|
msg "Removing ${pkgbase} from ${source_repo}"
|
||||||
|
if [[ "${source_server}" == "${community_server}" ]]; then
|
||||||
|
dbscripts_path='/srv/repos/svn-community/dbscripts'
|
||||||
|
else
|
||||||
|
dbscripts_path='/arch'
|
||||||
|
fi
|
||||||
|
for _arch in ${arch[@]}; do
|
||||||
|
ssh "${source_server}" "${dbscripts_path}/db-remove ${source_repo} ${_arch} ${pkgbase}"
|
||||||
|
done
|
||||||
|
svn -q checkout -N "${source_svn}" source_checkout
|
||||||
|
svn -q up "source_checkout/${pkgbase}"
|
||||||
|
svn -q rm "source_checkout/${pkgbase}"
|
||||||
|
svn -q commit -m"${scriptname}: Moving ${pkgbase} from ${source_repo} to ${target_repo}" source_checkout
|
||||||
|
|
||||||
|
popd >/dev/null
|
@@ -3,6 +3,7 @@
|
|||||||
m4_include(lib/common.sh)
|
m4_include(lib/common.sh)
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
shopt -s extglob
|
||||||
|
|
||||||
IGNORE_INTERNAL=0
|
IGNORE_INTERNAL=0
|
||||||
|
|
||||||
@@ -40,7 +41,7 @@ fi
|
|||||||
|
|
||||||
process_sofile() {
|
process_sofile() {
|
||||||
# extract the library name: libfoo.so
|
# extract the library name: libfoo.so
|
||||||
soname="${sofile%%\.so\.*}.so"
|
soname="${sofile%.so?(+(.+([0-9])))}".so
|
||||||
# extract the major version: 1
|
# extract the major version: 1
|
||||||
soversion="${sofile##*\.so\.}"
|
soversion="${sofile##*\.so\.}"
|
||||||
if [[ "$soversion" = "$sofile" ]] && (($IGNORE_INTERNAL)); then
|
if [[ "$soversion" = "$sofile" ]] && (($IGNORE_INTERNAL)); then
|
||||||
@@ -73,7 +74,7 @@ find . -type f $find_args | while read filename; do
|
|||||||
if [[ $script_mode = "provides" ]]; then
|
if [[ $script_mode = "provides" ]]; then
|
||||||
# get the string binaries link to: libfoo.so.1.2 -> libfoo.so.1
|
# get the string binaries link to: libfoo.so.1.2 -> libfoo.so.1
|
||||||
sofile=$(LC_ALL=C readelf -d "$filename" 2>/dev/null | sed -n 's/.*Library soname: \[\(.*\)\].*/\1/p')
|
sofile=$(LC_ALL=C readelf -d "$filename" 2>/dev/null | sed -n 's/.*Library soname: \[\(.*\)\].*/\1/p')
|
||||||
[[ -z $sofile" ]] && sofile="${filename##*/}"
|
[[ -z $sofile ]] && sofile="${filename##*/}"
|
||||||
process_sofile
|
process_sofile
|
||||||
elif [[ $script_mode = "deps" ]]; then
|
elif [[ $script_mode = "deps" ]]; then
|
||||||
# process all libraries needed by the binary
|
# process all libraries needed by the binary
|
||||||
|
@@ -62,8 +62,6 @@ setup_workdir() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
cleanup() {
|
cleanup() {
|
||||||
trap - EXIT INT QUIT TERM
|
|
||||||
|
|
||||||
[[ -n $WORKDIR ]] && rm -rf "$WORKDIR"
|
[[ -n $WORKDIR ]] && rm -rf "$WORKDIR"
|
||||||
[[ $1 ]] && exit $1
|
[[ $1 ]] && exit $1
|
||||||
}
|
}
|
||||||
@@ -73,13 +71,23 @@ abort() {
|
|||||||
cleanup 0
|
cleanup 0
|
||||||
}
|
}
|
||||||
|
|
||||||
|
trap_abort() {
|
||||||
|
trap - EXIT INT QUIT TERM HUP
|
||||||
|
abort
|
||||||
|
}
|
||||||
|
|
||||||
|
trap_exit() {
|
||||||
|
trap - EXIT INT QUIT TERM HUP
|
||||||
|
cleanup
|
||||||
|
}
|
||||||
|
|
||||||
die() {
|
die() {
|
||||||
error "$*"
|
error "$*"
|
||||||
cleanup 1
|
cleanup 1
|
||||||
}
|
}
|
||||||
|
|
||||||
trap abort INT QUIT TERM HUP
|
trap 'trap_abort' INT QUIT TERM HUP
|
||||||
trap 'cleanup 0' EXIT
|
trap 'trap_exit' EXIT
|
||||||
|
|
||||||
##
|
##
|
||||||
# usage : in_array( $needle, $haystack )
|
# usage : in_array( $needle, $haystack )
|
||||||
|
20
lib/valid-tags.sh
Normal file
20
lib/valid-tags.sh
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
_arch=(
|
||||||
|
i686
|
||||||
|
x86_64
|
||||||
|
any
|
||||||
|
)
|
||||||
|
|
||||||
|
_tags=(
|
||||||
|
core-i686 core-x86_64 core-any
|
||||||
|
extra-i686 extra-x86_64 extra-any
|
||||||
|
multilib-x86_64
|
||||||
|
staging-i686 staging-x86_64 staging-any
|
||||||
|
testing-i686 testing-x86_64 testing-any
|
||||||
|
multilib-testing-x86_64
|
||||||
|
multilib-staging-x86_64
|
||||||
|
community-i686 community-x86_64 community-any
|
||||||
|
community-staging-i686 community-staging-x86_64 community-staging-any
|
||||||
|
community-testing-i686 community-testing-x86_64 community-testing-any
|
||||||
|
kde-unstable-i686 kde-unstable-x86_64 kde-unstable-any
|
||||||
|
gnome-unstable-i686 gnome-unstable-x86_64 gnome-unstable-any
|
||||||
|
)
|
@@ -20,10 +20,12 @@ install_pkg=
|
|||||||
add_to_db=false
|
add_to_db=false
|
||||||
run_namcap=false
|
run_namcap=false
|
||||||
chrootdir=
|
chrootdir=
|
||||||
|
passeddir=
|
||||||
|
|
||||||
default_copy=$USER
|
default_copy=$USER
|
||||||
[[ -n $SUDO_USER ]] && default_copy=$SUDO_USER
|
[[ -n $SUDO_USER ]] && default_copy=$SUDO_USER
|
||||||
[[ -z $default_copy || $default_copy = root ]] && default_copy=copy
|
[[ -z $default_copy || $default_copy = root ]] && default_copy=copy
|
||||||
|
src_owner=${SUDO_USER:-$USER}
|
||||||
|
|
||||||
usage() {
|
usage() {
|
||||||
echo "usage ${0##*/} [options] -r <chrootdir> [--] [makepkg args]"
|
echo "usage ${0##*/} [options] -r <chrootdir> [--] [makepkg args]"
|
||||||
@@ -52,8 +54,8 @@ usage() {
|
|||||||
echo '-I <pkg> Install a package into the working copy of the chroot'
|
echo '-I <pkg> Install a package into the working copy of the chroot'
|
||||||
echo '-l <copy> The directory to use as the working copy of the chroot'
|
echo '-l <copy> The directory to use as the working copy of the chroot'
|
||||||
echo ' Useful for maintaining multiple copies.'
|
echo ' Useful for maintaining multiple copies.'
|
||||||
echo '-n Run namcap on the package'
|
|
||||||
echo " Default: $default_copy"
|
echo " Default: $default_copy"
|
||||||
|
echo '-n Run namcap on the package'
|
||||||
exit 1
|
exit 1
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -63,16 +65,16 @@ while getopts 'hcudr:I:l:n' arg; do
|
|||||||
c) clean_first=true ;;
|
c) clean_first=true ;;
|
||||||
u) update_first=true ;;
|
u) update_first=true ;;
|
||||||
d) add_to_db=true ;;
|
d) add_to_db=true ;;
|
||||||
r) chrootdir="$OPTARG" ;;
|
r) passeddir="$OPTARG" ;;
|
||||||
I) install_pkg="$OPTARG" ;;
|
I) install_pkg="$OPTARG" ;;
|
||||||
l) copy="$OPTARG" ;;
|
l) copy="$OPTARG" ;;
|
||||||
n) run_namcap=true ;;
|
n) run_namcap=true; makepkg_args="$makepkg_args -i" ;;
|
||||||
*) makepkg_args="$makepkg_args -$arg $OPTARG" ;;
|
*) makepkg_args="$makepkg_args -$arg $OPTARG" ;;
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
|
||||||
# Canonicalize chrootdir, getting rid of trailing /
|
# Canonicalize chrootdir, getting rid of trailing /
|
||||||
chrootdir=$(readlink -e "$chrootdir")
|
chrootdir=$(readlink -e "$passeddir")
|
||||||
|
|
||||||
if [[ ${copy:0:1} = / ]]; then
|
if [[ ${copy:0:1} = / ]]; then
|
||||||
copydir=$copy
|
copydir=$copy
|
||||||
@@ -101,7 +103,7 @@ if [[ ! -f PKGBUILD && -z $install_pkg ]]; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ ! -d $chrootdir ]]; then
|
if [[ ! -d $chrootdir ]]; then
|
||||||
die "No chroot dir defined, or invalid path '$chrootdir'"
|
die "No chroot dir defined, or invalid path '$passeddir'"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ ! -d $chrootdir/root ]]; then
|
if [[ ! -d $chrootdir/root ]]; then
|
||||||
@@ -257,15 +259,11 @@ nobody ALL = NOPASSWD: /usr/bin/pacman
|
|||||||
EOF
|
EOF
|
||||||
chmod 440 "$copydir/etc/sudoers.d/nobody-pacman"
|
chmod 440 "$copydir/etc/sudoers.d/nobody-pacman"
|
||||||
|
|
||||||
# Set this system wide as makepkg will source /etc/profile before calling build()
|
|
||||||
echo 'LANG=C' > "$copydir/etc/locale.conf"
|
|
||||||
|
|
||||||
# This is a little gross, but this way the script is recreated every time in the
|
# This is a little gross, but this way the script is recreated every time in the
|
||||||
# working copy
|
# working copy
|
||||||
cat >"$copydir/chrootbuild" <<EOF
|
cat >"$copydir/chrootbuild" <<EOF
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
. /etc/profile
|
. /etc/profile
|
||||||
export LANG=C
|
|
||||||
export HOME=/build
|
export HOME=/build
|
||||||
|
|
||||||
cd /build
|
cd /build
|
||||||
@@ -277,7 +275,7 @@ if $run_namcap; then
|
|||||||
pacman -S --needed --noconfirm namcap
|
pacman -S --needed --noconfirm namcap
|
||||||
for pkgfile in /build/PKGBUILD /pkgdest/*.pkg.tar.?z; do
|
for pkgfile in /build/PKGBUILD /pkgdest/*.pkg.tar.?z; do
|
||||||
echo "Checking \${pkgfile##*/}"
|
echo "Checking \${pkgfile##*/}"
|
||||||
namcap "\$pkgfile" 2>&1 | tee "/build/\${pkgfile##*/}-namcap.log"
|
sudo -u nobody namcap "\$pkgfile" 2>&1 | tee "/build/\${pkgfile##*/}-namcap.log"
|
||||||
done
|
done
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@@ -295,10 +293,12 @@ if mkarchroot -r "/chrootbuild" "$copydir"; then
|
|||||||
popd >/dev/null
|
popd >/dev/null
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
chown "$src_owner" "$pkgfile"
|
||||||
mv "$pkgfile" "$PKGDEST"
|
mv "$pkgfile" "$PKGDEST"
|
||||||
done
|
done
|
||||||
|
|
||||||
for l in "$copydir"/build/*-{build,check,namcap,package,package_*}.log; do
|
for l in "$copydir"/build/*-{build,check,namcap,package,package_*}.log; do
|
||||||
|
chown "$src_owner" "$l"
|
||||||
[[ -f $l ]] && mv "$l" .
|
[[ -f $l ]] && mv "$l" .
|
||||||
done
|
done
|
||||||
else
|
else
|
||||||
@@ -307,6 +307,7 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
for f in "$copydir"/srcdest/*; do
|
for f in "$copydir"/srcdest/*; do
|
||||||
|
chown "$src_owner" "$f"
|
||||||
mv "$f" "$SRCDEST"
|
mv "$f" "$SRCDEST"
|
||||||
done
|
done
|
||||||
|
|
||||||
|
@@ -31,7 +31,7 @@ CHOST="i686-pc-linux-gnu"
|
|||||||
# -mtune optimizes for an architecture, but builds for whole processor family
|
# -mtune optimizes for an architecture, but builds for whole processor family
|
||||||
CFLAGS="-march=i686 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2"
|
CFLAGS="-march=i686 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2"
|
||||||
CXXFLAGS="-march=i686 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2"
|
CXXFLAGS="-march=i686 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2"
|
||||||
LDFLAGS="-Wl,-O1,--sort-common,--as-needed,-z,relro,--hash-style=gnu"
|
LDFLAGS="-Wl,-O1,--sort-common,--as-needed,-z,relro"
|
||||||
#-- Make Flags: change this for DistCC/SMP systems
|
#-- Make Flags: change this for DistCC/SMP systems
|
||||||
#MAKEFLAGS="-j2"
|
#MAKEFLAGS="-j2"
|
||||||
|
|
||||||
|
@@ -31,7 +31,7 @@ CHOST="x86_64-unknown-linux-gnu"
|
|||||||
# -mtune optimizes for an architecture, but builds for whole processor family
|
# -mtune optimizes for an architecture, but builds for whole processor family
|
||||||
CFLAGS="-march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2"
|
CFLAGS="-march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2"
|
||||||
CXXFLAGS="-march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2"
|
CXXFLAGS="-march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2"
|
||||||
LDFLAGS="-Wl,-O1,--sort-common,--as-needed,-z,relro,--hash-style=gnu"
|
LDFLAGS="-Wl,-O1,--sort-common,--as-needed,-z,relro"
|
||||||
#-- Make Flags: change this for DistCC/SMP systems
|
#-- Make Flags: change this for DistCC/SMP systems
|
||||||
#MAKEFLAGS="-j2"
|
#MAKEFLAGS="-j2"
|
||||||
|
|
||||||
|
135
mkarchroot.in
135
mkarchroot.in
@@ -10,6 +10,8 @@
|
|||||||
|
|
||||||
m4_include(lib/common.sh)
|
m4_include(lib/common.sh)
|
||||||
|
|
||||||
|
CHROOT_VERSION='v2'
|
||||||
|
|
||||||
FORCE='n'
|
FORCE='n'
|
||||||
RUN=''
|
RUN=''
|
||||||
NOCOPY='n'
|
NOCOPY='n'
|
||||||
@@ -28,7 +30,7 @@ usage() {
|
|||||||
echo ' -C <file> Location of a pacman config file'
|
echo ' -C <file> Location of a pacman config file'
|
||||||
echo ' -M <file> Location of a makepkg config file'
|
echo ' -M <file> Location of a makepkg config file'
|
||||||
echo ' -n Do not copy config files into the chroot'
|
echo ' -n Do not copy config files into the chroot'
|
||||||
echo ' -c <dir> Set pacman cache. Default: /var/cache/pacman/pkg'
|
echo ' -c <dir> Set pacman cache'
|
||||||
echo ' -h This message'
|
echo ' -h This message'
|
||||||
exit 1
|
exit 1
|
||||||
}
|
}
|
||||||
@@ -42,7 +44,7 @@ while getopts 'r:ufnhC:M:c:' arg; do
|
|||||||
M) makepkg_conf="$OPTARG" ;;
|
M) makepkg_conf="$OPTARG" ;;
|
||||||
n) NOCOPY='y' ;;
|
n) NOCOPY='y' ;;
|
||||||
c) cache_dir="$OPTARG" ;;
|
c) cache_dir="$OPTARG" ;;
|
||||||
h|?) usage 0 ;;
|
h|?) usage ;;
|
||||||
*) error "invalid argument '${arg}'"; usage ;;
|
*) error "invalid argument '${arg}'"; usage ;;
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
@@ -65,40 +67,56 @@ shift 1
|
|||||||
[[ -z $working_dir ]] && die 'Please specify a working directory.'
|
[[ -z $working_dir ]] && die 'Please specify a working directory.'
|
||||||
|
|
||||||
if [[ -z $cache_dir ]]; then
|
if [[ -z $cache_dir ]]; then
|
||||||
cache_conf=${working_dir}/etc/pacman.conf
|
cache_dirs=($(pacman -v $cache_conf 2>&1 | grep '^Cache Dirs:' | sed 's/Cache Dirs:\s*//g'))
|
||||||
[[ ! -f $cache_conf ]] && cache_conf=${pac_conf:-/etc/pacman.conf}
|
else
|
||||||
cache_dir=$( (grep -m 1 '^CacheDir' $cache_conf || echo 'CacheDir = /var/cache/pacman/pkg') | sed 's/CacheDir\s*=\s*//')
|
cache_dirs=(${cache_dir})
|
||||||
unset cache_conf
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ -f /etc/pacman.d/mirrorlist ]]; then
|
host_mirror=$(pacman -Sddp extra/devtools 2>/dev/null | sed -E 's#(.*/)extra/os/.*#\1$repo/os/$arch#')
|
||||||
host_mirror=$(pacman -Sddp extra/devtools 2>/dev/null | sed -E 's#(.*/)extra/os/.*#\1$repo/os/$arch#')
|
|
||||||
fi
|
|
||||||
if [[ -z $host_mirror ]]; then
|
|
||||||
host_mirror='http://mirrors.kernel.org/archlinux/$repo/os/$arch'
|
|
||||||
fi
|
|
||||||
if echo "${host_mirror}" | grep -q 'file://'; then
|
if echo "${host_mirror}" | grep -q 'file://'; then
|
||||||
host_mirror_path=$(echo "${host_mirror}" | sed -E 's#file://(/.*)/\$repo/os/\$arch#\1#g')
|
host_mirror_path=$(echo "${host_mirror}" | sed -E 's#file://(/.*)/\$repo/os/\$arch#\1#g')
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# {{{ functions
|
# {{{ functions
|
||||||
|
bind_mount() {
|
||||||
|
local mode="${2:-rw}"
|
||||||
|
local target="${working_dir}${1}"
|
||||||
|
|
||||||
|
if [[ ! -e "$target" ]]; then
|
||||||
|
if [[ -d "$1" ]]; then
|
||||||
|
install -d "$target"
|
||||||
|
else
|
||||||
|
install -D /dev/null "$target"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
mount -o bind "$1" "$target"
|
||||||
|
mount -o remount,${mode},bind "$target"
|
||||||
|
mount --make-slave "$target"
|
||||||
|
}
|
||||||
|
|
||||||
chroot_mount() {
|
chroot_mount() {
|
||||||
[[ -e "${working_dir}/sys" ]] || mkdir "${working_dir}/sys"
|
trap 'trap_chroot_umount' EXIT INT QUIT TERM HUP
|
||||||
mount -t sysfs sysfs "${working_dir}/sys"
|
|
||||||
|
if (( ! have_nspawn )); then
|
||||||
|
bind_mount /sys ro
|
||||||
|
|
||||||
[[ -e "${working_dir}/proc" ]] || mkdir "${working_dir}/proc"
|
[[ -e "${working_dir}/proc" ]] || mkdir "${working_dir}/proc"
|
||||||
mount -t proc proc "${working_dir}/proc"
|
mount -t proc proc -o nosuid,noexec,nodev "${working_dir}/proc"
|
||||||
|
bind_mount /proc/sys ro
|
||||||
|
|
||||||
[[ -e "${working_dir}/dev" ]] || mkdir "${working_dir}/dev"
|
[[ -e "${working_dir}/dev" ]] || mkdir "${working_dir}/dev"
|
||||||
mount -t tmpfs dev "${working_dir}/dev" -o mode=0755,size=10M,nosuid
|
mount -t tmpfs dev "${working_dir}/dev" -o mode=0755,size=10M,nosuid,strictatime
|
||||||
mknod -m 666 "${working_dir}/dev/null" c 1 3
|
mknod -m 666 "${working_dir}/dev/null" c 1 3
|
||||||
mknod -m 666 "${working_dir}/dev/zero" c 1 5
|
mknod -m 666 "${working_dir}/dev/zero" c 1 5
|
||||||
mknod -m 600 "${working_dir}/dev/console" c 5 1
|
mknod -m 600 "${working_dir}/dev/console" c 5 1
|
||||||
mknod -m 644 "${working_dir}/dev/random" c 1 8
|
mknod -m 644 "${working_dir}/dev/random" c 1 8
|
||||||
mknod -m 644 "${working_dir}/dev/urandom" c 1 9
|
mknod -m 644 "${working_dir}/dev/urandom" c 1 9
|
||||||
mknod -m 666 "${working_dir}/dev/tty" c 5 0
|
mknod -m 666 "${working_dir}/dev/tty" c 5 0
|
||||||
|
mknod -m 666 "${working_dir}/dev/ptmx" c 5 2
|
||||||
mknod -m 666 "${working_dir}/dev/tty0" c 4 0
|
mknod -m 666 "${working_dir}/dev/tty0" c 4 0
|
||||||
mknod -m 666 "${working_dir}/dev/full" c 1 7
|
mknod -m 666 "${working_dir}/dev/full" c 1 7
|
||||||
|
mknod -m 666 "${working_dir}/dev/rtc0" c 254 0
|
||||||
ln -s /proc/kcore "${working_dir}/dev/core"
|
ln -s /proc/kcore "${working_dir}/dev/core"
|
||||||
ln -s /proc/self/fd "${working_dir}/dev/fd"
|
ln -s /proc/self/fd "${working_dir}/dev/fd"
|
||||||
ln -s /proc/self/fd/0 "${working_dir}/dev/stdin"
|
ln -s /proc/self/fd/0 "${working_dir}/dev/stdin"
|
||||||
@@ -108,25 +126,26 @@ chroot_mount() {
|
|||||||
[[ -e "${working_dir}/dev/shm" ]] || mkdir "${working_dir}/dev/shm"
|
[[ -e "${working_dir}/dev/shm" ]] || mkdir "${working_dir}/dev/shm"
|
||||||
mount -t tmpfs shm "${working_dir}/dev/shm" -o nodev,nosuid,size=128M
|
mount -t tmpfs shm "${working_dir}/dev/shm" -o nodev,nosuid,size=128M
|
||||||
|
|
||||||
[[ -e "${working_dir}/dev/pts" ]] || mkdir "${working_dir}/dev/pts"
|
bind_mount /dev/pts
|
||||||
mount -t devpts devpts "${working_dir}/dev/pts" -o newinstance,ptmxmode=666
|
|
||||||
ln -s pts/ptmx "${working_dir}/dev/ptmx"
|
|
||||||
|
|
||||||
[[ -e $cache_dir ]] || mkdir -p "${cache_dir}"
|
[[ -e "${working_dir}/run" ]] || mkdir "${working_dir}/run"
|
||||||
[[ -e "${working_dir}/${cache_dir}" ]] || mkdir -p "${working_dir}/${cache_dir}"
|
mount -t tmpfs tmpfs "${working_dir}/run" -o mode=0755,nodev,nosuid,strictatime,size=64M
|
||||||
mount -o bind "${cache_dir}" "${working_dir}/${cache_dir}"
|
|
||||||
|
|
||||||
if [[ -n $host_mirror_path ]]; then
|
for host_config in resolv.conf localtime; do
|
||||||
[[ -e "${working_dir}/${host_mirror_path}" ]] || mkdir -p "${working_dir}/${host_mirror_path}"
|
bind_mount /etc/$host_config ro
|
||||||
mount -o bind "${host_mirror_path}" "${working_dir}/${host_mirror_path}"
|
done
|
||||||
mount -o remount,ro,bind "${host_mirror_path}" "${working_dir}/${host_mirror_path}"
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
trap 'chroot_umount' EXIT INT QUIT TERM HUP
|
[[ -n $host_mirror_path ]] && bind_mount "$host_mirror_path" ro
|
||||||
|
|
||||||
|
bind_mount "${cache_dirs[0]}"
|
||||||
|
for cache_dir in ${cache_dirs[@]:1}; do
|
||||||
|
bind_mount "$cache_dir" ro
|
||||||
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
copy_hostconf () {
|
copy_hostconf () {
|
||||||
cp /etc/resolv.conf "${working_dir}/etc/resolv.conf"
|
cp -a /etc/pacman.d/gnupg "${working_dir}/etc/pacman.d"
|
||||||
echo "Server = ${host_mirror}" > ${working_dir}/etc/pacman.d/mirrorlist
|
echo "Server = ${host_mirror}" > ${working_dir}/etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
if [[ -n $pac_conf && $NOCOPY = 'n' ]]; then
|
if [[ -n $pac_conf && $NOCOPY = 'n' ]]; then
|
||||||
@@ -136,16 +155,31 @@ copy_hostconf () {
|
|||||||
if [[ -n $makepkg_conf && $NOCOPY = 'n' ]]; then
|
if [[ -n $makepkg_conf && $NOCOPY = 'n' ]]; then
|
||||||
cp ${makepkg_conf} ${working_dir}/etc/makepkg.conf
|
cp ${makepkg_conf} ${working_dir}/etc/makepkg.conf
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
sed -r "s|^#?\\s*CacheDir.+|CacheDir = $(echo -n ${cache_dirs[@]})|g" -i ${working_dir}/etc/pacman.conf
|
||||||
}
|
}
|
||||||
|
|
||||||
chroot_umount () {
|
trap_chroot_umount () {
|
||||||
|
trap 'trap_abort' INT QUIT TERM HUP
|
||||||
|
trap 'trap_exit' EXIT
|
||||||
|
|
||||||
|
for cache_dir in ${cache_dirs[@]}; do
|
||||||
|
umount "${working_dir}/${cache_dir}"
|
||||||
|
done
|
||||||
|
[[ -n $host_mirror_path ]] && umount "${working_dir}/${host_mirror_path}"
|
||||||
|
|
||||||
|
if (( ! have_nspawn )); then
|
||||||
|
for host_config in resolv.conf localtime; do
|
||||||
|
umount "${working_dir}/etc/${host_config}"
|
||||||
|
done
|
||||||
|
umount "${working_dir}/proc/sys"
|
||||||
umount "${working_dir}/proc"
|
umount "${working_dir}/proc"
|
||||||
umount "${working_dir}/sys"
|
umount "${working_dir}/sys"
|
||||||
umount "${working_dir}/dev/pts"
|
umount "${working_dir}/dev/pts"
|
||||||
umount "${working_dir}/dev/shm"
|
umount "${working_dir}/dev/shm"
|
||||||
umount "${working_dir}/dev"
|
umount "${working_dir}/dev"
|
||||||
umount "${working_dir}/${cache_dir}"
|
umount "${working_dir}/run"
|
||||||
[[ -n $host_mirror_path ]] && umount "${working_dir}/${host_mirror_path}"
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
chroot_lock () {
|
chroot_lock () {
|
||||||
@@ -161,21 +195,39 @@ chroot_lock () {
|
|||||||
stat_done
|
stat_done
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
chroot_run() {
|
||||||
|
local dir=$1
|
||||||
|
shift
|
||||||
|
if (( have_nspawn)); then
|
||||||
|
eval systemd-nspawn -D "${dir}" -- ${@} 2>/dev/null
|
||||||
|
else
|
||||||
|
eval unshare -mui -- chroot "${dir}" ${@}
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
# }}}
|
# }}}
|
||||||
|
|
||||||
|
# use systemd-nspawn if we have it available and systemd is running
|
||||||
|
if type -P systemd-nspawn >/dev/null && mountpoint -q /sys/fs/cgroup/systemd; then
|
||||||
|
have_nspawn=1
|
||||||
|
fi
|
||||||
|
|
||||||
umask 0022
|
umask 0022
|
||||||
if [[ -n $RUN ]]; then
|
if [[ -n $RUN ]]; then
|
||||||
# run chroot {{{
|
# run chroot {{{
|
||||||
#Sanity check
|
#Sanity check
|
||||||
if [[ ! -f "${working_dir}/.arch-chroot" ]]; then
|
if [[ ! -f "${working_dir}/.arch-chroot" ]]; then
|
||||||
die "'${working_dir}' does not appear to be a Arch chroot."
|
die "'${working_dir}' does not appear to be a Arch chroot."
|
||||||
|
elif [[ $(cat "${working_dir}/.arch-chroot") != ${CHROOT_VERSION} ]]; then
|
||||||
|
die "'${working_dir}' is not compatible with ${APPNAME} version ${CHROOT_VERSION}. Please rebuild."
|
||||||
fi
|
fi
|
||||||
|
|
||||||
chroot_lock
|
chroot_lock
|
||||||
chroot_mount
|
chroot_mount
|
||||||
copy_hostconf
|
copy_hostconf
|
||||||
|
|
||||||
eval chroot "${working_dir}" ${RUN}
|
chroot_run "${working_dir}" ${RUN}
|
||||||
|
|
||||||
# }}}
|
# }}}
|
||||||
else
|
else
|
||||||
@@ -188,40 +240,35 @@ else
|
|||||||
chmod 0755 "${working_dir}"
|
chmod 0755 "${working_dir}"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
mkdir -p "${working_dir}/var/lib/pacman/sync"
|
|
||||||
mkdir -p "${working_dir}/etc/"
|
|
||||||
|
|
||||||
chroot_lock
|
chroot_lock
|
||||||
chroot_mount
|
chroot_mount
|
||||||
|
|
||||||
pacargs="--noconfirm --root=${working_dir} --cachedir=${cache_dir}"
|
pacargs="${cache_dirs[@]/#/--cachedir=}"
|
||||||
if [[ -n $pac_conf ]]; then
|
if [[ -n $pac_conf ]]; then
|
||||||
pacargs="$pacargs --config=${pac_conf}"
|
pacargs="$pacargs --config=${pac_conf}"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if (( $# != 0 )); then
|
if (( $# != 0 )); then
|
||||||
op='-Sy'
|
|
||||||
if [[ $FORCE = 'y' ]]; then
|
if [[ $FORCE = 'y' ]]; then
|
||||||
op="${op}f"
|
pacargs="$pacargs --force"
|
||||||
fi
|
fi
|
||||||
if ! pacman ${op} ${pacargs} $@; then
|
if ! pacstrap -GMcd "${working_dir}" ${pacargs} $@; then
|
||||||
die 'Failed to install all packages'
|
die 'Failed to install all packages'
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ -d "${working_dir}/lib/modules" ]]; then
|
if [[ -d "${working_dir}/lib/modules" ]]; then
|
||||||
ldconfig -r "${working_dir}"
|
chroot_run "${working_dir}" ldconfig
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ -e "${working_dir}/etc/locale.gen" ]]; then
|
if [[ -e "${working_dir}/etc/locale.gen" ]]; then
|
||||||
sed -i 's@^#\(en_US\|de_DE\)\(\.UTF-8\)@\1\2@' "${working_dir}/etc/locale.gen"
|
sed -i 's@^#\(en_US\|de_DE\)\(\.UTF-8\)@\1\2@' "${working_dir}/etc/locale.gen"
|
||||||
chroot "${working_dir}" /usr/sbin/locale-gen
|
chroot_run "${working_dir}" locale-gen
|
||||||
fi
|
fi
|
||||||
|
echo 'LANG=C' > "${working_dir}/etc/locale.conf"
|
||||||
|
|
||||||
copy_hostconf
|
copy_hostconf
|
||||||
|
|
||||||
if [[ ! -e "${working_dir}/.arch-chroot" ]]; then
|
echo "${CHROOT_VERSION}" > "${working_dir}/.arch-chroot"
|
||||||
date +%s > "${working_dir}/.arch-chroot"
|
|
||||||
fi
|
|
||||||
# }}}
|
# }}}
|
||||||
fi
|
fi
|
||||||
|
@@ -37,18 +37,13 @@ Architecture = auto
|
|||||||
#CheckSpace
|
#CheckSpace
|
||||||
#VerbosePkgLists
|
#VerbosePkgLists
|
||||||
|
|
||||||
# PGP signature checking
|
# By default, pacman accepts packages signed by keys that its local keyring
|
||||||
# NOTE: None of this will work without running `pacman-key --init` first.
|
# trusts (see pacman-key and its man page), as well as unsigned packages.
|
||||||
# The compiled in default is equivalent to the following line. This requires
|
|
||||||
# you to locally sign and trust packager keys using `pacman-key` for them to be
|
|
||||||
# considered valid.
|
|
||||||
#SigLevel = Optional TrustedOnly
|
#SigLevel = Optional TrustedOnly
|
||||||
# If you wish to check signatures but avoid local sign and trust issues, use
|
|
||||||
# the following line. This will treat any key imported into pacman's keyring as
|
# NOTE: You must run `pacman-key --init` before first using pacman; the local
|
||||||
# trusted.
|
# keyring can then be populated with the keys of all official Arch Linux
|
||||||
#SigLevel = Optional TrustAll
|
# packagers with `pacman-key --populate archlinux`.
|
||||||
# Disable signature checks for now
|
|
||||||
#SigLevel = Never
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# REPOSITORIES
|
# REPOSITORIES
|
||||||
@@ -74,18 +69,23 @@ Architecture = auto
|
|||||||
# after the header, and they will be used before the default mirrors.
|
# after the header, and they will be used before the default mirrors.
|
||||||
|
|
||||||
#[testing]
|
#[testing]
|
||||||
|
#SigLevel = PackageRequired
|
||||||
#Include = /etc/pacman.d/mirrorlist
|
#Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
[core]
|
[core]
|
||||||
|
SigLevel = PackageRequired
|
||||||
Include = /etc/pacman.d/mirrorlist
|
Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
[extra]
|
[extra]
|
||||||
|
SigLevel = PackageRequired
|
||||||
Include = /etc/pacman.d/mirrorlist
|
Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
#[community-testing]
|
#[community-testing]
|
||||||
|
#SigLevel = PackageRequired
|
||||||
#Include = /etc/pacman.d/mirrorlist
|
#Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
[community]
|
[community]
|
||||||
|
SigLevel = PackageRequired
|
||||||
Include = /etc/pacman.d/mirrorlist
|
Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
# An example of a custom package repository. See the pacman manpage for
|
# An example of a custom package repository. See the pacman manpage for
|
||||||
|
@@ -37,18 +37,13 @@ Architecture = auto
|
|||||||
#CheckSpace
|
#CheckSpace
|
||||||
#VerbosePkgLists
|
#VerbosePkgLists
|
||||||
|
|
||||||
# PGP signature checking
|
# By default, pacman accepts packages signed by keys that its local keyring
|
||||||
# NOTE: None of this will work without running `pacman-key --init` first.
|
# trusts (see pacman-key and its man page), as well as unsigned packages.
|
||||||
# The compiled in default is equivalent to the following line. This requires
|
|
||||||
# you to locally sign and trust packager keys using `pacman-key` for them to be
|
|
||||||
# considered valid.
|
|
||||||
#SigLevel = Optional TrustedOnly
|
#SigLevel = Optional TrustedOnly
|
||||||
# If you wish to check signatures but avoid local sign and trust issues, use
|
|
||||||
# the following line. This will treat any key imported into pacman's keyring as
|
# NOTE: You must run `pacman-key --init` before first using pacman; the local
|
||||||
# trusted.
|
# keyring can then be populated with the keys of all official Arch Linux
|
||||||
#SigLevel = Optional TrustAll
|
# packagers with `pacman-key --populate archlinux`.
|
||||||
# Disable signature checks for now
|
|
||||||
SigLevel = Never
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# REPOSITORIES
|
# REPOSITORIES
|
||||||
@@ -74,21 +69,27 @@ SigLevel = Never
|
|||||||
# after the header, and they will be used before the default mirrors.
|
# after the header, and they will be used before the default mirrors.
|
||||||
|
|
||||||
[gnome-unstable]
|
[gnome-unstable]
|
||||||
|
SigLevel = PackageRequired
|
||||||
Include = /etc/pacman.d/mirrorlist
|
Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
[testing]
|
[testing]
|
||||||
|
SigLevel = PackageRequired
|
||||||
Include = /etc/pacman.d/mirrorlist
|
Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
[core]
|
[core]
|
||||||
|
SigLevel = PackageRequired
|
||||||
Include = /etc/pacman.d/mirrorlist
|
Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
[extra]
|
[extra]
|
||||||
|
SigLevel = PackageRequired
|
||||||
Include = /etc/pacman.d/mirrorlist
|
Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
[community-testing]
|
[community-testing]
|
||||||
|
SigLevel = PackageRequired
|
||||||
Include = /etc/pacman.d/mirrorlist
|
Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
[community]
|
[community]
|
||||||
|
SigLevel = PackageRequired
|
||||||
Include = /etc/pacman.d/mirrorlist
|
Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
# An example of a custom package repository. See the pacman manpage for
|
# An example of a custom package repository. See the pacman manpage for
|
||||||
|
@@ -37,18 +37,13 @@ Architecture = auto
|
|||||||
#CheckSpace
|
#CheckSpace
|
||||||
#VerbosePkgLists
|
#VerbosePkgLists
|
||||||
|
|
||||||
# PGP signature checking
|
# By default, pacman accepts packages signed by keys that its local keyring
|
||||||
# NOTE: None of this will work without running `pacman-key --init` first.
|
# trusts (see pacman-key and its man page), as well as unsigned packages.
|
||||||
# The compiled in default is equivalent to the following line. This requires
|
|
||||||
# you to locally sign and trust packager keys using `pacman-key` for them to be
|
|
||||||
# considered valid.
|
|
||||||
#SigLevel = Optional TrustedOnly
|
#SigLevel = Optional TrustedOnly
|
||||||
# If you wish to check signatures but avoid local sign and trust issues, use
|
|
||||||
# the following line. This will treat any key imported into pacman's keyring as
|
# NOTE: You must run `pacman-key --init` before first using pacman; the local
|
||||||
# trusted.
|
# keyring can then be populated with the keys of all official Arch Linux
|
||||||
#SigLevel = Optional TrustAll
|
# packagers with `pacman-key --populate archlinux`.
|
||||||
# Disable signature checks for now
|
|
||||||
SigLevel = Never
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# REPOSITORIES
|
# REPOSITORIES
|
||||||
@@ -74,21 +69,27 @@ SigLevel = Never
|
|||||||
# after the header, and they will be used before the default mirrors.
|
# after the header, and they will be used before the default mirrors.
|
||||||
|
|
||||||
[kde-unstable]
|
[kde-unstable]
|
||||||
|
SigLevel = PackageRequired
|
||||||
Include = /etc/pacman.d/mirrorlist
|
Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
[testing]
|
[testing]
|
||||||
|
SigLevel = PackageRequired
|
||||||
Include = /etc/pacman.d/mirrorlist
|
Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
[core]
|
[core]
|
||||||
|
SigLevel = PackageRequired
|
||||||
Include = /etc/pacman.d/mirrorlist
|
Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
[extra]
|
[extra]
|
||||||
|
SigLevel = PackageRequired
|
||||||
Include = /etc/pacman.d/mirrorlist
|
Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
[community-testing]
|
[community-testing]
|
||||||
|
SigLevel = PackageRequired
|
||||||
Include = /etc/pacman.d/mirrorlist
|
Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
[community]
|
[community]
|
||||||
|
SigLevel = PackageRequired
|
||||||
Include = /etc/pacman.d/mirrorlist
|
Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
# An example of a custom package repository. See the pacman manpage for
|
# An example of a custom package repository. See the pacman manpage for
|
||||||
|
@@ -37,18 +37,13 @@ Architecture = auto
|
|||||||
#CheckSpace
|
#CheckSpace
|
||||||
#VerbosePkgLists
|
#VerbosePkgLists
|
||||||
|
|
||||||
# PGP signature checking
|
# By default, pacman accepts packages signed by keys that its local keyring
|
||||||
# NOTE: None of this will work without running `pacman-key --init` first.
|
# trusts (see pacman-key and its man page), as well as unsigned packages.
|
||||||
# The compiled in default is equivalent to the following line. This requires
|
|
||||||
# you to locally sign and trust packager keys using `pacman-key` for them to be
|
|
||||||
# considered valid.
|
|
||||||
#SigLevel = Optional TrustedOnly
|
#SigLevel = Optional TrustedOnly
|
||||||
# If you wish to check signatures but avoid local sign and trust issues, use
|
|
||||||
# the following line. This will treat any key imported into pacman's keyring as
|
# NOTE: You must run `pacman-key --init` before first using pacman; the local
|
||||||
# trusted.
|
# keyring can then be populated with the keys of all official Arch Linux
|
||||||
#SigLevel = Optional TrustAll
|
# packagers with `pacman-key --populate archlinux`.
|
||||||
# Disable signature checks for now
|
|
||||||
SigLevel = Never
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# REPOSITORIES
|
# REPOSITORIES
|
||||||
@@ -74,40 +69,50 @@ SigLevel = Never
|
|||||||
# after the header, and they will be used before the default mirrors.
|
# after the header, and they will be used before the default mirrors.
|
||||||
|
|
||||||
[staging]
|
[staging]
|
||||||
|
SigLevel = PackageRequired
|
||||||
Include = /etc/pacman.d/mirrorlist
|
Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
[testing]
|
[testing]
|
||||||
|
SigLevel = PackageRequired
|
||||||
Include = /etc/pacman.d/mirrorlist
|
Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
[core]
|
[core]
|
||||||
|
SigLevel = PackageRequired
|
||||||
Include = /etc/pacman.d/mirrorlist
|
Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
[extra]
|
[extra]
|
||||||
|
SigLevel = PackageRequired
|
||||||
Include = /etc/pacman.d/mirrorlist
|
Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
[community-staging]
|
[community-staging]
|
||||||
|
SigLevel = PackageRequired
|
||||||
Include = /etc/pacman.d/mirrorlist
|
Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
[community-testing]
|
[community-testing]
|
||||||
|
SigLevel = PackageRequired
|
||||||
Include = /etc/pacman.d/mirrorlist
|
Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
[community]
|
[community]
|
||||||
|
SigLevel = PackageRequired
|
||||||
Include = /etc/pacman.d/mirrorlist
|
Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
# If you want to run 32 bit applications on your x86_64 system,
|
# If you want to run 32 bit applications on your x86_64 system,
|
||||||
# enable the multilib repository here.
|
# enable the multilib repositories as required here.
|
||||||
[multilib-staging]
|
[multilib-staging]
|
||||||
|
SigLevel = PackageRequired
|
||||||
Include = /etc/pacman.d/mirrorlist
|
Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
[multilib-testing]
|
[multilib-testing]
|
||||||
#SigLevel = Optional TrustAll
|
SigLevel = PackageRequired
|
||||||
Include = /etc/pacman.d/mirrorlist
|
Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
[multilib]
|
[multilib]
|
||||||
|
SigLevel = PackageRequired
|
||||||
Include = /etc/pacman.d/mirrorlist
|
Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
# An example of a custom package repository. See the pacman manpage for
|
# An example of a custom package repository. See the pacman manpage for
|
||||||
# tips on creating your own repositories.
|
# tips on creating your own repositories.
|
||||||
#[custom]
|
#[custom]
|
||||||
|
#SigLevel = Optional TrustAll
|
||||||
#Server = file:///home/custompkgs
|
#Server = file:///home/custompkgs
|
||||||
|
|
||||||
|
@@ -37,18 +37,13 @@ Architecture = auto
|
|||||||
#CheckSpace
|
#CheckSpace
|
||||||
#VerbosePkgLists
|
#VerbosePkgLists
|
||||||
|
|
||||||
# PGP signature checking
|
# By default, pacman accepts packages signed by keys that its local keyring
|
||||||
# NOTE: None of this will work without running `pacman-key --init` first.
|
# trusts (see pacman-key and its man page), as well as unsigned packages.
|
||||||
# The compiled in default is equivalent to the following line. This requires
|
|
||||||
# you to locally sign and trust packager keys using `pacman-key` for them to be
|
|
||||||
# considered valid.
|
|
||||||
#SigLevel = Optional TrustedOnly
|
#SigLevel = Optional TrustedOnly
|
||||||
# If you wish to check signatures but avoid local sign and trust issues, use
|
|
||||||
# the following line. This will treat any key imported into pacman's keyring as
|
# NOTE: You must run `pacman-key --init` before first using pacman; the local
|
||||||
# trusted.
|
# keyring can then be populated with the keys of all official Arch Linux
|
||||||
#SigLevel = Optional TrustAll
|
# packagers with `pacman-key --populate archlinux`.
|
||||||
# Disable signature checks for now
|
|
||||||
SigLevel = Never
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# REPOSITORIES
|
# REPOSITORIES
|
||||||
@@ -74,31 +69,38 @@ SigLevel = Never
|
|||||||
# after the header, and they will be used before the default mirrors.
|
# after the header, and they will be used before the default mirrors.
|
||||||
|
|
||||||
[testing]
|
[testing]
|
||||||
|
SigLevel = PackageRequired
|
||||||
Include = /etc/pacman.d/mirrorlist
|
Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
[core]
|
[core]
|
||||||
|
SigLevel = PackageRequired
|
||||||
Include = /etc/pacman.d/mirrorlist
|
Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
[extra]
|
[extra]
|
||||||
|
SigLevel = PackageRequired
|
||||||
Include = /etc/pacman.d/mirrorlist
|
Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
[community-testing]
|
[community-testing]
|
||||||
|
SigLevel = PackageRequired
|
||||||
Include = /etc/pacman.d/mirrorlist
|
Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
[community]
|
[community]
|
||||||
|
SigLevel = PackageRequired
|
||||||
Include = /etc/pacman.d/mirrorlist
|
Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
# If you want to run 32 bit applications on your x86_64 system,
|
# If you want to run 32 bit applications on your x86_64 system,
|
||||||
# enable the multilib repository here.
|
# enable the multilib repositories as required here.
|
||||||
[multilib-testing]
|
[multilib-testing]
|
||||||
#SigLevel = Optional TrustAll
|
SigLevel = PackageRequired
|
||||||
Include = /etc/pacman.d/mirrorlist
|
Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
[multilib]
|
[multilib]
|
||||||
|
SigLevel = PackageRequired
|
||||||
Include = /etc/pacman.d/mirrorlist
|
Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
# An example of a custom package repository. See the pacman manpage for
|
# An example of a custom package repository. See the pacman manpage for
|
||||||
# tips on creating your own repositories.
|
# tips on creating your own repositories.
|
||||||
#[custom]
|
#[custom]
|
||||||
|
#SigLevel = Optional TrustAll
|
||||||
#Server = file:///home/custompkgs
|
#Server = file:///home/custompkgs
|
||||||
|
|
||||||
|
@@ -37,18 +37,13 @@ Architecture = auto
|
|||||||
#CheckSpace
|
#CheckSpace
|
||||||
#VerbosePkgLists
|
#VerbosePkgLists
|
||||||
|
|
||||||
# PGP signature checking
|
# By default, pacman accepts packages signed by keys that its local keyring
|
||||||
# NOTE: None of this will work without running `pacman-key --init` first.
|
# trusts (see pacman-key and its man page), as well as unsigned packages.
|
||||||
# The compiled in default is equivalent to the following line. This requires
|
|
||||||
# you to locally sign and trust packager keys using `pacman-key` for them to be
|
|
||||||
# considered valid.
|
|
||||||
#SigLevel = Optional TrustedOnly
|
#SigLevel = Optional TrustedOnly
|
||||||
# If you wish to check signatures but avoid local sign and trust issues, use
|
|
||||||
# the following line. This will treat any key imported into pacman's keyring as
|
# NOTE: You must run `pacman-key --init` before first using pacman; the local
|
||||||
# trusted.
|
# keyring can then be populated with the keys of all official Arch Linux
|
||||||
#SigLevel = Optional TrustAll
|
# packagers with `pacman-key --populate archlinux`.
|
||||||
# Disable signature checks for now
|
|
||||||
#SigLevel = Never
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# REPOSITORIES
|
# REPOSITORIES
|
||||||
@@ -74,28 +69,39 @@ Architecture = auto
|
|||||||
# after the header, and they will be used before the default mirrors.
|
# after the header, and they will be used before the default mirrors.
|
||||||
|
|
||||||
#[testing]
|
#[testing]
|
||||||
|
#SigLevel = PackageRequired
|
||||||
#Include = /etc/pacman.d/mirrorlist
|
#Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
[core]
|
[core]
|
||||||
|
SigLevel = PackageRequired
|
||||||
Include = /etc/pacman.d/mirrorlist
|
Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
[extra]
|
[extra]
|
||||||
|
SigLevel = PackageRequired
|
||||||
Include = /etc/pacman.d/mirrorlist
|
Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
#[community-testing]
|
#[community-testing]
|
||||||
|
#SigLevel = PackageRequired
|
||||||
#Include = /etc/pacman.d/mirrorlist
|
#Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
[community]
|
[community]
|
||||||
|
SigLevel = PackageRequired
|
||||||
Include = /etc/pacman.d/mirrorlist
|
Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
# If you want to run 32 bit applications on your x86_64 system,
|
# If you want to run 32 bit applications on your x86_64 system,
|
||||||
# enable the multilib repository here.
|
# enable the multilib repositories as required here.
|
||||||
|
|
||||||
|
#[multilib-testing]
|
||||||
|
#SigLevel = PackageRequired
|
||||||
|
#Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
[multilib]
|
[multilib]
|
||||||
#SigLevel = Optional TrustAll
|
SigLevel = PackageRequired
|
||||||
Include = /etc/pacman.d/mirrorlist
|
Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
# An example of a custom package repository. See the pacman manpage for
|
# An example of a custom package repository. See the pacman manpage for
|
||||||
# tips on creating your own repositories.
|
# tips on creating your own repositories.
|
||||||
#[custom]
|
#[custom]
|
||||||
|
#SigLevel = Optional TrustAll
|
||||||
#Server = file:///home/custompkgs
|
#Server = file:///home/custompkgs
|
||||||
|
|
||||||
|
@@ -37,18 +37,13 @@ Architecture = auto
|
|||||||
#CheckSpace
|
#CheckSpace
|
||||||
#VerbosePkgLists
|
#VerbosePkgLists
|
||||||
|
|
||||||
# PGP signature checking
|
# By default, pacman accepts packages signed by keys that its local keyring
|
||||||
# NOTE: None of this will work without running `pacman-key --init` first.
|
# trusts (see pacman-key and its man page), as well as unsigned packages.
|
||||||
# The compiled in default is equivalent to the following line. This requires
|
|
||||||
# you to locally sign and trust packager keys using `pacman-key` for them to be
|
|
||||||
# considered valid.
|
|
||||||
#SigLevel = Optional TrustedOnly
|
#SigLevel = Optional TrustedOnly
|
||||||
# If you wish to check signatures but avoid local sign and trust issues, use
|
|
||||||
# the following line. This will treat any key imported into pacman's keyring as
|
# NOTE: You must run `pacman-key --init` before first using pacman; the local
|
||||||
# trusted.
|
# keyring can then be populated with the keys of all official Arch Linux
|
||||||
#SigLevel = Optional TrustAll
|
# packagers with `pacman-key --populate archlinux`.
|
||||||
# Disable signature checks for now
|
|
||||||
SigLevel = Never
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# REPOSITORIES
|
# REPOSITORIES
|
||||||
@@ -74,29 +69,36 @@ SigLevel = Never
|
|||||||
# after the header, and they will be used before the default mirrors.
|
# after the header, and they will be used before the default mirrors.
|
||||||
|
|
||||||
[staging]
|
[staging]
|
||||||
|
SigLevel = PackageRequired
|
||||||
Include = /etc/pacman.d/mirrorlist
|
Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
[testing]
|
[testing]
|
||||||
|
SigLevel = PackageRequired
|
||||||
Include = /etc/pacman.d/mirrorlist
|
Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
[core]
|
[core]
|
||||||
|
SigLevel = PackageRequired
|
||||||
Include = /etc/pacman.d/mirrorlist
|
Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
[extra]
|
[extra]
|
||||||
|
SigLevel = PackageRequired
|
||||||
Include = /etc/pacman.d/mirrorlist
|
Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
[community-staging]
|
[community-staging]
|
||||||
|
SigLevel = PackageRequired
|
||||||
Include = /etc/pacman.d/mirrorlist
|
Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
[community-testing]
|
[community-testing]
|
||||||
|
SigLevel = PackageRequired
|
||||||
Include = /etc/pacman.d/mirrorlist
|
Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
#SigLevel = Optional TrustAll
|
|
||||||
[community]
|
[community]
|
||||||
|
SigLevel = PackageRequired
|
||||||
Include = /etc/pacman.d/mirrorlist
|
Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
# An example of a custom package repository. See the pacman manpage for
|
# An example of a custom package repository. See the pacman manpage for
|
||||||
# tips on creating your own repositories.
|
# tips on creating your own repositories.
|
||||||
#[custom]
|
#[custom]
|
||||||
|
#SigLevel = Optional TrustAll
|
||||||
#Server = file:///home/custompkgs
|
#Server = file:///home/custompkgs
|
||||||
|
|
||||||
|
@@ -37,18 +37,13 @@ Architecture = auto
|
|||||||
#CheckSpace
|
#CheckSpace
|
||||||
#VerbosePkgLists
|
#VerbosePkgLists
|
||||||
|
|
||||||
# PGP signature checking
|
# By default, pacman accepts packages signed by keys that its local keyring
|
||||||
# NOTE: None of this will work without running `pacman-key --init` first.
|
# trusts (see pacman-key and its man page), as well as unsigned packages.
|
||||||
# The compiled in default is equivalent to the following line. This requires
|
|
||||||
# you to locally sign and trust packager keys using `pacman-key` for them to be
|
|
||||||
# considered valid.
|
|
||||||
#SigLevel = Optional TrustedOnly
|
#SigLevel = Optional TrustedOnly
|
||||||
# If you wish to check signatures but avoid local sign and trust issues, use
|
|
||||||
# the following line. This will treat any key imported into pacman's keyring as
|
# NOTE: You must run `pacman-key --init` before first using pacman; the local
|
||||||
# trusted.
|
# keyring can then be populated with the keys of all official Arch Linux
|
||||||
#SigLevel = Optional TrustAll
|
# packagers with `pacman-key --populate archlinux`.
|
||||||
# Disable signature checks for now
|
|
||||||
SigLevel = Never
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# REPOSITORIES
|
# REPOSITORIES
|
||||||
@@ -74,18 +69,23 @@ SigLevel = Never
|
|||||||
# after the header, and they will be used before the default mirrors.
|
# after the header, and they will be used before the default mirrors.
|
||||||
|
|
||||||
[testing]
|
[testing]
|
||||||
|
SigLevel = PackageRequired
|
||||||
Include = /etc/pacman.d/mirrorlist
|
Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
[core]
|
[core]
|
||||||
|
SigLevel = PackageRequired
|
||||||
Include = /etc/pacman.d/mirrorlist
|
Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
[extra]
|
[extra]
|
||||||
|
SigLevel = PackageRequired
|
||||||
Include = /etc/pacman.d/mirrorlist
|
Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
[community-testing]
|
[community-testing]
|
||||||
|
SigLevel = PackageRequired
|
||||||
Include = /etc/pacman.d/mirrorlist
|
Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
[community]
|
[community]
|
||||||
|
SigLevel = PackageRequired
|
||||||
Include = /etc/pacman.d/mirrorlist
|
Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
# An example of a custom package repository. See the pacman manpage for
|
# An example of a custom package repository. See the pacman manpage for
|
||||||
|
@@ -1,21 +1,6 @@
|
|||||||
#compdef archbuild archco archrelease archrm commitpkg finddeps makechrootpkg mkarchroot rebuildpkgs extrapkg=commitpkg corepkg=commitpkg testingpkg=commitpkg stagingpkg=commitpkg communitypkg=commitpkg community-testingpkg=commitpkg community-stagingpkg=commitpkg multilibpkg=commitpkg multilib-testingpkg=commitpkg extra-i686-build=archbuild extra-x86_64-build=archbuild testing-i686-build=archbuild testing-x86_64-build=archbuild staging-i686-build=archbuild staging-x86_64-build=archbuild multilib-build=archbuild multilib-testing-build=archbuild multilib-staging-build=archbuild kde-unstable-i686-build=archbuild kde-unstable-x86_64-build=archbuild gnome-unstable-i686-build=archbuild gnome-unstable-x86_64-build=archbuild communityco=archco
|
#compdef archbuild archco archrelease archrm commitpkg finddeps makechrootpkg mkarchroot rebuildpkgs extrapkg=commitpkg corepkg=commitpkg testingpkg=commitpkg stagingpkg=commitpkg communitypkg=commitpkg community-testingpkg=commitpkg community-stagingpkg=commitpkg multilibpkg=commitpkg multilib-testingpkg=commitpkg extra-i686-build=archbuild extra-x86_64-build=archbuild testing-i686-build=archbuild testing-x86_64-build=archbuild staging-i686-build=archbuild staging-x86_64-build=archbuild multilib-build=archbuild multilib-testing-build=archbuild multilib-staging-build=archbuild kde-unstable-i686-build=archbuild kde-unstable-x86_64-build=archbuild gnome-unstable-i686-build=archbuild gnome-unstable-x86_64-build=archbuild communityco=archco
|
||||||
|
|
||||||
_arch=(i686 x86_64 any)
|
m4_include(lib/valid-tags.sh)
|
||||||
|
|
||||||
_tags=(
|
|
||||||
core-i686 core-x86_64 core-any
|
|
||||||
extra-i686 extra-x86_64 extra-any
|
|
||||||
multilib-i686 multilib-x86_64 multilib-any
|
|
||||||
staging-i686 staging-x86_64 staging-any
|
|
||||||
testing-i686 testing-x86_64 testing-any
|
|
||||||
multilib-testing-i686 multilib-testing-x86_64 multilib-testing-any
|
|
||||||
multilib-staging-i686 multilib-staging-x86_64 multilib-staging-any
|
|
||||||
community-i686 community-x86_64 community-any
|
|
||||||
community-staging-i686 community-staging-x86_64 community-staging-any
|
|
||||||
community-testing-i686 community-testing-x86_64 community-testing-any
|
|
||||||
kde-unstable-i686 kde-unstable-x86_64 kde-unstable-any
|
|
||||||
gnome-unstable-i686 gnome-unstable-x86_64 gnome-unstable-any
|
|
||||||
)
|
|
||||||
|
|
||||||
_archbuild_args=(
|
_archbuild_args=(
|
||||||
'-c[Recreate the chroot before building]'
|
'-c[Recreate the chroot before building]'
|
||||||
|
Reference in New Issue
Block a user