vcswatch reports that
this package seems to have new commits in its VCS but has
not yet updated debian/changelog. You should consider updating
the Debian changelog and uploading this new version into the archive.
Here are the relevant commit logs:
commit 56842b3bb19eb0e5b94c5e4377a016c34b7db00d
Author: Nicolas Schier <nicolas@fjasle.eu>
Date: Sun Feb 25 21:56:10 2024 +0100
Update changelog for 0.69-1 release
commit 5be1e332de7b3b313667fed2dacd520a751b8a01
Author: Nicolas Schier <nicolas@fjasle.eu>
Date: Sun Feb 25 21:52:51 2024 +0100
Add initial debian/gbp.conf
Signed-off-by: Nicolas Schier <nicolas@fjasle.eu>
commit 6a3e783cadbb724c5b83ba19a44f89b0631ffba8
Merge: 94d143a 0675c6e
Author: Nicolas Schier <nicolas@fjasle.eu>
Date: Sun Feb 25 21:50:45 2024 +0100
Merge tag 'upstream/0.69' into debian/latest
tagging package moreutils version 0.69
Updated debian/changelog.upstream.
Signed-off-by: Nicolas Schier <nicolas@fjasle.eu>
commit 0675c6ea5368f0843a91c28a472247b8f26015cf
Author: Joey Hess <joeyh@joeyh.name>
Date: Sun Feb 25 15:43:16 2024 -0400
Makefile: Warn users of pkgx.dev about their poor life choices
Their current installation script prevents installing man pages
(lol) by instead installing a .noop file (double lol). This allows
detecting it and warning the user.
I have requested that they not include moreutils.
https://github.com/pkgxdev/pantry/issues/5359
Evidence of their AI use.
https://github.com/pkgxdev/pantry/issues/5358
commit 94d143ac0889c307905366f29df8641743d8eb71
Author: Nicolas Schier <nicolas@fjasle.eu>
Date: Fri Feb 9 17:44:52 2024 +0100
Update copyright years
Signed-off-by: Nicolas Schier <nicolas@fjasle.eu>
commit ff9007311b12b465c09a6f534519a2f8586fb933
Author: Nicolas Schier <nicolas@fjasle.eu>
Date: Fri Feb 9 17:41:26 2024 +0100
Bump standards version to 4.6.2 (no changes required)
Signed-off-by: Nicolas Schier <nicolas@fjasle.eu>
commit cb59ea4009bac8a6811c7d091f4c203a1eec7bf3
Author: Nicolas Schier <nicolas@fjasle.eu>
Date: Tue Feb 6 21:14:08 2024 +0100
Update changelog for 0.68-1 release
commit 5c80ffa849ac2e4ca74c4814aeb4971c1b56393a
Merge: e31f0ff 193de90
Author: Nicolas Schier <nicolas@fjasle.eu>
Date: Tue Feb 6 21:07:21 2024 +0100
Merge tag 'upstream/0.68' into debian/latest
tagging package moreutils version 0.68
Moved upstream changelog entry to debian/changelog.upstream.
Signed-off-by: Nicolas Schier <nicolas@fjasle.eu>
commit 193de902449d5715a09172b69202bde4907ca6e6
Author: Joey Hess <joeyh@joeyh.name>
Date: Tue Nov 28 14:10:55 2023 -0400
releasing package moreutils version 0.68
commit cab42bc2cd1eff877f19c6f2382b5caebe7eedfd
Author: Joey Hess <joeyh@joeyh.name>
Date: Wed Aug 30 13:33:43 2023 -0400
vidir: Zero pad line numbers
To work better when used with a small tab size such as 2, with which
filenames after 9 didn't line up with ones before.
This is particularly useful when doing block select operations on
filenames, eg adding text to the beginning of each.
Thanks, Johan Grande
commit e31f0ff6c069e16b23c65efe0c94ca47329aa411
Merge: f5b8c4d aed8cec
Author: Nicolas Schier <nicolas@fjasle.eu>
Date: Mon Jan 2 07:53:14 2023 +0000
Merge branch 'scrub-obsolete' into 'debian/latest'
Remove unnecessary constraints
See merge request nsc/moreutils!2
commit aed8cec33d7aca433bdb8c59cb6f049851653662
Author: Debian Janitor <janitor@jelmer.uk>
Date: Tue Oct 18 02:36:37 2022 +0000
Remove constraints unnecessary since buster (oldstable)
* Build-Depends: Drop versioned constraint on dpkg-dev.
Changes-By: deb-scrub-obsolete
commit e3759443a08e72020918a88cee4255ef3f78f879
Author: Joey Hess <joeyh@joeyh.name>
Date: Wed May 18 12:47:57 2022 -0400
changelog
commit 6729ba31a844389bbf4decb77992d228f5dba909
Author: Mikel Olasagasti Uranga <mikel@olasagasti.info>
Date: Tue May 17 12:52:08 2022 +0200
Use pclose() instead of fclose()
The return value from popen() is a normal standard I/O stream in all
respects save that it must be closed with pclose() rather than
fclose(3).
Solves the following warning when compiled with -Wmismatched-dealloc:
errno.c: In function ‘search_all’:
errno.c:126:5: warning: ‘fclose’ called on pointer returned from a
mismatched allocation function
[-Wmismatched-dealloc]
126 | fclose(f);
| ^~~~~~~~~
errno.c:113:9: note: returned from ‘popen’
113 | f = popen("locale -a", "r");
| ^~~~~~~~~~~~~~~~~~~~~~~