mirror of
https://gitlab.archlinux.org/archlinux/devtools.git
synced 2025-09-14 18:36:18 +02:00
Compare commits
1 Commits
eb6601c6e1
...
feat/licen
Author | SHA1 | Date | |
---|---|---|---|
![]() |
7a64d33b88 |
@@ -150,7 +150,6 @@ _pkgctl_cmds=(
|
|||||||
db
|
db
|
||||||
diff
|
diff
|
||||||
issue
|
issue
|
||||||
license
|
|
||||||
release
|
release
|
||||||
repo
|
repo
|
||||||
search
|
search
|
||||||
|
@@ -7,8 +7,6 @@ _DEVTOOLS_LIBRARY_DIR=${_DEVTOOLS_LIBRARY_DIR:-@pkgdatadir@}
|
|||||||
source "${_DEVTOOLS_LIBRARY_DIR}"/lib/common.sh
|
source "${_DEVTOOLS_LIBRARY_DIR}"/lib/common.sh
|
||||||
# shellcheck source=src/lib/util/srcinfo.sh
|
# shellcheck source=src/lib/util/srcinfo.sh
|
||||||
source "${_DEVTOOLS_LIBRARY_DIR}"/lib/util/srcinfo.sh
|
source "${_DEVTOOLS_LIBRARY_DIR}"/lib/util/srcinfo.sh
|
||||||
# shellcheck source=src/lib/state.sh
|
|
||||||
source "${_DEVTOOLS_LIBRARY_DIR}"/lib/state.sh
|
|
||||||
|
|
||||||
source /usr/share/makepkg/util/util.sh
|
source /usr/share/makepkg/util/util.sh
|
||||||
|
|
||||||
@@ -157,7 +155,7 @@ if (( ${#needsversioning[*]} )); then
|
|||||||
if [[ ! -f "${file}" ]]; then
|
if [[ ! -f "${file}" ]]; then
|
||||||
continue
|
continue
|
||||||
fi
|
fi
|
||||||
if ! git ls-files --error-unmatch "$file" >/dev/null; then
|
if ! git ls-files --error-unmatch "$file"; then
|
||||||
die "%s is not under version control" "$file"
|
die "%s is not under version control" "$file"
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
@@ -248,9 +246,6 @@ declare -a uploads
|
|||||||
declare -a commit_arches
|
declare -a commit_arches
|
||||||
declare -a skip_arches
|
declare -a skip_arches
|
||||||
|
|
||||||
BUILD_STATE_DIR=$(get_state_folder "build-state")
|
|
||||||
state_file=
|
|
||||||
|
|
||||||
for _arch in "${arch[@]}"; do
|
for _arch in "${arch[@]}"; do
|
||||||
if [[ -n $commit_arch && ${_arch} != "$commit_arch" ]]; then
|
if [[ -n $commit_arch && ${_arch} != "$commit_arch" ]]; then
|
||||||
skip_arches+=("$_arch")
|
skip_arches+=("$_arch")
|
||||||
@@ -264,12 +259,6 @@ for _arch in "${arch[@]}"; do
|
|||||||
skip_arches+=("$_arch")
|
skip_arches+=("$_arch")
|
||||||
continue 2
|
continue 2
|
||||||
fi
|
fi
|
||||||
|
|
||||||
state_file="${BUILD_STATE_DIR}/$(basename "${pkgfile}").txt"
|
|
||||||
if [[ -f "${state_file}" ]] && [[ $(cat "${state_file}") != "${repo}" ]]; then
|
|
||||||
error "%s was not built against '%s', aborting" "${pkgfile}" "${repo}"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
uploads+=("$pkgfile")
|
uploads+=("$pkgfile")
|
||||||
done
|
done
|
||||||
|
|
||||||
|
@@ -12,8 +12,6 @@ source "${_DEVTOOLS_LIBRARY_DIR}"/lib/common.sh
|
|||||||
source "${_DEVTOOLS_LIBRARY_DIR}"/lib/db/update.sh
|
source "${_DEVTOOLS_LIBRARY_DIR}"/lib/db/update.sh
|
||||||
# shellcheck source=src/lib/release.sh
|
# shellcheck source=src/lib/release.sh
|
||||||
source "${_DEVTOOLS_LIBRARY_DIR}"/lib/release.sh
|
source "${_DEVTOOLS_LIBRARY_DIR}"/lib/release.sh
|
||||||
# shellcheck source=src/lib/state.sh
|
|
||||||
source "${_DEVTOOLS_LIBRARY_DIR}"/lib/state.sh
|
|
||||||
# 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
|
||||||
# shellcheck source=src/lib/util/srcinfo.sh
|
# shellcheck source=src/lib/util/srcinfo.sh
|
||||||
@@ -131,7 +129,6 @@ pkgctl_build() {
|
|||||||
local PKGVER=
|
local PKGVER=
|
||||||
local PKGREL=
|
local PKGREL=
|
||||||
local MESSAGE=
|
local MESSAGE=
|
||||||
local BUILD_STATE_DIR=
|
|
||||||
|
|
||||||
local paths=()
|
local paths=()
|
||||||
local BUILD_ARCH=()
|
local BUILD_ARCH=()
|
||||||
@@ -307,8 +304,6 @@ pkgctl_build() {
|
|||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
BUILD_STATE_DIR=$(get_state_folder "build-state")
|
|
||||||
|
|
||||||
# assign default worker slot
|
# assign default worker slot
|
||||||
if [[ -z ${WORKER_SLOT} ]] && ! WORKER_SLOT="$(tty | sed 's|/dev/pts/||')"; then
|
if [[ -z ${WORKER_SLOT} ]] && ! WORKER_SLOT="$(tty | sed 's|/dev/pts/||')"; then
|
||||||
WORKER_SLOT=$(( RANDOM % $(nproc) + 1 ))
|
WORKER_SLOT=$(( RANDOM % $(nproc) + 1 ))
|
||||||
@@ -486,6 +481,8 @@ pkgctl_build() {
|
|||||||
# shellcheck disable=SC2119
|
# shellcheck disable=SC2119
|
||||||
write_srcinfo_file
|
write_srcinfo_file
|
||||||
|
|
||||||
|
# test-install (some of) the produced packages
|
||||||
|
if [[ ${INSTALL_TO_HOST} == auto ]] || [[ ${INSTALL_TO_HOST} == all ]]; then
|
||||||
# shellcheck disable=2119
|
# shellcheck disable=2119
|
||||||
load_makepkg_config
|
load_makepkg_config
|
||||||
|
|
||||||
@@ -495,17 +492,14 @@ pkgctl_build() {
|
|||||||
|
|
||||||
for pkg in "${pkgname[@]}"; do
|
for pkg in "${pkgname[@]}"; do
|
||||||
pkg_architecture=$(get_pkg_arch "$pkg")
|
pkg_architecture=$(get_pkg_arch "$pkg")
|
||||||
pkgpath=$(realpath "$(printf "%s\n" "${PKGDEST:-.}")")
|
pkgfile=$(realpath "$(printf "%s/%s-%s-%s%s\n" "${PKGDEST:-.}" "$pkg" "$version" "$pkg_architecture" "$PKGEXT")")
|
||||||
pkgfile=$(printf "%s-%s-%s%s\n" "$pkg" "$version" "$pkg_architecture" "$PKGEXT")
|
|
||||||
|
|
||||||
# check if we install all packages or if the (split-)package is already installed
|
# check if we install all packages or if the (split-)package is already installed
|
||||||
if [[ ${INSTALL_TO_HOST} == all ]] || ( [[ ${INSTALL_TO_HOST} == auto ]] && pacman -Qq -- "$pkg" &>/dev/null ); then
|
if [[ ${INSTALL_TO_HOST} == all ]] || ( [[ ${INSTALL_TO_HOST} == auto ]] && pacman -Qq -- "$pkg" &>/dev/null ); then
|
||||||
INSTALL_HOST_PACKAGES+=("${pkgpath}/${pkgfile}")
|
INSTALL_HOST_PACKAGES+=("$pkgfile")
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# save against which repo we have built the package
|
|
||||||
printf "%s" "${pkgrepo}" > "${BUILD_STATE_DIR}/${pkgfile}.txt"
|
|
||||||
done
|
done
|
||||||
|
fi
|
||||||
|
|
||||||
# release the build
|
# release the build
|
||||||
if (( RELEASE )); then
|
if (( RELEASE )); then
|
||||||
|
@@ -94,19 +94,19 @@ pkgctl_license_check() {
|
|||||||
pushd "${path}" >/dev/null
|
pushd "${path}" >/dev/null
|
||||||
|
|
||||||
if [[ ! -f PKGBUILD ]]; then
|
if [[ ! -f PKGBUILD ]]; then
|
||||||
msg_error "${BOLD}${pkgbase}:${ALL_OFF} no PKGBUILD found"
|
msg_error "${BOLD}${path}:${ALL_OFF} no PKGBUILD found"
|
||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# reset common PKGBUILD variables
|
if [[ ! -f .SRCINFO ]]; then
|
||||||
unset pkgbase
|
msg_error "${BOLD}${path}:${ALL_OFF} no .SRCINFO found"
|
||||||
|
return 1
|
||||||
# shellcheck source=contrib/makepkg/PKGBUILD.proto
|
fi
|
||||||
if ! . ./PKGBUILD; then
|
|
||||||
msg_error "${BOLD}${pkgbase}:${ALL_OFF} failed to source PKGBUILD"
|
if ! pkgbase=$(grep --max-count=1 --extended-regexp "pkgbase = (.+)" .SRCINFO | awk '{print $3}'); then
|
||||||
|
msg_error "${BOLD}${path}:${ALL_OFF} pkgbase not found in .SRCINFO"
|
||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
pkgbase=${pkgbase:-$pkgname}
|
|
||||||
|
|
||||||
if [[ ! -e LICENSE ]]; then
|
if [[ ! -e LICENSE ]]; then
|
||||||
msg_error "${BOLD}${pkgbase}:${ALL_OFF} is missing the LICENSE file"
|
msg_error "${BOLD}${pkgbase}:${ALL_OFF} is missing the LICENSE file"
|
||||||
|
@@ -188,13 +188,10 @@ path = [
|
|||||||
"README.md",
|
"README.md",
|
||||||
"keys/**",
|
"keys/**",
|
||||||
".SRCINFO",
|
".SRCINFO",
|
||||||
".gitignore",
|
|
||||||
".nvchecker.toml",
|
".nvchecker.toml",
|
||||||
"*.install",
|
"*.install",
|
||||||
"*.sysusers",
|
"*.sysusers",
|
||||||
"*sysusers.conf",
|
|
||||||
"*.tmpfiles",
|
"*.tmpfiles",
|
||||||
"*tmpfiles.conf",
|
|
||||||
"*.logrotate",
|
"*.logrotate",
|
||||||
"*.pam",
|
"*.pam",
|
||||||
"*.service",
|
"*.service",
|
||||||
|
@@ -1,18 +0,0 @@
|
|||||||
#!/hint/bash
|
|
||||||
#
|
|
||||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
||||||
|
|
||||||
[[ -z ${DEVTOOLS_INCLUDE_STATE_SH:-} ]] || return 0
|
|
||||||
DEVTOOLS_INCLUDE_STATE_SH=1
|
|
||||||
|
|
||||||
set -e
|
|
||||||
|
|
||||||
readonly XDG_DEVTOOLS_STATE_DIR="${XDG_STATE_HOME:-$HOME/.local/state}/devtools"
|
|
||||||
|
|
||||||
get_state_folder() {
|
|
||||||
local foldername=$1
|
|
||||||
local path="${XDG_DEVTOOLS_STATE_DIR}/${foldername}"
|
|
||||||
|
|
||||||
mkdir --parents -- "$path"
|
|
||||||
printf '%s' "${path}"
|
|
||||||
}
|
|
Reference in New Issue
Block a user