[libsmpp34] 01/01: Added debian dir
Ruben Undheim
rubund-guest at moszumanska.debian.org
Fri Feb 5 12:47:39 UTC 2016
This is an automated email from the git hooks/post-receive script.
rubund-guest pushed a commit to branch master
in repository libsmpp34.
commit 74f13d9230482e085e164340f5d2c4cca1669161
Author: Ruben Undheim <ruben.undheim at gmail.com>
Date: Fri Feb 5 13:38:08 2016 +0100
Added debian dir
---
debian/changelog | 5 +++++
debian/compat | 1 +
debian/control | 36 ++++++++++++++++++++++++++++++++++++
debian/copyright | 28 ++++++++++++++++++++++++++++
debian/gbp.conf | 4 ++++
debian/libsmpp34-0.docs | 1 +
debian/libsmpp34-0.install | 1 +
debian/libsmpp34-dev.install | 3 +++
debian/rules | 24 ++++++++++++++++++++++++
debian/source/format | 1 +
10 files changed, 104 insertions(+)
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..51593cf
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+libsmpp34 (1.10-1) unstable; urgency=low
+
+ * Initial release (Closes: #813295)
+
+ -- Ruben Undheim <ruben.undheim at gmail.com> Fri, 05 Feb 2016 12:45:23 +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..8e7c8ea
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,36 @@
+Source: libsmpp34
+Maintainer: Debian Science Maintainers <debian-science-maintainers at lists.alioth.debian.org>
+Uploaders: Ruben Undheim <ruben.undheim at gmail.com>
+Section: libs
+Priority: optional
+Build-Depends: debhelper (>= 9),
+ pkg-config
+Standards-Version: 3.9.6
+Vcs-Browser: https://anonscm.debian.org/cgit/debian-science/packages/libsmpp34.git
+Vcs-Git: git://anonscm.debian.org/debian-science/packages/libsmpp34.git
+
+Package: libsmpp34-0
+Architecture: any
+Depends: ${shlibs:Depends},
+ ${misc:Depends}
+Pre-Depends: ${misc:Pre-Depends}
+Multi-Arch: same
+Description: MRTD - Machine-readable travel document library
+
+Package: libsmpp34-dev
+Architecture: any
+Section: libdevel
+Depends: libsmpp34-0 (= ${binary:Version}),
+ ${misc:Depends}
+Multi-Arch: same
+Description: Development files for libsmpp34
+
+Package: libsmpp34-dbg
+Architecture: any
+Section: debug
+Priority: extra
+Depends: libsmpp34-0 (= ${binary:Version}),
+ ${misc:Depends}
+Multi-Arch: same
+Description: debug symbols for libsmpp34
+
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..e9d1308
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,28 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: libsmpp34
+Source: http://c-open-smpp-34.sourceforge.net/
+
+#Files: *
+#Copyright: 2016 Ruben Undheim <ruben.undheim at gmail.com>
+#License: GPL-3+
+#
+#Files: debian/*
+#Copyright: 2014-2015 Ruben Undheim <ruben.undheim at gmail.com>
+#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 program 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".
diff --git a/debian/gbp.conf b/debian/gbp.conf
new file mode 100644
index 0000000..4fc7c67
--- /dev/null
+++ b/debian/gbp.conf
@@ -0,0 +1,4 @@
+[DEFAULT]
+pristine-tar = True
+debian-branch=debian
+upstream-tag=%(version)s
diff --git a/debian/libsmpp34-0.docs b/debian/libsmpp34-0.docs
new file mode 100644
index 0000000..b43bf86
--- /dev/null
+++ b/debian/libsmpp34-0.docs
@@ -0,0 +1 @@
+README.md
diff --git a/debian/libsmpp34-0.install b/debian/libsmpp34-0.install
new file mode 100644
index 0000000..3ddde58
--- /dev/null
+++ b/debian/libsmpp34-0.install
@@ -0,0 +1 @@
+usr/lib/*/lib*.so.*
diff --git a/debian/libsmpp34-dev.install b/debian/libsmpp34-dev.install
new file mode 100644
index 0000000..7df81cd
--- /dev/null
+++ b/debian/libsmpp34-dev.install
@@ -0,0 +1,3 @@
+usr/include/*
+usr/lib/*/lib*.so
+usr/lib/*/pkgconfig/*
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..efc0081
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,24 @@
+#!/usr/bin/make -f
+
+#export DH_VERBOSE=1
+
+export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed
+
+export DEB_BUILD_MAINT_OPTIONS = hardening=+all
+
+PKD = $(abspath $(dir $(MAKEFILE_LIST)))
+PKG = $(word 2,$(shell dpkg-parsechangelog -l$(PKD)/changelog | grep ^Source))
+VER ?= $(shell dpkg-parsechangelog -l$(PKD)/changelog | perl -ne 'print $$1 if m{^Version:\s+(?:\d+:)?(\d.*)(?:\-\d+.*)};')
+
+
+%:
+ dh $@
+
+override_dh_strip:
+ dh_strip -plibsmpp34-0 --keep-debug --dbg-package=libsmpp34-dbg
+
+
+get-orig-source: $(info I: $(PKG)_$(VER))
+ @echo "# Downloading..."
+ uscan --noconf --verbose --rename --destdir=$(CURDIR) --force-download --download-version $(VER) $(PKD)
+
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/libsmpp34.git
More information about the debian-science-commits
mailing list