diff options
author | B Stack <bgstack15@gmail.com> | 2020-03-17 14:55:49 -0400 |
---|---|---|
committer | B Stack <bgstack15@gmail.com> | 2020-03-17 14:55:49 -0400 |
commit | 795dac999ebdd330f34aaa776d3e0f305e5fa017 (patch) | |
tree | ced92bb5da4d4cebbbb027354d3c4b135fd85d7a /keyboard-leds-trayicons/debian/make-dsc-for-obs.sh | |
parent | Merge branch 'waterfox-bump' into 'master' (diff) | |
download | stackrpms-795dac999ebdd330f34aaa776d3e0f305e5fa017.tar.gz stackrpms-795dac999ebdd330f34aaa776d3e0f305e5fa017.tar.bz2 stackrpms-795dac999ebdd330f34aaa776d3e0f305e5fa017.zip |
keyboard-leds-trayicons 0.0.2: upstream Makefile
Diffstat (limited to 'keyboard-leds-trayicons/debian/make-dsc-for-obs.sh')
-rw-r--r-- | keyboard-leds-trayicons/debian/make-dsc-for-obs.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/keyboard-leds-trayicons/debian/make-dsc-for-obs.sh b/keyboard-leds-trayicons/debian/make-dsc-for-obs.sh new file mode 100644 index 0000000..088b548 --- /dev/null +++ b/keyboard-leds-trayicons/debian/make-dsc-for-obs.sh @@ -0,0 +1,10 @@ +#!/bin/sh +# Goal: convert the fresh dsc file to a generic one for obs that omits version and checksum info on filenames +# Use in debian/rules: +# APPNAME=name-of-binary-package +# override_dh_auto_build: +# dh_auto_build +# sh debian/make-dsc-for-obs.sh +tf="../$( find .. -maxdepth 1 -name "${APPNAME}_*dsc" -printf '%T@ %f\n' | sort | tail -n1 | awk '{print $NF}' )" +of="debian/$( basename "$( readlink -f "${tf}" )" | sed -r -e 's/_[0-9_\.]+[0-9_](-[0-9])?//;' )" +sed -r -e '/Checksums-.{0,8}:\s*$/,/^Files/{/Files/!{d};}' -e 's/^ [^\s]{32}/ 00000000000000000000000000000000/;' "${tf}" | awk 'BEGIN{a=0;cmd="tr -d '[0-9_+]'"} a > 0 {$2="1";gsub(/_[0-9_\.]+[0-9_](-[0-9])?/,"");} /^Files/{a=1} {print}' > "${of}" |