[cod-tools] 02/142: trunk/ Adding packaging details for 'cexceptions'. Currently, the details are mostly raw templates, generated via command 'dh_make'.

Andrius Merkys merkys-guest at moszumanska.debian.org
Mon Sep 25 13:44:10 UTC 2017


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

merkys-guest pushed a commit to branch master
in repository cod-tools.

commit e36d29e8e2456c5a22a44e0e4b512cf936dd2bfa
Author: Andrius Merkys <andrius.merkys at gmail.com>
Date:   Wed Oct 26 07:20:04 2016 +0000

    trunk/
    Adding packaging details for 'cexceptions'. Currently, the details are
    mostly raw templates, generated via command 'dh_make'.
    
    
    git-svn-id: svn+ssh://saulius-grazulis.lt/home/andrius/svn-repositories/cod-deb-packaging/trunk@2 26752c47-bcd6-4c9c-b022-347364b77eb5
---
 cexceptions/debian/README.Debian |  6 ++++++
 cexceptions/debian/README.source |  9 +++++++++
 cexceptions/debian/changelog     |  5 +++++
 cexceptions/debian/compat        |  1 +
 cexceptions/debian/control       | 12 ++++++++++++
 cexceptions/debian/copyright     | 36 ++++++++++++++++++++++++++++++++++++
 cexceptions/debian/rules         | 25 +++++++++++++++++++++++++
 cexceptions/debian/source/format |  1 +
 8 files changed, 95 insertions(+)

diff --git a/cexceptions/debian/README.Debian b/cexceptions/debian/README.Debian
new file mode 100644
index 0000000..70c8d4a
--- /dev/null
+++ b/cexceptions/debian/README.Debian
@@ -0,0 +1,6 @@
+cexceptions for Debian
+----------------------
+
+<possible notes regarding this package - if none, delete this file>
+
+ -- andrius <andrius.merkys at gmail.com>  Wed, 26 Oct 2016 00:45:47 +0300
diff --git a/cexceptions/debian/README.source b/cexceptions/debian/README.source
new file mode 100644
index 0000000..d376dc5
--- /dev/null
+++ b/cexceptions/debian/README.source
@@ -0,0 +1,9 @@
+cexceptions for Debian
+----------------------
+
+<this file describes information about the source package, see Debian policy
+manual section 4.14. You WILL either need to modify or delete this file>
+
+
+
+
diff --git a/cexceptions/debian/changelog b/cexceptions/debian/changelog
new file mode 100644
index 0000000..017f75f
--- /dev/null
+++ b/cexceptions/debian/changelog
@@ -0,0 +1,5 @@
+cexceptions (4754-1) unstable; urgency=low
+
+  * Initial release.
+
+ -- Andrius Merkys <andrius.merkys at gmail.com>  Wed, 26 Oct 2016 00:45:47 +0300
diff --git a/cexceptions/debian/compat b/cexceptions/debian/compat
new file mode 100644
index 0000000..45a4fb7
--- /dev/null
+++ b/cexceptions/debian/compat
@@ -0,0 +1 @@
+8
diff --git a/cexceptions/debian/control b/cexceptions/debian/control
new file mode 100644
index 0000000..420a0d5
--- /dev/null
+++ b/cexceptions/debian/control
@@ -0,0 +1,12 @@
+Source: cexceptions
+Priority: extra
+Maintainer: Andrius Merkys <andrius.merkys at gmail.com>
+Build-Depends: debhelper (>= 8.0.0)
+Standards-Version: 3.9.2
+Section: libs
+
+Package: cexceptions
+Section: libdevel
+Architecture: any
+Description: <insert up to 60 chars description>
+ <insert long description, indented with spaces>
diff --git a/cexceptions/debian/copyright b/cexceptions/debian/copyright
new file mode 100644
index 0000000..d403940
--- /dev/null
+++ b/cexceptions/debian/copyright
@@ -0,0 +1,36 @@
+Format: http://dep.debian.net/deps/dep5
+Upstream-Name: cexceptions
+Source: <url://example.com>
+
+Files: *
+Copyright: <years> <put author's name and email here>
+           <years> <likewise for another author>
+License: <special license>
+ <Put the license of the package here indented by 1 space>
+ <This follows the format of Description: lines in control file>
+ .
+ <Including paragraphs>
+
+# If you want to use GPL v2 or later for the /debian/* files use 
+# the following clauses, or change it to suit. Delete these two lines
+Files: debian/*
+Copyright: 2016 andrius <andrius.merkys at gmail.com>
+License: GPL-2+
+ 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 2 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 2 can be found in "/usr/share/common-licenses/GPL-2".
+
+# Please also look if there are files or directories which have a
+# different copyright/license attached and list them here.
diff --git a/cexceptions/debian/rules b/cexceptions/debian/rules
new file mode 100755
index 0000000..26462d4
--- /dev/null
+++ b/cexceptions/debian/rules
@@ -0,0 +1,25 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# Sample debian/rules that uses debhelper.
+# This file was originally written by Joey Hess and Craig Small.
+# As a special exception, when this file is copied by dh-make into a
+# dh-make output file, you may use that output file without restriction.
+# This special exception was added by Craig Small in version 0.37 of dh-make.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+%:
+	dh $@
+
+build:
+	${MAKE}
+
+clean:
+	${MAKE} distclean
+
+install: build
+	install *.h ${PREFIX}/include
+	install lib/libcexceptions.a lib/libcexceptions.so.0.01 ${PREFIX}/lib
+	ln -fs libcexceptions.so.0.01 ${PREFIX}/lib
+	ln -fs libcexceptions.so.0 ${PREFIX}/lib
diff --git a/cexceptions/debian/source/format b/cexceptions/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/cexceptions/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/cod-tools.git



More information about the debian-science-commits mailing list