r47263 - in /packages/healpix/healpy/trunk/debian: changelog control rules
lsinger-guest at users.alioth.debian.org
lsinger-guest at users.alioth.debian.org
Fri May 27 15:43:52 UTC 2016
Author: lsinger-guest
Date: Fri May 27 15:43:52 2016
New Revision: 47263
URL: http://svn.debian.org/wsvn/debian-science/?sc=1&rev=47263
Log:
healpy: update to 1.9.1-3
Modified:
packages/healpix/healpy/trunk/debian/changelog
packages/healpix/healpy/trunk/debian/control
packages/healpix/healpy/trunk/debian/rules
Modified: packages/healpix/healpy/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/debian-science/packages/healpix/healpy/trunk/debian/changelog?rev=47263&op=diff
==============================================================================
--- packages/healpix/healpy/trunk/debian/changelog (original)
+++ packages/healpix/healpy/trunk/debian/changelog Fri May 27 15:43:52 2016
@@ -1,3 +1,11 @@
+healpy (1.9.1-3) unstable; urgency=medium
+
+ * Change maintainer from Debian Science Team to Debian Astro Team.
+ * Enable link-time optimization.
+ * Depend on libcfitsio-dev instead of transitional libcfitsio3-dev package.
+
+ -- Leo Singer <leo.singer at ligo.org> Fri, 27 May 2016 11:39:28 -0400
+
healpy (1.9.1-2) unstable; urgency=medium
* Adjust dh_fixperms override so that it only affects architecture-
Modified: packages/healpix/healpy/trunk/debian/control
URL: http://svn.debian.org/wsvn/debian-science/packages/healpix/healpy/trunk/debian/control?rev=47263&op=diff
==============================================================================
--- packages/healpix/healpy/trunk/debian/control (original)
+++ packages/healpix/healpy/trunk/debian/control Fri May 27 15:43:52 2016
@@ -1,6 +1,6 @@
Source: healpy
Priority: optional
-Maintainer: Debian Science Team <debian-science-maintainers at lists.alioth.debian.org>
+Maintainer: Debian Astro Team <debian-astro-maintainers at lists.alioth.debian.org>
Uploaders: Leo Singer <leo.singer at ligo.org>
Homepage: http://healpy.readthedocs.org
Section: python
@@ -21,7 +21,7 @@
python3-six,
debhelper (>= 9),
dh-python,
- libcfitsio3-dev,
+ libcfitsio-dev,
libhealpix-cxx-dev (>= 3.30.0),
pkg-config,
autotools-dev
Modified: packages/healpix/healpy/trunk/debian/rules
URL: http://svn.debian.org/wsvn/debian-science/packages/healpix/healpy/trunk/debian/rules?rev=47263&op=diff
==============================================================================
--- packages/healpix/healpy/trunk/debian/rules (original)
+++ packages/healpix/healpy/trunk/debian/rules Fri May 27 15:43:52 2016
@@ -1,6 +1,21 @@
#!/usr/bin/make -f
export PYBUILD_NAME=healpy
+
+# Link-time optimisation demands knowledge about all CFLAGS both at
+# compile time (as represented by CFLAGS and CXXFLAGS) but also at
+# at link time.
+#
+# Adapted from
+# http://anonscm.debian.org/cgit/pkg-boinc/boinc.git/tree/debian/rules
+ifeq (,$(findstring nolto,$(DEB_BUILD_OPTIONS)))
+ $(info I: Activating LinkTimeOptimisation)
+ export CFLAGS += -flto
+ export CXXFLAGS += -flto
+ export LDFLAGS += -flto
+ export AR := gcc-ar
+ export RANLIB := gcc-ranlib
+endif
%:
dh $@ --with python2,python3 --buildsystem=pybuild
More information about the debian-science-commits
mailing list