summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* dev-libs/libxmlb: x86 stable (bug #727656)Thomas Deutschmann2020-06-201-1/+1
| | | | | Package-Manager: Portage-2.3.101, Repoman-2.3.22 Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
* app-crypt/tpm2-tss: x86 stable (bug #727656)Thomas Deutschmann2020-06-201-1/+1
| | | | | Package-Manager: Portage-2.3.101, Repoman-2.3.22 Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
* dev-util/umockdev: x86 stable (bug #727656)Thomas Deutschmann2020-06-201-1/+1
| | | | | Package-Manager: Portage-2.3.101, Repoman-2.3.22 Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
* sys-apps/fwupd: x86 stable (bug #727656)Thomas Deutschmann2020-06-201-1/+1
| | | | | Package-Manager: Portage-2.3.101, Repoman-2.3.22 Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
* app-text/djvu: x86 stable (bug #536720)Thomas Deutschmann2020-06-201-1/+1
| | | | | Package-Manager: Portage-2.3.101, Repoman-2.3.22 Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
* media-libs/aubio: x86 stable (bug #711226)Thomas Deutschmann2020-06-201-1/+1
| | | | | Package-Manager: Portage-2.3.101, Repoman-2.3.22 Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
* app-admin/apache-tools: x86 stable (bug #715824)Thomas Deutschmann2020-06-201-1/+1
| | | | | Package-Manager: Portage-2.3.101, Repoman-2.3.22 Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
* www-servers/apache: x86 stable (bug #715824)Thomas Deutschmann2020-06-201-1/+1
| | | | | Package-Manager: Portage-2.3.101, Repoman-2.3.22 Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
* profiles: Mask dev-tex/feynmf for removal.Ulrich Müller2020-06-201-0/+6
| | | | Signed-off-by: Ulrich Müller <ulm@gentoo.org>
* app-text/texlive: Remove old.Ulrich Müller2020-06-201-160/+0
| | | | | Package-Manager: Portage-2.3.101, Repoman-2.3.22 Signed-off-by: Ulrich Müller <ulm@gentoo.org>
* app-text/texlive: 2020-r1 stable.Ulrich Müller2020-06-201-1/+1
| | | | | | Acked-by: Mikle Kolyada <zlogene@gentoo.org> Package-Manager: Portage-2.3.101, Repoman-2.3.22 Signed-off-by: Ulrich Müller <ulm@gentoo.org>
* dev-texlive/texlive-metapost: Remove old.Ulrich Müller2020-06-201-31/+0
| | | | | Package-Manager: Portage-2.3.101, Repoman-2.3.22 Signed-off-by: Ulrich Müller <ulm@gentoo.org>
* dev-texlive/texlive-metapost: 2020-r1 stable.Ulrich Müller2020-06-201-1/+1
| | | | | | Acked-by: Mikle Kolyada <zlogene@gentoo.org> Package-Manager: Portage-2.3.101, Repoman-2.3.22 Signed-off-by: Ulrich Müller <ulm@gentoo.org>
* net-print/hplip: Version bump to hplip-3.20.6.Daniel Pielmeier2020-06-202-0/+278
| | | | | Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Daniel Pielmeier <billie@gentoo.org>
* dev-lang/perl: Add unkeyworded -r2 version with WIP featuresKent Fredric2020-06-212-0/+887
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is a work in-progress experiment, hence, it is unkeyworded until I can get more eyes on the changes, and fully test the consequences at scale. Important Changes: - Convert to EAPI7 - Remove inherit on eutils - Replace calls to "epatch" to "eapply", but resulting in a loss of nice output - Add new hidden feature PERL_SINGLE_SLOT, which, when set, installs perl into a directory named after SUBSLOT (eg: 5.30) as opposed to one following the explicit name (eg: 5.30.2), which aims to pre-emptively solve (in both direction) the problem faced by shipping binpkg's, where the built perl has only one set of INC dirs (eg: 5.30.2), but a binpkg was built with a different, but compatible perl (eg: 5.30.1), and subsequently, installs to an @INC dir that is not visible to the built perl. Instead, all perl's that are defined to be inter-compatible share the same directory for both arch-dependent and arch-independent code, so binpkg's only need to be regenerated when: - Upgrading/downgrading between major revisions - Flipping USE="debug" or USE="ithreads". Under PERL_SINGLE_SLOT, directories that should be compatible, and are available, but built under the previous scheme, are also inhaled into @INC for ease of transition. The name of this flag is subject to change, and may become a USE flag. - Add a new hidden feature PERL_SUPPORT_SINGLE_SLOT, which builds perl the same way as in previous versions, but also probes for version'd directories generated by installing packages on perl's built with PERL_SINGLE_SLOT, as a fallback mechaism for transitioning away from a perl built with PERL_SINGLE_SLOT. The name of this flag is subject to change, and may become a USE flag - Add a patch to various parts of Configure, perl.c, and friends, to facilitate the above, which exposes itself as -Dgentoolibdirs=, and has the same syntax as -Dotherlibdirs, but doesn't pollute everything by adding its own arch-dirs when they weren't asked for. This patch may also later help facilitate building perl's without PERL_SINGLE_SLOT, but with other @INC dirs forced into place, for the same purpose, but implemented differently, as the previous mechanism, -Dinc_version_list is limited in that it: - Excludes internally directories that don't exist - Mangles directories sometimes trashing @INC entirely, throwing away litterally all the versions you passed. - Fixed a very embarrasing typo in the einfo code, ${EROO%/T} ... - Restructured the @INC discovery/cleanup logic into dedicated functions - Add more error handling in the discovery path, especially adding loud error output if directories that *need* to be traversed for compat discovery cannot be traversed, due to misconfigured permissions. - Fix an embarrasing bug in @INC list stripping, that due to inherently being a *substring* match, not a *fullstring* match, could have excluded 5.30.20 from the @INC path for 5.30.2, even though they're intercompatible. This became more obvious, when one was trying to strip '5.30' from a list that contained '5.30.1', '5.30.2', because it just ate everything! Questions: - Why do we have bzip2 in RDEPEND? Surely, that should be BDEPEND-only - Are we even using bzip2 anymore? - Should we migrate the patch ball to being a more-common-these-days set of numerically ordered patches, and potentially reduce the handling complexity in the ebuild as a result? Package-Manager: Portage-2.3.100, Repoman-2.3.22 Signed-off-by: Kent Fredric <kentnl@gentoo.org>
* x11-wm/spectrwm: bump to 3.4.0Ben Kohler2020-06-203-0/+73
| | | | | | | | Reworked Makefile patch since upstream has applied the $(PKGCONFIG) fixes Package-Manager: Portage-2.3.101, Repoman-2.3.22 Signed-off-by: Ben Kohler <bkohler@gentoo.org>
* sys-libs/binutils-libs-2.34-r1: marked *-macos, *-solarisFabian Groffen2020-06-201-1/+1
| | | | | Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Fabian Groffen <grobian@gentoo.org>
* package.mask: Removed alsa maskLars Wendler2020-06-201-7/+0
| | | | | Bug: https://bugs.gentoo.org/727838 Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
* media-libs/alsa-lib: Bump to version 1.2.3.1. Removed oldLars Wendler2020-06-202-1/+1
| | | | | | Bug: https://bugs.gentoo.org/727838 Package-Manager: Portage-2.3.101, Repoman-2.3.22 Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
* net-misc/rsync: Enable SIMD only for amd64Lars Wendler2020-06-201-1/+8
| | | | | | Closes: https://bugs.gentoo.org/728868 Package-Manager: Portage-2.3.101, Repoman-2.3.22 Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
* net-libs/nghttp2: Security cleanupLars Wendler2020-06-202-78/+0
| | | | | | Bug: https://bugs.gentoo.org/726834 Package-Manager: Portage-2.3.101, Repoman-2.3.22 Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
* sys-kernel/rt-sources: Add rt-sources v5.6.17-rt10Kurt Kanzenbach2020-06-202-0/+56
| | | | | | | Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Kurt Kanzenbach <kurt@kmk-computers.de> Closes: https://github.com/gentoo/gentoo/pull/16340 Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
* sys-kernel/rt-sources: Add rt-sources v5.4.44-rt27Kurt Kanzenbach2020-06-202-0/+56
| | | | | | Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Kurt Kanzenbach <kurt@kmk-computers.de> Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
* sys-kernel/rt-sources: Add rt-sources v4.9.227-rt146Kurt Kanzenbach2020-06-202-0/+56
| | | | | | Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Kurt Kanzenbach <kurt@kmk-computers.de> Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
* sys-kernel/rt-sources: Add rt sources v4.4.225-rt198Kurt Kanzenbach2020-06-202-0/+56
| | | | | | Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Kurt Kanzenbach <kurt@kmk-computers.de> Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
* sys-kernel/rt-sources: Add rt sources v4.19.127-rt54Kurt Kanzenbach2020-06-202-0/+56
| | | | | | Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Kurt Kanzenbach <kurt@kmk-computers.de> Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
* sys-kernel/rt-sources: Add rt sources v4.14.184-rt84Kurt Kanzenbach2020-06-202-0/+56
| | | | | | Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Kurt Kanzenbach <kurt@kmk-computers.de> Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
* media-libs/lv2: added python 3.8 and 3.9 to 1.18.0Miroslav Šulc2020-06-201-1/+1
| | | | | | Closes: https://bugs.gentoo.org/727376 Package-Manager: Portage-2.3.101, Repoman-2.3.22 Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
* dev-lang/swi-prolog: bump development versionKeri Harris2020-06-202-0/+104
| | | | | Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Keri Harris <keri@gentoo.org>
* sys-devel/clang: Always build manpages from sourceMichał Górny2020-06-203-21/+41
| | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
* sys-devel/llvm: Always build manpages from sourceMichał Górny2020-06-203-42/+66
| | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
* app-admin/diamond-4.0.515.20200620: version bumpFabian Groffen2020-06-203-2/+85
| | | | | | | Closes: https://bugs.gentoo.org/710192 Closes: https://bugs.gentoo.org/727336 Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Fabian Groffen <grobian@gentoo.org>
* net-libs/czmq: x86 stable (bug #728692)Thomas Deutschmann2020-06-201-1/+1
| | | | | Package-Manager: Portage-2.3.101, Repoman-2.3.22 Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
* dev-libs/librelp: x86 stable (bug #728692)Thomas Deutschmann2020-06-201-1/+1
| | | | | Package-Manager: Portage-2.3.101, Repoman-2.3.22 Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
* app-admin/rsyslog: x86 stable (bug #728692)Thomas Deutschmann2020-06-201-1/+1
| | | | | Package-Manager: Portage-2.3.101, Repoman-2.3.22 Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
* dev-libs/librdkafka: x86 stable (bug #728694)Thomas Deutschmann2020-06-201-1/+1
| | | | | Package-Manager: Portage-2.3.101, Repoman-2.3.22 Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
* app-crypt/swtpm: Remove oldSalah Coronya2020-06-201-76/+0
| | | | | | Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Christopher Byrne <salah.coronya@gmail.com> Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
* app-crypt/swtpm: Add python 3.8 support and remove static libsSalah Coronya2020-06-201-0/+77
| | | | | | | | Closes: https://bugs.gentoo.org/726490 Closes: https://github.com/gentoo/gentoo/pull/16036 Package-Manager: Portage-2.3.89, Repoman-2.3.20 Signed-off-by: Salah Coronya <salah.coronya@gmail.com> Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
* profile/package.mask: Don't remove zookeeper-bin for no reason, maaaanPatrick Lauer2020-06-201-1/+0
| | | | Signed-off-by: Patrick Lauer <patrick@gentoo.org>
* sys-cluster/zookeeper-bin: BumpPatrick Lauer2020-06-202-0/+64
| | | | | Package-Manager: Portage-2.3.100, Repoman-2.3.22 Signed-off-by: Patrick Lauer <patrick@gentoo.org>
* sys-apps/pcsc-lite: delete la filesMikle Kolyada2020-06-203-1/+7
| | | | | Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Mikle Kolyada <zlogene@gentoo.org>
* sys-apps/pcsc-lite: Version bump (v1.9.0)Mikle Kolyada2020-06-202-0/+103
| | | | | Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Mikle Kolyada <zlogene@gentoo.org>
* profiles/package.mask: drop app-misc/golly maskSergei Trofimovich2020-06-201-1/+0
| | | | | | The package can work without python. Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
* app-misc/golly: drop optional python2 scripting supportSergei Trofimovich2020-06-201-5/+2
| | | | | Package-Manager: Portage-2.3.101, Repoman-2.3.22 Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
* profiles: remove app-admin/clustershell.Patrice Clement2020-06-201-1/+0
| | | | | | Bumped to its latest version that supports Python 3. Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
* app-admin/clustershell: take over maintainership.Patrice Clement2020-06-201-1/+4
| | | | | Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
* app-admin/clustershell: clean up old.Patrice Clement2020-06-202-58/+0
| | | | | Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
* app-admin/clustershell: version bump.Patrice Clement2020-06-202-0/+51
| | | | | Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
* net-proxy/squid: Version bump (v4.12)Mikle Kolyada2020-06-202-0/+280
| | | | | Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Mikle Kolyada <zlogene@gentoo.org>
* profiles: remove app-text/rpl.Patrice Clement2020-06-201-1/+0
| | | | | | Bumped it to its latest version that supports Python 3. Signed-off-by: Patrice Clement <monsieurp@gentoo.org>