From 3e2d71d7b135cc6980cc10a4108130236734551e Mon Sep 17 00:00:00 2001 From: Julian Blake Kongslie Date: Fri, 30 Oct 2020 16:04:16 -0700 Subject: Initial version. --- debian/changelog | 5 +++++ debian/compat | 1 + debian/control | 15 +++++++++++++++ debian/copyright | 7 +++++++ debian/gbp.conf | 3 +++ debian/manpages | 2 ++ debian/olamic.install | 4 ++++ debian/olamic.service | 11 +++++++++++ debian/rules | 4 ++++ debian/source/format | 1 + 10 files changed, 53 insertions(+) create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/copyright create mode 100644 debian/gbp.conf create mode 100644 debian/manpages create mode 100644 debian/olamic.install create mode 100644 debian/olamic.service create mode 100755 debian/rules create mode 100644 debian/source/format (limited to 'debian') diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..695c208 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +olamic (1) unstable; urgency=medium + + * Initial version. + + -- Julian Blake Kongslie Fri, 30 Oct 2020 16:18:52 -0700 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..b4de394 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +11 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..37a7e6b --- /dev/null +++ b/debian/control @@ -0,0 +1,15 @@ +Source: olamic +Section: devel +Priority: optional +Maintainer: Julian Blake Kongslie +Build-Depends: debhelper (>= 11), pandoc +Standards-Version: 4.1.3 + +Package: olamic +Architecture: all +Depends: ${misc:Depends}, ${shlibs:Depends}, git, default-mta | mail-transport-agent +Description: Very simple continuous integration for git + Olamic is a continuous integration system written in bash designed to support + the needs of basic projects without involving a web server or anything like + that. It supports multiple worker nodes, but does not support dependencies or + ordering between tasks. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..c2d763c --- /dev/null +++ b/debian/copyright @@ -0,0 +1,7 @@ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: olamic + +Files: * +Copyright: 2020 Julian Blake Kongslie +License: GPL-2 + See /usr/share/common-licenses/GPL-2 diff --git a/debian/gbp.conf b/debian/gbp.conf new file mode 100644 index 0000000..1b36eba --- /dev/null +++ b/debian/gbp.conf @@ -0,0 +1,3 @@ +[dch] +debian-branch = main +debian-tag = release/%(version)s diff --git a/debian/manpages b/debian/manpages new file mode 100644 index 0000000..d87b5e9 --- /dev/null +++ b/debian/manpages @@ -0,0 +1,2 @@ +man/olamic-enqueue.1 +man/olamic-worker.1 diff --git a/debian/olamic.install b/debian/olamic.install new file mode 100644 index 0000000..6becfd7 --- /dev/null +++ b/debian/olamic.install @@ -0,0 +1,4 @@ +examples /usr/share/doc/olamic +olamic-enqueue /usr/bin +olamic-worker /usr/bin +pick-task /usr/share/olamic diff --git a/debian/olamic.service b/debian/olamic.service new file mode 100644 index 0000000..0c36feb --- /dev/null +++ b/debian/olamic.service @@ -0,0 +1,11 @@ +[Unit] +Description=Olamic worker + +[Service] +Type=simple +User=olamic +WorkingDirectory=/srv/olamic +ExecStart=/usr/bin/olamic-worker + +[Install] +WantedBy=multi-user.target 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..89ae9db --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (native) -- cgit v1.2.3