Compare commits
6 Commits
Author | SHA1 | Date | |
---|---|---|---|
ba77c20d77 | |||
c376041a07 | |||
bd29d360b4 | |||
7e1b1ee238 | |||
221218ba2a | |||
697d18da82 |
@@ -26,8 +26,8 @@ pull_tree_arch(){
|
||||
for tree in packages community;do
|
||||
if [[ -d ${tree} ]];then
|
||||
cd ${tree}
|
||||
msg "Checking (%s)" "${tree}"
|
||||
pull_tree
|
||||
msg "Checking (%s)" "${tree}"
|
||||
pull_tree
|
||||
cd ..
|
||||
else
|
||||
msg "Cloning (%s) ..." "$tree"
|
||||
@@ -36,24 +36,32 @@ pull_tree_arch(){
|
||||
done
|
||||
}
|
||||
|
||||
config_tree(){
|
||||
local tree="$1"
|
||||
cd $tree
|
||||
git config --bool pull.rebase true
|
||||
git config commit.gpgsign true
|
||||
if [[ -n "${GPGKEY}" ]];then
|
||||
git config user.signingkey "${GPGKEY}"
|
||||
else
|
||||
warning "No GPGKEY configured in makepkg.conf!"
|
||||
fi
|
||||
cd ..
|
||||
}
|
||||
|
||||
pull_tree_artix(){
|
||||
cd ${tree_dir_artix}
|
||||
for tree in packages packages-galaxy;do
|
||||
if [[ -d ${tree} ]];then
|
||||
cd ${tree}
|
||||
git config --bool pull.rebase true
|
||||
git config commit.gpgsign true
|
||||
if [[ -n "${GPGKEY}" ]];then
|
||||
git config user.signingkey "${GPGKEY}"
|
||||
else
|
||||
warning "No GPGKEY configured in makepkg.conf!"
|
||||
fi
|
||||
msg "Checking (%s)" "${tree}"
|
||||
pull_tree
|
||||
config_tree
|
||||
msg "Checking (%s)" "${tree}"
|
||||
pull_tree
|
||||
cd ..
|
||||
else
|
||||
msg "Cloning (%s) ..." "$tree"
|
||||
clone_tree "${host_tree_artix}/${tree}"
|
||||
config_tree "${tree}"
|
||||
fi
|
||||
done
|
||||
}
|
||||
|
@@ -20,7 +20,8 @@ get_compliant_name(){
|
||||
|
||||
create_repo(){
|
||||
local pkg="$1"
|
||||
curl -X POST "${git_url}/api/v1/org/packages/repos?access_token=${git_token}" -H "accept: application/json" -H "content-type: application/json" -d "{ \"auto_init\": true, \"name\":\"$pkg\", \"readme\": \"Default\" }"
|
||||
local gitname=$(get_compliant_name "$pkg")
|
||||
curl -X POST "${git_url}/api/v1/org/packages/repos?access_token=${git_token}" -H "accept: application/json" -H "content-type: application/json" -d "{ \"auto_init\": true, \"name\":\"$gitname\", \"readme\": \"Default\" }"
|
||||
}
|
||||
|
||||
delete_repo(){
|
||||
|
@@ -45,8 +45,7 @@ patch_pkg(){
|
||||
;;
|
||||
'linux')
|
||||
sed -e 's|-ARCH|-ARTIX|g' -i $pkg/trunk/PKGBUILD
|
||||
sed -e 's|CONFIG_LOCALVERSION=.*|CONFIG_LOCALVERSION="-ARTIX"|' \
|
||||
-e 's|CONFIG_DEFAULT_HOSTNAME=.*|CONFIG_DEFAULT_HOSTNAME="artixlinux"|' \
|
||||
sed -e 's|CONFIG_DEFAULT_HOSTNAME=.*|CONFIG_DEFAULT_HOSTNAME="artixlinux"|' \
|
||||
-e 's|CONFIG_CRYPTO_SPECK=.*|CONFIG_CRYPTO_SPECK=n|' \
|
||||
-i $pkg/trunk/config
|
||||
cd $pkg/trunk
|
||||
|
Reference in New Issue
Block a user