From: Alexander Barton Date: Wed, 24 Jan 2018 21:13:41 +0000 (+0100) Subject: Initial release X-Git-Tag: rel-1^0 X-Git-Url: https://arthur.barton.de/gitweb/?p=journald-syslog-dummy.git;a=commitdiff_plain;h=4482b3ff3670045d27df50da4263a163f4fca35d Initial release --- 4482b3ff3670045d27df50da4263a163f4fca35d diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0f85bf2 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +journald-syslog-dummy_* diff --git a/AUTHORS b/AUTHORS new file mode 100644 index 0000000..9ebacba --- /dev/null +++ b/AUTHORS @@ -0,0 +1 @@ +Alexander Barton diff --git a/COPYING b/COPYING new file mode 100644 index 0000000..9518f36 --- /dev/null +++ b/COPYING @@ -0,0 +1,17 @@ +Copyright 2018 by Alexander Barton + +The files in this package are free software; you can redistribute them +and/or modify them under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2, or (at +your option) any later version. + +The files in this package are distributed in the hope that they 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 +with your Debian GNU/Linux system, in /usr/share/common-licenses/GPL, +or with the Debian GNU/Linux bash source package as the file COPYING. +If not, write to the Free Software Foundation, Inc., 51 Franklin St, +Fifth Floor, Boston, MA 02110-1301, USA. diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..d1e2c08 --- /dev/null +++ b/Makefile @@ -0,0 +1,13 @@ +# +# Makefile +# + +SUBDIRS = + +all-local: + equivs-build --full journald-syslog-dummy + +clean-local: + rm -f journald-syslog-dummy_* + +include ./Makefile.ax diff --git a/Makefile.ax b/Makefile.ax new file mode 100644 index 0000000..180ce3c --- /dev/null +++ b/Makefile.ax @@ -0,0 +1,43 @@ +# +# ax-make: Alex' Simple Makefile System +# Copyright (c)2014 Alexander Barton (alex@barton.de) +# +# This library is free software; you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License as published +# by the Free Software Foundation; either version 2.1 of the License, or +# (at your option) any later version. +# + +AX_SILENT ?= @ + +PREFIX ?= /usr/local + +USER ?= $(shell id -un) +GROUP ?= $(shell stat --format=%G $(DESTDIR)$(PREFIX) 2>/dev/null || id -gn) + +all: all-ax all-local + +all-ax: $(ALL) $(SUBDIRS) + +clean: clean-ax clean-local + +distclean: clean-local distclean-ax distclean-local + +maintainer-clean: clean-local distclean-local maintainer-clean-ax maintainer-clean-local + +check: check-pre check-ax check-local check-post + +install: install-ax install-local + +all-ax clean-ax distclean-ax maintainer-clean-ax check-ax install-ax: + $(AX_SILENT)for subdir in $(SUBDIRS); do \ + target=`echo "$@" | sed -e 's/-ax$$//'`; \ + echo "Making \"$$target\" in \"$$subdir\" ..."; \ + $(MAKE) -C $$subdir $$target || exit 1; \ + done + +.PHONY: all clean distclean maintainer-clean check install +.PHONY: all-ax clean-ax distclean-ax maintainer-clean-ax check-ax install-ax +.PHONY: all-local clean-local distclean-local maintainer-clean-local check-local install-local +.PHONY: check-pre check-post +.PHONY: $(SUBDIRS) diff --git a/README b/README new file mode 100644 index 0000000..a48acf5 --- /dev/null +++ b/README @@ -0,0 +1,4 @@ +@packagename@ + +This package provides "system-log-daemon" by depending on systemd: it assumes +that the system is configured for using systemd-journald for logging. diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..36314d4 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +journald-syslog-dummy (1) unstable; urgency=medium + + * Initial release. + + -- Alexander Barton Wed, 24 Jan 2018 22:01:38 +0100 diff --git a/debian/control b/debian/control new file mode 120000 index 0000000..681e9c0 --- /dev/null +++ b/debian/control @@ -0,0 +1 @@ +../journald-syslog-dummy \ No newline at end of file diff --git a/journald-syslog-dummy b/journald-syslog-dummy new file mode 100644 index 0000000..cbb3b68 --- /dev/null +++ b/journald-syslog-dummy @@ -0,0 +1,22 @@ +Source: journald-syslog-dummy +Section: misc +Priority: optional +Homepage: http://debian.barton.de/ +Standards-Version: 3.9.2 + +Package: journald-syslog-dummy +Maintainer: Alexander Barton +Changelog: debian/changelog +Copyright: COPYING +Readme: README +Depends: + systemd, +Provides: + system-log-daemon, +Conflicts: + system-log-daemon, +Architecture: all +Extra-Files: AUTHORS +Description: Dummy package providing "journald-syslog-dummy" + This package provides "system-log-daemon" by depending on systemd: it assumes + that the system is configured for using systemd-journald for logging.