r47265 - in /packages/healpix: chealpix/trunk/debian/ chealpix/trunk/debian/tests/ healpix-cxx/trunk/debian/ healpix-cxx/trunk/debian/tests/ healpy/trunk/debian/ healpy/trunk/debian/tests/
lsinger-guest at users.alioth.debian.org
lsinger-guest at users.alioth.debian.org
Sun May 29 18:28:51 UTC 2016
Author: lsinger-guest
Date: Sun May 29 18:28:51 2016
New Revision: 47265
URL: http://svn.debian.org/wsvn/debian-science/?sc=1&rev=47265
Log:
chealpix, healpix-cxx, healpy: add continuous integration testing
Added:
packages/healpix/chealpix/trunk/debian/tests/
packages/healpix/chealpix/trunk/debian/tests/control
packages/healpix/healpix-cxx/trunk/debian/tests/
packages/healpix/healpix-cxx/trunk/debian/tests/control
packages/healpix/healpy/trunk/debian/tests/
packages/healpix/healpy/trunk/debian/tests/control
packages/healpix/healpy/trunk/debian/tests/python-healpy
packages/healpix/healpy/trunk/debian/tests/python3-healpy
Modified:
packages/healpix/chealpix/trunk/debian/changelog
packages/healpix/healpix-cxx/trunk/debian/changelog
packages/healpix/healpy/trunk/debian/changelog
Modified: packages/healpix/chealpix/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/debian-science/packages/healpix/chealpix/trunk/debian/changelog?rev=47265&op=diff
==============================================================================
--- packages/healpix/chealpix/trunk/debian/changelog (original)
+++ packages/healpix/chealpix/trunk/debian/changelog Sun May 29 18:28:51 2016
@@ -4,8 +4,9 @@
* Enable link-time optimization.
* Fix "Please build-depends on libcfitsio-dev instead of libcfitsio3-
dev" (Closes: #761702)
+ * Add continuous integration testing.
- -- Leo Singer <leo.singer at ligo.org> Fri, 27 May 2016 10:22:28 -0400
+ -- Leo Singer <leo.singer at ligo.org> Sun, 29 May 2016 14:15:56 -0400
chealpix (3.30.0-1) unstable; urgency=medium
Added: packages/healpix/chealpix/trunk/debian/tests/control
URL: http://svn.debian.org/wsvn/debian-science/packages/healpix/chealpix/trunk/debian/tests/control?rev=47265&op=file
==============================================================================
--- packages/healpix/chealpix/trunk/debian/tests/control (added)
+++ packages/healpix/chealpix/trunk/debian/tests/control Sun May 29 18:28:51 2016
@@ -0,0 +1,2 @@
+Depends: @, @builddeps@
+Test-Command: gcc $(pkg-config --cflags --libs chealpix) test_chealpix.c -o $ADTTMP/test_chealpix && $ADTTMP/test_chealpix
Modified: packages/healpix/healpix-cxx/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/debian-science/packages/healpix/healpix-cxx/trunk/debian/changelog?rev=47265&op=diff
==============================================================================
--- packages/healpix/healpix-cxx/trunk/debian/changelog (original)
+++ packages/healpix/healpix-cxx/trunk/debian/changelog Sun May 29 18:28:51 2016
@@ -3,8 +3,9 @@
* Change maintainer from Debian Science Team to Debian Astro Team.
* Enable link-time optimization.
* Depend on libcfitsio-dev instead of transitional libcfitsio3-dev package.
+ * Add continuous integration testing.
- -- Leo Singer <leo.singer at ligo.org> Fri, 27 May 2016 10:24:54 -0400
+ -- Leo Singer <leo.singer at ligo.org> Sun, 29 May 2016 14:23:31 -0400
healpix-cxx (3.30.0-1) unstable; urgency=medium
Added: packages/healpix/healpix-cxx/trunk/debian/tests/control
URL: http://svn.debian.org/wsvn/debian-science/packages/healpix/healpix-cxx/trunk/debian/tests/control?rev=47265&op=file
==============================================================================
--- packages/healpix/healpix-cxx/trunk/debian/tests/control (added)
+++ packages/healpix/healpix-cxx/trunk/debian/tests/control Sun May 29 18:28:51 2016
@@ -0,0 +1,2 @@
+Depends: @, @builddeps@
+Test-Command: g++ $(pkg-config --cflags --libs healpix_cxx) -Icxxsupport Healpix_cxx/hpxtest.cc -o $ADTTMP/hpxtest && $ADTTMP/hpxtest
Modified: packages/healpix/healpy/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/debian-science/packages/healpix/healpy/trunk/debian/changelog?rev=47265&op=diff
==============================================================================
--- packages/healpix/healpy/trunk/debian/changelog (original)
+++ packages/healpix/healpy/trunk/debian/changelog Sun May 29 18:28:51 2016
@@ -4,8 +4,9 @@
* Enable link-time optimization.
* Depend on libcfitsio-dev instead of transitional libcfitsio3-dev package.
(Closes: #761711)
+ * Add continuous integration testing.
- -- Leo Singer <leo.singer at ligo.org> Sun, 29 May 2016 10:54:51 -0400
+ -- Leo Singer <leo.singer at ligo.org> Sun, 29 May 2016 14:10:26 -0400
healpy (1.9.1-2) unstable; urgency=medium
Added: packages/healpix/healpy/trunk/debian/tests/control
URL: http://svn.debian.org/wsvn/debian-science/packages/healpix/healpy/trunk/debian/tests/control?rev=47265&op=file
==============================================================================
--- packages/healpix/healpy/trunk/debian/tests/control (added)
+++ packages/healpix/healpy/trunk/debian/tests/control Sun May 29 18:28:51 2016
@@ -0,0 +1,2 @@
+Tests: python-healpy python3-healpy
+Depends: @, python-pytest, python3-pytest
Added: packages/healpix/healpy/trunk/debian/tests/python-healpy
URL: http://svn.debian.org/wsvn/debian-science/packages/healpix/healpy/trunk/debian/tests/python-healpy?rev=47265&op=file
==============================================================================
--- packages/healpix/healpy/trunk/debian/tests/python-healpy (added)
+++ packages/healpix/healpy/trunk/debian/tests/python-healpy Sun May 29 18:28:51 2016
@@ -0,0 +1,2 @@
+#!/bin/sh
+cd $ADTTMP && python -m pytest --doctest-modules --pyargs healpy
Added: packages/healpix/healpy/trunk/debian/tests/python3-healpy
URL: http://svn.debian.org/wsvn/debian-science/packages/healpix/healpy/trunk/debian/tests/python3-healpy?rev=47265&op=file
==============================================================================
--- packages/healpix/healpy/trunk/debian/tests/python3-healpy (added)
+++ packages/healpix/healpy/trunk/debian/tests/python3-healpy Sun May 29 18:28:51 2016
@@ -0,0 +1,2 @@
+#!/bin/sh
+cd $ADTTMP && python3 -m pytest --doctest-modules --pyargs healpy
More information about the debian-science-commits
mailing list