summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* sys-apps/util-linux: add 2.39.2Sam James2023-08-183-7/+396
| | | | | | | | Drop old test workaround while at it (the source file changed so it wasn't doing anything). Bug: https://bugs.gentoo.org/593304 Signed-off-by: Sam James <sam@gentoo.org>
* sys-apps/sysvinit: Add postinst message about halt bugfixUlrich Müller2023-08-171-0/+9
| | | | | Bug: https://bugs.gentoo.org/911257#c7 Signed-off-by: Ulrich Müller <ulm@gentoo.org>
* sys-apps/busybox: drop 1.35.0-r2Viorel Munteanu2023-08-173-412/+0
| | | | Signed-off-by: Viorel Munteanu <ceamac@gentoo.org>
* sys-apps/busybox: drop 1.34.1-r2Viorel Munteanu2023-08-172-373/+0
| | | | Signed-off-by: Viorel Munteanu <ceamac@gentoo.org>
* sys-apps/heirloom-tools: update LICENSEUlrich Müller2023-08-171-1/+1
| | | | Signed-off-by: Ulrich Müller <ulm@gentoo.org>
* licenses: Rename 9base to LPL-1.2Ulrich Müller2023-08-171-1/+1
| | | | | | | | | Delete initial text which isn't part of the license itself. Add LPL-1.2 to license-mapping.conf. Update all ebuilds using it. Signed-off-by: Ulrich Müller <ulm@gentoo.org>
* sys-apps/memtest86-bin: add 10.6, drop 10.5Andrew Ammerlaan2023-08-172-7/+7
| | | | | | | | This really needs a static versioned url otherwise it will just keep breaking. Closes: https://bugs.gentoo.org/912388 Signed-off-by: Andrew Ammerlaan <andrewammerlaan@gentoo.org>
* sys-apps/heirloom-tools: Don't create subdirs in /usr/binUlrich Müller2023-08-172-94/+98
| | | | | | | | | | | | The FHS says that /usr/bin has no subdirectories: https://refspecs.linuxfoundation.org/FHS_3.0/fhs/ch04s04.html#requirements9a Therefore, install the binaries in /usr/lib instead. EAPI 8. Inherit and use readme.gentoo-r1.eclass. Update HOMEPAGE and SRC_URI. Specify LICENSE more precisely ("or later" for GPL and LGPL). Other minor QA fixes. Signed-off-by: Ulrich Müller <ulm@gentoo.org>
* sys-apps/ipmicfg: use secureboot.eclass to sign efi execAndrew Ammerlaan2023-08-171-0/+7
| | | | | | Signed-off-by: Andrew Ammerlaan <andrewammerlaan@gentoo.org> Closes: https://github.com/gentoo/gentoo/pull/31843 Signed-off-by: Andrew Ammerlaan <andrewammerlaan@gentoo.org>
* sys-apps/memtest86+: use secureboot.eclass to sign efi execAndrew Ammerlaan2023-08-171-1/+11
| | | | Signed-off-by: Andrew Ammerlaan <andrewammerlaan@gentoo.org>
* sys-apps/memtest86-bin: use secureboot.eclass to sign efi execAndrew Ammerlaan2023-08-171-1/+3
| | | | Signed-off-by: Andrew Ammerlaan <andrewammerlaan@gentoo.org>
* sys-apps/shadow: add 4.14.0Sam James2023-08-172-0/+272
| | | | | | | | | | | | | | | | | | The libbsd situation isn't ideal, but I don't feel we have a better option for now. libbsd is used for two things: 1. readpassphrase(3) - not implemented in glibc, not aware of any plans to either 2. strlcpy(3) - implemented in >=glibc-2.38 (also in musl already) With --disable-libbsd, shadow will use a bundled copy of readpassphrase.c, but it still needs a system copy of strlcpy (=> libbsd if older glibc), disappointingly. So, for now, depend on libbsd, and then when glibc-2.38 is stable, re-evaluate. We could do a || ( ... ) dep now but it's, at minimum, likely to confuse Portage and users. Signed-off-by: Sam James <sam@gentoo.org>
* sys-apps/kbd: add 2.6.2Sam James2023-08-172-0/+87
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* sys-apps/systemd: backport tmpfiles/udev fixMike Gilbert2023-08-162-0/+253
| | | | | Closes: https://bugs.gentoo.org/911723 Signed-off-by: Mike Gilbert <floppym@gentoo.org>
* sys-apps/osinfo-db: Drop old versionsMatt Turner2023-08-162-26/+0
| | | | Signed-off-by: Matt Turner <mattst88@gentoo.org>
* sys-apps/texinfo: add 7.0.90 (unkeyworded)Sam James2023-08-162-0/+83
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* sys-apps/shadow: Stabilize 4.13-r4 arm, #909740Arthur Zamarin2023-08-161-1/+1
| | | | Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
* sys-apps/portage: Don't run _compat_upgrade when ROOT!=/James Le Cuirot2023-08-152-2/+2
| | | | | | | | | | | Even if you point to the right config directory with PORTAGE_CONFIGROOT, these still load the default config files from /usr/share/portage rather than ${ROOT}/usr/share/portage and therefore do the wrong thing. portage._compat_upgrade.default_locations also cannot tell what ROOT's directories will look like later, so we should not take action based on these. Signed-off-by: James Le Cuirot <chewi@gentoo.org>
* sys-apps/accountsservice: depend on sys-apps/dbusMike Gilbert2023-08-151-1/+3
| | | | | | | | As reported by dwfreed: meson.build:167:11: ERROR: Dependency "dbus-1" not found, tried pkgconfig and cmake Signed-off-by: Mike Gilbert <floppym@gentoo.org>
* sys-apps/portage: Stabilize 3.0.49-r2 ppc, #912222Sam James2023-08-151-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* sys-apps/memtest86: fix missing dollar sign in shell variableDustin Smith2023-08-142-1/+1
| | | | | | | | | | | Per shellcheckbot, the shell script 39_memtest86-r1 is using the literal string {submenu_indentation} rather than the variable $submenu_indentation. This commit fixes that. Closes: https://bugs.gentoo.org/839168 Signed-off-by: Dustin Smith <d.usty360@gmail.com> Closes: https://github.com/gentoo/gentoo/pull/32314 Signed-off-by: Mike Gilbert <floppym@gentoo.org>
* sys-apps/pcmciautils: add 018_p14Ben Kohler2023-08-142-0/+89
| | | | | | | | Closes: https://bugs.gentoo.org/725788 Closes: https://bugs.gentoo.org/832880 Closes: https://bugs.gentoo.org/851819 Signed-off-by: Ben Kohler <bkohler@gentoo.org>
* sys-apps/xdg-dbus-proxy: Version bump to 0.1.5Guillermo Joandet2023-08-142-0/+38
| | | | | | Signed-off-by: Guillermo Joandet <gjoandet@gmail.com> Closes: https://github.com/gentoo/gentoo/pull/32279 Signed-off-by: Matt Turner <mattst88@gentoo.org>
* sys-apps/system-monitoring-center: drop old 2.21.0Maciej Barć2023-08-132-44/+0
| | | | Signed-off-by: Maciej Barć <xgqt@gentoo.org>
* sys-apps/system-monitoring-center: bump to 2.21.1Maciej Barć2023-08-132-0/+44
| | | | Signed-off-by: Maciej Barć <xgqt@gentoo.org>
* sys-apps/systemd: remove unused patchesMichael Mair-Keimberger2023-08-133-154/+0
| | | | | | Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/32297 Signed-off-by: Mike Gilbert <floppym@gentoo.org>
* sys-apps/portage: Stabilize 3.0.49-r2 ppc64, #912222Arthur Zamarin2023-08-131-1/+1
| | | | Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
* sys-apps/portage: Stabilize 3.0.49-r2 hppa, #912222Arthur Zamarin2023-08-131-1/+1
| | | | Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
* sys-apps/portage: Stabilize 3.0.49-r2 x86, #912222Arthur Zamarin2023-08-131-1/+1
| | | | Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
* sys-apps/portage: Stabilize 3.0.49-r2 amd64, #912222Arthur Zamarin2023-08-131-1/+1
| | | | Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
* sys-apps/portage: Stabilize 3.0.49-r2 sparc, #912222Arthur Zamarin2023-08-131-1/+1
| | | | Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
* sys-apps/portage: Stabilize 3.0.49-r2 arm, #912222Arthur Zamarin2023-08-131-1/+1
| | | | Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
* sys-apps/portage: Stabilize 3.0.49-r2 arm64, #912222Arthur Zamarin2023-08-131-1/+1
| | | | Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
* sys-apps/less: add 643Sam James2023-08-134-18/+156
| | | | | Closes: https://bugs.gentoo.org/910700 Signed-off-by: Sam James <sam@gentoo.org>
* sys-apps/system-monitoring-center: bump to 2.21.0Maciej Barć2023-08-132-0/+44
| | | | Signed-off-by: Maciej Barć <xgqt@gentoo.org>
* sys-apps/system-monitoring-center: drop old 2.14.0-r1Maciej Barć2023-08-132-38/+0
| | | | Signed-off-by: Maciej Barć <xgqt@gentoo.org>
* sys-apps/openrazer: Stabilize 3.6.1-r2 amd64, #912048Arthur Zamarin2023-08-121-1/+1
| | | | Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
* sys-apps/mawk: add 1.3.4_p20230808Sam James2023-08-122-0/+53
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* sys-apps/eless: Stabilize 0.7 amd64, #912086Sam James2023-08-121-2/+2
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* sys-apps/mawk: add 1.3.4_p20230730Sam James2023-08-102-0/+53
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* sys-apps/systemd: drop 254, 254-r1, 254-r2Sam James2023-08-104-1582/+0
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* sys-apps/systemd-utils: add 253.8Sam James2023-08-092-0/+536
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* sys-apps/systemd: add 253.8Sam James2023-08-092-0/+515
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* sys-apps/inxi: drop 3.3.20.1, 3.3.25.1Jonas Stein2023-08-093-66/+0
| | | | Signed-off-by: Jonas Stein <jstein@gentoo.org>
* sys-apps/inxi: add 3.3.28.1Jonas Stein2023-08-092-0/+33
| | | | Signed-off-by: Jonas Stein <jstein@gentoo.org>
* sys-apps/systemd: add 254.1Sam James2023-08-092-0/+526
| | | | | Bug: https://bugs.gentoo.org/911723 Signed-off-by: Sam James <sam@gentoo.org>
* sys-apps/fwupd: drop myself as maintainer.Piotr Karbowski2023-08-091-4/+0
| | | | Signed-off-by: Piotr Karbowski <slashbeast@gentoo.org>
* sys-apps/pmount: drop myself as maintainer; m-n.Piotr Karbowski2023-08-091-4/+1
| | | | Signed-off-by: Piotr Karbowski <slashbeast@gentoo.org>
* sys-apps/fwupd-efi: drop myself as maintainer.Piotr Karbowski2023-08-091-4/+0
| | | | Signed-off-by: Piotr Karbowski <slashbeast@gentoo.org>
* sys-apps/bubblewrap: drop myself as maintainer.Piotr Karbowski2023-08-091-4/+0
| | | | Signed-off-by: Piotr Karbowski <slashbeast@gentoo.org>