Change logs for update-inetd source package in Sid

  • update-inetd (4.53) unstable; urgency=medium
    
      * Packaging:
        - Do not trim debian/changelog.
        - Update copyright years.
    
     -- Guillem Jover <email address hidden>  Sun, 26 Feb 2023 23:37:54 +0100
  • update-inetd (4.52) unstable; urgency=medium
    
      * Use /run instead of deprecated /var/run.
      * Use L<name(N)> instead of B<name>(N) for man page references.
      * Use () instead of // for qw in function imports.
      * Use mktemp(1) instead of obsolete tempfile(1).
      * Packaging:
        - Switch to Standards-Version 4.6.2 (no changes needed).
        - Update gitignore.
        - Generate man pages with correct metadata.
        - Update lintian overrides.
      * Test suite:
        - Remove unused import.
        - Fix invoke-rc.d typo in comment.
        - Fix update-inetd typo in output message.
    
     -- Guillem Jover <email address hidden>  Thu, 09 Feb 2023 23:19:30 +0100
  • update-inetd (4.51) unstable; urgency=medium
    
      * Switch to debhelper compatibility level 13.
      * Switch from debian/compat to debhelper-commpat in Build-Depends.
      * Switch to Standards-Version 4.5.1.
      * Fix debconf po files:
        - Recode de.po and es.po to UTF-8.
        - Fill Language field in po files.
        - Remove trailing junk from pt_BR.po header msgid.
        - Fix Project-Id-Version in po files.
        - Replace boilerplate project name template with the actual name.
        - Fix Korean and Swedish address in Language-Team field.
        - Fix or fill in missing translations author entries.
        - Fix language name in Language-Team fields.
        - Fix comment header.
        - Fix invalid date in da.po.
      * Update copyright years in debian/copyright.
      * Switch to dh sequencer.
      * Test suite:
        - Remove perlcritic Documentation::RequirePodLinksIncludeText suppression.
    
     -- Guillem Jover <email address hidden>  Thu, 24 Dec 2020 19:42:29 +0100
  • update-inetd (4.50) unstable; urgency=medium
    
      * Support checking the installed code in addition to the local one.
      * Add new autopkgtest to check the installed command.
      * Bump Standards-Version to 4.3.0 (no changes needed).
    
     -- Guillem Jover <email address hidden>  Tue, 05 Mar 2019 04:53:15 +0100
  • update-inetd (4.49) unstable; urgency=medium
    
      * Preserve the original @ARGV, to pass it to the Debconf module so that
        when that tries to reexecute us we get the correct arguments.
        Fixes regression introduced in 4.46.
    
     -- Guillem Jover <email address hidden>  Sat, 29 Sep 2018 10:46:39 +0200
  • update-inetd (4.48) unstable; urgency=medium
    
      * Add debconf translations:
        - Catalan (Guillem Jover).
      * Bump Standards-Version to 4.2.0 (no changes needed).
      * Turn the --group and --pattern usage with --add into a warning. While
        it is invalid usage, it does not deserve (yet) the unexpected breakage
        it is causing. Let's postpone erroring out for later. Closes: #909758
    
     -- Guillem Jover <email address hidden>  Fri, 28 Sep 2018 10:12:53 +0200
  • update-inetd (4.47) unstable; urgency=medium
    
      * Print “error: ” after program name when emitting error messages from
        the DebianNet perl module.
      * Do not fail on missing inetd.conf, only warn on add or enable actions.
        When we are removing or disabling a service, a missing inetd.conf has the
        same effect we desired, so we should just not error out. When we are adding
        or enabling a service, a missing inetd.conf will mean the service will not
        get acted on. In most cases this will happen due to packages depending
        explicitly on updated-inetd instead of an inet-superserver, which is not
        the correct interface contract provided. But given the amount of packages
        currently breaking that contract, and that we should be switching to
        declarative inetd configuration soon enough, trying to fix this right
        now, seems counter productive. Closes: #905964
      * Test suite:
        - Make it possible to pass run options from update_inetd() function.
        - Move update-inetd command line definition inside update_inetd() function.
    
     -- Guillem Jover <email address hidden>  Mon, 20 Aug 2018 20:21:09 +0200
  • update-inetd (4.46) unstable; urgency=medium
    
      * Switch git repository to permanent URL, containing all known history
        imported.
      * Add new CHANGES POD section in DebianNet module.
      * Move xinetd handling into DebianNet module.
      * Unify debug, warning and error output.
      * Check whether --group and --pattern is used with the correct commands.
        (Closes: #374542)
      * Improve --help output and man page documentation on commands, options,
        their arguments, and the order they are listed. (Closes: #311111)
      * Bump Standards-Version to 4.2.0 (no changes needed).
      * Code cleanup:
        - Declare all variables with our or my.
        - Use a typeglob instead of redefining fallback functions.
        - Modernize print calls, by removing parens, surrounding file handle
          with {}, and using low-precedence operators for die calls.
        - Do not import Debconf::Client::ConfModule module globally, which means
          we will stop getting annoying warnings when testing as non-root.
        - Switch from require to use.
        - Enable strict and warnings pragmas.
        - Get rid of an indentation level by folding an if into an elsif.
        - Do not interpolate string literals.
        - Use Carp instead of warn without newline for an internal error.
        - Convert a print STDERR into a printv.
        - Switch from print STDERR to warn.
        - Use braces around the filehande with print.
        - Make Heredoc terminator quoting style explicit.
        - Use a filehandle variables instead of a barewords.
        - Do not use the two-argument form of open.
        - Uppercase all package variables.
        - Check open() return value.
        - Use braces for regex delimiters.
        - Do not use unless with negative expressions.
        - Do not mix boolean operators of different precedence.
        - Remove useless topic variable usage.
        - Remove regex captures that are unused.
        - Use old decimal instead of dotted-decimal version.
        - Force a scalar context to fix perlcritic false positive.
        - Use List::Util instead of grep in boolean context.
        - Do not use & sigil for function calls.
        - Unpack arguments in printv().
        - Use m{} instead of m// to avoid having to escape /.
        - Stop requiring a newline for printv() calls.
        - Use proper balanced single quotes instead of unbalanced `' pairs.
        - Use low precedence or operators for die fallback call.
        - Use //= instead of "unless (defined $var) { $var = value }".
        - Switch statements to post-conditions.
        - Remove parenthesis for builtins.
        - Surround assignment operator with spaces.
        - Remove trailing semicolon after if block.
        - Bump minimum perl version to 5.010.
        - Prefix private functions with an underscore.
        - Add a space after «my» keywords.
        - Use foreach loops with explicit variables instead of while loops with
          the topic variable.
      * Test suite:
        - Add syntax and coding style unit tests.
        - Add new POD unit tests.
    
     -- Guillem Jover <email address hidden>  Sat, 04 Aug 2018 15:55:57 +0200
  • update-inetd (4.45) unstable; urgency=medium
    
      * Adopt package. (Closes: #719794)
      * Update Vcs fields for move to git.hadrons.org.
      * Line wrap and sort dependency fields.
      * Remove versioned Build-Depends on Essential:yes coreutils, satisfied
        in oldstable.
      * Remove versioned Replaces/Breaks on netbase, satisfied in oldstable.
      * Fix debian/rules target relationship and dependencies.
      * Fix perl dependencies:
        - Remove bogus dependency on libfile-copy-recursive-perl, unused.
        - Remove dependency on libfile-temp-perl, a virtual provided by
          perl-base, which is Essential:yes.
        - Add a dependency on ${perl:Depends} and call dh_perl.
      * Namespace debhelper files with package name.
      * Move debhelper command arguments into debhelper files.
      * Bump debhelper to compatibility level 11.
      * Unify license and copyright file headers.
      * Switch debian/copyright to machine readable format.
      * Bump Standards-Version to 4.1.4 (no changes needed).
      * Rewrite the test suite from python to perl.
      * Convert and merge the man page into inline POD in the perl module.
      * Convert update-inetd man page into POD.
      * Set Rules-Requires-Root to no.
    
     -- Guillem Jover <email address hidden>  Mon, 14 May 2018 03:16:50 +0200
  • update-inetd (4.44) unstable; urgency=low
    
      * Orphan package.
      * Drop README, which points to long-deprecated DEP9 (Closes: #849457).
      * Bump up debhelper compatibility level to 9, and update versioned Build-Dep
        for debhelper.
      * Fix dh-clean-k-is-deprecated and vcs-field-not-canonical lintian warnings.
      * Bump up standards version to 3.9.8 (no changes).
    
     -- Serafeim Zanikolas <email address hidden>  Sun, 15 Jan 2017 11:37:03 +0000
  • update-inetd (4.43) unstable; urgency=low
    
    
      * Add --pattern support for remove mode
      * Update manpage
        - Document support for --pattern and --multi in remove mode
        - Fix argument type for --remove (was documented as ENTRY, whereas it is
          SERVICE)
        - Add copyright notice for myself in manpage
    
     -- Serafeim Zanikolas <email address hidden>  Sun, 03 Jun 2012 00:10:20 +0200
  • update-inetd (4.42) unstable; urgency=low
    
    
      * Declare as Multi-Arch: foreign; thanks to Goswin von Brederlow
        <email address hidden> (Closes: #673398).
      * Add Polish translation; thanks to Michał Kułach" <email address hidden>
        (Closes: #670646).
      * Bump Standards-Version to 3.9.3 (no changes)
      * Add copyright notices for myself in debian/copyright, update-inetd, and
        DebianNet.pm
      * Drop TODO file and add README file, which declares update-inetd as
        deprecated and points to reconf-inetd and DEP9
    
     -- Serafeim Zanikolas <email address hidden>  Sun, 20 May 2012 16:24:48 +0200
  • update-inetd (4.41) unstable; urgency=low
    
    
      * Fall back to external 'tempfile' and 'mv' commands in case perl-base and
        perl-modules are out of sync during an upgrade (Closes: #649174;
        LP: #862129). Thanks to Colin Watson <email address hidden> for the bug
        report and patch.
    
     -- Serafeim Zanikolas <email address hidden>  Tue, 22 Nov 2011 23:15:02 +0100
  • update-inetd (4.40) unstable; urgency=low
    
    
      * Fix breakage with non-default inetd packages (Closes: #638180)
      * Add Slovak translation (thanks, Slavko <email address hidden>;
        Closes: #639449)
    
     -- Serafeim Zanikolas <email address hidden>  Sun, 11 Sep 2011 19:03:14 +0200
  • update-inetd (4.39) unstable; urgency=low
    
    
      * Add Korean translation (thanks, Min-Ji Kang <email address hidden>;
        closes: #632020).
      * Thanks to Christian Perrier <email address hidden> for the NMU.
      * debian/rules: add build-arch and build-indep targets
      * Bump Standards-Version to 3.9.2
        - replace Conflicts, with Breaks and Replaces
    
     -- Serafeim Zanikolas <email address hidden>  Sun, 07 Aug 2011 19:17:05 +0200
  • update-inetd (4.38+nmu1) unstable; urgency=low
      * Non-maintainer upload.  * Fix encoding of Danish debconf translation. -- Christian Perrier <email address hidden>  Wed, 12 Jan 2011 07:43:19 +0100
  • update-inetd (4.38) unstable; urgency=low
    
    
      * debconf template translations:
        - Update Danish (thanks, Joe Dalton; closes: #599451).
    
     -- Serafeim Zanikolas <email address hidden>  Sun, 17 Oct 2010 00:05:34 +0200
  • update-inetd (4.37) unstable; urgency=low
    
    
      * Workaround debconf hanging by closing fd 3 in invoke-rc.d
        invocation (Closes: #589487). Thanks to Ben Hutchings
        <email address hidden>
      * Bump Standards-Version to 3.9.1 (no changes)
      * debian/control:Maintainer: set to my debian email address
    
     -- Serafeim Zanikolas <email address hidden>  Mon, 09 Aug 2010 11:12:00 +0200
  • update-inetd (4.36) unstable; urgency=low
    
    
      * Remove "there are plans to support xinetd" from long description (see
        message #116 in bug report #8927)
      * Trim bug report list, and point to proposal for re-design of update-inetd
        in TODO file
      * Bump Standards-Version to 3.8.4 (no changes)
      * Switch dpkg-source format to 3.0 (native)
      * Fix lintian warning (spelling-error-in-manpage)
    
     -- Serafeim Zanikolas <email address hidden>  Sat, 13 Feb 2010 18:50:20 +0100
  • update-inetd (4.35) unstable; urgency=low
    
    
      * Add missing dependencies on libfile-temp-perl (which, is provided by the
        confusingly Build-Essential but not Essential perl-modules package) and
        libfile-copy-recursive-perl (Closes: #548164).
      * Do not install /etc/inetd.conf.d/ until a consensus is reached on how to
        improve update-inetd
    
     -- Serafeim Zanikolas <email address hidden>  Sun, 27 Sep 2009 12:15:15 +0200
  • update-inetd (4.34) unstable; urgency=low
    
    
      * In tests.py, check only atime, mtime, and file size (Closes: #546782)
      * Add tests to ensure that inetd is notified only when inetd.conf is
        actually changed by update-inetd
      * When xinetd is installed, ensure update-inetd always restarts it
        (regardless of whether there are any configuration changes, since
        update-inetd cannot tell that anyway)
    
     -- Serafeim Zanikolas <email address hidden>  Sun, 20 Sep 2009 16:51:37 +0200
  • update-inetd (4.33) unstable; urgency=low
    
    
      * Do not assume that /tmp is in the same partition as /etc (Closes: #544841)
      * Reduce package priority from important to optional
    
     -- Serafeim Zanikolas <email address hidden>  Thu, 03 Sep 2009 22:12:09 +0200
  • update-inetd (4.31) unstable; urgency=low
    
    
      * Depend on debconf again and try to do it properly now:
    
      [ Christian Perrier ]
      - Reintroduce debconf templates I abusively and mistakenly removed.
      - As a consequence, also update translations I closed in former NMU:
        Spanish, Brazilian Portuguese, Swedish, Turkish, Romanian, Italian
    
      [ Luk Claes ]
      - Avoid output to stdout.
      - Install lintian override to avoid getting on the wrong list :-)
    
     -- Luk Claes <email address hidden>  Thu, 04 Sep 2008 20:58:20 +0200