Various Gentoo Linux ebuilds, to provide out-of-tree packages and miscellaneous fixes.
- app-containers/buildah
- app-containers/catatonit
- app-containers/conmon
- app-containers/containers-storage
- app-containers/crun
- app-containers/runc
- app-containers/skopeo
- app-containers/slirp4netns
- dev-libs/cyrus-sasl
- dev-libs/glib
- mail-mta/postfix
- net-dns/bind
- net-libs/glib-networking
- net-libs/libtorrent-rasterbar
- dev-python/raspberrypi-gpio
- RPi.GPIO ebuild
- media-libs/raspberrypi-userland
- Replace non-functional Raspian init script with OpenRC equivalent, and update PID location
- sys-apps/raspberrypi-utilities-armv6
- Some Raspberry Pi userland tools are closed-source, and so not available in media-libs/raspberrypi-userland. There (armv6 only, currently) utilities are installed by this package
- sys-boot/raspberrypi-firmware
- Raspberry Pi VideoCore firmware, Device Tree overlays, Kernel image, and kernel modules from a
smart-live-rebuild
-compatible ebuild
- Raspberry Pi VideoCore firmware, Device Tree overlays, Kernel image, and kernel modules from a
sys-boot/raspberrypi-mkimageAdd latest signing tools to enable Device Tree support in self-built kernels
- sys-kernel/raspberrypi-image
- Raspberry Pi latest kernel image
- sys-kernel/raspberrypi-sources
- Raspberry Pi latest kernel sources, from a
smart-live-rebuild
-compatible ebuild
- Raspberry Pi latest kernel sources, from a
- www-apps/rpi-monitor
- Raspberry Pi monitoring web-interface from rpi-experiences.blogspot.fr
Allow sys-kernel/raspberrypi-headers (or virtual/os-headers) as alternative to sys-kernel/linux-headers
- dev-debug/strace
- net-misc/lksctp-tools
- sys-apps/flashrom
- sys-fs/btrfs-progs
- sys-libs/libcap
- sys-libs/liburing
For the High Sierra release, Apple have fixed a known vulnerability by causing
code which uses the '%n
' printf()
format in a string stored in writable
memory to crash with an illegal instruction: 4
error. Sadly, this is a
runtime error rather than a compiler error, making it difficult to detect.
Known failures currently exist in vasnprintf()
implementations - these cases
are automatically detected and patched by deploying the Portage bashrc
override file from local/etc/portage/bashrc
to ${EPREFIX}/etc/portage/
and copying the accomdanying patch from
local/etc/portage/patches/All/vasnprintf.patch
to ${EPREFIX}/etc/portage/patches/All/
.
Two affected packages which use an older vasnprintf()
implementation which is
incompatible with the supplied patch are as follows:
dev-util/pkgconfig- dev-vcs/cvs
... which are explicitly patched in an overlay package.
It is unlikely that this change affects only vasnprintf()
code and no other,
so further patches will likely also be required...
Some packages will fail with illegal instruction: 4
if compiled with certain
compiler-optimisations enabled. Indeed, the -ftrapv
flag will cause clang
to intenionally insert ud2
(Undefined Instruction) op-codes where integer
overflows could occur, and this catches-out a significant number of packages,
causing them to crash with SIGILL
- illegal instruction. To work around this
on a per-package basis where -ftrapv
has not been used during compilation,
perform the following steps:
mkdir ${EPREFIX}/etc/portage/env
cat > ${EPREFIX}/etc/portage/env/debug <<EOF
# Assuming that clang is now default...
#CC="${EPREFIX}/usr/bin/clang"
#CXX="${EPREFIX}/usr/bin/clang++"
CFLAGS="-arch x86_64 -march=x86-64"
CFLAGS="${CFLAGS} -fcolor-diagnostics -O0 -g -pipe"
CFLAGS="${CFLAGS} -Wno-implicit-function-declaration"
CXXFLAGS="${CFLAGS}"
#CXXFLAGS="${CXXFLAGS} -stdlib=libstdc++"
#LDFLAGS="${LDFLAGS} -stdlib=libstdc++"
MAKEOPTS="-j1"
#PKGDIR="${PORTDIR}/packages/clang"
# vi: set syntax=conf:
EOF
cat >> ${EPREFIX}/etc/portage/package.env <<EOF
~sys-devel/binutils-apple-6.1 debug
EOF
... correcting for CFLAGS
as appropriate in
${EPREFIX}/etc/portage/env/debug
.
A similar configuration file could be added for all packages which fail to compile with clang and require gcc. An (unfortunately incomplete) list of these packages consists of:
~dev-vcs/subversion-1.7.19
~sys-devel/binutils-config-3-r03.1
~sys-devel/gcc-apple-4.2.1_p5666
~sys-libs/db-5.2.42
(subversion presents an issue - it cannot be compiled with clang, but if
USE="perl"
then the same compiler must be used to build subversion as was
used to build perl)
... with a slightly larger set of builds failing if FEATURES="strict"
or
FEATURES="stricter"
, or if MAKEOPTS
is not set to "-j1
".
app-arch/lz4Ensure that appropriatePREFIX
directory is available to build system
- app-arch/unzip
- Remove
cc
hard-coding
- Remove
app-crypt/pinentryAdd-Wno-implicit-function-declaration
to work around ncurses-related failures, if supported by the compiler
- app-shells/bash
- Include
<signal.h>
in relevant places to avoid-Wimplicit-function-declaration
errors
- Include
dev-lang/pythonIfconfigure
is not removed after applying the prefix libffi patch,@LIBFFI_LIB@
is never expanded to the correct value even afterautoconf
has completed
dev-libs/aprSupport F_FULLFSYNC on darwin
- dev-libs/gmp
- Add patch to prevent
invalid reassignment of non-absolute variable 'L0m4_tmp'
error
- Add patch to prevent
- dev-libs/jemalloc
- Correct library version used when calling
install_name_tool
- Don't use (64-bit) assembly when
__ILP32__
is defined
- Correct library version used when calling
dev-libs/libksbaOverride-Wall
CFLAG by adding clang#pragma
s to problematic code
dev-libs/liblinearUpdate Makefile to build correctly on darwin
dev-libs/libxsltFix for 'double prefix' QA error introduced in 1.1.28-r2
- dev-libs/openssl
- Add
-Wno-error=unused-command-line-argument
to clang to prevent aborting with anerror
due to-Wa,--noexecstack
, and fix util/domd to treat clang like gcc
- Add
dev-libs/udis86Add${EPREFIX}
todocdir
configure option
dev-python/backports-ssl-match-hostnameChange${ED}
to${D}
to prevent double-prefix path usage QA error
dev-vcs/cvsAllow CVS to build and tests to run on darwin
dev-vcs/subversionCorrect detection of compiler byget-py-info.py
and ensure appropriate compiler is used
net-analyzer/nmapRestoreRT_MSGHDR_ALIGNMENT
definition for building on macOS
- net-analyzer/wireshark
- Remove macOS '-isysroot' argument which broke macOS builds attempting to use SDK library stubs
sys-apps/baselayout-prefixAdd missingrun_applets
prototype
sys-apps/darwin-miscutilsAdd missingmd.c
prototypes and#include
s
sys-apps/gptfdiskAllowgdisk
to build on darwin (there's a separateMakefile
for this platform which doesn't uselibuuid
) and ensure appropriate compiler is used
- sys-apps/help2man
- Ensure that
usr/lib/help2man/bindtextdomain.dylib
is correctly built and named
- Ensure that
sys-apps/manAdd missingstring.h
header tomakemsg.c
sys-apps/texinfoAdd missing#include
sys-devel/gdbFixes for building with clang, building on Yosemite, and building with Python support
sys-devel/gcc-appleFixes for building with clang and building on Yosemite
- sys-devel/llvm
- Additional fixes for darwin
- sys-libs/db
- Prevent clang builtins error due to
__atomic_compare_exchange
function
- Prevent clang builtins error due to
sys-libs/gdbmEnsure that all functions are defined before being called
sys-libs/readlineEnsure that<sys/ioctl.h>
header is included on darwin
- app-admin/mas
- Mac App Store command-line interface (requires
xcodebuild
)
- Mac App Store command-line interface (requires
- app-pda/ipheth-pair
- Tether an Apple iOS device to provide a network-link
- app-pda/libimobiledevice
- git live ebuild for updated libimobiledevice tools
- app-pda/libimobiledevice-glue
- git live ebuild for updated libimobiledevice shared library
app-pda/libplistgit live ebuild for updated plist library
- app-pda/libusbmuxd
- git live ebuild for split libusbmuxd/usbmuxd library
- app-pda/usbmuxd
- git live ebuild for usbmuxd binaries
dev-php/pecl-memcache'--php_targets_php7-0
' must currently be added to/etc/portage/profile/use.mask
- net-libs/libnftnl
- Updated library version required by latest net-firewall/nftables
net-firewall/iptables-nftablesgit live ebuild for nftables' iptables compatibility libraries
app-containers/dockerAllow net-firewall/iptables-nftables as an alternative to net-firewall/iptables
acct-group/cronConsistent group for sys-process/cronbase
- acct-group/hugetlb
- Consistent group for sys-libs/libhugetlbfs
- acct-group/milter
- Consistent group for mail filters
- acct-group/nogroup
- 'nogroup' appears to no longer being included in service builds?
- acct-group/podman
- Allow podman socket to be group-writable
- acct-group/socat
- Privilege-separation account as recommended by net-misc/socat maintainers
- acct-group/ssmtp
- Privilege-separation account
- acct-group/sys
- 'sys' appears to no longer being included in service builds (as GID 3)?
- acct-group/tcpdump
- Privilege-separation account
acct-user/cronConsistent user for sys-process/cronbase
- acct-user/memcached
- Add user to 'hugetlb' group
- acct-user/milter
- Consistent user for mail filters
- acct-user/mysql
- Add user to 'hugetlb' group
- acct-user/nobody
- 'nobody' appears to no longer being included in service builds?
- acct-user/redis
- Add user to 'hugetlb' group
- acct-user/tcpdump
- Privilege-separation account
- app-accessibility/svox-pico
- SVOX Pico TTS (aka 'pico2wave'), required by >www-apps/nabaztaglives-2.2.0
- app-admin/checkrestart-ng
- A pure-shell tool to check for updated binaries and libraries
- app-admin/mei-amt-check
- Add updated version
- app-admin/openrc-restart-crashed
- Check for services with status 'crashed', and optionally restart specified services
app-editors/vim-coreAdd v8.0.1094 which fixes arbitrary characters appearing in macOS Terminal.app and others
app-editors/vimAdd v8.0.1094 which fixes arbitrary characters appearing in macOS Terminal.app and others
- app-containers/aardvark-dns
- DNS helper for app-containers/netavark
- app-containers/netavark
- app-containers/cni-plugins replacement for app-containers/podman
- app-containers/passt
- app-containers/slirp4netns replacement for app-containers/podman - see containers/podman#16141
- app-containers/wa-linux-agent
- app-shells/stdlib
- stdlib.sh from https://github.com/srcshelton/stdlib.sh
- dev-embedded/rpi-eeprom
- Follow raspbian releases more closely
dev-perl/B-Lintdev-perl/CPANPLUSdev-perl/CPANPLUS-Dist-Gentoodev-perl/Devel-Tracedev-perl/Email-Outlook-Messagedev-perl/File-Touchdev-perl/IO-Interfacedev-perl/IO-Socket-Multicast- dev-perl/IP-Country
- dev-perl/IP-Country-DB_File
dev-perl/Locale-Hebrewdev-perl/match-simpleProvides match::smart
dev-perl/Mojolicious- dev-perl/Mojo-Server-FastCGI
dev-perl/Net-Interface- dev-perl/Net-MAC-Vendor
dev-perl/Net-SDP- dev-perl/Net-Subnet
- dev-perl/Net-Twitter-Lite
- dev-perl/pixelserv
dev-perl/POE-Component-Client-Pingdev-perl/Proc-PID-Filedev-perl/Sub-Infix- dev-php/Endroid-QrCode
- To replace the bundled libraries which are supplied with mail-client/roundcube-1.4.x
- dev-php/Masterminds-HTML5
- To replace the bundled libraries which are supplied with mail-client/roundcube-1.4.x
- dev-php/PEAR-Crypt_GPG
- To replace the bundled libraries which are supplied with mail-client/roundcube-1.0.x
- dev-php/PEAR-Net_LDAP3
- To replace the bundled libraries which are supplied with mail-client/roundcube-1.4.x
- dev-php/symfony-mbstring
- Required by dev-php/ZxcvbnPhp-1.3.1
- dev-php/ZxcvbnPhp
- To replace the bundled libraries which are supplied with mail-client/roundcube-1.4.x
dev-python/ansible-lintdev-python/aspy_yamldev-python/identifydev-python/nodeenvdev-python/noxspellserverdev-python/pathspecdev-python/pre-commit(seedev-vcs/pre-commit
)dev-ruby/CFPropertyList- dev-util/ltrace
- The ltrace project hasn't made a release in a long time, but we can pull-in more recent commits
dev-util/yamllint- games-server/minecraft-bedrock-server-bin
- games-server/minecraft-server-bin
- mail-client/roundcube
- Roundcube 1.0.0 and Roundcube 1.0.1 have been released, but are not yet in-tree...
- media-sound/logitechmediaserver-bin
- Stuart Hickinbottom's Squeezebox Server ebuild, updated for Perl 5.22 and with minor optimisations
net-libs/libhtpAdd more recent libhtp-0.5.21 release, to prevent net-analyzer/suricata-3.1 from complaining about libhtp being too old
- net-libs/libupnp
net-libs/nDPIAdd further nDPI releases, to try to sync against ntopng (which is closely tied to nDPI but is fragile and doesn't declare version compatibility)
- net-mail/davmail-bin
- Java Microsoft Exchange <-> IMAP connector
- net-mail/imapproxy
- Retain old up-imapproxy ebuild, add imapproxy-1.2.8 with SSL fixes
net-misc/minissdpdTemporarily retain old ebuild, which doesn't requireUSE="old-output"
for sys-apps/net-tools
- net-misc/pixelserv
- net-misc/unifi-controller-bin
- Ubiquiti Networks' UniFi Controller software
- sys-apps/bpftune
- Oracle's bpftune system auto-tuning tool
- sys-apps/lsusb-apple
- Jose L. Honorato's 'lsusb' for macOS
- sys-apps/raspberrypi-gpio
- Raspberry Pi 'raspi-gpio' tool
- sys-apps/raspberrypi-tools
- Raspberry Pi utilities, including 'vclog' - a replacement for 32-bit, binary-only 'vcdbg'
- sys-apps/tmpfs
- Mirror segments of a filesystem to a memory-based backing store
sys-auth/opieOPIE One-time password system
- sys-auth/pam_mobile_otp
- PAM component of mOTP
sys-auth/yubipamPAM authentication module for YubiKey hardware- See
sys-auth/pam_yubico
sys-boot/grub-legacySnapshot of grub-0.97 for systems where simplicity trumps technical correctness...
- sys-boot/raspberrypi-boot
- 'rpiboot' and associated firmware
- sys-fs/eudev
- Retain tree-cleaned upstream package
- sys-kernel/raspberrypi-headers
- Kernel headers from Raspberry Pi sources
- sys-power/clr-power
- Intel Clear Linux power optimisation tool
- sys-process/stalld
- Red Hat thread-booster
www-apps/heatmiserData acquisition and web-interface for Heatmiser Wifi Thermostats
- www-apps/nabaztaglives
- Nabaztag Lives server software, re-factored into a webapp
- www-apps/opennab
- OpenNAB Nabaztag server software
- www-apps/siriproxy
- Web interface for 'Three Little Pigs' fork of SiriProxy
www-servers/3dm23ware 3DM2 RAID controller web interface for 3w-xxxx, 3w-9xxx and 3w-sas controllers
- www-servers/pound
- Third-party Zevenet pound-2.8a, which builds against modern OpenSSL
- acct-user/netdata
- Allow optional 'podman' group membership
- acct-user/postfix
- Allow optional 'milter' group membership
- app-admin/cancd
- Provide re-written v0.2.2 in place of Oracle v0.1.0
- app-admin/cpulimit
- Fix use of 'inline' (rather than 'static inline')
- app-admin/eselect
- eselect requires app-shells/bash
- app-admin/rasdaemon
- Align ebuild USE-flags to
configure
options, allow use without perl sqlite modules
- Align ebuild USE-flags to
- app-arch/xz-utils
- Explicitly depend on 'grep that handles long lines and -e' (although the real issue could be that somehow GNU
grep
was installed during bootsrapping, butlibpcre
wasn't?)
- Explicitly depend on 'grep that handles long lines and -e' (although the real issue could be that somehow GNU
app-crypt/gnupgFix clang compilation errors
- app-crypt/libb2
- Remove stanza which prevents, e.g., sys-devel/gcc from being updated in the same invocation with necessary USE-flag changes before app-crypt/libb2 is built
- app-crypt/p11-kit
- Add dev-libs/libxslt build dependency to allow building man-pages with 'xsltproc'
- app-containers/docker
- Allow more fine-grained control over optional features
- app-containers/lxc
- Don't require an upgrade to Python 3.x unless building against Python
- app-editors/vim-core
- Correctly symlink 'docs' files
- app-editors/vim
- Correctly symlink 'docs' files
- app-misc/ca-certificates
- Don't install files for creating .deb archives to
/usr/share/doc/${PF}/examples/
- Don't install files for creating .deb archives to
- app-misc/colordiff
- Install example configuration file to
/usr/share/doc/${PF}/
rather than/etc/
- Install example configuration file to
- app-portage/eix
- Make
tmpfiles
installation optional
- Make
- app-portage/elt-patches
- Respect 'ROOT' variable when installing
- app-portage/gentoolkit
- Include fix for https://bugs.gentoo.org/923439
- app-portage/portage-utils
- Remove stanza which prevents, e.g., sys-devel/gcc from being updated in the same invocation with necessary USE-flag changes before app-portage/portage-utils is built
- app-text/sgml-common
- Check that 'sgml-docbook.cat' exists before trying to modify it
- dev-db/mongodb
Add firefox source to Allow building on ARM- Add net-misc/curl and python dependencies, update prerequisite checks when building with USE='lto'
- dev-db/mysql-init-scripts
- Only install support for requested service-managers
- dev-db/opendbx
- Add missing sys-libs/readline run-time dependency
dev-java/commons-daemonAdd additional include path to allow building with Oracle JDK 8 and above
- dev-java/openjdk
- Add missing sys-devel/autoconf dependency
- dev-lang/mono
- Fix DEPEND/BDEPEND to add virtual/linux-sources and dev-build/cmake respectively
dev-lang/perlFix HTTP::Tiny SSL CA path for prefix installations, preventdarwin_time_mutex
errors on macOS
- dev-lang/perl
- Don't require app-admin/perl-cleaner with USE='minimal'
- dev-libs/geoip
- Remove obselete update script and 'wget' dependency
- dev-libs/glib
- Prevent binary merges from failing due to assumptions about build files being present
- dev-libs/libbpf
- Fix build/runtime dependencies
- dev-libs/libcgroup
- Handle existing mountpoints and correct init scripts
- dev-libs/libusb
- Remove relocation of libusb-1.0.so from /usr to / due to external dependencies
- dev-libs/simdjson
- Fix upstream typo, add portage-level control of CPU features
dev-libs/yajlBump to EAPI=7 for BDEPEND/RDEPEND build-dependency improvements
dev-perl/DBI-ShellFix "Useless localization of scalar assignment" warning from DBI::Format
- dev-perl/Locale-gettext
- Declare run-time dependency on dev-lang/perl
- dev-perl/LWP-Protocol-https
- Fix SSL CA path for prefix installations
- dev-perl/Math-Pari
- Hack to allow math-pari to build on x32 systems and systems running a 32-bit userland on a 64-bit kernel
dev-perl/Net-DNS-SECAdd optional dsa, ecdsa, gost, private-key dependencies
- dev-perl/libwww-perl
- Add missing Mozilla::CA dependency for correct SSL operation
- dev-util/bcc
- Fix build/runtime dependencies
- dev-util/bindgen
- Add patch required to build with sys-devel/clang-16 and later
- mail-filter/dcc
- Add app-crypt/libmd dependency
- mail-filter/libmilter
- Add sys-devel/m4 dependency
- mail-filter/opendkim
- Prevent the unqualified need for 'RequireSafeKeys' on Gentoo due to GID=0 standard system users
- mail-filter/opendmarc
- Use
acct-*
dependencies rather thanuser.eclass
- Use
- mail-filter/spampd
- Fix
status
reporting, revise installed documentation, add optional systemd service support
- Fix
- mail-mta/ssmtp
- Use acct-group/ssmtp instead of
user
eclass
- Use acct-group/ssmtp instead of
- media-sound/teamspeak-server-bin
- A more FHS/Gentoo-like installation structure
- net-analyzer/munin
- Re-factor munin to operate as a webapp, and remove configuration from
/etc
- Re-factor munin to operate as a webapp, and remove configuration from
- net-analyzer/netdata
- With modifications to upstream ebuild and init script
net-analyzer/ntopngRemove some of the more onerous limitations from the community edition, use source from3.0-stable
branch rather than3.0
tag
- net-analyzer/openbsd-netcat
- Add dev-libs/libbsd dependency
- net-analyzer/speedtest-cli
- Remove unnecessary run-time dependency on dev-python/setuptools
net-analyzer/suricataMinor ebuild fixes, automatically fetch latest rules on build
- net-analyzer/tcpdump
- Add consistent group and user dependencies
- net-dialup/ppp
- Incorporate patches to allow interface discovery (rather than assuming that
eth0
is the primary interface, the appropriate interface with a prefix ofeth
,em
,ef
, oreg
will be auto-detected), and to enable the use of Baby Jumbo Frames whereby the host interface is given an MTU of 1508 so that a PPPoE link can retain a full 1500-byte MTU
- Incorporate patches to allow interface discovery (rather than assuming that
- net-dns/avahi
- Prevent build from incorrectly creating
/run
directory
- Prevent build from incorrectly creating
- net-dns/dnscrypt-proxy
- Move binary to /sbin
net-dns/dnstopbuild correctly against >=libpcap-1.8.0 with (non-optional) IPv6 support
- net-firewall/ebtables
- Update to latest git commit, which adds compatibility kernel headers more recent than v3.16
- Allow
--among-src-file
and--among-dst-file
options to accept files containing multiple lines, for ease of maintenance - Fix some crazy inconsistencies in output which were breaking
ebtables-save
andebtables-restore
- Set appropriate maximum buffer sizes to prevent
ebtables-restore
from segfaulting when loading more than 2kbytes of data from a single statement - Add Debian patch to correct the use of
RETURN
as a module target
- net-firewall/firehol
- Correct obsolete CONFIG_CHECK value which was blocking build, and correct required dependencies
- net-firewall/ipset
- Update default init script to handle more complex load/update operations
- net-ftp/tftp-hpa
- Allow net-ftp/uftpd to be installed at the same time, so long as only one tftp server is enabled
- net-ftp/uftpd
- Allow net-ftp/tftp-hpa to be installed at the same time, so long as only one tftp server is enabled
net-libs/neonPatch trivial typo which preventswritev
from being defined
- net-misc/aria2
- Prevent dev-libs/jemalloc 'lazy-lock' option from causing aria2 to segfault
- net-misc/dhcp
- Enhance chroot support in init script
- net-misc/socat
- Use privilege-separation group for security, make HTML documentation and additional tools optional installs
- net-misc/tor
- Prevent GCC infinite loop, rather than simply warning about it
- net-misc/usbip
- Prevent build failure due to harmless warning
- net-misc/wget
- Filter
-funsafe-math-optimizations
, which prevents wget from building on ARM
- Filter
- net-nds/openldap
- If /etc/init.d/tmpfiles.setup isn't active,
/var/run/openldap
is never created yet the ebuild still attempts to set permissions upon it...
- If /etc/init.d/tmpfiles.setup isn't active,
- net-vpn/libreswan
- Make raspberrypi-headers || linux-headers a build-time dependency only
- net-vpn/tor
- Remove hard dependency on asciidoc
- sci-libs/blis
- Disable LTO
- sys-apps/baselayout-java
- Fix UID logic
- sys-apps/busybox
- Updates to make mdev more functional - see here...
- sys-apps/fwupd
- Add USE-flag requirements to sys-apps/flashrom dependency
- sys-apps/gentoo-functions
- Fix inclusion when unbound variable checking is enabled
- sys-apps/groff
- Fix for building on ARM
- sys-apps/kbd
- Add dependency on flex via app-alternatives/lex
- sys-apps/keyutils
- Correct file permissions on 'libkeyutils.pc'
- sys-apps/locale-gen
- Fix operation with sys-libs/glibc 'compile-locales' USE-flag enabled
- sys-apps/pciutils
- Update and modernise init script
sys-apps/portagePreventebuild ... digest
from aborting if the owner of the category directory differs from that of the package directoryPrevent binary merges from failing due to assumptions about build files being present
sys-apps/usbutilsRevert changes which make usbutils dependent on udev
- sys-apps/util-linux
- Add static libary dependencies, use
/var/run
in place of/run
- Add static libary dependencies, use
- sys-apps/sysvinit
- Don't force
initctl
into a (auto-created)/run
directory if not on FreeBSD
- Don't force
- sys-auth/pam_mktemp
- Create user temporary directories under '/var/tmp/' rather than under '/tmp/', to guard against running out of space on the root filesystem
- sys-cluster/hpl
- Make build less noisy
- sys-cluster/mpich
- Add required app-shells/bash and sys-devel/gcc dependencies, filter breaking CFLAG, add 'yaksa-depth' option for faster builds
- sys-cluster/openmpi
- Add missing sys-devel/flex dependency
sys-devel/autogenAdd requiredWANT_AUTOMAKE
directive and inheritautotools
eclass
- sys-fs/udisks
- Make HTML documentation optional
- sys-kernel/gentoo-sources
- Fix USE='experimental' shiftfs compilation with clang
- sys-kernel/linux-firmware
- Be much more verbose about which firmware is being installed and skipped with
USE=savedconfig
, and don't try to strip firmware blobs :o
- Be much more verbose about which firmware is being installed and skipped with
- sys-libs/libblockdev
- Add undeclared libudev dependency
- sys-libs/libhugetlbfs
- Fix build on systems where userspace and kernel conform to different ABIs, and fix installation of broken manpage symlinks
- sys-libs/libseccomp
- Remove unnecessary run-time dependency on sys-kernel/linux-headers
- sys-libs/libxcrypt
- When manpages are relocated, also correct '.so' links
- sys-power/apcupsd
- Incorporate patch to allow apcupsd to be bulit against recent SNMP headers;
- Correct SNMP patch failure of version 3.14.12, make exposed configuration options more flexible;
- Provide more flexibility with finer-grained USE-flags
- sys-power/iasl
- Fix paths in ebuild and make build documentation optional
- sys-process/btop
- Provide option to exclude desktop files and themes
sys-process/cronbaseAdd consistent group and user dependencies
- virtual/bitcoin-leveldb
- Be more flexible about necessary dependencies
- virtual/mta
- Add optional USE-flags to control which MTA will be installed
- virtual/os-headers
- Also accept sys-kernel/raspberrypi-headers as an acceptable os-header
- virtual/rust
- Add 'binary' USE-flag to require dev-lang/rust-bin in place of dev-lang/rust, which now requires more than 8GB of memory to link
- virtual/tmpfiles
- Provide an option not to use systemd's tmpfiles system (directly or via
sys-apps/opentmpfiles
)
- Provide an option not to use systemd's tmpfiles system (directly or via
x11-drivers/nvidia-driversOnly start nVidia System Management Interface if valid for the host system
(... rather than /var/run
)
Included as install-qa-check.d/95run-directory
in the repo metadata
directory is an additional QA check which reports an error if files deployed to
/etc/init.d
or /etc/conf.d
contain references to /run
.
- app-admin/eselect-php
- app-admin/metalog
- app-admin/sudo
- app-admin/syslog-ng
- app-admin/ulogd
- app-containers/cni-plugins
- app-containers/containerd
- app-crypt/tpm2-tss
- app-misc/screen
- dev-db/postgresql
- dev-db/redis
- dev-libs/cyrus-sasl
- Prevent binary merges from failing due to assumptions about build files being present
- dev-vcs/git
- mail-filter/spamassassin
- net-analyzer/arpwatch
- net-analyzer/darkstat
- net-analyzer/iptraf-ng
- net-analyzer/nagios-core
net-analyzer/ntop- net-analyzer/rrdtool
- net-analyzer/vnstat
- net-analyzer/zabbix
- net-dialup/freeradius
- net-dialup/xl2tpd
- net-dns/bind
- net-dns/unbound
- net-firewall/conntrack-tools
- net-fs/netatalk
- net-fs/samba
- net-im/bitlbee
- net-mail/dovecot
- net-misc/dhcpcd
- net-misc/iperf
- net-misc/kea
- Also prevent unnecessary files being installed, but always install configuration files to
/etc
- Also prevent unnecessary files being installed, but always install configuration files to
- net-misc/memcached
- net-misc/minidlna
- net-misc/ndisc6
- net-misc/ntp
- net-misc/openntpd
- net-misc/radvd
- net-misc/rsyncd
- net-p2p/deluge
- net-print/cups
- net-print/cups-filters
- net-vpn/openvpn
- sys-apps/dbus
- sys-apps/earlyoom
- sys-apps/haveged
- sys-apps/iproute2
- sys-apps/kmod
- sys-apps/lm_sensors
sys-apps/portageA mountpoint-check has been added for/run
, but Python'sos.path.ismount()
seems unreliable even when this path is corrected, so a work-around has been added...
- sys-apps/smartmontools
- sys-auth/elogind
- sys-devel/distcc
- sys-fs/cachefilesd
- sys-fs/udev-init-scripts
- sys-libs/ncurses
- Fix list of libraries relocated to the root filesystem
- sys-libs/pam
- sys-power/acpid
- sys-process/cronie
- www-servers/lighttpd
- www-servers/spawn-fcgi
/var/state
was referenced in the Filesystem Hierarchy Standard 2.0
as superseding /var/lib
, although versions 2.1 and later no longer mention
this particular configuration. Regardless, supporting /var/state
(with a
symlink from /var/lib
for compatibility) takes very little effort, and the
name state
feels like a much better fit with respect to the intended
contents.
- dev-lang/php
- dev-php/PEAR-PEAR
- media-libs/libpvx
Included is a modified eclass/multilib.eclass
that no longer overrides any
amd64 LIBDIR_*
environment variables, which may now usefully be set in
/etc/portage/make.conf
. For this to work universally, you may need to edit
/etc/portage/repos.conf
and add:
[DEFAULT]
eclass-overrides = srcshelton
... to ensure that main-repo ebuilds benefit from the change. The LIBDIR
variables, and their default values, are:
LIBDIR_amd64="lib64"
LIBDIR_x32="libx32"
LIBDIR_x86="lib"
SYMLINK_LIB="yes"
... noting that SYMLINK_LIB
defaults to "no"
(e.g. do not try to symlink
/lib
and /usr/lib
to the library directory which the ABI actually uses) for
x32 profiles, and that these variables only affect multilib systems.
- app-admin/monit
- Add required
--with-ssl-lib-dir
option
- Add required
- app-crypt/mit-krb5
- Ensure that AES assembly is built for x32 rather than amd64
- app-antivirus/clamav
- Don't use (64-bit) assembly when
__ILP32__
is defined
- Don't use (64-bit) assembly when
- dev-db/libdbi-drivers
- Add required
--with-dbi-libdir
option
- Add required
- dev-db/mariadb
- Prevent x32 builds from failing because of warnings generated by int to long-int conversions in LZO code
dev-lang/rubyAvoid inline assembly with x32 ABI
- dev-build/cmake
- Add (x)32 library paths in addition to 64-bit variants
media-libs/flacAvoid link failures due to 32 bit downgrade with x32 ABI
- net-analyzer/arp-sk
- Look for libnet in the appropriate "libdir" rather than
lib
- Look for libnet in the appropriate "libdir" rather than
- net-dns/bind-tools
- Correct many instances of hard-coded references to
lib
- Correct many instances of hard-coded references to
- net-misc/miniupnpd
- Prevent use of
sysctl
syscall (which specifically errors on x32, but is deprecated for all ABIs)
- Prevent use of
- net-misc/openssh
- Add experimental
libseccomp
patch, and on x32 either use this or fallback torlimit
sandbox. Without one of these changes,sshd
is non-functional on x32
- Add experimental
- sys-apps/baselayout
- Don't error-out if using
lib32
for x32 libraries
- Don't error-out if using
sys-apps/cpuidDon't use 64-bit assembly when__ILP32__
is defined
- sys-apps/kexec-tools
- Add x32 patch from OpenEmbedded
- sys-devel/binutils
- Allow
LIBDIR_*
variables to override hard-coded default directory locations
- Allow
- sys-devel/gcc
- Allow
LIBDIR_*
variables to override hard-coded default directory locations
- Allow
- sys-libs/glibc
- Allow
LIBDIR_*
variables to override hard-coded default directory locations (for x86 only) - Prevent binary merges from failing due to assumptions about build files being present
- Allow
sys-libs/libunwindAdd x32 patch from sjnewbury's repo
(... and/or operation without a /run
directory)
- app-alternatives/awk
- Support for gawk installed in
/bin
- Support for gawk installed in
app-eselect/eselect-awkSupport for (g)awk installed in/bin
- net-misc/netifrc
- Avoid installing udev rules unless
USE="udev"
is specified
- Avoid installing udev rules unless
- net-wireless/bluez
- Make 'udev' an optional dependency, controlled by
USE="udev"
- Make 'udev' an optional dependency, controlled by
- sys-apps/coreutils
- Add
uniq
to the list of binaries moved to/bin
, as some init scripts (such asdevice-mapper
) rely on it being present during early-boot
- Add
- sys-apps/gawk
- Install to
/bin
rather than/usr/bin
, for init scripts which invokeawk
- Install to
- sys-apps/irqbalance
- Avoid installing udev rules unless
USE="udev"
is specified
- Avoid installing udev rules unless
- sys-apps/nvme-cli
- Remove extraneous udev elements if not required
- sys-apps/openrc
- Add optional
USE="varrun"
flag to allow 'run' directory to remain as '/var/run'
- Add optional
- sys-fs/cryptsetup
- Make 'udev' an optional dependency, controlled by
USE="udev"
- Make 'udev' an optional dependency, controlled by
- sys-fs/e2fsprogs
- Avoid installing udev rules unless
USE="udev"
is specified
- Avoid installing udev rules unless
sys-fs/fuseAvoid installing udev rules unlessUSE="udev"
is specified
- sys-fs/fuse-common
- Avoid installing udev rules unless
USE="udev"
is specified
- Avoid installing udev rules unless
- sys-fs/lvm2
- Make 'udev' an optional dependency, controlled by
USE="udev"
- Make 'udev' an optional dependency, controlled by
- sys-fs/mdadm
- Restore previous boot-time functionality, add support for module-loading from
/etc/mdadm/mdmod.conf
- Restore previous boot-time functionality, add support for module-loading from
- sys-libs/libeudev
- Provide
libudev
only without (e)udev daemon, for builds which require only the library component of udev
- Provide
- sys-process/procps
- Maintain compatibility with releases prior to 3.3.11 by keeping
sysctl
in/sbin
- Maintain compatibility with releases prior to 3.3.11 by keeping
- virtual/libudev
- Allow sys-libs/libeudev to satisfy
virtual/libudev
dependency
- Allow sys-libs/libeudev to satisfy
- virtual/udev
- Allow sys-fs/eudev to satisfy
virtual/udev
dependency
- Allow sys-fs/eudev to satisfy
Fixes for binaries and libraries which are installed to the root filesystem, but link to libraries originally installed to /usr
(... previously controlled by the sep-usr
USE-flag, now using standardised split-usr
)
- app-arch/bzip2
app-arch/zstd- app-crypt/argon2
- app-crypt/libmd
- app-crypt/mit-krb5
- dev-libs/elfutils
- dev-libs/gmp
- dev-libs/inih
- Required by mkfs.xfs - perhaps this should be moved to /usr/sbin/ instead?
- dev-libs/jansson
- dev-libs/json-c
- dev-libs/libaio
- dev-libs/libbsd
- dev-libs/libgcrypt
- dev-libs/libgpg-error
- dev-libs/libnl
- dev-libs/libpcre
- dev-libs/libpcre2
- dev-libs/libpwquality
- dev-libs/libunistring
- dev-libs/mini-xml
- dev-libs/mpfr
- dev-libs/openssl
- dev-libs/popt
- net-dns/libidn
- net-dns/libidn2
- net-fs/nfs-utils
- Move 'nfsdcltrack', with many non-root library dependencies, to
/usr/sbin
- Move 'nfsdcltrack', with many non-root library dependencies, to
- net-libs/libnfnetlink
- net-libs/libpcap
- net-libs/libtirpc
- sys-apps/acl
- sys-apps/attr
- sys-apps/file
- Move
libmagic.so
to the root filesystem, for app-editors/nano
- Move
- sys-apps/shadow
- Also avoid building 'su' unless specifically requested, as it is also provided by
sys-apps/util-linux
- Also avoid building 'su' unless specifically requested, as it is also provided by
- sys-apps/tcp-wrappers
- sys-apps/util-linux
- Add
libfdisk.so
to the list of libraries relocated to root
- Add
- sys-auth/passwdqc
- sys-block/thin-provisioning-tools
- Move 'pdata_tools', with many non-root library dependencies, to
/usr/sbin
- Move 'pdata_tools', with many non-root library dependencies, to
- sys-fs/cryptsetup
- sys-libs/libcap-ng
- sys-libs/readline
- sys-libs/slang
- sys-libs/talloc
- sys-libs/zlib
- sys-process/audit
- Add
zos
USE-flag to prevent building of z/OS-specificzos-remote
plugin and tools, with many non-root library dependencies
- Add
- app-admin/logrotate
- app-containers/containers-common
- mail-filter/postgrey
- mail-mta/nullmailer
- net-proxy/privoxy
- sys-apps/rng-tools
- sys-block/zram-init