forked from artix/artools
Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
2c3578a850 | |||
2dcb55cef4 | |||
81d890cead |
5
Makefile
5
Makefile
@@ -1,4 +1,4 @@
|
||||
VERSION=0.23
|
||||
VERSION=0.24
|
||||
|
||||
TOOLS = artools
|
||||
PREFIX ?= /usr
|
||||
@@ -38,7 +38,8 @@ PKG_BIN = \
|
||||
bin/pkg/find-libdeps \
|
||||
bin/pkg/batchpkg \
|
||||
bin/pkg/signpkg \
|
||||
bin/pkg/checkrepo
|
||||
bin/pkg/checkrepo \
|
||||
bin/pkg/gitearepo
|
||||
|
||||
LN_COMMITPKG = \
|
||||
extrapkg \
|
||||
|
@@ -18,17 +18,13 @@ artools
|
||||
##### Runtime:
|
||||
|
||||
- base:
|
||||
* openssh
|
||||
* rsync
|
||||
* haveged
|
||||
* os-prober
|
||||
* gnupg
|
||||
* pacman
|
||||
|
||||
- pkg:
|
||||
* namcap
|
||||
* git-subrepo
|
||||
* jq
|
||||
* rsync
|
||||
|
||||
- iso:
|
||||
* dosfstools
|
||||
|
@@ -15,54 +15,34 @@
|
||||
m4_include(lib/util-base.sh)
|
||||
m4_include(lib/util-pkg.sh)
|
||||
m4_include(lib/base/message.sh)
|
||||
m4_include(lib/pkg/common.sh)
|
||||
m4_include(lib/pkg/git.sh)
|
||||
m4_include(lib/pkg/repo.sh)
|
||||
m4_include(lib/pkg/jenkins.sh)
|
||||
|
||||
#{{{ new git repo
|
||||
|
||||
get_compliant_name(){
|
||||
local gitname="$1"
|
||||
case "$gitname" in
|
||||
*+) gitname=${gitname//+/plus} ;;
|
||||
*+*) gitname=${gitname//+/-} ;;
|
||||
esac
|
||||
echo "$gitname"
|
||||
}
|
||||
|
||||
subrepo_clone(){
|
||||
local pkg="$1" org="$2" gitname
|
||||
gitname=$(get_compliant_name "$pkg")
|
||||
msg2 "Subrepo clone [%s] from (%s)" "$pkg" "$org/$gitname"
|
||||
git subrepo clone "${GIT_SSH}":"$org"/"$gitname".git "$pkg"
|
||||
}
|
||||
local pkg="$1"
|
||||
local org="$2"
|
||||
local name="$3"
|
||||
|
||||
create_repo() {
|
||||
local pkg="$1" org="$2" gitname
|
||||
gitname=$(get_compliant_name "$pkg")
|
||||
local json="{ \"auto_init\": true, \"name\":\"$gitname\", \"gitignores\":\"ArchLinuxPackages\", \"readme\": \"Default\" }"
|
||||
|
||||
msg2 "Create package repo [%s] in org (%s)" "${pkg}" "${org}"
|
||||
|
||||
curl -s -X POST "${GIT_URL}/api/v1/org/$org/repos?access_token=${GIT_TOKEN}" \
|
||||
-H "accept: application/json" \
|
||||
-H "content-type: application/json" \
|
||||
-d "$json"
|
||||
|
||||
echo
|
||||
msg2 "Subrepo clone [%s] from (%s)" "$pkg" "$org/$name"
|
||||
git subrepo clone "${GIT_SSH}":"$org"/"$name".git "$pkg"
|
||||
}
|
||||
|
||||
subrepo_new(){
|
||||
cd "${TREE_DIR_ARTIX}/${group}" || return
|
||||
|
||||
local org
|
||||
local org gitname
|
||||
org=$(get_pkg_org "${package}")
|
||||
gitname=$(get_compliant_name "${package}")
|
||||
|
||||
create_repo "${package}" "$org"
|
||||
gitearepo -cr "$gitname"
|
||||
|
||||
add_repo_to_team "${package}" "$org" "${team}"
|
||||
add_team_to_repo "$gitname" "$org" "${team}"
|
||||
|
||||
subrepo_clone "${package}" "$org"
|
||||
subrepo_clone "${package}" "$org" "$gitname"
|
||||
|
||||
mkdir -p "${TREE_DIR_ARTIX}/${group}/${package}/trunk"
|
||||
|
||||
|
@@ -15,6 +15,7 @@
|
||||
m4_include(lib/util-base.sh)
|
||||
m4_include(lib/util-pkg.sh)
|
||||
m4_include(lib/base/message.sh)
|
||||
m4_include(lib/pkg/common.sh)
|
||||
m4_include(lib/pkg/git.sh)
|
||||
m4_include(lib/pkg/repo.sh)
|
||||
|
||||
@@ -93,10 +94,11 @@ check_team(){
|
||||
[[ "${repo_src}" == "${valid_names[2]}" \
|
||||
&& "${repo_dest}" == "${valid_names[1]}" ]] ;then
|
||||
|
||||
local org
|
||||
local org gitname
|
||||
org=$(get_pkg_org "${package}")
|
||||
add_repo_to_team "${package}" "$org" "${repo_dest}"
|
||||
remove_repo_from_team "${package}" "$org" "${repo_src}"
|
||||
gitname=$(get_compliant_name "${package}")
|
||||
add_team_to_repo "$gitname" "${org}" "${repo_dest}"
|
||||
remove_team_from_repo "$gitname" "${org}" "${repo_src}"
|
||||
fi
|
||||
}
|
||||
|
||||
|
89
bin/pkg/gitearepo.in
Normal file
89
bin/pkg/gitearepo.in
Normal file
@@ -0,0 +1,89 @@
|
||||
#!/bin/bash
|
||||
#
|
||||
# Copyright (C) 2018-21 artoo@artixlinux.org
|
||||
# Copyright (C) 2021 Artix Linux Developers
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation; version 2 of the License.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
|
||||
m4_include(lib/util-base.sh)
|
||||
m4_include(lib/util-pkg.sh)
|
||||
m4_include(lib/base/message.sh)
|
||||
m4_include(lib/pkg/common.sh)
|
||||
|
||||
#{{{ functions
|
||||
|
||||
create_repo() {
|
||||
local name="$1"
|
||||
local org="$2"
|
||||
local json url
|
||||
|
||||
json="{ \"auto_init\": true, \"name\":\"$name\", \"gitignores\":\"ArchLinuxPackages\", \"readme\": \"Default\" }"
|
||||
|
||||
url="${GIT_URL}/api/v1/org/$org/repos?access_token=${GIT_TOKEN}"
|
||||
|
||||
msg2 "Create package repo [%s] in org (%s)" "$name" "$org"
|
||||
|
||||
api_post "$url" -H "accept: application/json" \
|
||||
-H "content-type: application/json" \
|
||||
-d "$json"
|
||||
}
|
||||
|
||||
transfer_repo() {
|
||||
local name="$1"
|
||||
local old_owner="$2"
|
||||
local new_owner="landfill" json url
|
||||
local json url
|
||||
|
||||
json="{ \"new_owner\": \"$new_owner\", \"team_ids\": []}"
|
||||
|
||||
url="${GIT_URL}/api/v1/repos/$old_owner/$name/transfer?access_token=${GIT_TOKEN}"
|
||||
|
||||
msg2 "Transfer package repo [%s] in org (%s)" "$name" "$new_owner"
|
||||
|
||||
api_post "$url" -H "accept: application/json" \
|
||||
-H "Content-Type: application/json" \
|
||||
-d "$json"
|
||||
}
|
||||
|
||||
#}}}
|
||||
|
||||
usage() {
|
||||
echo "Usage: ${0##*/} [options]"
|
||||
echo ' -r <repo> Repo name'
|
||||
echo ' -c Create git repo'
|
||||
echo ' -t Transfer git repo to landfill org'
|
||||
echo ' -h This help'
|
||||
echo ''
|
||||
echo ''
|
||||
exit "$1"
|
||||
}
|
||||
|
||||
create=false
|
||||
transfer=false
|
||||
|
||||
opts='r:cth'
|
||||
|
||||
while getopts "${opts}" arg; do
|
||||
case "${arg}" in
|
||||
r) repo="$OPTARG" ;;
|
||||
c) create=true ;;
|
||||
t) transfer=true ;;
|
||||
h|?) usage 0 ;;
|
||||
*) echo "invalid argument '${arg}'"; usage 1 ;;
|
||||
esac
|
||||
done
|
||||
|
||||
shift $(( OPTIND - 1 ))
|
||||
|
||||
org=$(get_pkg_org "${repo}")
|
||||
|
||||
${create} && create_repo "${repo}" "${org}"
|
||||
|
||||
${transfer} && transfer_repo "${repo}" "${org}"
|
36
lib/pkg/common.sh
Normal file
36
lib/pkg/common.sh
Normal file
@@ -0,0 +1,36 @@
|
||||
#!/hint/bash
|
||||
|
||||
#{{{ common functions
|
||||
|
||||
get_compliant_name(){
|
||||
local gitname="$1"
|
||||
case "$gitname" in
|
||||
*+) gitname=${gitname//+/plus}
|
||||
esac
|
||||
echo "$gitname"
|
||||
}
|
||||
|
||||
get_pkg_org(){
|
||||
local pkg="$1" org sub
|
||||
case ${pkg} in
|
||||
ruby-*) org="packagesRuby" ;;
|
||||
perl-*) org="packagesPerl" ;;
|
||||
python-*|python2-*) org="packagesPython" ;;
|
||||
*) sub=${pkg:0:1}; org="packages${sub^^}" ;;
|
||||
esac
|
||||
echo "$org"
|
||||
}
|
||||
|
||||
api_put() {
|
||||
curl -s -X PUT "$@"
|
||||
}
|
||||
|
||||
api_delete() {
|
||||
curl -s -X DELETE "$@"
|
||||
}
|
||||
|
||||
api_post() {
|
||||
curl -s -X POST "$@"
|
||||
}
|
||||
|
||||
#}}}
|
@@ -2,59 +2,6 @@
|
||||
|
||||
#{{{ git
|
||||
|
||||
get_compliant_name(){
|
||||
local gitname="$1"
|
||||
case "$gitname" in
|
||||
*+) gitname=${gitname//+/plus}
|
||||
esac
|
||||
echo "$gitname"
|
||||
}
|
||||
|
||||
get_pkg_org(){
|
||||
local pkg="$1" org sub
|
||||
case ${pkg} in
|
||||
ruby-*) org="packagesRuby" ;;
|
||||
perl-*) org="packagesPerl" ;;
|
||||
python-*|python2-*) org="packagesPython" ;;
|
||||
*) sub=${pkg:0:1}; org="packages${sub^^}" ;;
|
||||
esac
|
||||
echo "$org"
|
||||
}
|
||||
|
||||
get_team_id() {
|
||||
local org="$1" team="$2"
|
||||
local id
|
||||
id=$(curl -s -X GET "${GIT_URL}/api/v1/orgs/$org/teams/search?q=$team&access_token=${GIT_TOKEN}" \
|
||||
-H "accept: application/json" | jq '.data[] .id')
|
||||
echo "$id"
|
||||
}
|
||||
|
||||
add_repo_to_team() {
|
||||
local pkg="$1" org="$2" team="$3"
|
||||
local id
|
||||
id=$(get_team_id "$org" "$team")
|
||||
local gitname
|
||||
gitname=$(get_compliant_name "$pkg")
|
||||
|
||||
msg2 "Adding package repo [%s] to team (%s)" "$gitname" "$team"
|
||||
|
||||
curl -s -X PUT "${GIT_URL}/api/v1/teams/$id/repos/$org/$gitname?access_token=${GIT_TOKEN}" \
|
||||
-H "accept: application/json"
|
||||
}
|
||||
|
||||
remove_repo_from_team() {
|
||||
local pkg="$1" org="$2" team="$3"
|
||||
local id
|
||||
id=$(get_team_id "$org" "$team")
|
||||
local gitname
|
||||
gitname=$(get_compliant_name "$pkg")
|
||||
|
||||
msg2 "Removing package repo [%s] from team (%s)" "$gitname" "$team"
|
||||
|
||||
curl -s -X DELETE "${GIT_URL}/api/v1/teams/$id/repos/$org/$gitname?access_token=${GIT_TOKEN}" \
|
||||
-H "accept: application/json"
|
||||
}
|
||||
|
||||
get_local_head(){
|
||||
git log --pretty=%H ...refs/heads/master^ | head -n 1
|
||||
}
|
||||
|
31
lib/pkg/gitea.sh
Normal file
31
lib/pkg/gitea.sh
Normal file
@@ -0,0 +1,31 @@
|
||||
#!/hint/bash
|
||||
|
||||
#{{{ gitea api
|
||||
|
||||
add_team_to_repo() {
|
||||
local name="$1"
|
||||
local org="$2"
|
||||
local team="$3"
|
||||
local url
|
||||
|
||||
url="${GIT_URL}/api/v1/repos/$org/$name/teams/$team?access_token=${GIT_TOKEN}"
|
||||
|
||||
msg2 "Adding team (%s) to package repo [%s]" "$team" "$name"
|
||||
|
||||
api_put "$url" -H "accept: application/json"
|
||||
}
|
||||
|
||||
remove_team_from_repo() {
|
||||
local name="$1"
|
||||
local org="$2"
|
||||
local team="$3"
|
||||
local url
|
||||
|
||||
url="${GIT_URL}/api/v1/repos/$org/$name/teams/$team?access_token=${GIT_TOKEN}"
|
||||
|
||||
msg2 "Removing team (%s) from package repo [%s]" "$team" "$name"
|
||||
|
||||
api_delete "$url" -H "accept: application/json"
|
||||
}
|
||||
|
||||
#}}}
|
@@ -61,7 +61,7 @@ load_pkg_config(){
|
||||
|
||||
HOST_TREE_ARCH=${HOST_TREE_ARCH:-'https://github.com/archlinux'}
|
||||
|
||||
DBEXT=${DBEXT:-'xz'}
|
||||
DBEXT=${DBEXT:-'gz'}
|
||||
|
||||
return 0
|
||||
}
|
||||
|
Reference in New Issue
Block a user