Compare commits

..

4 Commits

3 changed files with 5 additions and 4 deletions

View File

@@ -33,7 +33,7 @@ artixpkg_git_create() {
local pkgbase local pkgbase
local clone=0 local clone=0
local config=0 local config=0
local TEAM='extra' local TEAM='world'
# variables # variables
local path local path

View File

@@ -25,7 +25,7 @@ patch_pkgbase(){
msg "Patching %s" "${name}" msg "Patching %s" "${name}"
sed -e 's|KBUILD_BUILD_HOST=.*|KBUILD_BUILD_HOST=artixlinux|' -i "${pkgbuild}" sed -e 's|KBUILD_BUILD_HOST=.*|KBUILD_BUILD_HOST=artixlinux|' -i "${pkgbuild}"
sed -e 's|CONFIG_DEFAULT_HOSTNAME=.*|CONFIG_DEFAULT_HOSTNAME="artixlinux"|' \ sed -e 's|CONFIG_DEFAULT_HOSTNAME=.*|CONFIG_DEFAULT_HOSTNAME="artixlinux"|' \
-i "$pkgpath"/config -i trunk/config
;; ;;
gstreamer|gst-plugins-*|licenses) gstreamer|gst-plugins-*|licenses)
msg "Patching %s" "${name}" msg "Patching %s" "${name}"
@@ -104,7 +104,7 @@ artixpkg_repo_import() {
stat_done stat_done
stat_busy "Fetching upstream tags" stat_busy "Fetching upstream tags"
git fetch upstream --tags git fetch --tags upstream main
stat_done stat_done
local latest version local latest version

View File

@@ -122,7 +122,8 @@ artixpkg_repo_remove() {
if (( SET_TOPIC )); then if (( SET_TOPIC )); then
# topics meta # topics meta
if [[ -n ${GIT_TOKEN} ]]; then if [[ -n ${GIT_TOKEN} ]]; then
local topic="${SRC}" local topic="${DEST}"
local gitname=$(get_compliant_name "${pkgbase}")
if ! remove_topic "${gitname}" "${topic}" >/dev/null; then if ! remove_topic "${gitname}" "${topic}" >/dev/null; then
warning "failed to remove pacman repo topic: ${topic}" warning "failed to remove pacman repo topic: ${topic}"
fi fi