summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* net-mail/dovecot: bump to 2.3.9Eray Aslan2019-12-052-0/+288
| | | | | Package-Manager: Portage-2.3.80, Repoman-2.3.19 Signed-off-by: Eray Aslan <eras@gentoo.org>
* profiles/use.desc: remove gnat_201*Tupone Alfredo2019-12-051-4/+0
| | | | Signed-off-by: Alfredo Tupone <tupone@gentoo.org>
* app-emulation/img: EAPI bump, fix bugs and other minor changesYury Martynov2019-12-053-32/+42
| | | | | | | | | Closes: https://bugs.gentoo.org/699564 Closes: https://bugs.gentoo.org/679282 Package-Manager: Portage-2.3.79, Repoman-2.3.16 Signed-off-by: Yury Martynov <email@linxon.ru> Closes: https://github.com/gentoo/gentoo/pull/13851 Signed-off-by: Joonas Niilola <juippis@gentoo.org>
* media-libs/libvpx: bump to v1.8.1Thomas Deutschmann2019-12-052-0/+120
| | | | | | Bug: https://bugs.gentoo.org/701834 Package-Manager: Portage-2.3.80, Repoman-2.3.19 Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
* media-libs/libvpx: security rev bumpThomas Deutschmann2019-12-052-0/+342
| | | | | | Bug: https://bugs.gentoo.org/701834 Package-Manager: Portage-2.3.80, Repoman-2.3.19 Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
* dev-util/pkgcheck: fix doc build depsTim Harder2019-12-042-8/+22
| | | | Signed-off-by: Tim Harder <radhermit@gentoo.org>
* sys-apps/pkgcore: simplify building docs and fix doc build depsTim Harder2019-12-042-14/+24
| | | | | | Closes: https://bugs.gentoo.org/701960 Signed-off-by: Tim Harder <radhermit@gentoo.org>
* dev-python/freezegun-0.3.12-r1: Revbump, cleanup deps a bitPatrick McLean2019-12-041-0/+9
| | | | | | Copyright: Sony Interactive Entertainment Inc. Package-Manager: Portage-2.3.80, Repoman-2.3.19 Signed-off-by: Patrick McLean <chutzpah@gentoo.org>
* dev-libs/oniguruma: bump to v6.9.4Thomas Deutschmann2019-12-052-0/+33
| | | | | Package-Manager: Portage-2.3.80, Repoman-2.3.19 Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
* net-firewall/nftables: Depend on >=net-libs/libnftnl-1.1.5Francisco Blas (klondike) Izquierdo Riera2019-12-041-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Although upstreams reports that nftables 0.9.3 depends on libnftnl 1.1.4 or higher. Using said version results on the following errors: netlink.c: In function ‘netlink_delinearize_chain’: netlink.c:423:38: error: ‘NFTNL_CHAIN_DEVICES’ undeclared (first use in this function); did you mean ‘NFTNL_CHAIN_DEV’? } else if (nftnl_chain_is_set(nlc, NFTNL_CHAIN_DEVICES)) { ^~~~~~~~~~~~~~~~~~~ NFTNL_CHAIN_DEV netlink.c:423:38: note: each undeclared identifier is reported only once for each function it appears in netlink.c: In function ‘netlink_delinearize_obj’: netlink.c:1049:27: error: ‘NFTNL_OBJ_SYNPROXY_MSS’ undeclared (first use in this function); did you mean ‘NFTNL_EXPR_SYNPROXY_MSS’? nftnl_obj_get_u16(nlo, NFTNL_OBJ_SYNPROXY_MSS); ^~~~~~~~~~~~~~~~~~~~~~ NFTNL_EXPR_SYNPROXY_MSS netlink.c:1051:26: error: ‘NFTNL_OBJ_SYNPROXY_WSCALE’ undeclared (first use in this function); did you mean ‘NFTNL_EXPR_SYNPROXY_WSCALE’? nftnl_obj_get_u8(nlo, NFTNL_OBJ_SYNPROXY_WSCALE); ^~~~~~~~~~~~~~~~~~~~~~~~~ NFTNL_EXPR_SYNPROXY_WSCALE netlink.c:1053:27: error: ‘NFTNL_OBJ_SYNPROXY_FLAGS’ undeclared (first use in this function); did you mean ‘NFTNL_EXPR_SYNPROXY_FLAGS’? nftnl_obj_get_u32(nlo, NFTNL_OBJ_SYNPROXY_FLAGS); ^~~~~~~~~~~~~~~~~~~~~~~~ NFTNL_EXPR_SYNPROXY_FLAGS netlink.c: In function ‘netlink_delinearize_flowtable’: netlink.c:1137:3: warning: implicit declaration of function ‘nftnl_flowtable_get_u64’; did you mean ‘nftnl_flowtable_get_u32’? [-Wimplicit-function-declaration] nftnl_flowtable_get_u64(nlo, NFTNL_FLOWTABLE_HANDLE); ^~~~~~~~~~~~~~~~~~~~~~~ nftnl_flowtable_get_u32 netlink.c:1137:32: error: ‘NFTNL_FLOWTABLE_HANDLE’ undeclared (first use in this function); did you mean ‘NFTA_FLOWTABLE_HANDLE’? nftnl_flowtable_get_u64(nlo, NFTNL_FLOWTABLE_HANDLE); ^~~~~~~~~~~~~~~~~~~~~~ NFTA_FLOWTABLE_HANDLE Depend instead on version 1.1.5 or higher with which the compilation suceeds. Closes: https://bugs.gentoo.org/701976 Signed-off-by: Francisco Blas Izquierdo Riera (klondike) <klondike@gentoo.org> Package-Manager: Portage-2.3.76, Repoman-2.3.11 Signed-off-by: Matthew Thode <prometheanfire@gentoo.org>
* net-firewall/nftables: Port missing changes to 0.9.3Francisco Blas (klondike) Izquierdo Riera2019-12-041-2/+2
| | | | | | | | | | | | | | Lars added nftables-0.9.3 at the time I was doing the changes to rename the modern_kernel USE flag and move the skel files into its own folder in doc. As a result of this, I missed the ebuild and didn't update it. Update also the 0.9.3 ebuild so it follows the same conventions as the others. Signed-off-by: Francisco Blas Izquierdo Riera (klondike) <klondike@gentoo.org> Package-Manager: Portage-2.3.76, Repoman-2.3.11 Signed-off-by: Matthew Thode <prometheanfire@gentoo.org>
* sys-apps/portage-2.3.79: alpha stable, bug 701106Matt Turner2019-12-041-1/+1
| | | | Signed-off-by: Matt Turner <mattst88@gentoo.org>
* sys-apps/kmod-26-r3: alpha stable, bug 684778Matt Turner2019-12-041-1/+1
| | | | Signed-off-by: Matt Turner <mattst88@gentoo.org>
* profiles/package.mask: drop mask on dev-python/fabricAaron Bauman2019-12-041-1/+0
| | | | Signed-off-by: Aaron Bauman <bman@gentoo.org>
* dev-python/fabric: drop oldAaron Bauman2019-12-043-152/+0
| | | | Signed-off-by: Aaron Bauman <bman@gentoo.org>
* dev-python/fabric: drop py2.7 and other fixesAaron Bauman2019-12-041-9/+8
| | | | Signed-off-by: Aaron Bauman <bman@gentoo.org>
* sys-kernel/gentoo-sources: Linux patch 5.4.2Thomas Deutschmann2019-12-052-0/+31
| | | | | Package-Manager: Portage-2.3.80, Repoman-2.3.19 Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
* sys-kernel/gentoo-sources: Linux patch 5.3.15Thomas Deutschmann2019-12-052-0/+31
| | | | | Package-Manager: Portage-2.3.80, Repoman-2.3.19 Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
* profiles/alpha: Drop elogind from use.stable.maskMatt Turner2019-12-041-4/+0
| | | | Signed-off-by: Matt Turner <mattst88@gentoo.org>
* sys-auth/elogind-241.4: alpha stable, bug 685748Matt Turner2019-12-041-1/+1
| | | | Signed-off-by: Matt Turner <mattst88@gentoo.org>
* dev-python/virtualenv-16.7.8: Version bump, add pypy{,3}Patrick McLean2019-12-043-0/+125
| | | | | | Copyright: Sony Interactive Entertainment Inc. Package-Manager: Portage-2.3.80, Repoman-2.3.19 Signed-off-by: Patrick McLean <chutzpah@gentoo.org>
* dev-python/twine-3.1.1: Version bumpPatrick McLean2019-12-042-0/+63
| | | | | | Copyright: Sony Interactive Entertainment Inc. Package-Manager: Portage-2.3.80, Repoman-2.3.19 Signed-off-by: Patrick McLean <chutzpah@gentoo.org>
* dev-python/twine-3.0.0: add py38Patrick McLean2019-12-041-1/+1
| | | | | | Copyright: Sony Interactive Entertainment Inc. Package-Manager: Portage-2.3.80, Repoman-2.3.19 Signed-off-by: Patrick McLean <chutzpah@gentoo.org>
* dev-python/pypiserver-1.3.1-r1: revbump, add py38, remove unneeded tox depPatrick McLean2019-12-041-5/+9
| | | | | | Copyright: Sony Interactive Entertainment Inc. Package-Manager: Portage-2.3.80, Repoman-2.3.19 Signed-off-by: Patrick McLean <chutzpah@gentoo.org>
* dev-python/twine-1.15.0: Add py38Patrick McLean2019-12-041-1/+1
| | | | | | Copyright: Sony Interactive Entertainment Inc. Package-Manager: Portage-2.3.80, Repoman-2.3.19 Signed-off-by: Patrick McLean <chutzpah@gentoo.org>
* profiles/package.mask: mask leaf py2.7 pkgsAaron Bauman2019-12-041-0/+140
| | | | | | | | | | | | | | | | | | | | | | | * These packages are (mostly) leaf dev-python/* packages which have no py3 impl in the ebuild * Packages not from dev-python/* are preceded by the relevevant dev-python/* pkg which caused the package to be masked. * This is just the "tip of the iceberg" of py2 only packages. As such, due to the sheer number of packages, it is nearly impossible for any one person or project to address them all. * Many of these packages are likely not needed, but some will be. If you find a package that is needed please update/port/fix the ebuild/src to support py3 * This is not a "go fix it or it dies" stance. If you can please assist in identifying which packages have upstream supported py3 impls please feel free to ping me to support porting the ebuild. * There may be false positives. Sorry about that. Feel free to adjust the mask and remove any py2 only ebuilds (e.g. multiple versions/revisions of ebuilds and one of them only supports py2) * Removal in 30 days Always happy to help/assist in keeping things moving along within Gentoo. Signed-off-by: Aaron Bauman <bman@gentoo.org>
* app-benchmarks/stress-ng: update LICENSEConrad Kostecki2019-12-052-2/+2
| | | | | | | | Updated incorrect license from GPL-2 to GPL-2+, as it's stated in the source code. Package-Manager: Portage-2.3.80, Repoman-2.3.19 Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
* app-benchmarks/stress-ng: bump to version 0.10.12Conrad Kostecki2019-12-052-0/+39
| | | | | | | Also dropped slot operator from sys-libs/zlib. Package-Manager: Portage-2.3.80, Repoman-2.3.19 Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
* app-benchmarks/geekbench: drop old versionConrad Kostecki2019-12-052-44/+0
| | | | | Package-Manager: Portage-2.3.80, Repoman-2.3.19 Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
* app-benchmarks/geekbench: bump to version 5.0.4Conrad Kostecki2019-12-052-0/+44
| | | | | Package-Manager: Portage-2.3.80, Repoman-2.3.19 Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
* media-libs/mesa: Drop old versionsMatt Turner2019-12-044-1647/+0
| | | | Signed-off-by: Matt Turner <mattst88@gentoo.org>
* media-libs/mesa: Version bump to 19.3.0_rc6Matt Turner2019-12-042-0/+549
| | | | Signed-off-by: Matt Turner <mattst88@gentoo.org>
* media-libs/mesa: Version bump to 19.2.7Matt Turner2019-12-042-0/+549
| | | | Signed-off-by: Matt Turner <mattst88@gentoo.org>
* sys-apps/idle3-tools: update SRC_URIConrad Kostecki2019-12-051-1/+1
| | | | | | | Moving source file from my private server to devbox. Package-Manager: Portage-2.3.80, Repoman-2.3.19 Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
* dev-libs/luise-bin: update HOMEPAGE and SRC_URIConrad Kostecki2019-12-051-2/+2
| | | | | | | | Updating homepage to a newer snapshot on archive.org. Moving source file from my private server to devbox. Package-Manager: Portage-2.3.80, Repoman-2.3.19 Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
* app-misc/lcd4linux: update SRC_URIConrad Kostecki2019-12-052-4/+4
| | | | | | | Moving source file from my private server to devbox. Package-Manager: Portage-2.3.80, Repoman-2.3.19 Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
* app-benchmarks/cpuburn: update HOMEPAGE and SRC_URIConrad Kostecki2019-12-051-2/+2
| | | | | | | | Updating homepage from my private server to archive.org. Moving source file from my private server to devbox. Package-Manager: Portage-2.3.80, Repoman-2.3.19 Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
* sys-kernel/raspberrypi-sources: add new version 5.4.9999Andrey Utkin2019-12-041-0/+28
| | | | | Package-Manager: Portage-2.3.66, Repoman-2.3.16 Signed-off-by: Andrey Utkin <andrey_utkin@gentoo.org>
* sys-kernel/raspberrypi-sources: upgrade to EAPI=6Andrey Utkin2019-12-041-3/+3
| | | | | Package-Manager: Portage-2.3.66, Repoman-2.3.16 Signed-off-by: Andrey Utkin <andrey_utkin@gentoo.org>
* sys-kernel/raspberrypi-sources: drop old versionsAndrey Utkin2019-12-047-189/+0
| | | | | Package-Manager: Portage-2.3.66, Repoman-2.3.16 Signed-off-by: Andrey Utkin <andrey_utkin@gentoo.org>
* sys-kernel/raspberrypi-sources: make clone shallowAndrey Utkin2019-12-041-0/+1
| | | | | | | This makes download size and time reasonable. Package-Manager: Portage-2.3.66, Repoman-2.3.16 Signed-off-by: Andrey Utkin <andrey_utkin@gentoo.org>
* sys-kernel/raspberrypi-sources: take maintainershipAndrey Utkin2019-12-041-1/+4
| | | | | | | Was maintainer-needed. Package-Manager: Portage-2.3.66, Repoman-2.3.16 Signed-off-by: Andrey Utkin <andrey_utkin@gentoo.org>
* profiles/ia64: Drop elogind from use.stable.maskMatt Turner2019-12-041-4/+0
| | | | Signed-off-by: Matt Turner <mattst88@gentoo.org>
* profiles/powerpc: Drop elogind from use.stable.maskMatt Turner2019-12-041-4/+0
| | | | Signed-off-by: Matt Turner <mattst88@gentoo.org>
* sys-auth/elogind-241.4: ppc64 stable, bug 685748Matt Turner2019-12-041-1/+1
| | | | Signed-off-by: Matt Turner <mattst88@gentoo.org>
* sys-auth/elogind-241.4: ppc stable, bug 685748Matt Turner2019-12-041-1/+1
| | | | Signed-off-by: Matt Turner <mattst88@gentoo.org>
* app-misc/rbutil: Drop old 1.4.0James Le Cuirot2019-12-043-151/+0
| | | | | Package-Manager: Portage-2.3.80, Repoman-2.3.19 Signed-off-by: James Le Cuirot <chewi@gentoo.org>
* app-misc/rbutil: Bump to 1.4.1, EAPI 7James Le Cuirot2019-12-043-0/+125
| | | | | Package-Manager: Portage-2.3.80, Repoman-2.3.19 Signed-off-by: James Le Cuirot <chewi@gentoo.org>
* sys-auth/elogind-241.4: ia64 stable, bug 685748Matt Turner2019-12-041-1/+1
| | | | Signed-off-by: Matt Turner <mattst88@gentoo.org>
* dev-python/jaraco-envs-1.0.1: add pypy{,3}Patrick McLean2019-12-041-1/+1
| | | | | | Copyright: Sony Interactive Entertainment Inc. Package-Manager: Portage-2.3.80, Repoman-2.3.19 Signed-off-by: Patrick McLean <chutzpah@gentoo.org>