Drop dbg packages now that we have automatic dbgsym packages.

This commit is contained in:
Michael Biebl
2016-09-20 18:21:29 +00:00
parent efc96b2dd9
commit 2900f83c4a
6 changed files with 1 additions and 71 deletions

1
debian/changelog vendored
View File

@ -1,6 +1,7 @@
gtk+3.0 (3.22.0-1) UNRELEASED; urgency=medium
* New upstream release.
* Drop dbg packages now that we have automatic dbgsym packages.
-- Michael Biebl <biebl@debian.org> Tue, 20 Sep 2016 18:48:15 +0200

32
debian/control vendored
View File

@ -179,23 +179,6 @@ Description: development files for the GTK+ library
This package contains the header and development files which are
needed for building GTK+ applications.
Package: libgtk-3-0-dbg
Section: debug
Priority: extra
Architecture: any
Depends: libgtk-3-0 (= ${binary:Version}),
libgtk-3-common,
${misc:Depends}
Description: GTK+ libraries and debugging symbols
GTK+ is a multi-platform toolkit for creating graphical user
interfaces. Offering a complete set of widgets, GTK+ is suitable
for projects ranging from small one-off tools to complete application
suites.
.
This package contains detached debugging symbols.
.
Most people will not need this package.
Package: libgtk-3-doc
Section: doc
Architecture: all
@ -303,21 +286,6 @@ Description: GNOME Accessibility Implementation Library -- development files
.
This package contains the development files for Gail.
Package: libgail-3-0-dbg
Architecture: any
Multi-Arch: same
Section: debug
Priority: extra
Depends: ${misc:Depends},
libgail-3-0 (= ${binary:Version})
Recommends: libgtk-3-0-dbg
Description: Gail libraries and debugging symbols
Gail is the "GNOME Accessibility Implementation Library".
.
This package contains detached debugging symbols.
.
Most people will not need this package.
Package: libgail-3-doc
Architecture: all
Multi-Arch: foreign

32
debian/control.in vendored
View File

@ -179,23 +179,6 @@ Description: development files for the GTK+ library
This package contains the header and development files which are
needed for building GTK+ applications.
Package: @DEBUG_PKG@
Section: debug
Priority: extra
Architecture: any
Depends: @SHARED_PKG@ (= ${binary:Version}),
@COMMON_PKG@,
${misc:Depends}
Description: GTK+ libraries and debugging symbols
GTK+ is a multi-platform toolkit for creating graphical user
interfaces. Offering a complete set of widgets, GTK+ is suitable
for projects ranging from small one-off tools to complete application
suites.
.
This package contains detached debugging symbols.
.
Most people will not need this package.
Package: @DOC_PKG@
Section: doc
Architecture: all
@ -303,21 +286,6 @@ Description: GNOME Accessibility Implementation Library -- development files
.
This package contains the development files for Gail.
Package: libgail-3-0-dbg
Architecture: any
Multi-Arch: same
Section: debug
Priority: extra
Depends: ${misc:Depends},
libgail-3-0 (= ${binary:Version})
Recommends: @DEBUG_PKG@
Description: Gail libraries and debugging symbols
Gail is the "GNOME Accessibility Implementation Library".
.
This package contains detached debugging symbols.
.
Most people will not need this package.
Package: libgail-3-doc
Architecture: all
Multi-Arch: foreign

View File

@ -1 +0,0 @@
usr/lib/debug/

View File

@ -1,2 +0,0 @@
usr/share/doc/@COMMON_PKG@/@NEWS@ usr/share/doc/@DEBUG_PKG@/@NEWS@
usr/share/doc/@COMMON_PKG@/@README@ usr/share/doc/@DEBUG_PKG@/@README@

4
debian/rules vendored
View File

@ -50,7 +50,6 @@ DEV_PKG := libgtk-$(APIVER)-dev
UDEB_PKG := $(SHARED_PKG)-udeb
DOC_PKG := libgtk-$(APIVER)-doc
BIN_PKG := libgtk-$(APIVER)-bin
DEBUG_PKG := $(SHARED_PKG)-dbg
EXAMPLES_PKG := gtk-$(APIVER)-examples
# files larger than 4k in size will be compressed by dh_compress
@ -126,8 +125,6 @@ DEB_DH_MAKESHLIBS_ARGS_ALL += -X$(MODULES_BASE_PATH)
DEB_DH_MAKESHLIBS_ARGS_$(SHARED_PKG) += -V --add-udeb=$(UDEB_PKG) -- -c4
DEB_DH_MAKESHLIBS_ARGS_libgail-3-0 += -V -- -c4
DEB_DH_FIXPERMS_ARGS_ALL += -X$(LIBDIR)/$(SHARED_PKG)
DEB_DH_STRIP_ARGS = --dbg-package=$(if $(findstring libgail,$(cdbs_curpkg)),libgail-3-0-dbg,$(DEBUG_PKG))
DEB_DH_STRIP_ARGS_$(UDEB_PKG) =
# macro computing the list of 'debian/<pkg>.*" files which have a
# corresponding ".in" file; pass the list of packages in $(1)
@ -146,7 +143,6 @@ debian/%: debian/%.in
-e "s#@UDEB_PKG@#$(UDEB_PKG)#g" \
-e "s#@DOC_PKG@#$(DOC_PKG)#g" \
-e "s#@BIN_PKG@#$(BIN_PKG)#g" \
-e "s#@DEBUG_PKG@#$(DEBUG_PKG)#g" \
-e "s#@EXAMPLES_PKG@#$(EXAMPLES_PKG)#g" \
-e "s#@GNOME_TEAM@#$(UPLOADERS)#g" \
-e "s#@GTK_BINARY_VERSION@#$(GTK_BINARY_VERSION)#g" \