From c3ea3e03fa86a1203c4db9bb14e156fd11c8fac8 Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Mon, 23 Sep 2013 23:02:09 -0400 Subject: Initial commit. --- diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..70af57f --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +* +!.gitignore +!*/ +!debian/* diff --git a/debian/.gitignore b/debian/.gitignore new file mode 100644 index 0000000..eddc727 --- /dev/null +++ b/debian/.gitignore @@ -0,0 +1,6 @@ +!.gitignore +!* +files +*.debhelper.log +*.substvars +ssic/ diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..5b63c8e --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +ssic (1.0.0-1) unstable; urgency=low + + * Initial release. + + -- P. J. Mon, 23 Sep 2013 16:33:32 -0400 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..89ab565 --- /dev/null +++ b/debian/control @@ -0,0 +1,20 @@ +Source: ssic +Section: web +Priority: optional +Maintainer: "P. J. McDermott" +Build-Depends: debhelper (>= 9.0.0) +Build-Depends-Indep: perl, libcgi-ssi-perl +Standards-Version: 3.9.4 + +Package: ssic +Architecture: all +Depends: ${perl:Depends}, libcgi-ssi-perl +Multi-Arch: foreign +Description: Server Side Includes compiler + This is ssic, a Server Side Includes Compiler. + . + ssic processes HTML documents with SSI directives formatted as SGML comments. + It can be used to process documents without an HTTP server for local browsing + or to generate static HTML documents to be efficiently served by an HTTP + server. Documents could even be preprocessed, e.g. by a Markdown processor, + before being parsed with ssic. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..fbd2dbc --- /dev/null +++ b/debian/copyright @@ -0,0 +1,27 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: ssic + +Files: * +Copyright: 2013 Patrick "P. J." McDermott +License: GPL-3.0+ + +Files: debian/* +Copyright: 2013 Patrick "P. J." McDermott +License: GPL-3.0+ + +License: GPL-3.0+ + 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 + . + On Debian systems, the complete text of the GNU General + Public License version 2 can be found in "/usr/share/common-licenses/GPL-3". diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..2d33f6a --- /dev/null +++ b/debian/rules @@ -0,0 +1,4 @@ +#!/usr/bin/make -f + +%: + dh $@ 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/ssic.lintian-overrides b/debian/ssic.lintian-overrides new file mode 100644 index 0000000..ff3604c --- /dev/null +++ b/debian/ssic.lintian-overrides @@ -0,0 +1,2 @@ +ssic: no-upstream-changelog +ssic: new-package-should-close-itp-bug -- cgit v0.9.1