r52136 - in /desktop/experimental/glib2.0/debian: changelog control control.in libglib2.0-dev-bin.install libglib2.0-dev.install rules

smcv at users.alioth.debian.org smcv at users.alioth.debian.org
Thu Mar 2 10:18:57 UTC 2017


Author: smcv
Date: Thu Mar  2 10:18:56 2017
New Revision: 52136

URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=52136
Log:
Move glib-genmarshal and related files to a new M-A:foreign package libglib2.0-dev-bin

Thanks to Helmut Grohne for the patch. (Closes: #842442)

Added:
    desktop/experimental/glib2.0/debian/libglib2.0-dev-bin.install
Modified:
    desktop/experimental/glib2.0/debian/changelog
    desktop/experimental/glib2.0/debian/control
    desktop/experimental/glib2.0/debian/control.in
    desktop/experimental/glib2.0/debian/libglib2.0-dev.install
    desktop/experimental/glib2.0/debian/rules

Modified: desktop/experimental/glib2.0/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/experimental/glib2.0/debian/changelog?rev=52136&op=diff
==============================================================================
--- desktop/experimental/glib2.0/debian/changelog	[utf-8] (original)
+++ desktop/experimental/glib2.0/debian/changelog	[utf-8] Thu Mar  2 10:18:56 2017
@@ -1,3 +1,11 @@
+glib2.0 (2.51.2-2) UNRELEASED; urgency=medium
+
+  * Move glib-genmarshal and related files to a new M-A:foreign package
+    libglib2.0-dev-bin. Thanks to Helmut Grohne for the patch.
+    (Closes: #842442)
+
+ -- Simon McVittie <smcv at debian.org>  Thu, 02 Mar 2017 09:15:48 +0000
+
 glib2.0 (2.51.2-1) experimental; urgency=medium
 
   * New upstream release 2.51.2 (& 2.51.1).

Modified: desktop/experimental/glib2.0/debian/control
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/experimental/glib2.0/debian/control?rev=52136&op=diff
==============================================================================
--- desktop/experimental/glib2.0/debian/control	[utf-8] (original)
+++ desktop/experimental/glib2.0/debian/control	[utf-8] Thu Mar  2 10:18:56 2017
@@ -112,6 +112,7 @@
          ${python3:Depends},
          libglib2.0-0 (= ${binary:Version}),
          libglib2.0-bin (= ${binary:Version}),
+         libglib2.0-dev-bin (= ${binary:Version}),
          libpcre3-dev (>= 1:8.31),
          pkg-config,
          zlib1g-dev
@@ -124,6 +125,23 @@
  This package is needed to compile programs against libglib2.0-0,
  as only it includes the header files and static libraries (optionally)
  needed for compiling.
+
+Package: libglib2.0-dev-bin
+Section: libdevel
+Architecture: any
+Depends: ${misc:Depends},
+         ${shlibs:Depends},
+Breaks: libglib2.0-dev (<< 2.51.2-2~)
+Replaces: libglib2.0-dev (<< 2.51.2-2~)
+Multi-Arch: foreign
+Description: Development utilities for the GLib library
+ GLib is a library containing many useful C routines for things such
+ as trees, hashes, lists, and strings.  It is a useful general-purpose
+ C library used by projects such as GTK+, GIMP, and GNOME.
+ .
+ This package is needed to compile programs against libglib2.0-0. It contains
+ development utilities typically run during compilation and should not be
+ installed directly. Use libglib2.0-dev instead.
 
 Package: libglib2.0-0-dbg
 Section: debug

Modified: desktop/experimental/glib2.0/debian/control.in
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/experimental/glib2.0/debian/control.in?rev=52136&op=diff
==============================================================================
--- desktop/experimental/glib2.0/debian/control.in	[utf-8] (original)
+++ desktop/experimental/glib2.0/debian/control.in	[utf-8] Thu Mar  2 10:18:56 2017
@@ -112,6 +112,7 @@
          ${python3:Depends},
          @SHARED_PKG@ (= ${binary:Version}),
          @BIN_PKG@ (= ${binary:Version}),
+         @DEVBIN_PKG@ (= ${binary:Version}),
          libpcre3-dev (>= 1:8.31),
          pkg-config,
          zlib1g-dev
@@ -124,6 +125,23 @@
  This package is needed to compile programs against @SHARED_PKG@,
  as only it includes the header files and static libraries (optionally)
  needed for compiling.
+
+Package: @DEVBIN_PKG@
+Section: libdevel
+Architecture: any
+Depends: ${misc:Depends},
+         ${shlibs:Depends},
+Breaks: libglib2.0-dev (<< 2.51.2-2~)
+Replaces: libglib2.0-dev (<< 2.51.2-2~)
+Multi-Arch: foreign
+Description: Development utilities for the GLib library
+ GLib is a library containing many useful C routines for things such
+ as trees, hashes, lists, and strings.  It is a useful general-purpose
+ C library used by projects such as GTK+, GIMP, and GNOME.
+ .
+ This package is needed to compile programs against libglib2.0-0. It contains
+ development utilities typically run during compilation and should not be
+ installed directly. Use libglib2.0-dev instead.
 
 Package: @DEBUG_PKG@
 Section: debug

Added: desktop/experimental/glib2.0/debian/libglib2.0-dev-bin.install
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/experimental/glib2.0/debian/libglib2.0-dev-bin.install?rev=52136&op=file
==============================================================================
--- desktop/experimental/glib2.0/debian/libglib2.0-dev-bin.install	(added)
+++ desktop/experimental/glib2.0/debian/libglib2.0-dev-bin.install	[utf-8] Thu Mar  2 10:18:56 2017
@@ -0,0 +1,8 @@
+usr/share/aclocal
+usr/share/glib-2.0/gettext
+usr/share/man/man1/glib-genmarshal.1*
+usr/share/man/man1/glib-mkenums.1*
+usr/share/man/man1/glib-gettextize.1*
+usr/bin/glib-genmarshal
+usr/bin/glib-mkenums
+usr/bin/glib-gettextize

Modified: desktop/experimental/glib2.0/debian/libglib2.0-dev.install
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/experimental/glib2.0/debian/libglib2.0-dev.install?rev=52136&op=diff
==============================================================================
--- desktop/experimental/glib2.0/debian/libglib2.0-dev.install	[utf-8] (original)
+++ desktop/experimental/glib2.0/debian/libglib2.0-dev.install	[utf-8] Thu Mar  2 10:18:56 2017
@@ -6,21 +6,13 @@
 usr/lib/*/libgio*.so
 usr/lib/*/glib-2.0
 usr/lib/*/pkgconfig
-usr/share/aclocal
 usr/share/glib-2.0/codegen/*.py
-usr/share/glib-2.0/gettext
 usr/share/glib-2.0/schemas
-usr/share/man/man1/glib-genmarshal.1*
-usr/share/man/man1/glib-mkenums.1*
 usr/share/man/man1/gobject-query.1*
-usr/share/man/man1/glib-gettextize.1*
 usr/share/man/man1/gtester.1*
 usr/share/man/man1/gtester-report.1*
 usr/share/man/man1/gdbus-codegen.1*
-usr/bin/glib-genmarshal
 usr/bin/gobject-query
-usr/bin/glib-mkenums
 usr/bin/gtester-report
-usr/bin/glib-gettextize
 usr/bin/gtester
 usr/bin/gdbus-codegen

Modified: desktop/experimental/glib2.0/debian/rules
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/experimental/glib2.0/debian/rules?rev=52136&op=diff
==============================================================================
--- desktop/experimental/glib2.0/debian/rules	[utf-8] (original)
+++ desktop/experimental/glib2.0/debian/rules	[utf-8] Thu Mar  2 10:18:56 2017
@@ -35,6 +35,7 @@
 DATA_PKG := libglib$(APIVER)-data
 TEST_PKG := libglib$(APIVER)-tests
 DEV_PKG := libglib$(APIVER)-dev
+DEVBIN_PKG := libglib$(APIVER)-dev-bin
 BIN_PKG := libglib$(APIVER)-bin
 UDEB_PKG := libglib$(APIVER)-udeb
 DOC_PKG := libglib$(APIVER)-doc
@@ -144,6 +145,7 @@
 		-e "s#@BIN_PKG@#$(BIN_PKG)#g" \
 		-e "s#@DATA_PKG@#$(DATA_PKG)#g" \
 		-e "s#@DEV_PKG@#$(DEV_PKG)#g" \
+		-e "s#@DEVBIN_PKG@#$(DEVBIN_PKG)#g" \
 		-e "s#@UDEB_PKG@#$(UDEB_PKG)#g" \
 		-e "s#@DOC_PKG@#$(DOC_PKG)#g" \
 		-e "s#@DEBUG_PKG@#$(DEBUG_PKG)#g" \




More information about the pkg-gnome-commits mailing list