aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Ammerlaan <andrewammerlaan@gentoo.org>2022-04-04 16:47:08 +0200
committerAndrew Ammerlaan <andrewammerlaan@gentoo.org>2022-04-04 16:47:08 +0200
commit0fa19ebeb3276ab8c18640d581e984f15872f601 (patch)
tree6bb7848d99debf868ba6332e465d5acf88dc57eb /scripts
parentmedia-sound/dzr: update SRC_URI (diff)
downloadguru-0fa19ebeb3276ab8c18640d581e984f15872f601.tar.gz
guru-0fa19ebeb3276ab8c18640d581e984f15872f601.tar.bz2
guru-0fa19ebeb3276ab8c18640d581e984f15872f601.zip
Drop repoman in favour of pkgcheck/pkgdev
As per discussed in [1] [1] https://archives.gentoo.org/gentoo-dev/message/93df9e7a2ad9d8d33e0cc83b50556d51 Signed-off-by: Andrew Ammerlaan <andrewammerlaan@gentoo.org>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/setup-and-run-repoman.sh31
1 files changed, 0 insertions, 31 deletions
diff --git a/scripts/setup-and-run-repoman.sh b/scripts/setup-and-run-repoman.sh
deleted file mode 100755
index ad5e15a87..000000000
--- a/scripts/setup-and-run-repoman.sh
+++ /dev/null
@@ -1,31 +0,0 @@
-#! /usr/bin/env bash
-# Maintainer: Andrew Ammerlaan <andrewammerlaan@gentoo.org>
-# Maintainer: James Beddek <telans@posteo.de>
-#
-# This sets up repoman and runs the latest version
-#
-# TODO: Force repoman to output in colour
-
-### Setup prerequisites
-python3 -m pip install --upgrade pip
-pip install lxml pyyaml
-sudo groupadd -g 250 portage
-sudo useradd -g portage -d /var/tmp/portage -s /bin/false -u 250 portage
-
-### Sync the portage repository
-git clone https://github.com/gentoo/portage.git
-cd portage
-
-# Get all versions, and read into array
-mapfile -t RM_VERSIONS < <( git tag | grep portage | sort -uV )
-
-# Select latests version (last element in array)
-RM_VERS="${RM_VERSIONS[-1]}"
-
-# Checkout this version
-git checkout tags/${RM_VERS} -b ${RM_VERS}
-
-cd ..
-
-### Run repoman
-python3 portage/repoman/bin/repoman -dx full