forked from artix/artools
Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
2ba8cb4fa5 | |||
278a6d17a7 | |||
d068fa6b75 | |||
70e93c3843 |
@@ -114,8 +114,11 @@ set_maintainer() {
|
|||||||
local name email path="$1"
|
local name email path="$1"
|
||||||
name=$(git -C $path config --get user.name)
|
name=$(git -C $path config --get user.name)
|
||||||
email=$(git -C $path config --get user.email)
|
email=$(git -C $path config --get user.email)
|
||||||
|
firstline=$(head -n 1 "$path"/PKGBUILD)
|
||||||
|
sed "2i ${firstline}" -i "$path"/PKGBUILD
|
||||||
sed -e "1s|Maintainer:.*|Maintainer: $name <$email>|" \
|
sed -e "1s|Maintainer:.*|Maintainer: $name <$email>|" \
|
||||||
-i "$path"/PKGBUILD
|
-i "$path"/PKGBUILD
|
||||||
|
sed -e "2s|Maintainer|Contributor|" -i "$path"/PKGBUILD
|
||||||
}
|
}
|
||||||
|
|
||||||
patch_pkg(){
|
patch_pkg(){
|
||||||
@@ -323,12 +326,22 @@ shift $(( OPTIND - 1 ))
|
|||||||
|
|
||||||
set_arch_repos "$testing" "$staging" "$unstable"
|
set_arch_repos "$testing" "$staging" "$unstable"
|
||||||
|
|
||||||
${sync} && sync_repos
|
if ${sync}; then
|
||||||
|
sync_repos
|
||||||
|
fi
|
||||||
|
|
||||||
${view} && view_build
|
if ${view}; then
|
||||||
|
view_build
|
||||||
|
fi
|
||||||
|
|
||||||
${check} && check_tree
|
if ${check}; then
|
||||||
|
check_tree
|
||||||
|
fi
|
||||||
|
|
||||||
${import} && from_arch
|
if ${import}; then
|
||||||
|
from_arch
|
||||||
|
fi
|
||||||
|
|
||||||
${createnew} && pkgrepo_new
|
if ${createnew}; then
|
||||||
|
pkgrepo_new
|
||||||
|
fi
|
||||||
|
@@ -42,7 +42,9 @@ repo_action(){
|
|||||||
cd "$repo_path" || return
|
cd "$repo_path" || return
|
||||||
if [[ -n "${action}" ]]; then
|
if [[ -n "${action}" ]]; then
|
||||||
repo-"${action}" -R "${dest_repo}"."${pkgdb_ext}" "${packages[@]}"
|
repo-"${action}" -R "${dest_repo}"."${pkgdb_ext}" "${packages[@]}"
|
||||||
${linksdb} && links-"${action}" "${dest_repo}"."${linksdb_ext}" "${packages[@]}"
|
if ${linksdb}; then
|
||||||
|
links-"${action}" "${dest_repo}"."${linksdb_ext}" "${packages[@]}"
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user