summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLevente Polyak <anthraxx@archlinux.org>2022-05-19 23:49:02 +0200
committerLevente Polyak <anthraxx@archlinux.org>2022-06-22 01:05:03 +0200
commit37df0765d284892bf81bddf575fdcb14582b4f5f (patch)
treeaa25d7cc11e95f4f11fc846a1c1a4bf22d337d72 /src
parent6d946989f3ca7de78ccda98804bb72aec3692412 (diff)
downloaddevtools-37df0765d284892bf81bddf575fdcb14582b4f5f.tar.xz
cleanup: move PKGBUILD.proto to contrib folder
Diffstat (limited to 'src')
-rw-r--r--src/checkpkg.in2
-rw-r--r--src/commitpkg.in2
-rw-r--r--src/crossrepomove.in2
-rw-r--r--src/diffpkg.in2
-rw-r--r--src/finddeps.in2
-rw-r--r--src/rebuildpkgs.in2
6 files changed, 6 insertions, 6 deletions
diff --git a/src/checkpkg.in b/src/checkpkg.in
index 059f752..da4c67b 100644
--- a/src/checkpkg.in
+++ b/src/checkpkg.in
@@ -82,7 +82,7 @@ if [[ ! -f PKGBUILD ]]; then
die 'This must be run in the directory of a built package.'
fi
-# shellcheck source=PKGBUILD.proto
+# shellcheck source=contrib/makepkg/PKGBUILD.proto
. ./PKGBUILD
if [[ ${arch[0]} == 'any' ]]; then
CARCH='any'
diff --git a/src/commitpkg.in b/src/commitpkg.in
index 31adcd6..235d12b 100644
--- a/src/commitpkg.in
+++ b/src/commitpkg.in
@@ -28,7 +28,7 @@ if [[ ! -f PKGBUILD ]]; then
fi
source=()
-# shellcheck source=PKGBUILD.proto
+# shellcheck source=contrib/makepkg/PKGBUILD.proto
. ./PKGBUILD
pkgbase=${pkgbase:-$pkgname}
diff --git a/src/crossrepomove.in b/src/crossrepomove.in
index c028d62..e4caeea 100644
--- a/src/crossrepomove.in
+++ b/src/crossrepomove.in
@@ -45,7 +45,7 @@ msg "Downloading sources for %s" "${pkgbase}"
svn -q checkout -N "${target_svn}" target_checkout
mkdir -p "target_checkout/${pkgbase}/repos"
svn -q export "${source_svn}/${pkgbase}/trunk" "target_checkout/${pkgbase}/trunk" || die
-# shellcheck source=PKGBUILD.proto
+# shellcheck source=contrib/makepkg/PKGBUILD.proto
. "target_checkout/${pkgbase}/trunk/PKGBUILD"
msg "Downloading packages for %s" "${pkgbase}"
diff --git a/src/diffpkg.in b/src/diffpkg.in
index 963f2c6..17df6e5 100644
--- a/src/diffpkg.in
+++ b/src/diffpkg.in
@@ -196,7 +196,7 @@ if (( $# < 2 )); then
die "This must be run in the directory of a built package.\nTry '$(basename "$0") --help' for more information."
fi
- # shellcheck source=PKGBUILD.proto
+ # shellcheck source=contrib/makepkg/PKGBUILD.proto
. ./PKGBUILD
if [[ ${arch[0]} == 'any' ]]; then
CARCH='any'
diff --git a/src/finddeps.in b/src/finddeps.in
index 05b3530..da7cb85 100644
--- a/src/finddeps.in
+++ b/src/finddeps.in
@@ -20,7 +20,7 @@ fi
find . -type d -print0 2>/dev/null| while read -r -d '' d; do
if [[ -f "$d/PKGBUILD" ]]; then
pkgname=() depends=() makedepends=() optdepends=()
- # shellcheck source=PKGBUILD.proto
+ # shellcheck source=contrib/makepkg/PKGBUILD.proto
. "$d/PKGBUILD"
for dep in "${depends[@]}"; do
# lose the version comparator, if any
diff --git a/src/rebuildpkgs.in b/src/rebuildpkgs.in
index 164bf08..eddc17f 100644
--- a/src/rebuildpkgs.in
+++ b/src/rebuildpkgs.in
@@ -54,7 +54,7 @@ bump_pkgrel() {
pkg_from_pkgbuild() {
# we want the sourcing to be done in a subshell so we don't pollute our current namespace
export CARCH PKGEXT
- # shellcheck source=PKGBUILD.proto
+ # shellcheck source=contrib/makepkg/PKGBUILD.proto
(source PKGBUILD; echo "$pkgname-$pkgver-$pkgrel-$CARCH$PKGEXT")
}