mirror of
https://gitlab.archlinux.org/archlinux/devtools.git
synced 2025-09-14 18:36:18 +02:00
Compare commits
102 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
59b7a739e8 | ||
![]() |
9e14e8691d | ||
![]() |
c22a6014d7 | ||
![]() |
d440e5998d | ||
![]() |
611314a740 | ||
![]() |
c39e59892d | ||
![]() |
f76261f073 | ||
![]() |
a37c07a8cb | ||
![]() |
72a2b4789a | ||
![]() |
30cfcdc501 | ||
![]() |
f09baea392 | ||
![]() |
d68e7cb031 | ||
![]() |
106a0cddfe | ||
![]() |
0e43db65b2 | ||
![]() |
3e3b32641d | ||
![]() |
16dd1fe6e0 | ||
![]() |
f8ab1fb7a7 | ||
![]() |
4ea489ad85 | ||
![]() |
0346db0ff7 | ||
![]() |
a1ede4dd4b | ||
![]() |
7ce9cd6965 | ||
![]() |
a7d88845a8 | ||
![]() |
ea4b0d0a67 | ||
![]() |
0c17e0d9fc | ||
![]() |
6922cc39f0 | ||
![]() |
61e8cd97fb | ||
![]() |
23aa9719a8 | ||
![]() |
40791b305f | ||
![]() |
db962d9b7c | ||
![]() |
4fb916c824 | ||
![]() |
169c33195f | ||
![]() |
86416b25b3 | ||
![]() |
fd82cb3eb7 | ||
![]() |
54ae50500b | ||
![]() |
bb1ab73c74 | ||
![]() |
219ec9f196 | ||
![]() |
14947cf645 | ||
![]() |
381f91c336 | ||
![]() |
fa47bd1a17 | ||
![]() |
8130fd3846 | ||
![]() |
3d9c9c1b46 | ||
![]() |
70e48eff7a | ||
![]() |
e82825dd6d | ||
![]() |
80061e2051 | ||
![]() |
eebe3a49b7 | ||
![]() |
06b02906b8 | ||
![]() |
71a6d2c895 | ||
![]() |
3b383b50fc | ||
![]() |
29b19aaa8b | ||
![]() |
e1b0d23027 | ||
![]() |
a5651376b4 | ||
![]() |
9561089142 | ||
![]() |
92a83232e3 | ||
![]() |
40251235a8 | ||
![]() |
c9d1b3457c | ||
![]() |
0a35566e2b | ||
![]() |
760c1c6c5f | ||
![]() |
f9aa28f895 | ||
![]() |
30aab9b936 | ||
![]() |
d8d0c87614 | ||
![]() |
4bc819a20e | ||
![]() |
d837403780 | ||
![]() |
568e21f1ac | ||
![]() |
b7c19c56b8 | ||
![]() |
7fa8af659c | ||
![]() |
032febfac4 | ||
![]() |
b5955a0d59 | ||
![]() |
47e7a3706b | ||
![]() |
a3f1558b28 | ||
![]() |
7c97db47cb | ||
![]() |
2ba39720a0 | ||
![]() |
04e79e71fd | ||
![]() |
360fcd2f0e | ||
![]() |
e03dfc4665 | ||
![]() |
5dbb964d66 | ||
![]() |
1401d57115 | ||
![]() |
2269e5c9c8 | ||
![]() |
fef3f4af90 | ||
![]() |
49947d8fb3 | ||
![]() |
ea73c2b08b | ||
![]() |
8deaebf69f | ||
![]() |
bcb0e39a0b | ||
![]() |
70794e8dec | ||
![]() |
f7c44611fe | ||
![]() |
b3b1cfba42 | ||
![]() |
486375ba0a | ||
![]() |
3a78a87739 | ||
![]() |
d4dbb527dc | ||
![]() |
bf48e3ad8f | ||
![]() |
9ec1e72e65 | ||
![]() |
97f7e2f2c3 | ||
![]() |
f6f7a52f4b | ||
![]() |
ca99683972 | ||
![]() |
1d1eef1959 | ||
![]() |
623acfaa9e | ||
![]() |
dd45bbcaf3 | ||
![]() |
c67729af98 | ||
![]() |
9dd60741bd | ||
![]() |
1b178621a5 | ||
![]() |
aa39a8a11f | ||
![]() |
d40455cabd | ||
![]() |
a80fe69f4b |
20
Makefile
20
Makefile
@@ -1,15 +1,18 @@
|
|||||||
all:
|
all:
|
||||||
|
|
||||||
install:
|
install:
|
||||||
# extrapkg/checkpkg and friends
|
# commitpkg/checkpkg and friends
|
||||||
mkdir -p $(DESTDIR)/usr/bin
|
mkdir -p $(DESTDIR)/usr/bin
|
||||||
install -m 755 checkpkg $(DESTDIR)/usr/bin
|
install -m 755 checkpkg $(DESTDIR)/usr/bin
|
||||||
install -m 755 extrapkg $(DESTDIR)/usr/bin
|
install -m 755 commitpkg $(DESTDIR)/usr/bin
|
||||||
ln -sf extrapkg $(DESTDIR)/usr/bin/corepkg
|
ln -sf commitpkg $(DESTDIR)/usr/bin/extrapkg
|
||||||
ln -sf extrapkg $(DESTDIR)/usr/bin/testingpkg
|
ln -sf commitpkg $(DESTDIR)/usr/bin/corepkg
|
||||||
ln -sf extrapkg $(DESTDIR)/usr/bin/unstablepkg
|
ln -sf commitpkg $(DESTDIR)/usr/bin/testingpkg
|
||||||
|
ln -sf commitpkg $(DESTDIR)/usr/bin/communitypkg
|
||||||
|
ln -sf commitpkg $(DESTDIR)/usr/bin/community-testingpkg
|
||||||
# arch{co,release,rm}
|
# arch{co,release,rm}
|
||||||
install -m 755 archco $(DESTDIR)/usr/bin
|
install -m 755 archco $(DESTDIR)/usr/bin
|
||||||
|
install -m 755 communityco $(DESTDIR)/usr/bin
|
||||||
install -m 755 archrelease $(DESTDIR)/usr/bin
|
install -m 755 archrelease $(DESTDIR)/usr/bin
|
||||||
install -m 755 archrm $(DESTDIR)/usr/bin
|
install -m 755 archrm $(DESTDIR)/usr/bin
|
||||||
# new chroot tools, only usable by root
|
# new chroot tools, only usable by root
|
||||||
@@ -19,14 +22,17 @@ install:
|
|||||||
#Additional packaging helper scripts
|
#Additional packaging helper scripts
|
||||||
install -m 755 lddd $(DESTDIR)/usr/bin
|
install -m 755 lddd $(DESTDIR)/usr/bin
|
||||||
install -m 755 finddeps $(DESTDIR)/usr/bin
|
install -m 755 finddeps $(DESTDIR)/usr/bin
|
||||||
|
install -m 755 rebuildpkgs $(DESTDIR)/usr/bin
|
||||||
|
|
||||||
uninstall:
|
uninstall:
|
||||||
# remove all files we installed
|
# remove all files we installed
|
||||||
rm $(DESTDIR)/usr/bin/checkpkg
|
rm $(DESTDIR)/usr/bin/checkpkg
|
||||||
|
rm $(DESTDIR)/usr/bin/commitpkg
|
||||||
rm $(DESTDIR)/usr/bin/extrapkg
|
rm $(DESTDIR)/usr/bin/extrapkg
|
||||||
rm $(DESTDIR)/usr/bin/corepkg
|
rm $(DESTDIR)/usr/bin/corepkg
|
||||||
rm $(DESTDIR)/usr/bin/testingpkg
|
rm $(DESTDIR)/usr/bin/testingpkg
|
||||||
rm $(DESTDIR)/usr/bin/unstablepkg
|
rm $(DESTDIR)/usr/bin/communitypkg
|
||||||
|
rm $(DESTDIR)/usr/bin/community-testingpkg
|
||||||
rm $(DESTDIR)/usr/sbin/mkarchroot
|
rm $(DESTDIR)/usr/sbin/mkarchroot
|
||||||
rm $(DESTDIR)/usr/sbin/makechrootpkg
|
rm $(DESTDIR)/usr/sbin/makechrootpkg
|
||||||
rm $(DESTDIR)/usr/bin/lddd
|
rm $(DESTDIR)/usr/bin/lddd
|
||||||
@@ -34,3 +40,5 @@ uninstall:
|
|||||||
rm $(DESTDIR)/usr/bin/archco
|
rm $(DESTDIR)/usr/bin/archco
|
||||||
rm $(DESTDIR)/usr/bin/archrelease
|
rm $(DESTDIR)/usr/bin/archrelease
|
||||||
rm $(DESTDIR)/usr/bin/archrm
|
rm $(DESTDIR)/usr/bin/archrm
|
||||||
|
rm $(DESTDIR)/usr/bin/communityco
|
||||||
|
rm $(DESTDIR)/usr/bin/rebuildpkgs
|
||||||
|
2
archco
2
archco
@@ -6,5 +6,5 @@ if [ "$1" = "" ]; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
for i in "$@"; do
|
for i in "$@"; do
|
||||||
svn co svn+ssh://svn.archlinux.org/home/svn-packages/$i
|
svn co svn+ssh://gerolde.archlinux.org/srv/svn-packages/$i
|
||||||
done
|
done
|
||||||
|
45
archrelease
45
archrelease
@@ -5,7 +5,7 @@ if [ "$1" = "" ]; then
|
|||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -f "PKGBUILD" ]; then
|
if [ ! -f PKGBUILD ]; then
|
||||||
echo "archrelease: PKGBUILD not found"
|
echo "archrelease: PKGBUILD not found"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
@@ -15,34 +15,19 @@ if [ "$(basename $(readlink -f .))" != "trunk" ]; then
|
|||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -d ../repos/$1 ]; then
|
if [ "$(svn diff)" != "" ]; then
|
||||||
pushd ..
|
echo "archrelease: You have not committed your changes yet!"
|
||||||
[ -d repos ] || mkdir repos
|
echo " Please run 'upgpkg' or 'svn commit' first"
|
||||||
svn copy -r HEAD trunk repos/$1
|
exit 1
|
||||||
svn commit -m "archrelease: new repo $1"
|
|
||||||
pushd repos/$1
|
|
||||||
svnmerge init
|
|
||||||
svn commit -F svnmerge-commit-message.txt
|
|
||||||
rm svnmerge-commit-message.txt
|
|
||||||
popd
|
|
||||||
popd
|
|
||||||
else
|
|
||||||
svnmerge merge ../repos/$1
|
|
||||||
pushd ..
|
|
||||||
if [ -f trunk/svnmerge-commit-message.txt ]; then
|
|
||||||
svn commit -F trunk/svnmerge-commit-message.txt
|
|
||||||
if [ $? -ne 0 ]; then
|
|
||||||
# The user is going to have to clean things up a bit
|
|
||||||
echo "*** ATTENTION: There was a problem merging the package changes ***"
|
|
||||||
echo "To fix it, edit the conflicting files in repos/$1 (the ones that are C in svn status)."
|
|
||||||
echo "Once you have resolved conflicts, execute 'svn resolved <path to file>' to tell svn the error was resolved."
|
|
||||||
echo "Then to finish the merge commit, execute 'svn commit -F trunk/svnmerge-commit-message.txt' and, if there are no problems, delete trunk/svnmerge-commit-message.txt"
|
|
||||||
exit $?
|
|
||||||
fi
|
|
||||||
rm trunk/svnmerge-commit-message.txt
|
|
||||||
else
|
|
||||||
echo "Nothing to commit"
|
|
||||||
fi
|
|
||||||
popd
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
echo -n 'releasing package...'
|
||||||
|
pushd .. >/dev/null
|
||||||
|
if [ -d repos/$1 ]; then
|
||||||
|
svn rm --force -q repos/$1
|
||||||
|
svn commit -q -m "archrelease: remove $1"
|
||||||
|
fi
|
||||||
|
svn copy -q -r HEAD trunk repos/$1
|
||||||
|
svn commit -q -m "archrelease: copy trunk to $1"
|
||||||
|
popd >/dev/null
|
||||||
|
echo 'done'
|
||||||
|
91
checkpkg
91
checkpkg
@@ -23,65 +23,72 @@ if [ ! -f PKGBUILD ]; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
source PKGBUILD
|
source PKGBUILD
|
||||||
|
if [ "$arch" == "any" ]; then
|
||||||
pkgfile=${pkgname}-${pkgver}-${pkgrel}-${CARCH}.pkg.tar.gz
|
CARCH="any"
|
||||||
oldstylepkgfile=${pkgname}-${pkgver}-${pkgrel}.pkg.tar.gz
|
|
||||||
|
|
||||||
if [ -f "$(pwd)/$pkgfile" ]; then
|
|
||||||
pkgfile=$(pwd)/$pkgfile
|
|
||||||
elif [ -f "$PKGDEST/$pkgfile" ]; then
|
|
||||||
pkgfile=$PKGDEST/$pkgfile
|
|
||||||
elif [ -f "$(pwd)/$oldstylepkgfile" ]; then
|
|
||||||
pkgfile=$(pwd)/$oldstylepkgfile
|
|
||||||
elif [ -f "$PKGDEST/$oldstylepkgfile" ]; then
|
|
||||||
pkgfile=$PKGDEST/$oldstylepkgfile
|
|
||||||
else
|
|
||||||
echo "File \"$pkgfile\" doesn't exist"
|
|
||||||
exit 1
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
tmp=`pacman -Spd --noconfirm $pkgname`
|
for _pkgname in ${pkgname[@]}; do
|
||||||
|
pkgfile=${_pkgname}-${pkgver}-${pkgrel}-${CARCH}${PKGEXT}
|
||||||
|
oldstylepkgfile=${_pkgname}-${pkgver}-${pkgrel}${PKGEXT}
|
||||||
|
|
||||||
if [ $? -ne 0 ]; then
|
if [ -f "$(pwd)/$pkgfile" ]; then
|
||||||
echo "Couldn't download previous package."
|
pkgfile=$(pwd)/$pkgfile
|
||||||
|
elif [ -f "$PKGDEST/$pkgfile" ]; then
|
||||||
|
pkgfile=$PKGDEST/$pkgfile
|
||||||
|
elif [ -f "$(pwd)/$oldstylepkgfile" ]; then
|
||||||
|
pkgfile=$(pwd)/$oldstylepkgfile
|
||||||
|
elif [ -f "$PKGDEST/$oldstylepkgfile" ]; then
|
||||||
|
pkgfile=$PKGDEST/$oldstylepkgfile
|
||||||
|
else
|
||||||
|
echo "File \"$pkgfile\" doesn't exist"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
pkgurl=`echo $tmp | rev | cut -d ' ' -f 1 | rev`
|
tmp=`pacman -Spd --noconfirm $_pkgname`
|
||||||
|
|
||||||
oldpkg=`strip_url $pkgurl`
|
if [ $? -ne 0 ]; then
|
||||||
|
echo "Couldn't download previous package for $_pkgname."
|
||||||
if [ "$(basename $oldpkg)" = "$(basename $pkgfile)" ]; then
|
|
||||||
echo "The built package is the one in the repo right now!"
|
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -f $oldpkg ]; then
|
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
|
if echo $pkgurl | grep "^file:///" > /dev/null 2>&1; then
|
||||||
cp `echo $pkgurl | sed 's#^file://##'` .
|
cp `echo $pkgurl | sed 's#^file://##'` .
|
||||||
|
elif [ -f $PKGDEST/$oldpkg ]; then
|
||||||
|
cp $PKGDEST/$oldpkg .
|
||||||
else
|
else
|
||||||
wget $pkgurl
|
wget --quiet $pkgurl
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
tar tzf $oldpkg > filelist-old
|
bsdtar tf $oldpkg > filelist-$_pkgname-old
|
||||||
tar tzf "$pkgfile" > filelist
|
bsdtar tf "$pkgfile" > filelist-$_pkgname
|
||||||
|
|
||||||
sort -o filelist filelist
|
sort -o filelist-$_pkgname filelist-$_pkgname
|
||||||
sort -o filelist-old filelist-old
|
sort -o filelist-$_pkgname-old filelist-$_pkgname-old
|
||||||
|
|
||||||
diff filelist-old filelist
|
diff filelist-$_pkgname-old filelist-$_pkgname
|
||||||
|
|
||||||
if diff filelist-old filelist | grep '\.so\.' > /dev/null 2>&1; then
|
if diff filelist-$_pkgname-old filelist-$_pkgname | grep '\.so\.' > /dev/null 2>&1; then
|
||||||
mkdir -p pkg
|
mkdir -p pkg
|
||||||
cd pkg
|
cd pkg
|
||||||
tar xzf "$pkgfile" > /dev/null
|
bsdtar xf "$pkgfile" > /dev/null
|
||||||
for i in `diff ../filelist-old ../filelist | grep \> | grep \.so\. | awk '{print $2}'`; do
|
for i in `diff ../filelist-$_pkgname-old ../filelist-$_pkgname | grep \> | grep \.so\. | awk '{print $2}'`; do
|
||||||
echo -n "${i}: "
|
echo -n "${i}: "
|
||||||
objdump -p $i | grep SONAME
|
objdump -p $i | grep SONAME
|
||||||
done
|
done
|
||||||
else
|
else
|
||||||
echo "No filename differences"
|
echo "No filename differences for $_pkgname."
|
||||||
fi
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
# vim:ft=sh:ts=4:sw=4:et:
|
# vim:ft=sh:ts=4:sw=4:et:
|
||||||
|
104
commitpkg
Executable file
104
commitpkg
Executable file
@@ -0,0 +1,104 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
abort() {
|
||||||
|
echo ${1:-"Cancelled"}
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
# Source makepkg.conf; fail if it is not found
|
||||||
|
if [ -r "/etc/makepkg.conf" ]; then
|
||||||
|
source "/etc/makepkg.conf"
|
||||||
|
else
|
||||||
|
abort "/etc/makepkg.conf not found!"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Source user-specific makepkg.conf overrides
|
||||||
|
if [ -r ~/.makepkg.conf ]; then
|
||||||
|
source ~/.makepkg.conf
|
||||||
|
fi
|
||||||
|
|
||||||
|
cmd=$(basename "$0")
|
||||||
|
|
||||||
|
if [ ! -f PKGBUILD ]; then
|
||||||
|
abort "No PKGBUILD file"
|
||||||
|
fi
|
||||||
|
|
||||||
|
source PKGBUILD
|
||||||
|
pkgbase=${pkgbase:-$pkgname}
|
||||||
|
|
||||||
|
# set up repo-specific opts depending on how we were called
|
||||||
|
server="gerolde.archlinux.org"
|
||||||
|
if [ "$cmd" == "extrapkg" ]; then
|
||||||
|
repo="extra"
|
||||||
|
elif [ "$cmd" == "corepkg" ]; then
|
||||||
|
repo="core"
|
||||||
|
elif [ "$cmd" == "testingpkg" ]; then
|
||||||
|
repo="testing"
|
||||||
|
elif [ "$cmd" == "communitypkg" ]; then
|
||||||
|
repo="community"
|
||||||
|
server="aur.archlinux.org"
|
||||||
|
elif [ "$cmd" == "community-testingpkg" ]; then
|
||||||
|
repo="community-testing"
|
||||||
|
server="aur.archlinux.org"
|
||||||
|
else
|
||||||
|
if [ $# -eq 0 ]; then
|
||||||
|
abort "usage: commitpkg <reponame> [-l limit] [commit message]"
|
||||||
|
fi
|
||||||
|
repo="$1"
|
||||||
|
shift
|
||||||
|
fi
|
||||||
|
|
||||||
|
# check if all local source files are under version control
|
||||||
|
(for s in ${source[@]} $install; do
|
||||||
|
echo $s | grep -vq '://' && \
|
||||||
|
svn status $s | grep -q '?' && \
|
||||||
|
abort "$s is not under version control"
|
||||||
|
done) || true
|
||||||
|
|
||||||
|
# see if any limit options were passed, we'll send them to rsync
|
||||||
|
unset rsyncopts
|
||||||
|
if [ "$1" = "-l" ]; then
|
||||||
|
rsyncopts="--bwlimit=$2"
|
||||||
|
shift 2
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo -n 'committing changes to trunk...'
|
||||||
|
if [ -n "$1" ]; then
|
||||||
|
svn commit -q -m "upgpkg: $pkgbase $pkgver-$pkgrel
|
||||||
|
$1" || abort
|
||||||
|
else
|
||||||
|
svn commit -q || abort
|
||||||
|
fi
|
||||||
|
echo 'done'
|
||||||
|
|
||||||
|
for _arch in ${arch[@]}; do
|
||||||
|
for _pkgname in ${pkgname[@]}; do
|
||||||
|
pkgfile=$_pkgname-$pkgver-$pkgrel-${_arch}$PKGEXT
|
||||||
|
|
||||||
|
if [ ! -f $pkgfile -a -f "$PKGDEST/$pkgfile" ]; then
|
||||||
|
pkgfile="$PKGDEST/$pkgfile"
|
||||||
|
elif [ ! -f $pkgfile ]; then
|
||||||
|
echo "skipping ${_arch}"
|
||||||
|
continue 2
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo -n 'uploading '
|
||||||
|
rsync -c -h --progress $rsyncopts "${pkgfile}" -e ssh $server:staging/$repo || abort
|
||||||
|
done
|
||||||
|
archrelease $repo-${_arch} || abort
|
||||||
|
done
|
||||||
|
|
||||||
|
if [ "${arch[*]}" == "any" ]; then
|
||||||
|
if [ -d ../repos/$repo-i686 -a -d ../repos/$repo-x86_64 ]; then
|
||||||
|
pushd ../repos/ >/dev/null
|
||||||
|
echo -n "removing $repo-i686 and $repo-x86_64..."
|
||||||
|
svn rm $repo-i686
|
||||||
|
svn rm $repo-x86_64
|
||||||
|
svn commit -q -m "removed $repo-i686 and $repo-x86_64 for $pkgname"
|
||||||
|
echo 'done'
|
||||||
|
popd >/dev/null
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
# vim:ft=sh:ts=4:sw=4:et:
|
10
communityco
Executable file
10
communityco
Executable file
@@ -0,0 +1,10 @@
|
|||||||
|
#!/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
|
118
extrapkg
118
extrapkg
@@ -1,118 +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
|
|
||||||
|
|
||||||
cmd=`basename $0`
|
|
||||||
|
|
||||||
if [ ! -f PKGBUILD ]; then
|
|
||||||
echo "No PKGBUILD file"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ -z "$CARCH" ]; then
|
|
||||||
echo "CARCH must be set to a recognized value!"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
source PKGBUILD
|
|
||||||
pkgfile=${pkgname}-${pkgver}-${pkgrel}-${CARCH}.pkg.tar.gz
|
|
||||||
oldstylepkgfile=${pkgname}-${pkgver}-${pkgrel}.pkg.tar.gz
|
|
||||||
|
|
||||||
if [ ! -f $pkgfile ]; then
|
|
||||||
if [ -f $PKGDEST/$pkgfile ]; then
|
|
||||||
pkgfile=$PKGDEST/$pkgfile
|
|
||||||
oldstylepkgfile=$PKGDEST/$oldstylepkgfile
|
|
||||||
elif [ -f $oldstylepkgfile ]; then
|
|
||||||
pkgfile=$oldstylepkgfile
|
|
||||||
elif [ -f $PKGDEST/$oldstylepkgfile ]; then
|
|
||||||
pkgfile=$PKGDEST/$oldstylepkgfile
|
|
||||||
else
|
|
||||||
echo "File $pkgfile doesn't exist"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ "$cmd" == "extrapkg" ]; then
|
|
||||||
repo="extra"
|
|
||||||
elif [ "$cmd" == "corepkg" ]; then
|
|
||||||
repo="core"
|
|
||||||
elif [ "$cmd" == "testingpkg" ]; then
|
|
||||||
repo="testing"
|
|
||||||
elif [ "$cmd" == "unstablepkg" ]; then
|
|
||||||
repo="unstable"
|
|
||||||
elif [ "$cmd" == "communitypkg" ]; then
|
|
||||||
repo="community"
|
|
||||||
fi
|
|
||||||
|
|
||||||
# see if any limit options were passed, we'll send them to SCP
|
|
||||||
unset scpopts
|
|
||||||
if [ "$1" = "-l" ]; then
|
|
||||||
scpopts="$1 $2"
|
|
||||||
shift 2
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ "$repo" != "community" ]; then
|
|
||||||
# combine what we know into a variable
|
|
||||||
uploadto="staging/${repo}/add/$(basename ${pkgfile})"
|
|
||||||
scp ${scpopts} "${pkgfile}" "archlinux.org:${uploadto}"
|
|
||||||
if [ "$(md5sum "${pkgfile}" | cut -d' ' -f1)" != "$(ssh archlinux.org md5sum "${uploadto}" | cut -d' ' -f1)" ]; then
|
|
||||||
echo "File got corrupted during upload, cancelled."
|
|
||||||
exit 1
|
|
||||||
else
|
|
||||||
echo "File integrity okay."
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
if [ ! -f ~/.tupkg ]; then
|
|
||||||
echo "Must configure tupkg via ~/.tupkg, cancelled"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
if [ "$(basename $pkgfile)" != "$(basename $oldstylepkgfile)" ]; then
|
|
||||||
echo "Renaming makepkg3 package for compatibility"
|
|
||||||
mv $pkgfile $oldstylepkgfile
|
|
||||||
pkgfile=$oldstylepkgfile
|
|
||||||
fi
|
|
||||||
tupkg $pkgfile
|
|
||||||
fi
|
|
||||||
if [ $? -ne 0 ]; then
|
|
||||||
echo "Cancelled"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
echo "===> Uploaded $pkgfile"
|
|
||||||
|
|
||||||
if [ "$1" != "" ]; then
|
|
||||||
svn commit -m "upgpkg: $pkgname $pkgver-$pkgrel
|
|
||||||
$1" > /dev/null
|
|
||||||
if [ $? -ne 0 ]; then
|
|
||||||
echo "Cancelled"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
echo "===> Commited with \"upgpkg: $pkgname $pkgver-$pkgrel
|
|
||||||
$1\" message"
|
|
||||||
else
|
|
||||||
svn commit -m "upgpkg: $pkgname $pkgver-$pkgrel" > /dev/null
|
|
||||||
if [ $? -ne 0 ]; then
|
|
||||||
echo "Cancelled"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
echo "===> Commited with \"upgpkg: $pkgname $pkgver-$pkgrel\" message"
|
|
||||||
fi
|
|
||||||
|
|
||||||
archrelease $repo-$CARCH
|
|
||||||
if [ $? -ne 0 ]; then
|
|
||||||
echo "Cancelled"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
echo "===> Tagged for $repo-$CARCH"
|
|
||||||
|
|
||||||
# vim:ft=sh:ts=4:sw=4:et:
|
|
240
makechrootpkg
240
makechrootpkg
@@ -12,52 +12,65 @@ FORCE="n"
|
|||||||
RUN=""
|
RUN=""
|
||||||
MAKEPKG_ARGS="-sr"
|
MAKEPKG_ARGS="-sr"
|
||||||
REPACK=""
|
REPACK=""
|
||||||
|
COPY="copy"
|
||||||
WORKDIR=$PWD
|
WORKDIR=$PWD
|
||||||
|
|
||||||
|
update_first="0"
|
||||||
clean_first="0"
|
clean_first="0"
|
||||||
install_pkg=""
|
install_pkg=""
|
||||||
|
add_to_db=0
|
||||||
|
|
||||||
chrootdir="$CHROOT_SHELL"
|
chrootdir=""
|
||||||
|
|
||||||
APPNAME=$(basename "${0}")
|
APPNAME=$(basename "${0}")
|
||||||
|
|
||||||
usage ()
|
usage ()
|
||||||
{
|
{
|
||||||
echo "usage ${APPNAME} [-h] [-c] [-r CHROOT_SHELL] [--] [makepkg args]"
|
echo "usage ${APPNAME} [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."
|
||||||
echo ""
|
echo ""
|
||||||
echo "The \$CHROOT_SHELL environment variable is used to determine where"
|
echo " The chroot dir consists of the following directories:"
|
||||||
echo " your chroot shell is. The shell consists of the following"
|
echo " <chrootdir>/{root, copy} but only 'root' is required"
|
||||||
echo " directories: \$CHROOT_SHELL/{root, rw, union} but only 'root' is"
|
echo " by default. The working copy will be created as needed"
|
||||||
echo " required by default. The rest will be created as needed"
|
|
||||||
echo ""
|
echo ""
|
||||||
echo "The -c flag, if specified, will remove all files created by previous"
|
echo "The chroot 'root' directory must be created via the following"
|
||||||
echo "builds using makechrootpkg. This will ensure a clean chroot is used."
|
|
||||||
echo ""
|
|
||||||
echo "The chroot shell 'root' directory must be created via the following"
|
|
||||||
echo "command:"
|
echo "command:"
|
||||||
echo " mkarchroot \$CHROOT_SHELL/root base base-devel sudo"
|
echo " mkarchroot <chrootdir>/root base base-devel sudo"
|
||||||
echo ""
|
|
||||||
echo "If you have problems passing params to makepkg or need to pass long"
|
|
||||||
echo "options, put -- between the makechrootpkg args and the makepkg args"
|
|
||||||
echo ""
|
echo ""
|
||||||
echo "Default makepkg args: $MAKEPKG_ARGS"
|
echo "Default makepkg args: $MAKEPKG_ARGS"
|
||||||
|
echo ""
|
||||||
|
echo "Flags:"
|
||||||
|
echo "-h This help"
|
||||||
|
echo "-c Clean the chroot before building"
|
||||||
|
echo "-u Update the working copy of the chroot before building"
|
||||||
|
echo " This is useful for rebuilds without dirtying the pristine"
|
||||||
|
echo " chroot"
|
||||||
|
echo "-d Add the package to a local db at /repo after building"
|
||||||
|
echo "-r <dir> The chroot dir to use"
|
||||||
|
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 " Useful for maintain multiple copies Default: copy"
|
||||||
exit 1
|
exit 1
|
||||||
}
|
}
|
||||||
|
|
||||||
while getopts ':r:i:h:c' arg; do
|
while getopts 'hcudr:I:l:' arg; do
|
||||||
case "${arg}" in
|
case "${arg}" in
|
||||||
r) chrootdir="$OPTARG" ;;
|
h) usage ;;
|
||||||
i) install_pkg="$OPTARG" ;;
|
|
||||||
c) clean_first=1 ;;
|
c) clean_first=1 ;;
|
||||||
h|?) usage ;;
|
u) update_first=1 ;;
|
||||||
|
d) add_to_db=1 ;;
|
||||||
|
r) chrootdir="$OPTARG" ;;
|
||||||
|
I) install_pkg="$OPTARG" ;;
|
||||||
|
l) COPY="$OPTARG" ;;
|
||||||
*) MAKEPKG_ARGS="$MAKEPKG_ARGS -$arg $OPTARG" ;;
|
*) MAKEPKG_ARGS="$MAKEPKG_ARGS -$arg $OPTARG" ;;
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
|
||||||
#Get rid of trailing / in chrootdir
|
#Get rid of trailing / in chrootdir
|
||||||
[ "$chrootdir" != "/" ] && chrootdir=$(echo $chrootdir | sed 's#/$##')
|
[ "$chrootdir" != "/" ] && chrootdir=$(echo $chrootdir | sed 's#/$##')
|
||||||
|
copydir="$chrootdir/$COPY"
|
||||||
|
|
||||||
# Pass all arguments after -- right to makepkg
|
# Pass all arguments after -- right to makepkg
|
||||||
MAKEPKG_ARGS="$MAKEPKG_ARGS ${*:$OPTIND}"
|
MAKEPKG_ARGS="$MAKEPKG_ARGS ${*:$OPTIND}"
|
||||||
@@ -82,146 +95,155 @@ fi
|
|||||||
source PKGBUILD
|
source PKGBUILD
|
||||||
|
|
||||||
if [ ! -d "$chrootdir" ]; then
|
if [ ! -d "$chrootdir" ]; then
|
||||||
echo "No \$CHROOT_SHELL 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_SHELL root directory."
|
echo "Missing chroot dir root directory."
|
||||||
echo "Try using: mkarchroot \$CHROOT_SHELL base base-devel sudo"
|
echo "Try using: mkarchroot $chrootdir/root base base-devel sudo"
|
||||||
usage
|
usage
|
||||||
fi
|
fi
|
||||||
|
|
||||||
[ -d "$chrootdir/rw" -a "$clean_first" -eq "1" ] && rm -rf "$chrootdir/rw/"
|
umask 000
|
||||||
[ -d "$chrootdir/rw" ] || mkdir "$chrootdir/rw"
|
if [ ! -d "$copydir" -o "$clean_first" -eq "1" ]; then
|
||||||
[ -d "$chrootdir/union" ] || mkdir "$chrootdir/union"
|
echo -n 'creating clean working copy...'
|
||||||
|
mkdir -p "$copydir"
|
||||||
cleanup ()
|
rsync -a --delete -q -W -x "$chrootdir/root/" "$copydir"
|
||||||
{
|
echo 'done'
|
||||||
echo "cleaning up unioned mounts"
|
|
||||||
umount "$chrootdir/union/pkgdest" 2>/dev/null
|
|
||||||
umount "$chrootdir/union/srcdest" 2>/dev/null
|
|
||||||
umount "$chrootdir/union"
|
|
||||||
}
|
|
||||||
|
|
||||||
uniondir="$chrootdir/union"
|
|
||||||
echo "building union chroot"
|
|
||||||
grep -Fq unionfs /proc/filesystems
|
|
||||||
if [ $? -ne 0 ]; then
|
|
||||||
modprobe -q unionfs
|
|
||||||
if [ $? -ne 0 ]; then
|
|
||||||
echo "ERROR: No unionfs available. Abandon ship!" && exit 1
|
|
||||||
fi
|
|
||||||
fi
|
fi
|
||||||
mount -t unionfs none -o "dirs=$chrootdir/rw=rw:$chrootdir/root=ro" "$uniondir"
|
|
||||||
trap 'cleanup' 0 1 2 15
|
|
||||||
|
|
||||||
if [ -n "$install_pkg" ]; then
|
if [ -n "$install_pkg" ]; then
|
||||||
pkgname="$(basename "$install_pkg")"
|
pkgname="$(basename "$install_pkg")"
|
||||||
echo "installing '$pkgname' in chroot"
|
cp "$install_pkg" "$copydir/$pkgname"
|
||||||
cp "$install_pkg" "$uniondir/$pkgname"
|
mkarchroot -r "pacman -U /$pkgname" "$copydir"
|
||||||
mkarchroot -r "pacman -U /$pkgname" "$uniondir"
|
|
||||||
ret=$?
|
ret=$?
|
||||||
rm "$uniondir/$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
|
||||||
|
|
||||||
echo "moving build files to chroot"
|
if [ $update_first -eq 1 ]; then
|
||||||
[ -d "$uniondir/build" ] || mkdir "$uniondir/build"
|
mkarchroot -r "pacman -Syu --noconfirm" "$copydir"
|
||||||
|
fi
|
||||||
|
|
||||||
|
[ -d "$copydir/build" ] || mkdir "$copydir/build"
|
||||||
|
|
||||||
if [ "$REPACK" != "1" ]; then
|
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
|
||||||
rm -rf "$uniondir/build/"*
|
rm -rf "$copydir/build/"*
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Copy makepkg.conf and ~/.makepkg.conf into the chroot so packager has
|
# Get SRC/PKGDEST from makepkg.conf
|
||||||
# all their custom variables set.
|
SRCDEST=$(grep '^SRCDEST=' /etc/makepkg.conf | cut -d= -f2)
|
||||||
if [ -r "/etc/makepkg.conf" ]; then
|
PKGDEST=$(grep '^PKGDEST=' /etc/makepkg.conf | cut -d= -f2)
|
||||||
rm $uniondir/etc/makepkg.conf
|
|
||||||
cp /etc/makepkg.conf $uniondir/etc/makepkg.conf
|
[ -d "$copydir/pkgdest" ] || mkdir "$copydir/pkgdest"
|
||||||
fi
|
if ! grep "PKGDEST=/pkgdest" "$copydir/etc/makepkg.conf" >/dev/null 2>&1; then
|
||||||
if [ -r ~/.makepkg.conf ]; then
|
echo "PKGDEST=/pkgdest" >> "$copydir/etc/makepkg.conf"
|
||||||
cat ~/.makepkg.conf >> $uniondir/etc/makepkg.conf
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
source $uniondir/etc/makepkg.conf
|
[ -d "$copydir/srcdest" ] || mkdir "$copydir/srcdest"
|
||||||
|
if ! grep "SRCDEST=/srcdest" "$copydir/etc/makepkg.conf" >/dev/null 2>&1; then
|
||||||
# Magic trickery with PKGDEST and SRCDEST, so that the built
|
echo "SRCDEST=/srcdest" >> "$copydir/etc/makepkg.conf"
|
||||||
# files end up where they're expected in the _real_ filesystem
|
|
||||||
[ -d "$uniondir/srcdest" ] || mkdir "$uniondir/srcdest"
|
|
||||||
[ -d "$uniondir/pkgdest" ] || mkdir "$uniondir/pkgdest"
|
|
||||||
[ ! -z "$PKGDEST" ] && mount --bind "$PKGDEST" "$uniondir/pkgdest"
|
|
||||||
[ ! -z "$SRCDEST" ] && mount --bind "$SRCDEST" "$uniondir/srcdest"
|
|
||||||
|
|
||||||
if ! grep "PKGDEST=/pkgdest" "$uniondir/etc/makepkg.conf" >/dev/null 2>&1; then
|
|
||||||
echo "Setting PKGDEST in makepkg.conf"
|
|
||||||
echo "PKGDEST=/pkgdest" >> "$uniondir/etc/makepkg.conf"
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if ! grep "SRCDEST=/srcdest" "$uniondir/etc/makepkg.conf" >/dev/null 2>&1; then
|
|
||||||
echo "Setting SRCDEST in makepkg.conf"
|
|
||||||
echo "SRCDEST=/srcdest" >> "$uniondir/etc/makepkg.conf"
|
|
||||||
fi
|
|
||||||
|
|
||||||
chown -R nobody "$uniondir/build"
|
|
||||||
chown -R nobody "$uniondir/srcdest"
|
|
||||||
chown -R nobody "$uniondir/pkgdest"
|
|
||||||
|
|
||||||
# Copy PKGBUILD and sources
|
# Copy PKGBUILD and sources
|
||||||
source PKGBUILD
|
source PKGBUILD
|
||||||
cp PKGBUILD "$uniondir/build/"
|
cp PKGBUILD "$copydir/build/"
|
||||||
for f in ${source[@]}; do
|
for f in ${source[@]}; do
|
||||||
basef=$(basename $f)
|
basef=$(echo $f | sed 's|::.*||' | sed 's|^.*://.*/||g')
|
||||||
if [ -f "$basef" ]; then
|
if [ -f "$basef" ]; then
|
||||||
cp "$basef" "$uniondir/srcdest/"
|
cp "$basef" "$copydir/srcdest/"
|
||||||
|
elif [ -f "$SRCDEST/$basef" ]; then
|
||||||
|
cp "$SRCDEST/$basef" "$copydir/srcdest/"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
install_files=$(grep "install=" PKGBUILD)
|
||||||
|
for pkg in ${pkgname[@]}; do
|
||||||
|
install_files+=' '
|
||||||
|
install_files+=$(echo $install_files |sed "s/\$pkgname/$pkg/"|sed "s/\${pkgname}/$pkg/")
|
||||||
|
install_files=$(eval echo $install_files |tr '[:blank:]' '\n'|sort |uniq)
|
||||||
|
done
|
||||||
|
|
||||||
|
for f in $install_files;do
|
||||||
|
install="${f#"install="}"
|
||||||
|
if [ "$install" != "" -a -f "$install" ]; then
|
||||||
|
cp "$install" "$copydir/build/"
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
if [ "$install" != "" -a -f "$install" ]; then
|
|
||||||
cp "$install" "$uniondir/build/"
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ -f "ChangeLog" ]; then
|
if [ -f "ChangeLog" ]; then
|
||||||
cp ChangeLog "$uniondir/build/"
|
cp ChangeLog "$copydir/build/"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if ! grep "^nobody" "$uniondir/etc/sudoers" >/dev/null 2>&1; then
|
chown -R nobody "$copydir/build"
|
||||||
echo "allowing 'nobody' sudo rights in the chroot"
|
chown -R nobody "$copydir/srcdest"
|
||||||
touch "$uniondir/etc/sudoers"
|
chown -R nobody "$copydir/pkgdest"
|
||||||
echo "nobody ALL=(ALL) NOPASSWD: ALL" >> "$uniondir/etc/sudoers"
|
|
||||||
chmod 440 "$uniondir/etc/sudoers"
|
if ! grep "^nobody" "$copydir/etc/sudoers" >/dev/null 2>&1; then
|
||||||
|
touch "$copydir/etc/sudoers"
|
||||||
|
echo "nobody ALL=(ALL) NOPASSWD: ALL" >> "$copydir/etc/sudoers"
|
||||||
|
chmod 440 "$copydir/etc/sudoers"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
#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
|
||||||
#rw portion of the union
|
#working copy
|
||||||
(cat <<EOF
|
(cat <<EOF
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
export LANG=$LOCALE
|
export LANG=$LOCALE
|
||||||
cd /build
|
cd /build
|
||||||
export HOME=/build
|
export HOME=/build
|
||||||
sudo -u nobody makepkg $MAKEPKG_ARGS || touch BUILD_FAILED
|
sudo -u nobody makepkg $MAKEPKG_ARGS || touch BUILD_FAILED
|
||||||
|
[ -f BUILD_FAILED ] && exit 1
|
||||||
|
which namcap &>/dev/null && namcap /build/PKGBUILD /pkgdest/*${PKGEXT} > /pkgdest/namcap.log
|
||||||
|
exit 0
|
||||||
EOF
|
EOF
|
||||||
) > "$uniondir/chrootbuild"
|
) > "$copydir/chrootbuild"
|
||||||
chmod +x "$uniondir/chrootbuild"
|
chmod +x "$copydir/chrootbuild"
|
||||||
|
|
||||||
mkarchroot -r "/chrootbuild" "$uniondir"
|
if mkarchroot -r "/chrootbuild" "$copydir"; then
|
||||||
|
for pkgfile in "${copydir}"/pkgdest/*${PKGEXT}; do
|
||||||
|
[ -e "$pkgfile" ] || continue
|
||||||
|
_pkgname=$(basename "$pkgfile")
|
||||||
|
if [ "$add_to_db" -eq "1" ]; then
|
||||||
|
[ -d "${copydir}/repo" ] || mkdir -p "${copydir}/repo"
|
||||||
|
pushd "${copydir}/repo" >/dev/null
|
||||||
|
cp "$pkgfile" .
|
||||||
|
repo-add repo.db.tar.gz "$_pkgname"
|
||||||
|
popd >/dev/null
|
||||||
|
fi
|
||||||
|
|
||||||
source ${WORKDIR}/PKGBUILD
|
if [ -d "$PKGDEST" ]; then
|
||||||
if [ -z "$(mount | grep ${chrootdir}/union/pkgdest)" ]; then
|
mv "$pkgfile" "${PKGDEST}"
|
||||||
echo "Moving completed package file to ${WORKDIR}"
|
else
|
||||||
mv ${chrootdir}/union/pkgdest/${pkgname}-${pkgver}-${pkgrel}-*.pkg.tar.gz ${WORKDIR}
|
mv "$pkgfile" "${WORKDIR}"
|
||||||
fi
|
fi
|
||||||
if [ -z "$(mount | grep ${chrootdir}/union/srcdest)" ]; then
|
done
|
||||||
echo "Moving downloaded source files to ${WORKDIR}"
|
|
||||||
mv ${chrootdir}/union/srcdest/* ${WORKDIR}
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ -e ${chrootdir}/rw/build/BUILD_FAILED ]; then
|
for f in "${copydir}"/srcdest/*; do
|
||||||
echo "Build failed, check \$CHROOT_DIR/rw/build"
|
[ -e "$f" ] || continue
|
||||||
rm ${chrootdir}/rw/build/BUILD_FAILED
|
if [ -d "$SRCDEST" ]; then
|
||||||
|
mv "$f" "${SRCDEST}"
|
||||||
|
else
|
||||||
|
mv "$f" "${WORKDIR}"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
for l in "${copydir}"/build/*-{build,package}.log; do
|
||||||
|
[ -f "$l" ] && mv "$l" "${WORKDIR}"
|
||||||
|
done
|
||||||
else
|
else
|
||||||
rm -rf ${chrootdir}/rw/build/*
|
#just in case. We returned 1, make sure we fail
|
||||||
echo "Build complete"
|
touch "${copydir}/build/BUILD_FAILED"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -e "${copydir}/build/BUILD_FAILED" ]; then
|
||||||
|
echo "Build failed, check $copydir/build"
|
||||||
|
rm "${copydir}/build/BUILD_FAILED"
|
||||||
|
else
|
||||||
|
rm -rf "${copydir}"/build/*
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
50
mkarchroot
50
mkarchroot
@@ -10,8 +10,10 @@
|
|||||||
|
|
||||||
FORCE="n"
|
FORCE="n"
|
||||||
RUN=""
|
RUN=""
|
||||||
|
NOCOPY="n"
|
||||||
|
|
||||||
working_dir=""
|
working_dir=""
|
||||||
|
cache_dir=$((grep -m 1 '^CacheDir' /etc/pacman.conf || echo 'CacheDir = /var/cache/pacman/pkg') | sed 's/CacheDir\s*=\s*//')
|
||||||
|
|
||||||
APPNAME=$(basename "${0}")
|
APPNAME=$(basename "${0}")
|
||||||
|
|
||||||
@@ -23,19 +25,23 @@ usage ()
|
|||||||
echo " -r <app> Run 'app' within the context of the chroot"
|
echo " -r <app> Run 'app' within the context of the chroot"
|
||||||
echo " -u Update the chroot via pacman"
|
echo " -u Update the chroot via pacman"
|
||||||
echo " -f Force overwrite of files in the working-dir"
|
echo " -f Force overwrite of files in the working-dir"
|
||||||
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 " -c <dir> Set pacman cache. Default: ${cache_dir}"
|
||||||
echo " -h This message"
|
echo " -h This message"
|
||||||
exit $1
|
exit $1
|
||||||
}
|
}
|
||||||
|
|
||||||
while getopts 'r:ufhC:M:' arg; do
|
while getopts 'r:ufnhC:M:c:' arg; do
|
||||||
case "${arg}" in
|
case "${arg}" in
|
||||||
r) RUN="$OPTARG" ;;
|
r) RUN="$OPTARG" ;;
|
||||||
u) RUN="pacman -Syu" ;;
|
u) RUN="pacman -Syu" ;;
|
||||||
f) FORCE="y" ;;
|
f) FORCE="y" ;;
|
||||||
C) pac_conf="$OPTARG" ;;
|
C) pac_conf="$OPTARG" ;;
|
||||||
M) makepkg_conf="$OPTARG" ;;
|
M) makepkg_conf="$OPTARG" ;;
|
||||||
|
n) NOCOPY="y" ;;
|
||||||
|
c) cache_dir="$OPTARG" ;;
|
||||||
h|?) usage 0 ;;
|
h|?) usage 0 ;;
|
||||||
*) echo "invalid argument '${arg}'"; usage 1 ;;
|
*) echo "invalid argument '${arg}'"; usage 1 ;;
|
||||||
esac
|
esac
|
||||||
@@ -65,45 +71,39 @@ shift 1
|
|||||||
|
|
||||||
chroot_mount ()
|
chroot_mount ()
|
||||||
{
|
{
|
||||||
echo "mounting sysfs : /sys"
|
|
||||||
[ -e "${working_dir}/sys" ] || mkdir "${working_dir}/sys"
|
[ -e "${working_dir}/sys" ] || mkdir "${working_dir}/sys"
|
||||||
mount -t sysfs sysfs "${working_dir}/sys"
|
mount -t sysfs sysfs "${working_dir}/sys"
|
||||||
|
|
||||||
echo "mounting procfs : /proc"
|
|
||||||
[ -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 "${working_dir}/proc"
|
||||||
|
|
||||||
echo "binding device nodes : /dev"
|
|
||||||
[ -e "${working_dir}/dev" ] || mkdir "${working_dir}/dev"
|
[ -e "${working_dir}/dev" ] || mkdir "${working_dir}/dev"
|
||||||
mount -o bind /dev "${working_dir}/dev"
|
mount -o bind /dev "${working_dir}/dev"
|
||||||
|
|
||||||
echo "binding pacman cache : /var/cache/pacman"
|
[ -e "${working_dir}/var/cache/pacman/pkg" ] || mkdir -p "${working_dir}/var/cache/pacman/pkg"
|
||||||
[ -e "${working_dir}/var/cache/pacman" ] || mkdir -p "${working_dir}/var/cache/pacman"
|
[ -e "${cache_dir}" ] || mkdir -p "${cache_dir}"
|
||||||
mount -o bind /var/cache/pacman "${working_dir}/var/cache/pacman"
|
mount -o bind "${cache_dir}" "${working_dir}/var/cache/pacman/pkg"
|
||||||
|
|
||||||
trap 'chroot_umount' 0 1 2 15
|
trap 'chroot_umount' 0 1 2 15
|
||||||
}
|
}
|
||||||
|
|
||||||
copy_hostconf ()
|
copy_hostconf ()
|
||||||
{
|
{
|
||||||
echo "copying mtab : /etc/mtab"
|
|
||||||
cp /etc/mtab "${working_dir}/etc/mtab"
|
cp /etc/mtab "${working_dir}/etc/mtab"
|
||||||
|
|
||||||
echo "copying resolv.conf : /etc/resolv.conf"
|
|
||||||
cp /etc/resolv.conf "${working_dir}/etc/resolv.conf"
|
cp /etc/resolv.conf "${working_dir}/etc/resolv.conf"
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
chroot_umount ()
|
chroot_umount ()
|
||||||
{
|
{
|
||||||
echo "cleaning up mounts"
|
|
||||||
umount "${working_dir}/proc"
|
umount "${working_dir}/proc"
|
||||||
umount "${working_dir}/sys"
|
umount "${working_dir}/sys"
|
||||||
umount "${working_dir}/dev"
|
umount "${working_dir}/dev"
|
||||||
umount "${working_dir}/var/cache/pacman"
|
umount "${working_dir}/var/cache/pacman/pkg"
|
||||||
}
|
}
|
||||||
# }}}
|
# }}}
|
||||||
|
|
||||||
|
umask 000
|
||||||
if [ "$RUN" != "" ]; then
|
if [ "$RUN" != "" ]; then
|
||||||
# run chroot {{{
|
# run chroot {{{
|
||||||
#Sanity check
|
#Sanity check
|
||||||
@@ -116,7 +116,6 @@ if [ "$RUN" != "" ]; then
|
|||||||
chroot_mount
|
chroot_mount
|
||||||
copy_hostconf
|
copy_hostconf
|
||||||
|
|
||||||
echo "starting chroot ($RUN)"
|
|
||||||
chroot "${working_dir}" ${RUN}
|
chroot "${working_dir}" ${RUN}
|
||||||
|
|
||||||
# }}}
|
# }}}
|
||||||
@@ -140,12 +139,7 @@ else
|
|||||||
pacargs="$pacargs --config=${pac_conf}"
|
pacargs="$pacargs --config=${pac_conf}"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ $# -eq 0 ]; then
|
if [ $# -ne 0 ]; then
|
||||||
echo "no packages to install"
|
|
||||||
else
|
|
||||||
echo "installing packages:"
|
|
||||||
for i in $@; do echo -e "\t$i"; done
|
|
||||||
|
|
||||||
op="-Sy"
|
op="-Sy"
|
||||||
if [ "$FORCE" = "y" ]; then
|
if [ "$FORCE" = "y" ]; then
|
||||||
op="${op}f"
|
op="${op}f"
|
||||||
@@ -157,23 +151,21 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -d "${working_dir}/lib/modules" ]; then
|
if [ -d "${working_dir}/lib/modules" ]; then
|
||||||
echo "running ldconfig"
|
|
||||||
ldconfig -r "${working_dir}"
|
ldconfig -r "${working_dir}"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "$pac_conf" != "" ]; then
|
if [ "$pac_conf" != "" -a "$NOCOPY" = "n" ]; then
|
||||||
echo "installing custom pacman.conf"
|
|
||||||
cp ${pac_conf} ${working_dir}/etc/pacman.conf
|
cp ${pac_conf} ${working_dir}/etc/pacman.conf
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "$makepkg_conf" != "" ]; then
|
if [ "$makepkg_conf" != "" -a "$NOCOPY" = "n" ]; then
|
||||||
echo "installing custom makepkg.conf"
|
|
||||||
cp ${makepkg_conf} ${working_dir}/etc/makepkg.conf
|
cp ${makepkg_conf} ${working_dir}/etc/makepkg.conf
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "generating default locales"
|
if [ -e "${working_dir}/etc/locale.gen" ]; then
|
||||||
cp /etc/locale.gen "${working_dir}/etc/locale.gen"
|
cp /etc/locale.gen "${working_dir}/etc/locale.gen"
|
||||||
chroot "${working_dir}" locale-gen
|
chroot "${working_dir}" locale-gen
|
||||||
|
fi
|
||||||
|
|
||||||
if [ ! -e "${working_dir}/.arch-chroot" ]; then
|
if [ ! -e "${working_dir}/.arch-chroot" ]; then
|
||||||
date +%s > "${working_dir}/.arch-chroot"
|
date +%s > "${working_dir}/.arch-chroot"
|
||||||
|
101
rebuildpkgs
Executable file
101
rebuildpkgs
Executable file
@@ -0,0 +1,101 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
# This script rebuilds a list of packages in order
|
||||||
|
# and reports anything that fails
|
||||||
|
#
|
||||||
|
# Due to sudo usage, it is recommended to allow makechrootpkg
|
||||||
|
# to be run with NOPASSWD in your sudoers file
|
||||||
|
#
|
||||||
|
# FIXME
|
||||||
|
# Currently uses $(pwd)/rebuilds as the directory for rebuilding...
|
||||||
|
# TODO make this work for community too
|
||||||
|
|
||||||
|
if [ $# -le 1 ]; then
|
||||||
|
echo "usage: $(basename $0) <chrootdir> <packages to rebuild>"
|
||||||
|
echo " example: $(basename $0) ~/chroot readline bash foo bar baz"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# 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
|
||||||
|
|
||||||
|
die () {
|
||||||
|
echo $@ >&2
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
|
||||||
|
bump_pkgrel () {
|
||||||
|
# Get the current pkgrel from SVN and update the working copy with it
|
||||||
|
# This prevents us from incrementing out of control :)
|
||||||
|
pbuild=".svn/text-base/PKGBUILD.svn-base"
|
||||||
|
oldrel=$(grep "pkgrel=" $pbuild | cut -d= -f2)
|
||||||
|
|
||||||
|
#remove decimals
|
||||||
|
rel=$(echo $oldrel | cut -d. -f1)
|
||||||
|
|
||||||
|
newrel=$(($rel + 1))
|
||||||
|
|
||||||
|
sed -i "s/pkgrel=$oldrel/pkgrel=$newrel/" PKGBUILD
|
||||||
|
}
|
||||||
|
|
||||||
|
pkg_from_pkgbuild () {
|
||||||
|
# we want the sourcing to be done in a subshell so we don't pollute our current namespace
|
||||||
|
export CARCH PKGEXT
|
||||||
|
(. PKGBUILD; echo "$pkgname-$pkgver-$pkgrel-$CARCH$PKGEXT")
|
||||||
|
}
|
||||||
|
|
||||||
|
chrootdir="$1"; shift
|
||||||
|
pkgs="$@"
|
||||||
|
|
||||||
|
SVNPATH="svn+ssh://gerolde.archlinux.org/srv/svn-packages"
|
||||||
|
|
||||||
|
echo ":: Work will be done in $(pwd)/rebuilds"
|
||||||
|
|
||||||
|
REBUILD_ROOT="$(pwd)/rebuilds"
|
||||||
|
mkdir -p "$REBUILD_ROOT"
|
||||||
|
cd "$REBUILD_ROOT"
|
||||||
|
|
||||||
|
/usr/bin/svn co -N $SVNPATH
|
||||||
|
|
||||||
|
FAILED=""
|
||||||
|
for pkg in $pkgs; do
|
||||||
|
cd "$REBUILD_ROOT/svn-packages"
|
||||||
|
|
||||||
|
echo ":: Building '$pkg'"
|
||||||
|
/usr/bin/svn update "$pkg"
|
||||||
|
if [ ! -d "$pkg/trunk" ]; then
|
||||||
|
FAILED="$FAILED $pkg"
|
||||||
|
echo ":: $pkg does not exist in SVN"
|
||||||
|
continue
|
||||||
|
fi
|
||||||
|
cd "$pkg/trunk/"
|
||||||
|
|
||||||
|
bump_pkgrel
|
||||||
|
|
||||||
|
if ! sudo makechrootpkg -u -d -r "$chrootdir" -- --noconfirm; then
|
||||||
|
FAILED="$FAILED $pkg"
|
||||||
|
echo ":: $pkg Failed!"
|
||||||
|
else
|
||||||
|
pkgfile=$(pkg_from_pkgbuild)
|
||||||
|
if [ -e "$pkgfile" ]; then
|
||||||
|
echo ":: $pkg Complete"
|
||||||
|
else
|
||||||
|
FAILED="$FAILED $pkg"
|
||||||
|
echo ":: $pkg Failed, no package built!"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
cd "$REBUILD_ROOT"
|
||||||
|
if [ "$FAILED" != "" ]; then
|
||||||
|
echo "Packages failed:"
|
||||||
|
for pkg in $FAILED; do
|
||||||
|
echo -e "\t$pkg"
|
||||||
|
done
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "SVN pkgbumps in svn-packages/ - commit when ready"
|
Reference in New Issue
Block a user