Initial Debian packaging
authorSam Hartman <hartmans@debian.org>
Fri, 23 Jan 2015 17:41:56 +0000 (12:41 -0500)
committerSam Hartman <hartmans@debian.org>
Fri, 22 May 2015 18:39:42 +0000 (14:39 -0400)
debian/.gitignore [new file with mode: 0644]
debian/changelog [new file with mode: 0644]
debian/compat [new file with mode: 0644]
debian/control [new file with mode: 0644]
debian/copyright [new file with mode: 0644]
debian/gssweb-doc.install [new file with mode: 0644]
debian/json-gssapi.install [new file with mode: 0644]
debian/libjsongssapi1.install [new file with mode: 0644]
debian/rules [new file with mode: 0755]
debian/source/format [new file with mode: 0644]

diff --git a/debian/.gitignore b/debian/.gitignore
new file mode 100644 (file)
index 0000000..d6a39ca
--- /dev/null
@@ -0,0 +1,6 @@
+tmp
+json-gssapi
+libjsongssapi1
+*.debhelper
+*.substvars
+*.debhelper.log
diff --git a/debian/changelog b/debian/changelog
new file mode 100644 (file)
index 0000000..8ea0216
--- /dev/null
@@ -0,0 +1,5 @@
+gssweb (0.1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Sam Hartman <hartmans@debian.org>  Wed, 21 Jan 2015 13:43:52 -0500
diff --git a/debian/compat b/debian/compat
new file mode 100644 (file)
index 0000000..ec63514
--- /dev/null
@@ -0,0 +1 @@
+9
diff --git a/debian/control b/debian/control
new file mode 100644 (file)
index 0000000..f6f921c
--- /dev/null
@@ -0,0 +1,35 @@
+Source: gssweb
+Section: net
+Priority: optional
+Maintainer: Sam Hartman <hartmans@debian.org>
+Build-Depends: debhelper (>= 9), cmake, libkrb5-dev, libjansson-dev, libcppunit-dev, libssl-dev
+Standards-Version: 3.9.5
+Homepage: https://launchpad.net/gssweb/
+Vcs-Git: git://git.project-moonshot.org/gssweb.git
+#Vcs-Browser: http://anonscm.debian.org/?p=collab-maint/gssweb.git;a=summary
+
+Package: json-gssapi
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Pre-Depends: ${misc:Pre-Depends}
+Multi-Arch: foreign
+Description: JSON Interface to GSSAPI
+ Gssweb provides an implementation of the Generic Security Services
+ API for Javascript and the web.
+ .
+ This package includes the native client implementation of GSS-API
+ needed by Chromium.
+
+
+Package: libjsongssapi1
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Pre-Depends: ${misc:Pre-Depends}
+Architecture: any
+Multi-Arch: same
+Description: JSON GSSAPI Libraries
+ Gssweb provides an implementation of the Generic Security Services
+ API for Javascript and the web.
+ .
+ This package include shared libraries that encapsulate GSS-API calls
+ in Javascript messages.  These shared libraries can be linked into an
+ application or used directly as a plugin.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644 (file)
index 0000000..0ffad93
--- /dev/null
@@ -0,0 +1,34 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: gssweb
+Source: <url://example.com>
+
+Files: *
+Copyright: <years> <put author's name and email here>
+           <years> <likewise for another author>
+License: GPL-3.0+
+
+Files: debian/*
+Copyright: 2015 Sam Hartman <hartmans@debian.org>
+License: GPL-3.0+
+
+License: GPL-3.0+
+ This program 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".
+
+# Please also look if there are files or directories which have a
+# different copyright/license attached and list them here.
+# Please avoid to pick license terms that are more restrictive than the
+# packaged work, as it may make Debian's contributions unacceptable upstream.
diff --git a/debian/gssweb-doc.install b/debian/gssweb-doc.install
new file mode 100644 (file)
index 0000000..d4f4542
--- /dev/null
@@ -0,0 +1 @@
+#DOCS#
diff --git a/debian/json-gssapi.install b/debian/json-gssapi.install
new file mode 100644 (file)
index 0000000..1df36c6
--- /dev/null
@@ -0,0 +1 @@
+usr/bin/*
diff --git a/debian/libjsongssapi1.install b/debian/libjsongssapi1.install
new file mode 100644 (file)
index 0000000..f1d0181
--- /dev/null
@@ -0,0 +1 @@
+usr/lib/*
diff --git a/debian/rules b/debian/rules
new file mode 100755 (executable)
index 0000000..ce15cce
--- /dev/null
@@ -0,0 +1,32 @@
+#!/usr/bin/make -f
+# See debhelper(7) (uncomment to enable)
+# output every command that modifies files on the build system.
+#DH_VERBOSE = 1
+
+# see EXAMPLES in dpkg-buildflags(1) and read /usr/share/dpkg/*
+DPKG_EXPORT_BUILDFLAGS = 1
+include /usr/share/dpkg/default.mk
+
+# see FEATURE AREAS in dpkg-buildflags(1)
+#export DEB_BUILD_MAINT_OPTIONS = hardening=+all
+
+# see ENVIRONMENT in dpkg-buildflags(1)
+# package maintainers to append CFLAGS
+#export DEB_CFLAGS_MAINT_APPEND  = -Wall -pedantic
+# package maintainers to append LDFLAGS
+#export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed
+
+
+# main packaging script based on dh7 syntax
+%:
+       dh $@ 
+
+# debmake generated override targets
+# This is example for Cmake (See http://bugs.debian.org/641051 )
+#override_dh_auto_configure:
+#      dh_auto_configure -- \
+#      -DCMAKE_LIBRARY_PATH=$(DEB_HOST_MULTIARCH)
+
+
+
+
diff --git a/debian/source/format b/debian/source/format
new file mode 100644 (file)
index 0000000..89ae9db
--- /dev/null
@@ -0,0 +1 @@
+3.0 (native)