aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOliver Smith <osmith@sysmocom.de>2021-02-02 14:10:09 +0100
committerOliver Smith <osmith@sysmocom.de>2021-02-02 14:12:04 +0100
commit708aed1ebd847d114a79e0a4f9c4b5f44bb6acb3 (patch)
treeb9e97e284d215b353c67eaea0f9418d4ed72679c
parent6f5f4d6dd33f73063a3f56773dba3de268597775 (diff)
OBS: nightly: don't download bumpversion
Stop downloading bumpversion related archives with each run. They were not uploaded to OBS after the download (no 'osc add' runs aftewards, and last modified of network:osmocom:nightly:bumpversion is 3 years ago). bumpversion is needed to run osmo-release.sh, and is available in debian since 9 (stretch). Related: https://build.opensuse.org/package/show/network:osmocom:nightly/bumpversion Change-Id: Iaf2527043e9acdb6acff3e481d4516ac4b75b7e7
-rwxr-xr-xscripts/osmocom-nightly-packages.sh17
1 files changed, 0 insertions, 17 deletions
diff --git a/scripts/osmocom-nightly-packages.sh b/scripts/osmocom-nightly-packages.sh
index 44f4a6e..58a8a52 100755
--- a/scripts/osmocom-nightly-packages.sh
+++ b/scripts/osmocom-nightly-packages.sh
@@ -162,21 +162,6 @@ post() {
osc status
}
-download_bumpversion() {
- # bumpversion is required for debian < 9/stretch
- local oscdir=$REPO/osc/$PROJ/bumpversion
- local version=0.5.3
- local release=3
-
- if [ ! -d "$oscdir" ] ; then
- mkdir "$oscdir"
- cd "$oscdir"
- wget "http://http.debian.net/debian/pool/main/b/bumpversion/bumpversion_$version-$release.dsc"
- wget "http://http.debian.net/debian/pool/main/b/bumpversion/bumpversion_$version.orig.tar.gz"
- wget "http://http.debian.net/debian/pool/main/b/bumpversion/bumpversion_$version-$release.debian.tar.xz"
- fi
-}
-
checkout_limesuite() {
cd "$REPO"
git clone https://github.com/myriadrf/LimeSuite limesuite
@@ -284,8 +269,6 @@ build_osmocom() {
build osmo-smlc
build osmo-cbc
- download_bumpversion
-
post
}