From 86bdef4a42003bb65d553b7c8cc2a56ca1b1bf27 Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Wed, 15 Nov 2023 14:19:25 +0100 Subject: 🚀 Debian package: python-django-ishtar - add man page - fix copyright file MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- debian/copyright | 8 ++++---- debian/python3-django-ishtar.manpages | 2 ++ debian/python3-django-ishtar.postinst | 2 +- debian/source/lintian-overrides | 3 +++ 4 files changed, 10 insertions(+), 5 deletions(-) create mode 100644 debian/python3-django-ishtar.manpages (limited to 'debian') diff --git a/debian/copyright b/debian/copyright index 6dee472c6..3eefecea4 100644 --- a/debian/copyright +++ b/debian/copyright @@ -3,11 +3,11 @@ Upstream-Name: ishtar Source: https://gitlab.com/iggdrasil/ishtar.git Files: * -Copyright: 2013-2022 Étienne Loks -License: AGPL-3.0+ +Copyright: 2013-2023 Étienne Loks +License: AGPL-3.0-only Files: debian/* -Copyright: 2013-2022 Étienne Loks +Copyright: 2013-2023 Étienne Loks License: GPL-3.0+ License: GPL-3.0+ @@ -27,7 +27,7 @@ License: GPL-3.0+ On Debian systems, the complete text of the GNU General Public License version 3 can be found in "/usr/share/common-licenses/GPL-3". -License: AGPL-3.0 +License: AGPL-3.0-only This program is free software: you can use, redistribute, and/or modify this code under the terms of the GNU Affero General Public License version 3. diff --git a/debian/python3-django-ishtar.manpages b/debian/python3-django-ishtar.manpages new file mode 100644 index 000000000..5a7aa6c84 --- /dev/null +++ b/debian/python3-django-ishtar.manpages @@ -0,0 +1,2 @@ +install/ishtar-prepare-instance.8 +install/ishtar-delete-instance.8 diff --git a/debian/python3-django-ishtar.postinst b/debian/python3-django-ishtar.postinst index 65183dfb8..f2288a49c 100644 --- a/debian/python3-django-ishtar.postinst +++ b/debian/python3-django-ishtar.postinst @@ -43,7 +43,7 @@ case "$1" in if [ -f /usr/sbin/rabbitmqctl ]; then # assume queues are configured cecho c "Verify rabbitmq queues are empty" for instance in $instances; do - for res in `/usr/sbin/rabbitmqctl list_queues -p /ishtar$instance -q messages`; do + for res in `rabbitmqctl list_queues -p /ishtar$instance -q messages`; do if [ $res != 0 ] && [ $res != 'messages' ]; then cecho r "The queue for $instance is not empty ($res messages)." cecho y "Wait a few minutes (hours?) for update." diff --git a/debian/source/lintian-overrides b/debian/source/lintian-overrides index c386b3d00..fe4aae0bf 100644 --- a/debian/source/lintian-overrides +++ b/debian/source/lintian-overrides @@ -4,3 +4,6 @@ python-django-ishtar: source-is-missing bootstrap_datepicker/static/js/locales/* python-django-ishtar: source-is-missing docs/fr/source/media-src/* # minimized translations and real js source not provided but with the link to the upstream source python-django-ishtar: source-is-missing ishtar_common/static/* +# debian directory is in the upstream package by choice +python-django-ishtar source: no-debian-changes + -- cgit v1.2.3