From c2a8571f4feed98ae13554e47c8d87d4b67aef50 Mon Sep 17 00:00:00 2001 From: Andrew Ruthven Date: Wed, 1 Jan 2025 19:12:40 +1300 Subject: [PATCH] Move Debian packaging to dedicated package --- Makefile | 44 +- debian/.gitignore | 7 - debian/changelog | 486 --------------------- debian/config | 34 -- debian/control | 42 -- debian/copyright | 29 -- debian/cron.d | 4 - debian/cron.daily | 12 - debian/dirs | 3 - debian/docs | 2 - debian/format | 1 - debian/init.d | 114 ----- debian/install | 1 - debian/lintian/overrides/mythtv-status | 4 - debian/patches/makefile-debian-paths.patch | 21 - debian/patches/series | 1 - debian/po/POTFILES.in | 1 - debian/po/cs.po | 91 ---- debian/po/da.po | 90 ---- debian/po/de.po | 90 ---- debian/po/es.po | 116 ----- debian/po/eu.po | 88 ---- debian/po/fr.po | 91 ---- debian/po/ja.po | 89 ---- debian/po/nl.po | 91 ---- debian/po/pt.po | 92 ---- debian/po/pt_BR.po | 91 ---- debian/po/ru.po | 93 ---- debian/po/sv.po | 92 ---- debian/po/templates.pot | 80 ---- debian/postinst | 92 ---- debian/postrm | 42 -- debian/rules | 15 - debian/source/format | 1 - debian/source/lintian-overrides | 4 - debian/templates | 27 -- debian/tests/pkg-perl/SKIP | 2 - debian/tests/pkg-perl/smoke-setup | 5 - debian/upstream/metadata | 5 - debian/upstream/signing-key.asc | 117 ----- debian/watch | 4 - 41 files changed, 5 insertions(+), 2309 deletions(-) delete mode 100644 debian/.gitignore delete mode 100644 debian/changelog delete mode 100644 debian/config delete mode 100644 debian/control delete mode 100644 debian/copyright delete mode 100644 debian/cron.d delete mode 100644 debian/cron.daily delete mode 100644 debian/dirs delete mode 100644 debian/docs delete mode 100644 debian/format delete mode 100644 debian/init.d delete mode 100644 debian/install delete mode 100644 debian/lintian/overrides/mythtv-status delete mode 100644 debian/patches/makefile-debian-paths.patch delete mode 100644 debian/patches/series delete mode 100644 debian/po/POTFILES.in delete mode 100644 debian/po/cs.po delete mode 100644 debian/po/da.po delete mode 100644 debian/po/de.po delete mode 100644 debian/po/es.po delete mode 100644 debian/po/eu.po delete mode 100644 debian/po/fr.po delete mode 100644 debian/po/ja.po delete mode 100644 debian/po/nl.po delete mode 100644 debian/po/pt.po delete mode 100644 debian/po/pt_BR.po delete mode 100644 debian/po/ru.po delete mode 100644 debian/po/sv.po delete mode 100644 debian/po/templates.pot delete mode 100644 debian/postinst delete mode 100644 debian/postrm delete mode 100755 debian/rules delete mode 100644 debian/source/format delete mode 100644 debian/source/lintian-overrides delete mode 100644 debian/templates delete mode 100644 debian/tests/pkg-perl/SKIP delete mode 100755 debian/tests/pkg-perl/smoke-setup delete mode 100644 debian/upstream/metadata delete mode 100644 debian/upstream/signing-key.asc delete mode 100644 debian/watch diff --git a/Makefile b/Makefile index 42b7da5..af14fad 100755 --- a/Makefile +++ b/Makefile @@ -13,26 +13,19 @@ FILES_TO_SUBSTITUTE=$(wildcard */*.in) SUBSTITUTED_FILES=$(shell echo $(FILES_TO_SUBSTITUTE) | sed 's/\.in//g') package=mythtv-status -releases=sid -release=sid -# These variables are used by Andrew in a git checkout for packaging and releasing. +# Only try and find a git tag if we're running in a git checkout, and allow +# for the version to be overridden. ifneq ("$(wildcard .git)", "") -build=dpkg-buildpackage -rfakeroot -i'(.git|.gitignore|testing)*' -I.git -I.gitignore -Itesting -tc -kC603FC4E600F1CECD1C8D97C4B53D931E4D3E863 --changes-option=-S --changes-option=-sa ifeq ($(version),) version=$(shell git tag -l | grep '^[0-9]' | sort -t"." -k 1,1 -k 2,2 -k 3,3 -n | tail -1) endif -deb_version=$(shell git tag -l | grep ^debian-$(release)-[[:digit:]] | sed 's/debian-$(release)-//' | sort -t"." -k 1,1 -k 2,2 -k 3,3 -n | tail -1 | sed 's/@/~/') +endif -deb=$(package)_$(deb_version)_all.deb -orig_tarball=../$(package)_$(version).orig.tar.gz tarball=../build/tarball/$(package)-$(version).tar.gz tarball_dir=../$(package)_tarballs -DEBS=$(foreach release, $(releases), ../build/$(release)/$(deb)) - -RELEASE_FILES=$(orig_tarball) ../build/tarball/mythtv-status-${version}.tar.gz $(DEBS) -endif +RELEASE_FILES=$(tarball) TEST_VERBOSE=0 TEST_FILES=t/*.t @@ -42,43 +35,19 @@ dist: test release release: $(RELEASE_FILES) -$(orig_tarball): $(tarball) - @rm -f $@ - @ln -s `basename \`pwd\``/$< $@ - @ln -sf `basename \`pwd\``/$<.asc $@.asc - $(tarball): @mkdir -p $(@D) - @git archive --format=tar --prefix=$(package)-$(version)/ $(version) `git ls-tree --name-only $(version) | egrep -v "(.gitignore|debian|testing)"` | gzip > $(tarball) + @git archive --format=tar --prefix=$(package)-$(version)/ $(version) `git ls-tree --name-only $(version) | egrep -v "(.gitignore|testing)"` | gzip > $(tarball) @gpg -sb --armour $(tarball) -../build/$(release)/$(deb): $(orig_tarball) - @echo Building $(release) - @ssh -t build-$(release)-amd64 "cd `pwd`; $(build)" - @ssh build-$(release)-amd64 "cd `pwd`/..; /usr/bin/lintian -i -I $(package)_$(version)*.changes" || true - #@ssh build-$(release)-amd64 "cd `pwd`/..; /usr/bin/linda -i $(package)_$(version)*.changes" || true - @mkdir -p ../build/$(release) - @cp ../$(deb) \ - ../$(package)_$(deb_version)_*.changes \ - ../$(package)_$(deb_version)_*.buildinfo \ - ../$(package)_$(deb_version).dsc \ - ../$(package)_$(version).orig.tar.?z \ - ../$(package)_$(deb_version).debian.tar.?z \ - ../build/$(release) - $(SUBSTITUTED_FILES): $(FILES_TO_SUBSTITUTE) sed -e 's,@@BINDIR@@,$(BINDIR),g;s,@@VARLIBDIR@@,$(VARLIBDIR),g;s,@@LIBEXECDIR@@,$(LIBEXECDIR),g;s,@@SBINDIR@@,$(SBINDIR),g' $@.in > $@ publish: $(RELEASE_FILES) - for release in $(releases); do reprepro includedsc $$release ../build/$$release/$(package)_$(deb_version).dsc; done - for release in $(releases); do reprepro includedeb $$release ../build/$$release/$(package)_$(deb_version)_all.deb; done @cp $(tarball) $(tarball_dir) @chmod o+r $(tarball_dir)/*-$(version).* @ln -sf `basename $(tarball)` $(tarball_dir)/$(package)-latest.tar.gz -upload: $(RELEASE_FILES) - for release in $(releases); do cd ../build/$$release; dput $(package)_$(deb_version)*.changes; done - build: $(SUBSTITUTED_FILES) @touch build.stamp @@ -115,7 +84,4 @@ test: clean: @rm -rf build.stamp $(SUBSTITUTED_FILES) -clean_pkg: - @rm -f ../$(package)*.changes ../$(package)*.dsc ../$(package)*.tar.gz ../$(package)*.deb - .PHONY: release clean install test dist build diff --git a/debian/.gitignore b/debian/.gitignore deleted file mode 100644 index f45710b..0000000 --- a/debian/.gitignore +++ /dev/null @@ -1,7 +0,0 @@ -files -mythtv-status.1 -mythtv-status.postinst.debhelper -mythtv-status.postrm.debhelper -mythtv-status.prerm.debhelper -mythtv-status.substvars -mythtv-status diff --git a/debian/changelog b/debian/changelog deleted file mode 100644 index 3250850..0000000 --- a/debian/changelog +++ /dev/null @@ -1,486 +0,0 @@ -mythtv-status (1.2.0-1) UNRELEASED; urgency=medium - - * New upstream release. - * Refresh patch makefile-man-path.patch for Debian specific paths and - rename to makefile-debian-paths.patch. - * Upstream version control system is now accessible via HTTPS. - - -- Andrew Ruthven Thu, 27 Jul 2023 00:14:18 +1200 - -mythtv-status (1.1.0-1) unstable; urgency=medium - - * New upstream release. - * Drop 50-mythtv-status-exit-code.patch, applied upstream. - * Bump Standards-Version to 4.6.2 (no changes). - * Change d/rules to use dh sequencer. - * Refresh lintian overrides. - * Add build deps for running tests. - * Drop dependency on lsb-base, obsolete package. - * Drop versioned dependency on molly-guard, 0.4 was released in 2008. - * Move libmythtv-perl to be a Suggests, as it is doesn't exist in the - official Debian repo. - * Install systemd services and timers for regular tasks. - * Convert d/po/de.po to UTF-8. - * Refresh d/copyright. - - -- Andrew Ruthven Sun, 23 Jul 2023 00:16:49 +1200 - -mythtv-status (1.0.1-6.1) unstable; urgency=medium - - * Non-maintainer upload. - * No source change upload to rebuild with debhelper 13.10. - - -- Michael Biebl Sat, 15 Oct 2022 12:25:28 +0200 - -mythtv-status (1.0.1-6) unstable; urgency=medium - - * New upload to include the orig tarball and GPG signature. - - -- Andrew Ruthven Sat, 10 Apr 2021 16:54:07 +1200 - -mythtv-status (1.0.1-5) unstable; urgency=medium - - * Upstream is now generating GPG signatures of release tarballs. - * Allow the init script/service to fail on install/upgrade as there - may not be a MythTV backend reachable at installation time. - * Add Pre-Depends: ${misc:Pre-Depends} to d/control to ensure that - init-system-helpers is available. - * Install the systemd service file is installed and enabled. - * Override maintainer-manual-page lintian check as we build the man page - during build. - - -- Andrew Ruthven Sat, 10 Apr 2021 15:00:41 +1200 - -mythtv-status (1.0.1-4) unstable; urgency=medium - - * Source only upload. - - -- Andrew Ruthven Sat, 10 Apr 2021 01:38:29 +1200 - -mythtv-status (1.0.1-3) unstable; urgency=medium - - * Add support for autopkgtest - - -- Andrew Ruthven Fri, 09 Apr 2021 22:54:59 +1200 - -mythtv-status (1.0.1-2) unstable; urgency=medium - - * Update systemd service file to use -f with rm (Closes: #954734). - * Patch to ensure that 50-mythtv-status has exit code 0 if no status file - exists. - * Update copyright file to be machine readable. - * Add d/upstream/metadata file. - * Update standards version to 4.5.1 and debhelper to 13. - * Set Rules-Requires-Root: no in d/control - * Bump d/watch to version 4. - - -- Andrew Ruthven Thu, 08 Apr 2021 23:01:48 +1200 ->>>>>>> release-1.0.1-debian - -mythtv-status (1.0.1-1) unstable; urgency=low - - * New upstream release. - - -- Andrew Ruthven Sun, 27 Jan 2019 00:45:18 +1300 - -mythtv-status (1.0.0-1) unstable; urgency=medium - - * New upstream release (Closes: #853857). - * Install a snippet into /etc/update-motd.d (Closes: #902684). - * Update standards version to 4.3.0. - * Ship a systemd service file (Closes: #772801) - * Rename RUN and ARGS in /etc/default/mythtv-status to be more - specific, since this file is used by a couple of different scripts. - * Switch from /var/run to /run. - - -- Andrew Ruthven Tue, 15 Jan 2019 00:10:52 +1300 - -mythtv-status (0.10.8-1) unstable; urgency=low - - * New upstream release. - * Brazilian Portuguese debconf translation from Adriano Rafael Gomes. - (Closes: #816938) - * Update standards version to 3.9.8. - * Bump debhelper compatibility to 10. - * Clean up some lintian errors and warnings, suppress VCS tags for now. - - -- Andrew Ruthven Thu, 26 Jan 2017 12:25:45 +1300 - -mythtv-status (0.10.7-1) unstable; urgency=low - - * New upstream release (Closes: #772801). - - -- Andrew Ruthven Sat, 10 Jan 2015 15:56:21 +1300 - -mythtv-status (0.10.6-1) unstable; urgency=low - - * New upstream release. - * Brings in a minor change that was on master, but missed from the - release-0.10 git branch. - * Update standards version to 3.9.6. - - -- Andrew Ruthven Fri, 05 Dec 2014 10:17:37 +1300 - -mythtv-status (0.10.5-1) unstable; urgency=low - - * New upstream release (Closes: #729400). - * Fix sending emails with UTF-8 characters in them with Perl >= 5.18. - * Fix removing "0 hours" from Next Recording In if the hour is a multiple - of 10. - - -- Andrew Ruthven Tue, 02 Dec 2014 20:29:13 +1300 - -mythtv-status (0.10.4-1) unstable; urgency=low - - * New upstream release (Closes: #724166, #709377, #709449). - * Remove an extraneous hypen in our postinst (Cloases: #704436) - Thank you Francois Marier for the patch. - * Update standards version to 3.9.4, remove obsolete control field - - -- Andrew Ruthven Mon, 28 Oct 2013 23:03:44 +1300 - -mythtv-status (0.10.3-1) unstable; urgency=low - - * New upstream release (Closes: LP#1096252). - - -- Andrew Ruthven Tue, 29 Jan 2013 16:37:53 +1300 - -mythtv-status (0.10.2-3) unstable; urgency=low - - * Fix the use of motd as a facility name, shouldn't be $motd. - Reported by Julian Cristau, thank you. - * Don't abort the init.d if we can't remove /var/run/motd.orig. - - -- Andrew Ruthven Thu, 20 Dec 2012 10:29:31 +1300 - -mythtv-status (0.10.2-2) unstable; urgency=low - - * Handle a stale temp file more gracefully (Closes: #681684) - * base-files 6.11 in Wheezy uses /var/run/motd.dynamic (Closes: #688034) - - -- Andrew Ruthven Tue, 02 Oct 2012 21:50:10 +1300 - -mythtv-status (0.10.2-1) unstable; urgency=low - - * New upstream release. (Closes: #680358) - * Danish debconf translation from Joe Dalton. (Closes: #680372) - - -- Andrew Ruthven Sat, 07 Jul 2012 16:32:46 +1200 - -mythtv-status (0.10.1-1) unstable; urgency=low - - * New upstream release. - - -- Andrew Ruthven Thu, 14 Jun 2012 23:06:11 +1200 - -mythtv-status (0.10.0-1) unstable; urgency=low - - * New upstream release. - * Make sure we clean up /etc/default/mythtv-status on purge (Closes: #656224) - * Dutch debconf translation from Jeroen Schot (Closes: #675450) - * Bump Standards-Version to 3.9.3. - * Add build-indep and build-arch to debian/rules. - * Add a watch file. - - -- Andrew Ruthven Thu, 14 Jun 2012 12:45:37 +1200 - -mythtv-status (0.9.6-1) unstable; urgency=low - - * New upstream release. - - -- Andrew Ruthven Thu, 03 Mar 2011 23:42:13 +1300 - -mythtv-status (0.9.5-1) unstable; urgency=low - - * New upstream release. - * Set the Date::Manip mode to version 5 now (Closes: #603792) - - -- Andrew Ruthven Wed, 01 Dec 2010 11:25:12 +1300 - -mythtv-status (0.9.4-1) unstable; urgency=low - - * New upstream release. - * Bump Standards-Version to 3.9.1. - - -- Andrew Ruthven Mon, 09 Aug 2010 10:18:22 +1200 - -mythtv-status (0.9.3-1) unstable; urgency=low - - * New upstream release. - * Source version 3.0 (quilt). - * Bump Standards-Version to 3.8.4. - * Spanish debconf translation from Omar Campagne (Closes: #583657). - - -- Andrew Ruthven Mon, 31 May 2010 14:54:07 +1200 - -mythtv-status (0.9.2-3) unstable; urgency=low - - * Japanese debconf translation from Hideki Yamane (Closes: #558070). - - -- Andrew Ruthven Thu, 10 Dec 2009 12:56:55 +1300 - -mythtv-status (0.9.2-2) unstable; urgency=low - - * Add in a missing dependency on libconfig-auto-perl. - * Basque debconf translation from Piarres Beobide (Closes: #539906). - * Czech debconf translation from Martin Šín (Closes: #535914). - * Russian debconf translation from Yuri Kozlov (Closes: #546347). - * Correct the init.d dependencies from Petter Reinholdtsen (Closes: #547558). - * Bump to Standards-Version 3.8.3. - * Disable the watch file for now. - * Update Debian copyright file. - - -- Andrew Ruthven Sat, 03 Oct 2009 20:15:04 +1300 - -mythtv-status (0.9.2-1) unstable; urgency=low - - * New upstream release. - - -- Andrew Ruthven Fri, 22 May 2009 09:10:50 +1200 - -mythtv-status (0.9.1-1) unstable; urgency=low - - * New upstream release. - - -- Andrew Ruthven Thu, 30 Oct 2008 14:13:50 +1300 - -mythtv-status (0.9.0-6) unstable; urgency=low - - * Swedish debconf translation from Martin Bagge (Closes: #506599). - * Add a status to the init.d file. - - -- Andrew Ruthven Sun, 23 Nov 2008 13:29:52 +1300 - -mythtv-status (0.9.0-5) unstable; urgency=medium - - * Update init.d with feedback from Adeodato Simó. - - -- Andrew Ruthven Sat, 08 Nov 2008 10:49:01 +1300 - -mythtv-status (0.9.0-4) unstable; urgency=medium - - * It turns out that release 0.9.1 of mythtv-status snuck into - the 0.9.0-2 upload, back that out for now. - - -- Andrew Ruthven Thu, 30 Oct 2008 13:55:01 +1300 - -mythtv-status (0.9.0-3) unstable; urgency=medium - - * If someone has removed /var/run/motd then tries to install (or - reinstall) this package, then it fails. We should make sure that - doesn't happen by making sure that /var/run/motd exists. - * Provide some sanity checking before updating the MOTD file in - the init.d script to make sure that mythtv-status didn't die. - - -- Andrew Ruthven Tue, 28 Oct 2008 15:12:02 +1300 - -mythtv-status (0.9.0-2) unstable; urgency=low - - * The init.d script shouldn't check the return code anymore, as the - return code may be 1 if there are any warnings present. This - has been stopping the MOTD from being updated. - - -- Andrew Ruthven Mon, 26 Sep 2008 09:16:53 +1200 - -mythtv-status (0.9.0-1) unstable; urgency=low - - * New upstream release. - * Add DM-Upload-Allowed field as I'm now a DM. - * Upstream license has changed to GPL3. - - -- Andrew Ruthven Fri, 11 Jul 2008 10:14:20 +1200 - -mythtv-status (0.8.1-3) unstable; urgency=low - - * A number of small changes to the /etc/default/mythtv-status file - to make it clearer which script uses which settings. - * Thank you to Tom Metro for the above suggestion. - * Fix the handling of EMAIL_ARGS in the postinst to honour it being - unset. Thank you to Tom for reporting the issue. - * Not uploaded to Debian. - - -- Andrew Ruthven Sat, 5 Jul 2008 21:15:00 +1200 - -mythtv-status (0.8.1-2) unstable; urgency=low - - * Make sure that variables in /etc/default/mythtv-status that might - have spaces in them are handled correctly in the postinst. - - -- Andrew Ruthven Mon, 23 Jun 2008 14:27:29 +1200 - -mythtv-status (0.8.1-1) unstable; urgency=low - - * New upstream release. - - -- Andrew Ruthven Thu, 19 Jun 2008 12:26:27 +1200 - -mythtv-status (0.8.0-2) unstable; urgency=low - - * Stop run-parts in the cron.daily script from complaining if mythtv-status - returns an exit code of 1 (which is common). - - -- Andrew Ruthven Thu, 19 Jun 2008 11:09:04 +1200 - -mythtv-status (0.8.0-1) unstable; urgency=low - - * New upstream release. - * Update Standards-Version to 3.8.0. - * Change dependency on libmime-perl to libmime-tools-perl. - - -- Andrew Ruthven Wed, 18 Jun 2008 12:46:48 +1200 - -mythtv-status (0.7.4-1) unstable; urgency=low - - * New upstream release (not uploaded to Debian). - - -- Andrew Ruthven Fri, 23 May 2008 09:31:39 +1200 - -mythtv-status (0.7.3-2) unstable; urgency=low - - * The cron.daily file should honour the HOST setting in - /etc/default/mythtv-status (Closes: #475106) - * Remove two bogus space charaters in the output from the init.d script. - - -- Andrew Ruthven Wed, 09 Apr 2008 14:29:30 +1200 - -mythtv-status (0.7.3-1) unstable; urgency=low - - * New upstream release. - - -- Andrew Ruthven Tue, 11 Mar 2008 14:19:49 +1300 - -mythtv-status (0.7.2-1) unstable; urgency=low - - * New upstream release. - - -- Andrew Ruthven Fri, 7 Mar 2008 08:31:47 +1300 - -mythtv-status (0.7.1-3) unstable; urgency=low - - * Fix a typo in the init.d output, Stoping should be Stopping. - - -- Andrew Ruthven Fri, 8 Feb 2008 15:36:56 +1300 - -mythtv-status (0.7.1-2) unstable; urgency=low - - * Bump debhelper compatibility to 6 - * Add German translation (Closes: #463429) - * Not uploaded to Debian. - - -- Andrew Ruthven Mon, 4 Feb 2008 10:51:49 +1300 - -mythtv-status (0.7.1-1) unstable; urgency=low - - * New upstream release. - - -- Andrew Ruthven Thu, 24 Jan 2008 08:17:33 +1300 - -mythtv-status (0.7.0-1) unstable; urgency=low - - * New upstream release. - - -- Andrew Ruthven Sun, 20 Jan 2008 10:17:29 +1300 - -mythtv-status (0.6.2-1) unstable; urgency=low - - * New upstream release. - * Update debconf templates to reflect the fact that emails are sent out - for alerts now, not just conflicts (this feature was added in 0.6.0). - + Updated French translation from Franciois Marier. - + Updated Portuguese translation from Américo Monteiro. - - -- Andrew Ruthven Wed, 26 Dec 2007 22:36:45 +1300 - -mythtv-status (0.6.1-1) unstable; urgency=low - - * New upstream release. - - -- Andrew Ruthven Thu, 13 Dec 2007 12:19:14 +1300 - -mythtv-status (0.6.0-1) unstable; urgency=low - - * New upstream release. - * Remove empty usr/sbin from dirs, thanks lintian. - * Move the packaging rules into binary-indep (section 4.9) - * mythtv-perl in debian-multimedia.org has been renamed to libmythtv-perl. - - -- Andrew Ruthven Tue, 12 Dec 2007 06:46:56 +1300 - -mythtv-status (0.5.3-1) unstable; urgency=low - - * New upstream release. - * Bump to Standards-Version 3.7.3. - - -- Andrew Ruthven Thu, 6 Dec 2007 14:55:22 +1300 - -mythtv-status (0.5.2-2) unstable; urgency=low - - * The 3rd party mythtv-backend for Debian uses an init ordering of 24 now - (not 20 as on my system) and in KnoppMyth it uses 50. So change - mythtv-status to use 51. - * Not uploaded to Debian. - - -- Andrew Ruthven Mon, 3 Dec 2007 06:41:22 +1300 - -mythtv-status (0.5.2-1) unstable; urgency=low - - * New upstream release. - - -- Andrew Ruthven Fri, 30 Nov 2007 09:54:03 +1300 - -mythtv-status (0.5.1-2) unstable; urgency=low - - * Updated Portuguese translation from Miguel Figueiredo (Closes: #451821) - - -- Andrew Ruthven Mon, 26 Nov 2007 12:09:32 +1300 - -mythtv-status (0.5.1-1) unstable; urgency=low - - * New upstream release. - * Make the new debconf questions lintian clean. - * Updated French translation from Francois Marier. - - -- Andrew Ruthven Fri, 23 Nov 2007 11:37:15 +1300 - -mythtv-status (0.5-1) unstable; urgency=low - - * New upstream release. - * Allow defining arguments in /etc/default/mythtv-status for use in the - init.d script. - * Minor cleanups to the init.d script. - * Add Portuguese translation from Américo Monteiro. (Closes: #451821) - - -- Andrew Ruthven Sun, 18 Nov 2007 10:17:09 +1300 - -mythtv-status (0.4-1) unstable; urgency=low - - [ Andrew Ruthven ] - * No longer ship mythtv-update-motd. - * Allow displaying the description and episode title for programs. - * Cleanup the wording of the package descriptions. - - [ Francois Marier ] - * Many fixes to the Debian packaging to make lintian happy. - * Check that script is executable before using it in cron. - * Use po-debconf and add a French translation. - * Upload to unstable (closes: #451442) - - -- Andrew Ruthven Fri, 16 Nov 2007 14:16:15 +1300 - -mythtv-status (0.3-1) unstable; urgency=low - - * Add additional recorder states and display if an encoder is not connected. - - -- Andrew Ruthven Fri, 16 Nov 2007 07:35:47 +1300 - -mythtv-status (0.2-1) unstable; urgency=low - - * Minor changes to documentation. - - -- Andrew Ruthven Wed, 14 Nov 2007 21:50:24 +1300 - -mythtv-status (0.1-1) unstable; urgency=low - - * Initial Release. - - -- Andrew Ruthven Sat, 13 Oct 2007 14:23:33 +1300 diff --git a/debian/config b/debian/config deleted file mode 100644 index 817ce98..0000000 --- a/debian/config +++ /dev/null @@ -1,34 +0,0 @@ -#!/bin/sh - -PACKAGE=mythtv-status - -CONFIGFILE=/etc/default/$PACKAGE -set -e -. /usr/share/debconf/confmodule - -# Load config file, if it exists. -if [ -e $CONFIGFILE ]; then - . $CONFIGFILE || true - - - # Store values from config file into - # debconf db. - - if [ "x$RUN" != "x" ] - then - db_set $PACKAGE/enable $RUN - fi - if [ "x$UPDATE_MOTD" != "x" ] - then - db_set $PACKAGE/enable $UPDATE_MOTD - fi - db_set $PACKAGE/host $HOST - db_set $PACKAGE/email $EMAIL - -fi - -# Ask questions. -db_input medium $PACKAGE/host || true -db_input medium $PACKAGE/enable || true -db_input medium $PACKAGE/email || true -db_go diff --git a/debian/control b/debian/control deleted file mode 100644 index 71cfc9b..0000000 --- a/debian/control +++ /dev/null @@ -1,42 +0,0 @@ -Source: mythtv-status -Section: misc -Priority: optional -Maintainer: Andrew Ruthven -Build-Depends: debhelper-compat (= 13) -Build-Depends-Indep: - libdate-manip-perl , - libmime-tools-perl , - libwww-perl , - libxml-libxml-perl , - perl, - po-debconf, -Standards-Version: 4.6.2 -Homepage: http://www.etc.gen.nz/projects/mythtv/mythtv-status.html -Vcs-Git: https://git.etc.gen.nz/mythtv-status.git -Vcs-Browser: https://git.etc.gen.nz/cgi-bin/gitweb.cgi?p=mythtv-status.git;a=summary -Rules-Requires-Root: no -Testsuite: autopkgtest-pkg-perl - -Package: mythtv-status -Architecture: all -Depends: ${misc:Depends}, - ${perl:Depends}, - libdate-manip-perl, - libmime-tools-perl, - libwww-perl, - libxml-libxml-perl -Pre-Depends: ${misc:Pre-Depends} -Suggests: - libconfig-auto-perl, - libmythtv-perl, - libnet-upnp-perl, - molly-guard -Recommends: - libsys-sigaction-perl -Description: Show the status of a MythTV backend - Shows the current status of a local or remote MythTV backend and up to - the next 10 recordings for today and tomorrow. - . - Also provides functionality for updating the MOTD with this information, - this can provide a good heads up on when you should avoid heavy CPU or - I/O work on your MythTV backend. diff --git a/debian/copyright b/debian/copyright deleted file mode 100644 index 4b22f40..0000000 --- a/debian/copyright +++ /dev/null @@ -1,29 +0,0 @@ -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Source: http://www.etc.gen.nz/projects/mythtv/tarballs/ -Upstream-Contact: Andrew Ruthven -Upstream-Name: mythtv-status - -Files: * -Copyright: 2007-2025, Andrew Ruthven -License: GPL-3 - -Files: debian/* -Copyright: 2007-2025, Andrew Ruthven -License: GPL-2+ - -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, or (at your option) - any later version. - . - On Debian systems, the complete text of version 2 of the GNU General - Public License can be found in `/usr/share/common-licenses/GPL-2'. - -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; version 3. - . - On Debian systems, the complete text of version 3 of the GNU General - Public License can be found in `/usr/share/common-licenses/GPL-3'. diff --git a/debian/cron.d b/debian/cron.d deleted file mode 100644 index 9370fa4..0000000 --- a/debian/cron.d +++ /dev/null @@ -1,4 +0,0 @@ -# -# Regular cron jobs for the mythtv-status package -# -*/10 * * * * root [ -x /usr/sbin/mythtv-update-motd ] && [ ! -d /run/systemd/system ] && /usr/sbin/mythtv-update-motd > /dev/null diff --git a/debian/cron.daily b/debian/cron.daily deleted file mode 100644 index 9b5f8e4..0000000 --- a/debian/cron.daily +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/sh - -# Skip in favour of systemd timer -[ -d /run/systemd/system ] && exit 0 - -# Common script shared with the systemd service to perform a health -# check of the MythTV system.. -[ -x /usr/libexec/mythtv-status/health-check ] \ - && /usr/libexec/mythtv-status/health-check - -# Keep run-parts happy by always returning with a return code of 0. -exit 0 diff --git a/debian/dirs b/debian/dirs deleted file mode 100644 index ef744dd..0000000 --- a/debian/dirs +++ /dev/null @@ -1,3 +0,0 @@ -var/lib/mythtv-status -etc/molly-guard/run.d -etc/update-motd.d diff --git a/debian/docs b/debian/docs deleted file mode 100644 index 5b97370..0000000 --- a/debian/docs +++ /dev/null @@ -1,2 +0,0 @@ -README -FAQ diff --git a/debian/format b/debian/format deleted file mode 100644 index 163aaf8..0000000 --- a/debian/format +++ /dev/null @@ -1 +0,0 @@ -3.0 (quilt) diff --git a/debian/init.d b/debian/init.d deleted file mode 100644 index fb21445..0000000 --- a/debian/init.d +++ /dev/null @@ -1,114 +0,0 @@ -#!/bin/sh -# -# Copyright (c) 2007 Javier Fernandez-Sanguino -# Copyright (c) 2007-2025 Andrew Ruthven -# -# This is free software; you may 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, -# or (at your option) any later version. -# -# This 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 with -# the Debian operating system, in /usr/share/common-licenses/GPL; if -# not, write to the Free Software Foundation, Inc., 59 Temple Place, -# Suite 330, Boston, MA 02111-1307 USA -# -### BEGIN INIT INFO -# Provides: mythtv-status -# Required-Start: $remote_fs -# Required-Stop: $remote_fs -# Should-Start: $named mythtv-backend motd -# Should-Stop: $named mythtv-backend motd -# Default-Start: 2 3 4 5 -# Default-Stop: 0 1 6 -# Short-Description: Update the MOTD with the MythTV status -# Description: Update the MOTD with the MythTV status -### END INIT INFO - -PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin - -DAEMON=/usr/bin/mythtv-status # Introduce the server's location here -NAME=mythtv-status # Introduce the short server's name here -DESC="MythTV Status" # Introduce a short description here -TEMPFILE=/run/motd.mythtv-status -WORKFILE=/run/motd -DISABLED_FLAG=/var/lib/mythtv-status/motd_update_disabled - -test -x $DAEMON || exit 0 - -. /lib/lsb/init-functions - -# Include defaults if available -if [ -f /etc/default/$NAME ] ; then - . /etc/default/$NAME -fi - -# Support the old RUN variable -[ x$UPDATE_MOTD = x ] && UPDATE_MOTD=$RUN - -# Use this if you want the user to explicitly set 'UPDATE_MOTD' in -# /etc/default/mythtv-status -if [ "x$UPDATE_MOTD" != "xyes" ] ; then - log_failure_msg "$NAME disabled, please adjust the configuration to your needs " - log_failure_msg "and then set UPDATE_MOTD to 'yes' in /etc/default/$NAME to enable it." - exit -fi - -# Debian Wheezy+ handles the MOTD differently. -[ -f /run/motd.dynamic ] && WORKFILE=/run/motd.dynamic - -set -e - -case "$1" in - start|reload|refresh|restart|force-reload) - log_daemon_msg "Updating $DESC" "$NAME" - - rm $DISABLED_FLAG 2> /dev/null || true - if ! /usr/sbin/mythtv-update-motd; then - log_failure_msg "Failed to update MOTD" - exit 1 - - fi - - log_end_msg 0 - ;; - stop) - log_daemon_msg "Stopping $DESC" "$NAME" - touch $DISABLED_FLAG - [ -f /run/motd.orig ] && cp /run/motd.orig $WORKFILE - rm /run/motd.orig 2> /dev/null || true - rm $TEMPFILE 2> /dev/null || true - log_end_msg 0 - ;; - status) - if [ -f $DISABLED_FLAG ]; then - log_failed "$NAME is not running (disabled by flag file: $DISABLED_FLAG)" - exit 1 - fi - if [ ! -f $WORKFILE ]; then - log_failure_msg "$NAME is not running (no motd file)!" - exit 1 - fi - if [ $(date -d "15 minutes ago" +"%s") -gt $(stat -c "%Y" $WORKFILE) ] - then - log_failure_msg "$NAME is not running (motd file is stale)" - exit 1 - fi - - # If all tests have passed, then we must be running. - log_success_msg "$NAME is running" - exit 0 - ;; - *) - N=/etc/init.d/$NAME - echo "Usage: $N {start|stop|reload|refresh|status}" >&2 - exit 1 - ;; -esac - -exit 0 diff --git a/debian/install b/debian/install deleted file mode 100644 index 1d53121..0000000 --- a/debian/install +++ /dev/null @@ -1 +0,0 @@ -debian/lintian/overrides/mythtv-status usr/share/lintian/overrides diff --git a/debian/lintian/overrides/mythtv-status b/debian/lintian/overrides/mythtv-status deleted file mode 100644 index d46c2d9..0000000 --- a/debian/lintian/overrides/mythtv-status +++ /dev/null @@ -1,4 +0,0 @@ -# Lintian fails to find that these are used. -unused-debconf-template mythtv-status/host * -unused-debconf-template mythtv-status/enable * -unused-debconf-template mythtv-status/email * diff --git a/debian/patches/makefile-debian-paths.patch b/debian/patches/makefile-debian-paths.patch deleted file mode 100644 index e34ce02..0000000 --- a/debian/patches/makefile-debian-paths.patch +++ /dev/null @@ -1,21 +0,0 @@ -Description: Use Debian paths -Author: Andrew Ruthven -Forwarded: not-needed -Last-Update: 2023-07-16 ---- -This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ ---- a/Makefile -+++ b/Makefile -@@ -2,10 +2,10 @@ - - BINDIR=$(DESTDIR)/usr/bin - LIBEXECDIR=$(DESTDIR)/usr/libexec/mythtv-status --MANDIR=$(DESTDIR)/usr/man -+MANDIR=$(DESTDIR)/usr/share/man - MOLLY_GUARDDIR=$(DESTDIR)/etc/molly-guard/run.d - SBINDIR=$(DESTDIR)/usr/sbin --SYSTEMDDIR=$(DESTDIR)/usr/lib/systemd/system -+SYSTEMDDIR=$(DESTDIR)/lib/systemd/system - UPDATE_MOTDDIR=$(DESTDIR)/etc/update-motd.d - - package=mythtv-status diff --git a/debian/patches/series b/debian/patches/series deleted file mode 100644 index 5a81895..0000000 --- a/debian/patches/series +++ /dev/null @@ -1 +0,0 @@ -#makefile-debian-paths.patch diff --git a/debian/po/POTFILES.in b/debian/po/POTFILES.in deleted file mode 100644 index cef83a3..0000000 --- a/debian/po/POTFILES.in +++ /dev/null @@ -1 +0,0 @@ -[type: gettext/rfc822deb] templates diff --git a/debian/po/cs.po b/debian/po/cs.po deleted file mode 100644 index 6e8d2ac..0000000 --- a/debian/po/cs.po +++ /dev/null @@ -1,91 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the mythtv-status package. -# Martin Sin , 2009. -# -msgid "" -msgstr "" -"Project-Id-Version: mythtv-status 0.9.0-5\n" -"Report-Msgid-Bugs-To: andrew@etc.gen.nz\n" -"POT-Creation-Date: 2007-12-25 13:20+1300\n" -"PO-Revision-Date: 2009-07-06 04:15+0200\n" -"Last-Translator: Martin Sin \n" -"Language-Team: Czech \n" -"Language: cs\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#. Type: string -#. Description -#: ../templates:1001 -msgid "MythTV backend to check:" -msgstr "Backend MythTV ke kontrole:" - -#. Type: string -#. Description -#: ../templates:1001 -msgid "" -"The MythTV backend to check, you only need to change this if you want to " -"check a different host." -msgstr "" -"Backend MythTV ke kontrole, mění se pouze pokud chcete zkontrolovat jiný " -"počítač." - -#. Type: boolean -#. Description -#: ../templates:2001 -msgid "Update the system MOTD?" -msgstr "Aktualizovat systémovou MOTD?" - -#. Type: boolean -#. Description -#: ../templates:2001 -msgid "" -"Whether the Message of the Day should be updated on system boot and on a " -"regular basis." -msgstr "" -"Zda se má pravidelně aktualizovat MOTD (Message of the Day = zpráva dne) při " -"startu systému." - -#. Type: boolean -#. Description -#: ../templates:2001 -msgid "" -"To adjust how often the MOTD is updated, edit /etc/cron.d/mythtv-status." -msgstr "" -"Pro nastavení jak často se má MOTD aktualizovat upravte /etc/cron.d/mythtv-" -"status." - -#. Type: string -#. Description -#: ../templates:3001 -msgid "Send email status to:" -msgstr "Poslat stavový email na:" - -#. Type: string -#. Description -#: ../templates:3001 -msgid "Status emails can be sent on a daily basis." -msgstr "Email se stavem je možno posílat pravidelně každý den." - -#. Type: string -#. Description -#: ../templates:3001 -msgid "" -"By default an email is only sent if there are alerts. You must have the " -"MythTV Perl API installed for conflict alerts to be generated." -msgstr "" -"Ve výchozím nastavení je email posílán pouze v případě nějakého problému. " -"Pro generování upozornění o konfliktech je potřeba nainstalovat také API " -"MythTV Perl." - -#. Type: string -#. Description -#: ../templates:3001 -msgid "" -"To disable set the email address to \"none\". To specify multiple email " -"addresses, seperate them with a comma." -msgstr "" -"Pro vypnutí zasílání zpráv nastavte emailovou adresu na „none“. Více adres " -"oddělte pomocí čárky." diff --git a/debian/po/da.po b/debian/po/da.po deleted file mode 100644 index 25830bf..0000000 --- a/debian/po/da.po +++ /dev/null @@ -1,90 +0,0 @@ -# Danish translation mythtv-status. -# Copyright (C) 2012 mythtv-status & nedenstående oversættere. -# This file is distributed under the same license as the mythtv-status package. -# Joe Hansen , 2012. -# -msgid "" -msgstr "" -"Project-Id-Version: mythtv-status\n" -"Report-Msgid-Bugs-To: andrew@etc.gen.nz\n" -"POT-Creation-Date: 2007-12-25 13:20+1300\n" -"PO-Revision-Date: 2012-07-05 17:30+01:00\n" -"Last-Translator: Joe Hansen \n" -"Language-Team: Danish \n" -"Language: da\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#. Type: string -#. Description -#: ../templates:1001 -msgid "MythTV backend to check:" -msgstr "MythTV-motor der skal kontrolleres:" - -#. Type: string -#. Description -#: ../templates:1001 -msgid "" -"The MythTV backend to check, you only need to change this if you want to " -"check a different host." -msgstr "" -"MythTV-motoren der skal kontrolleres, du skal kun ændre dette, hvis du " -"ønsker at kontrollere en anden vært." - -#. Type: boolean -#. Description -#: ../templates:2001 -msgid "Update the system MOTD?" -msgstr "Opdater Dagens besked for systemet?" - -#. Type: boolean -#. Description -#: ../templates:2001 -msgid "" -"Whether the Message of the Day should be updated on system boot and on a " -"regular basis." -msgstr "" -"Hvorvidt Dagens besked skal opdateres ved systemopstart og løbende." - -#. Type: boolean -#. Description -#: ../templates:2001 -msgid "" -"To adjust how often the MOTD is updated, edit /etc/cron.d/mythtv-status." -msgstr "" -"For at justere hvor ofte Dagens besked opdateres, så rediger /etc/cron.d/" -"mythtv-status." - -#. Type: string -#. Description -#: ../templates:3001 -msgid "Send email status to:" -msgstr "Send e-post-status til:" - -#. Type: string -#. Description -#: ../templates:3001 -msgid "Status emails can be sent on a daily basis." -msgstr "Status-e-post kan sendes dagligt." - -#. Type: string -#. Description -#: ../templates:3001 -msgid "" -"By default an email is only sent if there are alerts. You must have the " -"MythTV Perl API installed for conflict alerts to be generated." -msgstr "" -"Som standard sendes en e-post kun hvis der er alarmer. Du skal have " -"MythTV Perl API'en installeret for at konfliktalarmer bliver oprettet." - -#. Type: string -#. Description -#: ../templates:3001 -msgid "" -"To disable set the email address to \"none\". To specify multiple email " -"addresses, seperate them with a comma." -msgstr "" -"For at deaktivere så angiv e-post-adressen til »none« (ingen). For at angive " -"flere e-post-adresser så adskil dem med et komma." - diff --git a/debian/po/de.po b/debian/po/de.po deleted file mode 100644 index 4f7c314..0000000 --- a/debian/po/de.po +++ /dev/null @@ -1,90 +0,0 @@ -# Translation of mythtv-status debconf templates to German -# Copyright (C) Helge Kreutzmann , 2008. -# This file is distributed under the same license as the mythtv-status package. -# -msgid "" -msgstr "" -"Project-Id-Version: mythtv-status 0.6.2-1\n" -"Report-Msgid-Bugs-To: andrew@etc.gen.nz\n" -"POT-Creation-Date: 2007-12-25 13:20+1300\n" -"PO-Revision-Date: 2008-01-27 23:14+0100\n" -"Last-Translator: Helge Kreutzmann \n" -"Language-Team: German \n" -"Language: de\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=ISO-8859-15\n" -"Content-Transfer-Encoding: 8bit\n" - -#. Type: string -#. Description -#: ../templates:1001 -msgid "MythTV backend to check:" -msgstr "Zu prüfendes MythTV-Backend:" - -#. Type: string -#. Description -#: ../templates:1001 -msgid "" -"The MythTV backend to check, you only need to change this if you want to " -"check a different host." -msgstr "" -"Das zu prüfende MythTV-Backend. Sie müssen dies nur ändern, falls Sie einen " -"anderen Rechner prüfen wollen." - -#. Type: boolean -#. Description -#: ../templates:2001 -msgid "Update the system MOTD?" -msgstr "Die MOTD des Systems aktualisieren?" - -#. Type: boolean -#. Description -#: ../templates:2001 -msgid "" -"Whether the Message of the Day should be updated on system boot and on a " -"regular basis." -msgstr "" -"Entscheiden Sie, ob die Nachricht des Tages (»Message of the Day«) beim " -"Systemstart und auf regelmäßiger Basis aktualisiert werden soll." - -#. Type: boolean -#. Description -#: ../templates:2001 -msgid "" -"To adjust how often the MOTD is updated, edit /etc/cron.d/mythtv-status." -msgstr "" -"Bearbeiten Sie die Datei /etc/cron.d/mythtv-status, um einzustellen, wie oft " -"die MOTD aktualisiert werden soll." - -#. Type: string -#. Description -#: ../templates:3001 -msgid "Send email status to:" -msgstr "Verschicke E-Mail-Status an:" - -#. Type: string -#. Description -#: ../templates:3001 -msgid "Status emails can be sent on a daily basis." -msgstr "Es können tägliche Status-E-Mails versendet werden." - -#. Type: string -#. Description -#: ../templates:3001 -msgid "" -"By default an email is only sent if there are alerts. You must have the " -"MythTV Perl API installed for conflict alerts to be generated." -msgstr "" -"Standardmäßig wird nur bei Störungen eine E-Mail versandt. Damit bei " -"Konflikten Warnungen erzeugt werden, müssen Sie das MythTV-Perl-API " -"installiert haben." - -#. Type: string -#. Description -#: ../templates:3001 -msgid "" -"To disable set the email address to \"none\". To specify multiple email " -"addresses, seperate them with a comma." -msgstr "" -"Zum Deaktivieren setzen Sie die E-Mail-Adresse auf »none«. Mehrere E-Mail-" -"Adressen werden durch Kommata getrennt." diff --git a/debian/po/es.po b/debian/po/es.po deleted file mode 100644 index ea5f7b9..0000000 --- a/debian/po/es.po +++ /dev/null @@ -1,116 +0,0 @@ -# mythtv-status po-debconf translation to Spanish -# Copyright (C) 2010 Software in the Public Interest -# This file is distributed under the same license as the mythtv-status package. -# -# Changes: -# - Initial translation -# Omar Campagne , 2010 -# -# - Updates -# TRANSLATOR -# -# Traductores, si no conocen el formato PO, merece la pena leer la -# documentación de gettext, especialmente las secciones dedicadas a este -# formato, por ejemplo ejecutando: -# info -n '(gettext)PO Files' -# info -n '(gettext)Header Entry' -# -# Equipo de traducción al español, por favor lean antes de traducir -# los siguientes documentos: -# -# - El proyecto de traducción de Debian al español -# http://www.debian.org/intl/spanish/ -# especialmente las notas y normas de traducción en -# http://www.debian.org/intl/spanish/notas -# -# - La guía de traducción de po's de debconf: -# /usr/share/doc/po-debconf/README-trans -# o http://www.debian.org/intl/l10n/po-debconf/README-trans -# -msgid "" -msgstr "" -"Project-Id-Version: mythtv-status\n" -"Report-Msgid-Bugs-To: andrew@etc.gen.nz\n" -"POT-Creation-Date: 2007-12-25 13:20+1300\n" -"PO-Revision-Date: 2010-05-19 18:50+0200\n" -"Last-Translator: Omar Campagne \n" -"Language-Team: Debian l10n Spanish \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#. Type: string -#. Description -#: ../templates:1001 -msgid "MythTV backend to check:" -msgstr "Módulo de MythTV a comprobar:" - -#. Type: string -#. Description -#: ../templates:1001 -msgid "" -"The MythTV backend to check, you only need to change this if you want to " -"check a different host." -msgstr "" -"El módulo de MythTV a comprobar. Sólo necesita cambiar esto si desea " -"comprobar otro sistema." - -#. Type: boolean -#. Description -#: ../templates:2001 -msgid "Update the system MOTD?" -msgstr "¿Desea actualizar el mensaje del día del sistema?" - -#. Type: boolean -#. Description -#: ../templates:2001 -msgid "" -"Whether the Message of the Day should be updated on system boot and on a " -"regular basis." -msgstr "" -"Si el mensaje del día se debería actualizar al iniciar el sistema y de forma " -"regular." - -#. Type: boolean -#. Description -#: ../templates:2001 -msgid "" -"To adjust how often the MOTD is updated, edit /etc/cron.d/mythtv-status." -msgstr "" -"Edite «/etc/cron.d/mythtv-status» para definir la regularidad de las " -"actualizaciones de mensajes del día." - -#. Type: string -#. Description -#: ../templates:3001 -msgid "Send email status to:" -msgstr "Enviar correo electrónico de estado a:" - -#. Type: string -#. Description -#: ../templates:3001 -msgid "Status emails can be sent on a daily basis." -msgstr "Se pueden enviar correos electrónicos de estado diariamente." - -#. Type: string -#. Description -#: ../templates:3001 -msgid "" -"By default an email is only sent if there are alerts. You must have the " -"MythTV Perl API installed for conflict alerts to be generated." -msgstr "" -"Por omisión, sólo si envía un correo electrónico en caso de alerta. Debe " -"tener la API de Perl de MythTV instalado para la generación de alertas de " -"conflictos." - -#. Type: string -#. Description -#: ../templates:3001 -msgid "" -"To disable set the email address to \"none\". To specify multiple email " -"addresses, seperate them with a comma." -msgstr "" -"Para desactivarlo, defina la dirección de correo electrónico como «none». " -"Separe las direcciones de correo electrónico con comas en caso de definir " -"varias." diff --git a/debian/po/eu.po b/debian/po/eu.po deleted file mode 100644 index e9f5162..0000000 --- a/debian/po/eu.po +++ /dev/null @@ -1,88 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -msgid "" -msgstr "" -"Project-Id-Version: mythtv-status-debconf-eu\n" -"Report-Msgid-Bugs-To: andrew@etc.gen.nz\n" -"POT-Creation-Date: 2007-12-25 13:20+1300\n" -"PO-Revision-Date: 2009-08-04 12:41+0200\n" -"Last-Translator: Piarres Beobide \n" -"Language-Team: Basque \n" -"Language: eu\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#. Type: string -#. Description -#: ../templates:1001 -msgid "MythTV backend to check:" -msgstr "Arakatzeko MythTV interfazea:" - -#. Type: string -#. Description -#: ../templates:1001 -msgid "" -"The MythTV backend to check, you only need to change this if you want to " -"check a different host." -msgstr "" -"Arakatzeko MythTV interfazea, hau beste ostalari batetara konektatu nahi " -"baduzu bakarrik aldatu behar duzu." - -#. Type: boolean -#. Description -#: ../templates:2001 -msgid "Update the system MOTD?" -msgstr "Bertsio-berritu sistema MOTD-a?" - -#. Type: boolean -#. Description -#: ../templates:2001 -msgid "" -"Whether the Message of the Day should be updated on system boot and on a " -"regular basis." -msgstr "" -"Eguneko mezua sistema abioan edo oinarri erregular batetan aldatu behar den." - -#. Type: boolean -#. Description -#: ../templates:2001 -msgid "" -"To adjust how often the MOTD is updated, edit /etc/cron.d/mythtv-status." -msgstr "" -"MOTD noiz eguneratu behar den doitzeko, /etc/cron.d/mythtv-status editatu." - -#. Type: string -#. Description -#: ../templates:3001 -msgid "Send email status to:" -msgstr "Bidali egoera posta:" - -#. Type: string -#. Description -#: ../templates:3001 -msgid "Status emails can be sent on a daily basis." -msgstr "Egoera postak eguneroko oinarrian bidali daitezke" - -#. Type: string -#. Description -#: ../templates:3001 -msgid "" -"By default an email is only sent if there are alerts. You must have the " -"MythTV Perl API installed for conflict alerts to be generated." -msgstr "" -"Lehenespenez postak alertak daudenean bakarrik bidaltzen dira. MythTV Perl " -"APIa instalaturik izan behar duzu elkar-jotze alertak sortzeko." - -#. Type: string -#. Description -#: ../templates:3001 -msgid "" -"To disable set the email address to \"none\". To specify multiple email " -"addresses, seperate them with a comma." -msgstr "" -"Desgaitzeko ezarri eposta helbidea \"none\" gisa. Posta helbide anitz " -"ezartzeko gakoz bidez bereizi itzazu." diff --git a/debian/po/fr.po b/debian/po/fr.po deleted file mode 100644 index 3fee1b3..0000000 --- a/debian/po/fr.po +++ /dev/null @@ -1,91 +0,0 @@ -# Mythtv-status debconf questions -# Copyright (C) 2007 -# This file is distributed under the same license as the mythtv-status package. -# Francois Marier -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: andrew@etc.gen.nz\n" -"POT-Creation-Date: 2007-12-25 13:20+1300\n" -"PO-Revision-Date: 2007-12-25 13:37-0500\n" -"Last-Translator: Francois Marier \n" -"Language-Team: French \n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#. Type: string -#. Description -#: ../templates:1001 -msgid "MythTV backend to check:" -msgstr "Système MythTV à examiner :" - -#. Type: string -#. Description -#: ../templates:1001 -msgid "" -"The MythTV backend to check, you only need to change this if you want to " -"check a different host." -msgstr "" -"Le système MythTV à examiner. Vous n'avez à changer la valeur par défaut que " -"si vous désirer examiner un autre hôte." - -#. Type: boolean -#. Description -#: ../templates:2001 -msgid "Update the system MOTD?" -msgstr "Mettre à jour le MOTD du système ?" - -#. Type: boolean -#. Description -#: ../templates:2001 -msgid "" -"Whether the Message of the Day should be updated on system boot and on a " -"regular basis." -msgstr "" -"Mise à jour du message du jour du système lors du démarrage et sur une base " -"régulière." - -#. Type: boolean -#. Description -#: ../templates:2001 -msgid "" -"To adjust how often the MOTD is updated, edit /etc/cron.d/mythtv-status." -msgstr "" -"Pour changer la fréquence de mise à jour du message du jour, modifier le " -"fichier /etc/cron.d/mythtv-status." - -#. Type: string -#. Description -#: ../templates:3001 -msgid "Send email status to:" -msgstr "Envoyer le status à :" - -#. Type: string -#. Description -#: ../templates:3001 -msgid "Status emails can be sent on a daily basis." -msgstr "Un courriel de status peut être envoyé quotidiennement." - -#. Type: string -#. Description -#: ../templates:3001 -msgid "" -"By default an email is only sent if there are alerts. You must have the " -"MythTV Perl API installed for conflict alerts to be generated." -msgstr "" -"Un message n'est envoyé que s'il y a un conflit dans l'horaire. Le module " -"Perl MythTV doit être installé pour utiliser cette fonction." - -#. Type: string -#. Description -#: ../templates:3001 -msgid "" -"To disable set the email address to \"none\". To specify multiple email " -"addresses, seperate them with a comma." -msgstr "" -"Pour désactiver cette fonction, entrez l'adresse \"none\". Pour spécifiez " -"plus d'une adresse, séparez-les par des virgules." diff --git a/debian/po/ja.po b/debian/po/ja.po deleted file mode 100644 index 268843d..0000000 --- a/debian/po/ja.po +++ /dev/null @@ -1,89 +0,0 @@ -# Copyright (C) 2009 Andrew Ruthven -# This file is distributed under the same license as mythtv-status package. -# Hideki Yamane (Debian-JP) , 2009. -# -msgid "" -msgstr "" -"Project-Id-Version: mythtv-status 0.9.2-2\n" -"Report-Msgid-Bugs-To: andrew@etc.gen.nz\n" -"POT-Creation-Date: 2007-12-25 13:20+1300\n" -"PO-Revision-Date: 2009-11-07 14:26+0900\n" -"Last-Translator: Hideki Yamane (Debian-JP) \n" -"Language-Team: Japanese \n" -"Language: ja\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#. Type: string -#. Description -#: ../templates:1001 -msgid "MythTV backend to check:" -msgstr "MythTV のバックエンドの確認:" - -#. Type: string -#. Description -#: ../templates:1001 -msgid "" -"The MythTV backend to check, you only need to change this if you want to " -"check a different host." -msgstr "" -"MythTV のバックエンドの確認です。別のホストを確認したい場合のみ、これを変更す" -"る必要があります。" - -#. Type: boolean -#. Description -#: ../templates:2001 -msgid "Update the system MOTD?" -msgstr "system の MOTD を更新しますか?" - -#. Type: boolean -#. Description -#: ../templates:2001 -msgid "" -"Whether the Message of the Day should be updated on system boot and on a " -"regular basis." -msgstr "" -"システム起動時および定期的に、今日のお知らせ (Message of the Day) を更新する" -"かどうかです。" - -#. Type: boolean -#. Description -#: ../templates:2001 -msgid "" -"To adjust how often the MOTD is updated, edit /etc/cron.d/mythtv-status." -msgstr "" -"どのぐらいの頻度で MOTD を更新するかについては、/etc/cron.d/mythtv-status を" -"編集してください。" - -#. Type: string -#. Description -#: ../templates:3001 -msgid "Send email status to:" -msgstr "ステータスを以下にメールする:" - -#. Type: string -#. Description -#: ../templates:3001 -msgid "Status emails can be sent on a daily basis." -msgstr "ステータスのメールは毎日送ることができます。" - -#. Type: string -#. Description -#: ../templates:3001 -msgid "" -"By default an email is only sent if there are alerts. You must have the " -"MythTV Perl API installed for conflict alerts to be generated." -msgstr "" -"デフォルトではメールは警告がある場合にのみ送られます。番組の衝突警告を生成す" -"るには、MythTV Perl API がインストール済みであることが必要です。" - -#. Type: string -#. Description -#: ../templates:3001 -msgid "" -"To disable set the email address to \"none\". To specify multiple email " -"addresses, seperate them with a comma." -msgstr "" -"メールアドレスを無効にするには「none」を設定してください。複数のメールアドレ" -"スを指定するにはコンマで区切ってください。" diff --git a/debian/po/nl.po b/debian/po/nl.po deleted file mode 100644 index 329fa46..0000000 --- a/debian/po/nl.po +++ /dev/null @@ -1,91 +0,0 @@ -# Dutch translation of mythtv-status debconf templates. -# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the mythtv-status package. -# Jeroen Schot , 2012. -# -msgid "" -msgstr "" -"Project-Id-Version: mythtv-status 0.9.3-1\n" -"Report-Msgid-Bugs-To: andrew@etc.gen.nz\n" -"POT-Creation-Date: 2007-12-25 13:20+1300\n" -"PO-Revision-Date: 2012-06-01 12:00+0200\n" -"Last-Translator: Jeroen Schot \n" -"Language-Team: Debian l10n Dutch \n" -"Language: nl\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#. Type: string -#. Description -#: ../templates:1001 -msgid "MythTV backend to check:" -msgstr "Te controleren MythTV-backend:" - -#. Type: string -#. Description -#: ../templates:1001 -msgid "" -"The MythTV backend to check, you only need to change this if you want to " -"check a different host." -msgstr "" -"Geef aan welk MythTV-backend gecontroleerd moet worden. U hoeft dit alleen " -"te wijzigigen als u een andere computer wilt controleren." - -#. Type: boolean -#. Description -#: ../templates:2001 -msgid "Update the system MOTD?" -msgstr "De MOTD van het systeem bijwerken?" - -#. Type: boolean -#. Description -#: ../templates:2001 -msgid "" -"Whether the Message of the Day should be updated on system boot and on a " -"regular basis." -msgstr "" -"Geef aan of het \"bericht van de dag\" (MOTD) bijgewerkt moet worden bij de " -"systeemstart en op reguliere basis." - -#. Type: boolean -#. Description -#: ../templates:2001 -msgid "" -"To adjust how often the MOTD is updated, edit /etc/cron.d/mythtv-status." -msgstr "" -"Bewerk /etc/cron.d/mythtv-status om te wijzigen hoe vaak de MOTD wordt " -"bijgewerkt." - -#. Type: string -#. Description -#: ../templates:3001 -msgid "Send email status to:" -msgstr "Stuur een e-mail met de status naar:" - -#. Type: string -#. Description -#: ../templates:3001 -msgid "Status emails can be sent on a daily basis." -msgstr "Status-e-mails kunnen dagelijks verstuurd worden." - -#. Type: string -#. Description -#: ../templates:3001 -msgid "" -"By default an email is only sent if there are alerts. You must have the " -"MythTV Perl API installed for conflict alerts to be generated." -msgstr "" -"Standaard wordt er alleen een e-mail verstuurd als er meldingen zijn. " -"Conflictmeldingen worden alleen aangemaakt als u de MythTV-Perl-API heeft " -"geinstalleerd." - -#. Type: string -#. Description -#: ../templates:3001 -msgid "" -"To disable set the email address to \"none\". To specify multiple email " -"addresses, seperate them with a comma." -msgstr "" -"Vul als e-mailadres \"none\" in om dit uit te schakelen. U kunt ook meerdere " -"e-mailadressen opgeven door ze te scheidinge met een komma." diff --git a/debian/po/pt.po b/debian/po/pt.po deleted file mode 100644 index 56ea12d..0000000 --- a/debian/po/pt.po +++ /dev/null @@ -1,92 +0,0 @@ -# translation of mythtv-status debconf to Portuguese -# Copyright (C) 2007 Américo Monteiro -# This file is distributed under the same license as the mythtv-status package. -# -# Américo Monteiro , 2007. -msgid "" -msgstr "" -"Project-Id-Version: mythtv-status \n" -"Report-Msgid-Bugs-To: andrew@etc.gen.nz\n" -"POT-Creation-Date: 2007-12-25 13:20+1300\n" -"PO-Revision-Date: 2007-12-25 13:41+0000\n" -"Last-Translator: Américo Monteiro \n" -"Language-Team: Portuguese \n" -"Language: pt\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: KBabel 1.11.4\n" - -#. Type: string -#. Description -#: ../templates:1001 -msgid "MythTV backend to check:" -msgstr "Backend do MythTV para verificar:" - -#. Type: string -#. Description -#: ../templates:1001 -msgid "" -"The MythTV backend to check, you only need to change this if you want to " -"check a different host." -msgstr "" -"O backend do MythTV para verificar, você apenas precisa alterar isto se " -"desejar verificar uma máquina diferente." - -#. Type: boolean -#. Description -#: ../templates:2001 -msgid "Update the system MOTD?" -msgstr "Actualizar o sistema MOTD?" - -#. Type: boolean -#. Description -#: ../templates:2001 -msgid "" -"Whether the Message of the Day should be updated on system boot and on a " -"regular basis." -msgstr "" -"Se a Mensagem do Dia deverá ser actualizada no arranque da máquina e numa " -"base regular." - -#. Type: boolean -#. Description -#: ../templates:2001 -msgid "" -"To adjust how often the MOTD is updated, edit /etc/cron.d/mythtv-status." -msgstr "" -"Para ajustar a frequência de actualização do MOTD, edite /etc/cron.d/mythtv-" -"status." - -#. Type: string -#. Description -#: ../templates:3001 -msgid "Send email status to:" -msgstr "Enviar email de estado para:" - -#. Type: string -#. Description -#: ../templates:3001 -msgid "Status emails can be sent on a daily basis." -msgstr "Emails de estado podem ser enviados diariamente." - -#. Type: string -#. Description -#: ../templates:3001 -msgid "" -"By default an email is only sent if there are alerts. You must have the " -"MythTV Perl API installed for conflict alerts to be generated." -msgstr "" -"Por pré-definição, um email é enviado apenas se existir um alerta. Você " -"precisa ter a API MythTV Perl instalada para os alertas de conflito serem " -"gerados." - -#. Type: string -#. Description -#: ../templates:3001 -msgid "" -"To disable set the email address to \"none\". To specify multiple email " -"addresses, seperate them with a comma." -msgstr "" -"Para desactivar regule o endereço de email para \"none\". Para especificar " -"endereços de email múltiplos, separe-os com uma vírgula." diff --git a/debian/po/pt_BR.po b/debian/po/pt_BR.po deleted file mode 100644 index 8569474..0000000 --- a/debian/po/pt_BR.po +++ /dev/null @@ -1,91 +0,0 @@ -# Debconf translations for mythtv-status. -# Copyright (C) 2016 THE mythtv-status'S COPYRIGHT HOLDER -# This file is distributed under the same license as the mythtv-status package. -# Adriano Rafael Gomes , 2016. -# -msgid "" -msgstr "" -"Project-Id-Version: mythtv-status 0.10.6-1\n" -"Report-Msgid-Bugs-To: andrew@etc.gen.nz\n" -"POT-Creation-Date: 2007-12-25 13:20+1300\n" -"PO-Revision-Date: 2016-02-07 14:49-0200\n" -"Last-Translator: Adriano Rafael Gomes \n" -"Language-Team: Brazilian Portuguese \n" -"Language: pt_BR\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#. Type: string -#. Description -#: ../templates:1001 -msgid "MythTV backend to check:" -msgstr "\"Backend\" do MythTV para verificar:" - -#. Type: string -#. Description -#: ../templates:1001 -msgid "" -"The MythTV backend to check, you only need to change this if you want to " -"check a different host." -msgstr "" -"O \"backend\" do MythTV para verificar. Você somente precisa alterar isso se " -"você quiser verificar uma máquina diferente." - -#. Type: boolean -#. Description -#: ../templates:2001 -msgid "Update the system MOTD?" -msgstr "Atualizar a MOTD do sistema?" - -#. Type: boolean -#. Description -#: ../templates:2001 -msgid "" -"Whether the Message of the Day should be updated on system boot and on a " -"regular basis." -msgstr "" -"Se a Mensagem do Dia deverá ser atualizada na inicialização do sistema, e " -"regularmente." - -#. Type: boolean -#. Description -#: ../templates:2001 -msgid "" -"To adjust how often the MOTD is updated, edit /etc/cron.d/mythtv-status." -msgstr "" -"Para ajustar a frequência de atualização da MOTD, edite /etc/cron.d/mythtv-" -"status." - -#. Type: string -#. Description -#: ../templates:3001 -msgid "Send email status to:" -msgstr "Enviar e-mail de estado para:" - -#. Type: string -#. Description -#: ../templates:3001 -msgid "Status emails can be sent on a daily basis." -msgstr "E-mails de estado podem ser enviados diariamente." - -#. Type: string -#. Description -#: ../templates:3001 -msgid "" -"By default an email is only sent if there are alerts. You must have the " -"MythTV Perl API installed for conflict alerts to be generated." -msgstr "" -"Por padrão, um e-mail somente é enviado se houver alertas. Você deve ter a " -"API Perl do MythTV instalada para alertas de conflito serem gerados." - -#. Type: string -#. Description -#: ../templates:3001 -msgid "" -"To disable set the email address to \"none\". To specify multiple email " -"addresses, seperate them with a comma." -msgstr "" -"Para desabilitar, defina o endereço de e-mail para \"none\". Para " -"especificar múltiplos endereços de e-mail, separe-os com vírgulas." diff --git a/debian/po/ru.po b/debian/po/ru.po deleted file mode 100644 index 140af06..0000000 --- a/debian/po/ru.po +++ /dev/null @@ -1,93 +0,0 @@ -# translation of mythtv-status_0.9.0-5_ru.po to Russian -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Yuri Kozlov , 2009. -msgid "" -msgstr "" -"Project-Id-Version: mythtv-status 0.9.0-5\n" -"Report-Msgid-Bugs-To: andrew@etc.gen.nz\n" -"POT-Creation-Date: 2007-12-25 13:20+1300\n" -"PO-Revision-Date: 2009-08-29 11:32+0400\n" -"Last-Translator: Yuri Kozlov \n" -"Language-Team: Russian \n" -"Language: ru\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: KBabel 1.11.4\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#. Type: string -#. Description -#: ../templates:1001 -msgid "MythTV backend to check:" -msgstr "Проверяемая серверная часть MythTV:" - -#. Type: string -#. Description -#: ../templates:1001 -msgid "" -"The MythTV backend to check, you only need to change this if you want to " -"check a different host." -msgstr "" -"Здесь указывается проверяемая серверная часть (backend) MythTV; требует " -"изменения только в случае, если вы хотите проверять другой компьютер." - -#. Type: boolean -#. Description -#: ../templates:2001 -msgid "Update the system MOTD?" -msgstr "Обновлять системный MOTD?" - -#. Type: boolean -#. Description -#: ../templates:2001 -msgid "" -"Whether the Message of the Day should be updated on system boot and on a " -"regular basis." -msgstr "" -"Здесь можно указать, нужно ли обновлять Сообщение Для регулярно и при " -"загрузке системы." - -#. Type: boolean -#. Description -#: ../templates:2001 -msgid "" -"To adjust how often the MOTD is updated, edit /etc/cron.d/mythtv-status." -msgstr "" -"Для настройки частоты обновления MOTD, отредактируйте /etc/cron.d/mythtv-" -"status." - -#. Type: string -#. Description -#: ../templates:3001 -msgid "Send email status to:" -msgstr "Отправка данных о состоянии на эл. почту:" - -#. Type: string -#. Description -#: ../templates:3001 -msgid "Status emails can be sent on a daily basis." -msgstr "Состояние можно отправлять ежедневно по электронной почте." - -#. Type: string -#. Description -#: ../templates:3001 -msgid "" -"By default an email is only sent if there are alerts. You must have the " -"MythTV Perl API installed for conflict alerts to be generated." -msgstr "" -"По умолчанию письма отправляются только при возникновении проблем. Для " -"предупреждений о конфликтах вам требуется установить MythTV Perl API." - -#. Type: string -#. Description -#: ../templates:3001 -msgid "" -"To disable set the email address to \"none\". To specify multiple email " -"addresses, seperate them with a comma." -msgstr "" -"Для выключения вместо адреса укажите \"none\". Несколько адресов эл. почты " -"можно задавать через запятую." diff --git a/debian/po/sv.po b/debian/po/sv.po deleted file mode 100644 index f523944..0000000 --- a/debian/po/sv.po +++ /dev/null @@ -1,92 +0,0 @@ -# translation of mythtv-status.po to swedish -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Martin Bagge , 2008. -msgid "" -msgstr "" -"Project-Id-Version: mythtv-status\n" -"Report-Msgid-Bugs-To: andrew@etc.gen.nz\n" -"POT-Creation-Date: 2007-12-25 13:20+1300\n" -"PO-Revision-Date: 2008-11-22 22:03+0100\n" -"Last-Translator: Martin Bagge \n" -"Language-Team: swedish \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: KBabel 1.11.4\n" - -#. Type: string -#. Description -#: ../templates:1001 -msgid "MythTV backend to check:" -msgstr "Värdnamn för MythTV-bakdel som ska kontrolleras:" - -#. Type: string -#. Description -#: ../templates:1001 -msgid "" -"The MythTV backend to check, you only need to change this if you want to " -"check a different host." -msgstr "" -"Om du vill köra MtyhTV-bakdelen på ett annat system behöver du ange " -"värdnamnet nedan." - -#. Type: boolean -#. Description -#: ../templates:2001 -msgid "Update the system MOTD?" -msgstr "Ska systemets MOTD uppdateras?" - -#. Type: boolean -#. Description -#: ../templates:2001 -msgid "" -"Whether the Message of the Day should be updated on system boot and on a " -"regular basis." -msgstr "" -"Ange om Message of the Day ska uppdateras vid systemets uppstart och med " -"jämna mellanrum under drift." - -#. Type: boolean -#. Description -#: ../templates:2001 -msgid "" -"To adjust how often the MOTD is updated, edit /etc/cron.d/mythtv-status." -msgstr "" -"För att ändra hur ofta MOTD uppdateras redigera filen /etc/cron.d/mythtv-" -"status." - -#. Type: string -#. Description -#: ../templates:3001 -msgid "Send email status to:" -msgstr "Skicka e-post med statusmeddelande till:" - -#. Type: string -#. Description -#: ../templates:3001 -msgid "Status emails can be sent on a daily basis." -msgstr "E-post-meddealnden och status för systemet kan skickas dagligen." - -#. Type: string -#. Description -#: ../templates:3001 -msgid "" -"By default an email is only sent if there are alerts. You must have the " -"MythTV Perl API installed for conflict alerts to be generated." -msgstr "" -"Standardinställningen är att e-post endast skickas om varningar förekommer. " -"Du måste ha MythTV Perl API installerad för att kunna känna av " -"konfliktvarningar." - -#. Type: string -#. Description -#: ../templates:3001 -msgid "" -"To disable set the email address to \"none\". To specify multiple email " -"addresses, seperate them with a comma." -msgstr "" -"För att inaktivera funktionen anger du \"non\" som e-post-adress. Separera " -"flera adresser med kommatecken." diff --git a/debian/po/templates.pot b/debian/po/templates.pot deleted file mode 100644 index 0bbea36..0000000 --- a/debian/po/templates.pot +++ /dev/null @@ -1,80 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: andrew@etc.gen.nz\n" -"POT-Creation-Date: 2007-12-25 13:20+1300\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: 8bit\n" - -#. Type: string -#. Description -#: ../templates:1001 -msgid "MythTV backend to check:" -msgstr "" - -#. Type: string -#. Description -#: ../templates:1001 -msgid "" -"The MythTV backend to check, you only need to change this if you want to " -"check a different host." -msgstr "" - -#. Type: boolean -#. Description -#: ../templates:2001 -msgid "Update the system MOTD?" -msgstr "" - -#. Type: boolean -#. Description -#: ../templates:2001 -msgid "" -"Whether the Message of the Day should be updated on system boot and on a " -"regular basis." -msgstr "" - -#. Type: boolean -#. Description -#: ../templates:2001 -msgid "" -"To adjust how often the MOTD is updated, edit /etc/cron.d/mythtv-status." -msgstr "" - -#. Type: string -#. Description -#: ../templates:3001 -msgid "Send email status to:" -msgstr "" - -#. Type: string -#. Description -#: ../templates:3001 -msgid "Status emails can be sent on a daily basis." -msgstr "" - -#. Type: string -#. Description -#: ../templates:3001 -msgid "" -"By default an email is only sent if there are alerts. You must have the " -"MythTV Perl API installed for conflict alerts to be generated." -msgstr "" - -#. Type: string -#. Description -#: ../templates:3001 -msgid "" -"To disable set the email address to \"none\". To specify multiple email " -"addresses, seperate them with a comma." -msgstr "" diff --git a/debian/postinst b/debian/postinst deleted file mode 100644 index 73d37d1..0000000 --- a/debian/postinst +++ /dev/null @@ -1,92 +0,0 @@ -#!/bin/sh -# postinst script for mythtv-status -# -# see: dh_installdeb(1) - -PACKAGE=mythtv-status - -. /usr/share/debconf/confmodule - -set -e - -case "$1" in - configure|reconfigure) - DEBIANCONFIG=/etc/default/$PACKAGE - - # Default to --email-only-on-alert but allow it be unset in the config file. - EMAIL_ARGS="--email-only-on-alert" - - # load current settings, most of which will be overwritten. - [ -f $DEBIANCONFIG ] && . $DEBIANCONFIG - - db_get $PACKAGE/host - HOST="${RET:-localhost}" - - db_get $PACKAGE/enable - UPDATE_MOTD="${RET:-true}" - - [ $UPDATE_MOTD = 'true' ] && UPDATE_MOTD='yes' - - # Support the old variable name. - [ "x$RUN" != "x" ] && UPDATE_MOTD=$RUN - - # Support the old variable name. - [ "x$ARGS" != "x" ] && UPDATE_MOTD_ARGS=$ARGS - - db_get $PACKAGE/email - EMAIL="${RET:-none}" - - cat <<_eof > $DEBIANCONFIG -# $PACKAGE Debian configuration -# -# You can run 'dpkg-reconfigure $PACKAGE' to modify the values in this -# file, if you want. You can also change the values here and changes will -# be preserved. But other changes will not be preserved. -# -# Do note that only the values are preserved; the rest of the file is -# rewritten. -# - -# HOST: -# What host should we check the status on? -HOST=$HOST - -######################################################################## -# The following settings are used by the /etc/init.d/mythtv-status and # -# mythtv-update-motd scripts to update the MOTD. # -######################################################################## - -# UPDATE_MOTD: -# Should we actually run and update the MOTD? -UPDATE_MOTD=$UPDATE_MOTD - -# UPDATE_MOTD_ARGS: -# Any extra arguments to pass to mythtv-status (i.e., -e -d). -UPDATE_MOTD_ARGS="$UPDATE_MOTD_ARGS" - -######################################################################## -# The following settings are used by the /etc/cron.daily/mythtv-status # -# script when generating the daily status email report. # -######################################################################## - -# EMAIL: -# A comma separated list of email address to send status emails to. -# -# Set to none to disable daily emails, if empty then default to root. -EMAIL=$EMAIL - -# EMAIL_ARGS: -# Command line arguments that are used when sending the daily email. -EMAIL_ARGS="$EMAIL_ARGS" -_eof - - db_stop - ;; -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 diff --git a/debian/postrm b/debian/postrm deleted file mode 100644 index 141883e..0000000 --- a/debian/postrm +++ /dev/null @@ -1,42 +0,0 @@ -#!/bin/sh -# postrm script for mythtv-status -# -# see: dh_installdeb(1) - -set -e - -# summary of how this script can be called: -# * `remove' -# * `purge' -# * `upgrade' -# * `failed-upgrade' -# * `abort-install' -# * `abort-install' -# * `abort-upgrade' -# * `disappear' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package - - -case "$1" in - purge|remove|failed-upgrade|abort-install|abort-upgrade|disappear) - if [ -f /run/motd.orig ] - then - mv /run/motd.orig /run/motd - fi - - if [ "$1" = "purge" ]; then - rm -f /etc/default/mythtv-status - fi - ;; -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - - diff --git a/debian/rules b/debian/rules deleted file mode 100755 index 4380aee..0000000 --- a/debian/rules +++ /dev/null @@ -1,15 +0,0 @@ -#!/usr/bin/make -f -# -*- makefile -*- - -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 - -%: - dh $@ - -override_dh_installsystemd: - dh_installsystemd mythtv-status.service \ - mythtv-status_health-check.service \ - mythtv-status_health-check.timer \ - mythtv-status_update-motd.service \ - mythtv-status_update-motd.timer diff --git a/debian/source/format b/debian/source/format deleted file mode 100644 index 163aaf8..0000000 --- a/debian/source/format +++ /dev/null @@ -1 +0,0 @@ -3.0 (quilt) diff --git a/debian/source/lintian-overrides b/debian/source/lintian-overrides deleted file mode 100644 index 2205161..0000000 --- a/debian/source/lintian-overrides +++ /dev/null @@ -1,4 +0,0 @@ -# I don't have SSL on my home webserver yet... -debian-watch-uses-insecure-uri -vcs-field-uses-insecure-uri Browser http://git.etc.gen.nz/cgi-bin/gitweb.cgi?p=mythtv-status.git;a=summary -vcs-field-uses-insecure-uri Git http://git.etc.gen.nz/mythtv-status.git diff --git a/debian/templates b/debian/templates deleted file mode 100644 index 454b1bc..0000000 --- a/debian/templates +++ /dev/null @@ -1,27 +0,0 @@ -Template: mythtv-status/host -Type: string -Default: localhost -_Description: MythTV backend to check: - The MythTV backend to check, you only need to change this if you want to check - a different host. - -Template: mythtv-status/enable -Type: boolean -Default: true -_Description: Update the system MOTD? - Whether the Message of the Day should be updated on system boot and on a - regular basis. - . - To adjust how often the MOTD is updated, edit /etc/cron.d/mythtv-status. - -Template: mythtv-status/email -Type: string -Default: none -_Description: Send email status to: - Status emails can be sent on a daily basis. - . - By default an email is only sent if there are alerts. You must have - the MythTV Perl API installed for conflict alerts to be generated. - . - To disable set the email address to "none". To specify multiple email - addresses, seperate them with a comma. diff --git a/debian/tests/pkg-perl/SKIP b/debian/tests/pkg-perl/SKIP deleted file mode 100644 index bda0d27..0000000 --- a/debian/tests/pkg-perl/SKIP +++ /dev/null @@ -1,2 +0,0 @@ -# No Perl Modules included in the package -runtime-deps.d/use.t diff --git a/debian/tests/pkg-perl/smoke-setup b/debian/tests/pkg-perl/smoke-setup deleted file mode 100755 index 3fc48ab..0000000 --- a/debian/tests/pkg-perl/smoke-setup +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/sh - -# Ensure that mythtv-status is where the tests expect to find it. -mkdir $TDIR/bin -ln -s /usr/bin/mythtv-status $TDIR/bin diff --git a/debian/upstream/metadata b/debian/upstream/metadata deleted file mode 100644 index 9e9c1f3..0000000 --- a/debian/upstream/metadata +++ /dev/null @@ -1,5 +0,0 @@ ---- -Repository: http://git.etc.gen.nz/mythtv-status.git -Repository-Browse: http://git.etc.gen.nz/cgi-bin/gitweb.cgi?p=mythtv-status.git;a=summary -Bug-Submit: mailto:andrew@etc.gen.nz -Changelog: http://git.etc.gen.nz/cgi-bin/gitweb.cgi?p=mythtv-status.git;a=blob;f=ChangeLog;hb=HEAD diff --git a/debian/upstream/signing-key.asc b/debian/upstream/signing-key.asc deleted file mode 100644 index 246224f..0000000 --- a/debian/upstream/signing-key.asc +++ /dev/null @@ -1,117 +0,0 @@ ------BEGIN PGP PUBLIC KEY BLOCK----- - -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 -BX7JQa2rFIX2VeCpArCrwrRNYW5kcmV3LnJ1dGh2ZW5AY2F0YWx5c3QubmV0Lm56 -IChDYXRhbHlzdCBJVCkgPGFuZHJldy5ydXRodmVuQGNhdGFseXN0Lm5ldC5uej6J -AjcEEwEIACECGwMCHgECF4AFAlND4PAFCwkIBwMFFQoJCAsFFgIDAQAACgkQS1PZ -MeTT6GNZLg/6Alv3+Rfs0b66sD2wbLp49daqCvqXIQ4zBEwtTva3qRPMEM6CwBmF -OfbJ8MOAjWkox4uLwOEb/1v7XO+eh9aOGxK6936C169dDcigKlwFJHHYBbmzaVDO -EYsWwXGGR2GgXC5/qrnynfYgJgDiAYG+Um/0T8fgge/rkWYzhXm7oy29lLRSRaY9 -6CvQBnNmpH23pAmW9Ny1ctd2R0M39S7qafmPtJcbQv8xgxcAY/qq20C1DHsO2nMm -g5XR9LnAKpYgRgUH70uJz+axM8pd0z8RhThWUIMC+svwklDVADSLx2FoYTN2uxhR -6y/89l3ATQwlV6Ta/OepIf5Q+YPAApGz6C3CCi255QoIskIq4ZReWPrx+XZTqN3C -6Oq80quvvxEq4oCQ6IA4/ZKFRZhhyZLgwb4/LjrKUPtNrpMFW+a3i/ShteJlbZ02 -/f0BGN8HI+N5Bjbw6F0SP2kZ5R24KjnqJmRcQZA97ccAXvcyyNPLhkJGx9RiDSdb -ci6dglTy3z8I269ueg8wMJnpe/XxTH5tH9fJDJLaLVQS3Wk71KKXM184uLACtKpM -crik0i0iz2u5b+uGQEA7vF6S4P0Niow0dFjczF8my4rOMABwxBkL6iIQp3wTF0/j -LXK4AgIxBlWuSLl3NqWVpodoQWxaoXYIFkohcKzagarejd4lBGk6o5S5Ag0EUwaH -KgEQALu2wohZNiPHJNyMWf4iz071+94E7ThUzH96Ii1gnn05N/Pucd235/r2xtln -b6M8ww64gsTwPUarXMkAnEKTM6Kfl8MFDtm+BuMGZmKV2LW3FMGj2TLZ53okMUf+ -DCPTYth6kh4xyGH5crXYxb4BoE5OIG5vbi+Yuu913Z/20uSC/y68kKhgF5lUB2nJ -hOBhf0EIQ/Pda10SJyi8UJxzvHbweZ7ao1izK0dmcuIEuof/toSl3ZCUlpfBt+gu -6XepB5VzKZHJP9QbY1hYTjahbPKXdz3tq5jyxo2KJtK2n/heUhXQL6+rct1uviCw -spjhinlvneBxi7PLaCkDWFhyBL3ZDhD3fP1YMV0F38Hkln8uRDDlLlItUbRRGoIL -Ct3VkAPy8iOS1LfrXm4HIMRoVJwtRnO91bHzU0j7KiImcua05tb7+/VlyNdA/V4y -eTZ5w73RgMi0vGM6hsRezasmxUGl0TqTPphTfsSGsEA2jZMuHdSuY2YdWSznhieB -1CgBzlyboE70Xxl/0m56plbOiVXG64tw4RnId9ZJFG6L2tLbzcedpMUDnV+uyJJx -zz78Fhm6Sr23nH+J7T8ykOjVzRT9IWs0q/BWJhXFCL4CtlwxAmmehlIFRKS4d6GD -LBu/MDWe3IvT6kRpD792gr2AH+53QnogVT9s3UcuGYAJF/LvABEBAAGJAh8EGAEI -AAkFAlMGhyoCGwwACgkQS1PZMeTT6GOA1Q/+KmmizVUaQiCN7mYnUbmchIar40Sl -0rkWVTL+jMvlflfLUqroYmyBVTaMvVVfr2hh9Vejd9Jav8UM99gf3ljOK0RVB1VC -JHvwIITePSEPv73Ha05NS13lHvZCwVABi52LcZuFpUFL/zwptLt+eGbEYyTxi+wF -kEdt26Y6jhbHYeDkXEsgkwlgz1Q1I5b4KjvFLk32SVsKoqw3pKFFs1pJezvnpR7B -2cBir1IsKrOSsV4i26pcKjCRQtIn1C2JHLbR5wZhyEhbxzo4zSf1gcAyYTmTSfon -g59h9rLLjMOW1wy7FNhC4xjC5KRnB3/dXWVTwnDhv4TJtUNMLT83hbL8buXrWlN5 -W6OD4+7g5B1+9wtaEaIySh3kB/rZnTXYiWqVceX4OMO/ptnJlqJc7Ij4IZdyKlh5 -PBXVrVxFXIshxAY17RtQ6TyW2HKbg03Je0vtXn2s/1+okNloOSoqpgybHV8l5K1C -OKviLKhY47NlKNpJNkmVu+dlYZK8/3ZGxCVd3Ll+7jNoAGi/GXdg4GEcsliZpy0n -PaPcYP9D7SrRNDnYG/hVV0YtZEkoysIuIetDjEekYCObAHbAhZM2cN3iZNUo/BVF -zr0CoLMveEO5nI/37add2NcjZ0E8aSSGpbOkHU98i+VMKT4FoAi5iPjnkeDkLnpa -IDboUp0F5cdKyg0= -=m1AT ------END PGP PUBLIC KEY BLOCK----- diff --git a/debian/watch b/debian/watch deleted file mode 100644 index ae4d7d5..0000000 --- a/debian/watch +++ /dev/null @@ -1,4 +0,0 @@ -version=4 - -opts=pgpsigurlmangle=s/$/.asc/ \ - http://www.etc.gen.nz/projects/mythtv/tarballs/mythtv-status-(\d.+)\.tar\.gz -- 2.30.2