diff options
Diffstat (limited to '')
-rwxr-xr-x | bin/git-debian-changelog | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/bin/git-debian-changelog b/bin/git-debian-changelog index 2197979..c514cf9 100755 --- a/bin/git-debian-changelog +++ b/bin/git-debian-changelog @@ -128,6 +128,34 @@ then ;; esac ;; + + graograman) + case "${VERSION}" in + *-*) + # non-native + VERSION="--dch-opt=-b -N ${VERSION}progress7u1" + ;; + + *) + # native + VERSION="--dch-opt=-b -N ${VERSION}-0progress7u1" + ;; + esac + ;; + + graograman-backports) + case "${VERSION}" in + *-*) + # non-native + VERSION="--dch-opt=-b -N ${VERSION}~progress7+u1" + ;; + + *) + # native + VERSION="--dch-opt=-b -N ${VERSION}-0.0~progress7+u1" + ;; + esac + ;; esac ;; esac |