[dune-functions] 01/01: Initial import.

Ansgar Burchardt ansgar at moszumanska.debian.org
Mon Sep 14 13:25:28 UTC 2015


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

ansgar pushed a commit to branch master
in repository dune-functions.

commit b7581f8d5825635c7f4efadf672b314c9dbccd69
Author: Ansgar Burchardt <ansgar at debian.org>
Date:   Mon Sep 14 15:25:16 2015 +0200

    Initial import.
---
 debian/changelog                     |  5 ++++
 debian/clean                         |  1 +
 debian/compat                        |  1 +
 debian/control                       | 36 ++++++++++++++++++++++++
 debian/copyright                     | 53 ++++++++++++++++++++++++++++++++++++
 debian/libdune-functions-dev.install |  4 +++
 debian/libdune-functions-doc.install |  1 +
 debian/rules                         |  8 ++++++
 debian/source/format                 |  1 +
 9 files changed, 110 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..3d3c0da
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+dune-functions (2.4~20150912g1c549a7-1) UNRELEASED; urgency=medium
+
+  * Initial release.
+
+ -- Ansgar Burchardt <ansgar at debian.org>  Mon, 14 Sep 2015 14:35:17 +0200
diff --git a/debian/clean b/debian/clean
new file mode 100644
index 0000000..1b65dc2
--- /dev/null
+++ b/debian/clean
@@ -0,0 +1 @@
+am
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..0a7f538
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,36 @@
+Source: dune-functions
+Section: libs
+Priority: optional
+Standards-Version: 3.9.6
+Maintainer: Debian Science Maintainers <debian-science-maintainers at lists.alioth.debian.org>
+Uploaders: Ansgar Burchardt <ansgar at debian.org>, Oliver Sander <sander at mi.fu-berlin.de>
+Vcs-Browser: https://anonscm.debian.org/cgit/debian-science/packages/dune-functions.git
+Vcs-Git: git://anonscm.debian.org/debian-science/packages/dune-functions.git
+Homepage: http://www.dune-project.org/
+Build-Depends: debhelper (>= 9),
+ cmake, gfortran, mpi-default-bin, mpi-default-dev, pkg-config,
+ libdune-localfunctions-dev (>= 2.4~),
+ libdune-grid-dev (>= 2.4~),
+ libdune-istl-dev (>= 2.4~),
+ libdune-typetree-dev
+Build-Depends-Indep: doxygen, ghostscript, graphviz, texlive-latex-extra, texlive-latex-recommended, pgf
+
+Package: libdune-functions-dev
+Section: libdevel
+Architecture: all
+Multi-Arch: foreign
+Depends: ${misc:Depends},
+ libdune-localfunctions-dev (>= 2.4~),
+ libdune-grid-dev (>= 2.4~),
+ libdune-typetree-dev
+Suggests: libdune-functions-doc (= ${source:Version})
+Description: toolbox for solving PDEs -- TODO
+ TODO
+
+Package: libdune-functions-doc
+Section: doc
+Architecture: all
+Multi-Arch: foreign
+Depends: ${misc:Depends}
+Description: toolbox for solving PDEs -- TODO
+ TODO
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..043aca6
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,53 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: dune-functions
+Source: http://cgit.dune-project.org/repositories/dune-functions/
+
+Files: *
+Copyright:
+ 2013--2015    Christian Engwer
+ 2015          Elisa Friebel
+ 2013--2015    Carsten Gräser
+ 2015          Felix Gruber
+ 2015          Angela Klewinghaus
+ 2013--2015    Steffen Müthing
+ 2013--2015    Oliver Sander
+License: LGPL-3+ or GPL-2 with DUNE exception
+
+Files: debian/*
+Copyright: 2015, Ansgar Burchardt <ansgar at debian.org>
+License: LGPL-3+ or GPL-2 with DUNE exception
+
+License: LGPL-3+ or GPL-2 with DUNE exception
+ The dune-functions library, headers and test programs are copyrighted free software. You
+ can use, modify and/or redistribute it under the terms of either one of the two
+ following licenses:
+ .
+ * The GNU Lesser General Public License as published by the Free Software
+   Foundation, either Version 3 of the license or (at your option) any later
+   version. You can find a copy of the GNU Lesser General Public License, Version
+   3, in the files GPL-3 and LGPL-3 or at <http://www.gnu.org/licenses/lgpl-3.0>.
+ .
+ * Version 2 of the GNU General Public License as published by the Free Software
+   Foundation, with the following special exception for linking and compiling
+   against the dune-functions library, the so-called "runtime exception":
+ .
+     As a special exception, you may use the dune-functions source files as part of a
+     software library or application without restriction.  Specifically, if other
+     files instantiate templates or use macros or inline functions from one or
+     more of the dune-functions source files, or you compile one or more of the dune-functions
+     source files and link them with other files to produce an executable, this
+     does not by itself cause the resulting executable to be covered by the GNU
+     General Public License.  This exception does not however invalidate any
+     other reasons why the executable file might be covered by the GNU General
+     Public License.
+ .
+   This license is intended to be similar to the GNU Lesser General Public
+   License, Version 2, which by itself isn't suitable for a template library. You
+   can find a copy of the GNU General Public License, Version 2, in the file
+   GPL-2 or at <http://www.gnu.org/licenses/gpl-2.0>.
+Comment:
+ On Debian systems, the full text of the GNU Lesser General Public License
+ version 3 can be found in the file `/usr/share/common-licenses/LGPL-3'.
+ .
+ On Debian systems, the full text of the GNU General Public License version 2
+ can be found in the file `/usr/share/common-licenses/GPL-2'.
diff --git a/debian/libdune-functions-dev.install b/debian/libdune-functions-dev.install
new file mode 100644
index 0000000..ae71293
--- /dev/null
+++ b/debian/libdune-functions-dev.install
@@ -0,0 +1,4 @@
+usr/include
+usr/lib
+usr/share/dune
+usr/share/dune-functions
diff --git a/debian/libdune-functions-doc.install b/debian/libdune-functions-doc.install
new file mode 100644
index 0000000..c476632
--- /dev/null
+++ b/debian/libdune-functions-doc.install
@@ -0,0 +1 @@
+usr/share/doc/dune-functions/* usr/share/doc/libdune-functions-doc
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..fe54f69
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,8 @@
+#! /usr/bin/make -f
+
+%:
+	dh $@ --parallel
+
+override_dh_install:
+	find debian/tmp -type f
+	dh_install
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)

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



More information about the debian-science-commits mailing list