diff -u gartoon-0.5/debian/compat gartoon-0.5/debian/compat --- gartoon-0.5/debian/compat +++ gartoon-0.5/debian/compat @@ -1,2 +1 @@ -4 -4 +9 diff -u gartoon-0.5/debian/changelog gartoon-0.5/debian/changelog --- gartoon-0.5/debian/changelog +++ gartoon-0.5/debian/changelog @@ -1,3 +1,15 @@ +gartoon (0.5-4ubuntu3) yakkety; urgency=medium + + * debian/compat: Bump to 9. + * debian/control: + - Build-depend on debhelper (>= 9). + - Depend on ${misc:Depends}. + * debian/rules: + - Add recommended build-arch and build-indep targets. + - Use dh_prep instead of dh_clean -k. + + -- Logan Rosen Thu, 04 Aug 2016 05:12:05 -0400 + gartoon (0.5-4ubuntu2) hardy; urgency=low * merge the xdg device naming scheme links from human-icon--theme diff -u gartoon-0.5/debian/control gartoon-0.5/debian/control --- gartoon-0.5/debian/control +++ gartoon-0.5/debian/control @@ -1,8 +1,9 @@ Source: gartoon Section: gnome Priority: optional -Maintainer: Otavio Salvador -Build-Depends: debhelper (>= 4.0.0) +Maintainer: Ubuntu Developers +XSBC-Original-Maintainer: Otavio Salvador +Build-Depends: debhelper (>= 9) Standards-Version: 3.7.2 Package: gnome-icon-theme-gartoon @@ -10,7 +11,7 @@ Provides: gtk2-engines-gartoon Conflicts: gtk2-engines-gartoon (<< 0.4.5-2) Replaces: gtk2-engines-gartoon (<< 0.4.5-2) -Depends: librsvg2-common +Depends: ${misc:Depends}, librsvg2-common Description: Gartoon icon theme for GTK+ 2.x This GTK+ theme provides an animated scalable group of icons to be used by GTK+ 2.x applications like GNOME 2. diff -u gartoon-0.5/debian/rules gartoon-0.5/debian/rules --- gartoon-0.5/debian/rules +++ gartoon-0.5/debian/rules @@ -5,7 +5,9 @@ # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 -build: +build: build-arch build-indep +build-arch: +build-indep: clean: dh_testdir dh_clean @@ -13,7 +15,7 @@ install: build dh_testdir dh_testroot - dh_clean -k + dh_prep dh_installdirs cp -r index.theme scalable debian/gnome-icon-theme-gartoon/usr/share/icons/gartoon/ @@ -48 +50 @@ -.PHONY: build clean binary-indep binary install +.PHONY: build build-arch build-indep clean binary-indep binary install