summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Sulfrian <alexander@sulfrian.net>2013-02-06 09:46:34 +0100
committerAlexander Sulfrian <alexander@sulfrian.net>2013-02-06 22:54:09 +0100
commit14d9d23ae2c77d47de6e3978f39eec7089169953 (patch)
tree561ff91ae6658c548577a1f0b1906dbf6cb0b93f
parentfe8a30ff199edb5892ee5001c6f2476beee7377a (diff)
downloadlayman-14d9d23ae2c77d47de6e3978f39eec7089169953.tar.gz
layman-14d9d23ae2c77d47de6e3978f39eec7089169953.tar.bz2
layman-14d9d23ae2c77d47de6e3978f39eec7089169953.zip
debian: add debian files
-rw-r--r--debian/.gitignore6
-rw-r--r--debian/changelog5
-rw-r--r--debian/compat1
-rw-r--r--debian/control17
-rw-r--r--debian/copyright27
-rw-r--r--debian/docs1
-rw-r--r--debian/install1
-rw-r--r--debian/manpages1
-rwxr-xr-xdebian/rules17
9 files changed, 76 insertions, 0 deletions
diff --git a/debian/.gitignore b/debian/.gitignore
new file mode 100644
index 0000000..fb86041
--- /dev/null
+++ b/debian/.gitignore
@@ -0,0 +1,6 @@
+tmp/
+layman/
+*.log
+*.debhelper
+*substvars
+files
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..ddf0fba
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+layman (2.0.0-1) unstable; urgency=low
+
+ * Initial release
+
+ -- Alexander Sulfrian <alex@spline.inf.fu-berlin.de> Wed, 06 Feb 2013 09:45:08 +0100
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..45a4fb7
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+8
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..9281474
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,17 @@
+Source: layman
+Section: admin
+Priority: extra
+Maintainer: Alexander Sulfrian <alex@spline.inf.fu-berlin.de>
+Build-Depends: debhelper (>= 7.0.50~), python-all (>= 2.6.6-3~),
+ asciidoc, xmlto
+Standards-Version: 3.8.4
+Homepage: http://layman.sourceforge.net/
+
+Package: layman
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends}, python-argparse
+Suggests: portage, bzr, cvs, darcs, git, mercurial, rsync, subversion, tar
+Description: tool to manage Gentoo overlays
+ layman is the Gentoo overlay manager and allows to integrate
+ experimental software packages into the main distribution. It can also
+ be used as a manager for version control repositories.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..0eb371c
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,27 @@
+Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=135
+Name: portage
+Maintainer: Alexander Sulfrian <alex@spline.inf.fu-berlin.de>
+Source: http://git.overlays.gentoo.org/gitweb/?p=proj/layman.git
+
+Copyright 2005 - 2009 Gunnar Wrobel
+Copyright 2009 Sebastian Pipping
+Copyright 2010 - 2011 Brian Dolbec
+License: GPL-2
+
+License: GPL-2
+ 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; version 2 of the License.
+ .
+ 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, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ .
+ On Debian systems, the full text of the GNU General Public
+ License version 2 can be found in the file
+ `/usr/share/common-licenses/GPL-2'.
diff --git a/debian/docs b/debian/docs
new file mode 100644
index 0000000..97ec3e3
--- /dev/null
+++ b/debian/docs
@@ -0,0 +1 @@
+doc/layman.8.html
diff --git a/debian/install b/debian/install
new file mode 100644
index 0000000..77027c0
--- /dev/null
+++ b/debian/install
@@ -0,0 +1 @@
+etc/layman.cfg etc/
diff --git a/debian/manpages b/debian/manpages
new file mode 100644
index 0000000..47cbd4d
--- /dev/null
+++ b/debian/manpages
@@ -0,0 +1 @@
+doc/layman.8
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..468117b
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,17 @@
+#!/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 $@ --with python2 --buildsystem python_distutils
+
+override_dh_auto_build:
+ dh_auto_build -O--buildsystem python_distutils
+ make doc