[med-svn] r11597 - trunk/packages/rostlab/libzerg-perl/trunk/debian
Laszlo Kajan
lkajan-guest at alioth.debian.org
Fri Jul 6 14:23:41 UTC 2012
Author: lkajan-guest
Date: 2012-07-06 14:23:41 +0000 (Fri, 06 Jul 2012)
New Revision: 11597
Modified:
trunk/packages/rostlab/libzerg-perl/trunk/debian/changelog
trunk/packages/rostlab/libzerg-perl/trunk/debian/compat
trunk/packages/rostlab/libzerg-perl/trunk/debian/control
trunk/packages/rostlab/libzerg-perl/trunk/debian/rules
Log:
hardening flags added
Modified: trunk/packages/rostlab/libzerg-perl/trunk/debian/changelog
===================================================================
--- trunk/packages/rostlab/libzerg-perl/trunk/debian/changelog 2012-07-06 14:13:04 UTC (rev 11596)
+++ trunk/packages/rostlab/libzerg-perl/trunk/debian/changelog 2012-07-06 14:23:41 UTC (rev 11597)
@@ -1,4 +1,4 @@
-libzerg-perl (1.0.4-3) UNRELEASED; urgency=low
+libzerg-perl (1.0.4-3) unstable; urgency=low
[ Andreas Tille ]
* debian/upstream:
@@ -15,8 +15,10 @@
* Fixed watch file; moved from cdbs to dh build.
* debian/compat and dh build dep for version 7 to allow Ubuntu Lucid (LTS)
builds without modification (Lucid has version 7 of dh)
+ * Fixed Build-Depends issue, now libzerg0-dev, thanks to Michael Terry
+ <michael.terry at canonical.com>. (Closes: #680425)
- -- Andreas Tille <tille at debian.org> Wed, 28 Mar 2012 15:13:15 +0200
+ -- Laszlo Kajan <lkajan at rostlab.org> Fri, 06 Jul 2012 15:32:27 +0200
libzerg-perl (1.0.4-2) unstable; urgency=low
Modified: trunk/packages/rostlab/libzerg-perl/trunk/debian/compat
===================================================================
--- trunk/packages/rostlab/libzerg-perl/trunk/debian/compat 2012-07-06 14:13:04 UTC (rev 11596)
+++ trunk/packages/rostlab/libzerg-perl/trunk/debian/compat 2012-07-06 14:23:41 UTC (rev 11597)
@@ -1 +1 @@
-7
+8
Modified: trunk/packages/rostlab/libzerg-perl/trunk/debian/control
===================================================================
--- trunk/packages/rostlab/libzerg-perl/trunk/debian/control 2012-07-06 14:13:04 UTC (rev 11596)
+++ trunk/packages/rostlab/libzerg-perl/trunk/debian/control 2012-07-06 14:23:41 UTC (rev 11597)
@@ -4,7 +4,7 @@
Maintainer: Debian Med Packaging Team <debian-med-packaging at lists.alioth.debian.org>
Uploaders: Laszlo Kajan <lkajan at rostlab.org>,
Andreas Tille <tille at debian.org>
-Build-Depends: debhelper (>= 7), libzerg-dev
+Build-Depends: debhelper (>= 8), libzerg0-dev
Standards-Version: 3.9.3
Vcs-Svn: svn://svn.debian.org/debian-med/trunk/packages/rostlab/libzerg-perl/trunk/
Vcs-Browser: http://svn.debian.org/wsvn/debian-med/trunk/packages/rostlab/libzerg-perl/trunk/
@@ -20,7 +20,7 @@
function that scans the input for specified lexical elements and, when
one is found, returns its code and value to the user.
.
- It is intended to be fast: for that we used flex, which provides
+ It is intended to be fast: for that the authors used flex, which provides
simple regular expression matching and input buffering in the
generated C scanner. And it is intended to be simple in the sense of
providing just a lexical scanner, with no features whose support could
Modified: trunk/packages/rostlab/libzerg-perl/trunk/debian/rules
===================================================================
--- trunk/packages/rostlab/libzerg-perl/trunk/debian/rules 2012-07-06 14:13:04 UTC (rev 11596)
+++ trunk/packages/rostlab/libzerg-perl/trunk/debian/rules 2012-07-06 14:23:41 UTC (rev 11597)
@@ -1,4 +1,13 @@
#!/usr/bin/make -f
+export CPPFLAGS:=$(shell dpkg-buildflags --get CPPFLAGS)
+export CFLAGS:=$(shell dpkg-buildflags --get CFLAGS)
+export CXXFLAGS:=$(shell dpkg-buildflags --get CXXFLAGS)
+export LDFLAGS:=$(shell dpkg-buildflags --get LDFLAGS)
+
%:
- dh --parallel --sourcedirectory=Zerg $@
+ dh $@ --parallel --sourcedirectory=Zerg
+
+.PHONY: override_dh_auto_configure
+override_dh_auto_configure:
+ dh_auto_configure -- OPTIMIZE="$(CPPFLAGS) $(CFLAGS)" LD="$(shell perl -V::ld:) $(LDFLAGS)"
More information about the debian-med-commit
mailing list