mirror of
https://gitlab.archlinux.org/archlinux/devtools.git
synced 2025-09-13 09:56:18 +02:00
Compare commits
85 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
6cf9332896 | ||
![]() |
f10d88e029 | ||
![]() |
5c6c2d532e | ||
![]() |
b06b9f6010 | ||
![]() |
9715ddbe9d | ||
![]() |
a0c6bf4556 | ||
![]() |
dcb80e7b5c | ||
![]() |
84b789f760 | ||
![]() |
8edb443c12 | ||
![]() |
4800be25c2 | ||
![]() |
fe2040cd14 | ||
![]() |
a991c9a71f | ||
![]() |
022cd3d523 | ||
![]() |
a790c39c7d | ||
![]() |
e66a1f3cd8 | ||
![]() |
7a9f808a0f | ||
![]() |
b9070bf0b8 | ||
![]() |
1df6799747 | ||
![]() |
e41deee5e5 | ||
![]() |
004ced2a33 | ||
![]() |
733668f4cc | ||
![]() |
21daec135a | ||
![]() |
46c4def073 | ||
![]() |
142b032212 | ||
![]() |
5f8458f197 | ||
![]() |
50c311c261 | ||
![]() |
ef10f6c799 | ||
![]() |
d70918d18a | ||
![]() |
6da47a8f6a | ||
![]() |
6350ec0461 | ||
![]() |
3da3a5486f | ||
![]() |
7020d2351b | ||
![]() |
7952d6fbfc | ||
![]() |
3c175e98bd | ||
![]() |
ddb08cb9a1 | ||
![]() |
88a929cfc0 | ||
![]() |
c24209028a | ||
![]() |
61010062ff | ||
![]() |
6ef4d5f30b | ||
![]() |
40ddf4d44f | ||
![]() |
b445920d55 | ||
![]() |
7887d9bb47 | ||
![]() |
35573fe147 | ||
![]() |
5688152f41 | ||
![]() |
e1312ec493 | ||
![]() |
e652dc8085 | ||
![]() |
ba4f28cc43 | ||
![]() |
dc7b96e917 | ||
![]() |
cb25d50913 | ||
![]() |
c51cc8d365 | ||
![]() |
e64c1d33eb | ||
![]() |
19f3a868f4 | ||
![]() |
f1ee5208ed | ||
![]() |
b97b245d52 | ||
![]() |
ee970f0bde | ||
![]() |
35fc83ce7d | ||
![]() |
51b5d69cfc | ||
![]() |
30bcca88d3 | ||
![]() |
25aae4ecfe | ||
![]() |
c8ba49c6a1 | ||
![]() |
e63c5f26a2 | ||
![]() |
c9c4e8043c | ||
![]() |
2582637376 | ||
![]() |
74df2a90d8 | ||
![]() |
8384ad849d | ||
![]() |
1febb47b2c | ||
![]() |
c57284e053 | ||
![]() |
d177c87080 | ||
![]() |
4b24337a51 | ||
![]() |
9a29f624f1 | ||
![]() |
3040951ca0 | ||
![]() |
5d39ffb341 | ||
![]() |
7e5ae10b43 | ||
![]() |
ab5eb2e4de | ||
![]() |
a1a6a8eaca | ||
![]() |
6d4367de35 | ||
![]() |
5df1f9bd6d | ||
![]() |
9b33a29ea5 | ||
![]() |
3985129c3d | ||
![]() |
e197f6d34c | ||
![]() |
c45e5bbf22 | ||
![]() |
e380f396cf | ||
![]() |
d187cdbc38 | ||
![]() |
fee49075f0 | ||
![]() |
39ae6e23d6 |
13
.gitignore
vendored
13
.gitignore
vendored
@@ -1,2 +1,15 @@
|
|||||||
*~
|
*~
|
||||||
devtools-*.tar.gz
|
devtools-*.tar.gz
|
||||||
|
archbuild
|
||||||
|
archco
|
||||||
|
archrelease
|
||||||
|
archrm
|
||||||
|
bash_completion
|
||||||
|
checkpkg
|
||||||
|
commitpkg
|
||||||
|
finddeps
|
||||||
|
lddd
|
||||||
|
makechrootpkg
|
||||||
|
mkarchroot
|
||||||
|
rebuildpkgs
|
||||||
|
zsh_completion
|
||||||
|
50
Makefile
50
Makefile
@@ -1,10 +1,11 @@
|
|||||||
V=0.9.21
|
V=0.9.28
|
||||||
|
|
||||||
|
PREFIX = /usr/local
|
||||||
|
|
||||||
BINPROGS = \
|
BINPROGS = \
|
||||||
checkpkg \
|
checkpkg \
|
||||||
commitpkg \
|
commitpkg \
|
||||||
archco \
|
archco \
|
||||||
communityco \
|
|
||||||
archrelease \
|
archrelease \
|
||||||
archrm \
|
archrm \
|
||||||
archbuild \
|
archbuild \
|
||||||
@@ -46,24 +47,39 @@ ARCHBUILD_LINKS = \
|
|||||||
multilib-build \
|
multilib-build \
|
||||||
multilib-testing-build
|
multilib-testing-build
|
||||||
|
|
||||||
all:
|
all: $(BINPROGS) $(SBINPROGS) bash_completion zsh_completion
|
||||||
|
|
||||||
|
%: %.in
|
||||||
|
@echo "GEN $@"
|
||||||
|
@sed -e "s|@pkgdatadir[@]|$(DESTDIR)$(PREFIX)/share/devtools|g" "$<" >"$@"
|
||||||
|
@chmod a-w "$@"
|
||||||
|
@chmod +x "$@"
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -f $(BINPROGS) $(SBINPROGS) bash_completion zsh_completion
|
||||||
|
|
||||||
install:
|
install:
|
||||||
install -dm0755 $(DESTDIR)/usr/bin
|
install -dm0755 $(DESTDIR)$(PREFIX)/bin
|
||||||
install -dm0755 $(DESTDIR)/usr/sbin
|
install -dm0755 $(DESTDIR)$(PREFIX)/sbin
|
||||||
install -dm0755 $(DESTDIR)/usr/share/devtools
|
install -dm0755 $(DESTDIR)$(PREFIX)/share/devtools
|
||||||
install -m0755 ${BINPROGS} $(DESTDIR)/usr/bin
|
install -m0755 ${BINPROGS} $(DESTDIR)$(PREFIX)/bin
|
||||||
install -m0755 ${SBINPROGS} $(DESTDIR)/usr/sbin
|
install -m0755 ${SBINPROGS} $(DESTDIR)$(PREFIX)/sbin
|
||||||
install -m0644 ${CONFIGFILES} $(DESTDIR)/usr/share/devtools
|
install -m0644 ${CONFIGFILES} $(DESTDIR)$(PREFIX)/share/devtools
|
||||||
for l in ${COMMITPKG_LINKS}; do ln -sf commitpkg $(DESTDIR)/usr/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)/usr/bin/$$l; done
|
for l in ${ARCHBUILD_LINKS}; do ln -sf archbuild $(DESTDIR)$(PREFIX)/bin/$$l; done
|
||||||
|
install -Dm0644 bash_completion $(DESTDIR)/etc/bash_completion.d/devtools
|
||||||
|
install -Dm0644 zsh_completion $(DESTDIR)$(PREFIX)/share/zsh/site-functions/_devtools
|
||||||
|
ln -sf archco $(DESTDIR)$(PREFIX)/bin/communityco
|
||||||
|
|
||||||
uninstall:
|
uninstall:
|
||||||
for f in ${BINPROGS}; do rm -f $(DESTDIR)/usr/bin/$$f; done
|
for f in ${BINPROGS}; do rm -f $(DESTDIR)$(PREFIX)/bin/$$f; done
|
||||||
for f in ${SBINPROGS}; do rm -f $(DESTDIR)/usr/sbin/$$f; done
|
for f in ${SBINPROGS}; do rm -f $(DESTDIR)$(PREFIX)/sbin/$$f; done
|
||||||
for f in ${CONFIGFILES}; do rm -f $(DESTDIR)/usr/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)/usr/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)/usr/bin/$$l; done
|
for l in ${ARCHBUILD_LINKS}; do rm -f $(DESTDIR)$(PREFIX)/bin/$$l; done
|
||||||
|
rm $(DESTDIR)/etc/bash_completion.d/devtools
|
||||||
|
rm $(DESTDIR)$(PREFIX)/share/zsh/site-functions/_devtools
|
||||||
|
rm -f $(DESTDIR)$(PREFIX)/bin/communityco
|
||||||
|
|
||||||
dist:
|
dist:
|
||||||
git archive --format=tar --prefix=devtools-$(V)/ $(V) | gzip -9 > devtools-$(V).tar.gz
|
git archive --format=tar --prefix=devtools-$(V)/ $(V) | gzip -9 > devtools-$(V).tar.gz
|
||||||
@@ -71,4 +87,4 @@ dist:
|
|||||||
upload:
|
upload:
|
||||||
scp devtools-$(V).tar.gz gerolde.archlinux.org:/srv/ftp/other/devtools/
|
scp devtools-$(V).tar.gz gerolde.archlinux.org:/srv/ftp/other/devtools/
|
||||||
|
|
||||||
.PHONY: all install uninstall dist upload
|
.PHONY: all clean install uninstall dist upload
|
||||||
|
67
archbuild
67
archbuild
@@ -1,67 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
base_packages='base base-devel sudo'
|
|
||||||
|
|
||||||
cmd="$(basename "${0%-build}")"
|
|
||||||
if [ "${cmd%-*}" == 'multilib' ]; then
|
|
||||||
repo="${cmd}"
|
|
||||||
arch='x86_64'
|
|
||||||
base_packages+=' multilib-devel'
|
|
||||||
else
|
|
||||||
repo=${cmd%-*}
|
|
||||||
arch=${cmd##*-}
|
|
||||||
fi
|
|
||||||
chroots='/var/tmp/archbuild'
|
|
||||||
clean_first=false
|
|
||||||
|
|
||||||
usage() {
|
|
||||||
echo "usage $(basename "$0")"
|
|
||||||
echo ' -c Recreate the chroot before building'
|
|
||||||
echo ' -r <dir> Create chroots in this directory'
|
|
||||||
exit 1
|
|
||||||
}
|
|
||||||
|
|
||||||
while getopts 'cr:' arg; do
|
|
||||||
case "${arg}" in
|
|
||||||
c) clean_first=true ;;
|
|
||||||
r) chroots="$OPTARG" ;;
|
|
||||||
*) usage ;;
|
|
||||||
esac
|
|
||||||
done
|
|
||||||
|
|
||||||
if [ "$EUID" != '0' ]; then
|
|
||||||
echo 'This script must be run as root.'
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
if ${clean_first} || [ ! -d "${chroots}/${repo}-${arch}" ]; then
|
|
||||||
echo "Creating chroot for [${repo}] (${arch})..."
|
|
||||||
|
|
||||||
for copy in ${chroots}/${repo}-${arch}/*; do
|
|
||||||
[[ -d $copy ]] || continue
|
|
||||||
echo "Deleting chroot copy '$(basename "${copy}")'..."
|
|
||||||
|
|
||||||
# Lock the copy
|
|
||||||
exec 9>${copy}.lock
|
|
||||||
flock 9
|
|
||||||
|
|
||||||
{ type -P btrfs && btrfs subvolume delete ${copy}; } &>/dev/null
|
|
||||||
rm -rf ${copy}
|
|
||||||
done
|
|
||||||
exec 9>&-
|
|
||||||
|
|
||||||
rm -rf ${chroots}/${repo}-${arch}
|
|
||||||
mkdir -p ${chroots}/${repo}-${arch}
|
|
||||||
setarch ${arch} mkarchroot \
|
|
||||||
-C /usr/share/devtools/pacman-${repo}.conf \
|
|
||||||
-M /usr/share/devtools/makepkg-${arch}.conf \
|
|
||||||
${chroots}/${repo}-${arch}/root \
|
|
||||||
${base_packages}
|
|
||||||
else
|
|
||||||
setarch ${arch} mkarchroot \
|
|
||||||
-u \
|
|
||||||
${chroots}/${repo}-${arch}/root
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo "Building in chroot for [${repo}] (${arch})..."
|
|
||||||
setarch ${arch} makechrootpkg -c -r ${chroots}/${repo}-${arch}
|
|
68
archbuild.in
Normal file
68
archbuild.in
Normal file
@@ -0,0 +1,68 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
base_packages=(base base-devel sudo)
|
||||||
|
|
||||||
|
cmd="${0##*/}"
|
||||||
|
if [[ "${cmd%%-*}" == 'multilib' ]]; then
|
||||||
|
repo="${cmd%-build}"
|
||||||
|
arch='x86_64'
|
||||||
|
base_packages+=(multilib-devel)
|
||||||
|
else
|
||||||
|
tag="${cmd%-build}"
|
||||||
|
repo=${tag%-*}
|
||||||
|
arch=${tag##*-}
|
||||||
|
fi
|
||||||
|
chroots='/var/tmp/archbuild'
|
||||||
|
clean_first=false
|
||||||
|
|
||||||
|
usage() {
|
||||||
|
echo "usage $cmd"
|
||||||
|
echo ' -c Recreate the chroot before building'
|
||||||
|
echo ' -r <dir> Create chroots in this directory'
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
|
||||||
|
while getopts 'cr:' arg; do
|
||||||
|
case "${arg}" in
|
||||||
|
c) clean_first=true ;;
|
||||||
|
r) chroots="$OPTARG" ;;
|
||||||
|
*) usage ;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
|
||||||
|
if [[ "$EUID" != '0' ]]; then
|
||||||
|
echo 'This script must be run as root.'
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if ${clean_first} || [[ ! -d "${chroots}/${repo}-${arch}" ]]; then
|
||||||
|
echo "Creating chroot for [${repo}] (${arch})..."
|
||||||
|
|
||||||
|
for copy in "${chroots}/${repo}-${arch}"/*; do
|
||||||
|
[[ -d $copy ]] || continue
|
||||||
|
echo "Deleting chroot copy '$(basename "${copy}")'..."
|
||||||
|
|
||||||
|
# Lock the copy
|
||||||
|
exec 9>"${copy}.lock"
|
||||||
|
flock 9
|
||||||
|
|
||||||
|
{ type -P btrfs && btrfs subvolume delete "${copy}"; } &>/dev/null
|
||||||
|
rm -rf "${copy}"
|
||||||
|
done
|
||||||
|
exec 9>&-
|
||||||
|
|
||||||
|
rm -rf "${chroots}/${repo}-${arch}"
|
||||||
|
mkdir -p "${chroots}/${repo}-${arch}"
|
||||||
|
setarch "${arch}" mkarchroot \
|
||||||
|
-C "@pkgdatadir@/pacman-${repo}.conf" \
|
||||||
|
-M "@pkgdatadir@/makepkg-${arch}.conf" \
|
||||||
|
"${chroots}/${repo}-${arch}/root" \
|
||||||
|
"${base_packages[@]}"
|
||||||
|
else
|
||||||
|
setarch ${arch} mkarchroot \
|
||||||
|
-u \
|
||||||
|
"${chroots}/${repo}-${arch}/root"
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "Building in chroot for [${repo}] (${arch})..."
|
||||||
|
setarch "${arch}" makechrootpkg -c -r "${chroots}/${repo}-${arch}"
|
10
archco
10
archco
@@ -1,10 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
if [ "$1" = '' ]; then
|
|
||||||
echo 'Usage: archco <package name> [<package name>]'
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
for i in "$@"; do
|
|
||||||
svn co svn+ssh://gerolde.archlinux.org/srv/svn-packages/$i
|
|
||||||
done
|
|
23
archco.in
Normal file
23
archco.in
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
scriptname=${0##*/}
|
||||||
|
|
||||||
|
if [ "$1" = '' ]; then
|
||||||
|
echo 'Usage: '$scriptname' <package name>...'
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
case $scriptname in
|
||||||
|
archco)
|
||||||
|
SVNURL="svn+ssh://gerolde.archlinux.org/srv/svn-packages";;
|
||||||
|
communityco)
|
||||||
|
SVNURL="svn+ssh://aur.archlinux.org/srv/svn-packages";;
|
||||||
|
*)
|
||||||
|
echo "error: couldn't find svn url for $scriptname"
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
for i in "$@"; do
|
||||||
|
svn co "$SVNURL/$i"
|
||||||
|
done
|
35
archrelease
35
archrelease
@@ -1,35 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
abort() {
|
|
||||||
echo ${1:-'archrelease: Cancelled'}
|
|
||||||
exit 1
|
|
||||||
}
|
|
||||||
|
|
||||||
if [ "$1" = '' ]; then
|
|
||||||
abort 'Usage: archrelease <repo>'
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ ! -f PKGBUILD ]; then
|
|
||||||
abort 'archrelease: PKGBUILD not found'
|
|
||||||
fi
|
|
||||||
|
|
||||||
trunk=$(basename $(pwd))
|
|
||||||
|
|
||||||
if [ "$(basename $(dirname $(pwd)))" == "repos" ]; then
|
|
||||||
abort 'archrelease: Not in a package trunk dir'
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ ! -z "$(svn status -q)" ]; then
|
|
||||||
abort 'archrelease: You have not committed your changes yet!'
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo -n "releasing package to ${1}..."
|
|
||||||
pushd .. >/dev/null
|
|
||||||
if [ -d "repos/${1}" ]; then
|
|
||||||
svn rm --force -q "repos/${1}"
|
|
||||||
svn commit -q -m "archrelease: remove ${1}" || abort
|
|
||||||
fi
|
|
||||||
svn copy -q -r HEAD "${trunk}" "repos/${1}"
|
|
||||||
svn commit -q -m "archrelease: copy ${trunk} to ${1}" || abort
|
|
||||||
popd >/dev/null
|
|
||||||
echo 'done'
|
|
66
archrelease.in
Normal file
66
archrelease.in
Normal file
@@ -0,0 +1,66 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
abort() {
|
||||||
|
echo ${1:-'archrelease: Cancelled'}
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
|
||||||
|
if [[ -z $1 ]]; then
|
||||||
|
abort 'Usage: archrelease <repo>...'
|
||||||
|
fi
|
||||||
|
|
||||||
|
# TODO: validate repo is really repo-arch
|
||||||
|
|
||||||
|
if [[ ! -f PKGBUILD ]]; then
|
||||||
|
abort 'archrelease: PKGBUILD not found'
|
||||||
|
fi
|
||||||
|
|
||||||
|
trunk=${PWD##*/}
|
||||||
|
|
||||||
|
# Normally this should be trunk, but it may be something
|
||||||
|
# such as 'gnome-unstable'
|
||||||
|
IFS='/' read -r -d '' -a parts <<< "$PWD"
|
||||||
|
if [[ "${parts[@]:(-2):1}" == "repos" ]]; then
|
||||||
|
abort 'archrelease: Should not be in repos dir (try from trunk/)'
|
||||||
|
fi
|
||||||
|
unset parts
|
||||||
|
|
||||||
|
if [[ $(svn status -q) ]]; then
|
||||||
|
abort 'archrelease: You have not committed your changes yet!'
|
||||||
|
fi
|
||||||
|
|
||||||
|
pushd .. >/dev/null
|
||||||
|
IFS=$'\n' read -r -d '' -a known_files < <(svn ls -r HEAD "$trunk")
|
||||||
|
for file in "${known_files[@]}"; do
|
||||||
|
if [[ ${file:(-1)} = '/' ]]; then
|
||||||
|
abort "archrelease: subdirectories are not supported in package directories!"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
for tag in "$@"; do
|
||||||
|
echo -n "copying ${trunk} to ${tag}..."
|
||||||
|
|
||||||
|
if [[ -d repos/$tag ]]; then
|
||||||
|
declare -a trash
|
||||||
|
trash=()
|
||||||
|
while read -r file; do
|
||||||
|
trash+=("repos/$tag/$file")
|
||||||
|
done < <(svn ls "repos/$tag")
|
||||||
|
[[ $trash ]] && svn rm -q "${trash[@]}"
|
||||||
|
else
|
||||||
|
mkdir -p "repos/$tag"
|
||||||
|
svn add --parents -q "repos/$tag"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# copy all files at once from trunk to the subdirectory in repos/
|
||||||
|
svn copy -q -r HEAD ${known_files[@]/#/$trunk/} "repos/$tag/"
|
||||||
|
|
||||||
|
echo 'done'
|
||||||
|
done
|
||||||
|
|
||||||
|
echo -n "releasing package..."
|
||||||
|
printf -v tag_list ", %s" "$@"; tag_list="${tag_list#, }"
|
||||||
|
svn commit -q -m "archrelease: copy ${trunk} to $tag_list" || abort
|
||||||
|
echo 'done'
|
||||||
|
|
||||||
|
popd >/dev/null
|
0
archrm → archrm.in
Executable file → Normal file
0
archrm → archrm.in
Executable file → Normal file
69
bash_completion.in
Normal file
69
bash_completion.in
Normal file
@@ -0,0 +1,69 @@
|
|||||||
|
_devtools_compgen() {
|
||||||
|
local i r
|
||||||
|
COMPREPLY=($(compgen -W '$*' -- "$cur"))
|
||||||
|
for ((i=1; i < ${#COMP_WORDS[@]}-1; i++)); do
|
||||||
|
for r in ${!COMPREPLY[@]}; do
|
||||||
|
if [[ ${COMP_WORDS[i]} = ${COMPREPLY[r]} ]]; then
|
||||||
|
unset 'COMPREPLY[r]'; break
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
done
|
||||||
|
}
|
||||||
|
|
||||||
|
_archco_pkg() {
|
||||||
|
_devtools_compgen "$(
|
||||||
|
\pacman -$1
|
||||||
|
)"
|
||||||
|
}
|
||||||
|
|
||||||
|
_archco() {
|
||||||
|
local cur prev
|
||||||
|
COMPREPLY=()
|
||||||
|
cur=$(_get_cword)
|
||||||
|
prev=${COMP_WORDS[COMP_CWORD-1]}
|
||||||
|
|
||||||
|
_archco_pkg Slq
|
||||||
|
true
|
||||||
|
} &&
|
||||||
|
complete -F _archco archco communityco
|
||||||
|
|
||||||
|
_makechrootpkg() {
|
||||||
|
local cur
|
||||||
|
COMPREPLY=()
|
||||||
|
_get_comp_words_by_ref cur
|
||||||
|
|
||||||
|
case $cur in
|
||||||
|
-*)
|
||||||
|
COMPREPLY=( $( compgen -W '-I -c -d -h -l -r -u' -- "$cur" ) )
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
_filedir
|
||||||
|
return 0
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
true
|
||||||
|
} &&
|
||||||
|
complete -F _makechrootpkg makechrootpkg
|
||||||
|
|
||||||
|
_mkarchroot() {
|
||||||
|
local cur
|
||||||
|
COMPREPLY=()
|
||||||
|
_get_comp_words_by_ref cur
|
||||||
|
|
||||||
|
case $cur in
|
||||||
|
-*)
|
||||||
|
COMPREPLY=( $( compgen -W '-C -M -c -f -h -n -r -u' -- "$cur" ) )
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
_filedir
|
||||||
|
return 0
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
true
|
||||||
|
} &&
|
||||||
|
complete -F _mkarchroot mkarchroot
|
||||||
|
|
||||||
|
|
||||||
|
# ex:et ts=2 sw=2 ft=sh
|
101
checkpkg
101
checkpkg
@@ -1,101 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
# Source makepkg.conf; fail if it is not found
|
|
||||||
if [ -r '/etc/makepkg.conf' ]; then
|
|
||||||
source '/etc/makepkg.conf'
|
|
||||||
else
|
|
||||||
echo '/etc/makepkg.conf not found!'
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Source user-specific makepkg.conf overrides
|
|
||||||
if [ -r ~/.makepkg.conf ]; then
|
|
||||||
source ~/.makepkg.conf
|
|
||||||
fi
|
|
||||||
|
|
||||||
strip_url() {
|
|
||||||
echo $1 | sed 's|^.*://.*/||g'
|
|
||||||
}
|
|
||||||
|
|
||||||
if [ ! -f PKGBUILD ]; then
|
|
||||||
echo 'This must be run in the directory of a built package.'
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
. PKGBUILD
|
|
||||||
if [ "$arch" == 'any' ]; then
|
|
||||||
CARCH='any'
|
|
||||||
fi
|
|
||||||
|
|
||||||
STARTDIR=$(pwd)
|
|
||||||
TEMPDIR=$(mktemp -d /tmp/checkpkg-script.XXXX)
|
|
||||||
cd $TEMPDIR
|
|
||||||
|
|
||||||
for _pkgname in ${pkgname[@]}; do
|
|
||||||
pkgfile=${_pkgname}-${pkgver}-${pkgrel}-${CARCH}${PKGEXT}
|
|
||||||
oldstylepkgfile=${_pkgname}-${pkgver}-${pkgrel}${PKGEXT}
|
|
||||||
|
|
||||||
if [ -f "$STARTDIR/$pkgfile" ]; then
|
|
||||||
cp "$STARTDIR/$pkgfile" .
|
|
||||||
elif [ -f "$PKGDEST/$pkgfile" ]; then
|
|
||||||
cp "$PKGDEST/$pkgfile" .
|
|
||||||
elif [ -f "$STARTDIR/$oldstylepkgfile" ]; then
|
|
||||||
cp "$STARTDIR/$oldstylepkgfile" .
|
|
||||||
elif [ -f "$PKGDEST/$oldstylepkgfile" ]; then
|
|
||||||
cp "$PKGDEST/$oldstylepkgfile" .
|
|
||||||
else
|
|
||||||
echo "File \"$pkgfile\" doesn't exist"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
tmp=`pacman -Spd --noconfirm $_pkgname`
|
|
||||||
|
|
||||||
if [ $? -ne 0 ]; then
|
|
||||||
echo "Couldn't download previous package for $_pkgname."
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
pkgurl=`echo $tmp | rev | cut -d ' ' -f 1 | rev`
|
|
||||||
|
|
||||||
oldpkg=`strip_url $pkgurl`
|
|
||||||
|
|
||||||
if [ "$(basename $oldpkg)" = "$(basename $pkgfile)" ]; then
|
|
||||||
echo "The built package ($_pkgname) is the one in the repo right now!"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ ! -f $oldpkg ]; then
|
|
||||||
if echo $pkgurl | grep '^file:///' > /dev/null 2>&1; then
|
|
||||||
cp `echo $pkgurl | sed 's#^file://##'` .
|
|
||||||
elif [ -f $PKGDEST/$oldpkg ]; then
|
|
||||||
cp $PKGDEST/$oldpkg .
|
|
||||||
elif [ -f $STARTDIR/$oldpkg ]; then
|
|
||||||
cp $STARTDIR/$oldpkg .
|
|
||||||
else
|
|
||||||
wget --quiet $pkgurl
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
bsdtar tf $oldpkg > filelist-$_pkgname-old
|
|
||||||
bsdtar tf "$pkgfile" > filelist-$_pkgname
|
|
||||||
|
|
||||||
sort -o filelist-$_pkgname filelist-$_pkgname
|
|
||||||
sort -o filelist-$_pkgname-old filelist-$_pkgname-old
|
|
||||||
|
|
||||||
sdiff -s filelist-$_pkgname-old filelist-$_pkgname
|
|
||||||
|
|
||||||
if diff filelist-$_pkgname-old filelist-$_pkgname | grep '\.so' > /dev/null 2>&1; then
|
|
||||||
mkdir -p pkg
|
|
||||||
cd pkg
|
|
||||||
bsdtar xf ../"$pkgfile" > /dev/null
|
|
||||||
for i in `diff ../filelist-$_pkgname-old ../filelist-$_pkgname | grep \> | grep \.so | awk '{print $2}'`; do
|
|
||||||
echo -n "${i}: "
|
|
||||||
objdump -p $i | grep SONAME
|
|
||||||
done
|
|
||||||
cd ..
|
|
||||||
else
|
|
||||||
echo "No soname differences for $_pkgname."
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
|
|
||||||
echo "Files saved to $TEMPDIR"
|
|
90
checkpkg.in
Normal file
90
checkpkg.in
Normal file
@@ -0,0 +1,90 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Source makepkg.conf; fail if it is not found
|
||||||
|
if [[ -r '/etc/makepkg.conf' ]]; then
|
||||||
|
source '/etc/makepkg.conf'
|
||||||
|
else
|
||||||
|
echo '/etc/makepkg.conf not found!'
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Source user-specific makepkg.conf overrides
|
||||||
|
if [[ -r ~/.makepkg.conf ]]; then
|
||||||
|
source ~/.makepkg.conf
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ ! -f PKGBUILD ]]; then
|
||||||
|
echo 'This must be run in the directory of a built package.'
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
. PKGBUILD
|
||||||
|
if [[ $arch == 'any' ]]; then
|
||||||
|
CARCH='any'
|
||||||
|
fi
|
||||||
|
|
||||||
|
STARTDIR=$(pwd)
|
||||||
|
TEMPDIR=$(mktemp -d --tmpdir checkpkg-script.XXXX)
|
||||||
|
cd "$TEMPDIR"
|
||||||
|
|
||||||
|
for _pkgname in "${pkgname[@]}"; do
|
||||||
|
if [[ -z ${epoch} ]] ; then
|
||||||
|
pkgfile=${_pkgname}-${pkgver}-${pkgrel}-${CARCH}${PKGEXT}
|
||||||
|
else
|
||||||
|
pkgfile=${_pkgname}-${epoch}:${pkgver}-${pkgrel}-${CARCH}${PKGEXT}
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ -f "$STARTDIR/$pkgfile" ]]; then
|
||||||
|
ln -s "$STARTDIR/$pkgfile" "$pkgfile"
|
||||||
|
elif [[ -f "$PKGDEST/$pkgfile" ]]; then
|
||||||
|
ln -s "$PKGDEST/$pkgfile" "$pkgfile"
|
||||||
|
else
|
||||||
|
echo "File \"$pkgfile\" doesn't exist"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
pkgurl=$(pacman -Spdd --print-format '%l' --noconfirm "$_pkgname")
|
||||||
|
|
||||||
|
if [[ $? -ne 0 ]]; then
|
||||||
|
echo "Couldn't download previous package for $_pkgname."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
oldpkg=${pkgurl##*://*/}
|
||||||
|
|
||||||
|
if [[ ${oldpkg##*/} = ${pkgfile##*/} ]]; then
|
||||||
|
echo "The built package ($_pkgname) is the one in the repo right now!"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ ! -f $oldpkg ]]; then
|
||||||
|
if [[ $pkgurl = file://* ]]; then
|
||||||
|
ln -s "${pkgurl#file://}" "${pkgurl##file://*/}"
|
||||||
|
elif [[ -f "$PKGDEST/$oldpkg" ]]; then
|
||||||
|
ln -s "$PKGDEST/$oldpkg" "$oldpkg"
|
||||||
|
elif [[ -f "$STARTDIR/$oldpkg" ]]; then
|
||||||
|
ln -s "$STARTDIR/$oldpkg" "$oldpkg"
|
||||||
|
else
|
||||||
|
wget --quiet "$pkgurl"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
bsdtar tf "$oldpkg" | sort > "filelist-$_pkgname-old"
|
||||||
|
bsdtar tf "$pkgfile" | sort > "filelist-$_pkgname"
|
||||||
|
|
||||||
|
sdiff -s "filelist-$_pkgname-old" "filelist-$_pkgname"
|
||||||
|
|
||||||
|
if diff "filelist-$_pkgname-old" "filelist-$_pkgname" | grep '\.so' > /dev/null 2>&1; then
|
||||||
|
mkdir -p pkg
|
||||||
|
cd pkg
|
||||||
|
bsdtar xf ../"$pkgfile" > /dev/null
|
||||||
|
diff "../filelist-$_pkgname-old" "../filelist-$_pkgname" | awk '/>.*\.so/{$1 = ""; print $0}' | while read i; do
|
||||||
|
echo "${i}: " "$(objdump -p "$i" | grep SONAME)"
|
||||||
|
done
|
||||||
|
cd ..
|
||||||
|
else
|
||||||
|
echo "No soname differences for $_pkgname."
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
echo "Files saved to $TEMPDIR"
|
88
commitpkg → commitpkg.in
Executable file → Normal file
88
commitpkg → commitpkg.in
Executable file → Normal file
@@ -42,7 +42,7 @@ if [ -r ~/.makepkg.conf ]; then
|
|||||||
. ~/.makepkg.conf
|
. ~/.makepkg.conf
|
||||||
fi
|
fi
|
||||||
|
|
||||||
cmd=$(basename "$0")
|
cmd=${0##*/}
|
||||||
|
|
||||||
if [ ! -f PKGBUILD ]; then
|
if [ ! -f PKGBUILD ]; then
|
||||||
abort 'No PKGBUILD file'
|
abort 'No PKGBUILD file'
|
||||||
@@ -54,7 +54,7 @@ pkgbase=${pkgbase:-$pkgname}
|
|||||||
case "$cmd" in
|
case "$cmd" in
|
||||||
commitpkg)
|
commitpkg)
|
||||||
if [ $# -eq 0 ]; then
|
if [ $# -eq 0 ]; then
|
||||||
abort 'usage: commitpkg <reponame> [-l limit] [commit message]'
|
abort 'usage: commitpkg <reponame> [-l limit] [-a arch] [commit message]'
|
||||||
fi
|
fi
|
||||||
repo="$1"
|
repo="$1"
|
||||||
shift
|
shift
|
||||||
@@ -63,7 +63,7 @@ case "$cmd" in
|
|||||||
repo="${cmd%pkg}"
|
repo="${cmd%pkg}"
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
abort 'usage: commitpkg <reponame> [-l limit] [commit message]'
|
abort 'usage: commitpkg <reponame> [-l limit] [-a arch] [commit message]'
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
@@ -78,10 +78,10 @@ case "$repo" in
|
|||||||
esac
|
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
|
||||||
echo $s | grep -Fvq '://' && \
|
if [[ $s != *://* ]] && ! svn status -v "$s" | grep -q '^[ AMRX~]'; then
|
||||||
svn status $s | grep -q '^\?' && \
|
|
||||||
abort "$s is not under version control"
|
abort "$s is not under version control"
|
||||||
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
# check if changelog and install files are under version control
|
# check if changelog and install files are under version control
|
||||||
@@ -90,31 +90,58 @@ for i in 'changelog' 'install'; do
|
|||||||
for file in $filelist; do
|
for file in $filelist; do
|
||||||
# evaluate any bash variables used
|
# evaluate any bash variables used
|
||||||
eval file=${file}
|
eval file=${file}
|
||||||
if svn status ${file} | grep -q '^\?'; then
|
if ! svn status -v "${file}" | grep -q '^[ AMRX~]'; then
|
||||||
abort "${file} is not under version control"
|
abort "${file} is not under version control"
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
done
|
done
|
||||||
|
|
||||||
# see if any limit options were passed, we'll send them to rsync
|
# 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)
|
||||||
if [ "$1" = '-l' ]; then
|
while getopts ':l:a:' flag; do
|
||||||
rsyncopts="$rsyncopts --bwlimit=$2"
|
case $flag in
|
||||||
shift 2
|
l) rsyncopts+=("--bwlimit=$2") ;;
|
||||||
fi
|
a) commit_arch=$2 ;;
|
||||||
|
:) echo "option requires an argument -- '$OPTARG'" >&2
|
||||||
|
exit 1 ;;
|
||||||
|
\?) echo "invalid option -- '$OPTARG'" >&2
|
||||||
|
exit 1 ;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
shift $(( OPTIND - 1 ))
|
||||||
|
|
||||||
echo -n 'committing changes to trunk...'
|
if [ -n "$(svn status -q)" ]; then
|
||||||
if [ -n "$1" ]; then
|
echo -n 'committing changes to trunk...'
|
||||||
svn commit -q -m "upgpkg: $pkgbase $pkgver-$pkgrel
|
msgtemplate="upgpkg: $pkgbase $(get_full_version ${epoch:-0} $pkgver $pkgrel)"$'\n\n'
|
||||||
$1" || abort
|
if [ -n "$1" ]; then
|
||||||
else
|
svn commit -q -m "${msgtemplate}${1}" || abort
|
||||||
svn commit -q || abort
|
else
|
||||||
|
msgfile="$(mktemp)"
|
||||||
|
echo "$msgtemplate" > "$msgfile"
|
||||||
|
if [ -n "$SVN_EDITOR" ]; then
|
||||||
|
$SVN_EDITOR "$msgfile"
|
||||||
|
elif [ -n "$VISUAL" ]; then
|
||||||
|
$VISUAL "$msgfile"
|
||||||
|
elif [ -n "$EDITOR" ]; then
|
||||||
|
$EDITOR "$msgfile"
|
||||||
|
else
|
||||||
|
vi "$msgfile"
|
||||||
|
fi
|
||||||
|
[ -s "$msgfile" ] || abort
|
||||||
|
svn commit -q -F "$msgfile" || abort
|
||||||
|
unlink "$msgfile"
|
||||||
|
fi
|
||||||
|
echo 'done'
|
||||||
fi
|
fi
|
||||||
echo 'done'
|
|
||||||
|
|
||||||
declare -a uploads
|
declare -a uploads
|
||||||
|
|
||||||
for _arch in ${arch[@]}; do
|
for _arch in ${arch[@]}; do
|
||||||
|
if [ -n "$commit_arch" ] && [ "${_arch}" != "$commit_arch" ]; then
|
||||||
|
echo "skipping ${_arch}"
|
||||||
|
continue
|
||||||
|
fi
|
||||||
|
|
||||||
for _pkgname in ${pkgname[@]}; do
|
for _pkgname in ${pkgname[@]}; do
|
||||||
fullver=$(get_full_version ${epoch:-0} $pkgver $pkgrel)
|
fullver=$(get_full_version ${epoch:-0} $pkgver $pkgrel)
|
||||||
pkgfile=$(getpkgfile "$_pkgname-$fullver-${_arch}".pkg.tar.?z 2>/dev/null)
|
pkgfile=$(getpkgfile "$_pkgname-$fullver-${_arch}".pkg.tar.?z 2>/dev/null)
|
||||||
@@ -132,7 +159,10 @@ for _arch in ${arch[@]}; do
|
|||||||
|
|
||||||
if [[ $SIGNPKG == 'y' ]]; then
|
if [[ $SIGNPKG == 'y' ]]; then
|
||||||
echo "Signing package ${pkgfile}..."
|
echo "Signing package ${pkgfile}..."
|
||||||
gpg --detach-sign --use-agent -u "${PACKAGER}" "${pkgfile}" || abort
|
if [[ -n $GPGKEY ]]; then
|
||||||
|
SIGNWITHKEY="-u ${GPGKEY}"
|
||||||
|
fi
|
||||||
|
gpg --detach-sign --use-agent ${SIGNWITHKEY} "${pkgfile}" || abort
|
||||||
fi
|
fi
|
||||||
|
|
||||||
sigfile="${pkgfile}.sig"
|
sigfile="${pkgfile}.sig"
|
||||||
@@ -142,12 +172,17 @@ for _arch in ${arch[@]}; do
|
|||||||
abort "Signature ${pkgfile}.sig was not found"
|
abort "Signature ${pkgfile}.sig was not found"
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
archrelease $repo-${_arch} || abort
|
|
||||||
done
|
done
|
||||||
|
|
||||||
|
if [[ -n $commit_arch ]]; then
|
||||||
|
archrelease "$repo-$commit_arch" || abort
|
||||||
|
else
|
||||||
|
archrelease "${arch[@]/#/$repo-}" || abort
|
||||||
|
fi
|
||||||
|
|
||||||
if [[ ${#uploads[*]} -gt 0 ]]; then
|
if [[ ${#uploads[*]} -gt 0 ]]; then
|
||||||
echo 'uploading all package and signature files'
|
echo 'uploading all package and signature files'
|
||||||
rsync $rsyncopts "${uploads[@]}" "$server:staging/$repo/" || abort
|
rsync "${rsyncopts[@]}" "${uploads[@]}" "$server:staging/$repo/" || abort
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "${arch[*]}" == 'any' ]; then
|
if [ "${arch[*]}" == 'any' ]; then
|
||||||
@@ -160,4 +195,13 @@ if [ "${arch[*]}" == 'any' ]; then
|
|||||||
echo 'done'
|
echo 'done'
|
||||||
popd >/dev/null
|
popd >/dev/null
|
||||||
fi
|
fi
|
||||||
|
else
|
||||||
|
if [ -d ../repos/$repo-any ]; then
|
||||||
|
pushd ../repos/ >/dev/null
|
||||||
|
echo "removing $repo-any..."
|
||||||
|
svn rm $repo-any
|
||||||
|
svn commit -q -m "removed $repo-any for $pkgname"
|
||||||
|
echo 'done'
|
||||||
|
popd >/dev/null
|
||||||
|
fi
|
||||||
fi
|
fi
|
10
communityco
10
communityco
@@ -1,10 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
if [ "$1" = '' ]; then
|
|
||||||
echo 'Usage: communityco <package name> [<package name>]'
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
for i in "$@"; do
|
|
||||||
svn co svn+ssh://aur.archlinux.org/srv/svn-packages/$i
|
|
||||||
done
|
|
29
finddeps → finddeps.in
Executable file → Normal file
29
finddeps → finddeps.in
Executable file → Normal file
@@ -3,7 +3,9 @@
|
|||||||
# finddeps - find packages that depend on a given depname
|
# finddeps - find packages that depend on a given depname
|
||||||
#
|
#
|
||||||
|
|
||||||
if [ "$1" = '' ]; then
|
match=$1
|
||||||
|
|
||||||
|
if [[ -z $match ]]; then
|
||||||
echo 'usage: finddeps <depname>'
|
echo 'usage: finddeps <depname>'
|
||||||
echo ''
|
echo ''
|
||||||
echo 'Find packages that depend on a given depname.'
|
echo 'Find packages that depend on a given depname.'
|
||||||
@@ -12,35 +14,24 @@ if [ "$1" = '' ]; then
|
|||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
match=$1
|
find . -type d | while read d; do
|
||||||
tld=$(pwd)
|
if [[ -f "$d/PKGBUILD" ]]; then
|
||||||
|
unset pkgname depends makedepends optdepends
|
||||||
for d in $(find . -type d); do
|
. "$d/PKGBUILD"
|
||||||
cd $d
|
|
||||||
if [ -f PKGBUILD ]; then
|
|
||||||
unset pkgname depends makedepends
|
|
||||||
. PKGBUILD
|
|
||||||
for dep in "${depends[@]}"; do
|
for dep in "${depends[@]}"; do
|
||||||
# lose the version comparator, if any
|
# lose the version comparator, if any
|
||||||
depname=${dep%%[<>=]*}
|
depname=${dep%%[<>=]*}
|
||||||
if [ "$depname" = "$match" ]; then
|
[[ $depname = $match ]] && echo "$d (depends)"
|
||||||
echo "$d (depends)"
|
|
||||||
fi
|
|
||||||
done
|
done
|
||||||
for dep in "${makedepends[@]}"; do
|
for dep in "${makedepends[@]}"; do
|
||||||
# lose the version comparator, if any
|
# lose the version comparator, if any
|
||||||
depname=${dep%%[<>=]*}
|
depname=${dep%%[<>=]*}
|
||||||
if [ "$depname" = "$match" ]; then
|
[[ $depname = $match ]] && echo "$d (makedepends)"
|
||||||
echo "$d (makedepends)"
|
|
||||||
fi
|
|
||||||
done
|
done
|
||||||
for dep in "${optdepends[@]/:*}"; do
|
for dep in "${optdepends[@]/:*}"; do
|
||||||
# lose the version comaparator, if any
|
# lose the version comaparator, if any
|
||||||
depname=${dep%%[<>=]*}
|
depname=${dep%%[<>=]*}
|
||||||
if [ "$depname" = "$match" ]; then
|
[[ $depname = $match ]] && echo "$d (optdepends)"
|
||||||
echo "$d (optdepends)"
|
|
||||||
fi
|
|
||||||
done
|
done
|
||||||
fi
|
fi
|
||||||
cd $tld
|
|
||||||
done
|
done
|
10
lddd → lddd.in
Executable file → Normal file
10
lddd → lddd.in
Executable file → Normal file
@@ -4,12 +4,12 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
ifs=$IFS
|
ifs=$IFS
|
||||||
IFS=':'
|
IFS="${IFS}:"
|
||||||
|
|
||||||
libdirs='/lib:/usr/lib:/opt/qt/lib:/opt/kde/lib:/usr/lib/libfakeroot:/opt/NX/lib'
|
libdirs="/lib /usr/lib /usr/local/lib $(cat /etc/ld.so.conf.d/*)"
|
||||||
extras=
|
extras=
|
||||||
|
|
||||||
TEMPDIR=$(mktemp -d /tmp/lddd-script.XXXX)
|
TEMPDIR=$(mktemp -d --tmpdir lddd-script.XXXX)
|
||||||
|
|
||||||
echo 'Go out and drink some tea, this will take a while :) ...'
|
echo 'Go out and drink some tea, this will take a while :) ...'
|
||||||
# Check ELF binaries in the PATH and specified dir trees.
|
# Check ELF binaries in the PATH and specified dir trees.
|
||||||
@@ -25,9 +25,9 @@ for tree in $PATH $libdirs $extras; do
|
|||||||
-name '*.mcopclass' ! -name '*.mcoptype')
|
-name '*.mcopclass' ! -name '*.mcoptype')
|
||||||
IFS=$ifs
|
IFS=$ifs
|
||||||
for i in $files; do
|
for i in $files; do
|
||||||
if [ `file $i | grep -c 'ELF'` -ne 0 ]; then
|
if [ $(file $i | grep -c 'ELF') -ne 0 ]; then
|
||||||
# Is an ELF binary.
|
# Is an ELF binary.
|
||||||
if [ `ldd $i 2>/dev/null | grep -c 'not found'` -ne 0 ]; then
|
if [ $(ldd $i 2>/dev/null | grep -c 'not found') -ne 0 ]; then
|
||||||
# Missing lib.
|
# Missing lib.
|
||||||
echo "$i:" >> $TEMPDIR/raw.txt
|
echo "$i:" >> $TEMPDIR/raw.txt
|
||||||
ldd $i 2>/dev/null | grep 'not found' >> $TEMPDIR/raw.txt
|
ldd $i 2>/dev/null | grep 'not found' >> $TEMPDIR/raw.txt
|
242
makechrootpkg → makechrootpkg.in
Executable file → Normal file
242
makechrootpkg → makechrootpkg.in
Executable file → Normal file
@@ -8,27 +8,23 @@
|
|||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
# GNU General Public License for more details.
|
# GNU General Public License for more details.
|
||||||
|
|
||||||
FORCE='n'
|
shopt -s nullglob
|
||||||
RUN=''
|
|
||||||
MAKEPKG_ARGS='-s --noconfirm'
|
|
||||||
REPACK=''
|
|
||||||
WORKDIR=$PWD
|
|
||||||
|
|
||||||
update_first='0'
|
makepkg_args='-s --noconfirm -L'
|
||||||
clean_first='0'
|
repack=false
|
||||||
install_pkg=''
|
update_first=false
|
||||||
add_to_db=0
|
clean_first=false
|
||||||
|
install_pkg=
|
||||||
chrootdir=''
|
add_to_db=false
|
||||||
|
run_namcap=false
|
||||||
APPNAME=$(basename "${0}")
|
chrootdir=
|
||||||
|
|
||||||
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
|
||||||
|
|
||||||
usage() {
|
usage() {
|
||||||
echo "usage ${APPNAME} [options] -r <chrootdir> [--] [makepkg args]"
|
echo "usage ${0##*/} [options] -r <chrootdir> [--] [makepkg args]"
|
||||||
echo ' Run this script in a PKGBUILD dir to build a package inside a'
|
echo ' Run this script in a PKGBUILD dir to build a package inside a'
|
||||||
echo ' clean chroot. All unrecognized arguments passed to this script'
|
echo ' clean chroot. All unrecognized arguments passed to this script'
|
||||||
echo ' will be passed to makepkg.'
|
echo ' will be passed to makepkg.'
|
||||||
@@ -41,7 +37,7 @@ usage() {
|
|||||||
echo 'command:'
|
echo 'command:'
|
||||||
echo ' mkarchroot <chrootdir>/root base base-devel sudo'
|
echo ' mkarchroot <chrootdir>/root base base-devel sudo'
|
||||||
echo ''
|
echo ''
|
||||||
echo "Default makepkg args: $MAKEPKG_ARGS"
|
echo "Default makepkg args: $makepkg_args"
|
||||||
echo ''
|
echo ''
|
||||||
echo 'Flags:'
|
echo 'Flags:'
|
||||||
echo '-h This help'
|
echo '-h This help'
|
||||||
@@ -54,59 +50,65 @@ 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"
|
||||||
exit 1
|
exit 1
|
||||||
}
|
}
|
||||||
|
|
||||||
while getopts 'hcudr:I:l:' arg; do
|
while getopts 'hcudr:I:l:n' arg; do
|
||||||
case "${arg}" in
|
case "$arg" in
|
||||||
h) usage ;;
|
h) usage ;;
|
||||||
c) clean_first=1 ;;
|
c) clean_first=true ;;
|
||||||
u) update_first=1 ;;
|
u) update_first=true ;;
|
||||||
d) add_to_db=1 ;;
|
d) add_to_db=true ;;
|
||||||
r) chrootdir="$OPTARG" ;;
|
r) chrootdir="$OPTARG" ;;
|
||||||
I) install_pkg="$OPTARG" ;;
|
I) install_pkg="$OPTARG" ;;
|
||||||
l) copy="$OPTARG" ;;
|
l) copy="$OPTARG" ;;
|
||||||
*) MAKEPKG_ARGS="$MAKEPKG_ARGS -$arg $OPTARG" ;;
|
n) run_namcap=true ;;
|
||||||
|
*) 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 "$chrootdir")
|
||||||
|
|
||||||
[[ -z $copy ]] && copy=$default_copy
|
if [[ ${copy:0:1} = / ]]; then
|
||||||
copydir="$chrootdir/$copy"
|
copydir=$copy
|
||||||
|
else
|
||||||
|
[[ -z $copy ]] && copy=$default_copy
|
||||||
|
copydir="$chrootdir/$copy"
|
||||||
|
fi
|
||||||
|
|
||||||
# Pass all arguments after -- right to makepkg
|
# Pass all arguments after -- right to makepkg
|
||||||
MAKEPKG_ARGS="$MAKEPKG_ARGS ${*:$OPTIND}"
|
makepkg_args="$makepkg_args ${*:$OPTIND}"
|
||||||
|
|
||||||
# See if -R was passed to makepkg
|
# See if -R was passed to makepkg
|
||||||
for arg in ${*:$OPTIND}; do
|
for arg in ${*:$OPTIND}; do
|
||||||
if [ "$arg" = '-R' ]; then
|
if [[ $arg = -R ]]; then
|
||||||
REPACK=1
|
repack=1
|
||||||
break;
|
break
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
if [ "$EUID" != '0' ]; then
|
if (( EUID )); then
|
||||||
echo 'This script must be run as root.'
|
echo 'This script must be run as root.'
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -f PKGBUILD -a -z "$install_pkg" ]; then
|
if [[ ! -f PKGBUILD && -z $install_pkg ]]; then
|
||||||
echo 'This must be run in a directory containing a PKGBUILD.'
|
echo 'This must be run in a directory containing a PKGBUILD.'
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -d "$chrootdir" ]; then
|
if [[ ! -d $chrootdir ]]; then
|
||||||
echo "No chroot dir defined, or invalid path '$chrootdir'"
|
echo "No chroot dir defined, or invalid path '$chrootdir'"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -d "$chrootdir/root" ]; then
|
if [[ ! -d $chrootdir/root ]]; then
|
||||||
echo 'Missing chroot dir root directory.'
|
echo 'Missing chroot dir root directory.'
|
||||||
echo "Try using: mkarchroot $chrootdir/root base base-devel sudo"
|
echo "Try using: mkarchroot $chrootdir/root base base-devel sudo"
|
||||||
usage
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
umask 0022
|
umask 0022
|
||||||
@@ -120,7 +122,7 @@ if ! flock -n 9; then
|
|||||||
echo "done"
|
echo "done"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -d "$copydir" -o "$clean_first" -eq "1" ]; then
|
if [[ ! -d $copydir ]] || $clean_first; then
|
||||||
# Get a read lock on the root chroot to make
|
# Get a read lock on the root chroot to make
|
||||||
# sure we don't clone a half-updated chroot
|
# sure we don't clone a half-updated chroot
|
||||||
exec 8>"$chrootdir/root.lock"
|
exec 8>"$chrootdir/root.lock"
|
||||||
@@ -134,8 +136,9 @@ if [ ! -d "$copydir" -o "$clean_first" -eq "1" ]; then
|
|||||||
echo -n 'creating clean working copy...'
|
echo -n 'creating clean working copy...'
|
||||||
use_rsync=false
|
use_rsync=false
|
||||||
if type -P btrfs >/dev/null; then
|
if type -P btrfs >/dev/null; then
|
||||||
[ -d $copydir ] && btrfs subvolume delete "$copydir" &>/dev/null
|
[[ -d $copydir ]] && btrfs subvolume delete "$copydir" &>/dev/null
|
||||||
btrfs subvolume snapshot "$chrootdir/root" "$copydir" &>/dev/null || use_rsync=true
|
btrfs subvolume snapshot "$chrootdir/root" "$copydir" &>/dev/null ||
|
||||||
|
use_rsync=true
|
||||||
else
|
else
|
||||||
use_rsync=true
|
use_rsync=true
|
||||||
fi
|
fi
|
||||||
@@ -150,61 +153,66 @@ if [ ! -d "$copydir" -o "$clean_first" -eq "1" ]; then
|
|||||||
exec 8>&-
|
exec 8>&-
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -n "$install_pkg" ]; then
|
if [[ -n $install_pkg ]]; then
|
||||||
pkgname="$(basename "$install_pkg")"
|
pkgname="${install_pkg##*/}"
|
||||||
cp "$install_pkg" "$copydir/$pkgname"
|
cp "$install_pkg" "$copydir/$pkgname"
|
||||||
mkarchroot -r "pacman -U /$pkgname" "$copydir"
|
|
||||||
|
mkarchroot -r "pacman -U /$pkgname --noconfirm" "$copydir"
|
||||||
ret=$?
|
ret=$?
|
||||||
|
|
||||||
rm "$copydir/$pkgname"
|
rm "$copydir/$pkgname"
|
||||||
|
|
||||||
# Exit early, we've done all we need to
|
# Exit early, we've done all we need to
|
||||||
exit $ret
|
exit $ret
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ $update_first -eq 1 ]; then
|
$update_first && mkarchroot -u "$copydir"
|
||||||
mkarchroot -u "$copydir"
|
|
||||||
fi
|
|
||||||
|
|
||||||
[ -d "$copydir/build" ] || mkdir "$copydir/build"
|
mkdir -p "$copydir/build"
|
||||||
|
|
||||||
if [ "$REPACK" != "1" ]; then
|
# Remove anything in there UNLESS -R (repack) was passed to makepkg
|
||||||
# Remove anything in there UNLESS -R (repack) was passed to makepkg
|
$repack || rm -rf "$copydir"/build/*
|
||||||
rm -rf "$copydir/build/"*
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Read .makepkg.conf even if called via sudo
|
# Read .makepkg.conf even if called via sudo
|
||||||
if [ -n "${SUDO_USER}" ]; then
|
if [[ -n $SUDO_USER ]]; then
|
||||||
makepkg_conf="/$(eval echo ~${SUDO_USER})/.makepkg.conf"
|
makepkg_conf="$(eval echo ~$SUDO_USER)/.makepkg.conf"
|
||||||
else
|
else
|
||||||
makepkg_conf="~/.makepkg.conf"
|
makepkg_conf="$HOME/.makepkg.conf"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Get SRC/PKGDEST from makepkg.conf
|
# Get SRC/PKGDEST from makepkg.conf
|
||||||
if [ -f "${makepkg_conf}" ]; then
|
if [[ -f $makepkg_conf ]]; then
|
||||||
eval $(grep '^SRCDEST=' "${makepkg_conf}")
|
eval $(grep '^SRCDEST=' "$makepkg_conf")
|
||||||
eval $(grep '^PKGDEST=' "${makepkg_conf}")
|
eval $(grep '^PKGDEST=' "$makepkg_conf")
|
||||||
|
eval $(grep '^MAKEFLAGS=' "$makepkg_conf")
|
||||||
eval $(grep '^MAKEFLAGS=' "${makepkg_conf}")
|
eval $(grep '^PACKAGER=' "$makepkg_conf")
|
||||||
eval $(grep '^PACKAGER=' "${makepkg_conf}")
|
|
||||||
fi
|
fi
|
||||||
[ -z "${SRCDEST}" ] && eval $(grep '^SRCDEST=' /etc/makepkg.conf)
|
|
||||||
[ -z "${PKGDEST}" ] && eval $(grep '^PKGDEST=' /etc/makepkg.conf)
|
|
||||||
|
|
||||||
[ -d "$copydir/pkgdest" ] || mkdir "$copydir/pkgdest"
|
[[ -z $SRCDEST ]] && eval $(grep '^SRCDEST=' /etc/makepkg.conf)
|
||||||
if ! grep 'PKGDEST="/pkgdest"' "$copydir/etc/makepkg.conf" >/dev/null 2>&1; then
|
[[ -z $PKGDEST ]] && eval $(grep '^PKGDEST=' /etc/makepkg.conf)
|
||||||
|
[[ -z $MAKEFLAGS ]] && eval $(grep '^MAKEFLAGS=' /etc/makepkg.conf)
|
||||||
|
[[ -z $PACKAGER ]] && eval $(grep '^PACKAGER=' /etc/makepkg.conf)
|
||||||
|
|
||||||
|
# Use PKGBUILD directory if PKGDEST or SRCDEST don't exist
|
||||||
|
[[ -d $PKGDEST ]] || PKGDEST=.
|
||||||
|
[[ -d $SRCDEST ]] || SRCDEST=.
|
||||||
|
|
||||||
|
mkdir -p "$copydir/pkgdest"
|
||||||
|
if ! grep -q 'PKGDEST="/pkgdest"' "$copydir/etc/makepkg.conf"; then
|
||||||
echo 'PKGDEST="/pkgdest"' >> "$copydir/etc/makepkg.conf"
|
echo 'PKGDEST="/pkgdest"' >> "$copydir/etc/makepkg.conf"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
[ -d "$copydir/srcdest" ] || mkdir "$copydir/srcdest"
|
mkdir -p "$copydir/srcdest"
|
||||||
if ! grep 'SRCDEST="/srcdest"' "$copydir/etc/makepkg.conf" >/dev/null 2>&1; then
|
if ! grep -q 'SRCDEST="/srcdest"' "$copydir/etc/makepkg.conf"; then
|
||||||
echo 'SRCDEST="/srcdest"' >> "$copydir/etc/makepkg.conf"
|
echo 'SRCDEST="/srcdest"' >> "$copydir/etc/makepkg.conf"
|
||||||
fi
|
fi
|
||||||
[ -z "${MAKEFLAGS}" ] && eval $(grep '^MAKEFLAGS=' /etc/makepkg.conf)
|
|
||||||
if [ -n "${MAKEFLAGS}" ]; then
|
if [[ -n $MAKEFLAGS ]]; then
|
||||||
sed -i '/^MAKEFLAGS=/d' "$copydir/etc/makepkg.conf"
|
sed -i '/^MAKEFLAGS=/d' "$copydir/etc/makepkg.conf"
|
||||||
echo "MAKEFLAGS='${MAKEFLAGS}'" >> "$copydir/etc/makepkg.conf"
|
echo "MAKEFLAGS='${MAKEFLAGS}'" >> "$copydir/etc/makepkg.conf"
|
||||||
fi
|
fi
|
||||||
[ -z "${PACKAGER}" ] && eval $(grep '^PACKAGER=' /etc/makepkg.conf)
|
|
||||||
if [ -n "${PACKAGER}" ]; then
|
if [[ -n $PACKAGER ]]; then
|
||||||
sed -i '/^PACKAGER=/d' "$copydir/etc/makepkg.conf"
|
sed -i '/^PACKAGER=/d' "$copydir/etc/makepkg.conf"
|
||||||
echo "PACKAGER='${PACKAGER}'" >> "$copydir/etc/makepkg.conf"
|
echo "PACKAGER='${PACKAGER}'" >> "$copydir/etc/makepkg.conf"
|
||||||
fi
|
fi
|
||||||
@@ -212,90 +220,84 @@ fi
|
|||||||
# Set target CARCH as it might be used within the PKGBUILD to select correct sources
|
# Set target CARCH as it might be used within the PKGBUILD to select correct sources
|
||||||
eval $(grep '^CARCH=' "$copydir/etc/makepkg.conf")
|
eval $(grep '^CARCH=' "$copydir/etc/makepkg.conf")
|
||||||
export CARCH
|
export CARCH
|
||||||
# Copy PKGBUILD and sources
|
|
||||||
source=($(. PKGBUILD; echo ${source[@]}))
|
|
||||||
cp PKGBUILD "$copydir/build/"
|
|
||||||
for f in ${source[@]}; do
|
|
||||||
basef=$(echo $f | sed 's|::.*||' | sed 's|^.*://.*/||g')
|
|
||||||
if [ -f "$basef" ]; then
|
|
||||||
cp "$basef" "$copydir/srcdest/"
|
|
||||||
elif [ -f "$SRCDEST/$basef" ]; then
|
|
||||||
cp "$SRCDEST/$basef" "$copydir/srcdest/"
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
|
|
||||||
( . PKGBUILD
|
# Copy PKGBUILD and sources
|
||||||
for i in 'changelog' 'install'; do
|
cp PKGBUILD "$copydir/build/"
|
||||||
filelist=$(sed -n "s/^[[:space:]]*$i=//p" PKGBUILD)
|
(
|
||||||
for file in $filelist; do
|
source PKGBUILD
|
||||||
# evaluate any bash variables used
|
for file in "${source[@]}"; do
|
||||||
eval file=${file}
|
file="${file%%::*}"
|
||||||
if [[ -f "$file" ]]; then
|
file="${file##*://*/}"
|
||||||
cp "$file" "$copydir/build/"
|
if [[ -f $file ]]; then
|
||||||
|
cp "$file" "$copydir/srcdest/"
|
||||||
|
elif [[ -f $SRCDEST/$file ]]; then
|
||||||
|
cp "$SRCDEST/$file" "$copydir/srcdest/"
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
done
|
|
||||||
|
# Find all changelog and install files, even inside functions
|
||||||
|
for i in changelog install; do
|
||||||
|
sed -n "s/^[[:space:]]*$i=//p" PKGBUILD | while IFS= read -r file; do
|
||||||
|
# evaluate any bash variables used
|
||||||
|
eval file="$file"
|
||||||
|
[[ -f $file ]] && cp "$file" "$copydir/build/"
|
||||||
|
done
|
||||||
|
done
|
||||||
)
|
)
|
||||||
|
|
||||||
chown -R nobody "$copydir/build"
|
chown -R nobody "$copydir"/{build,pkgdest,srcdest}
|
||||||
chown -R nobody "$copydir/srcdest"
|
|
||||||
chown -R nobody "$copydir/pkgdest"
|
|
||||||
|
|
||||||
echo 'nobody ALL = NOPASSWD: /usr/bin/pacman' > "$copydir/etc/sudoers.d/nobody-pacman"
|
echo 'nobody ALL = NOPASSWD: /usr/bin/pacman' > "$copydir/etc/sudoers.d/nobody-pacman"
|
||||||
chmod 440 "$copydir/etc/sudoers.d/nobody-pacman"
|
chmod 440 "$copydir/etc/sudoers.d/nobody-pacman"
|
||||||
|
|
||||||
#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 <<EOF
|
cat >"$copydir/chrootbuild" <<EOF
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
export LANG=C
|
export LANG=C
|
||||||
cd /build
|
|
||||||
export HOME=/build
|
export HOME=/build
|
||||||
sudo -u nobody makepkg $MAKEPKG_ARGS || touch BUILD_FAILED
|
|
||||||
[ -f BUILD_FAILED ] && exit 1
|
cd /build
|
||||||
which namcap &>/dev/null && namcap /build/PKGBUILD /pkgdest/*.pkg.tar.* > /build/namcap.log
|
sudo -u nobody makepkg $makepkg_args || touch BUILD_FAILED
|
||||||
|
|
||||||
|
[[ -f BUILD_FAILED ]] && exit 1
|
||||||
|
|
||||||
|
if $run_namcap; then
|
||||||
|
pacman -S --needed --noconfirm namcap
|
||||||
|
namcap /build/PKGBUILD /pkgdest/*.pkg.tar.?z > /build/namcap.log
|
||||||
|
fi
|
||||||
|
|
||||||
exit 0
|
exit 0
|
||||||
EOF
|
EOF
|
||||||
) > "$copydir/chrootbuild"
|
|
||||||
chmod +x "$copydir/chrootbuild"
|
chmod +x "$copydir/chrootbuild"
|
||||||
|
|
||||||
if mkarchroot -r "/chrootbuild" "$copydir"; then
|
if mkarchroot -r "/chrootbuild" "$copydir"; then
|
||||||
for pkgfile in "${copydir}"/pkgdest/*.pkg.tar.*; do
|
for pkgfile in "$copydir"/pkgdest/*.pkg.tar.*; do
|
||||||
[ -e "$pkgfile" ] || continue
|
if $add_to_db; then
|
||||||
if [ "$add_to_db" -eq "1" ]; then
|
mkdir -p "$copydir/repo"
|
||||||
mkdir -p "${copydir}/repo"
|
pushd "$copydir/repo" >/dev/null
|
||||||
pushd "${copydir}/repo" >/dev/null
|
|
||||||
cp "$pkgfile" .
|
cp "$pkgfile" .
|
||||||
repo-add repo.db.tar.gz "$(basename "$pkgfile")"
|
repo-add repo.db.tar.gz "${pkgfile##*/}"
|
||||||
popd >/dev/null
|
popd >/dev/null
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -d "$PKGDEST" ]; then
|
mv "$pkgfile" "$PKGDEST"
|
||||||
mv "$pkgfile" "${PKGDEST}"
|
|
||||||
else
|
|
||||||
mv "$pkgfile" "${WORKDIR}"
|
|
||||||
fi
|
|
||||||
done
|
done
|
||||||
|
|
||||||
for l in "${copydir}"/build/{namcap,*-{build,package,package_*}}.log; do
|
for l in "$copydir"/build/{namcap,*-{build,check,package,package_*}}.log; do
|
||||||
[ -f "$l" ] && mv "$l" "${WORKDIR}"
|
[[ -f $l ]] && mv "$l" .
|
||||||
done
|
done
|
||||||
else
|
else
|
||||||
#just in case. We returned 1, make sure we fail
|
# Just in case. We returned 1, make sure we fail
|
||||||
touch "${copydir}/build/BUILD_FAILED"
|
touch "$copydir/build/BUILD_FAILED"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
for f in "${copydir}"/srcdest/*; do
|
for f in "$copydir"/srcdest/*; do
|
||||||
[ -e "$f" ] || continue
|
mv "$f" "$SRCDEST"
|
||||||
if [ -d "$SRCDEST" ]; then
|
|
||||||
mv "$f" "${SRCDEST}"
|
|
||||||
else
|
|
||||||
mv "$f" "${WORKDIR}"
|
|
||||||
fi
|
|
||||||
done
|
done
|
||||||
|
|
||||||
if [ -e "${copydir}/build/BUILD_FAILED" ]; then
|
if [[ -e $copydir/build/BUILD_FAILED ]]; then
|
||||||
echo "Build failed, check $copydir/build"
|
echo "Build failed, check $copydir/build"
|
||||||
rm "${copydir}/build/BUILD_FAILED"
|
rm "$copydir/build/BUILD_FAILED"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
@@ -8,16 +8,16 @@
|
|||||||
#
|
#
|
||||||
#-- The download utilities that makepkg should use to acquire sources
|
#-- The download utilities that makepkg should use to acquire sources
|
||||||
# Format: 'protocol::agent'
|
# Format: 'protocol::agent'
|
||||||
DLAGENTS=('ftp::/usr/bin/wget -c --passive-ftp -t 3 --waitretry=3 -O %o %u'
|
DLAGENTS=('ftp::/usr/bin/curl -fC - --ftp-pasv --retry 3 --retry-delay 3 -o %o %u'
|
||||||
'http::/usr/bin/wget -c -t 3 --waitretry=3 -O %o %u'
|
'http::/usr/bin/curl -fLC - --retry 3 --retry-delay 3 -o %o %u'
|
||||||
'https::/usr/bin/wget -c -t 3 --waitretry=3 --no-check-certificate -O %o %u'
|
'https::/usr/bin/curl -fLC - --retry 3 --retry-delay 3 -o %o %u'
|
||||||
'rsync::/usr/bin/rsync -z %u %o'
|
'rsync::/usr/bin/rsync -z %u %o'
|
||||||
'scp::/usr/bin/scp -C %u %o')
|
'scp::/usr/bin/scp -C %u %o')
|
||||||
|
|
||||||
# Other common tools:
|
# Other common tools:
|
||||||
# /usr/bin/snarf
|
# /usr/bin/snarf
|
||||||
# /usr/bin/lftpget -c
|
# /usr/bin/lftpget -c
|
||||||
# /usr/bin/curl
|
# /usr/bin/wget
|
||||||
|
|
||||||
#########################################################################
|
#########################################################################
|
||||||
# ARCHITECTURE, COMPILE FLAGS
|
# ARCHITECTURE, COMPILE FLAGS
|
||||||
@@ -26,12 +26,12 @@ DLAGENTS=('ftp::/usr/bin/wget -c --passive-ftp -t 3 --waitretry=3 -O %o %u'
|
|||||||
CARCH="i686"
|
CARCH="i686"
|
||||||
CHOST="i686-pc-linux-gnu"
|
CHOST="i686-pc-linux-gnu"
|
||||||
|
|
||||||
#-- Exclusive: will only run on i686
|
#-- Compiler and Linker Flags
|
||||||
# -march (or -mcpu) builds exclusively for an architecture
|
# -march (or -mcpu) builds exclusively for an architecture
|
||||||
# -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"
|
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"
|
CXXFLAGS="-march=i686 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2"
|
||||||
LDFLAGS="-Wl,--hash-style=gnu -Wl,--as-needed"
|
LDFLAGS="-Wl,-O1,--sort-common,--as-needed,-z,relro,--hash-style=gnu"
|
||||||
#-- Make Flags: change this for DistCC/SMP systems
|
#-- Make Flags: change this for DistCC/SMP systems
|
||||||
#MAKEFLAGS="-j2"
|
#MAKEFLAGS="-j2"
|
||||||
|
|
||||||
@@ -39,7 +39,7 @@ LDFLAGS="-Wl,--hash-style=gnu -Wl,--as-needed"
|
|||||||
# BUILD ENVIRONMENT
|
# BUILD ENVIRONMENT
|
||||||
#########################################################################
|
#########################################################################
|
||||||
#
|
#
|
||||||
# Defaults: BUILDENV=(fakeroot !distcc color !ccache check)
|
# Defaults: BUILDENV=(fakeroot !distcc color !ccache check !sign)
|
||||||
# A negated environment option will do the opposite of the comments below.
|
# A negated environment option will do the opposite of the comments below.
|
||||||
#
|
#
|
||||||
#-- fakeroot: Allow building packages as a non-root user
|
#-- fakeroot: Allow building packages as a non-root user
|
||||||
@@ -47,19 +47,23 @@ LDFLAGS="-Wl,--hash-style=gnu -Wl,--as-needed"
|
|||||||
#-- color: Colorize output messages
|
#-- color: Colorize output messages
|
||||||
#-- ccache: Use ccache to cache compilation
|
#-- ccache: Use ccache to cache compilation
|
||||||
#-- check: Run the check() function if present in the PKGBUILD
|
#-- check: Run the check() function if present in the PKGBUILD
|
||||||
|
#-- sign: Generate PGP signature file
|
||||||
#
|
#
|
||||||
BUILDENV=(fakeroot !distcc color !ccache check)
|
BUILDENV=(fakeroot !distcc color !ccache check !sign)
|
||||||
#
|
#
|
||||||
#-- If using DistCC, your MAKEFLAGS will also need modification. In addition,
|
#-- If using DistCC, your MAKEFLAGS will also need modification. In addition,
|
||||||
#-- specify a space-delimited list of hosts running in the DistCC cluster.
|
#-- specify a space-delimited list of hosts running in the DistCC cluster.
|
||||||
#DISTCC_HOSTS=""
|
#DISTCC_HOSTS=""
|
||||||
|
#
|
||||||
|
#-- Specify a directory for package building.
|
||||||
|
#BUILDDIR=/tmp/makepkg
|
||||||
|
|
||||||
#########################################################################
|
#########################################################################
|
||||||
# GLOBAL PACKAGE OPTIONS
|
# GLOBAL PACKAGE OPTIONS
|
||||||
# These are default values for the options=() settings
|
# These are default values for the options=() settings
|
||||||
#########################################################################
|
#########################################################################
|
||||||
#
|
#
|
||||||
# Default: OPTIONS=(strip docs libtool emptydirs zipman purge)
|
# Default: OPTIONS=(strip docs libtool emptydirs zipman purge !upx)
|
||||||
# A negated option will do the opposite of the comments below.
|
# A negated option will do the opposite of the comments below.
|
||||||
#
|
#
|
||||||
#-- strip: Strip symbols from binaries/libraries
|
#-- strip: Strip symbols from binaries/libraries
|
||||||
@@ -68,8 +72,9 @@ BUILDENV=(fakeroot !distcc color !ccache check)
|
|||||||
#-- emptydirs: Leave empty directories in packages
|
#-- emptydirs: Leave empty directories in packages
|
||||||
#-- zipman: Compress manual (man and info) pages in MAN_DIRS with gzip
|
#-- zipman: Compress manual (man and info) pages in MAN_DIRS with gzip
|
||||||
#-- purge: Remove files specified by PURGE_TARGETS
|
#-- purge: Remove files specified by PURGE_TARGETS
|
||||||
|
#-- upx: Compress binary executable files using UPX
|
||||||
#
|
#
|
||||||
OPTIONS=(strip docs libtool emptydirs zipman purge)
|
OPTIONS=(strip docs libtool emptydirs zipman purge !upx)
|
||||||
|
|
||||||
#-- File integrity checks to use. Valid: md5, sha1, sha256, sha384, sha512
|
#-- File integrity checks to use. Valid: md5, sha1, sha256, sha384, sha512
|
||||||
INTEGRITY_CHECK=(md5)
|
INTEGRITY_CHECK=(md5)
|
||||||
@@ -100,6 +105,8 @@ PURGE_TARGETS=(usr/{,share}/info/dir .packlist *.pod)
|
|||||||
#SRCPKGDEST=/home/srcpackages
|
#SRCPKGDEST=/home/srcpackages
|
||||||
#-- Packager: name/email of the person or organization building packages
|
#-- Packager: name/email of the person or organization building packages
|
||||||
#PACKAGER="John Doe <john@doe.com>"
|
#PACKAGER="John Doe <john@doe.com>"
|
||||||
|
#-- Specify a key to use for package signing
|
||||||
|
#GPGKEY=""
|
||||||
|
|
||||||
#########################################################################
|
#########################################################################
|
||||||
# EXTENSION DEFAULTS
|
# EXTENSION DEFAULTS
|
||||||
|
@@ -8,16 +8,16 @@
|
|||||||
#
|
#
|
||||||
#-- The download utilities that makepkg should use to acquire sources
|
#-- The download utilities that makepkg should use to acquire sources
|
||||||
# Format: 'protocol::agent'
|
# Format: 'protocol::agent'
|
||||||
DLAGENTS=('ftp::/usr/bin/wget -c --passive-ftp -t 3 --waitretry=3 -O %o %u'
|
DLAGENTS=('ftp::/usr/bin/curl -fC - --ftp-pasv --retry 3 --retry-delay 3 -o %o %u'
|
||||||
'http::/usr/bin/wget -c -t 3 --waitretry=3 -O %o %u'
|
'http::/usr/bin/curl -fLC - --retry 3 --retry-delay 3 -o %o %u'
|
||||||
'https::/usr/bin/wget -c -t 3 --waitretry=3 --no-check-certificate -O %o %u'
|
'https::/usr/bin/curl -fLC - --retry 3 --retry-delay 3 -o %o %u'
|
||||||
'rsync::/usr/bin/rsync -z %u %o'
|
'rsync::/usr/bin/rsync -z %u %o'
|
||||||
'scp::/usr/bin/scp -C %u %o')
|
'scp::/usr/bin/scp -C %u %o')
|
||||||
|
|
||||||
# Other common tools:
|
# Other common tools:
|
||||||
# /usr/bin/snarf
|
# /usr/bin/snarf
|
||||||
# /usr/bin/lftpget -c
|
# /usr/bin/lftpget -c
|
||||||
# /usr/bin/curl
|
# /usr/bin/wget
|
||||||
|
|
||||||
#########################################################################
|
#########################################################################
|
||||||
# ARCHITECTURE, COMPILE FLAGS
|
# ARCHITECTURE, COMPILE FLAGS
|
||||||
@@ -26,12 +26,12 @@ DLAGENTS=('ftp::/usr/bin/wget -c --passive-ftp -t 3 --waitretry=3 -O %o %u'
|
|||||||
CARCH="x86_64"
|
CARCH="x86_64"
|
||||||
CHOST="x86_64-unknown-linux-gnu"
|
CHOST="x86_64-unknown-linux-gnu"
|
||||||
|
|
||||||
#-- Exclusive: will only run on x86_64
|
#-- Compiler and Linker Flags
|
||||||
# -march (or -mcpu) builds exclusively for an architecture
|
# -march (or -mcpu) builds exclusively for an architecture
|
||||||
# -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"
|
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"
|
CXXFLAGS="-march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2"
|
||||||
LDFLAGS="-Wl,--hash-style=gnu -Wl,--as-needed"
|
LDFLAGS="-Wl,-O1,--sort-common,--as-needed,-z,relro,--hash-style=gnu"
|
||||||
#-- Make Flags: change this for DistCC/SMP systems
|
#-- Make Flags: change this for DistCC/SMP systems
|
||||||
#MAKEFLAGS="-j2"
|
#MAKEFLAGS="-j2"
|
||||||
|
|
||||||
@@ -39,7 +39,7 @@ LDFLAGS="-Wl,--hash-style=gnu -Wl,--as-needed"
|
|||||||
# BUILD ENVIRONMENT
|
# BUILD ENVIRONMENT
|
||||||
#########################################################################
|
#########################################################################
|
||||||
#
|
#
|
||||||
# Defaults: BUILDENV=(fakeroot !distcc color !ccache check)
|
# Defaults: BUILDENV=(fakeroot !distcc color !ccache check !sign)
|
||||||
# A negated environment option will do the opposite of the comments below.
|
# A negated environment option will do the opposite of the comments below.
|
||||||
#
|
#
|
||||||
#-- fakeroot: Allow building packages as a non-root user
|
#-- fakeroot: Allow building packages as a non-root user
|
||||||
@@ -47,19 +47,23 @@ LDFLAGS="-Wl,--hash-style=gnu -Wl,--as-needed"
|
|||||||
#-- color: Colorize output messages
|
#-- color: Colorize output messages
|
||||||
#-- ccache: Use ccache to cache compilation
|
#-- ccache: Use ccache to cache compilation
|
||||||
#-- check: Run the check() function if present in the PKGBUILD
|
#-- check: Run the check() function if present in the PKGBUILD
|
||||||
|
#-- sign: Generate PGP signature file
|
||||||
#
|
#
|
||||||
BUILDENV=(fakeroot !distcc color !ccache check)
|
BUILDENV=(fakeroot !distcc color !ccache check !sign)
|
||||||
#
|
#
|
||||||
#-- If using DistCC, your MAKEFLAGS will also need modification. In addition,
|
#-- If using DistCC, your MAKEFLAGS will also need modification. In addition,
|
||||||
#-- specify a space-delimited list of hosts running in the DistCC cluster.
|
#-- specify a space-delimited list of hosts running in the DistCC cluster.
|
||||||
#DISTCC_HOSTS=""
|
#DISTCC_HOSTS=""
|
||||||
|
#
|
||||||
|
#-- Specify a directory for package building.
|
||||||
|
#BUILDDIR=/tmp/makepkg
|
||||||
|
|
||||||
#########################################################################
|
#########################################################################
|
||||||
# GLOBAL PACKAGE OPTIONS
|
# GLOBAL PACKAGE OPTIONS
|
||||||
# These are default values for the options=() settings
|
# These are default values for the options=() settings
|
||||||
#########################################################################
|
#########################################################################
|
||||||
#
|
#
|
||||||
# Default: OPTIONS=(strip docs libtool emptydirs zipman purge)
|
# Default: OPTIONS=(strip docs libtool emptydirs zipman purge !upx)
|
||||||
# A negated option will do the opposite of the comments below.
|
# A negated option will do the opposite of the comments below.
|
||||||
#
|
#
|
||||||
#-- strip: Strip symbols from binaries/libraries
|
#-- strip: Strip symbols from binaries/libraries
|
||||||
@@ -68,8 +72,9 @@ BUILDENV=(fakeroot !distcc color !ccache check)
|
|||||||
#-- emptydirs: Leave empty directories in packages
|
#-- emptydirs: Leave empty directories in packages
|
||||||
#-- zipman: Compress manual (man and info) pages in MAN_DIRS with gzip
|
#-- zipman: Compress manual (man and info) pages in MAN_DIRS with gzip
|
||||||
#-- purge: Remove files specified by PURGE_TARGETS
|
#-- purge: Remove files specified by PURGE_TARGETS
|
||||||
|
#-- upx: Compress binary executable files using UPX
|
||||||
#
|
#
|
||||||
OPTIONS=(strip docs libtool emptydirs zipman purge)
|
OPTIONS=(strip docs libtool emptydirs zipman purge !upx)
|
||||||
|
|
||||||
#-- File integrity checks to use. Valid: md5, sha1, sha256, sha384, sha512
|
#-- File integrity checks to use. Valid: md5, sha1, sha256, sha384, sha512
|
||||||
INTEGRITY_CHECK=(md5)
|
INTEGRITY_CHECK=(md5)
|
||||||
@@ -100,6 +105,8 @@ PURGE_TARGETS=(usr/{,share}/info/dir .packlist *.pod)
|
|||||||
#SRCPKGDEST=/home/srcpackages
|
#SRCPKGDEST=/home/srcpackages
|
||||||
#-- Packager: name/email of the person or organization building packages
|
#-- Packager: name/email of the person or organization building packages
|
||||||
#PACKAGER="John Doe <john@doe.com>"
|
#PACKAGER="John Doe <john@doe.com>"
|
||||||
|
#-- Specify a key to use for package signing
|
||||||
|
#GPGKEY=""
|
||||||
|
|
||||||
#########################################################################
|
#########################################################################
|
||||||
# EXTENSION DEFAULTS
|
# EXTENSION DEFAULTS
|
||||||
|
6
mkarchroot → mkarchroot.in
Executable file → Normal file
6
mkarchroot → mkarchroot.in
Executable file → Normal file
@@ -73,7 +73,7 @@ if [ -z "$cache_dir" ]; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -f /etc/pacman.d/mirrorlist ]; then
|
if [ -f /etc/pacman.d/mirrorlist ]; then
|
||||||
host_mirror=$(pacman -Sdp 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
|
fi
|
||||||
if [ -z "${host_mirror}" ]; then
|
if [ -z "${host_mirror}" ]; then
|
||||||
host_mirror='http://mirrors.kernel.org/archlinux/$repo/os/$arch'
|
host_mirror='http://mirrors.kernel.org/archlinux/$repo/os/$arch'
|
||||||
@@ -220,8 +220,8 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -e "${working_dir}/etc/locale.gen" ]; then
|
if [ -e "${working_dir}/etc/locale.gen" ]; then
|
||||||
echo -e 'en_US.UTF-8 UTF-8\nde_DE.UTF-8 UTF-8' > "${working_dir}/etc/locale.gen"
|
sed -i 's@^#\(en_US\|de_DE\)\(\.UTF-8\)@\1\2@' "${working_dir}/etc/locale.gen"
|
||||||
chroot "${working_dir}" locale-gen
|
chroot "${working_dir}" /usr/sbin/locale-gen
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -e "${working_dir}/.arch-chroot" ]; then
|
if [ ! -e "${working_dir}/.arch-chroot" ]; then
|
@@ -13,11 +13,12 @@
|
|||||||
#DBPath = /var/lib/pacman/
|
#DBPath = /var/lib/pacman/
|
||||||
#CacheDir = /var/cache/pacman/pkg/
|
#CacheDir = /var/cache/pacman/pkg/
|
||||||
#LogFile = /var/log/pacman.log
|
#LogFile = /var/log/pacman.log
|
||||||
|
#GPGDir = /etc/pacman.d/gnupg/
|
||||||
HoldPkg = pacman glibc
|
HoldPkg = pacman glibc
|
||||||
# If upgrades are available for these packages they will be asked for first
|
# If upgrades are available for these packages they will be asked for first
|
||||||
SyncFirst = pacman
|
SyncFirst = pacman
|
||||||
#XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
|
|
||||||
#XferCommand = /usr/bin/curl -C - -f %u > %o
|
#XferCommand = /usr/bin/curl -C - -f %u > %o
|
||||||
|
#XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
|
||||||
#CleanMethod = KeepInstalled
|
#CleanMethod = KeepInstalled
|
||||||
Architecture = auto
|
Architecture = auto
|
||||||
|
|
||||||
@@ -28,12 +29,25 @@ Architecture = auto
|
|||||||
#NoUpgrade =
|
#NoUpgrade =
|
||||||
#NoExtract =
|
#NoExtract =
|
||||||
|
|
||||||
# Misc options (all disabled by default)
|
# Misc options
|
||||||
#UseSyslog
|
#UseSyslog
|
||||||
#ShowSize
|
|
||||||
#UseDelta
|
#UseDelta
|
||||||
#TotalDownload
|
#TotalDownload
|
||||||
#CheckSpace
|
CheckSpace
|
||||||
|
#VerbosePkgLists
|
||||||
|
|
||||||
|
# PGP signature checking
|
||||||
|
# NOTE: None of this will work without running `pacman-key --init` first.
|
||||||
|
# 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
|
||||||
|
# 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
|
||||||
|
# trusted.
|
||||||
|
SigLevel = Optional TrustAll
|
||||||
|
# Disable signature checks for now
|
||||||
|
SigLevel = Never
|
||||||
|
|
||||||
#
|
#
|
||||||
# REPOSITORIES
|
# REPOSITORIES
|
||||||
@@ -76,5 +90,6 @@ 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
|
||||||
|
|
||||||
|
@@ -13,11 +13,12 @@
|
|||||||
#DBPath = /var/lib/pacman/
|
#DBPath = /var/lib/pacman/
|
||||||
#CacheDir = /var/cache/pacman/pkg/
|
#CacheDir = /var/cache/pacman/pkg/
|
||||||
#LogFile = /var/log/pacman.log
|
#LogFile = /var/log/pacman.log
|
||||||
|
#GPGDir = /etc/pacman.d/gnupg/
|
||||||
HoldPkg = pacman glibc
|
HoldPkg = pacman glibc
|
||||||
# If upgrades are available for these packages they will be asked for first
|
# If upgrades are available for these packages they will be asked for first
|
||||||
SyncFirst = pacman
|
SyncFirst = pacman
|
||||||
#XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
|
|
||||||
#XferCommand = /usr/bin/curl -C - -f %u > %o
|
#XferCommand = /usr/bin/curl -C - -f %u > %o
|
||||||
|
#XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
|
||||||
#CleanMethod = KeepInstalled
|
#CleanMethod = KeepInstalled
|
||||||
Architecture = auto
|
Architecture = auto
|
||||||
|
|
||||||
@@ -28,12 +29,25 @@ Architecture = auto
|
|||||||
#NoUpgrade =
|
#NoUpgrade =
|
||||||
#NoExtract =
|
#NoExtract =
|
||||||
|
|
||||||
# Misc options (all disabled by default)
|
# Misc options
|
||||||
#UseSyslog
|
#UseSyslog
|
||||||
#ShowSize
|
|
||||||
#UseDelta
|
#UseDelta
|
||||||
#TotalDownload
|
#TotalDownload
|
||||||
#CheckSpace
|
CheckSpace
|
||||||
|
#VerbosePkgLists
|
||||||
|
|
||||||
|
# PGP signature checking
|
||||||
|
# NOTE: None of this will work without running `pacman-key --init` first.
|
||||||
|
# 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
|
||||||
|
# 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
|
||||||
|
# trusted.
|
||||||
|
#SigLevel = Optional TrustAll
|
||||||
|
# Disable signature checks for now
|
||||||
|
SigLevel = Never
|
||||||
|
|
||||||
#
|
#
|
||||||
# REPOSITORIES
|
# REPOSITORIES
|
||||||
@@ -76,6 +90,7 @@ 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 repository here.
|
||||||
[multilib-testing]
|
[multilib-testing]
|
||||||
|
#SigLevel = Optional TrustAll
|
||||||
Include = /etc/pacman.d/mirrorlist
|
Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
[multilib]
|
[multilib]
|
||||||
|
@@ -13,11 +13,12 @@
|
|||||||
#DBPath = /var/lib/pacman/
|
#DBPath = /var/lib/pacman/
|
||||||
#CacheDir = /var/cache/pacman/pkg/
|
#CacheDir = /var/cache/pacman/pkg/
|
||||||
#LogFile = /var/log/pacman.log
|
#LogFile = /var/log/pacman.log
|
||||||
|
#GPGDir = /etc/pacman.d/gnupg/
|
||||||
HoldPkg = pacman glibc
|
HoldPkg = pacman glibc
|
||||||
# If upgrades are available for these packages they will be asked for first
|
# If upgrades are available for these packages they will be asked for first
|
||||||
SyncFirst = pacman
|
SyncFirst = pacman
|
||||||
#XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
|
|
||||||
#XferCommand = /usr/bin/curl -C - -f %u > %o
|
#XferCommand = /usr/bin/curl -C - -f %u > %o
|
||||||
|
#XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
|
||||||
#CleanMethod = KeepInstalled
|
#CleanMethod = KeepInstalled
|
||||||
Architecture = auto
|
Architecture = auto
|
||||||
|
|
||||||
@@ -28,12 +29,25 @@ Architecture = auto
|
|||||||
#NoUpgrade =
|
#NoUpgrade =
|
||||||
#NoExtract =
|
#NoExtract =
|
||||||
|
|
||||||
# Misc options (all disabled by default)
|
# Misc options
|
||||||
#UseSyslog
|
#UseSyslog
|
||||||
#ShowSize
|
|
||||||
#UseDelta
|
#UseDelta
|
||||||
#TotalDownload
|
#TotalDownload
|
||||||
#CheckSpace
|
CheckSpace
|
||||||
|
#VerbosePkgLists
|
||||||
|
|
||||||
|
# PGP signature checking
|
||||||
|
# NOTE: None of this will work without running `pacman-key --init` first.
|
||||||
|
# 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
|
||||||
|
# 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
|
||||||
|
# trusted.
|
||||||
|
#SigLevel = Optional TrustAll
|
||||||
|
# Disable signature checks for now
|
||||||
|
SigLevel = Never
|
||||||
|
|
||||||
#
|
#
|
||||||
# REPOSITORIES
|
# REPOSITORIES
|
||||||
@@ -76,6 +90,7 @@ 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 repository here.
|
||||||
[multilib]
|
[multilib]
|
||||||
|
#SigLevel = Optional TrustAll
|
||||||
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
|
||||||
|
@@ -13,11 +13,12 @@
|
|||||||
#DBPath = /var/lib/pacman/
|
#DBPath = /var/lib/pacman/
|
||||||
#CacheDir = /var/cache/pacman/pkg/
|
#CacheDir = /var/cache/pacman/pkg/
|
||||||
#LogFile = /var/log/pacman.log
|
#LogFile = /var/log/pacman.log
|
||||||
|
#GPGDir = /etc/pacman.d/gnupg/
|
||||||
HoldPkg = pacman glibc
|
HoldPkg = pacman glibc
|
||||||
# If upgrades are available for these packages they will be asked for first
|
# If upgrades are available for these packages they will be asked for first
|
||||||
SyncFirst = pacman
|
SyncFirst = pacman
|
||||||
#XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
|
|
||||||
#XferCommand = /usr/bin/curl -C - -f %u > %o
|
#XferCommand = /usr/bin/curl -C - -f %u > %o
|
||||||
|
#XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
|
||||||
#CleanMethod = KeepInstalled
|
#CleanMethod = KeepInstalled
|
||||||
Architecture = auto
|
Architecture = auto
|
||||||
|
|
||||||
@@ -28,12 +29,25 @@ Architecture = auto
|
|||||||
#NoUpgrade =
|
#NoUpgrade =
|
||||||
#NoExtract =
|
#NoExtract =
|
||||||
|
|
||||||
# Misc options (all disabled by default)
|
# Misc options
|
||||||
#UseSyslog
|
#UseSyslog
|
||||||
#ShowSize
|
|
||||||
#UseDelta
|
#UseDelta
|
||||||
#TotalDownload
|
#TotalDownload
|
||||||
#CheckSpace
|
CheckSpace
|
||||||
|
#VerbosePkgLists
|
||||||
|
|
||||||
|
# PGP signature checking
|
||||||
|
# NOTE: None of this will work without running `pacman-key --init` first.
|
||||||
|
# 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
|
||||||
|
# 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
|
||||||
|
# trusted.
|
||||||
|
#SigLevel = Optional TrustAll
|
||||||
|
# Disable signature checks for now
|
||||||
|
SigLevel = Never
|
||||||
|
|
||||||
#
|
#
|
||||||
# REPOSITORIES
|
# REPOSITORIES
|
||||||
@@ -76,6 +90,7 @@ Include = /etc/pacman.d/mirrorlist
|
|||||||
[community-testing]
|
[community-testing]
|
||||||
Include = /etc/pacman.d/mirrorlist
|
Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
|
#SigLevel = Optional TrustAll
|
||||||
[community]
|
[community]
|
||||||
Include = /etc/pacman.d/mirrorlist
|
Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
|
@@ -13,11 +13,12 @@
|
|||||||
#DBPath = /var/lib/pacman/
|
#DBPath = /var/lib/pacman/
|
||||||
#CacheDir = /var/cache/pacman/pkg/
|
#CacheDir = /var/cache/pacman/pkg/
|
||||||
#LogFile = /var/log/pacman.log
|
#LogFile = /var/log/pacman.log
|
||||||
|
#GPGDir = /etc/pacman.d/gnupg/
|
||||||
HoldPkg = pacman glibc
|
HoldPkg = pacman glibc
|
||||||
# If upgrades are available for these packages they will be asked for first
|
# If upgrades are available for these packages they will be asked for first
|
||||||
SyncFirst = pacman
|
SyncFirst = pacman
|
||||||
#XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
|
|
||||||
#XferCommand = /usr/bin/curl -C - -f %u > %o
|
#XferCommand = /usr/bin/curl -C - -f %u > %o
|
||||||
|
#XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
|
||||||
#CleanMethod = KeepInstalled
|
#CleanMethod = KeepInstalled
|
||||||
Architecture = auto
|
Architecture = auto
|
||||||
|
|
||||||
@@ -28,12 +29,25 @@ Architecture = auto
|
|||||||
#NoUpgrade =
|
#NoUpgrade =
|
||||||
#NoExtract =
|
#NoExtract =
|
||||||
|
|
||||||
# Misc options (all disabled by default)
|
# Misc options
|
||||||
#UseSyslog
|
#UseSyslog
|
||||||
#ShowSize
|
|
||||||
#UseDelta
|
#UseDelta
|
||||||
#TotalDownload
|
#TotalDownload
|
||||||
#CheckSpace
|
CheckSpace
|
||||||
|
#VerbosePkgLists
|
||||||
|
|
||||||
|
# PGP signature checking
|
||||||
|
# NOTE: None of this will work without running `pacman-key --init` first.
|
||||||
|
# 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
|
||||||
|
# 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
|
||||||
|
# trusted.
|
||||||
|
#SigLevel = Optional TrustAll
|
||||||
|
# Disable signature checks for now
|
||||||
|
SigLevel = Never
|
||||||
|
|
||||||
#
|
#
|
||||||
# REPOSITORIES
|
# REPOSITORIES
|
||||||
@@ -76,5 +90,6 @@ 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
|
||||||
|
|
||||||
|
0
rebuildpkgs → rebuildpkgs.in
Executable file → Normal file
0
rebuildpkgs → rebuildpkgs.in
Executable file → Normal file
81
zsh_completion.in
Normal file
81
zsh_completion.in
Normal file
@@ -0,0 +1,81 @@
|
|||||||
|
#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 communityco=archco
|
||||||
|
|
||||||
|
_arch=(i686 x86_64 any)
|
||||||
|
|
||||||
|
_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
|
||||||
|
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
|
||||||
|
)
|
||||||
|
|
||||||
|
_archbuild_args=(
|
||||||
|
'-c[Recreate the chroot before building]'
|
||||||
|
'-r[Create chroots in this directory]:base_dir:_files -/'
|
||||||
|
)
|
||||||
|
|
||||||
|
_archco_args=(
|
||||||
|
'*:packages:_devtools_completions_all_packages'
|
||||||
|
)
|
||||||
|
|
||||||
|
_archrelease_args=(
|
||||||
|
"*:arch:($_tags[*])"
|
||||||
|
)
|
||||||
|
|
||||||
|
_archrm_args=(
|
||||||
|
'1:path:_files -/'
|
||||||
|
)
|
||||||
|
|
||||||
|
_commitpkg_args=(
|
||||||
|
"-a[Release to a specific architecture only]:arch:($_arch[*])"
|
||||||
|
'-l[Set bandwidth limit]:limit'
|
||||||
|
'1:commit_msg'
|
||||||
|
)
|
||||||
|
|
||||||
|
_finddeps_args=(
|
||||||
|
'1:packages:_devtools_completions_all_packages'
|
||||||
|
)
|
||||||
|
|
||||||
|
_makechrootpkg_args=(
|
||||||
|
'-I[Install a package into the working copy]:target:_files -g "*.pkg.tar.*(.)"'
|
||||||
|
'-c[Clean the chroot before building]'
|
||||||
|
'-d[Add the package to a local db at /repo after building]'
|
||||||
|
'-h[Display usage]'
|
||||||
|
'-l[The directory to use as the working copy]:copy_dir:_files -/'
|
||||||
|
'-r[The chroot dir to use]:chroot_dir:_files -/'
|
||||||
|
'-u[Update the working copy of the chroot before building]'
|
||||||
|
)
|
||||||
|
|
||||||
|
_mkarchroot_args=(
|
||||||
|
'-r[Run a program within the context of the chroot]:app'
|
||||||
|
'-u[Update the chroot via pacman]'
|
||||||
|
'-f[Force overwrite of files in the working-dir]'
|
||||||
|
'-C[Location of a pacman config file]:pacman_config:_files'
|
||||||
|
'-M[Location of a makepkg config file]:makepkg_config:_files'
|
||||||
|
'-n[Do not copy config files into the chroot]'
|
||||||
|
'-c[Set pacman cache]:pacman_cache:_files -/'
|
||||||
|
'-h[Display usage]'
|
||||||
|
)
|
||||||
|
|
||||||
|
_rebuildpkgs_args=(
|
||||||
|
'1:chroot_dir:_files -/'
|
||||||
|
'*:packages:_devtools_completions_all_packages'
|
||||||
|
)
|
||||||
|
|
||||||
|
_devtools_completions_all_packages() {
|
||||||
|
typeset -U packages
|
||||||
|
packages=($(_call_program packages pacman -Sql))
|
||||||
|
compadd - "${(@)packages}"
|
||||||
|
}
|
||||||
|
|
||||||
|
_devtools() {
|
||||||
|
local argname="_${service}_args[@]"
|
||||||
|
_arguments -s "${(P)argname}"
|
||||||
|
}
|
||||||
|
|
||||||
|
_devtools
|
Reference in New Issue
Block a user