summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* */*: [QA] Remove redundant --disable-{dependency-tracking,silent-rules}David Seifert2020-02-221-2/+1
| | | | | Closes: https://github.com/gentoo/gentoo/pull/14738 Signed-off-by: David Seifert <soap@gentoo.org>
* */*: [QA] Fix trivial cases of MissingTestRestrictMichał Górny2019-12-111-1/+2
| | | | | | | | | | | | | | | | | | The result was achieved via the following pipeline: pkgcheck scan -c RestrictTestCheck -R FormatReporter \ --format '{category}/{package}/{package}-{version}.ebuild' | xargs -n32 grep -L RESTRICT | xargs -n32 sed -i -e '/^IUSE=.*test/aRESTRICT="!test? ( test )"' The resulting metadata was compared before and after the change. Few Go ebuilds had to be fixed manually due to implicit RESTRICT=strip added by the eclass. Two ebuilds have to be fixed because of multiline IUSE. Suggested-by: Robin H. Johnson <robbat2@gentoo.org> Closes: https://github.com/gentoo/gentoo/pull/13942 Signed-off-by: Michał Górny <mgorny@gentoo.org>
* net-misc: Remove *-fbsd KEYWORDSMichał Górny2019-10-111-1/+1
| | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
* net-misc/radvd: x86 stable (bug #637520)Thomas Deutschmann2018-02-061-1/+1
| | | | Package-Manager: Portage-2.3.24, Repoman-2.3.6
* net-misc/radvd: arm stable, bug #637520Markus Meier2018-01-181-2/+2
| | | | | Package-Manager: Portage-2.3.13, Repoman-2.3.3 RepoMan-Options: --include-arches="arm"
* net-misc/radvd: amd64 stableJason Zaman2017-12-151-1/+1
| | | | | Gentoo-bug: 637520 Package-Manager: Portage-2.3.13, Repoman-2.3.3
* net-misc/radvd: stable 2.17-r1 for sparc, bug #637520 (thanks to Rolf Eike Beer)Sergei Trofimovich2017-11-181-1/+1
| | | | | Package-Manager: Portage-2.3.14, Repoman-2.3.6 RepoMan-Options: --include-arches="sparc"
* net-misc/radvd: stable 2.17-r1 for hppa, bug #637520Sergei Trofimovich2017-11-181-1/+1
| | | | | Package-Manager: Portage-2.3.14, Repoman-2.3.6 RepoMan-Options: --include-arches="hppa"
* net-misc/radvd: stable 2.17-r1 for ppc, bug #637520Sergei Trofimovich2017-11-151-1/+1
| | | | | Package-Manager: Portage-2.3.14, Repoman-2.3.6 RepoMan-Options: --include-arches="ppc"
* net-misc/radvd: fix /run/radvd clobbering on systemd, bug #603106Sergei Trofimovich2017-08-191-0/+66
Bug happens because systemd has two conflicting mechanisms to create /var/run/: Via .service file: RuntimeDirectory=radvd ProtectSystem=full And via .tmpfilesd: d /run/radvd 0755 radvd radvd Systemd end up trying to start radvd in empty /var/. The change removes tmpfiles.d entry completely. Instead we rely on the following mechanisms to create /run/radvd: - openrc: /etc/init.d/radvd creates it with 'checkpath -d -o radvd:radvd ${PIDFILE%/*}' - systemd: radvd.service creates it with 'RuntimeDirectory=radvd' Reported-by: Randy Barlow Bug: https://bugs.gentoo.org/603106 Package-Manager: Portage-2.3.8, Repoman-2.3.3