summaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
authorChristian Pointner <equinox@spreadspace.org>2015-09-21 02:30:23 +0200
committerChristian Pointner <equinox@spreadspace.org>2015-09-21 02:30:23 +0200
commit1bb82e686f2aa870e7ee2118fe9e387a7f9c6b99 (patch)
treef3c874d6bf3fd2c79f4d06b947e4765154360a2a /debian
parentimproved install routines (added systemd service unit and initscript (diff)
added debian dir and fixed initscrpt
Diffstat (limited to 'debian')
-rw-r--r--debian/changelog5
-rw-r--r--debian/compat1
-rw-r--r--debian/control16
-rw-r--r--debian/copyright43
-rwxr-xr-xdebian/rules15
-rw-r--r--debian/source/format1
6 files changed, 81 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..419d3c2
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+dropnroll (0.1-1) unstable; urgency=medium
+
+ * Initial release
+
+ -- Christian Pointner <equinox@spreadspace.org> Mon, 21 Sep 2015 01:15:51 +0200
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..52018a6
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,16 @@
+Source: dropnroll
+Section: misc
+Priority: extra
+Maintainer: Christian Pointner <equinox@spreadspace.org>
+Build-Depends: debhelper (>= 9), dh-systemd
+Standards-Version: 3.9.5
+
+Package: dropnroll
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: inotify based dropbox daemon
+ dropnroll is a small daemon which can be used to watch one or more
+ directories for new files. When a new file is detected an external program will
+ get started.
+ Additional directories can be added to the daemon's watch list using a simple
+ unix socket based command interface.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..204ca0f
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,43 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: dropnroll
+Upstream-Contact: Christian Pointner <equinox@spreadspace.org>
+
+Files: *
+Copyright: Copyright 2009-2015 Christian Pointner <equinox@spreadspace.org>
+License: GPL-3+
+ dropnroll 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
+ any later version.
+ .
+ dropnroll 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 dropnroll. If not, see <http://www.gnu.org/licenses/>.
+ .
+ On Debian systems, the full text of the GNU General Public
+ License version 3 can be found in the file
+ `/usr/share/common-licenses/GPL-3'.
+
+Files: debian/*
+Copyright: Copyright 2015 Christian Pointner <equinox@spreadspace.org>
+License: GPL-3+
+ 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 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, the full text of the GNU General Public
+ License version 3 can be found in the file
+ `/usr/share/common-licenses/GPL-3'.
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..5dfe6ad
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,15 @@
+#!/usr/bin/make -f
+%:
+ dh $@ --with=systemd --sourcedirectory=src
+
+override_dh_auto_configure:
+ dh_auto_configure -- --systemddir=/lib/systemd/system --ebuild-compat
+
+override_dh_installinit:
+ dh_installinit --onlyscripts
+
+override_dh_systemd_enable:
+ dh_systemd_enable dropnroll@.service
+
+override_dh_systemd_start:
+ dh_systemd_start dropnroll@.service
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)