Compare commits

..

2 Commits

Author SHA1 Message Date
Aaron Liu
3f0ebbc6d2 fix(license): add .gitignore to REUSE defaults
36 packages use this while 26 use *.pam and 21 use *.logrotate. Seems
anecdotally common enough to add this here.
2025-08-08 14:13:32 +02:00
Jakub Klinkovský
fc56ebedf3 fix(completion): fix bash completion for the license subcommand
Signed-off-by: Jakub Klinkovský <lahwaacz@archlinux.org>
2025-08-05 17:48:12 +02:00
5 changed files with 2 additions and 18 deletions

View File

@@ -150,6 +150,7 @@ _pkgctl_cmds=(
db db
diff diff
issue issue
license
release release
repo repo
search search
@@ -196,7 +197,6 @@ _pkgctl_build_args=(
--pkgrel --pkgrel
--rebuild --rebuild
--update-checksums --update-checksums
--version-upgrade
-e --edit -e --edit
-r --release -r --release

View File

@@ -59,7 +59,6 @@ _pkgctl_build_args=(
'--pkgrel=[Set pkgrel to a given value]:pkgrel:' '--pkgrel=[Set pkgrel to a given value]:pkgrel:'
'--rebuild[Increment the pkgrel variable]' '--rebuild[Increment the pkgrel variable]'
'--update-checksums[Force computation and update of the checksums (disables auto-detection)]' '--update-checksums[Force computation and update of the checksums (disables auto-detection)]'
'--version-upgrade[Adjust the PKGBUILD to match the latest upstream version (via pkgctl version upgrade)]'
'(-e --edit)'{-e,--edit}'[Edit the PKGBUILD before building]' '(-e --edit)'{-e,--edit}'[Edit the PKGBUILD before building]'
'(-r --release)'{-r,--release}'[Automatically commit, tag and release after building]' '(-r --release)'{-r,--release}'[Automatically commit, tag and release after building]'
'(-m --message)'{-m,--message}"[Use the given <msg> as the commit message]:message:" '(-m --message)'{-m,--message}"[Use the given <msg> as the commit message]:message:"

View File

@@ -84,9 +84,6 @@ PKGBUILD Options
are either automatically updated when upgrading a package using `--pkgver` are either automatically updated when upgrading a package using `--pkgver`
or should remain immutable during rebuilds. or should remain immutable during rebuilds.
*--version-upgrade*::
Adjust the PKGBUILD to match the latest upstream version (via `pkgctl version upgrade`).
*-e, --edit*:: *-e, --edit*::
Edit the PKGBUILD before building Edit the PKGBUILD before building

View File

@@ -67,7 +67,6 @@ pkgctl_build_usage() {
--pkgrel=PKGREL Set pkgrel to a given value --pkgrel=PKGREL Set pkgrel to a given value
--rebuild Increment the current pkgrel variable --rebuild Increment the current pkgrel variable
--update-checksums Force computation and update of the checksums (disables auto-detection) --update-checksums Force computation and update of the checksums (disables auto-detection)
--version-upgrade Adjust the PKGBUILD to match the latest upstream version (via pkgctl version upgrade)
-e, --edit Edit the PKGBUILD before building -e, --edit Edit the PKGBUILD before building
RELEASE OPTIONS RELEASE OPTIONS
@@ -117,7 +116,6 @@ pkgctl_build() {
fi fi
local UPDATE_CHECKSUMS=0 local UPDATE_CHECKSUMS=0
local VERSION_UPGRADE=0
local EDIT=0 local EDIT=0
local REBUILD=0 local REBUILD=0
local OFFLOAD=0 local OFFLOAD=0
@@ -189,10 +187,6 @@ pkgctl_build() {
UPDATE_CHECKSUMS=1 UPDATE_CHECKSUMS=1
shift shift
;; ;;
--version-upgrade)
VERSION_UPGRADE=1
shift
;;
--rebuild) --rebuild)
# shellcheck source=src/lib/util/git.sh # shellcheck source=src/lib/util/git.sh
source "${_DEVTOOLS_LIBRARY_DIR}"/lib/util/git.sh source "${_DEVTOOLS_LIBRARY_DIR}"/lib/util/git.sh
@@ -458,13 +452,6 @@ pkgctl_build() {
. ./PKGBUILD . ./PKGBUILD
fi fi
# update PKGBUILD to the latest upstream version
if (( VERSION_UPGRADE )); then
if ! $(pkgctl_version_upgrade); then
die
fi
fi
# execute build # execute build
for arch in "${BUILD_ARCH[@]}"; do for arch in "${BUILD_ARCH[@]}"; do
if [[ -n $arch ]]; then if [[ -n $arch ]]; then

View File

@@ -188,6 +188,7 @@ path = [
"README.md", "README.md",
"keys/**", "keys/**",
".SRCINFO", ".SRCINFO",
".gitignore",
".nvchecker.toml", ".nvchecker.toml",
"*.install", "*.install",
"*.sysusers", "*.sysusers",