diff options
author | Pau Espin Pedrol <pespin@sysmocom.de> | 2019-08-08 17:37:16 +0200 |
---|---|---|
committer | Pau Espin Pedrol <pespin@sysmocom.de> | 2019-08-08 18:20:38 +0200 |
commit | c996d652f974f803653ce66d27d60675c1f77c2e (patch) | |
tree | 5e93650c4c62ff5662766a7cae91f0a0a0e1651e | |
parent | 3a8d5d390d268a770cfec21358b98f8c2232d98b (diff) |
osmo-release.sh: Support releasing openbsc.git
openbsc's directory structure is a bit different (has most stuff inside
an extra subdir). Let's account for that.
Change-Id: I407cf47d8339d99c74a976460ea84fffe679dfd8
-rwxr-xr-x | osmo-release.sh | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/osmo-release.sh b/osmo-release.sh index a779a26b..1effe7e2 100755 --- a/osmo-release.sh +++ b/osmo-release.sh @@ -24,7 +24,12 @@ libversion_to_deb_major() { # Make sure that depedency requirement versions match in configure.ac vs debian/control. #eg: "PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 1.1.0)" vs "libosmocore-dev (>= 1.0.0)," check_configureac_debctrl_deps_match() { - configureac_list=$(grep -e "PKG_CHECK_MODULES" "${GIT_TOPDIR}/configure.ac" | cut -d "," -f 2 | tr -d ")" | tr -d " " | sed "s/>=/ /g") + if [ -f "${GIT_TOPDIR}/openbsc/configure.ac" ]; then + configureac_file="openbsc/configure.ac" + else + configureac_file="configure.ac" + fi + configureac_list=$(grep -e "PKG_CHECK_MODULES" "${GIT_TOPDIR}/${configureac_file}" | cut -d "," -f 2 | tr -d ")" | tr -d " " | sed "s/>=/ /g") echo "$configureac_list" | \ { return_error=0 while read -r dep ver; do @@ -163,7 +168,7 @@ if [ "z$DRY_RUN" != "z0" ]; then fi gbp dch --debian-tag='%(version)s' --auto --meta --git-author --multimaint-merge --ignore-branch --new-version="$NEW_VER" dch -r -m --distribution "unstable" "" -git add debian/changelog +git add ${GIT_TOPDIR}/debian/changelog bumpversion --current-version $VERSION $REL --tag --commit --tag-name $NEW_VER --allow-dirty git commit --amend # let the user add extra information to the release commit. git tag -s $NEW_VER -f -m "Release v$NEW_VER on $ISODATE." |