[pnfft] 02/02: initial debianization

Ghislain Vaillant ghisvail-guest at moszumanska.debian.org
Sun Aug 31 08:44:38 UTC 2014


This is an automated email from the git hooks/post-receive script.

ghisvail-guest pushed a commit to branch master
in repository pnfft.

commit a4b0cfa0f59f1631531c0c9909bae0ed5172054f
Author: Ghislain Antony Vaillant <ghisvail at gmail.com>
Date:   Sun Aug 31 09:15:15 2014 +0100

    initial debianization
---
 debian/changelog            |  5 ++++
 debian/compat               |  1 +
 debian/control              | 61 +++++++++++++++++++++++++++++++++++++++++++++
 debian/copyright            | 15 +++++++++++
 debian/libpnfft-dev.install |  4 +++
 debian/libpnfft0.install    |  1 +
 debian/rules                | 14 +++++++++++
 debian/source/format        |  1 +
 debian/watch                |  2 ++
 9 files changed, 104 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..e832333
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+pnfft (1.0.6-1) UNRELEASED; urgency=low
+
+  * Initial release (Closes: #000000)
+
+ -- Ghislain Antony Vaillant <ghisvail at gmail.com>  Sun, 31 Aug 2014 08:59:46 +0100
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..ec63514
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+9
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..d869ab5
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,61 @@
+Source: pnfft
+Section: libs
+Priority: optional
+Maintainer: Ghislain Antony Vaillant <ghisvail at gmail.com>
+Build-Depends:
+ debhelper (>= 9),
+ dh-autoreconf,
+ libopenmpi-dev,
+ libfftw3-dev,
+ libfftw3-mpi-dev,
+ libpfft-dev
+Standards-Version: 3.9.5
+Homepage: https://www-user.tu-chemnitz.de/~mpip/software.php.en#pnfft
+#Vcs-Git: git://anonscm.debian.org/debian-science/packages/pnfft.git
+#Vcs-Browser: http://anonscm.debian.org/gitweb/?p=debian-science/packages/pnfft.git
+
+Package: libpnfft0
+Architecture: any
+Multi-Arch: same
+Depends:
+ ${shlibs:Depends},
+ ${misc:Depends}
+Pre-Depends: ${misc:Pre-Depends}
+Description: Parallel NFFT software library based on MPI -- shared library
+ PNFFT is a parallel software library for the calculation of three-dimensional 
+ nonequispaced FFTs. It is available under GPL licence. The parallelization 
+ is based on MPI.
+ .
+ This package contains the shared version of the library.
+
+Package: libpnfft-dev
+Section: libdevel
+Architecture: any
+Multi-Arch: same
+Depends:
+ ${shlibs:Depends},
+ ${misc:Depends},
+ libpnfft0 (= ${binary:Version})
+Description: Parallel NFFT software library based on MPI -- header files
+ PNFFT is a parallel software library for the calculation of three-dimensional 
+ nonequispaced FFTs. It is available under GPL licence. The parallelization 
+ is based on MPI.
+ .
+ This package contains the header files and static version of the library.
+
+Package: libpnfft0-dbg
+Section: debug
+Priority: extra
+Architecture: any
+Multi-Arch: same
+Depends:
+ ${misc:Depends},
+ libpnfft0 (= ${binary:Version})
+Suggests:
+ libpfft0-dbg
+Description: Parallel NFFT software library based on MPI -- debug library
+ PNFFT is a parallel software library for the calculation of three-dimensional 
+ nonequispaced FFTs. It is available under GPL licence. The parallelization 
+ is based on MPI.
+ .
+ This package contains the debugging symbols of the library.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..f3d6c95
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,15 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: pfft
+Source: https://www-user.tu-chemnitz.de/~mpip/software.php.en#pnfftDownloads
+
+Files: *
+Copyright: 2013 Michael Pippig <michael.pippig at mathematik.tu-chemnitz.de>
+License: GPL-3
+
+Files: debian/*
+Copyright: 2014 Ghislain Antony Vaillant <ghisvail at gmail.com>
+License: GPL-3
+
+License: GPL-3
+ On Debian systems, the complete text of the GNU General Public License
+ can be found in `/usr/share/common-licenses/GPL-3'.
diff --git a/debian/libpnfft-dev.install b/debian/libpnfft-dev.install
new file mode 100644
index 0000000..3010d76
--- /dev/null
+++ b/debian/libpnfft-dev.install
@@ -0,0 +1,4 @@
+usr/include/pnfft.h
+usr/lib/*/libpnfft.so
+usr/lib/*/libpnfft.a
+usr/include/*.f03 usr/include/pnfft
diff --git a/debian/libpnfft0.install b/debian/libpnfft0.install
new file mode 100644
index 0000000..5b5cdb2
--- /dev/null
+++ b/debian/libpnfft0.install
@@ -0,0 +1 @@
+usr/lib/*/libpnfft.so.0*
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..aaf2dc0
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,14 @@
+#!/usr/bin/make -f
+
+#DH_VERBOSE = 1
+DPKG_EXPORT_BUILDFLAGS = 1
+include /usr/share/dpkg/default.mk
+
+%:
+	dh $@ --with autoreconf
+
+override_dh_auto_configure:
+	dh_auto_configure -- --enable-threads --enable-portable-binary
+
+override_dh_strip:
+	dh_strip --dbg-package=libpnfft0-dbg
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..f54ff76
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
+version=3
+https://www-user.tu-chemnitz.de/~mpip/software/pnfft-(.*)-alpha\.tar\.gz

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-science/packages/pnfft.git



More information about the debian-science-commits mailing list