[med-svn] r11246 - trunk/packages/libquazip/trunk/debian

Eric Maeker ericmaeker-guest at alioth.debian.org
Wed Jun 6 22:03:51 UTC 2012


Author: ericmaeker-guest
Date: 2012-06-06 22:03:51 +0000 (Wed, 06 Jun 2012)
New Revision: 11246

Removed:
   trunk/packages/libquazip/trunk/debian/libquazip0-dbg.install
Modified:
   trunk/packages/libquazip/trunk/debian/control
   trunk/packages/libquazip/trunk/debian/copyright
   trunk/packages/libquazip/trunk/debian/libquazip0.1
   trunk/packages/libquazip/trunk/debian/rules
Log:
libquazip: manpage correction, removed debug package, licence short name

Modified: trunk/packages/libquazip/trunk/debian/control
===================================================================
--- trunk/packages/libquazip/trunk/debian/control	2012-06-06 21:27:37 UTC (rev 11245)
+++ trunk/packages/libquazip/trunk/debian/control	2012-06-06 22:03:51 UTC (rev 11246)
@@ -12,7 +12,6 @@
 Vcs-Svn: svn://svn.debian.org/debian-med/trunk/packages/libquazip/trunk/
 
 Package: libquazip0
-Section: libs
 Architecture: any
 Depends: ${shlibs:Depends}, ${misc:Depends}
 Suggests: libquazip-doc
@@ -46,25 +45,6 @@
  .
  This package contains the development files.
 
-Package: libquazip0-dbg
-Section: debug
-Priority: extra
-Architecture: any
-Depends: libquazip0 (= ${binary:Version}), ${misc:Depends}
-Provides: libquazip-dbg
-Description: C++ wrapper wrapper for ZIP/UNZIP (debug symbols)
- QuaZIP is a simple C++ wrapper over Gilles Vollant's ZIP/UNZIP package that
- can be used to access ZIP archives. It uses Trolltech's Qt toolkit.
- .
- QuaZIP allows you to access files inside ZIP archives using QIODevice API,
- and that means that you can also use QTextStream, QDataStream or
- whatever you would like to use on your zipped files.
- .
- QuaZIP provides complete abstraction of the ZIP/UNZIP API, for both reading
- from and writing to ZIP archives.
- .
- This package contains the debug symbols for QuaZIP.
-
 Package: libquazip-doc
 Section: doc
 Architecture: all

Modified: trunk/packages/libquazip/trunk/debian/copyright
===================================================================
--- trunk/packages/libquazip/trunk/debian/copyright	2012-06-06 21:27:37 UTC (rev 11245)
+++ trunk/packages/libquazip/trunk/debian/copyright	2012-06-06 22:03:51 UTC (rev 11246)
@@ -24,8 +24,8 @@
  program
 
 Copyright: 2012, Eric Maeker <eric.maeker at gmail.com>
-                 Andreas Tille <tille at debian.org>
-License: BSD-revised
+           2012, Andreas Tille <tille at debian.org>
+License: BSD-3-clause
  Redistribution and use in source and binary forms, with or without
  modification, are permitted provided that the following conditions
  are met:

Deleted: trunk/packages/libquazip/trunk/debian/libquazip0-dbg.install
===================================================================
--- trunk/packages/libquazip/trunk/debian/libquazip0-dbg.install	2012-06-06 21:27:37 UTC (rev 11245)
+++ trunk/packages/libquazip/trunk/debian/libquazip0-dbg.install	2012-06-06 22:03:51 UTC (rev 11246)
@@ -1,2 +0,0 @@
-/usr/lib/debug/usr/lib/lib*.so.*
-

Modified: trunk/packages/libquazip/trunk/debian/libquazip0.1
===================================================================
--- trunk/packages/libquazip/trunk/debian/libquazip0.1	2012-06-06 21:27:37 UTC (rev 11245)
+++ trunk/packages/libquazip/trunk/debian/libquazip0.1	2012-06-06 22:03:51 UTC (rev 11246)
@@ -1,3 +1,4 @@
+.TH QuaZIP 1 "01 June 2012"
 .SH NAME
 quazip - C++/Qt wrapper for UNZIP/ZIP
 .SH SYNOPSIS

Modified: trunk/packages/libquazip/trunk/debian/rules
===================================================================
--- trunk/packages/libquazip/trunk/debian/rules	2012-06-06 21:27:37 UTC (rev 11245)
+++ trunk/packages/libquazip/trunk/debian/rules	2012-06-06 22:03:51 UTC (rev 11246)
@@ -5,8 +5,7 @@
 #export DH_VERBOSE=1
 
 # Notes
-# The static lib needs a new qmake command to be built && make
-#	
+# The debug package is not actually correctly built
 
 # Extract the current version number and package name
 DEBIAN  := $(shell dpkg-parsechangelog | grep ^Version: | cut -d' ' -f2)
@@ -41,7 +40,7 @@
 	# Configure the shared library (release)
 	qmake quazip/quazip.pro $(QMAKE_GENERIC) $(QMAKE_RELEASE) -o Make.shared.release
 	# Configure the shared library (debug)
-	qmake quazip/quazip.pro $(QMAKE_GENERIC) $(QMAKE_DEBUG) -o Make.shared.debug
+	#qmake quazip/quazip.pro $(QMAKE_GENERIC) $(QMAKE_DEBUG) -o Make.shared.debug
 	# Configure the static library
 	qmake quazip/quazip.pro $(QMAKE_GENERIC) $(QMAKE_RELEASE) $(QMAKE_STATIC) -o Make.static
 	
@@ -55,19 +54,26 @@
 override_dh_auto_build:
 	# make the shared lib
 	$(MAKE) -f Make.shared.release
-	$(MAKE) -f Make.shared.debug
+	#$(MAKE) -f Make.shared.debug
 	# make the static lib
 	$(MAKE) -f Make.static
 
-.PHONY: override_dh_strip
-override_dh_strip:
-        dh_strip --dbg-package=libquazip0-dbg
+#.PHONY: override_dh_strip
+#override_dh_strip:
+	# dh_strip
+#        dh_strip --dbg-package=libquazip0-dbg
 
 override_dh_auto_install:
 	$(MAKE) -f Make.shared.release install
-	$(MAKE) -f Make.shared.debug install_target
+	#$(MAKE) -f Make.shared.debug install
 	$(MAKE) -f Make.static install_target
-#	
+
+#override_dh_auto_install:
+#	dh_auto_install --destdir=debian/libquazip0
+
+#override_dh_installdocs:
+#	dh_installdocs --link-doc=libquazip0
+
 #	# d-shlibs needs enhancement --> #675500
 #	# Call d-shlibmove to comply with library packaging guide
 #	debian/d-devlibdeps debian/$(name)0-dev.substvars \




More information about the debian-med-commit mailing list