summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* */*: drop ~ppc and ~ppc64 keywords for dev-lang/ghc and rdepsSergei Trofimovich2020-08-07312-311/+315
| | | | | | | | dev-lang/ghc was not being kept up to date consistently for quite a while. We'll still try to build ppc64 BE/LE binaries for it but no promise of keywords. Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
* media-fonts/font-util: Fix homepageMatt Turner2020-08-071-0/+1
| | | | Signed-off-by: Matt Turner <mattst88@gentoo.org>
* media-fonts/font-misc-ethiopic: Drop old versionsMatt Turner2020-08-071-20/+0
| | | | Signed-off-by: Matt Turner <mattst88@gentoo.org>
* media-fonts/font-misc-ethiopic: Version bump to 1.0.4Matt Turner2020-08-072-0/+28
| | | | Signed-off-by: Matt Turner <mattst88@gentoo.org>
* media-fonts/font-alias: Version bump to 1.0.4Matt Turner2020-08-072-0/+13
| | | | Signed-off-by: Matt Turner <mattst88@gentoo.org>
* dev-util/diffoscope: bump up to 155Sergei Trofimovich2020-08-072-0/+72
| | | | | Package-Manager: Portage-3.0.1, Repoman-2.3.23 Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
* profiles/arch/x86: un-stable-mask Python 3.8Sam James2020-08-071-5/+0
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* dev-haskell/test-framework-th-prime: port to ghc-8Sergei Trofimovich2020-08-073-0/+103
| | | | | | | Reported-by: Agostino Sarubbo Closes: https://bugs.gentoo.org/736252 Package-Manager: Portage-3.0.1, Repoman-2.3.23 Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
* app-portage/fquery: tweak for cabal-3Sergei Trofimovich2020-08-071-0/+38
| | | | | | | Reported-by: Toralf Förster Closes: https://bugs.gentoo.org/736270 Package-Manager: Portage-3.0.1, Repoman-2.3.23 Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
* dev-lang/perl: Pod-Parser was removed from coreAndreas K. Hüttel2020-08-081-1/+0
| | | | | Package-Manager: Portage-2.3.103, Repoman-2.3.23 Signed-off-by: Andreas K. Hüttel <dilfridge@gentoo.org>
* virtual/perl-Pod-Parser: Removed from core in 5.32Andreas K. Hüttel2020-08-081-3/+2
| | | | | Package-Manager: Portage-2.3.103, Repoman-2.3.23 Signed-off-by: Andreas K. Hüttel <dilfridge@gentoo.org>
* dev-perl/Pod-Parser: New package, spliced out of core PerlAndreas K. Hüttel2020-08-083-0/+23
| | | | | Package-Manager: Portage-2.3.103, Repoman-2.3.23 Signed-off-by: Andreas K. Hüttel <dilfridge@gentoo.org>
* toolchain.eclass: raise minimum gcc-config up to 2.3Sergei Trofimovich2020-08-071-1/+1
| | | | | | | | | | In #736040 gcc-config-1.9 was not able to handle gcc-10 paths. Let's raise lower bound to minimum stable version currently in ::gentoo. Reported-by: Dennis Nezic Bug: https://bugs.gentoo.org/736040 Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
* dev-haskell/idiii: tweak for ghc-8.8Sergei Trofimovich2020-08-072-3/+11
| | | | | | | Reported-by: Toralf Förster Closes: https://bugs.gentoo.org/736280 Package-Manager: Portage-3.0.1, Repoman-2.3.23 Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
* dev-lang/perl: 5.30.3-r2 rework patching bundle logicKent Fredric2020-08-083-200/+131
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This change reworks the patching logic entirely to avoid the use of a sequence file, instead, relying on directory sort order and numerically prefixed filenames. In addition to this change, work is done on the patchset authoring side to pre-extract important fields like "bugs" and "description" for the patches and puts them in easy to read files, in order to more clearly generate patchlevel_gentoo.h ( seen in Perl -V ) Perl -V now includes more verbose details, including fully qualified bug URLs. Additionally, its more straight forward to add records to the patch bundle within the ebuild, using the new "add_patch" helper, so that even files applied from ${FILESDIR} can be shown in `perl -V` Patches are fully re-rolled as git patches against perl v5.30.3 Sourcing from "mirror://gentoo" is now implicit, as this syntax is discouraged. Patch for Net::SNMP removed from bundle as it just now introduces redundant documentation. Patch for gentoo-libdirs now bundled, and properly rehashed to avoid failing in various porting tests. Package-Manager: Portage-2.3.100, Repoman-2.3.22 Signed-off-by: Kent Fredric <kentnl@gentoo.org>
* dev-perl/Email-Address-XS: Bump to version 1.40.0Kent Fredric2020-08-082-0/+34
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - EAPI7 - Fix LICENSE - Ensure CFLAGS passed to make/compiler Upstream: - add support for parsing and generating addresses with nul character - fix compose_address when both user and host contain non-ASCII 8bit characters - Fix possible memory leak in dovecot parser - Update dovecot parser from dovecot version 2.3.0.1 - Fix reading from unititialized memory when formatting invalid addresses without user or host part - Fix formatting email addresses when user starts with nul byte - Prefer returning empty string from format functions instead of generating invalid email addresses. - Fix dovecot parser to disallow leading dot in dot-atom - Fix generating/validating email addresses with empty user part - Fix generating/validating email addresses with leading/trailing dot in user part. - try to parse invalid email addresses and mark them as invalid - Don't escape apostrophe's in generated email addresses. - Fix formatting email addresses which contain NUL, TAB, LF or CR - Fix formatting comments which contain NUL bytes. Security: - nul character handling changes in parsing could be a vuln, depending on what is done with the result, esp if it doesn't error ( I haven't determined what it does yet ) - "Possible" memory leaks in dovecot parser fixed. - Cribs some of dovcot parse code and may be subject to vulnerabilities in that file in previous versions - Fixed uninitialized memory access in certain address combinations Package-Manager: Portage-2.3.103, Repoman-2.3.22 Signed-off-by: Kent Fredric <kentnl@gentoo.org>
* sys-fs/udev: remove old unstable versionsWilliam Hubbs2020-08-073-567/+0
| | | | Signed-off-by: William Hubbs <williamh@gentoo.org>
* www-client/firefox: fix VAAPI HW acceleration issueThomas Deutschmann2020-08-072-2/+2
| | | | | | Link: https://bugzilla.mozilla.org/show_bug.cgi?id=1656436 Package-Manager: Portage-3.0.1, Repoman-2.3.23 Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
* dev-perl/Email-Address-List: -r bump for EAPI7 + fixesKent Fredric2020-08-082-0/+47
| | | | | | | | | - EAPI7 - Fix LICENSE - Migrate sed hack to a patch Package-Manager: Portage-2.3.103, Repoman-2.3.22 Signed-off-by: Kent Fredric <kentnl@gentoo.org>
* dev-perl/Emacs-PDE: Bump to version 0.2.17Kent Fredric2020-08-082-0/+47
| | | | | | | | | | | - EAPI7 - Fix LICENSE - Remove empty/used variable assignments - Push myconf closer to src_configure as a guard against variables being augmented between ebuild sourcing and function execution Package-Manager: Portage-2.3.103, Repoman-2.3.22 Signed-off-by: Kent Fredric <kentnl@gentoo.org>
* dev-lang/perl: re-add keywordsAndreas K. Hüttel2020-08-071-2/+1
| | | | | Package-Manager: Portage-2.3.103, Repoman-2.3.23 Signed-off-by: Andreas K. Hüttel <dilfridge@gentoo.org>
* sys-kernel/gentoo-sources: Linux patch 4.19.138Mike Pagano2020-08-072-0/+31
| | | | | Package-Manager: Portage-3.0.1, Repoman-2.3.23 Signed-off-by: Mike Pagano <mpagano@gentoo.org>
* sys-kernel/gentoo-sources: Linux patch 4.14.193Mike Pagano2020-08-072-0/+31
| | | | | Package-Manager: Portage-3.0.1, Repoman-2.3.23 Signed-off-by: Mike Pagano <mpagano@gentoo.org>
* dev-python/matplotlib: Remove oldMichał Górny2020-08-079-999/+0
| | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
* dev-python/pandas: Remove oldMichał Górny2020-08-074-358/+0
| | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
* dev-util/meson: sync liveWilliam Hubbs2020-08-071-1/+1
| | | | Signed-off-by: William Hubbs <williamh@gentoo.org>
* dev-util/meson: 0.55.0 bumpWilliam Hubbs2020-08-072-0/+95
| | | | | | Closes: https://bugs.gentoo.org/727482 Closes: https://github.com/gentoo/gentoo/pull/17042 Signed-off-by: William Hubbs <williamh@gentoo.org>
* dev-perl/EV: Bump to version 4.330.0Kent Fredric2020-08-082-0/+29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - EAPI7 - Fixup LICENSE - Ensure CFLAGS passed to make/compiler - Note: I investigated the possibilitiy of using system libev, which is published by the same author, but it isn't currently possible due to the build code needing *c* files from libev directly, and I'm not sure how to decouple that reliably. Upstream: - Sync to (bundled) libev 4.31 - Fix an assertion with a typo - Avoid perl's assert() in more places due to it misbehaving - update libecb for windows environments - use the new ev_io_modify in EV::IO->events - Add mutator methods Timer->repeat, Periodic->{offset,interval,reschedule_cb} - Minor optimizations - Try to name `ev.h` more explicitly for portability - Opportunistic round-up of wait times in polling backends to avoid unneeded loop iterations - Fix minix 3.3 support - Allow users to re-enable assert() in case it is disabled by perl - Allow linux AIO backend to be used by default - Only use __register_atfork with glibc/uclibc, to avoid being broken on musl Package-Manager: Portage-2.3.103, Repoman-2.3.22 Signed-off-by: Kent Fredric <kentnl@gentoo.org>
* dev-python/matplotlib: Stabilize 3.2.2 ppc64, #733840Sam James2020-08-071-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* dev-python/kiwisolver: Stabilize 1.2.0 ppc64, #733840Sam James2020-08-071-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* dev-python/cppy: Stabilize 1.1.0 ppc64, #733840Sam James2020-08-071-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* dev-python/statsmodels: Stabilize 0.11.1 x86, #730968Sam James2020-08-071-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* dev-python/pandas: Stabilize 1.0.5 x86, #730968Sam James2020-08-071-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* dev-python/s3fs: Stabilize 0.4.2 x86, #730968Sam James2020-08-071-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* dev-python/fsspec: Stabilize 0.7.4 x86, #730968Sam James2020-08-071-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* dev-python/bottleneck: Stabilize 1.3.2 x86, #730968Sam James2020-08-071-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* dev-python/pytables: Stabilize 3.6.1 x86, #730968Sam James2020-08-071-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* dev-python/numexpr: Stabilize 2.7.1 x86, #730968Sam James2020-08-071-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* dev-python/openpyxl: Stabilize 3.0.3 x86, #730968Sam James2020-08-071-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* dev-python/cython: Stabilize 0.29.20-r2 x86, #730968Sam James2020-08-071-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* sys-kernel/gentoo-sources: Linux patches 5.4.57 and 5.7.14Mike Pagano2020-08-073-0/+62
| | | | | Package-Manager: Portage-3.0.1, Repoman-2.3.23 Signed-off-by: Mike Pagano <mpagano@gentoo.org>
* sys-power/nut: Stabilize 2.7.4-r6 arm, #735498Sam James2020-08-071-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* sys-block/mbuffer: Stabilize 20200505 arm, #736254Sam James2020-08-071-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* dev-util/meson: sync liveWilliam Hubbs2020-08-071-1/+1
| | | | Signed-off-by: William Hubbs <williamh@gentoo.org>
* media-sound/rosegarden: Drop superfluous RESTRICT="!test? ( test )"Andreas Sturmlechner2020-08-072-2/+0
| | | | | | | | There's no IUSE=test in this ebuild. Bug: https://bugs.gentoo.org/701682 Package-Manager: Portage-3.0.1, Repoman-2.3.23 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
* media-sound/rosegarden: Disable failing test_notationview_selectionAndreas Sturmlechner2020-08-072-4/+12
| | | | | | | | | Cleanup superfluous whitespace. Simplify DISABLE_LIRC switch. Closes: https://bugs.gentoo.org/701682 Package-Manager: Portage-3.0.1, Repoman-2.3.23 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
* dev-lua/luasocket: Stabilize 3.0_rc1-r5 arm64, #733538Sam James2020-08-071-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* dev-python/tox: Stabilize 3.16.1 ALLARCHES, #736202Sam James2020-08-071-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* www-client/elinks: USE=javascript needs dev-lang/spidermonkey:17Felix Janda2020-08-074-2/+10
| | | | | | | | | | | Mask javascript use flag on arm64 and hppa due to missing keyword of dependency Bug: https://bugs.gentoo.org/685080 Bug: https://bugs.gentoo.org/731134 Signed-off-by: Felix Janda <felix.janda@posteo.de> Closes: https://github.com/gentoo/gentoo/pull/16604 Signed-off-by: Sam James <sam@gentoo.org>
* www-client/elinks: fix compilation with -fno-common/gcc10Felix Janda2020-08-073-0/+15
| | | | | | Bug: https://bugs.gentoo.org/730658 Signed-off-by: Felix Janda <felix.janda@posteo.de> Signed-off-by: Sam James <sam@gentoo.org>