diff options
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 5 | ||||
-rw-r--r-- | debian/control | 2 | ||||
-rwxr-xr-x | debian/rules | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog index 4af2635..cc649a3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -4,6 +4,11 @@ shotwell (0.32.1-2) UNRELEASED; urgency=medium - Drop unnecessary libexec configure option. - Update apport configuration option name. - Drop obsolete override_dh_install. + * Replace Build-Depend gnome-pkg-tools with dh-sequence-gnome: + - debian/rules: + + Remove --with gnome. + - debian/control: + + Replace gnome-pkg-tools with dh-sequence-gnome. -- Jörg Frings-Fürst <debian@jff.email> Sun, 09 Jul 2023 15:52:42 +0200 diff --git a/debian/control b/debian/control index c06501b..2ba57ab 100644 --- a/debian/control +++ b/debian/control @@ -7,7 +7,7 @@ Build-Depends: cmake, debhelper-compat (= 13), desktop-file-utils, - gnome-pkg-tools, + dh-sequence-gnome, itstool, libappstream-glib-dev, libexif-dev (>= 0.6.16), diff --git a/debian/rules b/debian/rules index 9eb330a..39a3984 100755 --- a/debian/rules +++ b/debian/rules @@ -10,7 +10,7 @@ ifeq ($(shell dpkg-vendor --derives-from Ubuntu && echo yes),yes) endif %: - dh $@ --buildsystem=meson --with gnome + dh $@ --buildsystem=meson override_dh_auto_configure: dh_auto_configure -- \ |