Skip to content

Commit

Permalink
Drop community completely
Browse files Browse the repository at this point in the history
  • Loading branch information
jelly committed Apr 4, 2024
1 parent 5ffbe6f commit d9c5de8
Showing 1 changed file with 3 additions and 19 deletions.
22 changes: 3 additions & 19 deletions package/rebuild-todo
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,10 @@ usage() {
Repository Filters (default: $REPO)
--core Rebuild [core] packages
--extra Rebuild [extra] packages
--community Rebuild [community] packages
--multilib Rebuild [multilib] packages
Examples:
Rebuilds all packages in [community] towards [community] ignoring "archlinux-contrib"
Rebuilds all packages in [extra] towards [extra] ignoring "archlinux-contrib"
$ ${PROGNAME} -i "archlinux-contrib" "https://archlinux.org/todo/some-todo-list/"
Rebuilds all packages from [extra] towards [extra-testing]
Expand All @@ -63,13 +62,12 @@ NO_BUILD=0
PACKAGES=0
NO_PUBLISH=0
EDIT_PKGBUILD=0
COMMUNITY=1
CONTINUE=0
URL=""
REPO="community"
REPO="extra"
BUILD="extra"
message=""
filter=("community")
filter=("extra")
maintainers=()
packages=()
ignore=()
Expand Down Expand Up @@ -119,28 +117,18 @@ while ((${#})); do
;;
--core)
PACKAGES=1
COMMUNITY=0
BUILD="extra"
REPO="core"
filter=("extra")
;;
--extra)
PACKAGES=1
COMMUNITY=0
BUILD="extra"
REPO="extra"
filter=("extra")
;;
--community)
PACKAGES=0
COMMUNITY=1
BUILD="extra"
REPO="community"
filter=("community")
;;
--multilib)
PACKAGES=0
COMMUNITY=1
REPO="multilib"
BUILD="multilib"
filter=("multilib")
Expand Down Expand Up @@ -235,10 +223,6 @@ printf ' %s\n' "${packages[@]}"
printf "Confirm..."
read <&1

if ((COMMUNITY)); then
svn checkout -N svn+ssh://[email protected]/srv/repos/svn-community/svn "$TMPDIR/community"
pushd "$TMPDIR/community" &>/dev/null
fi
if ((PACKAGES)); then
svn checkout -N svn+ssh://[email protected]/srv/repos/svn-packages/svn "$TMPDIR/packages"
pushd "$TMPDIR/packages" &>/dev/null
Expand Down

0 comments on commit d9c5de8

Please sign in to comment.