[gmt-dcw] 02/03: Initial Debian packaging.

Sebastiaan Couwenberg sebastic at moszumanska.debian.org
Sun Jun 7 14:39:55 UTC 2015


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

sebastic pushed a commit to branch master
in repository gmt-dcw.

commit 4fc307027509c7c642aeeba076b07efd0f41a7f8
Author: Bas Couwenberg <sebastic at xs4all.nl>
Date:   Sun Jun 7 16:00:27 2015 +0200

    Initial Debian packaging.
---
 debian/changelog     |  5 +++++
 debian/compat        |  1 +
 debian/control       | 21 +++++++++++++++++++++
 debian/copyright     | 47 +++++++++++++++++++++++++++++++++++++++++++++++
 debian/docs          |  1 +
 debian/gbp.conf      | 16 ++++++++++++++++
 debian/install       |  1 +
 debian/rules         |  5 +++++
 debian/source/format |  1 +
 debian/watch         |  5 +++++
 10 files changed, 103 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..b86c8b1
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+gmt-dcw (1.1.1-1) UNRELEASED; urgency=medium
+
+  * Initial release. (Closes: #787991)
+
+ -- Bas Couwenberg <sebastic at debian.org>  Sun, 07 Jun 2015 14:06:10 +0200
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..59e2647
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,21 @@
+Source: gmt-dcw
+Maintainer: Debian GIS Project <pkg-grass-devel at lists.alioth.debian.org>
+Uploaders: Bas Couwenberg <sebastic at debian.org>
+Section: science
+Priority: extra
+Build-Depends: debhelper (>= 9),
+Standards-Version: 3.9.6
+Vcs-Browser: https://anonscm.debian.org/cgit/pkg-grass/gmt-dcw.git
+Vcs-Git: git://anonscm.debian.org/pkg-grass/gmt-dcw.git
+Homepage: http://www.soest.hawaii.edu/pwessel/dcw/index.html
+
+Package: gmt-dcw
+Architecture: all
+Depends: ${misc:Depends}
+Description: Digital Chart of the World (DCW) for GMT
+ DCW-GMT is an enhancement to the original 1:1,000,000 scale vector basemap
+ of the world available from the Princeton University Digital Map and
+ Geospatial Information Center and from GeoCommunity at
+ http://data.geocomm.com/readme/dcw/dcw.html.
+ This data is for use by GMT, the Generic Mapping Tools.
+
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..9123132
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,47 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: DCW-GMT
+Upstream-Contact: Paul Wessel <wessel at soest.hawaii.edu>
+Source: ftp://ftp.soest.hawaii.edu/gmt/
+
+Files: *
+Copyright: 2014, The GMT Team
+License: LGPL-3+
+
+Files: debian/*
+Copyright: 2015, Bas Couwenberg <sebastic at debian.org>
+License: GPL-3+
+
+License: GPL-3+
+ This package is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 3 of the License, or
+ (at your option) any later version.
+ .
+ This package is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>
+ .
+ On Debian systems, the complete text of the GNU General Public License
+ version 3 can be found in "/usr/share/common-licenses/GPL-3".
+
+License: LGPL-3+
+ This package is free software; you can redistribute it and/or modify
+ it under the terms of 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.
+ .
+ This package is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU Lesser General Public License for more details.
+ .
+ You should have received a copy of the GNU Lesser General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>
+ .
+ On Debian systems, the complete text of the GNU Lesser General Public License
+ version 3 can be found in "/usr/share/common-licenses/LGPL-3".
+
diff --git a/debian/docs b/debian/docs
new file mode 100644
index 0000000..217e0a8
--- /dev/null
+++ b/debian/docs
@@ -0,0 +1 @@
+README.TXT
diff --git a/debian/gbp.conf b/debian/gbp.conf
new file mode 100644
index 0000000..21d0417
--- /dev/null
+++ b/debian/gbp.conf
@@ -0,0 +1,16 @@
+[DEFAULT]
+
+# The default name for the upstream branch is "upstream".
+# Change it if the name is different (for instance, "master").
+upstream-branch = upstream
+
+# The default name for the Debian branch is "master".
+# Change it if the name is different (for instance, "debian/unstable").
+debian-branch = master
+
+# git-import-orig uses the following names for the upstream tags.
+# Change the value if you are not using git-import-orig
+upstream-tag = upstream/%(version)s
+
+# Always use pristine-tar.
+pristine-tar = True
diff --git a/debian/install b/debian/install
new file mode 100644
index 0000000..8d2cbe1
--- /dev/null
+++ b/debian/install
@@ -0,0 +1 @@
+dcw-* usr/share/gmt-dcw/
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..11e1cb3
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,5 @@
+#! /usr/bin/make -f
+
+%:
+	dh $@ --parallel
+
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..c11dd18
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,5 @@
+version=3
+opts=passive,\
+dversionmangle=s/\+(debian|dfsg|ds|deb)\d*$// \
+ftp://ftp.soest.hawaii.edu/gmt/ \
+(?:|.*/)dcw-gmt(?:[_\-]v?|)(\d[^\s/]*)\.(?:tar\.xz|txz|tar\.bz2|tbz2|tar\.gz|tgz)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/gmt-dcw.git



More information about the Pkg-grass-devel mailing list