prepare upcoming release

ubuntu/focal
Alf Gaida 7 years ago
parent 6ebb704f2a
commit 5d9f679a4d

6
debian/changelog vendored

@ -1,3 +1,9 @@
obconf-qt (0.11.1-3) UNRELEASED; urgency=medium
* New snapshot: 0.11.1-10-gcb20e7a
-- Alf Gaida <agaida@siduction.org> Wed, 26 Jul 2017 00:13:47 +0200
obconf-qt (0.11.1-2) unstable; urgency=medium
* Removed build dependency liblxqt0-dev - only translations

6
debian/control vendored

@ -9,11 +9,11 @@ Build-Depends: debhelper (>= 10),
libkf5windowsystem-dev,
libqt5svg5-dev,
libqt5x11extras5-dev,
lxqt-build-tools (>= 0.3.0),
lxqt-build-tools (>= 0.3.96),
openbox-dev
Standards-Version: 3.9.8
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-lxqt/obconf-qt.git/?h=debian/sid
Vcs-Git: https://anonscm.debian.org/git/pkg-lxqt/obconf-qt.git -b debian/sid
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-lxqt/obconf-qt.git/?h=debian/experimental
Vcs-Git: https://anonscm.debian.org/git/pkg-lxqt/obconf-qt.git -b debian/experimental
Homepage: https://github.com/lxde/obconf-qt
Package: obconf-qt

2
debian/gbp.conf vendored

@ -1,5 +1,5 @@
[DEFAULT]
debian-branch = debian/sid
debian-branch = debian/experimental
upstream-branch = upstream/latest
pristine-tar = True

@ -0,0 +1,30 @@
#!/bin/bash
repository="git@github.com:lxde/obconf-qt"
target_dir="snapshot"
ls | grep -v "debian" | xargs rm -r
rm -rf .pc
if [ -f debian/commit ]; then
source debian/commit
[ ! -z "${branch}" ] && echo "branch: ${branch}"
[ ! -z "${commit}" ] && echo "commit: ${commit}"
[ ! -z "${target_dir}" ] && echo "target_dir: ${target_dir}"
fi
snapdir=$(mktemp -d)
echo "$snapdir"
pushd "$snapdir"
echo "git clone ${branch} ${repository} ${target_dir}"
git clone ${branch} ${repository} ${target_dir}
pushd snapshot
[ ! -z "${commit}" ] && git reset --hard "${commit}"
description=$(git describe --tags)
rm -rf .git*
popd
tar cfvJ snapshot.orig.tar.xz snapshot
popd
tar xf "$snapdir/snapshot.orig.tar.xz" --strip-components 1
dch "New snapshot: $description"
rm -rfv "$snapdir"

@ -1 +1 @@
3.0 (quilt)
1.0

Loading…
Cancel
Save