summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTzafrir Cohen <tzafrir@cohens.org.il>2013-08-27 17:49:05 +0300
committerTzafrir Cohen <tzafrir@cohens.org.il>2013-08-27 18:46:11 +0300
commit7361bfd04516d9a82910e42430dffb92f500b680 (patch)
tree34ed2e17352e35e5230a35554c7e3771f23621b8
parent501b46b0d4373f8ab849180466e6fe74c45d7363 (diff)
Debian packagingHEADmaster
-rw-r--r--debian/changelog5
-rw-r--r--debian/compat1
-rw-r--r--debian/control20
-rw-r--r--debian/copyright32
-rw-r--r--debian/docs1
-rw-r--r--debian/python-exmachina.pyinstall2
-rwxr-xr-xdebian/rules3
-rw-r--r--debian/source/format1
8 files changed, 65 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..c3c7dbd
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+exmachina (0.0.0~git.20130207-1) UNRELEASED; urgency=low
+
+ * Initial release. (Closes: #XXXXXX)
+
+ -- Tzafrir Cohen <tzafrir@debian.org> Tue, 27 Aug 2013 15:38:50 +0300
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..77dd89d
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,20 @@
+Source: exmachina
+Section: python
+Priority: extra
+Maintainer: Tzafrir Cohen <tzafrir@debian.org>
+#Uploaders:
+Build-Depends: debhelper (>= 9), python-all
+Standards-Version: 3.9.4
+Homepage: https://github.com/jvasile/exmachina
+#Vcs-Git:
+#Vcs-Browser:
+
+Package: python-exmachina
+Section: python
+Architecture: all
+Depends: ${python:Depends}, ${misc:Depends}, python-bjsonrpc, python-augeas
+Description: python module for creating a priv-separation daemon
+ implements both ends (privilaged daemon and unprivilaged python
+ client library) of a crude system configuration message bus, intended for use
+ (initially) with the Plinth web interface to the FreedomBox operating system.
+
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..58ca42a
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,32 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Source: https://github.com/jvasile/exmachina
+Upstream-Name: withsqlite
+
+Files: *
+Copyright: July 2012 bnewbold <bnewbold@robocracy.org>
+License: GPL-3+
+ Released under the GNU General Public License, version 3 or later.
+ See https://www.gnu.org/licenses/gpl-3.0.html for terms.
+ .
+ On Debian systems you will find a copy of the GPL (version 3) at
+ /usr/share/common-licenses/GPL-3.
+
+Files: debian/*
+Copyright: 2013 Tzafrir Cohen
+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, either version 2 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 you will find a copy of the GPL (version 3) at
+ /usr/share/common-licenses/GPL-3.
+
diff --git a/debian/docs b/debian/docs
new file mode 100644
index 0000000..e845566
--- /dev/null
+++ b/debian/docs
@@ -0,0 +1 @@
+README
diff --git a/debian/python-exmachina.pyinstall b/debian/python-exmachina.pyinstall
new file mode 100644
index 0000000..2f1a5dc
--- /dev/null
+++ b/debian/python-exmachina.pyinstall
@@ -0,0 +1,2 @@
+exmachina.py exmachina
+__init__.py exmachina
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..18bcae9
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,3 @@
+#!/usr/bin/make -f
+%:
+ dh $@ --with python2
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)