[Pkg-corba-commits] r28 - in /trunk/omniorb4/debian: changelog control rules

tgg at users.alioth.debian.org tgg at users.alioth.debian.org
Thu Oct 18 09:28:53 UTC 2007


Author: tgg
Date: Thu Oct 18 09:28:53 2007
New Revision: 28

URL: http://svn.debian.org/wsvn/pkg-corba/?sc=1&rev=28
Log:
merge Floris changeset 25 for debian/control. Use dh_strip --dbg-package=

Modified:
    trunk/omniorb4/debian/changelog
    trunk/omniorb4/debian/control
    trunk/omniorb4/debian/rules

Modified: trunk/omniorb4/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-corba/trunk/omniorb4/debian/changelog?rev=28&op=diff
==============================================================================
--- trunk/omniorb4/debian/changelog (original)
+++ trunk/omniorb4/debian/changelog Thu Oct 18 09:28:53 2007
@@ -1,5 +1,6 @@
 omniorb4 (4.1.0-1) unstable; urgency=low
 
+  [ Floris Bruynooghe ]
   * Package taken over by CORBA team, with blessing from Bastian Blank.
   * New upstream release (Closes: #398462, #430422).
   * Patch for kfreebsd, thanks Petr Salinger (Closes: #341089).
@@ -17,7 +18,11 @@
   * Removed obsolete Conflicts: and Provides: in debian/control.
   * Moved the errorlog to a Policy compliant location.
 
- -- Floris Bruynooghe <floris.bruynooghe at gmail.com>  Mon,  8 Oct 2007 20:24:11 +0100
+  [ Thomas Girard ]
+  * Give --build and --host flags to configure script.
+  * Add -dbg packages based on Floris' work (Closes: #42953).
+
+ -- Thomas Girard <thomas.g.girard at free.fr>  Thu, 18 Oct 2007 10:19:23 +0200
 
 omniorb4 (4.0.6-2.3) unstable; urgency=low
 

Modified: trunk/omniorb4/debian/control
URL: http://svn.debian.org/wsvn/pkg-corba/trunk/omniorb4/debian/control?rev=28&op=diff
==============================================================================
--- trunk/omniorb4/debian/control (original)
+++ trunk/omniorb4/debian/control Thu Oct 18 09:28:53 2007
@@ -2,7 +2,7 @@
 Section: devel
 Priority: optional
 Maintainer: Debian CORBA Team <pkg-corba-devel at lists.alioth.debian.org>
-Uploaders: Floris Bruynooghe <floris.bruynooghe at gmail.com>
+Uploaders: Floris Bruynooghe <floris.bruynooghe at gmail.com>, Thomas Girard <thomas.g.girard at free.fr>
 Build-Depends: debhelper (>= 5.0.38), python-dev, libssl-dev, autotools-dev, python-central (>= 0.5.6)
 XS-Python-Version: current
 Standards-Version: 3.7.2
@@ -65,6 +65,20 @@
  .
  This includes libcos4 and libcosdynamic4.
 
+Package: libcos4-1-dbg
+Architecture: any
+Section: libdevel
+Priority: extra
+Depends: ${shlibs:Depends}
+Description: omniORB4 - CORBA ORB - libcos4 - debug version
+ omniORB4 is a freely available Common Object Request Broker
+ Architecture (CORBA) 2.6 compliant object request broker (ORB)
+ implementation. It is based on the IIOP communications
+ protocol and should be interoperable with any other
+ CORBA 2.6 compliant ORB.
+ .
+ This includes the debug versions of libcos4 and libcosdynamic4.
+
 Package: libcos4-dev
 Architecture: any
 Section: libdevel
@@ -91,6 +105,21 @@
  .
  This includes libomniorb4, libomnicodesets4, libomnidynamic4
  and libomnissltp4.
+
+Package: libomniorb4-1-dbg
+Architecture: any
+Section: libdevel
+Priority: extra
+Depends: ${shlibs:Depends}
+Description: omniORB4 - CORBA ORB - libomniorb4 - debug version
+ omniORB4 is a freely available Common Object Request Broker
+ Architecture (CORBA) 2.6 compliant object request broker (ORB)
+ implementation. It is based on the IIOP communications
+ protocol and should be interoperable with any other
+ CORBA 2.6 compliant ORB.
+ .
+ This includes the debug versions of libomniorb4, libomnicodesets4,
+ libomnidynamic4 and libomnissltp4.
 
 Package: libomniorb4-dev
 Architecture: any
@@ -119,6 +148,20 @@
  .
  This includes libomnithread3.
 
+Package: libomnithread3c2-dbg
+Architecture: any
+Section: libdevel
+Priority: extra
+Depends: ${shlibs:Depends}
+Description: omniORB4 - CORBA ORB - libomnithread3 - debug version
+ omniORB4 is a freely available Common Object Request Broker
+ Architecture (CORBA) 2.6 compliant object request broker (ORB)
+ implementation. It is based on the IIOP communications
+ protocol and should be interoperable with any other
+ CORBA 2.6 compliant ORB.
+ .
+ This includes the debug version of libomnithread3.
+
 Package: libomnithread3-dev
 Architecture: any
 Section: libdevel

Modified: trunk/omniorb4/debian/rules
URL: http://svn.debian.org/wsvn/pkg-corba/trunk/omniorb4/debian/rules?rev=28&op=diff
==============================================================================
--- trunk/omniorb4/debian/rules (original)
+++ trunk/omniorb4/debian/rules Thu Oct 18 09:28:53 2007
@@ -11,6 +11,9 @@
 else
   confflags += --build $(DEB_BUILD_GNU_TYPE) --host $(DEB_HOST_GNU_TYPE)
 endif
+
+PRG_PACKAGES := omniorb4 omniorb4-nameserver omniidl4
+DEV_PACKAGES := libcos4-dev libomniorb4-dev libomnithread3-dev
 
 build/config.status:
 	dh_testdir
@@ -30,7 +33,7 @@
 build-stamp: build/config.status
 	dh_testdir
 	$(MAKE) -C build
-	touch build-stamp
+	touch $@
 
 clean:
 	dh_testdir
@@ -81,7 +84,10 @@
 	dh_installinit -a
 	dh_installman -a
 	dh_installchangelogs update.log -a
-	dh_strip -a
+	dh_strip $(addprefix -p,$(PRG_PACKAGES)) $(addprefix -p,$(DEV_PACKAGES))
+	dh_strip -plibcos4-1 --dbg-package=libcos4-1-dbg
+	dh_strip -plibomniorb4-1 --dbg-package=libomniorb4-1-dbg
+	dh_strip -plibomnithread3c2 --dbg-package=libomnithread3c2-dbg
 	dh_link -a
 	dh_compress -a
 	dh_fixperms -a




More information about the Pkg-corba-commits mailing list