From 332c8effb2942c6c57d02d42bc214c861203a076 Mon Sep 17 00:00:00 2001 From: B Stack Date: Mon, 13 Jan 2020 09:12:28 -0500 Subject: add systemdtl 0.0.1 --- systemdtl/README.md | 13 +++++++++++++ systemdtl/debian/README.Debian | 5 +++++ systemdtl/debian/changelog | 5 +++++ systemdtl/debian/compat | 1 + systemdtl/debian/conffiles | 1 + systemdtl/debian/control | 17 +++++++++++++++++ systemdtl/debian/copyright | 16 ++++++++++++++++ systemdtl/debian/patches/series | 1 + systemdtl/debian/rules | 15 +++++++++++++++ systemdtl/debian/source/format | 1 + systemdtl/debian/source/local-options | 2 ++ systemdtl/debian/watch | 3 +++ 12 files changed, 80 insertions(+) create mode 100644 systemdtl/README.md create mode 100644 systemdtl/debian/README.Debian create mode 100644 systemdtl/debian/changelog create mode 100644 systemdtl/debian/compat create mode 100644 systemdtl/debian/conffiles create mode 100644 systemdtl/debian/control create mode 100644 systemdtl/debian/copyright create mode 100644 systemdtl/debian/patches/series create mode 100755 systemdtl/debian/rules create mode 100644 systemdtl/debian/source/format create mode 100644 systemdtl/debian/source/local-options create mode 100644 systemdtl/debian/watch (limited to 'systemdtl') diff --git a/systemdtl/README.md b/systemdtl/README.md new file mode 100644 index 0000000..692a615 --- /dev/null +++ b/systemdtl/README.md @@ -0,0 +1,13 @@ +# systemdtl upstream +https://gitlab.com/bgstack15/systemdtl + +# Reason for being in stackrpms +This is the upstream package of the systemdtl script. + +# Reverse dependency matrix +Distro | systemdtl version | bgscripts-core version +---------- | ----------------- | ---------------------- +All | 0.0.1 | 1.4.0 + +# Differences from upstream +N/A diff --git a/systemdtl/debian/README.Debian b/systemdtl/debian/README.Debian new file mode 100644 index 0000000..247d7d9 --- /dev/null +++ b/systemdtl/debian/README.Debian @@ -0,0 +1,5 @@ +systemdtl for Devuan + + * Initial release. + + -- Ben Stack Mon, 13 Jan 2020 08:30:26 -0500 diff --git a/systemdtl/debian/changelog b/systemdtl/debian/changelog new file mode 100644 index 0000000..f9a7c38 --- /dev/null +++ b/systemdtl/debian/changelog @@ -0,0 +1,5 @@ +systemdtl (0.0.1-1+devuan) obs; urgency=low + + * Initial release. + + -- Ben Stack Mon, 13 Jan 2020 08:30:26 -0500 diff --git a/systemdtl/debian/compat b/systemdtl/debian/compat new file mode 100644 index 0000000..48082f7 --- /dev/null +++ b/systemdtl/debian/compat @@ -0,0 +1 @@ +12 diff --git a/systemdtl/debian/conffiles b/systemdtl/debian/conffiles new file mode 100644 index 0000000..348d5d5 --- /dev/null +++ b/systemdtl/debian/conffiles @@ -0,0 +1 @@ +etc/systemdtl.conf diff --git a/systemdtl/debian/control b/systemdtl/debian/control new file mode 100644 index 0000000..31772ba --- /dev/null +++ b/systemdtl/debian/control @@ -0,0 +1,17 @@ +Source: systemdtl +Section: admin +Priority: optional +Maintainer: Ben Stack +Build-Depends: debhelper (>=12~) +Standards-Version: 4.1.4 +Homepage: https://gitlab.com/bgstack15/systemdtl + +Package: systemdtl +Architecture: all +Multi-Arch: foreign +Depends: ${misc:Depends}, ${shlibs:Depends}, + bgscripts-core (>=1.4.0) +Description: systemctl interface which calls real commands + Systemdtl provides a systemctl executable which translates + parameters and calls the real commands using service or + update-rc.d. diff --git a/systemdtl/debian/copyright b/systemdtl/debian/copyright new file mode 100644 index 0000000..d93ed1e --- /dev/null +++ b/systemdtl/debian/copyright @@ -0,0 +1,16 @@ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: systemdtl +Source: +# +# Please double check copyright with the licensecheck(1) command. + +Files: Makefile + README.md + src/etc/systemdtl.conf + src/sbin/systemctl +Copyright: __NO_COPYRIGHT_NOR_LICENSE__ +License: CC-BY-SA 4.0 + +#---------------------------------------------------------------------------- +# Files marked as NO_LICENSE_TEXT_FOUND may be covered by the following +# license/copyright files. diff --git a/systemdtl/debian/patches/series b/systemdtl/debian/patches/series new file mode 100644 index 0000000..4a97dfa --- /dev/null +++ b/systemdtl/debian/patches/series @@ -0,0 +1 @@ +# You must remove unused comment lines for the released package. diff --git a/systemdtl/debian/rules b/systemdtl/debian/rules new file mode 100755 index 0000000..299286d --- /dev/null +++ b/systemdtl/debian/rules @@ -0,0 +1,15 @@ +#!/usr/bin/make -f +# You must remove unused comment lines for the released package. +#export DH_VERBOSE = 1 +#export DEB_BUILD_MAINT_OPTIONS = hardening=+all +#export DEB_CFLAGS_MAINT_APPEND = -Wall -pedantic +#export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed + +%: + dh $@ + +override_dh_auto_install: + dh_auto_install -- prefix=/usr + +#override_dh_install: +# dh_install --list-missing -X.pyc -X.pyo diff --git a/systemdtl/debian/source/format b/systemdtl/debian/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/systemdtl/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt) diff --git a/systemdtl/debian/source/local-options b/systemdtl/debian/source/local-options new file mode 100644 index 0000000..00131ee --- /dev/null +++ b/systemdtl/debian/source/local-options @@ -0,0 +1,2 @@ +#abort-on-upstream-changes +#unapply-patches diff --git a/systemdtl/debian/watch b/systemdtl/debian/watch new file mode 100644 index 0000000..0b62c29 --- /dev/null +++ b/systemdtl/debian/watch @@ -0,0 +1,3 @@ +version=4 +opts=filenamemangle=s/.*\/archive\/(\d\S+)\/FreeFileSync.*\.tar\.gz/systemdtl-$1\.tar\.gz/g \ + https://gitlab.com/bgstack15/systemdtl/tags?sort=updated_desc .*/archive/(\d\S+)/.*\.tar\.gz.* -- cgit