mirror of
https://gitlab.archlinux.org/archlinux/devtools.git
synced 2025-09-13 09:56:18 +02:00
Compare commits
13 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
2edee89b62 | ||
![]() |
901581936a | ||
![]() |
29c6fa8537 | ||
![]() |
74f65db396 | ||
![]() |
64b7d99504 | ||
![]() |
f32a264796 | ||
![]() |
fd6e801cfb | ||
![]() |
a3868cf542 | ||
![]() |
62a2f118ce | ||
![]() |
723ad23b48 | ||
![]() |
5dd90ef848 | ||
![]() |
5246cb9aa5 | ||
![]() |
144f896660 |
1
.gitignore
vendored
1
.gitignore
vendored
@@ -15,4 +15,5 @@ zsh_completion
|
||||
find-libdeps
|
||||
crossrepomove
|
||||
arch-nspawn
|
||||
sogrep
|
||||
doc/*.1
|
||||
|
@@ -4,7 +4,7 @@ sudo: required
|
||||
services:
|
||||
- docker
|
||||
|
||||
arch:
|
||||
archlinux:
|
||||
packages:
|
||||
- openssh
|
||||
- subversion
|
||||
|
14
Makefile
14
Makefile
@@ -1,4 +1,4 @@
|
||||
V=20190912
|
||||
V=20191016
|
||||
|
||||
PREFIX = /usr/local
|
||||
MANDIR = $(PREFIX)/share/man
|
||||
@@ -16,12 +16,12 @@ IN_PROGS = \
|
||||
crossrepomove\
|
||||
arch-nspawn \
|
||||
mkarchroot \
|
||||
makechrootpkg
|
||||
makechrootpkg \
|
||||
sogrep
|
||||
|
||||
BINPROGS = \
|
||||
$(IN_PROGS) \
|
||||
offload-build \
|
||||
sogrep
|
||||
|
||||
CONFIGFILES = \
|
||||
makepkg-x86_64.conf \
|
||||
@@ -128,6 +128,12 @@ uninstall:
|
||||
rm -f $(DESTDIR)$(MANDIR)/man$${manfile##*.}/$${manfile#doc/}; \
|
||||
done;
|
||||
|
||||
TODAY=$(shell date +"%Y%m%d")
|
||||
tag:
|
||||
@sed -E "s|^V=[0-9]{8}|V=$(TODAY)|" -i Makefile
|
||||
@git commit --gpg-sign --message "Version $(TODAY)" Makefile
|
||||
@git tag --sign --message "Version $(TODAY)" $(TODAY)
|
||||
|
||||
dist:
|
||||
git archive --format=tar --prefix=devtools-$(V)/ $(V) | gzip -9 > devtools-$(V).tar.gz
|
||||
gpg --detach-sign --use-agent devtools-$(V).tar.gz
|
||||
@@ -138,5 +144,5 @@ upload:
|
||||
check: $(BINPROGS) bash_completion makepkg-x86_64.conf PKGBUILD.proto
|
||||
shellcheck $^
|
||||
|
||||
.PHONY: all clean install uninstall dist upload check
|
||||
.PHONY: all clean install uninstall dist upload check tag
|
||||
.DELETE_ON_ERROR:
|
||||
|
@@ -5,7 +5,7 @@ m4_include(lib/common.sh)
|
||||
m4_include(lib/archroot.sh)
|
||||
|
||||
base_packages=(base-devel)
|
||||
makechrootpkg_args=(-c -n)
|
||||
makechrootpkg_args=(-c -n -C)
|
||||
|
||||
cmd="${0##*/}"
|
||||
if [[ "${cmd%%-*}" == 'multilib' ]]; then
|
||||
|
53
checkpkg.in
53
checkpkg.in
@@ -22,6 +22,53 @@ elif [[ -r "$HOME/.makepkg.conf" ]]; then
|
||||
source "$HOME/.makepkg.conf"
|
||||
fi
|
||||
|
||||
usage() {
|
||||
cat <<- _EOF_
|
||||
Usage: ${BASH_SOURCE[0]##*/} [OPTIONS]
|
||||
|
||||
Searches for a locally built package corresponding to the PKGBUILD, and
|
||||
downloads the last version of that package from the Pacman repositories.
|
||||
It then compares the list of .so files provided by each version of the
|
||||
package and outputs if there are soname differences for the new package.
|
||||
A directory is also created using mktemp with files containing a file
|
||||
list for both packages and a library list for both packages.
|
||||
|
||||
OPTIONS
|
||||
-r, --rmdir Remove the temporary directory
|
||||
-w, --warn Print a warning in case of differences
|
||||
-h, --help Show this help text
|
||||
_EOF_
|
||||
}
|
||||
|
||||
RMDIR=0
|
||||
WARN=0
|
||||
|
||||
OPT_SHORT='rwh'
|
||||
OPT_LONG=('rmdir' 'warn' 'help')
|
||||
if ! parseopts "$OPT_SHORT" "${OPT_LONG[@]}" -- "$@"; then
|
||||
exit 1
|
||||
fi
|
||||
set -- "${OPTRET[@]}"
|
||||
|
||||
while :; do
|
||||
case $1 in
|
||||
-r|--rmdir)
|
||||
RMDIR=1
|
||||
;;
|
||||
-w|--warn)
|
||||
WARN=1
|
||||
;;
|
||||
-h|--help)
|
||||
usage
|
||||
exit 0
|
||||
;;
|
||||
--)
|
||||
shift; break
|
||||
;;
|
||||
esac
|
||||
shift
|
||||
done
|
||||
|
||||
if [[ ! -f PKGBUILD ]]; then
|
||||
die 'This must be run in the directory of a built package.'
|
||||
fi
|
||||
@@ -33,6 +80,7 @@ if [[ ${arch[0]} == 'any' ]]; then
|
||||
fi
|
||||
|
||||
STARTDIR=$(pwd)
|
||||
(( RMDIR )) && trap 'rm -rf $TEMPDIR' EXIT INT TERM QUIT
|
||||
TEMPDIR=$(mktemp -d --tmpdir checkpkg-script.XXXX)
|
||||
|
||||
for _pkgname in "${pkgname[@]}"; do
|
||||
@@ -85,11 +133,12 @@ for _pkgname in "${pkgname[@]}"; do
|
||||
find-libprovides "$TEMPDIR/$oldpkg" 2>/dev/null | sort > "$TEMPDIR/libraries-$_pkgname-old"
|
||||
find-libprovides "$pkgfile" 2>/dev/null | sort > "$TEMPDIR/libraries-$_pkgname"
|
||||
if ! diff_output="$(sdiff -s "$TEMPDIR/libraries-$_pkgname-old" "$TEMPDIR/libraries-$_pkgname")"; then
|
||||
msg "Sonames differ in $_pkgname!"
|
||||
message="Sonames differ in $_pkgname!"
|
||||
(( WARN )) && warning "$message" || msg "$message"
|
||||
echo "$diff_output"
|
||||
else
|
||||
msg "No soname differences for %s." "$_pkgname"
|
||||
fi
|
||||
done
|
||||
|
||||
msg "Files saved to %s" "$TEMPDIR"
|
||||
(( RMDIR )) || msg "Files saved to %s" "$TEMPDIR"
|
||||
|
13
commitpkg.in
13
commitpkg.in
@@ -83,7 +83,7 @@ while getopts ':l:a:s:f' flag; do
|
||||
done
|
||||
shift $(( OPTIND - 1 ))
|
||||
|
||||
# check packages have the packager field set
|
||||
# check packages for validity
|
||||
for _arch in "${arch[@]}"; do
|
||||
if [[ -n $commit_arch && ${_arch} != "$commit_arch" ]]; then
|
||||
continue
|
||||
@@ -91,10 +91,15 @@ for _arch in "${arch[@]}"; do
|
||||
for _pkgname in "${pkgname[@]}"; do
|
||||
fullver=$(get_full_version "$_pkgname")
|
||||
|
||||
if pkgfile=$(find_cached_package "$_pkgname" "$_arch" "$fullver"); then
|
||||
if pkgfile=$(find_cached_package "$_pkgname" "$fullver" "$_arch"); then
|
||||
if grep -q "packager = Unknown Packager" <(bsdtar -xOqf "$pkgfile" .PKGINFO); then
|
||||
die "PACKAGER was not set when building package"
|
||||
fi
|
||||
hashsum=sha256sum
|
||||
pkgbuild_hash=$(awk -v"hashsum=$hashsum" -F' = ' '$1 == "pkgbuild_"hashsum {print $2}' <(bsdtar -xOqf "$pkgfile" .BUILDINFO))
|
||||
if [[ "$pkgbuild_hash" != "$($hashsum PKGBUILD|cut -d' ' -f1)" ]]; then
|
||||
die "PKGBUILD $hashsum mismatch: expected $pkgbuild_hash"
|
||||
fi
|
||||
fi
|
||||
done
|
||||
done
|
||||
@@ -157,8 +162,8 @@ for _arch in "${arch[@]}"; do
|
||||
fi
|
||||
gpg --detach-sign --use-agent --no-armor "${SIGNWITHKEY[@]}" "${pkgfile}" || die
|
||||
fi
|
||||
if ! gpg --verify "$sigfile" >/dev/null 2>&1; then
|
||||
die "Signature %s.sig is incorrect!" "$pkgfile"
|
||||
if ! gpg --verify "$sigfile" "$pkgfile" >/dev/null 2>&1; then
|
||||
die "Signature %s is incorrect!" "$sigfile"
|
||||
fi
|
||||
uploads+=("$sigfile")
|
||||
done
|
||||
|
@@ -19,6 +19,19 @@ outputs if there are soname differences for the new package. A directory is
|
||||
also created using mktemp with files containing a file list for both packages
|
||||
and a library list for both packages.
|
||||
|
||||
Options
|
||||
-------
|
||||
|
||||
*-r, --rmdir*::
|
||||
Remove the temporary directory created to contain the file and library list
|
||||
of both packages.
|
||||
|
||||
*-w, --warn*::
|
||||
Print a warning instead of a regular message in case of soname differences.
|
||||
|
||||
*-h, --help*::
|
||||
Show a help text
|
||||
|
||||
See Also
|
||||
--------
|
||||
|
||||
|
31
lib/valid-repos.sh
Normal file
31
lib/valid-repos.sh
Normal file
@@ -0,0 +1,31 @@
|
||||
#!/hint/bash
|
||||
# License: Unspecified
|
||||
:
|
||||
|
||||
# shellcheck disable=2034
|
||||
_repos=(
|
||||
staging
|
||||
testing
|
||||
core
|
||||
extra
|
||||
community-staging
|
||||
community-testing
|
||||
community
|
||||
multilib-staging
|
||||
multilib-testing
|
||||
multilib
|
||||
gnome-unstable
|
||||
kde-unstable
|
||||
)
|
||||
|
||||
# shellcheck disable=2034
|
||||
_build_repos=(
|
||||
staging
|
||||
testing
|
||||
extra
|
||||
multilib-staging
|
||||
multilib-testing
|
||||
multilib
|
||||
gnome-unstable
|
||||
kde-unstable
|
||||
)
|
@@ -28,6 +28,7 @@ keepbuilddir=0
|
||||
update_first=0
|
||||
clean_first=0
|
||||
run_namcap=0
|
||||
run_checkpkg=0
|
||||
temp_chroot=0
|
||||
|
||||
bindmounts_ro=()
|
||||
@@ -72,6 +73,7 @@ usage() {
|
||||
echo ' Useful for maintaining multiple copies'
|
||||
echo " Default: $copy"
|
||||
echo '-n Run namcap on the package'
|
||||
echo '-C Run checkpkg on the package'
|
||||
echo '-T Build in a temporary directory'
|
||||
echo '-U Run makepkg as a specified user'
|
||||
exit 1
|
||||
@@ -289,7 +291,7 @@ move_products() {
|
||||
}
|
||||
# }}}
|
||||
|
||||
while getopts 'hcur:I:l:nTD:d:U:' arg; do
|
||||
while getopts 'hcur:I:l:nCTD:d:U:' arg; do
|
||||
case "$arg" in
|
||||
c) clean_first=1 ;;
|
||||
D) bindmounts_ro+=("--bind-ro=$OPTARG") ;;
|
||||
@@ -299,6 +301,7 @@ while getopts 'hcur:I:l:nTD:d:U:' arg; do
|
||||
I) install_pkgs+=("$OPTARG") ;;
|
||||
l) copy="$OPTARG" ;;
|
||||
n) run_namcap=1; makepkg_args+=(--install) ;;
|
||||
C) run_checkpkg=1 ;;
|
||||
T) temp_chroot=1; copy+="-$$" ;;
|
||||
U) makepkg_user="$OPTARG" ;;
|
||||
h|*) usage ;;
|
||||
@@ -385,6 +388,11 @@ if arch-nspawn "$copydir" \
|
||||
"${bindmounts_ro[@]}" "${bindmounts_rw[@]}" \
|
||||
/chrootbuild "${makepkg_args[@]}"
|
||||
then
|
||||
pkgnames=()
|
||||
for pkgfile in "$copydir"/pkgdest/*; do
|
||||
pkgfile=${pkgfile##*/};
|
||||
pkgnames+=("${pkgfile%-*-*-*}");
|
||||
done
|
||||
move_products
|
||||
else
|
||||
(( ret += 1 ))
|
||||
@@ -399,5 +407,15 @@ if (( ret != 0 )); then
|
||||
die "Build failed, check %s/build" "$copydir"
|
||||
fi
|
||||
else
|
||||
if (( run_checkpkg )); then
|
||||
msg "Running checkpkg"
|
||||
msg2 "Downloading current versions"
|
||||
if pacman --noconfirm -Swdd --logfile /dev/null "${pkgnames[@]}"; then
|
||||
msg2 "Checking packages"
|
||||
sudo -u "$makepkg_user" checkpkg --rmdir --warn
|
||||
else
|
||||
warning "Skipped checkpkg due to missing packages"
|
||||
fi
|
||||
fi
|
||||
true
|
||||
fi
|
||||
|
@@ -21,10 +21,8 @@
|
||||
# globals
|
||||
: ${SOLINKS_MIRROR:="https://mirror.pkgbuild.com"}
|
||||
: ${SOCACHE_DIR:="${XDG_CACHE_HOME:-${HOME}/.cache}/sogrep"}
|
||||
repos=('staging' 'testing' 'core' 'extra'
|
||||
'community-staging' 'community-testing' 'community'
|
||||
'multilib-staging' 'multilib-testing' 'multilib'
|
||||
'gnome-unstable' 'kde-unstable')
|
||||
|
||||
m4_include(lib/valid-repos.sh)
|
||||
arches=('x86_64')
|
||||
|
||||
# options
|
||||
@@ -39,20 +37,20 @@ recache() {
|
||||
|
||||
(( VERBOSE )) && verbosity=--progress-bar
|
||||
|
||||
for repo in "${repos[@]}"; do
|
||||
for repo in "${_repos[@]}"; do
|
||||
for arch in "${arches[@]}"; do
|
||||
rm -rf "${SOCACHE_DIR}/${arch}/${repo}"
|
||||
mkdir -p "${SOCACHE_DIR}/${arch}/${repo}"
|
||||
curl "$verbosity" "${SOLINKS_MIRROR}/${repo}/os/${arch}/${repo}.links.tar.gz" | bsdtar -xf - -C "${SOCACHE_DIR}/${arch}/${repo}"
|
||||
curl -L "$verbosity" "${SOLINKS_MIRROR}/${repo}/os/${arch}/${repo}.links.tar.gz" | bsdtar -xf - -C "${SOCACHE_DIR}/${arch}/${repo}"
|
||||
done
|
||||
done
|
||||
}
|
||||
|
||||
search() {
|
||||
local repo=$1 arch lib=$2 srepos=("${repos[@]}")
|
||||
local repo=$1 arch lib=$2 srepos=("${_repos[@]}")
|
||||
|
||||
if [[ $repo != all ]]; then
|
||||
if ! in_array "${repo}" "${repos[@]}"; then
|
||||
if ! in_array "${repo}" "${_repos[@]}"; then
|
||||
echo "${BASH_SOURCE[0]##*/}: unrecognized repo '$repo'"
|
||||
echo "Try '${BASH_SOURCE[0]##*/} --help' for more information."
|
||||
exit 1
|
@@ -1,11 +1,15 @@
|
||||
#compdef archbuild archco arch-nspawn archrelease 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-x86_64-build=archbuild testing-x86_64-build=archbuild staging-x86_64-build=archbuild multilib-build=archbuild multilib-testing-build=archbuild multilib-staging-build=archbuild kde-unstable-x86_64-build=archbuild gnome-unstable-x86_64-build=archbuild communityco=archco
|
||||
#compdef archbuild archco arch-nspawn archrelease 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-x86_64-build=archbuild testing-x86_64-build=archbuild staging-x86_64-build=archbuild multilib-build=archbuild multilib-testing-build=archbuild multilib-staging-build=archbuild kde-unstable-x86_64-build=archbuild gnome-unstable-x86_64-build=archbuild communityco=archco checkpkg sogrep offload-build
|
||||
# License: Unspecified
|
||||
|
||||
m4_include(lib/valid-tags.sh)
|
||||
m4_include(lib/valid-repos.sh)
|
||||
|
||||
_binary_arch=${_arch[*]:0:-1}
|
||||
|
||||
_archbuild_args=(
|
||||
'-c[Recreate the chroot before building]'
|
||||
'-r[Create chroots in this directory]:base_dir:_files -/'
|
||||
'-h[Display usage]'
|
||||
)
|
||||
|
||||
_archco_args=(
|
||||
@@ -13,19 +17,25 @@ _archco_args=(
|
||||
)
|
||||
|
||||
_arch_nspawn_args=(
|
||||
'-C[Location of a pacman config file]:pacman_config:_files'
|
||||
'-M[Location of a makepkg config file]:makepkg_config:_files'
|
||||
'-C[Location of a pacman config file]:pacman_config:_files -g "*.conf(.)"'
|
||||
'-M[Location of a makepkg config file]:makepkg_config:_files -g "*.conf(.)"'
|
||||
'-c[Set pacman cache]:pacman_cache:_files -/'
|
||||
'-f[Copy file from the host to the chroot]:copy_file:_files'
|
||||
'-s[Do not run setarch]'
|
||||
'-h[Display usage]'
|
||||
'1:chroot_dir:_files -/'
|
||||
)
|
||||
|
||||
_archrelease_args=(
|
||||
'-f[Force release without checks]'
|
||||
"*:arch:($_tags[*])"
|
||||
)
|
||||
|
||||
_commitpkg_args=(
|
||||
"-a[Release to a specific architecture only]:arch:($_arch[*])"
|
||||
'-f[Force release without checks]'
|
||||
'-s[Target repo server]'
|
||||
'-l[Set bandwidth limit]:limit'
|
||||
"-a[Release to a specific architecture only]:arch:($_arch[*])"
|
||||
'1:commit_msg'
|
||||
)
|
||||
|
||||
@@ -34,19 +44,26 @@ _finddeps_args=(
|
||||
)
|
||||
|
||||
_makechrootpkg_args=(
|
||||
'-I[Install a package into the working copy]:target:_files -g "*.pkg.tar.*(.)"'
|
||||
'-c[Clean the chroot before 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 -/'
|
||||
'-c[Clean the chroot before building]'
|
||||
'-d[Bind directory into build chroot as read-write]:bind_dir_rw:_files -/'
|
||||
'-D[Bind directory into build chroot as read-only]:bind_dir_ro:_files -/'
|
||||
'-u[Update the working copy of the chroot before building]'
|
||||
'-r[The chroot dir to use]:chroot_dir:_files -/'
|
||||
'-I[Install a package into the working copy]:target:_files -g "*.pkg.tar.*(.)"'
|
||||
'-l[The directory to use as the working copy]:copy_dir:_files -/'
|
||||
'-n[Run namcap on the package]'
|
||||
'-T[Build in a temporary directory]'
|
||||
'-U[Run makepkg as a specified user]:makepkg_user'
|
||||
)
|
||||
|
||||
_mkarchroot_args=(
|
||||
'-C[Location of a pacman config file]:pacman_config:_files'
|
||||
'-M[Location of a makepkg config file]:makepkg_config:_files'
|
||||
'-C[Location of a pacman config file]:pacman_config:_files -g "*.conf(.)"'
|
||||
'-M[Location of a makepkg config file]:makepkg_config:_files -g "*.conf(.)"'
|
||||
'-c[Set pacman cache]:pacman_cache:_files -/'
|
||||
'-h[Display usage]'
|
||||
'1:working_dir:_files -/'
|
||||
'*:packages:_devtools_completions_all_packages'
|
||||
)
|
||||
|
||||
_rebuildpkgs_args=(
|
||||
@@ -54,6 +71,27 @@ _rebuildpkgs_args=(
|
||||
'*:packages:_devtools_completions_all_packages'
|
||||
)
|
||||
|
||||
_checkpkg_args=(
|
||||
'(-r --rmdir)'{-r,--rmdir}'[Remove the temporary directory]'
|
||||
'(-w --warn)'{-w,--warn}'[Print a warning in case of differences]'
|
||||
'(-h --help)'{-h,--help}'[Display usage]'
|
||||
)
|
||||
|
||||
_sogrep_args=(
|
||||
'(-v --verbose)'{-v,--verbose}'[Show matched links in addition to pkgname]'
|
||||
'(-r --refresh)'{-r,--refresh}'[Refresh the links databases]'
|
||||
'(-h --help)'{-h,--help}'[Display usage]'
|
||||
'1:repo:(all $_repos[*])'
|
||||
'2:libname'
|
||||
)
|
||||
|
||||
_offload_build_args=(
|
||||
'(-r --repo)'{-r,--repo}'[Build against a specific repository]:repo:($_build_repos[*])'
|
||||
'(-a --arch)'{-a,--arch}'[Build against a specific architecture]:arch:(${_binary_arch[*]})'
|
||||
'(-s --server)'{-s,--server}'[Offload to a specific Build server]:server:'
|
||||
'(-h --help)'{-h,--help}'[Display usage]'
|
||||
)
|
||||
|
||||
_devtools_completions_all_packages() {
|
||||
typeset -U packages
|
||||
packages=($(_call_program packages pacman -Sql))
|
||||
|
Reference in New Issue
Block a user