From: Michael Tremer <michael.tremer@ipfire.org>
To: location@lists.ipfire.org
Subject: Re: [PATCH] debian: Mitigate bulk of Lintian issues
Date: Thu, 15 Apr 2021 12:06:00 +0100 [thread overview]
Message-ID: <9BB4FDFC-7206-4EC0-A98D-13D2F8DA7241@ipfire.org> (raw)
In-Reply-To: <20210415103022.23316-1-valter.jansons@gmail.com>
[-- Attachment #1: Type: text/plain, Size: 13927 bytes --]
Hello,
> On 15 Apr 2021, at 11:30, Valters Jansons <valter.jansons(a)gmail.com> wrote:
>
> - d/.gitignore: Ignore all temporary files and subdirectories such as
> debian/location-importer/ and debian/location-importer.debhelper.log
> with the exception of debian/source/ and potential debian/patches/
> which may be used for Quilt, considering the source format is set
> to '3.0 (quilt)'.
Okay. If this would have been an individual patch I would have merged this straight away.
> - d/clean: Remove m4/intltool.m4 and po/Makefile.in.in autogenerated
> files prior to building/in-between builds. Without removal of these
> autogenerated files, build tooling complains about unexpected changes
> to the source tree.
Don't the scripts call “make distclean” or something similar?
> - d/control: Move libloc1 to 'libs' section
> (lintian: wrong-section-according-to-package-name).
Okay.
> - d/control: Set 'Multi-Arch: foreign' hint for location-importer and
> location-python, due to py3compile via dh-python
> (lintian: multi-arch-same-package-calls-pycompile).
Okay.
> - d/copyright: Update format link to use HTTPS instead of HTTP
> (lintian: insecure-copyright-format-uri).
>
> - d/libloc1.symbols: Added symbols export file
> (lintian: no-symbols-control-file). For generation:
> $ debuild -uc -us # to easily build everything to debian/tmp/
> $ dpkg-gensymbols -plibloc1 -Odebian/libloc1.symbols
> $ sed -i -E -e 's/( [0-9\.]+)-.+$/\1/' debian/*.symbols
Hmm, this feels very ugly to me.
We already have a file that has all exported symbols. What does Debian use this for?
> - d/location-python.examples: Add the examples/ to documentation
> (lintian: package-does-not-install-examples).
I am not if it is a good idea to install the example key just in case that people start using it.
We have seen this in various places where the “development/testing” key suddenly “slipped” into production.
> - d/rules: Remove _location.la from location-python package
> (lintian: unknown-file-in-python-module-directory,
> incorrect-libdir-in-la-file, non-empty-dependency_libs-in-la-file).
> Considering the dependency library is not being installed, the la
> file does not appear too useful. Additionally, dh-python moves the
> site-packages files dist-packages resulting in a broken libdir,
> and unexpected .la files being added to Python root.
I believe la files never have any use :)
> - d/rules: Remove location/{database,importer}.py from location-python
> package. These files get installed to location-importer package
> (lintian: binaries-have-file-conflict).
Okay.
> - d/watch: Add uscan configuration, as expected for '3.0 (quilt)' format
> (lintian: debian-watch-file-is-missing).
What does this do?
> - src/systemd/location-update.service.in: Add a generic Documentation=
> linking to the manual page of location, for `systemctl help <name>`
> (lintian: systemd-service-file-missing-documentation-key).
>
> Following this, the only complaints from Lintian are about:
> - `location-importer` not having a manpage.
Good question if it is worth writing one. Is anyone up for this?
> - Short package Descriptions, not explaining what they do in detail.
> - An out-dated Standards-Version.
?
> - An old debhelper compatibility level.
Can we not change this?
> - Lack of an autopkgtest testsuite.
?
-Michael
>
> Signed-off-by: Valters Jansons <valter.jansons(a)gmail.com>
> ---
> debian/.gitignore | 8 +-
> debian/clean | 2 +
> debian/control | 5 +-
> debian/copyright | 2 +-
> debian/libloc1.symbols | 134 +++++++++++++++++++++++++
> debian/location-python.examples | 3 +
> debian/rules | 8 ++
> debian/watch | 3 +
> src/systemd/location-update.service.in | 1 +
> 9 files changed, 159 insertions(+), 7 deletions(-)
> create mode 100644 debian/clean
> create mode 100644 debian/libloc1.symbols
> create mode 100644 debian/location-python.examples
> create mode 100644 debian/watch
>
> diff --git a/debian/.gitignore b/debian/.gitignore
> index 0faf920..4a7eb9a 100644
> --- a/debian/.gitignore
> +++ b/debian/.gitignore
> @@ -2,9 +2,9 @@
> /autoreconf.*
> /debhelper-build-stamp
> /files
> -/libloc/
> -/libloc-dev/
> -/libloc-perl/
> -/tmp
> +/*/
> *.debhelper
> +*.log
> *.substvars
> +!/patches/
> +!/source/
> diff --git a/debian/clean b/debian/clean
> new file mode 100644
> index 0000000..54a6877
> --- /dev/null
> +++ b/debian/clean
> @@ -0,0 +1,2 @@
> +m4/intltool.m4
> +po/Makefile.in.in
> diff --git a/debian/control b/debian/control
> index dc40927..ec27f92 100644
> --- a/debian/control
> +++ b/debian/control
> @@ -23,6 +23,7 @@ Vcs-Browser: https://git.ipfire.org/pub/git/location/libloc.git
>
> Package: libloc1
> Architecture: any
> +Section: libs
> Pre-Depends:
> ${misc:Pre-Depends}
> Depends:
> @@ -67,7 +68,7 @@ Depends:
> location-python (= ${binary:Version}),
> ${misc:Depends},
> ${python3:Depends}
> -Multi-Arch: same
> +Multi-Arch: foreign
> Description: Tools to author location databases
> This package contains tools that are required to build location databases
>
> @@ -80,6 +81,6 @@ Depends:
> ${misc:Depends},
> ${python3:Depends},
> ${shlibs:Depends}
> -Multi-Arch: same
> +Multi-Arch: foreign
> Description: Python modules for libloc
> This package contains Python bindings for libloc
> diff --git a/debian/copyright b/debian/copyright
> index 636af48..3bd7654 100644
> --- a/debian/copyright
> +++ b/debian/copyright
> @@ -1,4 +1,4 @@
> -Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
> +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
> Upstream-Name: libloc
> Upstream-Contact: Michael Tremer <michael.tremer(a)ipfire.org>
> Source: https://location.ipfire.org/download
> diff --git a/debian/libloc1.symbols b/debian/libloc1.symbols
> new file mode 100644
> index 0000000..74b70b5
> --- /dev/null
> +++ b/debian/libloc1.symbols
> @@ -0,0 +1,134 @@
> +libloc.so.1 libloc1 #MINVER#
> +* Build-Depends-Package: libloc-dev
> + LIBLOC_1(a)LIBLOC_1 0.9.4
> + LIBLOC_PRIVATE(a)LIBLOC_PRIVATE 0.9.4
> + loc_as_cmp(a)LIBLOC_1 0.9.4
> + loc_as_get_name(a)LIBLOC_1 0.9.4
> + loc_as_get_number(a)LIBLOC_1 0.9.4
> + loc_as_list_append(a)LIBLOC_1 0.9.5
> + loc_as_list_clear(a)LIBLOC_1 0.9.5
> + loc_as_list_contains(a)LIBLOC_1 0.9.5
> + loc_as_list_contains_number(a)LIBLOC_1 0.9.5
> + loc_as_list_empty(a)LIBLOC_1 0.9.5
> + loc_as_list_get(a)LIBLOC_1 0.9.5
> + loc_as_list_new(a)LIBLOC_1 0.9.5
> + loc_as_list_ref(a)LIBLOC_1 0.9.5
> + loc_as_list_size(a)LIBLOC_1 0.9.5
> + loc_as_list_unref(a)LIBLOC_1 0.9.5
> + loc_as_new(a)LIBLOC_1 0.9.4
> + loc_as_ref(a)LIBLOC_1 0.9.4
> + loc_as_set_name(a)LIBLOC_1 0.9.4
> + loc_as_unref(a)LIBLOC_1 0.9.4
> + loc_country_cmp(a)LIBLOC_1 0.9.4
> + loc_country_code_is_valid(a)LIBLOC_1 0.9.4
> + loc_country_get_code(a)LIBLOC_1 0.9.4
> + loc_country_get_continent_code(a)LIBLOC_1 0.9.4
> + loc_country_get_name(a)LIBLOC_1 0.9.4
> + loc_country_list_append(a)LIBLOC_1 0.9.5
> + loc_country_list_clear(a)LIBLOC_1 0.9.5
> + loc_country_list_contains(a)LIBLOC_1 0.9.5
> + loc_country_list_contains_code(a)LIBLOC_1 0.9.5
> + loc_country_list_empty(a)LIBLOC_1 0.9.5
> + loc_country_list_get(a)LIBLOC_1 0.9.5
> + loc_country_list_new(a)LIBLOC_1 0.9.5
> + loc_country_list_ref(a)LIBLOC_1 0.9.5
> + loc_country_list_size(a)LIBLOC_1 0.9.5
> + loc_country_list_unref(a)LIBLOC_1 0.9.5
> + loc_country_new(a)LIBLOC_1 0.9.4
> + loc_country_ref(a)LIBLOC_1 0.9.4
> + loc_country_set_continent_code(a)LIBLOC_1 0.9.4
> + loc_country_set_name(a)LIBLOC_1 0.9.4
> + loc_country_unref(a)LIBLOC_1 0.9.4
> + loc_database_count_as(a)LIBLOC_1 0.9.4
> + loc_database_created_at(a)LIBLOC_1 0.9.4
> + loc_database_enumerator_get_asns(a)LIBLOC_1 0.9.5
> + loc_database_enumerator_get_countries(a)LIBLOC_1 0.9.5
> + loc_database_enumerator_new(a)LIBLOC_1 0.9.4
> + loc_database_enumerator_next_as(a)LIBLOC_1 0.9.4
> + loc_database_enumerator_next_country(a)LIBLOC_1 0.9.4
> + loc_database_enumerator_next_network(a)LIBLOC_1 0.9.4
> + loc_database_enumerator_ref(a)LIBLOC_1 0.9.4
> + loc_database_enumerator_set_asns(a)LIBLOC_1 0.9.5
> + loc_database_enumerator_set_countries(a)LIBLOC_1 0.9.5
> + loc_database_enumerator_set_family(a)LIBLOC_1 0.9.4
> + loc_database_enumerator_set_flag(a)LIBLOC_1 0.9.4
> + loc_database_enumerator_set_string(a)LIBLOC_1 0.9.4
> + loc_database_enumerator_unref(a)LIBLOC_1 0.9.4
> + loc_database_get_as(a)LIBLOC_1 0.9.4
> + loc_database_get_country(a)LIBLOC_1 0.9.4
> + loc_database_get_description(a)LIBLOC_1 0.9.4
> + loc_database_get_license(a)LIBLOC_1 0.9.4
> + loc_database_get_vendor(a)LIBLOC_1 0.9.4
> + loc_database_lookup(a)LIBLOC_1 0.9.4
> + loc_database_lookup_from_string(a)LIBLOC_1 0.9.4
> + loc_database_new(a)LIBLOC_1 0.9.4
> + loc_database_ref(a)LIBLOC_1 0.9.4
> + loc_database_unref(a)LIBLOC_1 0.9.4
> + loc_database_verify(a)LIBLOC_1 0.9.4
> + loc_discover_latest_version(a)LIBLOC_1 0.9.4
> + loc_get_log_priority(a)LIBLOC_1 0.9.4
> + loc_network_address_family(a)LIBLOC_1 0.9.4
> + loc_network_cmp(a)LIBLOC_1 0.9.5
> + loc_network_exclude(a)LIBLOC_1 0.9.5
> + loc_network_exclude_list(a)LIBLOC_1 0.9.5
> + loc_network_format_first_address(a)LIBLOC_1 0.9.4
> + loc_network_format_last_address(a)LIBLOC_1 0.9.4
> + loc_network_get_asn(a)LIBLOC_1 0.9.4
> + loc_network_get_country_code(a)LIBLOC_1 0.9.4
> + loc_network_get_first_address(a)LIBLOC_1 0.9.5
> + loc_network_get_last_address(a)LIBLOC_1 0.9.5
> + loc_network_has_flag(a)LIBLOC_1 0.9.4
> + loc_network_is_subnet(a)LIBLOC_1 0.9.5
> + loc_network_list_clear(a)LIBLOC_1 0.9.5
> + loc_network_list_contains(a)LIBLOC_1 0.9.5
> + loc_network_list_dump(a)LIBLOC_1 0.9.5
> + loc_network_list_empty(a)LIBLOC_1 0.9.5
> + loc_network_list_get(a)LIBLOC_1 0.9.5
> + loc_network_list_merge(a)LIBLOC_1 0.9.5
> + loc_network_list_new(a)LIBLOC_1 0.9.5
> + loc_network_list_pop(a)LIBLOC_1 0.9.5
> + loc_network_list_pop_first(a)LIBLOC_1 0.9.5
> + loc_network_list_push(a)LIBLOC_1 0.9.5
> + loc_network_list_ref(a)LIBLOC_1 0.9.5
> + loc_network_list_size(a)LIBLOC_1 0.9.5
> + loc_network_list_unref(a)LIBLOC_1 0.9.5
> + loc_network_match_address(a)LIBLOC_1 0.9.5
> + loc_network_match_asn(a)LIBLOC_1 0.9.4
> + loc_network_match_country_code(a)LIBLOC_1 0.9.4
> + loc_network_match_flag(a)LIBLOC_1 0.9.4
> + loc_network_new(a)LIBLOC_1 0.9.4
> + loc_network_new_from_string(a)LIBLOC_1 0.9.4
> + loc_network_overlaps(a)LIBLOC_1 0.9.5
> + loc_network_prefix(a)LIBLOC_1 0.9.5
> + loc_network_ref(a)LIBLOC_1 0.9.4
> + loc_network_set_asn(a)LIBLOC_1 0.9.4
> + loc_network_set_country_code(a)LIBLOC_1 0.9.4
> + loc_network_set_flag(a)LIBLOC_1 0.9.4
> + loc_network_str(a)LIBLOC_1 0.9.4
> + loc_network_subnets(a)LIBLOC_1 0.9.5
> + loc_network_unref(a)LIBLOC_1 0.9.4
> + loc_new(a)LIBLOC_1 0.9.4
> + loc_ref(a)LIBLOC_1 0.9.4
> + loc_set_log_fn(a)LIBLOC_1 0.9.4
> + loc_set_log_priority(a)LIBLOC_1 0.9.4
> + loc_stringpool_add(a)LIBLOC_PRIVATE 0.9.4
> + loc_stringpool_dump(a)LIBLOC_PRIVATE 0.9.4
> + loc_stringpool_get(a)LIBLOC_PRIVATE 0.9.4
> + loc_stringpool_get_size(a)LIBLOC_PRIVATE 0.9.4
> + loc_stringpool_new(a)LIBLOC_PRIVATE 0.9.4
> + loc_stringpool_ref(a)LIBLOC_PRIVATE 0.9.4
> + loc_stringpool_unref(a)LIBLOC_PRIVATE 0.9.4
> + loc_unref(a)LIBLOC_1 0.9.4
> + loc_writer_add_as(a)LIBLOC_1 0.9.4
> + loc_writer_add_country(a)LIBLOC_1 0.9.4
> + loc_writer_add_network(a)LIBLOC_1 0.9.4
> + loc_writer_get_description(a)LIBLOC_1 0.9.4
> + loc_writer_get_license(a)LIBLOC_1 0.9.4
> + loc_writer_get_vendor(a)LIBLOC_1 0.9.4
> + loc_writer_new(a)LIBLOC_1 0.9.4
> + loc_writer_ref(a)LIBLOC_1 0.9.4
> + loc_writer_set_description(a)LIBLOC_1 0.9.4
> + loc_writer_set_license(a)LIBLOC_1 0.9.4
> + loc_writer_set_vendor(a)LIBLOC_1 0.9.4
> + loc_writer_unref(a)LIBLOC_1 0.9.4
> + loc_writer_write(a)LIBLOC_1 0.9.4
> diff --git a/debian/location-python.examples b/debian/location-python.examples
> new file mode 100644
> index 0000000..489d2cb
> --- /dev/null
> +++ b/debian/location-python.examples
> @@ -0,0 +1,3 @@
> +examples/private-key.pem
> +examples/public-key.pem
> +examples/python/
> diff --git a/debian/rules b/debian/rules
> index 8893b7b..05b88fd 100755
> --- a/debian/rules
> +++ b/debian/rules
> @@ -18,3 +18,11 @@ override_dh_perl:
>
> override_dh_systemd_enable:
> dh_systemd_enable location-update.timer
> +
> +override_dh_install:
> + dh_install
> + # lintian: unknown-file-in-python-module-directory
> + rm debian/location-python/usr/lib/python3*/site-packages/_location.la
> + # linitan: binaries-have-file-conflict (d/location-importer.install)
> + rm debian/location-python/usr/lib/python3*/site-packages/location/database.py
> + rm debian/location-python/usr/lib/python3*/site-packages/location/importer.py
> diff --git a/debian/watch b/debian/watch
> new file mode 100644
> index 0000000..19ace6d
> --- /dev/null
> +++ b/debian/watch
> @@ -0,0 +1,3 @@
> +version=4
> +https://source.ipfire.org/releases/libloc/ \
> + @PACKAGE@@ANY_VERSION@@ARCHIVE_EXT@ debian uupdate
> diff --git a/src/systemd/location-update.service.in b/src/systemd/location-update.service.in
> index daae2c5..1c8e116 100644
> --- a/src/systemd/location-update.service.in
> +++ b/src/systemd/location-update.service.in
> @@ -1,5 +1,6 @@
> [Unit]
> Description=Automatic Location Database Updater
> +Documentation=man:location(8) https://man-pages.ipfire.org/libloc/location.html
> Requires=network.target
>
> [Service]
> --
> 2.31.1
>
next prev parent reply other threads:[~2021-04-15 11:06 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-04-15 10:30 Valters Jansons
2021-04-15 11:06 ` Michael Tremer [this message]
2021-04-15 12:31 ` Valters Jansons
2021-04-16 10:30 ` Michael Tremer
2021-04-16 11:33 ` Valters Jansons
2021-04-19 13:20 ` Michael Tremer
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=9BB4FDFC-7206-4EC0-A98D-13D2F8DA7241@ipfire.org \
--to=michael.tremer@ipfire.org \
--cc=location@lists.ipfire.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox