summaryrefslogtreecommitdiff
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
parent6d946989f3ca7de78ccda98804bb72aec3692412 (diff)
downloaddevtools-37df0765d284892bf81bddf575fdcb14582b4f5f.tar.xz
cleanup: move PKGBUILD.proto to contrib folder
-rw-r--r--Makefile2
-rw-r--r--contrib/makepkg/PKGBUILD.proto (renamed from PKGBUILD.proto)0
-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
8 files changed, 7 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index 6500da0..52f10ef 100644
--- a/Makefile
+++ b/Makefile
@@ -137,7 +137,7 @@ dist:
upload:
scp devtools-$(V).tar.gz devtools-$(V).tar.gz.sig repos.archlinux.org:/srv/ftp/other/devtools/
-check: $(BINPROGS) $(BUILDDIR)/contrib/completion/bash/devtools config/makepkg/x86_64.conf PKGBUILD.proto
+check: $(BINPROGS) $(BUILDDIR)/contrib/completion/bash/devtools config/makepkg/x86_64.conf contrib/makepkg/PKGBUILD.proto
shellcheck $^
.PHONY: all completion man clean install uninstall dist upload check tag
diff --git a/PKGBUILD.proto b/contrib/makepkg/PKGBUILD.proto
index e8690e4..e8690e4 100644
--- a/PKGBUILD.proto
+++ b/contrib/makepkg/PKGBUILD.proto
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")
}