[gentoo-commits] repo/gentoo:master commit in: eclass/

2021-03-07 Thread Michał Górny
commit: b9829ab04f3bab77641f5a148989ca9723c10fa4
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Mar  6 10:59:19 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Mar  8 07:52:32 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9829ab0

python-utils-r1.eclass: Always force test summary in epytest

Explicitly request pytest to display the summary of all test results
except for passing tests.  This overrides the upstream defaults to
improve the quality of build logs.

Signed-off-by: Michał Górny  gentoo.org>

 eclass/python-utils-r1.eclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/eclass/python-utils-r1.eclass b/eclass/python-utils-r1.eclass
index 1b2e2ccde8e..52d064e4af8 100644
--- a/eclass/python-utils-r1.eclass
+++ b/eclass/python-utils-r1.eclass
@@ -1294,7 +1294,7 @@ epytest() {
local die_args=()
[[ ${EAPI} != [45] ]] && die_args+=( -n )
 
-   set -- "${EPYTHON}" -m pytest -vv "${@}"
+   set -- "${EPYTHON}" -m pytest -vv -ra "${@}"
 
echo "${@}" >&2
"${@}" || die "${die_args[@]}" "pytest failed with ${EPYTHON}"



[gentoo-commits] repo/gentoo:master commit in: eclass/

2021-03-07 Thread Michał Górny
commit: 5130c0197421a125eff7d98c5d0f7ae284acddce
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Mar  6 10:55:41 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Mar  8 07:52:30 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5130c019

python-utils-r1.eclass: Introduce epytest helper

Introduce an epytest helper to call pytest with the standard set
of options, and the standard error message.  While
distutils_enable_tests made running pytest a lot easier, there are still
many cases when python_test() needs to be redefined in order to pass
additional options or perform additional actions.  Having the extra
helper will reduce code duplication and make it easier to change
the standard options.

Signed-off-by: Michał Górny  gentoo.org>

 eclass/python-utils-r1.eclass | 23 +++
 1 file changed, 23 insertions(+)

diff --git a/eclass/python-utils-r1.eclass b/eclass/python-utils-r1.eclass
index dcc441b8209..1b2e2ccde8e 100644
--- a/eclass/python-utils-r1.eclass
+++ b/eclass/python-utils-r1.eclass
@@ -1278,6 +1278,29 @@ build_sphinx() {
HTML_DOCS+=( "${dir}/_build/html/." )
 }
 
+# @FUNCTION: epytest
+# @USAGE: [...]
+# @DESCRIPTION:
+# Run pytest, passing the standard set of pytest options, followed
+# by user-specified options.
+#
+# This command dies on failure and respects nonfatal in EAPIs supporting
+# nonfatal die.
+epytest() {
+   debug-print-function ${FUNCNAME} "${@}"
+
+   [[ -n ${EPYTHON} ]] || die "EPYTHON unset, invalid call context"
+
+   local die_args=()
+   [[ ${EAPI} != [45] ]] && die_args+=( -n )
+
+   set -- "${EPYTHON}" -m pytest -vv "${@}"
+
+   echo "${@}" >&2
+   "${@}" || die "${die_args[@]}" "pytest failed with ${EPYTHON}"
+   return ${?}
+}
+
 # -- python.eclass functions --
 
 _python_check_dead_variables() {



[gentoo-commits] repo/gentoo:master commit in: eclass/

2021-03-07 Thread Michał Górny
commit: 18c4fc06670c03dc4aa899c6750716713b36f52e
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Mar  6 10:53:17 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Mar  8 07:52:31 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18c4fc06

distutils-r1.eclass: Use epytest

Signed-off-by: Michał Górny  gentoo.org>

 eclass/distutils-r1.eclass | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass
index ca2ed98c8e8..f5b151d4b8e 100644
--- a/eclass/distutils-r1.eclass
+++ b/eclass/distutils-r1.eclass
@@ -435,11 +435,11 @@ distutils_enable_tests() {
if [[ ${do_install} ]]; then
python_test() {
distutils_install_for_testing --via-root
-   pytest -vv || die "Tests fail with 
${EPYTHON}"
+   epytest
}
else
python_test() {
-   pytest -vv || die "Tests fail with 
${EPYTHON}"
+   epytest
}
fi
;;



[gentoo-commits] repo/gentoo:master commit in: app-admin/testdisk/

2021-03-07 Thread Michał Górny
commit: a140b45cb75a645c719f35a7bf05466dbf7db531
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Mar  8 07:41:47 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Mar  8 07:42:29 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a140b45c

app-admin/testdisk: Fix building without qtchooser

Closes: https://bugs.gentoo.org/774102
Signed-off-by: Michał Górny  gentoo.org>

 app-admin/testdisk/testdisk-7.1.ebuild | 6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/app-admin/testdisk/testdisk-7.1.ebuild 
b/app-admin/testdisk/testdisk-7.1.ebuild
index c76b3239eb3..07e3dfe84f2 100644
--- a/app-admin/testdisk/testdisk-7.1.ebuild
+++ b/app-admin/testdisk/testdisk-7.1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
-inherit autotools flag-o-matic xdg-utils
+inherit autotools flag-o-matic qmake-utils xdg-utils
 
 DESCRIPTION="Checks and undeletes partitions + PhotoRec, signature based 
recovery tool"
 HOMEPAGE="https://www.cgsecurity.org/wiki/TestDisk;
@@ -53,6 +53,8 @@ RDEPEND="!static? ( ${COMMON_DEPEND} )"
 DOCS=()
 
 src_configure() {
+   export PATH="$(qt5_get_bindir):${PATH}"
+
local myconf=(
--enable-sudo
--without-ntfs



[gentoo-commits] repo/gentoo:master commit in: dev-libs/pigpio/

2021-03-07 Thread Joonas Niilola
commit: eff5cdcb968fbb98bbc0acd678b25ac8f1d4050b
Author: Daniel Kenzelmann  k8n  de>
AuthorDate: Wed Mar  3 09:48:25 2021 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Mon Mar  8 07:35:05 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eff5cdcb

dev-libs/pigpio: new version 79

new upstream version

Signed-off-by: Daniel Kenzelmann  k8n.de>
Closes: https://github.com/gentoo/gentoo/pull/19749
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-libs/pigpio/Manifest |  1 +
 dev-libs/pigpio/pigpio-79.ebuild | 36 
 2 files changed, 37 insertions(+)

diff --git a/dev-libs/pigpio/Manifest b/dev-libs/pigpio/Manifest
index 9f57e0c9b36..21ece8fa0da 100644
--- a/dev-libs/pigpio/Manifest
+++ b/dev-libs/pigpio/Manifest
@@ -1,3 +1,4 @@
 DIST pigpio-76.tar.gz 2905839 BLAKE2B 
7828a94fad9f110392dc114534a3b242f1f135d352885f3c4332a1d4a16f49d2fa58b57e9e3d64c2bf9b5f3bdd7e84a74775b518fc409daf75a55a87c5f3af57
 SHA512 
8cc1dc64ae32a07f4b6e200638065ba5fb26a94c1a730d81b64fa5f2bb9356b2b9910decb41def6932fc76f7ebd1df99a7966516ba3df9a09108de0afcd119d3
 DIST pigpio-77.tar.gz 2902866 BLAKE2B 
d03a97a596d5f408d29e61e8c5f727d7bca4caf8aeec63e9914b8d52bdc0d03d3d5b9ef1fdb408a6fcd72cd0b899f30eb79d02426cc83b271d71b543bf346928
 SHA512 
0533d18bc244d4cf487ffebdd68b9f341139e70df3a3862dc4705afefa2e3e4e2f51792a6c4a440b8ee1f111c9ae3141770b9578601bfa44e166bb438f45b80c
 DIST pigpio-78.tar.gz 2900959 BLAKE2B 
71a7ed89b247292718229955bf69bec1b7798040fb69b3d9d19a1143cd4fc6565b61deb6ed3bc40eb643a7987f88809125b4368b80aab2fe03bfbaa5fd665274
 SHA512 
893eefc4a5ab054d56df2c439539ab32a292050aa1fe4b062ba535921f1b12aeac9d509756d08986cd18ed512f52517fa64822422ea3f4dbf6e41fd364a75c3f
+DIST pigpio-79.tar.gz 2908059 BLAKE2B 
e33347a68635c1d8c9f65b3e1c23442b625a76c2c774326d093c281024abc7d588d4c5f7137056f49c44752752d0873fdbb24de9148a7306c61c91771d280e6b
 SHA512 
bae24b0a28b6865bf4e0903d9e1881344ab7cf26a513f295d178402a426f90f2fdd43444cfe899c0bc25939a129ebf47ecd1ac1600683cd648902d56825a3203

diff --git a/dev-libs/pigpio/pigpio-79.ebuild b/dev-libs/pigpio/pigpio-79.ebuild
new file mode 100644
index 000..4f6097e8c96
--- /dev/null
+++ b/dev-libs/pigpio/pigpio-79.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7,8,9} )
+
+inherit distutils-r1 systemd toolchain-funcs
+
+DESCRIPTION="A library for the Raspberry which allows control of the GPIOs"
+HOMEPAGE="http://abyz.me.uk/rpi/pigpio/ https://github.com/joan2937/pigpio;
+SRC_URI="https://github.com/joan2937/pigpio/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="Unlicense"
+SLOT="0"
+KEYWORDS="~arm"
+IUSE="python"
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
+PATCHES=( "${FILESDIR}/${PN}-70-makefile.patch" )
+
+src_compile() {
+   emake CC="$(tc-getCC)" STRIP=: STRIPLIB=: SIZE=:
+   use python && distutils-r1_src_compile
+}
+
+src_install() {
+   emake DESTDIR="${D}" LDCONFIG=: PYTHON2=: PYTHON3=: \
+   libdir="${EPREFIX}/usr/$(get_libdir)" prefix="${EPREFIX}/usr" \
+   mandir="${EPREFIX}/usr/share/man" install
+   einstalldocs
+   newinitd "${FILESDIR}"/pigpiod.initd pigpiod
+   newconfd "${FILESDIR}"/pigpiod.confd pigpiod
+   systemd_newunit "${S}"/util/pigpiod.service pigpiod.service
+   use python && distutils-r1_src_install
+}



[gentoo-commits] repo/gentoo:master commit in: x11-terms/terminator/

2021-03-07 Thread Joonas Niilola
commit: be49ac3e4d40f47f2b1c1a356bcab27ae0f6a324
Author: Alexey Sokolov  google  com>
AuthorDate: Mon Mar  8 07:34:24 2021 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Mon Mar  8 07:35:05 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be49ac3e

x11-terms/terminator: version 2.1.0

Closes: https://bugs.gentoo.org/772326
Signed-off-by: Alexey Sokolov  google.com>
Signed-off-by: Joonas Niilola  gentoo.org>

 x11-terms/terminator/Manifest|  2 +
 x11-terms/terminator/terminator-2.1.0.ebuild | 72 
 2 files changed, 74 insertions(+)

diff --git a/x11-terms/terminator/Manifest b/x11-terms/terminator/Manifest
index 7d3d391e290..e0f1884ffcc 100644
--- a/x11-terms/terminator/Manifest
+++ b/x11-terms/terminator/Manifest
@@ -1 +1,3 @@
 DIST terminator-2.0.1.tar.gz 934263 BLAKE2B 
b3b74f513f50f53bd9d6c0909daebb6912b20fd19cfb4ebcded443d2118a4608c3377e0498604ffec61e4d4ee48eb573a4e59ebef9a2b5708f52afb6949238cf
 SHA512 
d0159ba966a10e51d18374ce2c9f700a2b9cc981496804948ed8d13b2896ad2c2a621337b6e5da8abee59616c16a64ac267e02b8ecd55d40c35d503397a9f50b
+DIST terminator-2.1.0.tar.gz 1030864 BLAKE2B 
2fb92644b1e5a79f9f9d307e50889d8741e5dc5c9e15f10d29b9c0ecb8a5c07839fd3018034435815f5dbf8f387122c18fcc71d7c82a8a250ea4449673a7054d
 SHA512 
0406b0542d5b4498084968b4e49a5ae3ff10db394907930923ad76ac5edf459c976a0a5b8617fd3a14dcde464b563ae137beb33e04b5b82ae856c497abf3fd04
+DIST terminator-2.1.0.tar.gz.asc 866 BLAKE2B 
de8580504665943677eff710418c587f9da1618f2a79c8af76f53c1dae1a5d458be6489e5fd4c8fc7cd89d87d38d7546b1932b9c9c4876a7c3fed3be8fcec930
 SHA512 
bc5562cf75bb4e890e98e3f3d52f385d357ad97ccca3584da3ea0e5b383f30558ca99808af20c3b5d479d98beed3e69a31a9fe43d289e55d949976843f09ae31

diff --git a/x11-terms/terminator/terminator-2.1.0.ebuild 
b/x11-terms/terminator/terminator-2.1.0.ebuild
new file mode 100644
index 000..50543f70075
--- /dev/null
+++ b/x11-terms/terminator/terminator-2.1.0.ebuild
@@ -0,0 +1,72 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7,8,9} )
+inherit distutils-r1 optfeature verify-sig virtualx xdg-utils
+
+DESCRIPTION="Multiple GNOME terminals in one window"
+HOMEPAGE="https://github.com/gnome-terminator/terminator;
+SRC_URI="
+   
https://github.com/gnome-terminator/terminator/releases/download/v${PV}/${P}.tar.gz
+   verify-sig? ( 
https://github.com/gnome-terminator/terminator/releases/download/v${PV}/${P}.tar.gz.asc
 )
+"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE="test"
+
+RDEPEND="
+   dev-libs/glib:2
+   dev-python/configobj[${PYTHON_USEDEP}]
+   dev-python/psutil[${PYTHON_USEDEP}]
+   dev-python/pycairo[${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   gnome-base/gsettings-desktop-schemas[introspection]
+   x11-libs/gtk+:3
+   x11-libs/vte:2.91[introspection]
+"
+BDEPEND="
+   dev-util/intltool
+   sys-devel/gettext
+   test? (
+   dev-python/dbus-python[${PYTHON_USEDEP}]
+   x11-libs/libnotify[introspection]
+   )
+   verify-sig? ( app-crypt/openpgp-keys-terminator )
+"
+distutils_enable_tests pytest
+
+VERIFY_SIG_OPENPGP_KEY_PATH=${BROOT}/usr/share/openpgp-keys/terminator.asc
+
+PATCHES=(
+   "${FILESDIR}"/terminator-1.91-without-icon-cache.patch
+   "${FILESDIR}"/terminator-1.91-desktop.patch
+)
+
+src_prepare() {
+   xdg_environment_reset
+   sed -i -e '/pytest-runner/d' setup.py || die
+   distutils-r1_src_prepare
+}
+
+src_test() {
+   virtx distutils-r1_src_test
+}
+
+pkg_postinst() {
+   xdg_desktop_database_update
+   xdg_icon_cache_update
+
+   elog "Consider installing the following for additional features:"
+   optfeature "D-Bus" dev-python/dbus-python
+   optfeature "Desktop notifications" "x11-libs/libnotify[introspection]"
+   optfeature "Global keyboard shortcuts" 
"dev-libs/keybinder:3[introspection]"
+}
+
+pkg_postrm() {
+   xdg_desktop_database_update
+   xdg_icon_cache_update
+}



[gentoo-commits] repo/gentoo:master commit in: games-engines/openmw/, games-engines/openmw/files/

2021-03-07 Thread Joonas Niilola
commit: 7a7657e01bf33cba95cf23d4877106b76f793fee
Author: Alexey Sokolov  google  com>
AuthorDate: Mon Mar  8 07:29:04 2021 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Mon Mar  8 07:35:05 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a7657e0

games-engines/openmw: fix build of 

Closes: https://bugs.gentoo.org/773211
Signed-off-by: Alexey Sokolov  google.com>
Thanks-to: Benjamin Winger  disroot.org>
Signed-off-by: Joonas Niilola  gentoo.org>

 .../openmw/files/openmw-0.47.0-bullet-debian.patch| 15 +++
 games-engines/openmw/openmw-.ebuild   | 10 --
 2 files changed, 19 insertions(+), 6 deletions(-)

diff --git a/games-engines/openmw/files/openmw-0.47.0-bullet-debian.patch 
b/games-engines/openmw/files/openmw-0.47.0-bullet-debian.patch
new file mode 100644
index 000..3a8486250a8
--- /dev/null
+++ b/games-engines/openmw/files/openmw-0.47.0-bullet-debian.patch
@@ -0,0 +1,15 @@
+This condition makes it link to wrong library on Gentoo Prefix on Debian
+--- a/components/CMakeLists.txt
 b/components/CMakeLists.txt
+@@ -246,11 +246,7 @@ target_link_libraries(components
+ RecastNavigation::Recast
+ )
+ 
+-if (BULLET_USE_DOUBLES AND (UBUNTU_FOUND OR DEBIAN_FOUND) AND 
OPENMW_USE_SYSTEM_BULLET)
+-target_link_libraries(components BulletCollision-float64 
LinearMath-float64)
+-else()
+ target_link_libraries(components ${BULLET_LIBRARIES})
+-endif()
+ 
+ if (WIN32)
+ target_link_libraries(components

diff --git a/games-engines/openmw/openmw-.ebuild 
b/games-engines/openmw/openmw-.ebuild
index 70603fec46a..512ef385589 100644
--- a/games-engines/openmw/openmw-.ebuild
+++ b/games-engines/openmw/openmw-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -26,6 +26,7 @@ RESTRICT="!test? ( test )"
 # used when BUILD_OPENCS flag is enabled. See bug #676266.
 
 RDEPEND="
+   app-arch/lz4
dev-games/mygui
dev-games/recastnavigation
dev-libs/boost:=[threads]
@@ -62,7 +63,7 @@ BDEPEND="
 
 PATCHES=(
"${FILESDIR}"/openmw-0.47.0-mygui-license.patch
-   "${FILESDIR}"/openmw-0.46.0-recastnavigation.patch
+   "${FILESDIR}"/openmw-0.47.0-bullet-debian.patch
 )
 
 src_prepare() {
@@ -70,10 +71,6 @@ src_prepare() {
 
# Use the system tinyxml headers
rm -v extern/oics/tiny{str,xml}* || die
-
-   # Unbundle recastnavigation
-   rm -vr extern/recastnavigation || die
-   sed -i "s#GENTOO_RECAST_LIBDIR#${EPREFIX}/usr/$(get_libdir)#" 
CMakeLists.txt || die
 }
 
 src_configure() {
@@ -95,6 +92,7 @@ src_configure() {
-DICONDIR="${EPREFIX}/usr/share/icons/hicolor/256x256/apps"
-DMORROWIND_DATA_FILES="${EPREFIX}/usr/share/morrowind-data"
-DUSE_SYSTEM_TINYXML=ON
+   -DOPENMW_USE_SYSTEM_RECASTNAVIGATION=ON
-DDESIRED_QT_VERSION=5
-DBULLET_USE_DOUBLES=ON
)



[gentoo-commits] repo/gentoo:master commit in: app-crypt/openpgp-keys-terminator/

2021-03-07 Thread Joonas Niilola
commit: 21dc2b86863f5b15f8f3b886c59fe9fee7930094
Author: Alexey Sokolov  google  com>
AuthorDate: Mon Mar  8 07:32:52 2021 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Mon Mar  8 07:35:05 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21dc2b86

app-crypt/openpgp-keys-terminator: new package

Bug: https://bugs.gentoo.org/772326
Signed-off-by: Alexey Sokolov  google.com>
Signed-off-by: Joonas Niilola  gentoo.org>

 app-crypt/openpgp-keys-terminator/Manifest   |  1 +
 app-crypt/openpgp-keys-terminator/metadata.xml   | 13 +
 .../openpgp-keys-terminator-20210306.ebuild  | 20 
 3 files changed, 34 insertions(+)

diff --git a/app-crypt/openpgp-keys-terminator/Manifest 
b/app-crypt/openpgp-keys-terminator/Manifest
new file mode 100644
index 000..976eeced08a
--- /dev/null
+++ b/app-crypt/openpgp-keys-terminator/Manifest
@@ -0,0 +1 @@
+DIST gpg-D11A7596F61705480C711598F2FAC7C7BAE930A5.asc 3898 BLAKE2B 
d0ad7f85001c2e7ecaabfee90e4676296be271b00a10dc8206d8be3b5e4c4c8619f65d9d2361569ad7be44a41d67b5815ce0521e85e7a6bededd3840e0912bfb
 SHA512 
c7b9df5ff1ac3cc64ca12643be7415742f7af6d43324d355412cab2c6a6c9d1f4b3d5ea33005d76ebff9a6513a25beab16ee4446e753adecfde125b5c1ca9f5a

diff --git a/app-crypt/openpgp-keys-terminator/metadata.xml 
b/app-crypt/openpgp-keys-terminator/metadata.xml
new file mode 100644
index 000..301999f989e
--- /dev/null
+++ b/app-crypt/openpgp-keys-terminator/metadata.xml
@@ -0,0 +1,13 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   alexey+gen...@asokolov.org
+   Alexey Sokolov
+   
+   
+   proxy-ma...@gentoo.org
+   Proxy Maintainers
+   
+   
+

diff --git 
a/app-crypt/openpgp-keys-terminator/openpgp-keys-terminator-20210306.ebuild 
b/app-crypt/openpgp-keys-terminator/openpgp-keys-terminator-20210306.ebuild
new file mode 100644
index 000..8389ba121a4
--- /dev/null
+++ b/app-crypt/openpgp-keys-terminator/openpgp-keys-terminator-20210306.ebuild
@@ -0,0 +1,20 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="OpenPGP keys used to sign x11-terms/terminator package"
+HOMEPAGE="https://github.com/gnome-terminator/terminator;
+SRC_URI="https://github.com/gnome-terminator/terminator/releases/download/v2.1.0/gpg-D11A7596F61705480C711598F2FAC7C7BAE930A5.asc;
+
+LICENSE="public-domain"
+SLOT="0"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
sparc x86"
+
+S=${WORKDIR}
+
+src_install() {
+   local files=( ${A} )
+   insinto /usr/share/openpgp-keys
+   newins - terminator.asc < <(cat "${files[@]/#/${DISTDIR}/}")
+}



[gentoo-commits] repo/gentoo:master commit in: sci-geosciences/grass/

2021-03-07 Thread Joonas Niilola
commit: d956b5866f1da4610846448a0b9b7965255f3c77
Author: Joonas Niilola  gentoo  org>
AuthorDate: Mon Mar  8 07:22:02 2021 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Mon Mar  8 07:35:05 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d956b586

sci-geosciences/grass: drop 7.8.4

Signed-off-by: Joonas Niilola  gentoo.org>

 sci-geosciences/grass/Manifest   |   1 -
 sci-geosciences/grass/grass-7.8.4.ebuild | 269 ---
 2 files changed, 270 deletions(-)

diff --git a/sci-geosciences/grass/Manifest b/sci-geosciences/grass/Manifest
index 983f9b9086c..70795544ec0 100644
--- a/sci-geosciences/grass/Manifest
+++ b/sci-geosciences/grass/Manifest
@@ -1,2 +1 @@
-DIST grass-7.8.4.tar.gz 61791074 BLAKE2B 
9234ff11c9f780c350d26c94b92b1dd87e00b84cee857fd6c8d0abb4f5977871c936dbf6818f7ba174aff0b846b9a27417de4ea1edbd6f2a0b0ba65efe8a842a
 SHA512 
0a5889c2d054c3f29ba53b8a2d2bd783e077d9b1ad7035ca4e0152258cd4ff165641dca2c696ca03ddb466ad80c1c7c7f9aee535c1fbd82a75c30d7b0a98cdb1
 DIST grass-7.8.5.tar.gz 61801712 BLAKE2B 
d7a929e28ea050285f47dd84093c6db85e00aeab6c397fbb63ac0e6ccac391d2dcad0d3fad18924ecae74b57638b7e3ccf1c8ef4a3a44e63b32f5651bf3f6c71
 SHA512 
054923e31c163b50537e89636da97cdb705f3a77e566ef869b8aa77303b1c6fa3040f198a2cdc639b773843fe38e50c40149ef683beb0cd2dcf1ca2f77d3dd65

diff --git a/sci-geosciences/grass/grass-7.8.4.ebuild 
b/sci-geosciences/grass/grass-7.8.4.ebuild
deleted file mode 100644
index 8b203f7441c..000
--- a/sci-geosciences/grass/grass-7.8.4.ebuild
+++ /dev/null
@@ -1,269 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7..9} )
-PYTHON_REQ_USE="sqlite"  # bug 572440
-WANT_AUTOCONF="2.1"
-WX_GTK_VER="3.0-gtk3"
-
-inherit autotools desktop flag-o-matic python-single-r1 toolchain-funcs 
wxwidgets xdg
-
-MY_PM=${PN}$(ver_cut 1-2 ${PV})
-MY_PM=${MY_PM/.}
-MY_P=${P/_rc/RC}
-
-DESCRIPTION="A free GIS with raster and vector functionality, as well as 3D 
vizualization"
-HOMEPAGE="https://grass.osgeo.org/;
-SRC_URI="https://grass.osgeo.org/${MY_PM}/source/${MY_P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0/7.8.0"
-KEYWORDS="amd64 ~ppc x86"
-IUSE="blas cxx fftw geos lapack liblas mysql netcdf nls odbc opencl opengl 
openmp png postgres readline sqlite threads tiff truetype X zstd"
-REQUIRED_USE="
-   ${PYTHON_REQUIRED_USE}
-   opengl? ( X )"
-
-RDEPEND="
-   ${PYTHON_DEPS}
-   >=app-admin/eselect-1.2
-   $(python_gen_cond_dep '
-   dev-python/numpy[${PYTHON_USEDEP}]
-   dev-python/six[${PYTHON_USEDEP}]
-   ')
-   sci-libs/gdal
-   sys-libs/gdbm
-   sys-libs/ncurses:0=
-   sci-libs/proj
-   sci-libs/xdrfile
-   sys-libs/zlib
-   blas? (
-   virtual/cblas[eselect-ldso(+)]
-   virtual/blas[eselect-ldso(+)]
-   )
-   fftw? ( sci-libs/fftw:3.0= )
-   geos? ( sci-libs/geos )
-   lapack? ( virtual/lapack[eselect-ldso(+)] )
-   liblas? ( sci-geosciences/liblas )
-   mysql? ( dev-db/mysql-connector-c:= )
-   netcdf? ( sci-libs/netcdf )
-   odbc? ( dev-db/unixODBC )
-   opencl? ( virtual/opencl )
-   opengl? ( virtual/opengl )
-   png? ( media-libs/libpng:0= )
-   postgres? ( >=dev-db/postgresql-8.4:= )
-   readline? ( sys-libs/readline:0= )
-   sqlite? ( dev-db/sqlite:3 )
-   tiff? ( media-libs/tiff:0= )
-   truetype? ( media-libs/freetype:2 )
-   X? (
-   dev-python/wxpython:4.0
-   x11-libs/cairo[X,opengl?]
-   x11-libs/libICE
-   x11-libs/libSM
-   x11-libs/libX11
-   x11-libs/libXext
-   x11-libs/libXt
-   )
-   zstd? ( app-arch/zstd )"
-DEPEND="${RDEPEND}
-   X? ( x11-base/xorg-proto )"
-BDEPEND="
-   sys-devel/bison
-   sys-devel/flex
-   sys-devel/gettext
-   virtual/pkgconfig
-   X? ( dev-lang/swig )"
-
-S="${WORKDIR}/${MY_P}"
-
-PATCHES=(
-   # bug 746590
-   "${FILESDIR}/${PN}-7.8-flock.patch"
-)
-
-pkg_setup() {
-   if use lapack; then
-   local mylapack=$(eselect lapack show)
-   if [[ -z "${mylapack/.*reference.*/}" ]] && \
-   [[ -z "${mylapack/.*atlas.*/}" ]]; then
-   ewarn "You need to set lapack to atlas or reference. 
Do:"
-   ewarn "   eselect lapack set "
-   ewarn "where  is atlas, threaded-atlas or 
reference"
-   die "setup failed"
-   fi
-   fi
-
-   if use blas; then
-   local myblas=$(eselect blas show)
-   if [[ -z "${myblas/.*reference.*/}" ]] && \
-   [[ -z "${myblas/.*atlas.*/}" ]]; then
-   ewarn "You need to set blas to atlas or reference. Do:"
-   ewarn "   eselect blas set "
- 

[gentoo-commits] repo/gentoo:master commit in: acct-user/fp-multiuser/

2021-03-07 Thread Zac Medico
commit: 595b8a9f34e7706df875a7bafd680b2135aa15b9
Author: Zac Medico  gentoo  org>
AuthorDate: Mon Mar  8 05:48:04 2021 +
Commit: Zac Medico  gentoo  org>
CommitDate: Mon Mar  8 07:34:27 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=595b8a9f

acct-user/fp-multiuser: add user fp-multiuser (318) for net-vpn/fp-multiuser

Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Zac Medico  gentoo.org>

 acct-user/fp-multiuser/fp-multiuser-0.ebuild | 14 ++
 acct-user/fp-multiuser/metadata.xml  |  8 
 2 files changed, 22 insertions(+)

diff --git a/acct-user/fp-multiuser/fp-multiuser-0.ebuild 
b/acct-user/fp-multiuser/fp-multiuser-0.ebuild
new file mode 100644
index 000..bbaef0f6ce7
--- /dev/null
+++ b/acct-user/fp-multiuser/fp-multiuser-0.ebuild
@@ -0,0 +1,14 @@
+# Copyright 2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit acct-user
+
+DESCRIPTION="A user for net-vpn/fp-multiuser"
+
+ACCT_USER_HOME=/var/lib/fp-multiuser
+ACCT_USER_GROUPS=( "fp-multiuser" )
+ACCT_USER_ID="318"
+
+acct-user_add_deps

diff --git a/acct-user/fp-multiuser/metadata.xml 
b/acct-user/fp-multiuser/metadata.xml
new file mode 100644
index 000..9e1d47466c8
--- /dev/null
+++ b/acct-user/fp-multiuser/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   zmed...@gentoo.org
+   Zac Medico
+   
+



[gentoo-commits] repo/gentoo:master commit in: acct-group/fp-multiuser/

2021-03-07 Thread Zac Medico
commit: 108be75ef714c9667a253acfc792a1b7921fc4ed
Author: Zac Medico  gentoo  org>
AuthorDate: Mon Mar  8 05:48:04 2021 +
Commit: Zac Medico  gentoo  org>
CommitDate: Mon Mar  8 07:34:27 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=108be75e

acct-group/fp-multiuser: add group fp-multiuser (318) for net-vpn/fp-multiuser

Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Zac Medico  gentoo.org>

 acct-group/fp-multiuser/fp-multiuser-0.ebuild | 10 ++
 acct-group/fp-multiuser/metadata.xml  |  8 
 2 files changed, 18 insertions(+)

diff --git a/acct-group/fp-multiuser/fp-multiuser-0.ebuild 
b/acct-group/fp-multiuser/fp-multiuser-0.ebuild
new file mode 100644
index 000..a7bd7bb71f2
--- /dev/null
+++ b/acct-group/fp-multiuser/fp-multiuser-0.ebuild
@@ -0,0 +1,10 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit acct-group
+
+DESCRIPTION="A group for net-vpn/fp-multiuser"
+
+ACCT_GROUP_ID="318"

diff --git a/acct-group/fp-multiuser/metadata.xml 
b/acct-group/fp-multiuser/metadata.xml
new file mode 100644
index 000..9e1d47466c8
--- /dev/null
+++ b/acct-group/fp-multiuser/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   zmed...@gentoo.org
+   Zac Medico
+   
+



[gentoo-commits] repo/gentoo:master commit in: media-libs/freeglut/

2021-03-07 Thread Fabian Groffen
commit: ed945754cdbef6931e194b60c54905d2947434d5
Author: Fabian Groffen  gentoo  org>
AuthorDate: Mon Mar  8 07:27:35 2021 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Mon Mar  8 07:28:12 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed945754

media-libs/freeglut-3.2.1: fix for Prefix, thanks Alexey in #774720

Closes: https://bugs.gentoo.org/774720
Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Fabian Groffen  gentoo.org>

 media-libs/freeglut/freeglut-3.2.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/freeglut/freeglut-3.2.1.ebuild 
b/media-libs/freeglut/freeglut-3.2.1.ebuild
index 35753e70c80..8cac34cf3c4 100644
--- a/media-libs/freeglut/freeglut-3.2.1.ebuild
+++ b/media-libs/freeglut/freeglut-3.2.1.ebuild
@@ -44,5 +44,5 @@ src_configure() {
 
 multilib_src_install() {
cmake_src_install
-   cp "${D}"/usr/$(get_libdir)/pkgconfig/{,free}glut.pc || die
+   cp "${ED}"/usr/$(get_libdir)/pkgconfig/{,free}glut.pc || die
 }



[gentoo-commits] data/api:master commit in: files/overlays/

2021-03-07 Thread Michał Górny
commit: 2f00ba25e7fc2a175e7150603cf6b7c633821038
Author: Leonardo H. Neumann  null  net>
AuthorDate: Mon Mar  8 07:02:09 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Mar  8 07:25:45 2021 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=2f00ba25

repositories: Remove leonardohn overlay

Closes: https://github.com/gentoo/api-gentoo-org/pull/380
Signed-off-by: Michał Górny  gentoo.org>

 files/overlays/repositories.xml | 12 
 1 file changed, 12 deletions(-)

diff --git a/files/overlays/repositories.xml b/files/overlays/repositories.xml
index 1a732d6..9124d98 100644
--- a/files/overlays/repositories.xml
+++ b/files/overlays/repositories.xml
@@ -2577,18 +2577,6 @@
 https://cgit.gentoo.org/dev/leio.git/atom/
 
   
-  
-leonardohn
-leonardohn personal overlay
-https://github.com/leonardohn/gentoo-overlay
-
-  leonard...@null.net
-  Leonardo Neumann
-
-https://github.com/leonardohn/gentoo-overlay.git
-git+ssh://g...@github.com/leonardohn/gentoo-overlay.git
-
https://github.com/leonardohn/gentoo-overlay/commits/master.atom
-  
   
 levenkov
 levenkov personal overlay



[gentoo-commits] repo/gentoo:master commit in: dev-python/pytools/

2021-03-07 Thread Michał Górny
commit: 315f035b87917ae6834a8bb1f714103ba88c321a
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Mar  8 07:19:57 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Mar  8 07:25:12 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=315f035b

dev-python/pytools: Bump to 2021.1.2

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/pytools/Manifest|  1 +
 dev-python/pytools/pytools-2021.1.2.ebuild | 26 ++
 2 files changed, 27 insertions(+)

diff --git a/dev-python/pytools/Manifest b/dev-python/pytools/Manifest
index 4c9a0b9a48c..2b579c49cb5 100644
--- a/dev-python/pytools/Manifest
+++ b/dev-python/pytools/Manifest
@@ -1 +1,2 @@
+DIST pytools-2021.1.2.tar.gz 62893 BLAKE2B 
9aa637f2cfeef93a8353f6df700d8566918aa75560f5b732cae96c2a1e1e327c53f303ddb107dab3f1056264dcd1aa2f75389a2bc3f433f7e44f7595e22df251
 SHA512 
c976f8dd87ee6fb870020ca14b4ac615e657a4be1ab4c737b4c572a8dc00b3f0c45c335ea0188bbad7b6769ce4123a33922e070e0dfe2bea63506d784c464a2c
 DIST pytools-2021.1.tar.gz 62003 BLAKE2B 
2938359365082d9475cfb51586c78d3dce264cf0e8b1cf3fea0c7c688570c6e25c9a558b78977c35331ee89afd23ab7eb44a8702b3908eea160b07747646cc53
 SHA512 
c365cbb65b756869407f7f053112cb9732aeb138493172f2b90563a4f45e6d993557e54de2165a463931b8e2bd29c3ccd32c059702f21fb59e3dee74c19efd8f

diff --git a/dev-python/pytools/pytools-2021.1.2.ebuild 
b/dev-python/pytools/pytools-2021.1.2.ebuild
new file mode 100644
index 000..21d7abc4ad9
--- /dev/null
+++ b/dev-python/pytools/pytools-2021.1.2.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7..9} )
+PYTHON_REQ_USE='sqlite'
+DISTUTILS_USE_SETUPTOOLS=bdepend
+
+inherit distutils-r1
+
+DESCRIPTION="Collection of tools missing from the Python standard library"
+HOMEPAGE="https://mathema.tician.de/software/pytools/;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+   >=dev-python/appdirs-1.4.0[${PYTHON_USEDEP}]
+   >=dev-python/decorator-3.2.0[${PYTHON_USEDEP}]
+   >=dev-python/numpy-1.6.0[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest



[gentoo-commits] repo/gentoo:master commit in: dev-python/importlib_metadata/

2021-03-07 Thread Michał Górny
commit: e25025c3bf21192ea13ab98d7b99777e7240575d
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Mar  8 07:20:28 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Mar  8 07:25:13 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e25025c3

dev-python/importlib_metadata: Bump to 3.7.2

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/importlib_metadata/Manifest |  1 +
 .../importlib_metadata-3.7.2.ebuild| 42 ++
 2 files changed, 43 insertions(+)

diff --git a/dev-python/importlib_metadata/Manifest 
b/dev-python/importlib_metadata/Manifest
index c596935b48a..64b51cac20e 100644
--- a/dev-python/importlib_metadata/Manifest
+++ b/dev-python/importlib_metadata/Manifest
@@ -1,3 +1,4 @@
 DIST importlib_metadata-3.4.0.tar.gz 33841 BLAKE2B 
e2ac38c0f6fc5ecf78d3a4018715282b176f448e0a9f2cb16320812c1f9ca18f797b2ddfa85a96d83f6ff9540b486abcd8b5a38fa7f9261abbde4a88962e765d
 SHA512 
d17aae60ca79ddb3c2e60218144e7a3e055b2807e8ca4e55f0d0c1ae428323ab7d832e4178dd05a60f1de2f157497a6261afa7baa8f91bec85d042303869fb67
 DIST importlib_metadata-3.7.0.tar.gz 36517 BLAKE2B 
b96ac99bbc9ed7c961635a598d46bf409f11b008453123f3236feaf3650f7c6fe262c803dbf6b65bbe42ca4ea9990b559d3f03dde2287b19f0f7ff21668a3a3a
 SHA512 
c11c503412cb5f18a235dbff13eb0d5b24a2a7510f32cb8fc4abec3259987de9e5a01692aef729c5d7c7fe597156b1317abc357d49726ef1026172995b080631
 DIST importlib_metadata-3.7.1.tar.gz 36595 BLAKE2B 
c4eaf3671ec48610ce310a2609625ab77496252953c2d0567cc4824c39a8601ef99fb3ffd5d7968eb7aa358aaedf0ab81d87271afdddac68d7bd3a70971b153a
 SHA512 
b301c6c72b185d893e5e400dbd9417b2ba94122073d6cb163c9e9949fb13762ddc57b34dbba1330b55bef47073fc72a6a4b5689adf9af819a68be603c9d64c9e
+DIST importlib_metadata-3.7.2.tar.gz 36644 BLAKE2B 
11e8f0c012d405a7059842fbc0aa1edfd8313a01b12b36e40c5a542b17f6ebe5284e945967f080c5934758820354f131df81e84d1fa4d5e6ac1660dac055a914
 SHA512 
ecf630c83c08895d566fbf3f435d4bfc5c0336dff1c682e6413598749c13720211aad4085dd7b9a88ca4218ef5514cd730a6f13c2c53be6cc349edd142106204

diff --git a/dev-python/importlib_metadata/importlib_metadata-3.7.2.ebuild 
b/dev-python/importlib_metadata/importlib_metadata-3.7.2.ebuild
new file mode 100644
index 000..c7a1cf5de75
--- /dev/null
+++ b/dev-python/importlib_metadata/importlib_metadata-3.7.2.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+# NB: this package extends beyond built-in importlib stuff in py3.8+
+# new entry_point API not yet included in cpython release
+PYTHON_COMPAT=( pypy3 python3_{7..9} )
+inherit distutils-r1
+
+DESCRIPTION="Read metadata from Python packages"
+HOMEPAGE="https://github.com/python/importlib_metadata;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86 ~x64-macos"
+
+RDEPEND="
+   $(python_gen_cond_dep 'dev-python/typing-extensions[${PYTHON_USEDEP}]' 
python3_{6,7})
+   dev-python/zipp[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   dev-python/setuptools_scm[${PYTHON_USEDEP}]
+   test? (
+   dev-python/packaging[${PYTHON_USEDEP}]
+   dev-python/pyfakefs[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep '
+   dev-python/importlib_resources[${PYTHON_USEDEP}]
+   ' pypy3 python3_{7,8})
+   )
+"
+
+distutils_enable_sphinx docs dev-python/jaraco-packaging dev-python/rst-linker
+distutils_enable_tests unittest
+
+python_prepare_all() {
+   # Skip a test that requires pep517 which is not in the tree
+   sed -e 's:test_find_local:_&:' -i tests/test_integration.py || die
+
+   distutils-r1_python_prepare_all
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/aiosmtpd/

2021-03-07 Thread Michał Górny
commit: 9924e82b49a2e8ee53dd082e8cd3df024aec1b25
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Mar  8 07:18:50 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Mar  8 07:25:11 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9924e82b

dev-python/aiosmtpd: Bump to 1.4.2

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/aiosmtpd/Manifest  |  1 +
 dev-python/aiosmtpd/aiosmtpd-1.4.2.ebuild | 31 +++
 2 files changed, 32 insertions(+)

diff --git a/dev-python/aiosmtpd/Manifest b/dev-python/aiosmtpd/Manifest
index cacaee26aec..6a26ce7e06e 100644
--- a/dev-python/aiosmtpd/Manifest
+++ b/dev-python/aiosmtpd/Manifest
@@ -4,3 +4,4 @@ DIST aiosmtpd-1.2.tar.gz 51457 BLAKE2B 
c2dba38c5d5a243a65c332cb3b6bf85a124eb6ab9
 DIST aiosmtpd-1.3.2.tar.gz 110769 BLAKE2B 
985684d8183c89670c362e39b81cbff187fa820bc3197a0c0c18cd61eb4c00912bf489d935303be0fedfee3dabfafaf81c7d4be3e428374624ed9a1fab6ce2c8
 SHA512 
b5d183671b8a985dcf774fb1b35ffbdf5c058e24e7cb81d77b2b0ce00b2b4dff27ff8bb167e985d5bf84cb6816c014d7cd601aab59243136ae409975ef3da30d
 DIST aiosmtpd-1.4.0.tar.gz 136307 BLAKE2B 
5ae007be6953de8fd804bef25e290153ead6730bf44dbf71448946c1380a972a59b0fcf6f669035dd23acc582d697dc746efe0b03612e6c3ee51b31d58aee309
 SHA512 
cefbc819a51cbdacc8f24d0f5ff4f2a92ad6e4c5809a9b97635226767f1dd20c63565522ab66fd6c7ede5efdafa89c42e3c3bae4e94ea5c57b49531b02e1bad6
 DIST aiosmtpd-1.4.1.tar.gz 137171 BLAKE2B 
601cbcc1eb409277dfada35bd8bf39c7282651b479a4db4a7716ef74dd66fce37bdeb7b0fd8fceb9889ec247e1ec32d9b2305de74868feceba208c23835e08de
 SHA512 
f018e0a75adaa269c1f003a6f7fbbe92257c518ea9b62ffd807bb75a169362ff1159b69562b0d6cfa211ff5cd19f0756ed78c92a7be533a0c1929608d6eacc82
+DIST aiosmtpd-1.4.2.tar.gz 140630 BLAKE2B 
9a725d3aa28943afbb14fb6792e0115cf4bc257250da815183c9c9e6b293cf71ac836cc811f50e48bc450d3f629f74d1948aaef78d44852bc96fb3daf0398605
 SHA512 
b910ae4c00b52f59b9f2199b296a1b76caa7567cbcd2e27c73d4ec894e9b48cd8190090083ce33b87dc924c4394a6425506355951208af65b89a6c1abe371114

diff --git a/dev-python/aiosmtpd/aiosmtpd-1.4.2.ebuild 
b/dev-python/aiosmtpd/aiosmtpd-1.4.2.ebuild
new file mode 100644
index 000..3c32f8604a0
--- /dev/null
+++ b/dev-python/aiosmtpd/aiosmtpd-1.4.2.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python3_{7..9} )
+DISTUTILS_USE_SETUPTOOLS=rdepend
+
+inherit distutils-r1
+
+DESCRIPTION="asyncio based SMTP server"
+HOMEPAGE="https://aiosmtpd.readthedocs.io/en/latest/;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   dev-python/atpublic[${PYTHON_USEDEP}]
+   dev-python/attrs[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep '
+   dev-python/typing-extensions[${PYTHON_USEDEP}]
+   ' python3_7)"
+BDEPEND="
+   test? (
+   >=dev-python/pytest-6[${PYTHON_USEDEP}]
+   dev-python/pytest-mock[${PYTHON_USEDEP}]
+   )"
+
+# TODO: run doctests using sphinx?
+distutils_enable_tests pytest



[gentoo-commits] repo/gentoo:master commit in: net-vpn/openfortivpn/

2021-03-07 Thread Johannes Huber
commit: 169a4fabbe1502bf859ee56c7e689b93b02c78b7
Author: Johannes Huber  gentoo  org>
AuthorDate: Mon Mar  8 07:18:26 2021 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Mon Mar  8 07:19:33 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=169a4fab

net-vpn/openfortivpn: Version bump 1.60.0

Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Johannes Huber  gentoo.org>

 net-vpn/openfortivpn/Manifest   |  1 +
 net-vpn/openfortivpn/openfortivpn-1.16.0.ebuild | 38 +
 2 files changed, 39 insertions(+)

diff --git a/net-vpn/openfortivpn/Manifest b/net-vpn/openfortivpn/Manifest
index 23e0e4b0c97..f7442f35236 100644
--- a/net-vpn/openfortivpn/Manifest
+++ b/net-vpn/openfortivpn/Manifest
@@ -1,3 +1,4 @@
 DIST openfortivpn-1.13.2.tar.gz 82977 BLAKE2B 
5daf2fdacaf2f9c3bc0a4bc3fc26543ed0ab424b70d2795e7b3d74b38cba53b1a8a9823564198ea5292b63f872c12f17ed3f65111a7024faee19640fff765cd7
 SHA512 
6be456784618d0af26190bad4af20a5f7163d3d984e3317fa3aac04b605ddd39f8973b192cf35fc8a371bf5ca4cbff8f644991b0cc031f558bf7881066fe8ec2
 DIST openfortivpn-1.13.3.tar.gz 150681 BLAKE2B 
378837373f743c474233e5c7d0f8698a1bbaa5b2b84c89173547e4d0674e4ffe8949bf105462b7d355e603483577008d7ef99315e78a7511dca043426b668885
 SHA512 
57f87e1f1243b2eb1f4ef17dfacea203c8b11fd0e65440eef4c6b08af0b821c5a087a85d98423540114a7d977d12c4a99d0edcc348f0107fd230f573e3df0fbf
 DIST openfortivpn-1.15.0.tar.gz 157951 BLAKE2B 
051dbc5ab5c003926fa4424b9c69e899bc9602aabab7749953743d1d81e0ebd90ebdf157921cabc016cf93263279eab111ed1b9763fb4ba50a11f463659be2dd
 SHA512 
8ec6454c197925a031a454e3983ed98d93d48514d86ebb09483157872e299d9c6b36a966ac6c67cd85d203223460998cdc0e6af9d5389357d4a55789aa5e2083
+DIST openfortivpn-1.16.0.tar.gz 163878 BLAKE2B 
003460ca6012b90ddea41b1fe533c3b6899fa8528ef656e6d1b4a200f01d3a476749405294fc2c3c4ba489a41d7e72738d540632922fe2ae2d2344f5fc5750e3
 SHA512 
bd57bc076f89604077c0c6f538090b33707e2534f83ae7e01ee0604b044b2f1083b65f7d0241fb4fc38eabe8462689137c66bf59dac12b21408b8453f5b2cc5a

diff --git a/net-vpn/openfortivpn/openfortivpn-1.16.0.ebuild 
b/net-vpn/openfortivpn/openfortivpn-1.16.0.ebuild
new file mode 100644
index 000..07bc57683ad
--- /dev/null
+++ b/net-vpn/openfortivpn/openfortivpn-1.16.0.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools linux-info
+
+DESCRIPTION="Fortinet compatible VPN client"
+HOMEPAGE="https://github.com/adrienverge/openfortivpn;
+SRC_URI="https://github.com/adrienverge/openfortivpn/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-3-with-openssl-exception openssl"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="libressl"
+
+DEPEND="
+   net-dialup/ppp
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
+"
+RDEPEND="${DEPEND}"
+
+CONFIG_CHECK="~PPP ~PPP_ASYNC"
+
+src_prepare() {
+   default
+
+   sed -i 's/-Werror//g' Makefile.am || die "Failed to remove -Werror from 
Makefile.am"
+
+   eautoreconf
+}
+
+src_install() {
+   default
+
+   keepdir /etc/openfortivpn
+}



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/faker/

2021-03-07 Thread Hans de Graaff
commit: 0e7e57f97a015cf570840366d1ed7edf4b0f075f
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Mar  8 07:14:07 2021 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Mar  8 07:18:12 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e7e57f9

dev-ruby/faker: add 2.16.0

Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Hans de Graaff  gentoo.org>

 dev-ruby/faker/Manifest|  1 +
 dev-ruby/faker/faker-2.16.0.ebuild | 30 ++
 2 files changed, 31 insertions(+)

diff --git a/dev-ruby/faker/Manifest b/dev-ruby/faker/Manifest
index d3106c4bf8e..3619d43798a 100644
--- a/dev-ruby/faker/Manifest
+++ b/dev-ruby/faker/Manifest
@@ -1,2 +1,3 @@
 DIST faker-2.14.0.tar.gz 1150487 BLAKE2B 
51343e8d45d2615d180fac4845d2cc8a6509b3710528c2770e52f2e4203e458ba07e3fa4f8f7559704598379b54fe38d8d557fc6cc0b614f3695cee8265adc49
 SHA512 
3a65a65c587f9e2a12c0d7a1e5ecbb12d059146cfda944d5bca950dd2b8cbdb509722b7b181fc619f395ebb526c3f99461ed74803a79cda1b74df83c203db518
 DIST faker-2.15.1.tar.gz 1213822 BLAKE2B 
dd627078ce1edab63a3f16a5e893c29911b9bf8d88b6d490a368ec16a633e7138124ee66d439738c4f2a8e14b6d0815611ed744d5323817873a0e13f2bddfb06
 SHA512 
de3721290683a86f985c2783c749be530c3306be73d929517fb54dcde2f64b124cedfa6b10c51e390a38a0b5ac81e2feb0b491c165d0bae9f017463596794fbf
+DIST faker-2.16.0.tar.gz 1234511 BLAKE2B 
99c53c85094022b33f2213af20b642fafb885ae9cb99169aa2684697e3af9d393b73476ebcd4e7e0541777d0648a53570cd93c352316a7f86c7a2026bf02b47c
 SHA512 
b33054414ad57dd34ce0448d3b8a411d71a14bdbd66fd969007267d1969b40dc37b8d1b6622f81dfe1ed9d38b95cdd9dec699e3233195cfcdb9289d309c0a6f8

diff --git a/dev-ruby/faker/faker-2.16.0.ebuild 
b/dev-ruby/faker/faker-2.16.0.ebuild
new file mode 100644
index 000..d9a2059ab50
--- /dev/null
+++ b/dev-ruby/faker/faker-2.16.0.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+USE_RUBY="ruby25 ruby26 ruby27"
+
+RUBY_FAKEGEM_RECIPE_DOC="none"
+
+RUBY_FAKEGEM_GEMSPEC="faker.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A library for generating fake data such as names, addresses, and 
phone numbers"
+HOMEPAGE="https://github.com/stympy/faker;
+SRC_URI="https://github.com/stympy/faker/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="$(ver_cut 1)"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE="test"
+
+ruby_add_rdepend ">=dev-ruby/i18n-1.6:1 !!

[gentoo-commits] repo/gentoo:master commit in: dev-ruby/ffaker/

2021-03-07 Thread Hans de Graaff
commit: 81e59990c89cc2667f8084138ed2fff6b1759cf0
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Mar  8 07:15:06 2021 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Mar  8 07:18:12 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81e59990

dev-ruby/ffaker: add 2.18.0

Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Hans de Graaff  gentoo.org>

 dev-ruby/ffaker/Manifest |  1 +
 dev-ruby/ffaker/ffaker-2.18.0.ebuild | 23 +++
 2 files changed, 24 insertions(+)

diff --git a/dev-ruby/ffaker/Manifest b/dev-ruby/ffaker/Manifest
index 89396bd7a3d..6cd68b6baa1 100644
--- a/dev-ruby/ffaker/Manifest
+++ b/dev-ruby/ffaker/Manifest
@@ -1,3 +1,4 @@
 DIST ffaker-2.15.0.gem 437760 BLAKE2B 
6da52a04d0b5ef6b048155ea84985c3a8ca707d58cdc90514dbc0840180a7f35772120ec195ba92aae387141d314985a25222cf71e1ccf8dd1f370e34755c49a
 SHA512 
2eb01af79e0520f0272c59f69cfd7e24c6391bd29f8f183ed05282d154105118242a816e8599808b2532a9e4c6175a767b9ef1bade8382259741feb7ddb8d9c1
 DIST ffaker-2.16.0.gem 437760 BLAKE2B 
fefa8b93509d16f144e25ef334cbcd6f4abd22be56cc1dea570a47aa78fbc4d4951fd976ae555d8732b69c8387e56a311943e32f79d7ce5866db08f70a5cc7ac
 SHA512 
3f51c9a6c0dedf79695d6915f2c44d8bfcb2808bac130ae988e0b66792aa85da12cb2ea36af09c9cacef55abf0c12bef869166df8c69f19b9b508b49767da90d
 DIST ffaker-2.17.0.gem 438272 BLAKE2B 
620abe73efeb7f076804b17129d18eef491969e13833308468faffc86fbbf5dff358ea159219b8bf78c1ad69f57e4c2d3248759be4dec7ad96de6da41f52e734
 SHA512 
af6a04d6e960af23962c5596d58c097b078eb43ab72fc61997b4e4c30a459ef959508e13b1bc0a7cbfa2d83dddf7b684d6bf97b69cbed1fbb0994890a3e6dd6c
+DIST ffaker-2.18.0.gem 445952 BLAKE2B 
3a0d9bc201810f6055417283e821655e70d45916282e6b01530c3221826ce555ad3670ab81cc21e14739c53b3fbb2940d9eb0d45b7613e9374f10d15df138515
 SHA512 
d57f1baa5fa40ab8d7ac7aec21d18a2ae2611f960b2e59f2deb41c2d1319f546ed18eda0f3ba02f58c34dc80f00da2487c7ec7940cb213f55dc6c900e44ff934

diff --git a/dev-ruby/ffaker/ffaker-2.18.0.ebuild 
b/dev-ruby/ffaker/ffaker-2.18.0.ebuild
new file mode 100644
index 000..1073b3dfb7b
--- /dev/null
+++ b/dev-ruby/ffaker/ffaker-2.18.0.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+USE_RUBY="ruby25 ruby26 ruby27"
+
+RUBY_FAKEGEM_EXTRADOC="Changelog.md README.md REFERENCE.md"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Faster Faker, generates dummy data"
+HOMEPAGE="https://github.com/emmanueloga/ffaker;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+
+ruby_add_bdepend "test? ( dev-ruby/test-unit:2 )"
+
+all_ruby_prepare() {
+   sed -i -e '/test_image_file/aomit "network"' test/test_image.rb || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/rubygems/

2021-03-07 Thread Hans de Graaff
commit: fa3880a0e6db7cde18b15c5ce0085b570e229f62
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Mar  8 06:47:05 2021 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Mar  8 07:18:11 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa3880a0

dev-ruby/rubygems: add 3.2.13

Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Hans de Graaff  gentoo.org>

 dev-ruby/rubygems/Manifest   |   1 +
 dev-ruby/rubygems/rubygems-3.2.13.ebuild | 109 +++
 2 files changed, 110 insertions(+)

diff --git a/dev-ruby/rubygems/Manifest b/dev-ruby/rubygems/Manifest
index 67c68fb1c19..ddf54ea04f5 100644
--- a/dev-ruby/rubygems/Manifest
+++ b/dev-ruby/rubygems/Manifest
@@ -4,5 +4,6 @@ DIST rubygems-3.0.3.tgz 904175 BLAKE2B 
d99de4bdd51779ab214bc4a81f55483341a2c193d
 DIST rubygems-3.0.9.tgz 886153 BLAKE2B 
942f641c7dec30d3dd2f0756d04b1b6b071f5d3b5a9481c406e51ab125fa9da0e4e1ebde79c6a663e8847125c1ed8657f6af69000cf0d7191360e7aab99ba508
 SHA512 
1a6d7b3b08024d95988e033c772bfb6b5ed8f94ff4ddb194280bd3a7530cc384cb90fd56d44b6d56760cffbb23c5a6ab5917737ca46ec85fe61e1ae79d7ba4ca
 DIST rubygems-3.1.6.tgz 996339 BLAKE2B 
8dc242a64c6f934b876de841cb6ea86455d7754cbe3902620a10ac40bb97264c03c1002b45a5734d1882617d95e8b390873ed390d00fe7e54b6d8f11a301c2b3
 SHA512 
730381cf683cd57f7ea7889f63cf21abb699bf28d2a25fa63f510756ece285cb63e4208130c20fa7c0232d6093d869e5d99d5b5fdad9bc68be5e8ead21863d97
 DIST rubygems-3.2.11.tgz 987152 BLAKE2B 
589c862ed4ae14d66437587adfbe9c57e4b95b895425098463f7be77a597cb9df3e3962da58da3a12139799afca34ea002983cbd4406947278c7db9e8e41
 SHA512 
686d35175891cb098c1efffc957296af6526622882560c8ecdc19eff19f50a5769fc7df122c2a863cfd17b09c375a70f8e554345cb50075693219d68ae81edfa
+DIST rubygems-3.2.13.tgz 987809 BLAKE2B 
20243f6b81592d62f033ec96485f8b6af6693c283d278e2a7bd89873deaf7e22440e85de274f806e44acad0db2a1966b265aca768c43a5758fc4eb57f661cee8
 SHA512 
8eb54c4ad2fb4d022517c73fb6951ee9853a50f1191a0c9af7d62dcf415aef15caeab60327ef28f74fbf98b24f29cf1f7a3971a9ee9172bb1601d836fadd3f46
 DIST rubygems-3.2.6.tgz 984320 BLAKE2B 
846202460722a9212df0958fca9bc8df9e3b0fb9aec3fbd0887f166ee5d25226d5325918ada816b5b166544e654d501a8db80ca2d9d7f1de42decddfb39f13d6
 SHA512 
b9303994bc2ef8a4e66f14f745f8ae493ee2725737cea6caf557f8943ac165a4934c865542c7080bf2d7b0c0be441d4e818ee8d42fdd9ae4419540943ed695ec
 DIST rubygems-3.2.7.tgz 985071 BLAKE2B 
f8075429c42a53b648ddd11128c91789b214f04f048261fbb071c0ee1250241a06c0dc2ab4e608f2282a0fc9690a35df371c02f5d7f0b6397a631e4a2af36b2e
 SHA512 
b01c9d78ac172981650aa94e26d9b07fb97e63a2d1cfbcb55462d6333c45ce16635491dcfa95a177ead429f22a5ec450ab049a7024e14e20466f5f60cf4c53b7

diff --git a/dev-ruby/rubygems/rubygems-3.2.13.ebuild 
b/dev-ruby/rubygems/rubygems-3.2.13.ebuild
new file mode 100644
index 000..e97a3f74776
--- /dev/null
+++ b/dev-ruby/rubygems/rubygems-3.2.13.ebuild
@@ -0,0 +1,109 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+USE_RUBY="ruby25 ruby26 ruby27 ruby30"
+
+inherit ruby-ng prefix
+
+DESCRIPTION="Centralized Ruby extension management system"
+HOMEPAGE="https://rubygems.org/;
+LICENSE="GPL-2 || ( Ruby MIT )"
+
+SRC_URI="https://rubygems.org/rubygems/${P}.tgz;
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
+SLOT="0"
+IUSE="server test"
+RESTRICT="!test? ( test )"
+
+PDEPEND="server? ( =dev-ruby/builder-3* )"
+
+ruby_add_depend "virtual/ruby-ssl"
+
+ruby_add_bdepend "
+   test? (
+   dev-ruby/json
+   dev-ruby/minitest:5
+   dev-ruby/rake
+   dev-ruby/rdoc
+   dev-ruby/webrick
+   )"
+
+all_ruby_prepare() {
+   # Remove unpackaged automatiek from Rakefile which stops it from working
+   sed -i -e '/automatiek/ s:^:#:' -e '/Automatiek/,/^end/ s:^:#:' 
Rakefile || die
+
+   mkdir -p lib/rubygems/defaults || die
+   cp "${FILESDIR}/gentoo-defaults-4.rb" 
lib/rubygems/defaults/operating_system.rb || die
+
+   eprefixify lib/rubygems/defaults/operating_system.rb
+
+   # Disable broken tests when changing default values:
+   sed -i -e '/test_default_path/,/^  end/ s:^:#:' 
test/rubygems/test_gem.rb || die
+   # Avoid test that won't work as json is also installed as plain ruby 
code
+   sed -i -e '/test_realworld_\(\|upgraded_\)default_gem/askip "gentoo"' 
test/rubygems/test_require.rb || die
+
+   # Avoid test that requires additional utility scripts
+   rm -f test/test_changelog_generator.rb || die
+
+   # Update manifest after changing files to avoid a test failure
+   if use test; then
+   rake update_manifest || die
+   fi
+}
+
+each_ruby_compile() {
+   # Not really a build but...
+   sed -i -e 's:#!.*:#!'"${RUBY}"':' bin/gem
+}
+

[gentoo-commits] repo/gentoo:master commit in: dev-ruby/ox/

2021-03-07 Thread Hans de Graaff
commit: 2cdabde87a0a301d1a7b208233825a7c8b58c5ab
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Mar  8 06:58:13 2021 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Mar  8 07:18:12 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2cdabde8

dev-ruby/ox: add 2.14.2

Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Hans de Graaff  gentoo.org>

 dev-ruby/ox/Manifest |  1 +
 dev-ruby/ox/ox-2.14.2.ebuild | 27 +++
 2 files changed, 28 insertions(+)

diff --git a/dev-ruby/ox/Manifest b/dev-ruby/ox/Manifest
index 18a18a53e21..d442156fb98 100644
--- a/dev-ruby/ox/Manifest
+++ b/dev-ruby/ox/Manifest
@@ -1,3 +1,4 @@
 DIST ox-2.13.4.tar.gz 207814 BLAKE2B 
8a94569e6e10b92574fa330d60aacc069a558003c7b285cb1178dfe0e6cfe02a2590283249f7a1b5adc89b41c3414b1a919367889b0296cf909eeafd88cc8a27
 SHA512 
a97fef40eee3616bab32394340c452138fe1cf5cec92e6457c3b2ce8866f7e5b143ee7e0191af09d96128a2d7a0ee3eb58fbcea16074ce33db8a845867175423
 DIST ox-2.14.0.tar.gz 208213 BLAKE2B 
a5f99c8878efb9f87d8061d57ffb0afe26329b7e987c4de8c084a3453e35404fdfe29805d9a4cf60f3e30c39f47de5721a9d5c52b87660066ee484a30ef0837c
 SHA512 
51bafbef13b1d3e0a5f27f69f9ca21b5774cb32f4b0d55e12ec5b94b1dad3febdfda37b43b84f599d7874f5ed28fa85d094a6f9c0087ca1d9b5d77b969c7de88
 DIST ox-2.14.1.tar.gz 208294 BLAKE2B 
588d9171de5db1cec6e24ea64a604ab85074ebb59be0d53afc040c9a47c64e2168abdd86271da8d1dad05803c98a64f8d12ea19297638a2f2a54a52c1c3f4342
 SHA512 
c82e9ec18a4003ab1e76f03b024b345b77a83a72f9f01d0dea1d9fdbf7c948638269e8331c19715b6b8bd999c2a104cf3660ff1f95cb445f13956ca0f95b723c
+DIST ox-2.14.2.tar.gz 209260 BLAKE2B 
b1893aca7f49d98b402f071feedf8b7d903692654620a9cab37024b9bc2f8e710c46862b8155113ad3618fcb24b1baf55d69c8c9aeec1528b477afc6d1ac2d1d
 SHA512 
f7e34a702d7be5001f09bd919108e0da30183f4c4bbc6c8b533fc3d4892770300c76075af28d21227cf840e43ec868c7f623028a329d0e49997bd1bfeffb35af

diff --git a/dev-ruby/ox/ox-2.14.2.ebuild b/dev-ruby/ox/ox-2.14.2.ebuild
new file mode 100644
index 000..43ef944b9a3
--- /dev/null
+++ b/dev-ruby/ox/ox-2.14.2.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+USE_RUBY="ruby25 ruby26 ruby27 ruby30"
+
+RUBY_FAKEGEM_EXTRADOC="README.md"
+
+RUBY_FAKEGEM_GEMSPEC="ox.gemspec"
+
+RUBY_FAKEGEM_EXTENSIONS=(ext/ox/extconf.rb)
+RUBY_FAKEGEM_EXTENSION_LIBDIR=lib/ox
+
+inherit ruby-fakegem
+
+DESCRIPTION="A fast XML parser and Object marshaller"
+HOMEPAGE="https://www.ohler.com/ox/ https://github.com/ohler55/ox;
+SRC_URI="https://github.com/ohler55/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+LICENSE="BSD"
+
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+SLOT="0"
+IUSE=""
+
+each_ruby_test() {
+   ${RUBY} test/tests.rb || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/ffi/

2021-03-07 Thread Hans de Graaff
commit: 577b5a7bb24310d3e9f18eb79b6d9ca96f4a0b41
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Mar  8 07:17:47 2021 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Mar  8 07:18:13 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=577b5a7b

dev-ruby/ffi: add 1.15.0

Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Hans de Graaff  gentoo.org>

 dev-ruby/ffi/Manifest  |  1 +
 dev-ruby/ffi/ffi-1.15.0.ebuild | 64 ++
 2 files changed, 65 insertions(+)

diff --git a/dev-ruby/ffi/Manifest b/dev-ruby/ffi/Manifest
index 1516568b097..20983704741 100644
--- a/dev-ruby/ffi/Manifest
+++ b/dev-ruby/ffi/Manifest
@@ -3,3 +3,4 @@ DIST ffi-git-1.12.2.tgz 158344 BLAKE2B 
903825d7a6d77e26be47ec7e7991253e1ba58b0f0
 DIST ffi-git-1.13.1.tgz 161660 BLAKE2B 
b8a6c3f4b9bbd94378ab2adbf40c0bbf56883e34c6a1c12b9e1496069b8a4935b04012820699260f9cffd47efd78d7aa2d08e71a5bff9de740aa96ad11f499eb
 SHA512 
f0077518c9ced54881e40a0047440edb4e40ba0ba89fc814a489bcbaf52e08e9a773e28f453f579162439e247151b994936695fe0b1ed5fb429d9bfd85b845ef
 DIST ffi-git-1.14.1.tgz 165025 BLAKE2B 
020b3954ac08fc9fe077cc9116b21e40de8458eb79cc6ae1664d638c8a36df1e919cf6a603332f9513167b3f8d8bc342f04c2c1ee60fc9197d75de74fd69ca2e
 SHA512 
8f3e97aa3fc3e5c404864d56b62d568ca464db741c1e526f971df4d96e61ebb8ce5899ecc207ba3d094efeaacd20633a250f2f072392a7369b179166bb780712
 DIST ffi-git-1.14.2.tgz 165100 BLAKE2B 
598d1771860a7884f8dc6a4cf0006cb42f741308bdd01720d7ea4b63690d42ff6e93f2d48de7132f5d82b275b30672b0bf1ac586b713994b68e98da4cf71a481
 SHA512 
20fffab047d810ddea1d4d2b66a563adf5787a0602a26cc59724090d393852ae57464a8c7b5a47ca0534efc453bb06d2f8fbf00a203a7060cd3ac78b683119f5
+DIST ffi-git-1.15.0.tgz 167263 BLAKE2B 
441b234ff8b5c65cb409451df60c8bfb5d4e071383e637b7864087ac144705d8f0dfdfb442971c4c98b0e1ed7c18b763c198f6d9c151b16de2a876a3466c369a
 SHA512 
be1c6d85b91ad3148fe79628596fb800d40c1e1efc6efb67ab78c88a71b6f978492f6e571a9c9768956e9d4f3b5940df0de1620f30d63a2dd76e0fe31d357e78

diff --git a/dev-ruby/ffi/ffi-1.15.0.ebuild b/dev-ruby/ffi/ffi-1.15.0.ebuild
new file mode 100644
index 000..72f286d35cc
--- /dev/null
+++ b/dev-ruby/ffi/ffi-1.15.0.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+USE_RUBY="ruby25 ruby26 ruby27"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+
+RUBY_FAKEGEM_DOCDIR="doc"
+RUBY_FAKEGEM_EXTRADOC="README.md"
+
+RUBY_FAKEGEM_GEMSPEC="ffi.gemspec"
+
+RUBY_FAKEGEM_EXTENSIONS=(ext/ffi_c/extconf.rb)
+
+inherit multilib ruby-fakegem toolchain-funcs
+
+DESCRIPTION="Ruby extension for programmatically loading dynamic libraries"
+HOMEPAGE="https://wiki.github.com/ffi/ffi;
+
+SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> 
${PN}-git-${PV}.tgz"
+
+IUSE=""
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+
+RDEPEND+=" dev-libs/libffi:0="
+DEPEND+=" dev-libs/libffi"
+
+ruby_add_bdepend "dev-ruby/rake"
+
+all_ruby_prepare() {
+   sed -i -e '/tasks/ s:^:#:' \
+   -e '/Gem::Tasks/,/end/ s:^:#:' Rakefile || die
+
+   sed -i -e '/require/c\require "./lib/ffi/version"' 
${RUBY_FAKEGEM_GEMSPEC} || die
+
+   # Fix Makefile for tests
+   sed -i -e '/CCACHE :=/ s:^:#:' \
+   -e 's/-O2//' \
+   -e 's/^CFLAGS =/CFLAGS +=/' spec/ffi/fixtures/GNUmakefile || die
+
+   # Remove bundled version of libffi.
+   rm -rf ext/ffi_c/libffi || die
+}
+
+each_ruby_compile() {
+   each_fakegem_compile
+
+   ${RUBY} -S rake -f gen/Rakefile || die "types.conf generation failed"
+}
+
+each_ruby_test() {
+   CC=$(tc-getCC) CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" ${RUBY} -S rspec 
spec || die
+}
+
+all_ruby_install() {
+   all_fakegem_install
+
+   docinto examples
+   dodoc samples/*
+}



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/ox/

2021-03-07 Thread Hans de Graaff
commit: c08372c564cd7b37f793c2a7d45741eb60f92e6a
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Mar  8 07:00:05 2021 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Mar  8 07:18:12 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c08372c5

dev-ruby/ox: amd64 stable

Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Hans de Graaff  gentoo.org>

 dev-ruby/ox/ox-2.14.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/ox/ox-2.14.1.ebuild b/dev-ruby/ox/ox-2.14.1.ebuild
index 9a9531496c2..3def3e738dd 100644
--- a/dev-ruby/ox/ox-2.14.1.ebuild
+++ b/dev-ruby/ox/ox-2.14.1.ebuild
@@ -15,7 +15,7 @@ HOMEPAGE="https://www.ohler.com/ox/ 
https://github.com/ohler55/ox;
 SRC_URI="https://github.com/ohler55/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 LICENSE="BSD"
 
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~ppc ~ppc64 ~x86"
 SLOT="0"
 IUSE=""
 



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/rbs/

2021-03-07 Thread Hans de Graaff
commit: 83f5a25ed11c67c9eae1d6523364552c82ab34ce
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Mar  8 07:09:41 2021 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Mar  8 07:18:12 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=83f5a25e

dev-ruby/rbs: add 1.1.0

Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Hans de Graaff  gentoo.org>

 dev-ruby/rbs/Manifest |  1 +
 dev-ruby/rbs/rbs-1.1.0.ebuild | 36 
 2 files changed, 37 insertions(+)

diff --git a/dev-ruby/rbs/Manifest b/dev-ruby/rbs/Manifest
index f93d1a520c4..65cff395ff4 100644
--- a/dev-ruby/rbs/Manifest
+++ b/dev-ruby/rbs/Manifest
@@ -1,3 +1,4 @@
 DIST rbs-1.0.0.tar.gz 497065 BLAKE2B 
3cd0d583f3048e11c70882c783766ed4bcd5e464562900d4528da2218a7fcc773be8b36eb79a517314cba0db8360d6b9312531fd07b618d70575c7aef54d0efc
 SHA512 
512e8abd883403697fde537844c99a0780e9f8d1dc59ff827c0372274573967981735065b670afed50c13ca87c6abc44bc6cf47caa9cdc6e6c117c6d0907c405
 DIST rbs-1.0.4.tar.gz 512875 BLAKE2B 
7d301e2f6c20d13249e031e8728089ac6291a1ab9bfd81513dae1633604bd45b16bef94c7ccc680c8f78e4a954aab29dc5d1025b05b5f8e00e830c09c5192b3f
 SHA512 
d998a1613b7653278460f5cee19f38bbdd13aa46d9deb8e4da8fd710a78c6ede2784580481cad43700f3d2c4c51d0d0b70eac23b156215ad3df2d227d1f6a3b6
 DIST rbs-1.0.6.tar.gz 519090 BLAKE2B 
1614320b8f77fcf4880cec6b7e4dc5fcb6b73f59410aa4dc51fb61b2868313acb242dc5a572c6cb96d9a819bade4b1d3aee2196189ea3fcc84d718ebbe9ff1d7
 SHA512 
a63c5781e6f73e998ea10c1a821d4f33388387caf6cd8e1ea607a9cd009d3f793e59c93b140e2539291a6b1d50b6ac40be7b484a8de0594f0ccff8a2db1e8425
+DIST rbs-1.1.0.tar.gz 547367 BLAKE2B 
56bcc83923a55f7f80ab3439bd9350f1b5d2c97dafc2d74d47c02ffccf7995f975cc8ac6f0cb1b103720a5dc4b6e98f078031689ae09ddea623da89de6e941a0
 SHA512 
4784ba848b4cee6187538793eeea0caa6e4d3f147a23d6ac9289b14ba4c481b55469d2885d271c1f2bfd39d1709e3d62daed52fb7e7935f96282b180286bea05

diff --git a/dev-ruby/rbs/rbs-1.1.0.ebuild b/dev-ruby/rbs/rbs-1.1.0.ebuild
new file mode 100644
index 000..74d2c248f83
--- /dev/null
+++ b/dev-ruby/rbs/rbs-1.1.0.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+USE_RUBY="ruby26 ruby27 ruby30"
+
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
+
+RUBY_FAKEGEM_BINDIR="exe"
+
+RUBY_FAKEGEM_EXTRAINSTALL="core schema sig stdlib"
+
+RUBY_FAKEGEM_GEMSPEC="rbs.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="The language for type signatures for Ruby and standard library 
definitions"
+HOMEPAGE="https://github.com/ruby/rbs;
+SRC_URI="https://github.com/ruby/rbs/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="|| ( Ruby-BSD BSD-2 )"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
+SLOT="0"
+IUSE="test"
+
+ruby_add_bdepend "test? ( dev-ruby/bundler dev-ruby/test-unit )"
+
+all_ruby_prepare() {
+   sed -i -e 's/git ls-files -z/find -print0/' ${RUBY_FAKEGEM_GEMSPEC} || 
die
+
+   # Avoid JSON schema validation tests due to a large dependency stack
+   # that would be needed.
+   rm -f test/rbs/schema_test.rb || die
+
+   sed -i -e '/def test_paths/aomit "Different paths in Gentoo test 
environment"' test/rbs/cli_test.rb || die
+}



[gentoo-commits] repo/gentoo:master commit in: app-text/webgen/

2021-03-07 Thread Hans de Graaff
commit: 49594ed048dfb4d3225cffa0a59730738d8e341a
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Mar  8 06:56:29 2021 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Mar  8 07:18:11 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49594ed0

app-text/webgen: add 1.7.2

Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Hans de Graaff  gentoo.org>

 app-text/webgen/Manifest|  1 +
 app-text/webgen/webgen-1.7.2.ebuild | 52 +
 2 files changed, 53 insertions(+)

diff --git a/app-text/webgen/Manifest b/app-text/webgen/Manifest
index fc89c999814..2941facea4b 100644
--- a/app-text/webgen/Manifest
+++ b/app-text/webgen/Manifest
@@ -1 +1,2 @@
 DIST webgen-1.7.1.gem 201728 BLAKE2B 
2ea7d7911b4edf29cb7310a676593a77956b3fffd1a4ca5f69731270e648365fb8293a292b8fdd717444ed8f690dd5f095ac5dd77f5c950253b5de7d6086f966
 SHA512 
7b58c7d2b8ff6a4feabc1435e6bddbf25b3e4695517c2bd8d97b698a49b6fd61538f1a77bdd4e13f7368fdfbeae9f007dfc09ecfcde4eb75a366b8e0ccc8c58a
+DIST webgen-1.7.2.gem 201728 BLAKE2B 
abd3a8a9accfbc1a1e0070b7cbd4d0cc24796540ce1c8c0cfd3dc50882bf953b1e794971a90e2a429b3ecd64b1cb009b16c96ce1e6cfa05516ce48c10e39cd95
 SHA512 
806303f56319b6f55d8457b0b68438a9732bc1adc95ea50a955ad02b184814d0b878d618fc0547831cac53292208f1d0837d190b078ebb2ba42641dbaa5ffd93

diff --git a/app-text/webgen/webgen-1.7.2.ebuild 
b/app-text/webgen/webgen-1.7.2.ebuild
new file mode 100644
index 000..6dd141bf8cc
--- /dev/null
+++ b/app-text/webgen/webgen-1.7.2.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+USE_RUBY="ruby26 ruby27"
+
+RUBY_FAKEGEM_RECIPE_DOC="task"
+RUBY_FAKEGEM_DOCDIR="htmldoc/rdoc"
+RUBY_FAKEGEM_EXTRADOC="AUTHORS THANKS"
+RUBY_FAKEGEM_EXTRAINSTALL="data"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A template-based static website generator"
+HOMEPAGE="https://webgen.gettalong.org;
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="builder doc highlight markdown"
+
+ruby_add_bdepend "doc? ( dev-ruby/rdoc )
+   test? (
+   dev-ruby/minitest:5
+   dev-ruby/rdiscount
+   >=dev-ruby/sass-3.2:* )"
+
+ruby_add_rdepend ">=dev-ruby/cmdparse-3.0.1:3
+   >=dev-ruby/systemu-2.5 =dev-ruby/systemu-2*
+   >=dev-ruby/kramdown-2.3:2
+   builder? ( >=dev-ruby/builder-2.1.0:* )
+   highlight? ( >=dev-ruby/coderay-1.0 )
+   markdown? ( dev-ruby/maruku )"
+
+all_ruby_prepare() {
+   # Avoid a test fragile for sass version differences
+   sed -i -e '/test_static_call/,/^  end/ s:^:#:' 
test/webgen/content_processor/test_sass.rb || die
+   # Avoid a test with fragile whitespace tests
+   rm -f test/webgen/content_processor/test_haml.rb || die
+
+   # Avoid tests for rdoc since that requires an obsolete version
+   sed -i -e '/def test_create_nodes/askip' 
test/webgen/path_handler/test_api.rb || die
+
+   # Avoid tests for unpackaged dependencies
+   rm -f test/webgen/content_processor/test_{css_minify,tikz}.rb || die
+}
+
+all_ruby_install() {
+   all_fakegem_install
+
+   doman man/man1/webgen.1
+}



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/kramdown/

2021-03-07 Thread Hans de Graaff
commit: 9a5c3d1ac64d5be7dd508716dfb27fec5d4ad99c
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Mar  8 06:55:56 2021 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Mar  8 07:18:11 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a5c3d1a

dev-ruby/kramdown: add ruby27

Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Hans de Graaff  gentoo.org>

 dev-ruby/kramdown/kramdown-2.3.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/kramdown/kramdown-2.3.0.ebuild 
b/dev-ruby/kramdown/kramdown-2.3.0.ebuild
index a9419576883..a16c856eeed 100644
--- a/dev-ruby/kramdown/kramdown-2.3.0.ebuild
+++ b/dev-ruby/kramdown/kramdown-2.3.0.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-USE_RUBY="ruby25 ruby26"
+USE_RUBY="ruby25 ruby26 ruby27"
 
 RUBY_FAKEGEM_EXTRADOC="README.md AUTHORS CONTRIBUTERS"
 



[gentoo-commits] repo/gentoo:master commit in: profiles/base/

2021-03-07 Thread Sam James
commit: 732ae30543210739622a3592f039249aa2f3e177
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar  8 06:50:48 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar  8 06:50:48 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=732ae305

profiles/base: force app-text/vilistextum[unicode]

Closes: https://bugs.gentoo.org/774507
Signed-off-by: Sam James  gentoo.org>

 profiles/base/package.use.force | 5 +
 1 file changed, 5 insertions(+)

diff --git a/profiles/base/package.use.force b/profiles/base/package.use.force
index 14791d45a87..a599fa7010c 100644
--- a/profiles/base/package.use.force
+++ b/profiles/base/package.use.force
@@ -1,6 +1,11 @@
 # Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
+# Sam James  (2021-03-08)
+# Broken without USE=unicode
+# Needs to link with libiconv, bug #774507
+app-text/vilistextum unicode
+
 # Sam James  (2021-03-03)
 # A large number of packages still need /usr/bin/python{,2,3}
 # including meson.eclass consumers.



[gentoo-commits] repo/gentoo:master commit in: app-emulation/spice-protocol/

2021-03-07 Thread Dennis Lamm
commit: a4ec51ec171f6b8be7a5f45b6e0c30f47a5e48a1
Author: Dennis Lamm  gentoo  org>
AuthorDate: Sun Mar  7 14:43:19 2021 +
Commit: Dennis Lamm  gentoo  org>
CommitDate: Mon Mar  8 06:16:12 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4ec51ec

app-emulation/spice-protocol: version bump to 0.14.3

Signed-off-by: Dennis Lamm  gentoo.org>
Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Dennis Lamm  gentoo.org>

 app-emulation/spice-protocol/Manifest  |  1 +
 .../spice-protocol/spice-protocol-0.14.3.ebuild| 18 ++
 2 files changed, 19 insertions(+)

diff --git a/app-emulation/spice-protocol/Manifest 
b/app-emulation/spice-protocol/Manifest
index 2b4cea0ccb8..c3ab7bab298 100644
--- a/app-emulation/spice-protocol/Manifest
+++ b/app-emulation/spice-protocol/Manifest
@@ -1 +1,2 @@
 DIST spice-protocol-0.14.1.tar.bz2 73444 BLAKE2B 
12050c38ee3d24814b57a340a88423352edae6412b5a20e27d59b7235e753f51aaf757f7e9e6ce702d0b0c0afeadfde7f3937725ae4715ae4dc4da20ee7fd663
 SHA512 
88b0e652564a1f826ee6d3c165ab05c40d13f366567db3840805f03d433d13d7f75219c26759770d2cde33221fe6d97528521d0eb14bc069cd7ce9af8482
+DIST spice-protocol-0.14.3.tar.xz 4 BLAKE2B 
32e69c56ea78e21cf2ff9474e34908eababc1dd9667cd8be24c973e9ff006e1a14f55dd23ab16c40d7bcb5bd7f00392edccdd3512218928787ad9162a6519f1c
 SHA512 
9e35fd0d9be14074a482bdb20fe6954e5f0a616d0ad60da63a065435df2b169ec134a95d5756df73e2606c7497c9bf0427023d4e5ebfbb1abb181cf8020879a6

diff --git a/app-emulation/spice-protocol/spice-protocol-0.14.3.ebuild 
b/app-emulation/spice-protocol/spice-protocol-0.14.3.ebuild
new file mode 100644
index 000..63398f15f6e
--- /dev/null
+++ b/app-emulation/spice-protocol/spice-protocol-0.14.3.ebuild
@@ -0,0 +1,18 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit meson
+
+DESCRIPTION="Headers defining the SPICE protocol"
+HOMEPAGE="https://www.spice-space.org/;
+SRC_URI="https://www.spice-space.org/download/releases/${P}.tar.xz;
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+IUSE=""
+
+DEPEND=""
+RDEPEND=""



[gentoo-commits] repo/gentoo:master commit in: app-emulation/spice-protocol/

2021-03-07 Thread Dennis Lamm
commit: 7f1b923e6951ac4ec4813aba9ab50dd8ee92db5c
Author: Dennis Lamm  gentoo  org>
AuthorDate: Sun Mar  7 18:03:57 2021 +
Commit: Dennis Lamm  gentoo  org>
CommitDate: Mon Mar  8 06:16:13 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f1b923e

app-emulation/spice-protocol: removed empty assignments

Signed-off-by: Dennis Lamm  gentoo.org>
Package-Manager: Portage-3.0.13, Repoman-3.0.2
Closes: https://github.com/gentoo/gentoo/pull/19814
Signed-off-by: Dennis Lamm  gentoo.org>

 app-emulation/spice-protocol/spice-protocol-0.14.3.ebuild | 4 
 1 file changed, 4 deletions(-)

diff --git a/app-emulation/spice-protocol/spice-protocol-0.14.3.ebuild 
b/app-emulation/spice-protocol/spice-protocol-0.14.3.ebuild
index 63398f15f6e..e5df1c3924f 100644
--- a/app-emulation/spice-protocol/spice-protocol-0.14.3.ebuild
+++ b/app-emulation/spice-protocol/spice-protocol-0.14.3.ebuild
@@ -12,7 +12,3 @@ 
SRC_URI="https://www.spice-space.org/download/releases/${P}.tar.xz;
 LICENSE="BSD"
 SLOT="0"
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
-IUSE=""
-
-DEPEND=""
-RDEPEND=""



[gentoo-commits] repo/gentoo:master commit in: net-misc/spice-gtk/

2021-03-07 Thread Dennis Lamm
commit: aa82a52d9a4facf1851dcfef556afece28c039e5
Author: Dennis Lamm  gentoo  org>
AuthorDate: Sun Mar  7 16:29:13 2021 +
Commit: Dennis Lamm  gentoo  org>
CommitDate: Mon Mar  8 06:16:12 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa82a52d

net-misc/spice-gtk: version bump to 0.39

Signed-off-by: Dennis Lamm  gentoo.org>
Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Dennis Lamm  gentoo.org>

 net-misc/spice-gtk/Manifest  |   1 +
 net-misc/spice-gtk/spice-gtk-0.39.ebuild | 123 +++
 2 files changed, 124 insertions(+)

diff --git a/net-misc/spice-gtk/Manifest b/net-misc/spice-gtk/Manifest
index 8566ca0ef55..4be76f58569 100644
--- a/net-misc/spice-gtk/Manifest
+++ b/net-misc/spice-gtk/Manifest
@@ -1,2 +1,3 @@
 DIST spice-gtk-0.37.tar.bz2 1303111 BLAKE2B 
cf4b6664ac86d126cf14f1a31b1df93079e15fc0a0af69bfaf61cb84284daa7b6b8cb2a2ee3345f6a475838ffc0fb2a2b0bdd61301e2c1479fb5f5e0c28babbe
 SHA512 
a0a20bc6f25337d86e57fe1fc9586c4cc84457fc8c38cdcc5a728990a69018da0fca3ab5aa63349786b5a7508c82b716c94803eefb3495cffb7df4526db2d029
 DIST spice-gtk-0.38.tar.xz 796112 BLAKE2B 
c1542b5b76f9e23ffd1910273f358f656198829b1f615c6a8e0931a79d14920132c861facd534f4cf05f03c4f64a50f628f7daa93be581d5ac815f224b81fe16
 SHA512 
27b44ac9f0cee2737ce03bb3f47c62fc0ee2402c291c49fc56cffc4ccb63e2cab001a68ba865a6375d82cb3808d59c68469783ee4279fa818d8682e902f3
+DIST spice-gtk-0.39.tar.xz 845528 BLAKE2B 
c886c4c9f0e51d7f2bf6dbfe574f1a2bcab249f863cb7da1f009410572cdaa7a35ef98fc370a7e74f7e490ad3bfe8ffa832601f8bb0b0894b90ec1de76495ce9
 SHA512 
ff0f3ca6b10a2c415f2fa8d61464c5710aaa2a46c2c83909f146fa45f01151e756d9c3d79cb162dd3d0c1279b6ef55a67fc5c1266af2cb5b46ac1eaa0254c8d2

diff --git a/net-misc/spice-gtk/spice-gtk-0.39.ebuild 
b/net-misc/spice-gtk/spice-gtk-0.39.ebuild
new file mode 100644
index 000..8f9a666c3e7
--- /dev/null
+++ b/net-misc/spice-gtk/spice-gtk-0.39.ebuild
@@ -0,0 +1,123 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+VALA_MIN_API_VERSION="0.14"
+VALA_USE_DEPEND="vapigen"
+
+PYTHON_COMPAT=( python3_{7..9} )
+
+inherit desktop eutils meson python-any-r1 readme.gentoo-r1 vala xdg-utils
+
+DESCRIPTION="Set of GObject and Gtk objects for connecting to Spice servers 
and a client GUI"
+HOMEPAGE="https://www.spice-space.org 
https://cgit.freedesktop.org/spice/spice-gtk/;
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+SRC_URI="https://www.spice-space.org/download/gtk/${P}.tar.xz;
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+IUSE="+gtk3 +introspection libressl lz4 mjpeg policykit sasl smartcard 
usbredir vala wayland webdav"
+
+# TODO:
+# * check if sys-freebsd/freebsd-lib (from virtual/acl) provides acl/libacl.h
+# * use external pnp.ids as soon as that means not pulling in gnome-desktop
+RDEPEND="
+   >=dev-libs/glib-2.46:2
+   dev-libs/json-glib:0=
+   media-libs/gst-plugins-base:1.0
+   media-libs/gst-plugins-good:1.0
+   media-libs/gstreamer:1.0[introspection?]
+   media-libs/opus
+   sys-libs/zlib
+   virtual/jpeg:0=
+   >=x11-libs/cairo-1.2
+   >=x11-libs/pixman-0.17.7
+   gtk3? ( x11-libs/gtk+:3[introspection?] )
+   introspection? ( dev-libs/gobject-introspection )
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
+   lz4? ( app-arch/lz4 )
+   sasl? ( dev-libs/cyrus-sasl )
+   smartcard? ( app-emulation/qemu[smartcard] )
+   usbredir? (
+   sys-apps/hwids
+   >=sys-apps/usbredir-0.4.2
+   virtual/libusb:1
+   policykit? (
+   sys-apps/acl
+   >=sys-auth/polkit-0.110-r1
+   )
+   )
+   webdav? (
+   net-libs/phodav:2.0
+   >=net-libs/libsoup-2.49.91 )
+"
+# TODO: spice-gtk has an automagic dependency on x11-libs/libva without a
+# configure knob. The package is relatively lightweight so we just depend
+# on it unconditionally for now. It would be cleaner to transform this into
+# a USE="vaapi" conditional and patch the buildsystem...
+RDEPEND="${RDEPEND}
+   amd64? ( x11-libs/libva:= )
+   arm64? ( x11-libs/libva:= )
+   x86? ( x11-libs/libva:= )
+"
+DEPEND="${RDEPEND}
+   >=app-emulation/spice-protocol-0.14.3
+   dev-perl/Text-CSV
+   dev-util/glib-utils
+   >=dev-util/gtk-doc-am-1.14
+   >=dev-util/intltool-0.40.0
+   >=sys-devel/gettext-0.17
+   virtual/pkgconfig
+   vala? ( $(vala_depend) )
+"
+
+BDEPEND="
+   $(python_gen_any_dep '
+   dev-python/six[${PYTHON_USEDEP}]
+   dev-python/pyparsing[${PYTHON_USEDEP}]
+   ')
+"
+
+python_check_deps() {
+   has_version "dev-python/six[${PYTHON_USEDEP}]" &&
+   has_version "dev-python/pyparsing[${PYTHON_USEDEP}]"
+}
+
+src_prepare() {
+   default
+   use vala && vala_src_prepare
+}
+

[gentoo-commits] repo/gentoo:master commit in: dev-python/pynest2d/files/, dev-python/pynest2d/

2021-03-07 Thread Dennis Lamm
commit: 93513177830f770fb90e7978089d64df94553bff
Author: Dennis Lamm  gentoo  org>
AuthorDate: Sun Mar  7 20:00:17 2021 +
Commit: Dennis Lamm  gentoo  org>
CommitDate: Mon Mar  8 05:34:25 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93513177

dev-python/pynest2d: boost 1.75 compatibility

Closes: https://bugs.gentoo.org/764566
Signed-off-by: Dennis Lamm  gentoo.org>
Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Dennis Lamm  gentoo.org>

 .../files/pynest2d-4.8.0-fix-cpp-version.patch | 11 
 dev-python/pynest2d/pynest2d-4.8.0-r1.ebuild   | 30 ++
 2 files changed, 41 insertions(+)

diff --git a/dev-python/pynest2d/files/pynest2d-4.8.0-fix-cpp-version.patch 
b/dev-python/pynest2d/files/pynest2d-4.8.0-fix-cpp-version.patch
new file mode 100644
index 000..1fe895892de
--- /dev/null
+++ b/dev-python/pynest2d/files/pynest2d-4.8.0-fix-cpp-version.patch
@@ -0,0 +1,11 @@
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -17,7 +17,7 @@ find_package(Boost REQUIRED)  # Dependency of libnest2d.
+ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DLIBNEST2D_GEOMETRIES_clipper 
-DLIBNEST2D_OPTIMIZERS_nlopt -DLIBNEST2D_THREADING_std")  # Tell libnest2d to 
use Clipper and NLopt, and standard threads.
+
+ # Some build options.
+-set(CMAKE_CXX_STANDARD 11)
++set(CMAKE_CXX_STANDARD 14)
+ if(APPLE AND CMAKE_CXX_COMPILER_ID MATCHES "Clang")
+ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -stdlib=libc++")
+ endif()

diff --git a/dev-python/pynest2d/pynest2d-4.8.0-r1.ebuild 
b/dev-python/pynest2d/pynest2d-4.8.0-r1.ebuild
new file mode 100644
index 000..b2b6ecd0a45
--- /dev/null
+++ b/dev-python/pynest2d/pynest2d-4.8.0-r1.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7..9} )
+
+inherit cmake python-single-r1
+
+DESCRIPTION="Python bindings for libnest2d"
+HOMEPAGE="https://github.com/Ultimaker/pynest2d;
+SRC_URI="https://github.com/Ultimaker/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="LGPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+RDEPEND="${PYTHON_DEPS}
+   dev-libs/libnest2d
+   $(python_gen_cond_dep 'dev-python/sip[${PYTHON_MULTI_USEDEP}]')
+   "
+
+DEPEND="${RDEPEND}"
+
+PATCHES=(
+   "${FILESDIR}"/${P}-required-flags-from-Libnest2D-target.patch
+   "${FILESDIR}"/${P}-fix-cpp-version.patch
+)



[gentoo-commits] repo/gentoo:master commit in: dev-python/pynest2d/

2021-03-07 Thread Dennis Lamm
commit: 40c37fe3c906ec1725b18f583b9394e762496e0b
Author: Dennis Lamm  gentoo  org>
AuthorDate: Sun Mar  7 20:01:14 2021 +
Commit: Dennis Lamm  gentoo  org>
CommitDate: Mon Mar  8 05:34:25 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40c37fe3

dev-python/pynest2d: dropped old

Signed-off-by: Dennis Lamm  gentoo.org>
Package-Manager: Portage-3.0.13, Repoman-3.0.2
Closes: https://github.com/gentoo/gentoo/pull/19822
Signed-off-by: Dennis Lamm  gentoo.org>

 dev-python/pynest2d/pynest2d-4.8.0.ebuild | 39 ---
 1 file changed, 39 deletions(-)

diff --git a/dev-python/pynest2d/pynest2d-4.8.0.ebuild 
b/dev-python/pynest2d/pynest2d-4.8.0.ebuild
deleted file mode 100644
index 5f57d42dca5..000
--- a/dev-python/pynest2d/pynest2d-4.8.0.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7,8} )
-
-inherit cmake python-single-r1
-
-DESCRIPTION="Python bindings for libnest2d"
-HOMEPAGE="https://github.com/Ultimaker/pynest2d;
-SRC_URI="https://github.com/Ultimaker/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="LGPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-
-IUSE=""
-
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-RDEPEND="${PYTHON_DEPS}
-   dev-libs/libnest2d
-   $(python_gen_cond_dep 'dev-python/sip[${PYTHON_MULTI_USEDEP}]')
-   "
-
-DEPEND="${RDEPEND}"
-
-PATCHES=( "${FILESDIR}/${P}-required-flags-from-Libnest2D-target.patch" )
-
-#  test? (  )
-#  ""
-
-#DEPENDENCIES
-
-# Clipper, a polygon clipping library.
-# NLopt, a library to solve non-linear optimization problems.
-# Boost, the headers only.
-# Sip, an application to generate Python bindings more easily.



[gentoo-commits] data/api:master commit in: files/

2021-03-07 Thread Zac Medico
commit: 5bb68655ee707a3e3a670d29e73f14e7c238452d
Author: Zac Medico  gentoo  org>
AuthorDate: Mon Mar  8 05:32:11 2021 +
Commit: Zac Medico  gentoo  org>
CommitDate: Mon Mar  8 05:32:41 2021 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=5bb68655

uid-gid.txt: add fp-multiuser (318) for net-vpn/fp-multiuser

Signed-off-by: Zac Medico  gentoo.org>

 files/uid-gid.txt | 1 +
 1 file changed, 1 insertion(+)

diff --git a/files/uid-gid.txt b/files/uid-gid.txt
index abe8050..8ac8d00 100644
--- a/files/uid-gid.txt
+++ b/files/uid-gid.txt
@@ -249,6 +249,7 @@ minion  309 309 acct
 croc   310 310 acct
 lldpd  315 315 acct
 exabgp 316 316 acct
+fp-multiuser   318 318 acct
 apt-cacher-ng  319 319 acct
 fax320 320 acct
 openntpd   321 321 acct



[gentoo-commits] repo/gentoo:master commit in: dev-util/meson/

2021-03-07 Thread Sam James
commit: 958c1d4cc5ff62c457fb67be8065872b3568e61c
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar  8 05:32:35 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar  8 05:32:35 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=958c1d4c

dev-util/meson: Stabilize 0.56.2 ppc, #774684

Signed-off-by: Sam James  gentoo.org>

 dev-util/meson/meson-0.56.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/meson/meson-0.56.2.ebuild 
b/dev-util/meson/meson-0.56.2.ebuild
index 8ee5188a733..0b5f8e24ca4 100644
--- a/dev-util/meson/meson-0.56.2.ebuild
+++ b/dev-util/meson/meson-0.56.2.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} = ** ]]; then
inherit git-r3
 else
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-   KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 
~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+   KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 fi
 
 inherit distutils-r1 toolchain-funcs



[gentoo-commits] repo/gentoo:master commit in: dev-python/sqlalchemy/

2021-03-07 Thread Sam James
commit: a643a4e4b1356b887573281f0acc9ce32b9fdeca
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar  8 05:32:31 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar  8 05:32:31 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a643a4e4

dev-python/sqlalchemy: Stabilize 1.3.23 ppc, #774621

Signed-off-by: Sam James  gentoo.org>

 dev-python/sqlalchemy/sqlalchemy-1.3.23.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/sqlalchemy/sqlalchemy-1.3.23.ebuild 
b/dev-python/sqlalchemy/sqlalchemy-1.3.23.ebuild
index cd474aba3b4..b536d9b3320 100644
--- a/dev-python/sqlalchemy/sqlalchemy-1.3.23.ebuild
+++ b/dev-python/sqlalchemy/sqlalchemy-1.3.23.ebuild
@@ -18,7 +18,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ~ppc ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
 IUSE="examples +sqlite test"
 
 # Use pytest-xdist to speed up tests



[gentoo-commits] repo/gentoo:master commit in: dev-python/dulwich/

2021-03-07 Thread Sam James
commit: f31bddfded665a0b3b5a42ae3fe2a6e63674a16b
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar  8 05:32:27 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar  8 05:32:27 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f31bddfd

dev-python/dulwich: Stabilize 0.20.18 ppc, #774576

Signed-off-by: Sam James  gentoo.org>

 dev-python/dulwich/dulwich-0.20.18.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/dulwich/dulwich-0.20.18.ebuild 
b/dev-python/dulwich/dulwich-0.20.18.ebuild
index c8d0f79e4e4..7f87ddd01bc 100644
--- a/dev-python/dulwich/dulwich-0.20.18.ebuild
+++ b/dev-python/dulwich/dulwich-0.20.18.ebuild
@@ -16,7 +16,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ppc ~ppc64 ~x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
 IUSE="doc examples test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/

2021-03-07 Thread Sam James
commit: 1180bb59b22e6bf071b969338373fe79bfb76ecb
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar  8 05:32:23 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar  8 05:32:23 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1180bb59

media-libs/libsndfile: Stabilize 1.0.31 ppc, #772131

Signed-off-by: Sam James  gentoo.org>

 media-libs/libsndfile/libsndfile-1.0.31.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/libsndfile/libsndfile-1.0.31.ebuild 
b/media-libs/libsndfile/libsndfile-1.0.31.ebuild
index a9f00fabf0f..3d9aedb0c5a 100644
--- a/media-libs/libsndfile/libsndfile-1.0.31.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.31.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == * ]]; then
EGIT_REPO_URI="https://github.com/libsndfile/libsndfile.git;
 else

SRC_URI="https://github.com/libsndfile/libsndfile/releases/download/${PV}/${P}.tar.bz2;
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
 fi
 inherit python-any-r1 multilib-minimal
 



[gentoo-commits] repo/gentoo:master commit in: media-libs/libsamplerate/

2021-03-07 Thread Sam James
commit: c09d208e06487ef1f56b56519144bb7137bc3523
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar  8 05:32:23 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar  8 05:32:23 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c09d208e

media-libs/libsamplerate: Stabilize 0.2.1 ppc, #772131

Signed-off-by: Sam James  gentoo.org>

 media-libs/libsamplerate/libsamplerate-0.2.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/libsamplerate/libsamplerate-0.2.1.ebuild 
b/media-libs/libsamplerate/libsamplerate-0.2.1.ebuild
index 06b50515b6d..2baff9032e1 100644
--- a/media-libs/libsamplerate/libsamplerate-0.2.1.ebuild
+++ b/media-libs/libsamplerate/libsamplerate-0.2.1.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == * ]]; then
EGIT_REPO_URI="https://github.com/libsndfile/libsamplerate.git;
 else

SRC_URI="https://github.com/libsndfile/libsamplerate/releases/download/${PV}/${P}.tar.bz2;
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
 fi
 
 LICENSE="BSD-2"



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2021-03-07 Thread Sam James
commit: bfb6044f0c3390d86ac5d661d425ceaa4bb54632
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar  8 05:32:17 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar  8 05:32:17 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bfb6044f

media-sound/qsynth: Stabilize 0.9.1 ppc, #770310

Signed-off-by: Sam James  gentoo.org>

 media-sound/qsynth/qsynth-0.9.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/qsynth/qsynth-0.9.1.ebuild 
b/media-sound/qsynth/qsynth-0.9.1.ebuild
index a4ef7a12b46..9b58446e9d7 100644
--- a/media-sound/qsynth/qsynth-0.9.1.ebuild
+++ b/media-sound/qsynth/qsynth-0.9.1.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else
SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
-   KEYWORDS="~amd64 ~ppc ppc64 ~x86"
+   KEYWORDS="~amd64 ppc ppc64 ~x86"
 fi
 
 LICENSE="GPL-2"



[gentoo-commits] repo/gentoo:master commit in: media-libs/allegro/

2021-03-07 Thread Sam James
commit: c528603abaea51f51a4057e410e9945dfee7cd41
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar  8 05:30:40 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar  8 05:30:40 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c528603a

media-libs/allegro: add 5.2.7.0

Signed-off-by: Sam James  gentoo.org>

 media-libs/allegro/Manifest   |  1 +
 media-libs/allegro/allegro-5.2.7.0.ebuild | 99 +++
 2 files changed, 100 insertions(+)

diff --git a/media-libs/allegro/Manifest b/media-libs/allegro/Manifest
index 0bebd4ad1f9..3c46d84a068 100644
--- a/media-libs/allegro/Manifest
+++ b/media-libs/allegro/Manifest
@@ -1,2 +1,3 @@
 DIST allegro-4.4.3.1.tar.gz 4663634 BLAKE2B 
23fa8cd77858243bfa8191f6bca26f50d1621fa84616968595c1284c73a86160cdbad201eece5bd026bb7ac13753568b6915295646b86e536b5d26c0394e2d1f
 SHA512 
c5a552ab710226493447eb2547b3d7559badb96f511fbefd315b665b7486013a6710c83b69363eb09f90f53ef4278fe7b90cfee88d90d88f0fe8dc7df7606729
 DIST allegro-5.2.6.0.tar.gz 7867726 BLAKE2B 
3f21372442e5b8c802ac179019a11648febdcecddfda864559e1e9621f99c9ff7584fb422594c6fd3a1c352c892533c825faef10e35ecbf97058396fbb46fc7d
 SHA512 
a475de67b0e6c727295cc51e113859eb0c57825a240e70bc45cd3b000c40518932b89cecdd13ba957416136db4ee9a9363adb5d3bfa7c8acda04ee95de6ba721
+DIST allegro-5.2.7.0.tar.gz 7911231 BLAKE2B 
9cc588a42d461ce06db94c1dd57642a2e9445c4930fcc164f2da57edfb463552a279a5e50f46740561a88c974c96605bb09fcc596e7bc6afb5e30b18ff7b74d5
 SHA512 
300bb951c661e7a220d913cca4116aba99afdcb5346af7c57b09bbdfa892d446cd64fde54397c57edb3c5f57d3380fbc2b6c4d9c9e17f48ff8180cfbf59e7d99

diff --git a/media-libs/allegro/allegro-5.2.7.0.ebuild 
b/media-libs/allegro/allegro-5.2.7.0.ebuild
new file mode 100644
index 000..df38a28b038
--- /dev/null
+++ b/media-libs/allegro/allegro-5.2.7.0.ebuild
@@ -0,0 +1,99 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+CMAKE_ECLASS="cmake"
+inherit cmake-multilib
+
+DESCRIPTION="Cross-platform library aimed at video game and multimedia 
programming"
+HOMEPAGE="https://liballeg.org/;
+SRC_URI="https://github.com/liballeg/allegro5/releases/download/${PV}/${P}.tar.gz;
+
+LICENSE="BSD ZLIB"
+SLOT="5"
+KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86"
+IUSE="alsa dumb flac gtk jpeg openal opengl opus oss physfs png pulseaudio 
test truetype vorbis webp X xinerama"
+RESTRICT="!test? ( test )"
+
+# TODO: For tests, we need some extra deps.
+# -- Could NOT find OPENSL (missing: OPENSL_INCLUDE_DIR OPENSL_LIBRARY)
+# -- Could NOT find MiniMP3 (missing: MINIMP3_INCLUDE_DIRS)
+# TODO: Tweak REQUIRED_USE for tests?
+# WARNING: allegro_video wanted but no supported backend found
+
+REQUIRED_USE="X? ( opengl )
+   xinerama? ( X )
+   || ( alsa openal oss pulseaudio )"
+
+BDEPEND="virtual/pkgconfig"
+RDEPEND="
+   alsa? ( >=media-libs/alsa-lib-1.0.27.2[${MULTILIB_USEDEP}] )
+   dumb? ( >=media-libs/dumb-0.9.3-r2:=[${MULTILIB_USEDEP}] )
+   flac? ( >=media-libs/flac-1.2.1-r5[${MULTILIB_USEDEP}] )
+   gtk? ( x11-libs/gtk+:3[${MULTILIB_USEDEP}] )
+   jpeg? ( >=virtual/jpeg-0-r2:0[${MULTILIB_USEDEP}] )
+   openal? ( >=media-libs/openal-1.15.1[${MULTILIB_USEDEP}] )
+   opengl? (
+   >=virtual/glu-9.0-r1[${MULTILIB_USEDEP}]
+   >=virtual/opengl-7.0-r1[${MULTILIB_USEDEP}]
+   )
+   opus? ( media-libs/opus[${MULTILIB_USEDEP}] )
+   physfs? ( >=dev-games/physfs-2.0.3-r1[${MULTILIB_USEDEP}] )
+   png? ( >=media-libs/libpng-1.5.18:0=[${MULTILIB_USEDEP}] )
+   pulseaudio? ( >=media-sound/pulseaudio-2.1-r1[${MULTILIB_USEDEP}] )
+   truetype? ( >=media-libs/freetype-2.5.0.1[${MULTILIB_USEDEP}] )
+   vorbis? ( >=media-libs/libvorbis-1.3.3-r1[${MULTILIB_USEDEP}] )
+   webp? ( media-libs/libwebp:0=[${MULTILIB_USEDEP}] )
+   X? (
+   >=x11-libs/libX11-1.6.2[${MULTILIB_USEDEP}]
+   >=x11-libs/libXcursor-1.1.14[${MULTILIB_USEDEP}]
+   >=x11-libs/libXrandr-1.4.2[${MULTILIB_USEDEP}]
+   >=x11-libs/libXxf86vm-1.1.3[${MULTILIB_USEDEP}]
+   )
+   xinerama? ( >=x11-libs/libXinerama-1.1.3[${MULTILIB_USEDEP}] )
+"
+DEPEND="${RDEPEND}
+   x11-base/xorg-proto"
+
+MULTILIB_WRAPPED_HEADERS=( /usr/include/allegro5/allegro_native_dialog.h )
+
+src_configure() {
+   # We forego freeimage for now because ebuild is not multilib
+   # No known consumers yet anyway
+   local mycmakeargs=(
+   -DWANT_ALSA=$(usex alsa)
+   -DWANT_DEMO=OFF
+   -DWANT_EXAMPLES=OFF
+   -DWANT_FLAC=$(usex flac)
+   -DWANT_IMAGE_FREEIMAGE=OFF
+   -DWANT_IMAGE_JPG=$(usex jpeg)
+   -DWANT_IMAGE_PNG=$(usex png)
+   -DWANT_IMAGE_WEBP=$(usex webp)
+   -DWANT_MODAUDIO=$(usex dumb)
+   -DWANT_NATIVE_DIALOG=$(usex gtk)
+   -DWANT_OGG_VIDEO=$(usex 

[gentoo-commits] repo/gentoo:master commit in: dev-libs/crypto++/

2021-03-07 Thread Sam James
commit: ede3ea201cbbe105d759c3558661bf899127ff0b
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar  8 05:22:02 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar  8 05:22:09 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ede3ea20

dev-libs/crypto++: add 8.5.0 (no keywords yet)

No keywords for testing.

Signed-off-by: Sam James  gentoo.org>

 dev-libs/crypto++/Manifest  |  1 +
 dev-libs/crypto++/crypto++-8.5.0.ebuild | 56 +
 2 files changed, 57 insertions(+)

diff --git a/dev-libs/crypto++/Manifest b/dev-libs/crypto++/Manifest
index c387c374272..c6e37a441fc 100644
--- a/dev-libs/crypto++/Manifest
+++ b/dev-libs/crypto++/Manifest
@@ -1,2 +1,3 @@
 DIST cryptopp820.zip 8859815 BLAKE2B 
67aa850b887ae7aa869c9485bb18784492f6eec6cb12bf7c7cf84c776731eabf3c31965b47a60287e4e5a79dd3e9f0928dcfb185a0010a76f7cb96d2c3e8c6ae
 SHA512 
753513a4ec8dd0fff2f551853ce6bd265d82219c28b033565b565b5e567fbee17adb419f4cde58a97e62b7d6533f4099aa4996cd0ba4775c6a2e7ae63a879da5
 DIST cryptopp840.zip 9124180 BLAKE2B 
de57ece8644aef68e40527e2dfe1892f924f1939617ce11d8d27253f15f2dd11cba6e594dd32f75ce799392c12ef22472fcb2f3e44b9c66bb2ae093d4c7e781e
 SHA512 
4c32b6a9ce8a6925286185f65f7413fa1a430471f09624219656b1d088674c56f95fcc3b64f611632f12cb56dfecdcd41c9d1468942b8c391425a548245dde09
+DIST cryptopp850.zip 9125575 BLAKE2B 
857a65d63d17a3447d3cbd8370f9d750c480a9734c79739550b1ec7a6da3e7183af5748c2dfa5127be3810d73960af2f3b09b4b2bf4e624a43bfc4357ecde12b
 SHA512 
090472545c74bbf0579b56b09e8b5dcd777b38f29f7199a2e68f45d4a8c687acc82f105ba8b2a38f9aa65e5997a3d846aaf2341ab74d58b4bbfd1f5f03823b93

diff --git a/dev-libs/crypto++/crypto++-8.5.0.ebuild 
b/dev-libs/crypto++/crypto++-8.5.0.ebuild
new file mode 100644
index 000..1620fb1e310
--- /dev/null
+++ b/dev-libs/crypto++/crypto++-8.5.0.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit toolchain-funcs
+
+DESCRIPTION="C++ class library of cryptographic schemes"
+HOMEPAGE="https://cryptopp.com;
+SRC_URI="https://www.cryptopp.com/cryptopp${PV//.}.zip;
+S="${WORKDIR}"
+
+LICENSE="Boost-1.0"
+# Bumped to 8.5 in 8.5.0 out of caution
+# subslot is so version (was broken in 8.3.0, check on bumps!)
+SLOT="0/8.5"
+# No keywords for testing
+#KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x64-macos"
+IUSE="+asm static-libs"
+
+BDEPEND="app-arch/unzip"
+
+PATCHES=(
+   "${FILESDIR}/${PN}-8.2.0-musl-ldconfig.patch"
+)
+
+config_uncomment() {
+   sed -i -e "s://\s*\(#define\s*$1\):\1:" config.h || die
+}
+
+src_prepare() {
+   default
+
+   use asm || config_uncomment CRYPTOPP_DISABLE_ASM
+
+   # ASM isn't Darwin/Mach-O ready, #479554, buildsys doesn't grok CPPFLAGS
+   [[ ${CHOST} == *-darwin* ]] && config_uncomment CRYPTOPP_DISABLE_ASM
+}
+
+src_configure() {
+   export CXX="$(tc-getCXX)"
+   export LIBDIR="${EPREFIX}/usr/$(get_libdir)"
+   export PREFIX="${EPREFIX}/usr"
+   tc-export AR RANLIB
+   default
+}
+
+src_compile() {
+   emake -f GNUmakefile all shared libcryptopp.pc
+}
+
+src_install() {
+   default
+
+   use static-libs || rm -f "${ED}"/usr/$(get_libdir)/*.a
+}



[gentoo-commits] repo/gentoo:master commit in: dev-libs/xerces-c/

2021-03-07 Thread Sam James
commit: ed86e7a20234137e64f115e5d9ccd2e8d4003f39
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar  8 04:49:45 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar  8 04:49:45 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed86e7a2

dev-libs/xerces-c: Stabilize 3.2.3-r2 ppc64, #774483

Signed-off-by: Sam James  gentoo.org>

 dev-libs/xerces-c/xerces-c-3.2.3-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/xerces-c/xerces-c-3.2.3-r2.ebuild 
b/dev-libs/xerces-c/xerces-c-3.2.3-r2.ebuild
index a50c66682c0..602a29ef1bb 100644
--- a/dev-libs/xerces-c/xerces-c-3.2.3-r2.ebuild
+++ b/dev-libs/xerces-c/xerces-c-3.2.3-r2.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == * ]] ; then
inherit subversion
 else
SRC_URI="mirror://apache/xerces/c/3/sources/${P}.tar.gz"
-   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ~ppc64 sparc x86 
~amd64-linux ~x86-linux ~x64-macos"
+   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 sparc x86 
~amd64-linux ~x86-linux ~x64-macos"
 fi
 
 LICENSE="Apache-2.0"



[gentoo-commits] repo/gentoo:master commit in: dev-python/sqlalchemy/

2021-03-07 Thread Sam James
commit: d5334d13c3c25af590fd5ee4e664b72d2a66
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar  8 04:49:49 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar  8 04:49:49 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5334d13

dev-python/sqlalchemy: Stabilize 1.3.23 ppc64, #774621

Signed-off-by: Sam James  gentoo.org>

 dev-python/sqlalchemy/sqlalchemy-1.3.23.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/sqlalchemy/sqlalchemy-1.3.23.ebuild 
b/dev-python/sqlalchemy/sqlalchemy-1.3.23.ebuild
index 63ef7aae258..cd474aba3b4 100644
--- a/dev-python/sqlalchemy/sqlalchemy-1.3.23.ebuild
+++ b/dev-python/sqlalchemy/sqlalchemy-1.3.23.ebuild
@@ -18,7 +18,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ~ppc ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
 IUSE="examples +sqlite test"
 
 # Use pytest-xdist to speed up tests



[gentoo-commits] repo/gentoo:master commit in: dev-util/meson/

2021-03-07 Thread Sam James
commit: 3f868c57fec29c060b301cca9c6cd7850cd191be
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar  8 04:49:52 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar  8 04:49:52 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f868c57

dev-util/meson: Stabilize 0.56.2 ppc64, #774684

Signed-off-by: Sam James  gentoo.org>

 dev-util/meson/meson-0.56.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/meson/meson-0.56.2.ebuild 
b/dev-util/meson/meson-0.56.2.ebuild
index 94242cc497d..8ee5188a733 100644
--- a/dev-util/meson/meson-0.56.2.ebuild
+++ b/dev-util/meson/meson-0.56.2.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} = ** ]]; then
inherit git-r3
 else
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-   KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+   KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 
~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 fi
 
 inherit distutils-r1 toolchain-funcs



[gentoo-commits] repo/gentoo:master commit in: net-proxy/privoxy/

2021-03-07 Thread John Helmert III
commit: 75204d1fd4c4e1d6464d0eca88be8a4335a2acc6
Author: John Helmert III  gentoo  org>
AuthorDate: Mon Mar  8 02:54:17 2021 +
Commit: John Helmert III  gentoo  org>
CommitDate: Mon Mar  8 02:54:17 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75204d1f

net-proxy/privoxy: 3.0.32 arm stable, bug 771960

Package-Manager: Portage-3.0.16, Repoman-3.0.2
Signed-off-by: John Helmert III  gentoo.org>

 net-proxy/privoxy/privoxy-3.0.32.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-proxy/privoxy/privoxy-3.0.32.ebuild 
b/net-proxy/privoxy/privoxy-3.0.32.ebuild
index b1b0df7cddd..a8588408516 100644
--- a/net-proxy/privoxy/privoxy-3.0.32.ebuild
+++ b/net-proxy/privoxy/privoxy-3.0.32.ebuild
@@ -19,7 +19,7 @@ graceful-termination +image-blocking ipv6 lfs +mbedtls openssl
 png-images selinux ssl +stats +threads toggle tools whitelists
 +zlib"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ppc ppc64 sparc ~x86"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ppc ppc64 sparc ~x86"
 LICENSE="GPL-2+"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-libs/libutf8proc/

2021-03-07 Thread Aaron Bauman
commit: 9895f54be5ddd88d7043ef9be0792787ff92e263
Author: Aaron Bauman  gentoo  org>
AuthorDate: Mon Mar  8 02:02:21 2021 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Mon Mar  8 02:02:52 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9895f54b

dev-libs/libutf8prof: keyword ~x64-macos

Signed-off-by: Aaron Bauman  gentoo.org>

 dev-libs/libutf8proc/libutf8proc-2.6.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/libutf8proc/libutf8proc-2.6.1.ebuild 
b/dev-libs/libutf8proc/libutf8proc-2.6.1.ebuild
index 1328d81f501..aaaea94a9ff 100644
--- a/dev-libs/libutf8proc/libutf8proc-2.6.1.ebuild
+++ b/dev-libs/libutf8proc/libutf8proc-2.6.1.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/JuliaStrings/${PN#lib}/archive/v${PV}.tar.gz -> ${P}
 
 LICENSE="MIT"
 SLOT="0/${PV}"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 
~x64-cygwin ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 
~x64-cygwin ~amd64-linux ~x86-linux ~x64-macos"
 IUSE="cjk static-libs test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-libs/libmpack/

2021-03-07 Thread Aaron Bauman
commit: c6170e322999b2a94121b1d467bb101e894663dd
Author: Aaron Bauman  gentoo  org>
AuthorDate: Mon Mar  8 02:01:18 2021 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Mon Mar  8 02:02:52 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6170e32

dev-libs/libmpack: fix build on Darwin and keyword

Signed-off-by: Aaron Bauman  gentoo.org>

 dev-libs/libmpack/libmpack-1.0.5.ebuild | 8 +++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/dev-libs/libmpack/libmpack-1.0.5.ebuild 
b/dev-libs/libmpack/libmpack-1.0.5.ebuild
index 4885407e7e5..6c07fbb2582 100644
--- a/dev-libs/libmpack/libmpack-1.0.5.ebuild
+++ b/dev-libs/libmpack/libmpack-1.0.5.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 x86"
+KEYWORDS="amd64 ~arm ~arm64 x86 ~x64-macos"
 
 DEPEND=""
 RDEPEND="${DEPEND}"
@@ -30,6 +30,7 @@ src_prepare() {
 
 src_compile() {
local myemakeargs=(
+   "PREFIX=/usr"
"CC=$(tc-getCC)"
"config=release"
"LIBDIR=/usr/$(get_libdir)"
@@ -52,5 +53,10 @@ src_install() {
 
emake "${myemakeargs[@]}" install
 
+   if [[ ${CHOST} == *-darwin* ]] ; then
+local file="libmpack.0.0.0.dylib"
+install_name_tool -id "${EPREFIX}/usr/$(get_libdir)/${file}" 
"${ED}/usr/$(get_libdir)/${file}" || die "Failed to adjust install_name"
+fi
+
find "${ED}" -name '*.la' -delete || die
 }



[gentoo-commits] repo/gentoo:master commit in: sys-kernel/genkernel/

2021-03-07 Thread Thomas Deutschmann
commit: 0b3f269281e1aa46ca1e55a3812e8a8a8b287d4f
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Mar  8 00:38:57 2021 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Mar  8 00:38:57 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b3f2692

sys-kernel/genkernel: bump zstd to v1.4.9

Package-Manager: Portage-3.0.16, Repoman-3.0.2
Signed-off-by: Thomas Deutschmann  gentoo.org>

 sys-kernel/genkernel/Manifest  | 2 +-
 sys-kernel/genkernel/genkernel-.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-kernel/genkernel/Manifest b/sys-kernel/genkernel/Manifest
index eb04e898dfe..c6b418f57c9 100644
--- a/sys-kernel/genkernel/Manifest
+++ b/sys-kernel/genkernel/Manifest
@@ -62,4 +62,4 @@ DIST xfsprogs-5.7.0.tar.xz 1258772 BLAKE2B 
3dab72c1c64d88194f677ed434fe00c8c2eac
 DIST xz-5.2.5.tar.gz 1791345 BLAKE2B 
aded57324e129572c41646b3cc3b0b59a459452d9338d9245663b63dac2a463fb1f1b2b1d2d4ad3c09cb71fb8439df52cd94f24db99e782fc899b94a288a3043
 SHA512 
7443674247deda2935220fbc4dfc7665e5bb5a260be8ad858c8bd7d7b9f0f868f04ea45e62eb17c0a5e6a2de7c7500ad2d201e2d668c48ca29bd9eea5a73a3ce
 DIST zlib-1.2.11.tar.gz 607698 BLAKE2B 
6bfc4bca5dcadba8a0d4121a2b3ed0bfe440c261003521862c8e6381f1a6f0a72d3fc037351d30afd7ef321e8e8d2ec817c046ac749f2ca0c97fbdc2f7e840b7
 SHA512 
73fd3fff4adeccd4894084c15ddac89890cd10ef105dd5e1835e1e9bbb6a49ff229713bd197d203edfa17c2727700fce65a2a235f07568212d820dca88b528ae
 DIST zstd-1.4.5.tar.gz 1987927 BLAKE2B 
1497d4e87040e5c71466468ebf1a57f4073666f2b005229925bc1d95a4b4fcb2a51d88bb79be20f21860e5750da42f8aac21d2997421d07ba37bd6bb12a28b55
 SHA512 
b03c497c3e0590c3d384cb856e3024f144b2bfac0d805d80e68deafa612c68237f12a2d657416d476a28059e80936c79f099fc42331464b417593895ea214387
-DIST zstd-1.4.8.tar.gz 1816546 BLAKE2B 
950d03c408e9d3fc2081969553c46247a1b8c13a22542effbf70373625bbfeb2a810e0adf0e1c6180cef590e7a28487191b1a577982fddc7a00d1507b461efd5
 SHA512 
61ce5d61e24770e70c32680f32d58542d6a1b5cc65737256561d8e34c77a82c1d36c769c179da5ea8ed5ecb035b4a4af292b9717c65976172e282859a332137a
+DIST zstd-1.4.9.tar.gz 1834843 BLAKE2B 
907f492bd023db9459bdc292a0bc4d1b6336d92dd7041eb2b36668589c20fcb98c411b85d78f92cd16d9b4a000d9c4125b5f966a5ca777034ae78210e639315b
 SHA512 
f529db9c094f9ae26428bf1fdfcc91c6d783d400980e0f0d802d2cf13c2be2931465ef568907e03841ff76a369a1447e7371f8799d8526edb9a513ba5c6db133

diff --git a/sys-kernel/genkernel/genkernel-.ebuild 
b/sys-kernel/genkernel/genkernel-.ebuild
index 97bf576750c..90eed2bb94e 100644
--- a/sys-kernel/genkernel/genkernel-.ebuild
+++ b/sys-kernel/genkernel/genkernel-.ebuild
@@ -41,7 +41,7 @@ VERSION_UTIL_LINUX="2.36.2"
 VERSION_XFSPROGS="5.10.0"
 VERSION_XZ="5.2.5"
 VERSION_ZLIB="1.2.11"
-VERSION_ZSTD="1.4.8"
+VERSION_ZSTD="1.4.9"
 
 COMMON_URI="

https://github.com/g2p/bcache-tools/archive/399021549984ad27bf4a13ae85e458833fe003d7.tar.gz
 -> bcache-tools-${VERSION_BCACHE_TOOLS}.tar.gz



[gentoo-commits] proj/genkernel:master commit in: defaults/

2021-03-07 Thread Thomas Deutschmann
commit: 3f1a037b36a3df7ba5acb3b91f925df06dbd61da
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Mar  8 00:35:19 2021 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Mar  8 00:36:13 2021 +
URL:https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=3f1a037b

initrd.scripts: Add trim() function

Signed-off-by: Thomas Deutschmann  gentoo.org>

 defaults/initrd.scripts | 10 ++
 defaults/unlock-luks.sh |  1 +
 2 files changed, 11 insertions(+)

diff --git a/defaults/initrd.scripts b/defaults/initrd.scripts
index f7e6c3d..d005e0d 100644
--- a/defaults/initrd.scripts
+++ b/defaults/initrd.scripts
@@ -1103,6 +1103,15 @@ test_success() {
fi
 }
 
+trim() {
+   local var="$*"
+
+   var="${var#"${var%%[![:space:]]*}"}"  # remove leading whitespace 
characters
+   var="${var%"${var##*[![:space:]]}"}"  # remove trailing whitespace 
characters
+
+   printf "%s" "${var}"
+}
+
 log_msg() {
is_log_enabled || return
 
@@ -1779,6 +1788,7 @@ openLUKS() {
eval local LUKS_KEYDEV='"${CRYPT_'${TYPE}'_KEYDEV}"'
eval local LUKS_KEYDEV_FSTYPE='"${CRYPT_'${TYPE}'_KEYDEV_FSTYPE}"'
eval local cryptsetup_options='"${CRYPT_'${TYPE}'_OPTIONS}"'
+   cryptsetup_options="$(trim "${cryptsetup_options}")"
eval local OPENED_LOCKFILE='"${CRYPT_'${TYPE}'_OPENED_LOCKFILE}"'
local DEV_ERROR=0 KEY_ERROR=0 KEYDEV_ERROR=0
local mntkey="/mnt/key/" crypt_filter_ret=

diff --git a/defaults/unlock-luks.sh b/defaults/unlock-luks.sh
index 4c99a1f..9ef54e0 100644
--- a/defaults/unlock-luks.sh
+++ b/defaults/unlock-luks.sh
@@ -47,6 +47,7 @@ main() {
eval local LUKS_DEVICE='"${CRYPT_'${TYPE}'}"'
eval local LUKS_KEY='"${CRYPT_'${TYPE}'_KEYFILE}"'
eval local cryptsetup_options='"${CRYPT_'${TYPE}'_OPTIONS}"'
+   cryptsetup_options="$(trim "${cryptsetup_options}")"
eval local OPENED_LOCKFILE='"${CRYPT_'${TYPE}'_OPENED_LOCKFILE}"'
 
if [ -z "${LUKS_DEVICE}" ]



[gentoo-commits] repo/user/ssnb:master commit in: net-misc/oidc-agent/files/, net-misc/oidc-agent/

2021-03-07 Thread Samuel Bernardo
commit: c9a1b3bb5c4c44afaa7a093a62875251bc92dde2
Author: Samuel Bernardo  gmail  com>
AuthorDate: Mon Mar  8 00:31:07 2021 +
Commit: Samuel Bernardo  gmail  com>
CommitDate: Mon Mar  8 00:31:07 2021 +
URL:https://gitweb.gentoo.org/repo/user/ssnb.git/commit/?id=c9a1b3bb

Update oidc-agent

Signed-off-by: Samuel Bernardo  gmail.com>

 net-misc/oidc-agent/Manifest   |  8 +--
 .../files/oidc-agent-4.0.2_install-perms.patch | 61 +
 .../oidc-agent-4.0.2_makefile-toolchain-vars.patch | 38 +
 net-misc/oidc-agent/metadata.xml   | 12 -
 net-misc/oidc-agent/oidc-agent-3.3.5.ebuild| 63 --
 net-misc/oidc-agent/oidc-agent-4.0.2.ebuild| 62 +
 net-misc/oidc-agent/oidc-agent-.ebuild |  1 -
 7 files changed, 177 insertions(+), 68 deletions(-)

diff --git a/net-misc/oidc-agent/Manifest b/net-misc/oidc-agent/Manifest
index e049941..0467974 100644
--- a/net-misc/oidc-agent/Manifest
+++ b/net-misc/oidc-agent/Manifest
@@ -1,3 +1,5 @@
-EBUILD oidc-agent-3.3.5.ebuild 1395 BLAKE2B 
06139a6a9746be3feb298049648cded3376f52756cb5d4d590b4e30cb3e2d56500c93cf0eb124de71bae7ee2508d8bf1fc0f02269d1bfd69515f4daad7c6c955
 SHA512 
0877ca52bfbffda643bdc4aff3cfb74786baa76af998019866bcf26d8d4f7cc47625ce45cfd605e8cb101caffb80d1bbaef8f2005188175212f30f6d77968b17
-EBUILD oidc-agent-.ebuild 1395 BLAKE2B 
06139a6a9746be3feb298049648cded3376f52756cb5d4d590b4e30cb3e2d56500c93cf0eb124de71bae7ee2508d8bf1fc0f02269d1bfd69515f4daad7c6c955
 SHA512 
0877ca52bfbffda643bdc4aff3cfb74786baa76af998019866bcf26d8d4f7cc47625ce45cfd605e8cb101caffb80d1bbaef8f2005188175212f30f6d77968b17
-MISC metadata.xml 386 BLAKE2B 
7928a64e2da68cf0d9b29beb0b4cd4c72843cd52c537bbf1ac159b273162825258a062b8fcd6cd64ed23d316c212d325a49381d587b5e39ae8fb2b67686b1fba
 SHA512 
2bcc0d450bc459bd5204c81e7f8aec0075a72c1f0781ab4272067ae734f9380f8d55501f883827133d98859ac0a96039a94f48a5805aed558e03c023ff76f74b
+AUX oidc-agent-4.0.2_install-perms.patch 2036 BLAKE2B 
dcc2c95d1eb1b8fc124dc926c0a2eeec1f6bf34b53359927fb0234f18a6dafe31310032fbcdbe36a087ee62cffefa03863af0bd371eff40c2c23bbf317ff80a5
 SHA512 
f4cc766cb9fa3234ead79bb45fec515268107f527d6cba9c212bca71d4c0ee5b35d1a76470ab7e0810b9699e320c5806556cbc3cf21c5fc5c22b65218f3df363
+AUX oidc-agent-4.0.2_makefile-toolchain-vars.patch 1159 BLAKE2B 
9c8e4646cc4889b26cc5ed4ac987e8060731a6831b6c98ac37b65b75361aaa92e2dc34d82a6bf5c6f6b06a4c9c0d5c2f194c8c745d0f81adf858554b5d09ec2e
 SHA512 
a970647a64a743fe2abb5a4246cfe99c52b4394a1ed92ab1fa16859a2a6e6cf3cdee7c287178a450010a7f53c9c0c1975bb8b691df183084fc46aad7419202c7
+DIST oidc-agent-4.0.2.tar.gz 802872 BLAKE2B 
bbee872f0b029f4289a4805d1a5f8fe2fe2b8c297a918cf7821aec6bf4dbe634882425c888cb0e784778b56754af1c8b5a34d5282f84090cccf6315897ccb461
 SHA512 
fef440cd4b72055d8175f9f33c735235bb87bfca38b53bc4e049b1644f74f6a683d312297efa04cbacfe55190c5d6b588fa37475e5a55acff540909865389037
+EBUILD oidc-agent-4.0.2.ebuild 1497 BLAKE2B 
fc89a05e7e6b6d7b028011723bf33e1dbad28b34119d8f7e60fb1f9f02aa9966066a08a8a0be4c296df6a7f6a2219fb71c3ff99366173cebfc5480858a3983cb
 SHA512 
b609f27b02b0b8a23cbe032f608226355b861e593bc863bcbe6d2f0ba0516ccefe3e4a0f5b8fae589e816c8b0b60c69b5392fd10d6a951a1306a19cfd9174367
+MISC metadata.xml 794 BLAKE2B 
60d3d67d26bfe304f168d189d0670eef1b47212bdae51a2b4e11399ee0145fdf268f6dff658a94247a2c710b548d0a017d9a62fb7be5282b4b5b03f2f733dd99
 SHA512 
f09c4fbdd4f514dd6ce9f8aa9f93db06f1461ed49060be589d4b01a7e9db49255ceb39e3f984f1bf6e58ff152d8c295cee397568c85ff0e872dbdece4ba78bfe

diff --git a/net-misc/oidc-agent/files/oidc-agent-4.0.2_install-perms.patch 
b/net-misc/oidc-agent/files/oidc-agent-4.0.2_install-perms.patch
new file mode 100644
index 000..9ad3dc3
--- /dev/null
+++ b/net-misc/oidc-agent/files/oidc-agent-4.0.2_install-perms.patch
@@ -0,0 +1,61 @@
+diff -Naur a/Makefile b/Makefile
+--- a/Makefile 2020-12-09 13:01:09.0 +
 b/Makefile 2021-03-08 00:00:46.199922804 +
+@@ -411,19 +411,19 @@
+ 
+ ## Man pages
+ $(MAN_PATH)/man1/$(AGENT).1: $(MANDIR)/$(AGENT).1 $(MAN_PATH)/man1
+-  @install $< $@
++  @install -m 644 $< $@
+ $(AGENTSERVER_MAN_PATH)/man1/$(AGENTSERVER).1: $(MANDIR)/$(AGENTSERVER).1 
$(AGENTSERVER_MAN_PATH)/man1
+-  @install $< $@
++  @install -m 644 $< $@
+ $(MAN_PATH)/man1/$(GEN).1: $(MANDIR)/$(GEN).1 $(MAN_PATH)/man1
+-  @install $< $@
++  @install -m 644 $< $@
+ $(MAN_PATH)/man1/$(ADD).1: $(MANDIR)/$(ADD).1 $(MAN_PATH)/man1
+-  @install $< $@
++  @install -m 644 $< $@
+ $(MAN_PATH)/man1/$(CLIENT).1: $(MANDIR)/$(CLIENT).1 $(MAN_PATH)/man1
+-  @install $< $@
++  @install -m 644 $< $@
+ $(MAN_PATH)/man1/$(KEYCHAIN).1: $(MANDIR)/$(KEYCHAIN).1 $(MAN_PATH)/man1
+-  @install $< $@
++  @install -m 644 $< $@
+ $(PROMPT_MAN_PATH)/man1/$(PROMPT).1: $(MANDIR)/$(PROMPT).1 
$(PROMPT_MAN_PATH)/man1
+-  @install $< $@
++  @install -m 644 $< $@
+ 
+ 
+ ## Lib
+@@ 

[gentoo-commits] repo/gentoo:master commit in: dev-db/mariadb-connector-c/

2021-03-07 Thread Thomas Deutschmann
commit: 9afc8a25299101855ecaeac8110fdf4b4aea7280
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Mar  8 00:29:50 2021 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Mar  8 00:29:50 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9afc8a25

dev-db/mariadb-connector-c: rollover stable keywords

Package-Manager: Portage-3.0.16, Repoman-3.0.2
Signed-off-by: Thomas Deutschmann  gentoo.org>

 dev-db/mariadb-connector-c/mariadb-connector-c-3.1.12.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-db/mariadb-connector-c/mariadb-connector-c-3.1.12.ebuild 
b/dev-db/mariadb-connector-c/mariadb-connector-c-3.1.12.ebuild
index 7a4723936d3..9caa67e3bbb 100644
--- a/dev-db/mariadb-connector-c/mariadb-connector-c-3.1.12.ebuild
+++ b/dev-db/mariadb-connector-c/mariadb-connector-c-3.1.12.ebuild
@@ -11,7 +11,7 @@ else
MY_PV=${PV/_b/-b}

SRC_URI="https://downloads.mariadb.org/f/${MY_PN}-${PV%_beta}/${PN}-${MY_PV}-src.tar.gz?serve
 -> ${P}-src.tar.gz"
S="${WORKDIR%/}/${PN}-${MY_PV}-src"
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 
~sparc ~x86"
+   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~ppc ppc64 s390 sparc x86"
 fi
 
 CMAKE_ECLASS=cmake



[gentoo-commits] repo/gentoo:master commit in: media-gfx/imagemagick/

2021-03-07 Thread Thomas Deutschmann
commit: 53b6fe9ccf152b1e2687f2729659ce07bd699a2a
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Mar  8 00:28:03 2021 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Mar  8 00:28:03 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53b6fe9c

media-gfx/imagemagick: drop old

Package-Manager: Portage-3.0.16, Repoman-3.0.2
Signed-off-by: Thomas Deutschmann  gentoo.org>

 media-gfx/imagemagick/Manifest |   5 -
 .../imagemagick/imagemagick-6.9.11.61-r1.ebuild| 254 ---
 media-gfx/imagemagick/imagemagick-6.9.11.62.ebuild | 254 ---
 .../imagemagick/imagemagick-7.0.10.61-r1.ebuild| 268 -
 media-gfx/imagemagick/imagemagick-7.0.11.0.ebuild  | 268 -
 media-gfx/imagemagick/imagemagick-7.0.11.1.ebuild  | 268 -
 6 files changed, 1317 deletions(-)

diff --git a/media-gfx/imagemagick/Manifest b/media-gfx/imagemagick/Manifest
index a8e47c6dc94..d622a5eee28 100644
--- a/media-gfx/imagemagick/Manifest
+++ b/media-gfx/imagemagick/Manifest
@@ -1,7 +1,2 @@
-DIST ImageMagick-6.9.11-61.tar.xz 9171260 BLAKE2B 
89047378e414a7455baa28d413f49dfce3eb54e462211ba5e61f786111c569b26166217ca7e9f5e12c0602bde64c8e9726a67ee3c6be4366d692c2b6232dbbbf
 SHA512 
742fb0b3ff4da98ff05a7fd48b1c5db038bf276975575c4e549f30d61001384c6b508cff526f621467d38a29a9cf015f0cc8c42801720f1b47d6737afb4bac78
-DIST ImageMagick-6.9.11-62.tar.xz 9172472 BLAKE2B 
4be79ca6024f6d8e12fe492e6a541dfc4c6b70bf33dcfa8b3d2bb4d9a774a39bb974683e7444c47ee82349ae21e05fba458bcc45b71656f55084c9354ef7ddf6
 SHA512 
92987953b01c8ecdc3be0b78ee7bdc9e50e0a581f9682f283fcc2345a66ab2b75d678e2b989f90bcaf6eba95581b6234cb86ae33ee44faf6090760e72f838232
 DIST ImageMagick-6.9.12-2.tar.xz 9168640 BLAKE2B 
b0ce3b8ac5ff27f6d6fd0995d0f214f791fdce6c881e6b58579aaa22a7e87ca8d441185f69ba9d50a9aea501f28f06564ac76f7d1d5b1760206eeaf17560a8a7
 SHA512 
105d11d23457050c9f94223d524230ab62cdf457fe17630179c92f53a6bb60b8c04fa0f60f388303a90e2106aea6e0f1863a9a49a8fdfefd5d15d13eca58a770
-DIST ImageMagick-7.0.10-61.tar.xz 10143308 BLAKE2B 
bc343b72567d326f30825637366e5d5614e8d53e5222fce357acf0acc9aceae84fe99d67bc7ff2d593e754b990d1e8449785a04724437b61a35e9282f9af799b
 SHA512 
f90d8847fed7f1a5ca3fa247eb1ea115d6afe6fe379fb48733c539456663ca89426336f7ef8be087c1caa0eeafc7d63285f3c35c400fa94b30459796650421c3
-DIST ImageMagick-7.0.11-0.tar.xz 10147348 BLAKE2B 
7237808a9352fd1e5988b3b91245335202e78576beb1ed07362adee4320e27ad2253dc4e2f0afe5a5510a17210488a60d2a6920634475908c75823986ca9ed03
 SHA512 
484a1f53c0d49359fc41d681ddb3fe5bcd0fa8a9b89db1f6f19df5cba0596ab1d8c035d6e7e8d000370ebdd040c6a50ca3d867cf6e50ac29c03471bc34bb4e0e
-DIST ImageMagick-7.0.11-1.tar.xz 10145440 BLAKE2B 
24d4e455825b631db2d8e5c1dac8a4fe3ea2e5432db649cbc71b1486c497a6041e639bb185a4bff5393cecb762de42074fbe480e29b75d52e2fd143b27360cdd
 SHA512 
046d6008f93506b98c064c87b81fee3e1b7bfd02f5aceb84eb01419b3e13ef8d75be9cdbbf2511247c9382f709a93c4ede53befd7a5c4f6e86d4a307cb838cc4
 DIST ImageMagick-7.0.11-2.tar.xz 10145568 BLAKE2B 
2edc25dfeda99fee1d4fec4a90fcd48b350c93317082239b243874b0394cefe154ca7553fb1d688971c5352d896ff6327f31ca708a2000427601c53d0ce5c7ea
 SHA512 
29ddf675bde3165d86f786eebfe8443cb4205d6218cb3cfa78be26d18fb30ad13913db32124377030c283156f4aa81cc28acef5cd7c1a873a66d5f563e5152ac

diff --git a/media-gfx/imagemagick/imagemagick-6.9.11.61-r1.ebuild 
b/media-gfx/imagemagick/imagemagick-6.9.11.61-r1.ebuild
deleted file mode 100644
index 923c0a8e841..000
--- a/media-gfx/imagemagick/imagemagick-6.9.11.61-r1.ebuild
+++ /dev/null
@@ -1,254 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-inherit eapi7-ver eutils flag-o-matic libtool perl-functions toolchain-funcs 
multilib
-
-MY_PV="$(ver_rs 3 '-')"
-MY_P="ImageMagick-${MY_PV}"
-
-DESCRIPTION="A collection of tools and libraries for many image formats"
-HOMEPAGE="https://www.imagemagick.org/;
-SRC_URI="mirror://imagemagick/${MY_P}.tar.xz"
-
-LICENSE="imagemagick"
-SLOT="0/6.9.11-60"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris 
~x86-solaris"
-IUSE="bzip2 corefonts +cxx djvu fftw fontconfig fpx graphviz hdri heif jbig 
jpeg jpeg2k lcms lqr lzma opencl openexr openmp pango perl +png postscript q32 
q8 raw static-libs svg test tiff truetype webp wmf X xml zlib"
-
-REQUIRED_USE="corefonts? ( truetype )
-   test? ( corefonts )"
-
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-   dev-libs/libltdl:0
-   bzip2? ( app-arch/bzip2 )
-   corefonts? ( media-fonts/corefonts )
-   djvu? ( app-text/djvu )
-   fftw? ( sci-libs/fftw:3.0 )
-   fontconfig? ( media-libs/fontconfig )
-   fpx? ( >=media-libs/libfpx-1.3.0-r1 )
-   graphviz? ( media-gfx/graphviz )
-   heif? ( media-libs/libheif:= )
-   jbig? ( >=media-libs/jbigkit-2:= )
- 

[gentoo-commits] repo/gentoo:master commit in: media-gfx/imagemagick/

2021-03-07 Thread Thomas Deutschmann
commit: ebbbf79076d44e5bdbf5c70a44331783299314c9
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Mar  8 00:27:33 2021 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Mar  8 00:27:33 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ebbbf790

media-gfx/imagemagick: rollover stable keywords

Package-Manager: Portage-3.0.16, Repoman-3.0.2
Signed-off-by: Thomas Deutschmann  gentoo.org>

 media-gfx/imagemagick/imagemagick-6.9.12.2.ebuild | 2 +-
 media-gfx/imagemagick/imagemagick-7.0.11.2.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-gfx/imagemagick/imagemagick-6.9.12.2.ebuild 
b/media-gfx/imagemagick/imagemagick-6.9.12.2.ebuild
index 7ff90f249df..923c0a8e841 100644
--- a/media-gfx/imagemagick/imagemagick-6.9.12.2.ebuild
+++ b/media-gfx/imagemagick/imagemagick-6.9.12.2.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://imagemagick/${MY_P}.tar.xz"
 
 LICENSE="imagemagick"
 SLOT="0/6.9.11-60"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris 
~x86-solaris"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris 
~x86-solaris"
 IUSE="bzip2 corefonts +cxx djvu fftw fontconfig fpx graphviz hdri heif jbig 
jpeg jpeg2k lcms lqr lzma opencl openexr openmp pango perl +png postscript q32 
q8 raw static-libs svg test tiff truetype webp wmf X xml zlib"
 
 REQUIRED_USE="corefonts? ( truetype )

diff --git a/media-gfx/imagemagick/imagemagick-7.0.11.2.ebuild 
b/media-gfx/imagemagick/imagemagick-7.0.11.2.ebuild
index 5256a3f29d2..8f1725c766d 100644
--- a/media-gfx/imagemagick/imagemagick-7.0.11.2.ebuild
+++ b/media-gfx/imagemagick/imagemagick-7.0.11.2.ebuild
@@ -13,7 +13,7 @@ else
MY_PV="$(ver_rs 3 '-')"
MY_P="ImageMagick-${MY_PV}"
SRC_URI="mirror://imagemagick/${MY_P}.tar.xz"
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
+   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 sparc 
x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris 
~x86-solaris"
 fi
 
 DESCRIPTION="A collection of tools and libraries for many image formats"



[gentoo-commits] repo/gentoo:master commit in: sys-cluster/galera/

2021-03-07 Thread Thomas Deutschmann
commit: 3267f6d72bddc633f2432753bc06cb9dd4c95861
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Mar  8 00:26:02 2021 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Mar  8 00:26:02 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3267f6d7

sys-cluster/galera: amd64 stable (bug #774096)

Package-Manager: Portage-3.0.16, Repoman-3.0.2
Signed-off-by: Thomas Deutschmann  gentoo.org>

 sys-cluster/galera/galera-26.4.7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-cluster/galera/galera-26.4.7.ebuild 
b/sys-cluster/galera/galera-26.4.7.ebuild
index fda3761022c..4f013d349dd 100644
--- a/sys-cluster/galera/galera-26.4.7.ebuild
+++ b/sys-cluster/galera/galera-26.4.7.ebuild
@@ -14,7 +14,7 @@ LICENSE="GPL-2 BSD"
 
 SLOT="0"
 
-KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 x86"
 IUSE="cpu_flags_x86_sse4_2 garbd test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-db/mariadb/

2021-03-07 Thread Thomas Deutschmann
commit: 557abf3ecad61b7c000744c17bda73dde68fca51
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Mar  8 00:25:26 2021 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Mar  8 00:25:26 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=557abf3e

dev-db/mariadb: amd64 stable (bug #774096)

Package-Manager: Portage-3.0.16, Repoman-3.0.2
Signed-off-by: Thomas Deutschmann  gentoo.org>

 dev-db/mariadb/mariadb-10.2.37.ebuild | 2 +-
 dev-db/mariadb/mariadb-10.3.28.ebuild | 2 +-
 dev-db/mariadb/mariadb-10.4.18.ebuild | 2 +-
 dev-db/mariadb/mariadb-10.5.9.ebuild  | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-db/mariadb/mariadb-10.2.37.ebuild 
b/dev-db/mariadb/mariadb-10.2.37.ebuild
index 534f8e34b6a..e9b0679e293 100644
--- a/dev-db/mariadb/mariadb-10.2.37.ebuild
+++ b/dev-db/mariadb/mariadb-10.2.37.ebuild
@@ -33,7 +33,7 @@ REQUIRED_USE="jdbc? ( extraengine server !static )
?? ( tcmalloc jemalloc )
static? ( yassl !pam )"
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris ~x86-solaris"
 
 # Shorten the path because the socket path length must be shorter than 107 
chars
 # and we will run a mysql server during test phase

diff --git a/dev-db/mariadb/mariadb-10.3.28.ebuild 
b/dev-db/mariadb/mariadb-10.3.28.ebuild
index 96af954504c..ad9d14ad7a7 100644
--- a/dev-db/mariadb/mariadb-10.3.28.ebuild
+++ b/dev-db/mariadb/mariadb-10.3.28.ebuild
@@ -33,7 +33,7 @@ REQUIRED_USE="jdbc? ( extraengine server !static )
?? ( tcmalloc jemalloc )
static? ( yassl !pam )"
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris ~x86-solaris"
 
 # Shorten the path because the socket path length must be shorter than 107 
chars
 # and we will run a mysql server during test phase

diff --git a/dev-db/mariadb/mariadb-10.4.18.ebuild 
b/dev-db/mariadb/mariadb-10.4.18.ebuild
index cfdb35bd870..b18ff61ae8b 100644
--- a/dev-db/mariadb/mariadb-10.4.18.ebuild
+++ b/dev-db/mariadb/mariadb-10.4.18.ebuild
@@ -33,7 +33,7 @@ REQUIRED_USE="jdbc? ( extraengine server !static )
?? ( tcmalloc jemalloc )
static? ( yassl !pam )"
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris ~x86-solaris"
 
 # Shorten the path because the socket path length must be shorter than 107 
chars
 # and we will run a mysql server during test phase

diff --git a/dev-db/mariadb/mariadb-10.5.9.ebuild 
b/dev-db/mariadb/mariadb-10.5.9.ebuild
index 26dc9d8cf3a..296ce3c50f5 100644
--- a/dev-db/mariadb/mariadb-10.5.9.ebuild
+++ b/dev-db/mariadb/mariadb-10.5.9.ebuild
@@ -32,7 +32,7 @@ REQUIRED_USE="jdbc? ( extraengine server !static )
?? ( tcmalloc jemalloc )
static? ( yassl !pam )"
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris ~x86-solaris"
 
 # Shorten the path because the socket path length must be shorter than 107 
chars
 # and we will run a mysql server during test phase



[gentoo-commits] repo/gentoo:master commit in: app-misc/devtodo/

2021-03-07 Thread Sam James
commit: d6d2aeb54b45ba83be3aeda1f2a72176abc9996a
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar  8 00:02:49 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar  8 00:03:39 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6d2aeb5

app-misc/devtodo: don't demand unicode from ncurses

Closes: https://bugs.gentoo.org/731780
Signed-off-by: Sam James  gentoo.org>

 app-misc/devtodo/devtodo-0.1.20-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/devtodo/devtodo-0.1.20-r3.ebuild 
b/app-misc/devtodo/devtodo-0.1.20-r3.ebuild
index 7be802db360..4ea3f59f4e2 100644
--- a/app-misc/devtodo/devtodo-0.1.20-r3.ebuild
+++ b/app-misc/devtodo/devtodo-0.1.20-r3.ebuild
@@ -39,7 +39,7 @@ src_prepare() {
mv util/{,DT}Regex.h || die
 
sed \
-   -e "/^LIBS/s:$: $($(tc-getPKG_CONFIG) --libs ncursesw):g" \
+   -e "/^LIBS/s:$: $($(tc-getPKG_CONFIG) --libs ncurses):g" \
-i src/Makefile.am  || die
 
eautoreconf



[gentoo-commits] repo/gentoo:master commit in: app-emulation/docker/

2021-03-07 Thread William Hubbs
commit: 2cae73a2d9c61b9f1cfd8c01a04d4e9ad54559e7
Author: William Hubbs  gentoo  org>
AuthorDate: Sun Mar  7 23:15:45 2021 +
Commit: William Hubbs  gentoo  org>
CommitDate: Sun Mar  7 23:17:14 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2cae73a2

app-emulation/docker: export version for 20.10.4 and 20.10.5

Signed-off-by: William Hubbs  gentoo.org>

 app-emulation/docker/docker-20.10.4.ebuild | 1 +
 app-emulation/docker/docker-20.10.5.ebuild | 1 +
 2 files changed, 2 insertions(+)

diff --git a/app-emulation/docker/docker-20.10.4.ebuild 
b/app-emulation/docker/docker-20.10.4.ebuild
index 0e9fc779bed..bba2fa9a7eb 100644
--- a/app-emulation/docker/docker-20.10.4.ebuild
+++ b/app-emulation/docker/docker-20.10.4.ebuild
@@ -162,6 +162,7 @@ pkg_setup() {
 src_compile() {
export DOCKER_GITCOMMIT="${GIT_COMMIT}"
export GOPATH="${WORKDIR}/${P}"
+   export VERSION=${PV}
 
# setup CFLAGS and LDFLAGS for separate build target
# see https://github.com/tianon/docker-overlay/pull/10

diff --git a/app-emulation/docker/docker-20.10.5.ebuild 
b/app-emulation/docker/docker-20.10.5.ebuild
index 12943bb4c2a..2c037df1422 100644
--- a/app-emulation/docker/docker-20.10.5.ebuild
+++ b/app-emulation/docker/docker-20.10.5.ebuild
@@ -162,6 +162,7 @@ pkg_setup() {
 src_compile() {
export DOCKER_GITCOMMIT="${GIT_COMMIT}"
export GOPATH="${WORKDIR}/${P}"
+   export VERSION=${PV}
 
# setup CFLAGS and LDFLAGS for separate build target
# see https://github.com/tianon/docker-overlay/pull/10



[gentoo-commits] repo/gentoo:master commit in: dev-libs/libutf8proc/

2021-03-07 Thread Aaron Bauman
commit: ac0fe3924051315f1f2fe907919a2dd9e8ecd42b
Author: Aaron Bauman  gentoo  org>
AuthorDate: Sun Mar  7 23:14:43 2021 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun Mar  7 23:14:43 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac0fe392

dev-libs/libutf8proc: fix Darwin build

Signed-off-by: Aaron Bauman  gentoo.org>

 dev-libs/libutf8proc/libutf8proc-2.6.1.ebuild | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/dev-libs/libutf8proc/libutf8proc-2.6.1.ebuild 
b/dev-libs/libutf8proc/libutf8proc-2.6.1.ebuild
index c3a247d6122..1328d81f501 100644
--- a/dev-libs/libutf8proc/libutf8proc-2.6.1.ebuild
+++ b/dev-libs/libutf8proc/libutf8proc-2.6.1.ebuild
@@ -35,7 +35,9 @@ src_prepare() {
 src_compile() {
emake \
AR="$(tc-getAR)" \
-   CC="$(tc-getCC)"
+   CC="$(tc-getCC)" \
+   prefix="/usr" \
+   libdir="${EPREFIX}/usr/$(get_libdir)"
 }
 
 src_install() {



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2021-03-07 Thread Sam James
commit: 7d6bccd5475aa744ba8e23e10d8d81015363a1c4
Author: Sam James  gentoo  org>
AuthorDate: Sun Mar  7 23:06:39 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Mar  7 23:06:39 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d6bccd5

media-sound/qsynth: Stabilize 0.9.1 ppc64, #770310

Signed-off-by: Sam James  gentoo.org>

 media-sound/qsynth/qsynth-0.9.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/qsynth/qsynth-0.9.1.ebuild 
b/media-sound/qsynth/qsynth-0.9.1.ebuild
index dac583b64db..a4ef7a12b46 100644
--- a/media-sound/qsynth/qsynth-0.9.1.ebuild
+++ b/media-sound/qsynth/qsynth-0.9.1.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else
SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
-   KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+   KEYWORDS="~amd64 ~ppc ppc64 ~x86"
 fi
 
 LICENSE="GPL-2"



[gentoo-commits] repo/gentoo:master commit in: dev-libs/boost/

2021-03-07 Thread Sam James
commit: 25208d3c212805cf5950bb16423c9bc0ae10c5b0
Author: Sam James  gentoo  org>
AuthorDate: Sun Mar  7 23:06:34 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Mar  7 23:06:34 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25208d3c

dev-libs/boost: Stabilize 1.75.0 ppc64, #768273

Signed-off-by: Sam James  gentoo.org>

 dev-libs/boost/boost-1.75.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/boost/boost-1.75.0.ebuild 
b/dev-libs/boost/boost-1.75.0.ebuild
index 7d99c325ce8..5f201318340 100644
--- a/dev-libs/boost/boost-1.75.0.ebuild
+++ b/dev-libs/boost/boost-1.75.0.ebuild
@@ -16,7 +16,7 @@ 
SRC_URI="https://dl.bintray.com/boostorg/release/${PV}/source/boost_${MY_PV}.tar
 
 LICENSE="Boost-1.0"
 SLOT="0/${PV}" # ${PV} instead ${MAJOR_V} due to bug 486122
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~riscv ~s390 
~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 
~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
 IUSE="bzip2 context debug doc icu lzma +nls mpi numpy python static-libs 
+threads tools zlib zstd"
 REQUIRED_USE="
mpi? ( threads )



[gentoo-commits] repo/gentoo:master commit in: media-libs/libsamplerate/

2021-03-07 Thread Sam James
commit: 836246d66bf818fce39dd81edab7b41acc5fc894
Author: Sam James  gentoo  org>
AuthorDate: Sun Mar  7 23:06:44 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Mar  7 23:06:44 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=836246d6

media-libs/libsamplerate: Stabilize 0.2.1 ppc64, #772131

Signed-off-by: Sam James  gentoo.org>

 media-libs/libsamplerate/libsamplerate-0.2.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/libsamplerate/libsamplerate-0.2.1.ebuild 
b/media-libs/libsamplerate/libsamplerate-0.2.1.ebuild
index c2eb013b6fe..06b50515b6d 100644
--- a/media-libs/libsamplerate/libsamplerate-0.2.1.ebuild
+++ b/media-libs/libsamplerate/libsamplerate-0.2.1.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == * ]]; then
EGIT_REPO_URI="https://github.com/libsndfile/libsamplerate.git;
 else

SRC_URI="https://github.com/libsndfile/libsamplerate/releases/download/${PV}/${P}.tar.bz2;
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
 fi
 
 LICENSE="BSD-2"



[gentoo-commits] repo/gentoo:master commit in: media-libs/harfbuzz/

2021-03-07 Thread Sam James
commit: 1203b7000799c3428cfdc9e023c7f0b8c787cee7
Author: Sam James  gentoo  org>
AuthorDate: Sun Mar  7 23:06:35 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Mar  7 23:06:35 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1203b700

media-libs/harfbuzz: Stabilize 2.7.4 ppc64, #768273

Signed-off-by: Sam James  gentoo.org>

 media-libs/harfbuzz/harfbuzz-2.7.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/harfbuzz/harfbuzz-2.7.4.ebuild 
b/media-libs/harfbuzz/harfbuzz-2.7.4.ebuild
index 0185be20885..0011b8dba83 100644
--- a/media-libs/harfbuzz/harfbuzz-2.7.4.ebuild
+++ b/media-libs/harfbuzz/harfbuzz-2.7.4.ebuild
@@ -15,7 +15,7 @@ if [[ ${PV} =  ]] ; then
inherit git-r3
 else
SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~riscv 
~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv 
~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 fi
 
 LICENSE="Old-MIT ISC icu"



[gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/

2021-03-07 Thread Sam James
commit: 573ac852c2f3a78ffb246c6f9f886620f544b316
Author: Sam James  gentoo  org>
AuthorDate: Sun Mar  7 23:06:43 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Mar  7 23:06:43 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=573ac852

media-libs/libsndfile: Stabilize 1.0.31 ppc64, #772131

Signed-off-by: Sam James  gentoo.org>

 media-libs/libsndfile/libsndfile-1.0.31.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/libsndfile/libsndfile-1.0.31.ebuild 
b/media-libs/libsndfile/libsndfile-1.0.31.ebuild
index 541b8501fc4..a9f00fabf0f 100644
--- a/media-libs/libsndfile/libsndfile-1.0.31.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.31.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == * ]]; then
EGIT_REPO_URI="https://github.com/libsndfile/libsndfile.git;
 else

SRC_URI="https://github.com/libsndfile/libsndfile/releases/download/${PV}/${P}.tar.bz2;
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
 fi
 inherit python-any-r1 multilib-minimal
 



[gentoo-commits] repo/gentoo:master commit in: net-proxy/privoxy/

2021-03-07 Thread Sam James
commit: 94632c9b260166d4315bca4f853e852e21e366be
Author: Sam James  gentoo  org>
AuthorDate: Sun Mar  7 23:06:30 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Mar  7 23:06:30 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94632c9b

net-proxy/privoxy: Stabilize 3.0.32 ppc64, #771960

Signed-off-by: Sam James  gentoo.org>

 net-proxy/privoxy/privoxy-3.0.32.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-proxy/privoxy/privoxy-3.0.32.ebuild 
b/net-proxy/privoxy/privoxy-3.0.32.ebuild
index a040b77de7f..b1b0df7cddd 100644
--- a/net-proxy/privoxy/privoxy-3.0.32.ebuild
+++ b/net-proxy/privoxy/privoxy-3.0.32.ebuild
@@ -19,7 +19,7 @@ graceful-termination +image-blocking ipv6 lfs +mbedtls openssl
 png-images selinux ssl +stats +threads toggle tools whitelists
 +zlib"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ppc ~ppc64 sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ppc ppc64 sparc ~x86"
 LICENSE="GPL-2+"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-util/boost-build/

2021-03-07 Thread Sam James
commit: e03f9e882702d1db62d0b76bf6038a084206c62b
Author: Sam James  gentoo  org>
AuthorDate: Sun Mar  7 23:06:33 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Mar  7 23:06:33 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e03f9e88

dev-util/boost-build: Stabilize 1.75.0 ppc64, #768273

Signed-off-by: Sam James  gentoo.org>

 dev-util/boost-build/boost-build-1.75.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/boost-build/boost-build-1.75.0.ebuild 
b/dev-util/boost-build/boost-build-1.75.0.ebuild
index cf3e9bd4082..d672837e43c 100644
--- a/dev-util/boost-build/boost-build-1.75.0.ebuild
+++ b/dev-util/boost-build/boost-build-1.75.0.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://dl.bintray.com/boostorg/release/${PV}/source/boost_${MY_PV}.tar
 
 LICENSE="Boost-1.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~riscv ~s390 
~sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 
~sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="examples"
 RESTRICT="test"
 



[gentoo-commits] repo/gentoo:master commit in: app-editors/hexcurse/

2021-03-07 Thread Sam James
commit: c31dd2ecd00a4c17fd84a325fd1d47ceaf7a3db5
Author: Sam James  gentoo  org>
AuthorDate: Sun Mar  7 23:05:05 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Mar  7 23:05:05 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c31dd2ec

app-editors/hexcurse: Stabilize 1.60.0 ppc, #763246

Signed-off-by: Sam James  gentoo.org>

 app-editors/hexcurse/hexcurse-1.60.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/hexcurse/hexcurse-1.60.0.ebuild 
b/app-editors/hexcurse/hexcurse-1.60.0.ebuild
index 903fc75451b..9dc319c6fcb 100644
--- a/app-editors/hexcurse/hexcurse-1.60.0.ebuild
+++ b/app-editors/hexcurse/hexcurse-1.60.0.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/LonnyGomes/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.g
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~hppa ~ppc ~s390 sparc x86 ~amd64-linux ~x86-linux 
~ppc-macos"
+KEYWORDS="~alpha ~amd64 arm ~hppa ppc ~s390 sparc x86 ~amd64-linux ~x86-linux 
~ppc-macos"
 
 RDEPEND=">=sys-libs/ncurses-5.2:0="
 DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: net-proxy/privoxy/

2021-03-07 Thread Sam James
commit: 4b491c5edd46bb21af2b20d44a8b08d694c71f9f
Author: Sam James  gentoo  org>
AuthorDate: Sun Mar  7 23:05:00 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Mar  7 23:05:00 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b491c5e

net-proxy/privoxy: Stabilize 3.0.32 ppc, #771960

Signed-off-by: Sam James  gentoo.org>

 net-proxy/privoxy/privoxy-3.0.32.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-proxy/privoxy/privoxy-3.0.32.ebuild 
b/net-proxy/privoxy/privoxy-3.0.32.ebuild
index c7d6cf1b537..a040b77de7f 100644
--- a/net-proxy/privoxy/privoxy-3.0.32.ebuild
+++ b/net-proxy/privoxy/privoxy-3.0.32.ebuild
@@ -19,7 +19,7 @@ graceful-termination +image-blocking ipv6 lfs +mbedtls openssl
 png-images selinux ssl +stats +threads toggle tools whitelists
 +zlib"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ppc ~ppc64 sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ppc ~ppc64 sparc ~x86"
 LICENSE="GPL-2+"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: media-libs/harfbuzz/

2021-03-07 Thread Sam James
commit: 40ea552663d5c1801e705f01df3c17c9d5f6c95a
Author: Sam James  gentoo  org>
AuthorDate: Sun Mar  7 23:05:11 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Mar  7 23:05:11 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40ea5526

media-libs/harfbuzz: Stabilize 2.7.4 ppc, #768273

Signed-off-by: Sam James  gentoo.org>

 media-libs/harfbuzz/harfbuzz-2.7.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/harfbuzz/harfbuzz-2.7.4.ebuild 
b/media-libs/harfbuzz/harfbuzz-2.7.4.ebuild
index ed795d807a8..0185be20885 100644
--- a/media-libs/harfbuzz/harfbuzz-2.7.4.ebuild
+++ b/media-libs/harfbuzz/harfbuzz-2.7.4.ebuild
@@ -15,7 +15,7 @@ if [[ ${PV} =  ]] ; then
inherit git-r3
 else
SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~riscv 
~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 fi
 
 LICENSE="Old-MIT ISC icu"



[gentoo-commits] repo/gentoo:master commit in: dev-libs/boost/

2021-03-07 Thread Sam James
commit: bf7766b8f0cea2b7e6a865d31d3f038fcbcdfb68
Author: Sam James  gentoo  org>
AuthorDate: Sun Mar  7 23:05:10 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Mar  7 23:05:10 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf7766b8

dev-libs/boost: Stabilize 1.75.0 ppc, #768273

Signed-off-by: Sam James  gentoo.org>

 dev-libs/boost/boost-1.75.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/boost/boost-1.75.0.ebuild 
b/dev-libs/boost/boost-1.75.0.ebuild
index 6cce40e0ca5..7d99c325ce8 100644
--- a/dev-libs/boost/boost-1.75.0.ebuild
+++ b/dev-libs/boost/boost-1.75.0.ebuild
@@ -16,7 +16,7 @@ 
SRC_URI="https://dl.bintray.com/boostorg/release/${PV}/source/boost_${MY_PV}.tar
 
 LICENSE="Boost-1.0"
 SLOT="0/${PV}" # ${PV} instead ${MAJOR_V} due to bug 486122
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~riscv ~s390 
~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
 IUSE="bzip2 context debug doc icu lzma +nls mpi numpy python static-libs 
+threads tools zlib zstd"
 REQUIRED_USE="
mpi? ( threads )



[gentoo-commits] repo/gentoo:master commit in: dev-util/boost-build/

2021-03-07 Thread Sam James
commit: 7f7de1ed4cf30af86a62920bbf0eef46a471075a
Author: Sam James  gentoo  org>
AuthorDate: Sun Mar  7 23:05:09 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Mar  7 23:05:09 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f7de1ed

dev-util/boost-build: Stabilize 1.75.0 ppc, #768273

Signed-off-by: Sam James  gentoo.org>

 dev-util/boost-build/boost-build-1.75.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/boost-build/boost-build-1.75.0.ebuild 
b/dev-util/boost-build/boost-build-1.75.0.ebuild
index aad83482396..cf3e9bd4082 100644
--- a/dev-util/boost-build/boost-build-1.75.0.ebuild
+++ b/dev-util/boost-build/boost-build-1.75.0.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://dl.bintray.com/boostorg/release/${PV}/source/boost_${MY_PV}.tar
 
 LICENSE="Boost-1.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~riscv ~s390 
~sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="examples"
 RESTRICT="test"
 



[gentoo-commits] repo/gentoo:master commit in: app-arch/lrzip/

2021-03-07 Thread Sam James
commit: 9242c83f8da9732774c98c2b8729d5e10975f720
Author: Sam James  gentoo  org>
AuthorDate: Sun Mar  7 23:04:06 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Mar  7 23:04:26 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9242c83f

app-arch/lrzip: bump to 0.641

Regression in 0.640.

Signed-off-by: Sam James  gentoo.org>

 app-arch/lrzip/Manifest   | 2 +-
 app-arch/lrzip/{lrzip-0.640.ebuild => lrzip-0.641.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-arch/lrzip/Manifest b/app-arch/lrzip/Manifest
index a9754c99fe3..232f61c9ee8 100644
--- a/app-arch/lrzip/Manifest
+++ b/app-arch/lrzip/Manifest
@@ -1,2 +1,2 @@
 DIST lrzip-0.631_p20190619.tar.gz 259195 BLAKE2B 
d0bedfe02485011e48fa07240b1eef68560d8d61f5d28dae25bd9fcb1c41c1b8bc1b552acb06a49d853b70a0912371cec9caebb2bf7905ef528c2408d2153297
 SHA512 
f366c31c84a52f6ccfba56e8b11c0bcd270482d9d120e07783fbe310d7a62dddfa60ecd310a7630e7c98cfb961f57fc9e6b843d3857d0c90d36c580074528298
-DIST lrzip-0.640.tar.gz 262860 BLAKE2B 
21e7e6f566ae238c85e89382a000b210621773b00cb2c509dc2e1b89dfa591a1cca954c0105ef624ed97af43f8904d67d570a0e3734dda7823f809a496cff5aa
 SHA512 
efcf7d5cbb7c2a2a117ec815f87edf37e5500f2294a16aaa16cfe10b3db77e3cc2eb4118def4936da03323ca3ee961000e98f49ca0c18eec6ba935eac412cc8b
+DIST lrzip-0.641.tar.gz 262761 BLAKE2B 
5a81d9ca8b40c141c90488e9ffcd1dfd5bef3fe7cf9b02c00b9382cd902ef8cd891401f21c9cdd5d5750daf639c05a1e6f1f010fcbf42a9cdaa4f11921fac783
 SHA512 
cb14dda15485faa24cb840dd94ecd4741bd47464770ae8b27f97b5c263d8a32e40ceb17b288f0f70426598ef2acf84b091593fc8cf7a0f2db0abde88d09a301f

diff --git a/app-arch/lrzip/lrzip-0.640.ebuild 
b/app-arch/lrzip/lrzip-0.641.ebuild
similarity index 100%
rename from app-arch/lrzip/lrzip-0.640.ebuild
rename to app-arch/lrzip/lrzip-0.641.ebuild



[gentoo-commits] proj/kde:master commit in: media-gfx/krita/files/, media-gfx/krita/

2021-03-07 Thread Andreas Sturmlechner
commit: 8efd9077f3e3e4313ffd81c9af80df4c65e8d234
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Mar  7 21:53:03 2021 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Mar  7 21:55:41 2021 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=8efd9077

media-gfx/krita: 4.4.3_beta1 version bump

Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 media-gfx/krita/files/krita-4.4.2-quazip1.patch |  36 +++
 media-gfx/krita/krita-4.4.3_beta1.ebuild| 129 
 2 files changed, 165 insertions(+)

diff --git a/media-gfx/krita/files/krita-4.4.2-quazip1.patch 
b/media-gfx/krita/files/krita-4.4.2-quazip1.patch
new file mode 100644
index 00..6a49bd3ba2
--- /dev/null
+++ b/media-gfx/krita/files/krita-4.4.2-quazip1.patch
@@ -0,0 +1,36 @@
+From 3eaf480ae5d615e8e26153cca98115ff0f23135f Mon Sep 17 00:00:00 2001
+From: Antonio Rojas 
+Date: Mon, 5 Oct 2020 20:11:26 +0200
+Subject: [PATCH] Support quazip 1.0
+
+Update FindQuaZip to find the QuaZip 1.0 library names and include dirs. Once 
support for quazip<1 is dropped this should be ported to use quazip's own 
QuaZipConfig
+---
+ cmake/modules/FindQuaZip.cmake | 6 +++---
+ 1 file changed, 3 insertions(+), 3 deletions(-)
+
+diff --git a/cmake/modules/FindQuaZip.cmake b/cmake/modules/FindQuaZip.cmake
+index 7e628fcd4b..345c7909ab 100644
+--- a/cmake/modules/FindQuaZip.cmake
 b/cmake/modules/FindQuaZip.cmake
+@@ -25,15 +25,15 @@ ELSE (QUAZIP_INCLUDE_DIRS AND QUAZIP_LIBRARIES)
+   ELSE(WIN32)
+   FIND_PACKAGE(PkgConfig)
+ # pkg_check_modules(PC_QCA2 QUIET qca2)
+-  pkg_check_modules(PC_QUAZIP quazip)
++  pkg_check_modules(PC_QUAZIP quazip quazip1-qt5)
+   FIND_LIBRARY(QUAZIP_LIBRARIES
+   WIN32_DEBUG_POSTFIX d
+-NAMES quazip${QUAZIP_LIB_VERSION_SUFFIX}
++NAMES quazip${QUAZIP_LIB_VERSION_SUFFIX} quazip1-qt5
+   HINTS /usr/lib /usr/lib64
+   )
+   FIND_PATH(QUAZIP_INCLUDE_DIR quazip.h
+   HINTS /usr/include /usr/local/include
+-  PATH_SUFFIXES quazip${QUAZIP_LIB_VERSION_SUFFIX}
++  PATH_SUFFIXES quazip${QUAZIP_LIB_VERSION_SUFFIX} 
QuaZip-Qt5-1.0/quazip
+   )
+   FIND_PATH(QUAZIP_ZLIB_INCLUDE_DIR zlib.h HINTS /usr/include 
/usr/local/include)
+   ENDIF (WIN32)
+-- 
+GitLab
+

diff --git a/media-gfx/krita/krita-4.4.3_beta1.ebuild 
b/media-gfx/krita/krita-4.4.3_beta1.ebuild
new file mode 100644
index 00..3c31724a57
--- /dev/null
+++ b/media-gfx/krita/krita-4.4.3_beta1.ebuild
@@ -0,0 +1,129 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+ECM_TEST="forceoptional"
+PYTHON_COMPAT=( python3_{7,8,9} )
+KFMIN=5.74.0
+QTMIN=5.15.2
+VIRTUALX_REQUIRED="test"
+inherit ecm kde.org python-single-r1
+
+if [[ ${KDE_BUILD_TYPE} = release ]]; then
+   SRC_URI="mirror://kde/unstable/${PN}/${PV/_/-}/${PN}-${PV/_/-}.tar.xz
+   
https://dev.gentoo.org/~asturm/distfiles/${PN}-4.2.9-patchset.tar.xz;
+   KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
+   S="${WORKDIR}/${PN}-${PV/_/-}"
+fi
+
+DESCRIPTION="Free digital painting application. Digital Painting, Creative 
Freedom!"
+HOMEPAGE="https://apps.kde.org/en/krita https://krita.org/en/;
+
+LICENSE="GPL-3"
+SLOT="5"
+IUSE="color-management fftw gif +gsl heif +jpeg openexr pdf qtmedia +raw tiff 
vc"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+# bug 630508
+RESTRICT+=" test"
+
+BDEPEND="
+   dev-cpp/eigen:3
+   dev-lang/perl
+   sys-devel/gettext
+"
+RDEPEND="${PYTHON_DEPS}
+   dev-libs/boost:=
+   dev-libs/quazip:0=
+   $(python_gen_cond_dep '
+   dev-python/PyQt5[${PYTHON_MULTI_USEDEP}]
+   dev-python/sip[${PYTHON_MULTI_USEDEP}]
+   ')
+   >=dev-qt/qtconcurrent-${QTMIN}:5
+   >=dev-qt/qtdbus-${QTMIN}:5
+   >=dev-qt/qtdeclarative-${QTMIN}:5
+   >=dev-qt/qtgui-${QTMIN}:5=[-gles2-only]
+   >=dev-qt/qtnetwork-${QTMIN}:5
+   >=dev-qt/qtprintsupport-${QTMIN}:5
+   >=dev-qt/qtsvg-${QTMIN}:5
+   >=dev-qt/qtwidgets-${QTMIN}:5
+   >=dev-qt/qtx11extras-${QTMIN}:5
+   >=dev-qt/qtxml-${QTMIN}:5
+   >=kde-frameworks/kcompletion-${KFMIN}:5
+   >=kde-frameworks/kconfig-${KFMIN}:5
+   >=kde-frameworks/kcoreaddons-${KFMIN}:5
+   >=kde-frameworks/kcrash-${KFMIN}:5
+   >=kde-frameworks/kguiaddons-${KFMIN}:5
+   >=kde-frameworks/ki18n-${KFMIN}:5
+   >=kde-frameworks/kiconthemes-${KFMIN}:5
+   >=kde-frameworks/kitemmodels-${KFMIN}:5
+   >=kde-frameworks/kitemviews-${KFMIN}:5
+   >=kde-frameworks/kwidgetsaddons-${KFMIN}:5
+   >=kde-frameworks/kwindowsystem-${KFMIN}:5
+   >=kde-frameworks/kxmlgui-${KFMIN}:5
+   media-gfx/exiv2:=
+   media-libs/lcms
+   

[gentoo-commits] proj/kde:master commit in: media-gfx/digikam/

2021-03-07 Thread Andreas Sturmlechner
commit: 42ea24759791645d66f0e427e3aa4cd603979e9b
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Mar  7 22:02:01 2021 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Mar  7 22:02:01 2021 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=42ea2475

media-gfx/digikam: 7.2.0_rc version bump

Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 media-gfx/digikam/digikam-7.2.0_rc.ebuild | 147 ++
 1 file changed, 147 insertions(+)

diff --git a/media-gfx/digikam/digikam-7.2.0_rc.ebuild 
b/media-gfx/digikam/digikam-7.2.0_rc.ebuild
new file mode 100644
index 00..c7406e0e9c
--- /dev/null
+++ b/media-gfx/digikam/digikam-7.2.0_rc.ebuild
@@ -0,0 +1,147 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+KFMIN=5.74.0
+QTMIN=5.15.2
+inherit ecm kde.org toolchain-funcs
+
+if [[ ${KDE_BUILD_TYPE} != live ]]; then
+   MY_P=${PN}-${PV/_/-}
+   if [[ ${PV} =~ rc[0-9]*$ ]]; then
+   SRC_URI="mirror://kde/unstable/${PN}/"
+   else
+   SRC_URI="mirror://kde/stable/${PN}/${PV}/"
+   fi
+   SRC_URI+="${MY_P}.tar.xz"
+   KEYWORDS="~amd64 ~x86"
+   S="${WORKDIR}/${MY_P}"
+fi
+
+DESCRIPTION="Digital photo management application"
+HOMEPAGE="https://www.digikam.org/;
+
+LICENSE="GPL-2"
+SLOT="5"
+IUSE="addressbook calendar gphoto2 heif +imagemagick +lensfun marble 
mediaplayer mysql opengl openmp +panorama scanner semantic-desktop X"
+
+# bug 366505
+RESTRICT+=" test"
+
+BDEPEND="
+   >=dev-util/cmake-3.14.3
+   sys-devel/gettext
+   panorama? (
+   sys-devel/bison
+   sys-devel/flex
+   )
+"
+COMMON_DEPEND="
+   dev-libs/expat
+   >=dev-qt/qtconcurrent-${QTMIN}:5
+   >=dev-qt/qtdbus-${QTMIN}:5
+   >=dev-qt/qtgui-${QTMIN}:5[-gles2-only]
+   >=dev-qt/qtnetwork-${QTMIN}:5
+   >=dev-qt/qtprintsupport-${QTMIN}:5
+   >=dev-qt/qtsql-${QTMIN}:5[mysql?]
+   >=dev-qt/qtwebengine-${QTMIN}:5[widgets]
+   >=dev-qt/qtwidgets-${QTMIN}:5
+   >=dev-qt/qtxml-${QTMIN}:5
+   >=dev-qt/qtxmlpatterns-${QTMIN}:5
+   >=kde-frameworks/kconfig-${KFMIN}:5
+   >=kde-frameworks/kconfigwidgets-${KFMIN}:5
+   >=kde-frameworks/kcoreaddons-${KFMIN}:5
+   >=kde-frameworks/ki18n-${KFMIN}:5
+   >=kde-frameworks/kiconthemes-${KFMIN}:5
+   >=kde-frameworks/kio-${KFMIN}:5
+   >=kde-frameworks/knotifications-${KFMIN}:5
+   >=kde-frameworks/knotifyconfig-${KFMIN}:5
+   >=kde-frameworks/kservice-${KFMIN}:5
+   >=kde-frameworks/kwidgetsaddons-${KFMIN}:5
+   >=kde-frameworks/kwindowsystem-${KFMIN}:5
+   >=kde-frameworks/kxmlgui-${KFMIN}:5
+   >=kde-frameworks/solid-${KFMIN}:5
+   >=media-gfx/exiv2-0.27:=
+   media-libs/lcms:2
+   media-libs/liblqr
+   media-libs/libpng:0=
+   >=media-libs/opencv-3.3.0:=[contrib,contribdnn]
+   media-libs/tiff:0
+   virtual/jpeg:0
+   addressbook? (
+   >=kde-apps/akonadi-contacts-19.04.3:5
+   >=kde-frameworks/kcontacts-${KFMIN}:5
+   )
+   calendar? ( >=kde-frameworks/kcalendarcore-${KFMIN}:5 )
+   gphoto2? ( media-libs/libgphoto2:= )
+   heif? ( media-libs/x265:= )
+   imagemagick? ( media-gfx/imagemagick:= )
+   lensfun? ( media-libs/lensfun )
+   marble? (
+   >=dev-qt/qtconcurrent-${QTMIN}:5
+   >=kde-apps/marble-19.04.3:5
+   >=kde-frameworks/kbookmarks-${KFMIN}:5
+   )
+   mediaplayer? (
+   media-libs/qtav[opengl(+)]
+   media-video/ffmpeg:=
+   )
+   opengl? (
+   >=dev-qt/qtopengl-${QTMIN}:5
+   virtual/opengl
+   )
+   panorama? ( >=kde-frameworks/threadweaver-${KFMIN}:5 )
+   scanner? ( >=kde-apps/libksane-19.04.3:5 )
+   semantic-desktop? ( >=kde-frameworks/kfilemetadata-${KFMIN}:5 )
+   X? (
+   >=dev-qt/qtx11extras-${QTMIN}:5
+   x11-libs/libX11
+   )
+"
+DEPEND="${COMMON_DEPEND}
+   dev-cpp/eigen:3
+   dev-libs/boost[threads]
+"
+RDEPEND="${COMMON_DEPEND}
+   mysql? ( virtual/mysql[server(+)] )
+   panorama? ( media-gfx/hugin )
+"
+
+pkg_pretend() {
+   [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp
+   ecm_pkg_pretend
+}
+
+pkg_setup() {
+   [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp
+   ecm_pkg_setup
+}
+
+# FIXME: Unbundle libraw (libs/rawengine/libraw)
+src_configure() {
+   local mycmakeargs=(
+   -DBUILD_TESTING=OFF # bug 698192
+   -DENABLE_APPSTYLES=ON
+   -DCMAKE_DISABLE_FIND_PACKAGE_Jasper=ON
+   -DENABLE_QWEBENGINE=ON
+   -DENABLE_AKONADICONTACTSUPPORT=$(usex addressbook)
+   $(cmake_use_find_package calendar KF5CalendarCore)
+   

[gentoo-commits] proj/kde:master commit in: media-gfx/digikam/

2021-03-07 Thread Andreas Sturmlechner
commit: 92ad645e74fe4d75cc1659e014fce859841f76c1
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Mar  7 22:12:06 2021 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Mar  7 22:12:06 2021 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=92ad645e

media-gfx/digikam: Sync with Gentoo ebuild repo

Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 media-gfx/digikam/digikam-.ebuild | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/media-gfx/digikam/digikam-.ebuild 
b/media-gfx/digikam/digikam-.ebuild
index 73ceac0b60..a596d1108e 100644
--- a/media-gfx/digikam/digikam-.ebuild
+++ b/media-gfx/digikam/digikam-.ebuild
@@ -26,6 +26,9 @@ LICENSE="GPL-2"
 SLOT="5"
 IUSE="addressbook calendar gphoto2 heif +imagemagick +lensfun marble 
mediaplayer mysql opengl openmp +panorama scanner semantic-desktop X"
 
+# bug 366505
+RESTRICT+=" test"
+
 BDEPEND="
>=dev-util/cmake-3.14.3
sys-devel/gettext
@@ -81,7 +84,7 @@ COMMON_DEPEND="
>=kde-frameworks/kbookmarks-${KFMIN}:5
)
mediaplayer? (
-   media-libs/qtav
+   media-libs/qtav[opengl(+)]
media-video/ffmpeg:=
)
opengl? (
@@ -105,9 +108,6 @@ RDEPEND="${COMMON_DEPEND}
panorama? ( media-gfx/hugin )
 "
 
-RESTRICT+=" test"
-# bug 366505
-
 pkg_pretend() {
[[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp
ecm_pkg_pretend



[gentoo-commits] proj/kde:master commit in: media-gfx/krita/

2021-03-07 Thread Andreas Sturmlechner
commit: 995fff1878f6536b2889ca025100888ddd989143
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Mar  7 22:11:47 2021 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Mar  7 22:11:47 2021 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=995fff18

media-gfx/krita: Sync with Gentoo ebuild repo

Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 media-gfx/krita/krita-.ebuild | 10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/media-gfx/krita/krita-.ebuild 
b/media-gfx/krita/krita-.ebuild
index 23b774faba..c80b33670c 100644
--- a/media-gfx/krita/krita-.ebuild
+++ b/media-gfx/krita/krita-.ebuild
@@ -12,7 +12,7 @@ inherit ecm kde.org python-single-r1
 
 if [[ ${KDE_BUILD_TYPE} = release ]]; then
SRC_URI="mirror://kde/stable/${PN}/${PV}/${P}.tar.xz"
-   KEYWORDS="~amd64 ~ppc64 ~x86"
+   KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
 fi
 
 DESCRIPTION="Free digital painting application. Digital Painting, Creative 
Freedom!"
@@ -23,6 +23,9 @@ SLOT="5"
 IUSE="color-management fftw gif +gsl heif +jpeg +mypaint-brush-engine openexr 
pdf qtmedia +raw tiff vc"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 
+# bug 630508
+RESTRICT+=" test"
+
 BDEPEND="
dev-cpp/eigen:3
dev-lang/perl
@@ -30,7 +33,7 @@ BDEPEND="
 "
 RDEPEND="${PYTHON_DEPS}
dev-libs/boost:=
-   dev-libs/quazip
+   dev-libs/quazip:0=
$(python_gen_cond_dep '
dev-python/PyQt5[${PYTHON_MULTI_USEDEP}]
dev-python/sip[${PYTHON_MULTI_USEDEP}]
@@ -84,9 +87,6 @@ DEPEND="${RDEPEND}
vc? ( >=dev-libs/vc-1.1.0 )
 "
 
-# bug 630508
-RESTRICT+=" test"
-
 PATCHES=( "${FILESDIR}"/${PN}-4.3.1-tests-optional.patch )
 
 pkg_setup() {



[gentoo-commits] repo/gentoo:master commit in: dev-python/importlib_metadata/

2021-03-07 Thread Michał Górny
commit: 33be124f26c854184783c54b298d2719dcd1849d
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Mar  7 23:02:33 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Mar  7 23:02:33 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33be124f

dev-python/importlib_metadata: Bump to 3.7.1

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/importlib_metadata/Manifest |  1 +
 .../importlib_metadata-3.7.1.ebuild| 42 ++
 2 files changed, 43 insertions(+)

diff --git a/dev-python/importlib_metadata/Manifest 
b/dev-python/importlib_metadata/Manifest
index 74008727cf1..c596935b48a 100644
--- a/dev-python/importlib_metadata/Manifest
+++ b/dev-python/importlib_metadata/Manifest
@@ -1,2 +1,3 @@
 DIST importlib_metadata-3.4.0.tar.gz 33841 BLAKE2B 
e2ac38c0f6fc5ecf78d3a4018715282b176f448e0a9f2cb16320812c1f9ca18f797b2ddfa85a96d83f6ff9540b486abcd8b5a38fa7f9261abbde4a88962e765d
 SHA512 
d17aae60ca79ddb3c2e60218144e7a3e055b2807e8ca4e55f0d0c1ae428323ab7d832e4178dd05a60f1de2f157497a6261afa7baa8f91bec85d042303869fb67
 DIST importlib_metadata-3.7.0.tar.gz 36517 BLAKE2B 
b96ac99bbc9ed7c961635a598d46bf409f11b008453123f3236feaf3650f7c6fe262c803dbf6b65bbe42ca4ea9990b559d3f03dde2287b19f0f7ff21668a3a3a
 SHA512 
c11c503412cb5f18a235dbff13eb0d5b24a2a7510f32cb8fc4abec3259987de9e5a01692aef729c5d7c7fe597156b1317abc357d49726ef1026172995b080631
+DIST importlib_metadata-3.7.1.tar.gz 36595 BLAKE2B 
c4eaf3671ec48610ce310a2609625ab77496252953c2d0567cc4824c39a8601ef99fb3ffd5d7968eb7aa358aaedf0ab81d87271afdddac68d7bd3a70971b153a
 SHA512 
b301c6c72b185d893e5e400dbd9417b2ba94122073d6cb163c9e9949fb13762ddc57b34dbba1330b55bef47073fc72a6a4b5689adf9af819a68be603c9d64c9e

diff --git a/dev-python/importlib_metadata/importlib_metadata-3.7.1.ebuild 
b/dev-python/importlib_metadata/importlib_metadata-3.7.1.ebuild
new file mode 100644
index 000..c7a1cf5de75
--- /dev/null
+++ b/dev-python/importlib_metadata/importlib_metadata-3.7.1.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+# NB: this package extends beyond built-in importlib stuff in py3.8+
+# new entry_point API not yet included in cpython release
+PYTHON_COMPAT=( pypy3 python3_{7..9} )
+inherit distutils-r1
+
+DESCRIPTION="Read metadata from Python packages"
+HOMEPAGE="https://github.com/python/importlib_metadata;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86 ~x64-macos"
+
+RDEPEND="
+   $(python_gen_cond_dep 'dev-python/typing-extensions[${PYTHON_USEDEP}]' 
python3_{6,7})
+   dev-python/zipp[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   dev-python/setuptools_scm[${PYTHON_USEDEP}]
+   test? (
+   dev-python/packaging[${PYTHON_USEDEP}]
+   dev-python/pyfakefs[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep '
+   dev-python/importlib_resources[${PYTHON_USEDEP}]
+   ' pypy3 python3_{7,8})
+   )
+"
+
+distutils_enable_sphinx docs dev-python/jaraco-packaging dev-python/rst-linker
+distutils_enable_tests unittest
+
+python_prepare_all() {
+   # Skip a test that requires pep517 which is not in the tree
+   sed -e 's:test_find_local:_&:' -i tests/test_integration.py || die
+
+   distutils-r1_python_prepare_all
+}



[gentoo-commits] repo/gentoo:master commit in: net-print/hplip-plugin/

2021-03-07 Thread James Le Cuirot
commit: b88ba1f34c0ec2f851e4562687181b633c70c9ce
Author: James Le Cuirot  gentoo  org>
AuthorDate: Sun Mar  7 22:48:50 2021 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Sun Mar  7 22:49:01 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b88ba1f3

net-print/hplip-plugin: Version bump to 3.21.2

Closes: https://bugs.gentoo.org/774435
Package-Manager: Portage-3.0.16, Repoman-3.0.2
Signed-off-by: James Le Cuirot  gentoo.org>

 net-print/hplip-plugin/Manifest   |  1 +
 net-print/hplip-plugin/hplip-plugin-3.21.2.ebuild | 72 +++
 2 files changed, 73 insertions(+)

diff --git a/net-print/hplip-plugin/Manifest b/net-print/hplip-plugin/Manifest
index 409f6e002ca..d96201b14f9 100644
--- a/net-print/hplip-plugin/Manifest
+++ b/net-print/hplip-plugin/Manifest
@@ -1,2 +1,3 @@
 DIST hplip-3.20.11-plugin.run 11514293 BLAKE2B 
b3b7698a45e5e68a25ec1216e736484d26546b657f4a519a153acf0280847667e7ca81afc988f722668746281857d51d9e1703857514ffe5b57dea85f2bae4d3
 SHA512 
9075c1ac8e8f6e12d33b81b633025259f54352ea00271eec07ee898fd9a164445519608fc9ea61a7157845a4a03f87c28f486c7994f0d7db81d11d3fe51f1876
 DIST hplip-3.20.9-plugin.run 11515336 BLAKE2B 
27686828374675412ae82a0a5be121c87dbd9ed3adb8d5f30e2f946e315140a5641fdbc60d7f952323060de7fb7bce77b21f19e0d07aa0c5c36e898732030b8b
 SHA512 
bbb5c5768c0f1e88f960f9decff65d70942bc40d8f0443fa2e1c0507895e2e6ba7bc8e0fbec5a74b335787ac45bd3c34cf6bc4d5e544ce7c2ef0965e074a440a
+DIST hplip-3.21.2-plugin.run 11514233 BLAKE2B 
262f23c34632f7ba4a9c6e1c4533d0fd44b025e476c0f28f0fc68bc401430c503233583ae381d6c74a89a996b75060391c6fdc6b0b606e32d56c82ed07f4
 SHA512 
62f3b6e369bdd1b2145f814901314c78ae5d7426734c92b0511f8ea4a925e24880875a1cfd1623ef800dcfdf3cf5b1c5d83032a19ca200547a4555b0d944f8e6

diff --git a/net-print/hplip-plugin/hplip-plugin-3.21.2.ebuild 
b/net-print/hplip-plugin/hplip-plugin-3.21.2.ebuild
new file mode 100644
index 000..cca0faecc4c
--- /dev/null
+++ b/net-print/hplip-plugin/hplip-plugin-3.21.2.ebuild
@@ -0,0 +1,72 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit unpacker
+
+DESCRIPTION="Proprietary plugins and firmware for HPLIP"
+HOMEPAGE="https://developers.hp.com/hp-linux-imaging-and-printing/plugins;
+SRC_URI="https://developers.hp.com/sites/default/files/hplip-${PV}-plugin.run;
+LICENSE="hplip-plugin"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE="orblite"
+
+RDEPEND="
+   ~net-print/hplip-${PV}
+   virtual/udev
+   orblite? (
+   media-gfx/sane-backends
+   >=sys-libs/glibc-2.26
+   virtual/libusb:0
+   )
+"
+DEPEND=""
+
+S=${WORKDIR}
+
+HPLIP_HOME=/usr/share/hplip
+
+# Binary prebuilt package
+QA_PREBUILT="${HPLIP_HOME}/*.so"
+
+# License does not allow us to redistribute the "source" package
+RESTRICT="mirror"
+
+src_install() {
+   local hplip_arch
+   case "${ARCH}" in
+   amd64) hplip_arch="x86_64" ;;
+   arm)   hplip_arch="arm32"  ;;
+   x86)   hplip_arch="x86_32" ;;
+   *) die "Unsupported architecture." ;;
+   esac
+
+   insinto "${HPLIP_HOME}"/data/firmware
+   doins *.fw.gz
+
+   for plugin in *-${hplip_arch}.so; do
+   local plugin_type=prnt
+   case "${plugin}" in
+   bb_orblite-*)
+   use orblite || continue
+   plugin_type=scan ;;
+   bb_*)
+   plugin_type=scan ;;
+   fax_*)
+   plugin_type=fax ;;
+   esac
+
+   exeinto "${HPLIP_HOME}"/${plugin_type}/plugins
+   newexe ${plugin} ${plugin/-${hplip_arch}}
+   done
+
+   insinto /var/lib/hp
+   newins - hplip.state <<-_EOF_
+   [plugin]
+   installed = 1
+   eula = 1
+   version = ${PV}
+   _EOF_
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/croniter/

2021-03-07 Thread Michał Górny
commit: 5d84bf897c0011ff3706f89d2187b6a43dbd11bb
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Mar  7 20:26:09 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Mar  7 22:38:35 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d84bf89

dev-python/croniter: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/croniter/Manifest  |  2 --
 dev-python/croniter/croniter-1.0.2.ebuild | 27 ---
 dev-python/croniter/croniter-1.0.7.ebuild | 28 
 3 files changed, 57 deletions(-)

diff --git a/dev-python/croniter/Manifest b/dev-python/croniter/Manifest
index dab7bedff33..2ac9747b18d 100644
--- a/dev-python/croniter/Manifest
+++ b/dev-python/croniter/Manifest
@@ -1,4 +1,2 @@
-DIST croniter-1.0.2.tar.gz 29809 BLAKE2B 
d7e5b668f97f98efdf992de4dd92bbddd8197275557364516af5d74b8376260967b249723dfda1d835c60dd185612a45f6ed6447609c593ad108ae1b738cefc7
 SHA512 
6e4b593dbbb5e3e1ce9a25ad709a1970f22feb1d0a2bf7fa97b8cc3eb43fbe896a842f74b3fc3cd08e3d414767cc661bf5c5307a206c42e1f0de5776b2b24310
 DIST croniter-1.0.6.tar.gz 30489 BLAKE2B 
a3caf1d0606dbec7a978e5089b08bf6edb13533524f5a3f1639483547b14a83f099276f4c63e9b84031202c088a8237326f70ecaca0bf3503f4a33173ce0d358
 SHA512 
1ca37c7dbd6a7365db112ccd474d76babc890aad1e2c341677be13c4f4e28a98219266efc065442e2077588a36b60c01d8e2996f0a32def690cf49e2c7c584bc
-DIST croniter-1.0.7.tar.gz 30735 BLAKE2B 
0cd033fd669e8b5ce58136898f8409bc1d3253d7e6b7d8b6d09792fad715656fa51655930aa4fd7b7f771fd8684048dd3d5bcc28510882b7c726ccc5636c87b2
 SHA512 
db31271889b95333c2bfdb371804bc9ca5197c96b20ad5bd4bf2d81f86b58d43266be8a76c481d28ef4e8f7ae9e4f21947754d6a721ed71ccd0ff0143c80b918
 DIST croniter-1.0.8.tar.gz 31019 BLAKE2B 
a637f7df806a85aeb236c38a9fa19ed0929fd257268cbe98bf7b281f1c52a9bfe98c91063da48b1344946f6619c5ac8f0e89051c1672fa6997c830dd97b7d9f2
 SHA512 
cf620baa55709c2379cc7f8f0123bd79e03b7dabaecd539633b8f52f97aa617c48e5692e0a45c08f4b30b2fab52c47cfc502c2ea550329083db2353ecdc56635

diff --git a/dev-python/croniter/croniter-1.0.2.ebuild 
b/dev-python/croniter/croniter-1.0.2.ebuild
deleted file mode 100644
index 38a4aedab7c..000
--- a/dev-python/croniter/croniter-1.0.2.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7..9} )
-
-inherit distutils-r1
-
-DESCRIPTION="Python module to provide iteration for datetime object"
-HOMEPAGE="https://github.com/kiorky/croniter 
https://pypi.org/project/croniter/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-
-RDEPEND="
-   dev-python/natsort[${PYTHON_USEDEP}]
-   dev-python/python-dateutil[${PYTHON_USEDEP}]"
-BDEPEND="
-   test? (
-   dev-python/pytz[${PYTHON_USEDEP}]
-   dev-python/tzlocal[${PYTHON_USEDEP}]
-   )"
-
-distutils_enable_tests pytest

diff --git a/dev-python/croniter/croniter-1.0.7.ebuild 
b/dev-python/croniter/croniter-1.0.7.ebuild
deleted file mode 100644
index 872a3960c97..000
--- a/dev-python/croniter/croniter-1.0.7.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7..9} )
-
-inherit distutils-r1
-
-DESCRIPTION="Python module to provide iteration for datetime object"
-HOMEPAGE="https://github.com/kiorky/croniter 
https://pypi.org/project/croniter/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-
-RDEPEND="
-   dev-python/future[${PYTHON_USEDEP}]
-   dev-python/natsort[${PYTHON_USEDEP}]
-   dev-python/python-dateutil[${PYTHON_USEDEP}]"
-BDEPEND="
-   test? (
-   dev-python/pytz[${PYTHON_USEDEP}]
-   dev-python/tzlocal[${PYTHON_USEDEP}]
-   )"
-
-distutils_enable_tests pytest



[gentoo-commits] repo/gentoo:master commit in: dev-python/autopep8/

2021-03-07 Thread Michał Górny
commit: e31cdcdae2f5193ae61516804ba76f8ede09a3c3
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Mar  7 20:25:51 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Mar  7 22:38:34 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e31cdcda

dev-python/autopep8: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/autopep8/Manifest  |  1 -
 dev-python/autopep8/autopep8-1.5.4.ebuild | 30 --
 2 files changed, 31 deletions(-)

diff --git a/dev-python/autopep8/Manifest b/dev-python/autopep8/Manifest
index f45a7f8091f..fb71d79d652 100644
--- a/dev-python/autopep8/Manifest
+++ b/dev-python/autopep8/Manifest
@@ -1,2 +1 @@
-DIST autopep8-1.5.4.tar.gz 121471 BLAKE2B 
4d9d4d0de94757573ad56636d92983d0bedfb2c7a3f25a47d8dba9c78c4e0752aa2ea0cd43f93d9cf37e434178cf89ad6c98b2af3a07f2490147c87a95ff610a
 SHA512 
e613295d080149028361715f748fc9db1b7fc6212ca4e117594a10c3924a67eaad6ff8d94cfcf2c3dea087e0aa1ce6bcadc1b4eb3f07915daa5b002a09913f59
 DIST autopep8-1.5.5.tar.gz 117991 BLAKE2B 
74e9bfed663d68f4a73088fccd879c538d40c564e7527b067d549a15361dfba2adcb853a8895fc61da50972f947ce23900f8067f5b8e715f73d6a80c6c27ef5b
 SHA512 
9982271805131a7330d4a2a46eda65c05f079925393686f2df7eb92dc9e172003f9d788663cb8c0c8849dbae4f64c518c310eb65c3df308a12700abab084c39c

diff --git a/dev-python/autopep8/autopep8-1.5.4.ebuild 
b/dev-python/autopep8/autopep8-1.5.4.ebuild
deleted file mode 100644
index 861696f391a..000
--- a/dev-python/autopep8/autopep8-1.5.4.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DISTUTILS_USE_SETUPTOOLS=rdepend
-PYTHON_COMPAT=( python3_{7..9} pypy3 )
-PYTHON_REQ_USE="threads(+)"
-
-inherit distutils-r1
-
-DESCRIPTION="Automatically formats Python code to conform to the PEP 8 style 
guide"
-HOMEPAGE="https://github.com/hhatto/autopep8 
https://pypi.org/project/autopep8/;
-if [[ ${PV} == ** ]]; then
-   EGIT_REPO_URI="https://github.com/hhatto/${PN}.git;
-   inherit git-r3
-else
-   SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-   KEYWORDS="~alpha amd64 ~arm64 ~ia64 ppc sparc x86 ~amd64-linux 
~x86-linux"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-
-RDEPEND="
-   >=dev-python/pycodestyle-2.6.0[${PYTHON_USEDEP}]
-   dev-python/toml[${PYTHON_USEDEP}]"
-BDEPEND="test? ( dev-python/pydiff[${PYTHON_USEDEP}] )"
-
-distutils_enable_tests setup.py



[gentoo-commits] repo/gentoo:master commit in: dev-python/pyglet/

2021-03-07 Thread Michał Górny
commit: 108e5c808ee7b979c177ad267abb3de6e00feaa1
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Mar  7 20:29:19 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Mar  7 22:38:45 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=108e5c80

dev-python/pyglet: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/pyglet/Manifest |  1 -
 dev-python/pyglet/pyglet-1.5.13.ebuild | 62 --
 2 files changed, 63 deletions(-)

diff --git a/dev-python/pyglet/Manifest b/dev-python/pyglet/Manifest
index 0afe133d30a..df72bd136a5 100644
--- a/dev-python/pyglet/Manifest
+++ b/dev-python/pyglet/Manifest
@@ -1,3 +1,2 @@
-DIST pyglet-1.5.13.tar.gz 6415241 BLAKE2B 
784e387072ea7260c5fc3f0c78869e62d42a68b7ca1208318af3dad77d64d6ca8d12b03c040ce1dca8430cbab31f218c2a1782ccfcaaf3637203e1e9638488b8
 SHA512 
05863b187653cb82d7727d7d33a65d9907030ac97d926d6dac01301817159c31d4a301570f41ad8e2af9e0509f67008b876e7f3460f31c6d58d5548179cba4ea
 DIST pyglet-1.5.14.tar.gz 6414252 BLAKE2B 
3e30f4dc80fffbf93a3cc7fa744ba224868dea1d9f1998446a2341fd3ed1c058493c486979aedb8415abe5c8a3f53dc634494f849bf6f3ab6f9ceb0e35cfecd9
 SHA512 
9b34e80e1b28a2ef0504339b67bdc31e568bf3a3352a9a1d78d3cf87ba84e86e23aec6e524abbca26865082ec2f9da8d7633ba83206f9996d87002faa1269044
 DIST pyglet-1.5.15.tar.gz 6429039 BLAKE2B 
5835d2c8c0c6e309664bea4a4001d0b68622379ae27555b640ed4441cb4319bf4ffd2b491cf789cba5639b9ca43e047f1e2cf820e540123939dd386a4c88fbf3
 SHA512 
0ea6f936895b0f17d7272866ecec7721ae1fb353af3654c49bb09eb81729f939df07ba3cdaf8b8bece345a8f144d56a45dc23d82e1887db306fd08c7989c688e

diff --git a/dev-python/pyglet/pyglet-1.5.13.ebuild 
b/dev-python/pyglet/pyglet-1.5.13.ebuild
deleted file mode 100644
index 24ad840b717..000
--- a/dev-python/pyglet/pyglet-1.5.13.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7,8,9} )
-
-inherit distutils-r1 virtualx xdg-utils
-
-DESCRIPTION="Cross-platform windowing and multimedia library for Python"
-HOMEPAGE="http://pyglet.org/;
-SRC_URI="https://github.com/pyglet/pyglet/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 x86 ~amd64-linux ~x86-linux"
-IUSE="examples image +sound"
-
-BDEPEND="
-   test? (
-   dev-python/pillow[${PYTHON_USEDEP}]
-   dev-python/gst-python[${PYTHON_USEDEP}]
-   )
-"
-RDEPEND="
-   virtual/glu
-   virtual/opengl
-   image? ( || (
-   dev-python/pillow[${PYTHON_USEDEP}]
-   x11-libs/gtk+:2
-   ) )
-   sound? ( || (
-   media-libs/openal
-   media-sound/pulseaudio
-   ) )
-"
-#  ffmpeg? ( media-libs/avbin-bin )
-
-DOCS=( DESIGN NOTICE README.md RELEASE_NOTES )
-
-distutils_enable_tests pytest
-
-src_test() {
-   virtx distutils-r1_src_test
-}
-
-python_test() {
-   xdg_environment_reset
-
-   # Specify path to avoid running interactive tests
-   # We could add in integration tests, but they're slow
-   pytest -vv tests/unit || die "Tests failed with ${EPYTHON}"
-}
-
-python_install_all() {
-   if use examples; then
-   dodoc -r examples
-   docompress -x /usr/share/doc/${PF}/examples
-   fi
-
-   distutils-r1_python_install_all
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/python-sshpubkeys/

2021-03-07 Thread Michał Górny
commit: b609fceb07feec7501c13459a2f8945cb821dab7
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Mar  7 20:27:43 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Mar  7 22:38:40 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b609fceb

dev-python/python-sshpubkeys: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/python-sshpubkeys/Manifest  |  1 -
 .../python-sshpubkeys-3.3.0.ebuild | 25 --
 2 files changed, 26 deletions(-)

diff --git a/dev-python/python-sshpubkeys/Manifest 
b/dev-python/python-sshpubkeys/Manifest
index 21e38db3b53..bf8fe253011 100644
--- a/dev-python/python-sshpubkeys/Manifest
+++ b/dev-python/python-sshpubkeys/Manifest
@@ -1,2 +1 @@
-DIST python-sshpubkeys-3.3.0.tar.gz 57904 BLAKE2B 
b716f91f99539a27574842687ca71b9eef4f715a667931576a94094687a6dd9bbb2ad50826fe2a4d7f21d546c4dd1e33daa815128e62e2446ade30218c3b42a2
 SHA512 
41314001e6f32a6286927833e64622c45bc5c55729722351dbb2305919a5b44fe74e528988a3fad672595eb2e8da7db225ad7ea6395aa14dc5abdc38187a600c
 DIST python-sshpubkeys-3.3.1.tar.gz 57896 BLAKE2B 
3212ea0c38377255258a831cc942f71c0b0efb040ba8ca3283200b638dcae7a31ad5763ae0de4f51a7ae0c3f0a1b83ca6db96f00384ecd1e1e3a369028e4ed41
 SHA512 
8a59e73eddd795a71b64fc7433292ca03a9f447a13c8ef40d68fc599776c37f5e4a1fdbbf2f2ab00b0091a513e2412f213f6a21474ae0784af2df9a7107a2ed6

diff --git a/dev-python/python-sshpubkeys/python-sshpubkeys-3.3.0.ebuild 
b/dev-python/python-sshpubkeys/python-sshpubkeys-3.3.0.ebuild
deleted file mode 100644
index 0d5b72ec5ae..000
--- a/dev-python/python-sshpubkeys/python-sshpubkeys-3.3.0.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 2020-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7..9} )
-inherit distutils-r1
-
-DESCRIPTION="OpenSSH public key parser for Python"
-HOMEPAGE="
-   https://pypi.org/project/sshpubkeys/
-   https://github.com/ojarva/python-sshpubkeys;
-SRC_URI="
-   https://github.com/ojarva/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 x86"
-
-RDEPEND="
-   dev-python/cryptography[${PYTHON_USEDEP}]
-   dev-python/ecdsa[${PYTHON_USEDEP}]
-"
-
-distutils_enable_tests unittest



[gentoo-commits] repo/gentoo:master commit in: dev-python/lmdb/, dev-python/lmdb/files/

2021-03-07 Thread Michał Górny
commit: 562cd85145b33cbe796bd7e3ebe7e469efb8
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Mar  7 20:29:06 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Mar  7 22:38:44 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=562c

dev-python/lmdb: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/lmdb/Manifest |  1 -
 dev-python/lmdb/files/lmdb-1.0.0-pypy3.patch | 40 
 dev-python/lmdb/lmdb-1.0.0.ebuild| 40 
 dev-python/lmdb/lmdb-1.1.1.ebuild| 36 -
 4 files changed, 117 deletions(-)

diff --git a/dev-python/lmdb/Manifest b/dev-python/lmdb/Manifest
index c647935a9e8..2f2eaef514a 100644
--- a/dev-python/lmdb/Manifest
+++ b/dev-python/lmdb/Manifest
@@ -1,3 +1,2 @@
-DIST lmdb-1.0.0.tar.gz 876673 BLAKE2B 
33fdf7dd344e42412b756f7c6d42c291f94bb2410366802b22b8045c8ae5ff4f73f41cdc655e750f0ccb9f547f70b190bb9b584d7858edd07c1fb274bff684eb
 SHA512 
3a4dba711ce5a3795a7f916cf04d5c7e9d4b5df30161dcbd02b53bcec73b96450865fb2bd8fe4a9ca2b5060531d03cefd9ea19aa09f139f93c3d03b2516f5632
 DIST lmdb-1.1.0.tar.gz 880212 BLAKE2B 
5f038c704061bb7915b0b0926c2dc60a5dd4931a70a1bf1041508363e036ae0553e22c52f8c956bebb05a27fad751c3b84c4a2b9fd6158fd8b6bd346e3efe7b4
 SHA512 
19573626a24fcea17c72641ce4491cf9e0901fa4a463ad5da6244191f28e4d9680d903fc2f87fe4a6b607f2a6a3a6bc644d5c1fc6e568394eb9822face30dfae
 DIST lmdb-1.1.1.tar.gz 880359 BLAKE2B 
b202154eae151d3748e9e90fcb71a3c8a722923c2583e469ef1a0017a4c3dfdfd62d99db24fb79e7da1fc7c6a4fb695d9db5ed6a67750967788a12fe0ba24761
 SHA512 
4621c87dd646f8ca37f4cdc40ffa2fe809ca4da21b335856e50e6d0ae07f3828d424cde9cc383e4cdc761cd9311eb504d67678a33de51c1931a006ec86a2fcd0

diff --git a/dev-python/lmdb/files/lmdb-1.0.0-pypy3.patch 
b/dev-python/lmdb/files/lmdb-1.0.0-pypy3.patch
deleted file mode 100644
index 008213ac46c..000
--- a/dev-python/lmdb/files/lmdb-1.0.0-pypy3.patch
+++ /dev/null
@@ -1,40 +0,0 @@
-From 2d0f93984f53c19925f07d742584f5e3e69d7902 Mon Sep 17 00:00:00 2001
-From: Nic Watson 
-Date: Wed, 7 Oct 2020 12:44:30 -0400
-Subject: [PATCH] Get pypy3 passing tests
-

- .travis.yml  | 2 +-
- tests/cursor_test.py | 8 
- 2 files changed, 5 insertions(+), 5 deletions(-)
-
-diff --git a/tests/cursor_test.py b/tests/cursor_test.py
-index acfb0ea..22dd6f8 100644
 a/tests/cursor_test.py
-+++ b/tests/cursor_test.py
-@@ -245,7 +245,7 @@ def setUp(self, redo=False):
- self.txn = self.env.begin(write=True)
- self.c = self.txn.cursor()
- 
--@unittest.skipIf(sys.platform != 'linux', "test only works on Linux")
-+@unittest.skipIf(not sys.platform.startswith('linux'), "test only works 
on Linux")
- def test_preload(self):
- """
- Test that reading just the key doesn't prefault the value contents, 
but
-@@ -264,13 +264,13 @@ def test_preload(self):
- self.path, self.env = testlib.temp_env(path=self.path, writemap=True)
- self.txn = self.env.begin(write=True, buffers=True)
- self.c = self.txn.cursor()
--minflts_before = resource.getrusage(resource.RUSAGE_THREAD)[6]
-+minflts_before = resource.getrusage(resource.RUSAGE_SELF)[6]
- self.c.set_key(B('a'))
- assert self.c.key() == B('a')
--minflts_after_key = resource.getrusage(resource.RUSAGE_THREAD)[6]
-+minflts_after_key = resource.getrusage(resource.RUSAGE_SELF)[6]
- 
- self.c.value()
--minflts_after_value = resource.getrusage(resource.RUSAGE_THREAD)[6]
-+minflts_after_value = resource.getrusage(resource.RUSAGE_SELF)[6]
- 
- epsilon = 20
- 

diff --git a/dev-python/lmdb/lmdb-1.0.0.ebuild 
b/dev-python/lmdb/lmdb-1.0.0.ebuild
deleted file mode 100644
index d6698037079..000
--- a/dev-python/lmdb/lmdb-1.0.0.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( pypy3 python3_{7..9} )
-
-inherit distutils-r1
-
-DESCRIPTION="Python bindings for the Lightning Database"
-HOMEPAGE="https://github.com/jnwatson/py-lmdb/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="OPENLDAP"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 x86 ~amd64-linux ~x86-linux"
-
-RDEPEND="dev-db/lmdb:="
-DEPEND="${RDEPEND}"
-
-distutils_enable_sphinx docs
-distutils_enable_tests pytest
-
-PATCHES=(
-   # 
https://github.com/jnwatson/py-lmdb/commit/2d0f93984f53c19925f07d742584f5e3e69d7902
-   "${FILESDIR}/${P}-pypy3.patch"
-)
-
-python_compile() {
-   LMDB_FORCE_SYSTEM=1 distutils-r1_python_compile
-}
-
-python_test() {
-   pytest tests -vv || die "Tests fail with ${EPYTHON}"
-}
-
-python_install() {
-   # This is required when the CFFI extension is used (for PyPy3)
-   LMDB_FORCE_SYSTEM=1 distutils-r1_python_install
-}

diff --git a/dev-python/lmdb/lmdb-1.1.1.ebuild 

[gentoo-commits] repo/gentoo:master commit in: dev-python/jupyter_core/

2021-03-07 Thread Michał Górny
commit: 105aac031aecde9e364e45a31e10238d0ffbd47f
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Mar  7 20:27:18 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Mar  7 22:38:38 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=105aac03

dev-python/jupyter_core: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/jupyter_core/Manifest   |  1 -
 .../jupyter_core/jupyter_core-4.6.3-r1.ebuild  | 37 --
 2 files changed, 38 deletions(-)

diff --git a/dev-python/jupyter_core/Manifest b/dev-python/jupyter_core/Manifest
index 7fa3df2c990..652b0a40d7e 100644
--- a/dev-python/jupyter_core/Manifest
+++ b/dev-python/jupyter_core/Manifest
@@ -1,2 +1 @@
-DIST jupyter_core-4.6.3.tar.gz 67305 BLAKE2B 
7c6a32bd8ce773b7bc4156eabf75597112716632179736b19be4b0e73eba7c5c67a0c9d2d141b952d72b68aff826227b0004a3bc9f3b286b68eb1375f2316bdb
 SHA512 
3c7370c24a4cf53c9747e9e411852d207c0c7035809dab7cb018ccb53e19208df25ad4f728531e47f3a42c4d9694c3e1ed7b03133de23bcbdeb346c319f5f51f
 DIST jupyter_core-4.7.1.tar.gz 68886 BLAKE2B 
aa89351845c669474c03a307934a5d84b6357679bc99f2fc7da4f93ff347766d52ce3551780803b73941d6457f7004306e795398fd390c81e9180193a2119225
 SHA512 
bc190abd000566dbd097dcb14acf1926c92bb265f2cfbbd14dac6a9cf7d6a02f924ba89fa957ca30c2af57433e9187e288bb8e80d039a3d3a583c6e488a9c80e

diff --git a/dev-python/jupyter_core/jupyter_core-4.6.3-r1.ebuild 
b/dev-python/jupyter_core/jupyter_core-4.6.3-r1.ebuild
deleted file mode 100644
index b5e369ae4bb..000
--- a/dev-python/jupyter_core/jupyter_core-4.6.3-r1.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7..9} )
-DISTUTILS_USE_SETUPTOOLS=rdepend
-
-inherit distutils-r1
-
-DESCRIPTION="Core common functionality of Jupyter projects"
-HOMEPAGE="https://jupyter.org;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 arm64 x86"
-
-RDEPEND="dev-python/traitlets[${PYTHON_USEDEP}]"
-BDEPEND="
-   test? (
-   >=dev-python/ipython-4.0.1[${PYTHON_USEDEP}]
-   dev-python/nose[${PYTHON_USEDEP}]
-   )"
-
-distutils_enable_sphinx docs \
-   dev-python/sphinxcontrib-github-alt
-distutils_enable_tests pytest
-
-python_prepare_all() {
-   # rely on imports working without PYTHONPATH
-   sed -e 's:test_not_on_path:_&:' \
-   -e 's:test_path_priority:_&:' \
-   -i jupyter_core/tests/test_command.py || die
-
-   distutils-r1_python_prepare_all
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/setuptools/

2021-03-07 Thread Michał Górny
commit: 9040a9ff6e4cf66285b7e887b3c3f2f49fad5c00
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Mar  7 20:23:02 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Mar  7 22:38:30 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9040a9ff

dev-python/setuptools: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/setuptools/Manifest |  3 --
 dev-python/setuptools/setuptools-51.3.3.ebuild | 62 ---
 dev-python/setuptools/setuptools-54.0.0.ebuild | 67 -
 dev-python/setuptools/setuptools-54.1.0.ebuild | 68 --
 4 files changed, 200 deletions(-)

diff --git a/dev-python/setuptools/Manifest b/dev-python/setuptools/Manifest
index f6de281faed..098f82e926a 100644
--- a/dev-python/setuptools/Manifest
+++ b/dev-python/setuptools/Manifest
@@ -1,6 +1,3 @@
-DIST setuptools-51.3.3.tar.gz 2053035 BLAKE2B 
73b33359f10f900233b82e68c91781609665bdecb6b0e2963d7d15a798149c104030cc1e124ee945b23e5fc8db3f573d0b9012cfba7767ff913077af907141e4
 SHA512 
5a3572466a68c6f650111448ce3343f64c62044650bb8635edbff97e2bc7b216b8bbe3b4e3bccf34e6887f3bedc911b27ca5f9a515201cae49cf44fbacf03345
 DIST setuptools-53.0.0.tar.gz 2050503 BLAKE2B 
b1ebe5a9776917fe9a21a13a4db613fd05aa1f61043482487013bcfed7802ff1b984fe0f72623b092eee7ebfb9debd5f71732223220bc2b73a6ece0a7ec86a2c
 SHA512 
d045198210f09c5f2acbd487d3dd291cd7ce814bebe331f1876c133cd28f56d368717c7bd4a875b439c9cc8c9488dc9a7d3e27ab791cce419f78b87fcfd8fff6
 DIST setuptools-53.1.0.tar.gz 2051159 BLAKE2B 
f4148df45f5c62acd6acae833619dcae50f131da91ece1a2e1231620d4800294f14dab6c72ca5b2ffd31191c4e3306a869abdba349adcec5746600fc067b340d
 SHA512 
0ca02e9b997623268d8f73b73ee6a4b1ad513802cbc75c74124a85bd5ca7bfaea5cf7cccb706334c0dac2c8a0674a5bc2cea10f44f99f881ad893c8337af3da2
-DIST setuptools-54.0.0.tar.gz 2052086 BLAKE2B 
b96b8ac1119a9ece7d6a7e481a8d078f6ea65957be679549381b67e26498a6d403aca38b8ee8ca832c8e1045f960114e037787863ea6247bc87a92c1301c11fb
 SHA512 
b13ad8aa13da63d9504064fb702632d0d17dd81eee8c09b9d38d30a6e4d625a600f0b3e7349e45354b444c25d5caccb5407bdecdd220af2e283f4baccd6f675f
-DIST setuptools-54.1.0.tar.gz 2052744 BLAKE2B 
a62bc9938ce5f39ac2a828180e03f82cc9481ab913c090f3358cb8408ae9c688aa53210b327ded4d0e652cbd97036b320cd67c349d1816fda39f10bc090df5aa
 SHA512 
21259140f9f032b5431e33b32492b910561ecd7c3587a28fc71c14d03099d36ea746c81b0a9e476bd6fe12b9c61cd03a7e60eb9b673e0a249cf8e11df1a0e734
 DIST setuptools-54.1.1.tar.gz 2053415 BLAKE2B 
59d60e9be5a184e34e8c9e1ccb477eae538836c8fac4862f3365e1abe8beec6cc85490918d413b29831c4d3738ca19cd84ac4a9d30178e45e42c652a0ade5fac
 SHA512 
d2ab5445a9b4de5b5fae8aab6a47131ad41a011fa23fb1e6c07a599bcb27a8f89ea3c5ea9939577d6286bf3f8e2edf0334816ae1a507dba09c46435d063c3379

diff --git a/dev-python/setuptools/setuptools-51.3.3.ebuild 
b/dev-python/setuptools/setuptools-51.3.3.ebuild
deleted file mode 100644
index 4231ee0d4ba..000
--- a/dev-python/setuptools/setuptools-51.3.3.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-# Set to 'manual' to avoid triggering install QA check
-DISTUTILS_USE_SETUPTOOLS=manual
-PYTHON_COMPAT=( python3_{7..9} pypy3 )
-PYTHON_REQ_USE="xml(+)"
-
-inherit distutils-r1 multiprocessing
-
-DESCRIPTION="Collection of extensions to Distutils"
-HOMEPAGE="https://github.com/pypa/setuptools 
https://pypi.org/project/setuptools/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-
-BDEPEND="
-   test? (
-   dev-python/jaraco-envs[${PYTHON_USEDEP}]
-   dev-python/mock[${PYTHON_USEDEP}]
-   dev-python/pip[${PYTHON_USEDEP}]
-   dev-python/pytest-fixture-config[${PYTHON_USEDEP}]
-   dev-python/pytest-virtualenv[${PYTHON_USEDEP}]
-   dev-python/pytest-xdist[${PYTHON_USEDEP}]
-   >=dev-python/virtualenv-20[${PYTHON_USEDEP}]
-   dev-python/wheel[${PYTHON_USEDEP}]
-   )
-"
-PDEPEND="
-   >=dev-python/certifi-2016.9.26[${PYTHON_USEDEP}]
-   dev-python/setuptools_scm[${PYTHON_USEDEP}]"
-
-distutils_enable_tests pytest
-
-# Force in-source build because build system modifies sources.
-DISTUTILS_IN_SOURCE_BUILD=1
-
-DOCS=( {CHANGES,README}.rst )
-
-python_test() {
-   distutils_install_for_testing --via-root
-   local deselect=(
-   # TODO
-   
setuptools/tests/test_easy_install.py::TestSetupRequires::test_setup_requires_with_allow_hosts
-   # this one's unhappy about pytest-xdist but one test is not 
worth
-   # losing the speed gain
-   

[gentoo-commits] repo/gentoo:master commit in: dev-python/guessit/

2021-03-07 Thread Michał Górny
commit: ec6621a69ff1bd08f50acba6da2b3300f4dc378c
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Mar  7 20:26:51 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Mar  7 22:38:37 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec6621a6

dev-python/guessit: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/guessit/Manifest |  1 -
 dev-python/guessit/guessit-3.2.0.ebuild | 38 -
 2 files changed, 39 deletions(-)

diff --git a/dev-python/guessit/Manifest b/dev-python/guessit/Manifest
index c407a0499f5..01d4c4d90f5 100644
--- a/dev-python/guessit/Manifest
+++ b/dev-python/guessit/Manifest
@@ -1,3 +1,2 @@
-DIST guessit-3.2.0.tar.gz 147286 BLAKE2B 
0ab249eb82204fd58a6d6c960b11b2009a3055ae91a91c244192a2bd9832e7356f444a6b4291cf56d55a4c9a1cd0ccec22d527114d61f9f5888a8439918ba6bc
 SHA512 
5eaa0ad8cdf60812bebf10af51f62095baa70f48b66a052002fceb0d705daab3b8bcd2cb0fc3d18b63b9f4aa8118b9d85283bebdcfdb8ed4204e1b7e2b5ae78c
 DIST guessit-3.3.0.tar.gz 157901 BLAKE2B 
8022e69f763d09912349e193d3273a95adf6cd533d28097e3e17e5a5d3a9f18b623024bac6b00b3aa78ac43cb6ff179a97344e516401f71e1ad23743d033604e
 SHA512 
5569572ed6d7910b320e1742b902325baf3f3455598e17a7e3bb36ae5da0e450d4bc2db0b1651a8d4df7354e0624216c1093aace48ef607b3146933fbb83a918
 DIST guessit-3.3.1.tar.gz 156178 BLAKE2B 
190b61eb98c4945eb2e14bbc3387a2eabff4e0f2fccf42f3b957d2b081d83d96333f3931837ad77d6b09c12aaa174eb8adf993d62ab9de7b74d8f0c55282a77c
 SHA512 
42c87525ea2d9c808e30b50db674862f5362f26b95ba5e6bc163df03a261d9b24daf4b4d525677d3e6d53e8e7f637c3d9e0ba3f25f4397e0658b618f50a3248b

diff --git a/dev-python/guessit/guessit-3.2.0.ebuild 
b/dev-python/guessit/guessit-3.2.0.ebuild
deleted file mode 100644
index b7a5ba657f3..000
--- a/dev-python/guessit/guessit-3.2.0.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DISTUTILS_USE_SETUPTOOLS=rdepend
-PYTHON_COMPAT=( python3_{7,8,9} )
-
-inherit distutils-r1
-
-DESCRIPTION="Python library for guessing information from video filenames"
-HOMEPAGE="https://github.com/guessit-io/guessit
-   https://pypi.org/project/guessit/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="LGPL-3"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 x86"
-
-RDEPEND="
-   >=dev-python/babelfish-0.5.5[${PYTHON_USEDEP}]
-   >=dev-python/rebulk-3[${PYTHON_USEDEP}]
-   dev-python/python-dateutil[${PYTHON_USEDEP}]
-   dev-python/pyyaml[${PYTHON_USEDEP}]
-"
-
-distutils_enable_tests pytest
-
-python_prepare_all() {
-   # Disable benchmarks as they require unavailable pytest-benchmark.
-   rm guessit/test/test_benchmark.py || die
-   sed -i -e "s|'pytest-benchmark',||g" setup.py || die
-
-   # Disable unconditional dependency on dev-python/pytest-runner.
-   sed -i -e "s|'pytest-runner'||g" setup.py || die
-
-   distutils-r1_python_prepare_all
-}



[gentoo-commits] repo/gentoo:master commit in: sys-kernel/gentoo-kernel-bin/

2021-03-07 Thread Michał Górny
commit: 89e8c43556135e18b9b18862de4003b23c826c2c
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Mar  7 22:11:48 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Mar  7 22:38:24 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89e8c435

sys-kernel/gentoo-kernel-bin: Bump to 5.11.4

Signed-off-by: Michał Górny  gentoo.org>

 sys-kernel/gentoo-kernel-bin/Manifest  |   4 +
 .../gentoo-kernel-bin-5.11.4.ebuild| 117 +
 2 files changed, 121 insertions(+)

diff --git a/sys-kernel/gentoo-kernel-bin/Manifest 
b/sys-kernel/gentoo-kernel-bin/Manifest
index ed28b30175f..a123b1d60da 100644
--- a/sys-kernel/gentoo-kernel-bin/Manifest
+++ b/sys-kernel/gentoo-kernel-bin/Manifest
@@ -8,6 +8,8 @@ DIST genpatches-5.11-3.base.tar.xz 11280 BLAKE2B 
83a975b07b3e04e19b008e5a5c4f08f
 DIST genpatches-5.11-3.extras.tar.xz 1772 BLAKE2B 
165d5928e6afc65544392186737efd1df9e1179591ef7edd85a1868971ea76016161a38a615e9e692c4515fe7fc19424a0cfd01420b5ec57a60c8d1d2d223cb7
 SHA512 
c74015c4e1b824c61db9e9deca6b30a839ae9a8fb5747cb6c46e2af99a9221f11bb971099554107bbfc58ea5389d96e810f9cf8e55d0bcc16a093eef941c6ec8
 DIST genpatches-5.11-4.base.tar.xz 247120 BLAKE2B 
64e8bb77aa399a797a9dd9726ba51a00ec43d850504680c52b9fe3ebc1277e1e2216a43719bd79b12e3267171f1031feab5adffc35bfffd87f91302b9f8714ee
 SHA512 
9480fa377439c010f6aaae8c5ec6a512070cb30bb6171e31617dbb24ef54687d13bddf4768c5652d8e8c640d4c6b9c85fa0b434d8634d58154ee205db2c1cf28
 DIST genpatches-5.11-4.extras.tar.xz 1768 BLAKE2B 
4e7641168121f833915d68989504a437d496debf78acd943350582b5594c112a73b240e01cdfedf65d352f925d7d4e2cbf2f6ea67dfad1200971a4f9da28996b
 SHA512 
4e0788eeb2080728ef8161e5605c171c45740dac2d7b16c428cadb9bee09bd6f129f98a5790368eceef7b3f8d4f5e2ca5d12df52346bcb84c44fb826d72072f0
+DIST genpatches-5.11-5.base.tar.xz 282264 BLAKE2B 
d08bd2393a682ad1003551b5873f6a905503dcb2b9c21c5cf5af4f760abea3614f097872538cfebc4e1efe1305530d37fe287d2c0615ea1133d06e158f3c39a6
 SHA512 
ee2762cdf98eac908fd0836aee7b8c01a931a4e8516954b962757bdf9482f083644ed1ec6526418785db11a9c87ef3a7bc9a458d7a1a3a867e908302fef330c5
+DIST genpatches-5.11-5.extras.tar.xz 1768 BLAKE2B 
b05e8e796eabebfe572ec26146e36152b2e653f2b1a0fc9169a7cc0e8022d27b396e541b2e683ac1cd077ba31c47f9d663a5deb71d1cbd940ea7d85aa80ec4fa
 SHA512 
d97f60b3329fbd7ef274ba2a6ce95bf516886fa58a5ff13f00998c550b11150bda56210bcc173ba2982fa8beeed6bad8529b8fdce60bd36c12d7b64a7db1f2fa
 DIST genpatches-5.4-104.base.tar.xz 3093716 BLAKE2B 
da8a9f572f4a22eb101a477ed2b2a81b0adaed65f1913c163b58dc958de661707733fb1e0d06e49ec342666ca0c212313d3a5fbca60c79779009b91361e23f42
 SHA512 
2ef214d2e4ea982c6702991519aaa183d6731f882fa59db5cc2d7832c7fcaf8de57dc2173f4a59922e5d90da2d046753b3eed609513c84c784c13d5be747303b
 DIST genpatches-5.4-104.extras.tar.xz 1768 BLAKE2B 
7f335d61bd5f44cfa74ce2082259a48791ed90c21da4d05ff13c191adf1f658e68634c4cf9779274e6f775409695634ca40187754b0f9d50b406c26df26adbc4
 SHA512 
a8080605c59079063065d9bebc9d846ab8aab73f2f192f6c5becea2b51304a1e4d91e20d9aacd61f2cfa5b967bb8e30d620ddd60592017f308ad2f65ab7287a5
 DIST genpatches-5.4-105.base.tar.xz 3163684 BLAKE2B 
e11b77067fb714f827d68ca0773ae5f097a4234f89eb0ea5bb04ef6cbf39d416a676696a8a97e1473dbd36205b84e681f3b0e94dec8cdab5c111883a7f911285
 SHA512 
42217305887d22987bcc88565c02b4dfd864449c10726ce4e819c4b3fe8af6d2898fdd453ebfb95a45af90843000e219f5447def048ca52ac7c509219396c2cc
@@ -34,6 +36,8 @@ DIST gentoo-kernel-5.11.2-1.x86.xpak 57784553 BLAKE2B 
452b7e2bca5f9c83345b14f8a3
 DIST gentoo-kernel-5.11.3-1.amd64.xpak 64831800 BLAKE2B 
ccc7ddf11246fe988720754eedfbfd336621918f975b2d952bea99180823361bdebade271f55b764d83df6461116dfa3e8008dc4920a77f1845fab177c3eb81b
 SHA512 
278a8a7a817abaf09c8deb1ee6f42711ac497ded29596f55d29669a67e8b0ac0f95ff2af356cbce42880f328af1b6eb9b1ee787927820df4065a81c67787cadc
 DIST gentoo-kernel-5.11.3-1.arm64.xpak 59778759 BLAKE2B 
350fcd7e21b5884f3b0fb0fb35c1df2147f4151182bdcf01c491dc4c89b09d2e75e8433c658dd649d9f9ccdecb4dfd47c912fd2b93d0ca9ca884d8bfe863518f
 SHA512 
ff91a4278c2d14b4313a1a6bffc2480c0afa1671564d341df4572236d4e9e82ff03dc7fb32324252190c26fa07958cac20a8d965de38b438c04281e7b0ca915b
 DIST gentoo-kernel-5.11.3-1.x86.xpak 57808390 BLAKE2B 
c8fa0b6c4736face65fad6d3caa83311eb1457a1bedb65401c073d800c90634298e929b4acf6e2212dd3b2f863dc06b28ad67992ca1c81b21531bf335ca21e1b
 SHA512 
2f5aa0e7595120c8bf0b552c88a22b2ddf2d2a0028c8e2154250b07d526d66becf6e459fae64b67f69f1c91f7afc1109e7c13b72b2f48aca1a3b36ec6ce18fae
+DIST gentoo-kernel-5.11.4-1.amd64.xpak 64915116 BLAKE2B 
b7fac7ed149cac31c3bb670f8aac990aa46e34177537ceff2dcbe9a45345f295089643463258199961def60e040728f4bdf1a4833baefacea7e589d9a377c749
 SHA512 
6c8c9528e06f8d0abf01dd762eaa4057cc4823bcdfe95d4e9cb1d4dc0f51f696d3ec98c201549d981b008afbde3377f82ebe3b7d7ad5017499b7c6b83b38c6e6
+DIST gentoo-kernel-5.11.4-1.x86.xpak 57890628 BLAKE2B 

[gentoo-commits] repo/gentoo:master commit in: dev-python/unidecode/

2021-03-07 Thread Michał Górny
commit: fba649aa9ee621869eafaf1405c9492d670631fd
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Mar  7 20:25:14 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Mar  7 22:38:32 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fba649aa

dev-python/unidecode: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/unidecode/Manifest   |  1 -
 dev-python/unidecode/unidecode-1.1.2.ebuild | 22 --
 2 files changed, 23 deletions(-)

diff --git a/dev-python/unidecode/Manifest b/dev-python/unidecode/Manifest
index 5aece95d8db..ec0cac55feb 100644
--- a/dev-python/unidecode/Manifest
+++ b/dev-python/unidecode/Manifest
@@ -1,2 +1 @@
-DIST Unidecode-1.1.2.tar.gz 213644 BLAKE2B 
c4a9ecb441eb05800d931ccd43843d19ae07f74829d43bc3c24462955e8872f4edf4bb9b3909fc5155b13676b8d255848cdd90772a88cd453152ca13af0d3fab
 SHA512 
8ee45ae05064612638ecbaa4eb74759580e5ea5cba9f3116b8e63db4af13affc266c7a07aaefbbd70b50ead7e483a72d7676c64e20b5bee2a6ba831aaccd6748
 DIST Unidecode-1.2.0.tar.gz 216042 BLAKE2B 
c63a192bfa726a9e91224e73a42236088de0b39f34f3f6404eec1c3adfe6512e843ce1f75dab32456ce6be4d938b0b8acfc1e6243c394d7d4d47d07d0905
 SHA512 
aedc16be1b676dbde7e45444e297be916b1ca2874a76f07316e2df3aff9687dcf73def24b2441e147c94641f4407cc745ac35937508e09c670f8aa1473977859

diff --git a/dev-python/unidecode/unidecode-1.1.2.ebuild 
b/dev-python/unidecode/unidecode-1.1.2.ebuild
deleted file mode 100644
index df4537dad3d..000
--- a/dev-python/unidecode/unidecode-1.1.2.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( pypy3 python3_{7..9} )
-PYTHON_REQ_USE="wide-unicode(+)"
-DISTUTILS_USE_SETUPTOOLS="rdepend"
-
-inherit distutils-r1
-
-MY_P=Unidecode-${PV}
-DESCRIPTION="Module providing ASCII transliterations of Unicode text"
-HOMEPAGE="https://pypi.org/project/Unidecode/;
-SRC_URI="mirror://pypi/${MY_P:0:1}/${PN^}/${MY_P}.tar.gz"
-S="${WORKDIR}/${MY_P}"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ppc ppc64 sparc x86"
-
-distutils_enable_tests setup.py



[gentoo-commits] repo/gentoo:master commit in: dev-python/pytz/

2021-03-07 Thread Michał Górny
commit: 274701b3e575e63f9942d9ac9880023f7e228ece
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Mar  7 20:21:44 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Mar  7 22:38:28 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=274701b3

dev-python/pytz: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/pytz/Manifest   |  1 -
 dev-python/pytz/pytz-2020.5.ebuild | 32 
 2 files changed, 33 deletions(-)

diff --git a/dev-python/pytz/Manifest b/dev-python/pytz/Manifest
index f1333d81872..38741c888fd 100644
--- a/dev-python/pytz/Manifest
+++ b/dev-python/pytz/Manifest
@@ -1,2 +1 @@
-DIST pytz-2020.5.tar.gz 314194 BLAKE2B 
c374e0ee803878ad2dde1ef03c108f59f431d645d8067fb9f183b9feb029b4de283477e7f6c146a6d03462bd5cb4fc98118e03601c838f73903f5f7a7d28bf8f
 SHA512 
0845c0b7cefb8732e3016568b17ae73232fe6537bac6da89cb1bf911ba5786ee1be6b5e3aa8767225291e3a7e9afd5b8e40e4051671a3a006f9e2f71c551e13e
 DIST pytz-2021.1.tar.gz 317945 BLAKE2B 
5d8b5ac80a9d5be56977df8a422e9f008ccb1afb9468155c53aa97f0bf43ba15c27fd30ee7be035be6fa590dcb272991a069cd1383f1c6c8d378958d7b0c4970
 SHA512 
507e24e3c5c2c619d9f3c7f4c33d44d262e33656b07701d0db78f5d67b263ad845dccc4ff50e48c580b0f295cf97ed146af7b9259890a50bb6da4c82b70c439b

diff --git a/dev-python/pytz/pytz-2020.5.ebuild 
b/dev-python/pytz/pytz-2020.5.ebuild
deleted file mode 100644
index 139d6cadf7c..000
--- a/dev-python/pytz/pytz-2020.5.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7,8,9} pypy3 )
-PYTHON_REQ_USE="threads(+)"
-
-inherit distutils-r1
-
-DESCRIPTION="World timezone definitions for Python"
-HOMEPAGE="https://pythonhosted.org/pytz/ https://pypi.org/project/pytz/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
-IUSE=""
-
-RDEPEND="
-   || ( >=sys-libs/timezone-data-2017a sys-libs/glibc[vanilla] )"
-DEPEND="${RDEPEND}
-   app-arch/unzip"
-
-PATCHES=(
-   # Use timezone-data zoneinfo.
-   "${FILESDIR}"/pytz-2020.5-system-zoneinfo.patch
-)
-
-python_test() {
-   "${EPYTHON}" pytz/tests/test_tzinfo.py -v || die "Tests fail with 
${EPYTHON}"
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/setuptools/

2021-03-07 Thread Michał Górny
commit: 5b25facd40520f3af5bc16855c1cc9143b3a6ba3
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Mar  7 20:23:53 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Mar  7 22:38:29 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b25facd

dev-python/setuptools: Forward-port new keywords to 54.1.1

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/setuptools/setuptools-54.1.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/setuptools/setuptools-54.1.1.ebuild 
b/dev-python/setuptools/setuptools-54.1.1.ebuild
index 3cd99f80e1c..f30ab3d6836 100644
--- a/dev-python/setuptools/setuptools-54.1.1.ebuild
+++ b/dev-python/setuptools/setuptools-54.1.1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~hppa ~ppc ~x86"
+KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~sparc ~x86"
 
 BDEPEND="
test? (



[gentoo-commits] repo/gentoo:master commit in: dev-python/google-auth/

2021-03-07 Thread Michał Górny
commit: 58726c1f1b8c4c653471d45af0f7978c21780cdc
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Mar  7 20:26:41 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Mar  7 22:38:36 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58726c1f

dev-python/google-auth: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/google-auth/Manifest  |  1 -
 dev-python/google-auth/google-auth-1.24.0.ebuild | 59 
 2 files changed, 60 deletions(-)

diff --git a/dev-python/google-auth/Manifest b/dev-python/google-auth/Manifest
index b384732763a..45a00c3f5d9 100644
--- a/dev-python/google-auth/Manifest
+++ b/dev-python/google-auth/Manifest
@@ -1,4 +1,3 @@
-DIST google-auth-1.24.0.tar.gz 120351 BLAKE2B 
b0a78ad87622bc806cce72847d5dad3844afe080ffbcd822575dab6208952806360bed4e8756133d5b4fe2755f6cbeeb239b8f51634dd3d4cede9346372b689a
 SHA512 
3e678dd946eb6c3c865cd35df1480a96ed35cf14b973f2239c5213b223a6569b4a9642609ac51243af75c662a08bbf0518d8592db97af297cf67c52b83019e30
 DIST google-auth-1.25.0.tar.gz 121940 BLAKE2B 
9c7346b134153321fe7116cc77bdcd0d07b2d4a5264d4a982f23a44458ba17c03ef8d204d2c6bd697561c11563bbff1d093ec4563700910ea3bbd9a063006005
 SHA512 
1c83f18904b646264263c8ba20c13bcc61572b9de397331564b1c2e65083a27e6393dd9435b03789136d2fc2b43750f784d21a3dc670a58cc4bade9de267f195
 DIST google-auth-1.26.1.tar.gz 121927 BLAKE2B 
a24a9c5bca8de234213e75673ba49ef6b82eb3c165f9c3af276b3c4cd47750c6d8a53e46084ae71c8eadf474ec8f53c6a2469fd91e7bdcc87f61bd46bbf9704d
 SHA512 
632cdada9975311ab079022da79334f69ae703183bef395c3b04fc86192c23032b9925259ade7c115883659b10a403661f2d9a39f3b5262b964d0b9f2947567f
 DIST google-auth-1.27.0.tar.gz 157225 BLAKE2B 
d3bf40dac2f72d5bafa318c4ec07588a250d4d778b2313c22ef5f43742939b023c864f465f543bf9e8ef6fd0251ba4642f78151df2534e82f2f2a60f5894e63c
 SHA512 
adadea669ddd18a345011602e9fd575fa7783aee0f786d6a42e97278e14a0acf721451d7171765c8aea4bfa5eaa63762f9f826a2d1d5f2c4ea6abbb7d7186ebb

diff --git a/dev-python/google-auth/google-auth-1.24.0.ebuild 
b/dev-python/google-auth/google-auth-1.24.0.ebuild
deleted file mode 100644
index 4686417faf3..000
--- a/dev-python/google-auth/google-auth-1.24.0.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7..9} )
-DISTUTILS_USE_SETUPTOOLS=rdepend
-
-inherit distutils-r1
-
-DESCRIPTION="Google Authentication Library"
-HOMEPAGE="
-   https://github.com/googleapis/google-auth-library-python/
-   https://pypi.org/project/google-auth/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-   dev-python/namespace-google[${PYTHON_USEDEP}]
-   >=dev-python/pyasn1-0.1.7[${PYTHON_USEDEP}]
-   >=dev-python/pyasn1-modules-0.2.1[${PYTHON_USEDEP}]
-   >=dev-python/rsa-3.1.4[${PYTHON_USEDEP}]
-   >=dev-python/six-1.9.0[${PYTHON_USEDEP}]
-   >=dev-python/cachetools-2.0.0[${PYTHON_USEDEP}]
-   "
-DEPEND="${RDEPEND}
-   test? (
-   dev-python/cryptography[${PYTHON_USEDEP}]
-   dev-python/flask[${PYTHON_USEDEP}]
-   dev-python/freezegun[${PYTHON_USEDEP}]
-   dev-python/grpcio[${PYTHON_USEDEP}]
-   dev-python/mock[${PYTHON_USEDEP}]
-   dev-python/moto[${PYTHON_USEDEP}]
-   dev-python/oauth2client[${PYTHON_USEDEP}]
-   dev-python/pyopenssl[${PYTHON_USEDEP}]
-   dev-python/pytest-localserver[${PYTHON_USEDEP}]
-   dev-python/pytest[${PYTHON_USEDEP}]
-   dev-python/requests[${PYTHON_USEDEP}]
-   dev-python/responses[${PYTHON_USEDEP}]
-   dev-python/urllib3[${PYTHON_USEDEP}]
-   )"
-
-distutils_enable_tests pytest
-
-src_prepare() {
-   # delete stray files included in the tarball
-   find "${S}"/tests -name '*.pyc' -delete || die
-   distutils-r1_src_prepare
-}
-
-python_install_all() {
-   distutils-r1_python_install_all
-   find "${ED}" -name '*.pth' -delete || die
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/python-utils/

2021-03-07 Thread Michał Górny
commit: a6746a999dd26130878dfe452190d22e2937abf2
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Mar  7 20:27:59 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Mar  7 22:38:41 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6746a99

dev-python/python-utils: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/python-utils/Manifest  |  1 -
 dev-python/python-utils/python-utils-2.5.3.ebuild | 24 ---
 2 files changed, 25 deletions(-)

diff --git a/dev-python/python-utils/Manifest b/dev-python/python-utils/Manifest
index 1a11083d754..e379fe32efa 100644
--- a/dev-python/python-utils/Manifest
+++ b/dev-python/python-utils/Manifest
@@ -1,2 +1 @@
-DIST python-utils-2.5.3.tar.gz 49110 BLAKE2B 
13b6a20278c73acc1e52c12dff3833b1dc6ebe6c1373ab5b972300d778bb4f110af79333dddc805b29a7d34265973ebf0136a607b82880b5c43c4c4d0c9f391c
 SHA512 
7e0a584a80ce5eca654eca5335080b98b21bed11bcef7d238639d07e386f58d44a00765133b487dc5492cb35a221bc9e8042513099ee3b49177c77334129c8bd
 DIST python-utils-2.5.6.tar.gz 14057 BLAKE2B 
2f66ab26cd6cda25f73c9f40081048404cde819e3e3c2fd11d134244ab2b80a05ab2b943e56a45bd8656bf3ba231853e3bfa9efbab9cb70515daaec70f6e0715
 SHA512 
35299880afdecd4a44144b95e6b2073e51680dfd2b00f31fb333d578cfa2c2f8bf5f58128cab88a7b81e658e6d5dca303f1c9f5be3870160679e1defbf94859e

diff --git a/dev-python/python-utils/python-utils-2.5.3.ebuild 
b/dev-python/python-utils/python-utils-2.5.3.ebuild
deleted file mode 100644
index 3fddaf420a5..000
--- a/dev-python/python-utils/python-utils-2.5.3.ebuild
+++ /dev/null
@@ -1,24 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python3_{7..9} pypy3)
-
-inherit distutils-r1
-
-DESCRIPTION="Collection of small Python functions & classes"
-HOMEPAGE="https://pypi.org/project/python-utils/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64"
-
-RDEPEND="dev-python/six[${PYTHON_USEDEP}]"
-
-distutils_enable_tests pytest
-
-python_prepare_all() {
-   sed -i -e '/--cov/d' -e '/--flake8/d' pytest.ini || die
-   distutils-r1_python_prepare_all
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/dask/

2021-03-07 Thread Michał Górny
commit: 7734ea440be3c4ec54a5804aa89ad507b4ecf4e1
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Mar  7 20:28:34 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Mar  7 22:38:43 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7734ea44

dev-python/dask: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/dask/Manifest |  1 -
 dev-python/dask/dask-2021.1.1.ebuild | 41 
 2 files changed, 42 deletions(-)

diff --git a/dev-python/dask/Manifest b/dev-python/dask/Manifest
index dd0646237c9..7b5ddfbf929 100644
--- a/dev-python/dask/Manifest
+++ b/dev-python/dask/Manifest
@@ -1,3 +1,2 @@
-DIST dask-2021.1.1.tar.gz 3637063 BLAKE2B 
6b2ec67f5551c4bba0fde8cecf02de6f24bbcd126a22c56c75e41a645a31f0fd7ba81aa8e5167f495122ca96e2113fa4893851eac382df1ccfaa8bf1be576ed3
 SHA512 
d1d093af6389b9e02e6040ef66159a4696c2dd91e12190cf9efc25ad5a0f790e3da9ada64a8a5e1cfceab7452957a503c6c303d3e2248e05ebac168a0f7c52f1
 DIST dask-2021.2.0.tar.gz 3643277 BLAKE2B 
d34f706cefd068e42b32c84b05a46c24c98ba8391358140e2a7d2325d3a18cd855fbe9174ac8b8541e8274b83621fcb5c299d70fa5e2bcfe11214a2a32a82ce5
 SHA512 
da8baaa7cd211eb3ff123127aa9f599337c3af52f06e9a35331397ab580500dda7135addbfe27815a2b14957f7852d9c22a21b1d220af28c8561edaaabdf2e34
 DIST dask-2021.3.0.tar.gz 3672035 BLAKE2B 
17b3e808603b8524e96273ad33b69689605707a1c187b32c8ed67f054e7f242525365956800017ad5685e0c306dcd21bcfb3dbb3f9920446f03553ceb0fdd9a8
 SHA512 
ba5b62dd51dad29a106a4fe38a5015f7e1d7ad11eaa21a524b7c8b7d916873b9e447d065c9009e8100662aa3b1f64718b164369f173fc84f5f085a1e369e091a

diff --git a/dev-python/dask/dask-2021.1.1.ebuild 
b/dev-python/dask/dask-2021.1.1.ebuild
deleted file mode 100644
index bf04a92fdf3..000
--- a/dev-python/dask/dask-2021.1.1.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python3_{7..9} )
-
-inherit distutils-r1
-
-DESCRIPTION="Task scheduling and blocked algorithms for parallel processing"
-HOMEPAGE="https://dask.org/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 x86 ~amd64-linux ~x86-linux"
-
-RDEPEND="
-   >=dev-python/cloudpickle-0.2.2[${PYTHON_USEDEP}]
-   >=dev-python/fsspec-0.6.0[${PYTHON_USEDEP}]
-   >=dev-python/numpy-1.15.1[${PYTHON_USEDEP}]
-   >=dev-python/pandas-0.25.0[${PYTHON_USEDEP}]
-   >=dev-python/partd-0.3.10[${PYTHON_USEDEP}]
-   dev-python/psutil[${PYTHON_USEDEP}]
-   dev-python/pyyaml[${PYTHON_USEDEP}]
-   >=dev-python/toolz-0.8.2[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   dev-python/toolz[${PYTHON_USEDEP}]
-   test? (
-   dev-python/moto[${PYTHON_USEDEP}]
-   dev-python/numexpr[${PYTHON_USEDEP}]
-   dev-python/scipy[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-python_test() {
-   pytest -vv -m "not network" ||
-   die "Tests failed with ${EPYTHON}"
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/alembic/

2021-03-07 Thread Michał Górny
commit: 51f5ddc730d5a1ab2df61bb1c6d439dcc431ff61
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Mar  7 20:28:23 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Mar  7 22:38:42 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51f5ddc7

dev-python/alembic: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/alembic/Manifest |  1 -
 dev-python/alembic/alembic-1.5.1.ebuild | 33 -
 2 files changed, 34 deletions(-)

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index 3b5ad8299c6..3b7b9645cec 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -1,4 +1,3 @@
-DIST alembic-1.5.1.tar.gz 1128404 BLAKE2B 
70a2ce16adcf317c9376f77d8fa88e9eef3aa4090de5f933187f47df9fe6ac40a25df75d6c74c50c3be23dd3cef13d465eb2ddae4ea83558d01ebffd8effe241
 SHA512 
2fe490c46c25312f0496fe28b59956efc78924f145b69ba95e5cb1cc091a72047c1aa5f8a85924ec59ad0aba2bfa143b9cad475dedc6f849c38695c08601
 DIST alembic-1.5.4.tar.gz 1133598 BLAKE2B 
88e1f40ef1935b90de789f1adc99edb5fc580c96a3e86a672cc9cfd694e79e940ba696efe560db3bf2878420a168382ed4342cbf1b8c7b9bbbf084532b8da402
 SHA512 
190f8fe96f18541fd62802e026e93c332f6046618cb89d4f9a6b478505742671d363de1161feeccd8873036a458743165080b5a0e2e55e1d0dd81e617c8cd4ad
 DIST alembic-1.5.5.tar.gz 1150308 BLAKE2B 
33db8a0ea00802b37d3e24ca43232a993bfc333e232fa08b8dd0560dfec5f18f4fa82bcc3c34a776c88c8fc8d3645c4501a9dde8e4e5411bc255eb654183d01a
 SHA512 
a4078c66bbe1627620224f965b879c46453bc74e6a2a902619df28912f55b27f086cba68f08bc8c0a37bd221ac16e195f7f905379fd5d191854adb7f90f86530
 DIST alembic-1.5.6.tar.gz 1153606 BLAKE2B 
ef790285975101f5f17a629c812ef56053dcd2878a02a54d6c79aebd9b97e1d253dc63e98e99eb1074ab85ac0f0483c7e0d993920f120373dd40d6dfc2c6
 SHA512 
95b57dd920fb36e36b7c249d369b1835492f8e4b74086d39f1100590c827b76b49a1aede1d484cfb1f600662bfb99d38ddead468ec8ffb92e8110d8c3523e23d

diff --git a/dev-python/alembic/alembic-1.5.1.ebuild 
b/dev-python/alembic/alembic-1.5.1.ebuild
deleted file mode 100644
index b0a59134f8e..000
--- a/dev-python/alembic/alembic-1.5.1.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( pypy3 python3_{7..9} )
-DISTUTILS_USE_SETUPTOOLS=rdepend
-
-inherit distutils-r1
-
-DESCRIPTION="database migrations tool, written by the author of SQLAlchemy"
-HOMEPAGE="https://github.com/sqlalchemy/alembic;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-IUSE="doc"
-
-RDEPEND="
-   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
-   dev-python/mako[${PYTHON_USEDEP}]
-   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
-   dev-python/python-dateutil[${PYTHON_USEDEP}]
-"
-
-distutils_enable_tests pytest
-
-python_install_all() {
-   use doc && local HTML_DOCS=( docs/. )
-
-   distutils-r1_python_install_all
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/ipython/

2021-03-07 Thread Michał Górny
commit: 79f7b3bd1985000c5495f59d1be7dd5b2d9d8b15
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Mar  7 20:27:03 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Mar  7 22:38:38 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79f7b3bd

dev-python/ipython: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/ipython/Manifest |   1 -
 dev-python/ipython/ipython-7.19.0-r1.ebuild | 137 
 2 files changed, 138 deletions(-)

diff --git a/dev-python/ipython/Manifest b/dev-python/ipython/Manifest
index 606108cb1dc..6dba11f5a5e 100644
--- a/dev-python/ipython/Manifest
+++ b/dev-python/ipython/Manifest
@@ -1,3 +1,2 @@
-DIST ipython-7.19.0.tar.gz 5225775 BLAKE2B 
1909d8336e7fc90959da4ca33ad7edcb8c2dec0a5aa20ca6f643ef53482fe7bf0d52e2bbec7cf97e72a1fd4d37af45ba01166febb25f35b52d69ffc062f0f0e8
 SHA512 
5350a125da3050acaea4899939a3b9d779009a2f5769fc9f3aa514ce029df050069ef9310d3255ad62f28912b4dec39207267248d3a2c3e9131cffd691322622
 DIST ipython-7.20.0.tar.gz 5140776 BLAKE2B 
ec01caf874ab9c331eb1f074f9e70acb521fe6d4abe3e8f086d9e9e77cd710c3b0d88c6d7b071abc6962eee8141b65a012ec772cbec3450db25f086fc66cf1c6
 SHA512 
2fff1a64c3d83e794e76bcbdf54e105f499321d9a7e5d3221cdc3e15a96e90543fd465b8dbee4836965286e7c1f1ea6d13e4d3d88c095164858bf71c16fe
 DIST ipython-7.21.0.tar.gz 5141725 BLAKE2B 
dae44d481e959ef7d002bdb51d0ab1e2f3eca3449071a2e4161aa735c06fef8a948d80bafd3f2bdd066208437b5ed36615cad5885af453771a32a313fba907eb
 SHA512 
200e41d4e06343b6320f3d106925f6c995f39cf88d01250f53885d4e94d0fd9454a6be4cd7c69410f7dced94b05634f6d2269f9737cc563accf85206d4d7fff8

diff --git a/dev-python/ipython/ipython-7.19.0-r1.ebuild 
b/dev-python/ipython/ipython-7.19.0-r1.ebuild
deleted file mode 100644
index 34f777debd5..000
--- a/dev-python/ipython/ipython-7.19.0-r1.ebuild
+++ /dev/null
@@ -1,137 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DISTUTILS_USE_SETUPTOOLS=no
-PYTHON_COMPAT=( python3_{7..9} )
-PYTHON_REQ_USE='readline,sqlite,threads(+)'
-
-inherit distutils-r1 optfeature virtualx
-
-DESCRIPTION="Advanced interactive shell for Python"
-HOMEPAGE="https://ipython.org/ https://github.com/ipython/ipython/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~ppc ppc64 x86 ~amd64-linux ~x86-linux"
-IUSE="doc examples matplotlib notebook nbconvert qt5 +smp test"
-RESTRICT="!test? ( test )"
-
-CDEPEND="
-   dev-python/backcall[${PYTHON_USEDEP}]
-   dev-python/decorator[${PYTHON_USEDEP}]
-   =dev-python/pexpect-4.3[${PYTHON_USEDEP}]
-   dev-python/pickleshare[${PYTHON_USEDEP}]
-   >=dev-python/prompt_toolkit-2[${PYTHON_USEDEP}]
-   /dev/null || die
-   "${TEST_DIR}"/scripts/iptest || die
-   popd >/dev/null || die
-}
-
-python_install() {
-   distutils-r1_python_install
-
-   # Create ipythonX.Y symlinks.
-   # TODO:
-   # 1. do we want them for pypy? No.  pypy has no numpy
-   # 2. handle it in the eclass instead (use _python_ln_rel).
-   # With pypy not an option the dosym becomes unconditional
-   dosym ../lib/python-exec/${EPYTHON}/ipython \
-   /usr/bin/ipython${EPYTHON#python}
-}
-
-python_install_all() {
-   distutils-r1_python_install_all
-
-   if use examples; then
-   dodoc -r examples
-   docompress -x /usr/share/doc/${PF}/examples
-   fi
-}
-
-pkg_postinst() {
-   optfeature "sympyprinting" dev-python/sympy
-   optfeature "cythonmagic" dev-python/cython
-   optfeature "%lprun magic command" dev-python/line_profiler
-   optfeature "%mprun magic command" dev-python/memory_profiler
-
-   if use nbconvert; then
-   if ! has_version app-text/pandoc ; then
-   einfo "Node.js will be used to convert notebooks to 
other formats"
-   einfo "like HTML. Support for that is still 
experimental. If you"
-   einfo "encounter any problems, please use 
app-text/pandoc instead."
-   fi
-   fi
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/markups/

2021-03-07 Thread Michał Górny
commit: e51d5699c5a6ca543b281d03d5c01fbecc213e9b
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Mar  7 20:27:32 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Mar  7 22:38:39 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e51d5699

dev-python/markups: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/markups/Manifest|  1 -
 dev-python/markups/markups-3.0.0-r1.ebuild | 42 --
 2 files changed, 43 deletions(-)

diff --git a/dev-python/markups/Manifest b/dev-python/markups/Manifest
index d6bd6375cbf..185cde32c6c 100644
--- a/dev-python/markups/Manifest
+++ b/dev-python/markups/Manifest
@@ -1,3 +1,2 @@
-DIST Markups-3.0.0.tar.gz 16966 BLAKE2B 
9245b1b0056bda9538fabf8540ddc41f2861a41c2ea42f29da195393bb85a63af1273109cb8f3d15ee4b257774512e3002d95948bab4a4493d89e18d687f19ce
 SHA512 
3dfb97f29e801fa296e7ea22f2693d05fe9a9bfdf6c9b560cf6a44d04abfb6c2ac0717093732b6fbd9ea052ab9f8d054b3aae10a0c16516af3815ca1d720aef5
 DIST Markups-3.1.0.tar.gz 20146 BLAKE2B 
426c6f050868e423eeb7f01cee930b088c4b6f7748b7f198f03880cb7d6cc237575c6253d40631aad1601e193ff0e2b587906492c07b953903ee12422e06cb3c
 SHA512 
eaf99b8f521dc93008e0e2519e5c6e8885609457739378d5af6e3aa044a9dd1370bf906a061d8a284d8ad4f9c5196c01a6d8dde3a4630898fe4711154cef7ce0
 DIST Markups-3.1.1.tar.gz 20482 BLAKE2B 
26fb19e11aaede8eeadc5a3022785dd3663e7002c5fc4b17c3718d68bda55a9cba07fc1c83a78ca4dee06b4e911b74701fe11865e8933a9d385d032fac00eb0d
 SHA512 
9e8e7b3cc86127fed0367faf257d761e0eae4ca5e11a9ddc8e99b2fc88c76ddb218ee371added56e2c19f5772754adc4c01a09503c308220f6a9d35e736220d7

diff --git a/dev-python/markups/markups-3.0.0-r1.ebuild 
b/dev-python/markups/markups-3.0.0-r1.ebuild
deleted file mode 100644
index 7910938c8a9..000
--- a/dev-python/markups/markups-3.0.0-r1.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7,8,9} )
-DISTUTILS_USE_SETUPTOOLS=rdepend
-
-inherit distutils-r1
-
-MY_P=${P^}
-
-DESCRIPTION="A wrapper around various text markups"
-HOMEPAGE="
-   https://pymarkups.readthedocs.io/en/latest/
-   https://github.com/retext-project/pymarkups
-   https://pypi.org/project/Markups/
-"
-SRC_URI="mirror://pypi/${MY_P:0:1}/${PN^}/${MY_P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-   dev-python/markdown[${PYTHON_USEDEP}]
-   dev-python/python-markdown-math[${PYTHON_USEDEP}]
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
-   test? (
-   app-text/pytextile[${PYTHON_USEDEP}]
-   dev-python/docutils[${PYTHON_USEDEP}]
-   dev-python/pygments[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests unittest
-
-S="${WORKDIR}/${MY_P}"



[gentoo-commits] repo/gentoo:master commit in: sys-block/parted/

2021-03-07 Thread Michał Górny
commit: e29d996c9b991d80287b0415c334b9646cc5bd10
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Mar  7 20:21:02 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Mar  7 22:38:25 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e29d996c

sys-block/parted: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 sys-block/parted/Manifest |  1 -
 sys-block/parted/parted-3.3-r2.ebuild | 63 ---
 2 files changed, 64 deletions(-)

diff --git a/sys-block/parted/Manifest b/sys-block/parted/Manifest
index 1cef4cfba32..3e081f59643 100644
--- a/sys-block/parted/Manifest
+++ b/sys-block/parted/Manifest
@@ -1,3 +1,2 @@
-DIST parted-3.3.tar.xz 1757432 BLAKE2B 
d1e248cd8fdce22d4957055d65f9f9505229f92174f343897422a31a43f3d35ea06f8f1bdafd254e4629c5890ec38d6b75d3b499c39a9ada4a8d5f9d9d8f
 SHA512 
d1384694a491aa53bab6206fdeccd1d192de2ed379fe25aa865dd6aa06ed945a728e85b2ccc2fb23f5aa9dfee4a8bd8f0f2be1dd386cb8e8861b73382c6a07e4
 DIST parted-3.4.tar.xz 1860300 BLAKE2B 
c724d3d1490c62d440b9e5dc359fef7ff623bc77ae5f867d8905245cb279ec391fa07a1a774488ad3bf7a2c477007264d7bab2635a544be8f94dc706a654a711
 SHA512 
e69bd1b610778e980d4595d04892f2ea1faf4ae9bfc98cd62abfc70066423f08ddaa396f9461c7beb1330d023232274606b6b26091a0458aeedd0f3f57536690
 DIST parted-3.4.tar.xz.sig 508 BLAKE2B 
112ad0158b1100bd9150a7c87e8f93e67d42870b82a17d4d0aa8bb5e46306f837f3f99feabaf301f8cd640c299174e5f5acf152dd1f20ea2b7ace73d57d31f14
 SHA512 
6b11812267e66470ba2908ee1cc78b232b0bc2519787f5a17b92cd5f8ba904b1a836833f19c5244b23d4c7810437eeb26fbbd68fac819391b342709682345472

diff --git a/sys-block/parted/parted-3.3-r2.ebuild 
b/sys-block/parted/parted-3.3-r2.ebuild
deleted file mode 100644
index 92e75e2681b..000
--- a/sys-block/parted/parted-3.3-r2.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit flag-o-matic
-
-DESCRIPTION="Create, destroy, resize, check, copy partitions and file systems"
-HOMEPAGE="https://www.gnu.org/software/parted;
-SRC_URI="mirror://gnu/${PN}/${P}.tar.xz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86"
-IUSE="+debug device-mapper nls readline selinux"
-
-RDEPEND="
-   >=sys-fs/e2fsprogs-1.27
-   device-mapper? ( >=sys-fs/lvm2-2.02.45 )
-   readline? (
-   >=sys-libs/ncurses-5.7-r7:0=
-   >=sys-libs/readline-5.2:0=
-   )
-   selinux? ( sys-libs/libselinux )
-   elibc_uclibc? ( dev-libs/libiconv )
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
-   nls? ( >=sys-devel/gettext-0.12.1-r2 )
-   virtual/pkgconfig
-"
-PATCHES=(
-   "${FILESDIR}"/${PN}-3.2-po4a-mandir.patch
-   "${FILESDIR}"/${PN}-3.3-atari.patch
-)
-
-src_prepare() {
-   default
-   touch doc/pt_BR/Makefile.in || die
-}
-
-src_configure() {
-   use elibc_uclibc && append-libs -liconv
-   local myconf=(
-   $(use_enable debug)
-   $(use_enable device-mapper)
-   $(use_enable nls)
-   $(use_enable selinux)
-   $(use_with readline)
-   --disable-rpath
-   --disable-static
-   )
-   econf "${myconf[@]}"
-}
-
-DOCS=(
-   AUTHORS BUGS ChangeLog NEWS README THANKS TODO doc/{API,FAT,USER.jp}
-)
-
-src_install() {
-   default
-   find "${ED}" -type f -name '*.la' -delete || die
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/cmd2/

2021-03-07 Thread Michał Górny
commit: e4a6d21dfc1fbb547017b63c51dd455b412a47ca
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Mar  7 20:21:18 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Mar  7 22:38:26 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4a6d21d

dev-python/cmd2: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cmd2/Manifest  |  1 -
 dev-python/cmd2/cmd2-1.4.0.ebuild | 55 ---
 2 files changed, 56 deletions(-)

diff --git a/dev-python/cmd2/Manifest b/dev-python/cmd2/Manifest
index 479b36671f1..e2cb8ff1b9d 100644
--- a/dev-python/cmd2/Manifest
+++ b/dev-python/cmd2/Manifest
@@ -1,2 +1 @@
-DIST cmd2-1.4.0.tar.gz 660494 BLAKE2B 
1a7d5efef704cf3011affa99303233ad9d16e09d16bbe9319324599e6d69b1a664556e9ed406f2a34bfc6021a6d1607a44fd4df9cedbd6688826e0bfe8d91b77
 SHA512 
1f35e9773578a1d2ea1255cd697754b126c1e90486e84319c0f86ee409ed22bfbc267ff1d3b9af1072985337c9cbc51eac4e288281146d9c20b54c8b364f1547
 DIST cmd2-1.5.0.tar.gz 662624 BLAKE2B 
ed46c4e70f1e09c612f66333bb601afab0158a899badd2b86ce193f7384c35d32c58d0a1238d5fc2b69adc11a233fba2089b0f4433c7b6159aeb347150128fb2
 SHA512 
ea7e26370e1f83dc95bd0db8a705ab8ea95935584123f4684e3b8debf23a37fbcadf2bc1634051eaddcaba92f2b22a0ab2582773630fab3d1482b4dc8a23acd6

diff --git a/dev-python/cmd2/cmd2-1.4.0.ebuild 
b/dev-python/cmd2/cmd2-1.4.0.ebuild
deleted file mode 100644
index 02b1add3de6..000
--- a/dev-python/cmd2/cmd2-1.4.0.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python3_{7..9} )
-
-inherit distutils-r1 virtualx
-
-DESCRIPTION="Extra features for standard library's cmd module"
-HOMEPAGE="https://github.com/python-cmd2/cmd2;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~ppc64 sparc x86 ~amd64-linux 
~x86-linux"
-
-RDEPEND="
-   dev-python/attrs[${PYTHON_USEDEP}]
-   >=dev-python/colorama-0.3.7[${PYTHON_USEDEP}]
-   >=dev-python/pyperclip-1.6[${PYTHON_USEDEP}]
-   dev-python/six[${PYTHON_USEDEP}]
-   dev-python/wcwidth[${PYTHON_USEDEP}]
-   $(python_gen_cond_dep '
-   >=dev-python/importlib_metadata-1.6.0[${PYTHON_USEDEP}]
-   ' python3_{6,7})
-"
-# pyperclip uses clipboard backends in the following preference order:
-# pygtk, xclip, xsel, klipper, qtpy, pyqt5, pyqt4.
-# klipper is known to be broken in Xvfb, and therefore causes test
-# failures.  to avoid them, we must ensure that one of the backends
-# preferred to it is available (i.e. xclip or xsel) + which(1).
-BDEPEND="
-   dev-python/setuptools_scm[${PYTHON_USEDEP}]
-   test? (
-   dev-python/pytest-mock[${PYTHON_USEDEP}]
-   sys-apps/which
-   || (
-   x11-misc/xclip
-   x11-misc/xsel
-   )
-   )
-"
-
-distutils_enable_tests pytest
-
-src_prepare() {
-   sed -i -e 's:test_which_editor_good:_&:' tests/test_cmd2.py || die
-   distutils-r1_src_prepare
-}
-
-src_test() {
-   # tests rely on very specific text wrapping...
-   local -x COLUMNS=80
-   virtx distutils-r1_src_test
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/iso8601/

2021-03-07 Thread Michał Górny
commit: bab80347e26cd7f223af7172e9d0dfbf35f0fa8a
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Mar  7 20:21:31 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Mar  7 22:38:27 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bab80347

dev-python/iso8601: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/iso8601/Manifest  |  1 -
 dev-python/iso8601/iso8601-0.1.13.ebuild | 18 --
 2 files changed, 19 deletions(-)

diff --git a/dev-python/iso8601/Manifest b/dev-python/iso8601/Manifest
index 5ef7797b576..b35fc0810ef 100644
--- a/dev-python/iso8601/Manifest
+++ b/dev-python/iso8601/Manifest
@@ -1,2 +1 @@
-DIST iso8601-0.1.13.tar.gz 12205 BLAKE2B 
21dbc1f4212ec76bba2105e15eaeaac1a3bbac9f296e91e813efcb0811e75e45c4dcb5500bb29446e401c88035a602746ebe9394abc65b4d9637a12a2bf96a00
 SHA512 
0a16e2699ba3f33cec57acdd2be70c64d0e2655f08d30581f56997992945b700e6bfb14164f1f422e073eefeaefab4377a56ec6b3800156347e1568172c32737
 DIST iso8601-0.1.14.tar.gz 12722 BLAKE2B 
bbf56603d976d9f015ce04ed61c246b1b57e4edce1a912ac7ac5c932d122ca3855e917a7993b3e2d7ee6ba9ebbc9be6c554e69880abc30488698d8c354bf8ad4
 SHA512 
a461eb6cd011fed1ebec583b80ecf85b542c80dbdb4ad0213131febe0b58567bc0852283443c87923662b85e125ab66642b876b16ddfc3698445dd80e67e0720

diff --git a/dev-python/iso8601/iso8601-0.1.13.ebuild 
b/dev-python/iso8601/iso8601-0.1.13.ebuild
deleted file mode 100644
index 1cfde114660..000
--- a/dev-python/iso8601/iso8601-0.1.13.ebuild
+++ /dev/null
@@ -1,18 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7,8,9} pypy3 )
-
-inherit distutils-r1
-
-DESCRIPTION="Simple module to parse ISO 8601 dates"
-HOMEPAGE="https://pypi.org/project/iso8601/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~x64-solaris"
-
-distutils_enable_tests pytest



[gentoo-commits] repo/gentoo:master commit in: dev-python/tox/

2021-03-07 Thread Michał Górny
commit: 7653b5444539ce0dba8a04ba089e7d9039b8f8a2
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Mar  7 20:24:57 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Mar  7 22:38:31 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7653b544

dev-python/tox: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/tox/Manifest  |  1 -
 dev-python/tox/tox-3.21.2.ebuild | 76 
 2 files changed, 77 deletions(-)

diff --git a/dev-python/tox/Manifest b/dev-python/tox/Manifest
index 0549a62ffee..b7d9e290963 100644
--- a/dev-python/tox/Manifest
+++ b/dev-python/tox/Manifest
@@ -1,4 +1,3 @@
-DIST tox-3.21.2.tar.gz 301587 BLAKE2B 
81d19e45a1d53000a2e9f956ed7b934f0f1926b4270ddced997ddc8b77a1f05388e0907d379dbabaafd5e6fdcd7031d5e87f206fff385759318a89a5f3eebf58
 SHA512 
beb551f49af1f8661931f241cf73fa77a37a8061ade7d41b415a2fcecd4d5dd1ba7d3e3add248d3bc14627468fa896f3f4f532305bbc36d112d226b1961fd191
 DIST tox-3.21.4.tar.gz 301889 BLAKE2B 
166864fe9f44fe01d3b36481ba63738d4290bb609c6ea7e3dde3494ab7ba009c31b12c0801f5be9dfca6f56059f94438cfa31bc45dec862afda5bea763e37be0
 SHA512 
de12e8ba0f3287be2fced61573b3e2dfdf8513a947724982d0e17ff215489994985067692c94c499047a8b0e2dd843e214e958367199bfa6e0adcde4e09b8106
 DIST tox-3.22.0.tar.gz 302088 BLAKE2B 
f9ef6feb9fa438b668f6a1b6f8846845f1cfcb0826ffacc04c52dfe0a968a7df2542acc8f4a1e69c634a7866672dbb78ab8f04ba7d6e94f88b40f6c3dd042571
 SHA512 
d96c31c9faa4d76a6181ce332e70ec9ccfb0a6b96feff45793393f3fd2d08668fc6f14da9164947c4b93f371fab3b9d23c87b38dac89ece18e87494ac3a7caac
 DIST tox-3.23.0.tar.gz 303091 BLAKE2B 
609e74ea354ca5daf45c848000961782fcef59da07f815292355d72f3e5dd078e3b5909a65521a4a1032fa2bb9481fdab0e620f4882b33aa377de9764296761c
 SHA512 
fb96cbbdbd36399036d348716f1181285184985922e0dc61b610b36e53ea79e2d8a77190aad893650bcba86ef4c57ff0f2de2813becb2a12fe0d1aa36bb27ad3

diff --git a/dev-python/tox/tox-3.21.2.ebuild b/dev-python/tox/tox-3.21.2.ebuild
deleted file mode 100644
index 78e1824c951..000
--- a/dev-python/tox/tox-3.21.2.ebuild
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DISTUTILS_USE_SETUPTOOLS=rdepend
-PYTHON_COMPAT=( python3_{7..9} pypy3 )
-
-inherit distutils-r1
-
-DESCRIPTION="virtualenv-based automation of test activities"
-HOMEPAGE="https://tox.readthedocs.io https://github.com/tox-dev/tox 
https://pypi.org/project/tox/;
-SRC_URI="https://github.com/tox-dev/tox/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~ia64 ppc ppc64 sparc x86"
-# doc disabled because of missing deps in tree
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-   dev-python/filelock[${PYTHON_USEDEP}]
-   $(python_gen_cond_dep '
-   >=dev-python/importlib_metadata-1.1[${PYTHON_USEDEP}]
-   ' python3_{5,6,7} pypy3)
-   dev-python/packaging[${PYTHON_USEDEP}]
-   >=dev-python/pluggy-0.12[${PYTHON_USEDEP}]
-   dev-python/pip[${PYTHON_USEDEP}]
-   dev-python/py[${PYTHON_USEDEP}]
-   >=dev-python/six-1.14[${PYTHON_USEDEP}]
-   dev-python/toml[${PYTHON_USEDEP}]
-   >=dev-python/virtualenv-16.0.0[${PYTHON_USEDEP}]"
-# TODO: figure out how to make tests work without the package being
-# installed first.
-BDEPEND="
-   dev-python/setuptools_scm[${PYTHON_USEDEP}]
-   test? (
-   ${RDEPEND}
-   >=dev-python/flaky-3.4.0[${PYTHON_USEDEP}]
-   >=dev-python/freezegun-0.3.11[${PYTHON_USEDEP}]
-   >=dev-python/pytest-4.0.0[${PYTHON_USEDEP}]
-   dev-python/pytest-mock[${PYTHON_USEDEP}]
-   )"
-
-src_configure() {
-   export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
-}
-
-python_test() {
-   local deselect=(
-   # broken without Internet
-   
tests/unit/session/test_provision.py::test_provision_non_canonical_dep
-   
tests/integration/test_provision_int.py::test_provision_interrupt_child
-
-   # expects python2 to exist
-   
tests/unit/interpreters/test_interpreters.py::test_tox_get_python_executable
-
-   # broken without tox installed first
-   # TODO: figure out how to make importlib_metadata work
-   tests/unit/test_z_cmdline.py::test_tox_console_script
-   tests/unit/test_z_cmdline.py::test_tox_quickstart_script
-   )
-
-   [[ ${EPYTHON} != pypy3 ]] && deselect+=(
-   # TODO?
-   
tests/unit/interpreters/test_interpreters.py::test_find_alias_on_path
-
-   # broken without tox installed first
-   # TODO: why it can't import itself?
-   
tests/integration/test_parallel_interrupt.py::test_parallel_interrupt
-   )
-
-   distutils_install_for_testing --via-root
-   pytest -vv --no-network ${deselect[@]/#/--deselect } || die "Testsuite 
failed 

[gentoo-commits] repo/gentoo:master commit in: dev-python/fastjsonschema/

2021-03-07 Thread Michał Górny
commit: 2a993879a5c63fc87486bdc5ef1413934842e1bf
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Mar  7 20:25:26 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Mar  7 22:38:33 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a993879

dev-python/fastjsonschema: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/fastjsonschema/Manifest |  1 -
 .../fastjsonschema/fastjsonschema-2.14.5.ebuild| 26 --
 2 files changed, 27 deletions(-)

diff --git a/dev-python/fastjsonschema/Manifest 
b/dev-python/fastjsonschema/Manifest
index 8a68092dc88..2ee6693707d 100644
--- a/dev-python/fastjsonschema/Manifest
+++ b/dev-python/fastjsonschema/Manifest
@@ -1,2 +1 @@
-DIST python-fastjsonschema-2.14.5.tar.gz 33488 BLAKE2B 
4604ebd46851c8fe856909fa3943e053ac7359a9f360c189add2a46780fe045ca1952033174d008db7696bfc861a504c3aaa7389c33a2edbccd10cb14de8a097
 SHA512 
255db86d1d62845e512ca5669f3200360847d974710050ac53fe88536d6d9f943ccf41a8414702dad70fa1a38defe9859f2b608e13a54af11199c90d63cdf1d0
 DIST python-fastjsonschema-2.15.0.tar.gz 35225 BLAKE2B 
43b5dce109b0b25db4906b13223ede61b9f9eee9acb05b207d3cd11e0cc1d3740674c4e29709ce55dca8b4964643942be0959267d0228a71ff8fb535ccc5de17
 SHA512 
3323c085e79e1a465e807ef972ecd3f09811e232a36abc16d6b2e3e2ac5cc343edf2610e18d18b64fdd555d640c0ef1dd3417e268b5c62738f82680a404a300a

diff --git a/dev-python/fastjsonschema/fastjsonschema-2.14.5.ebuild 
b/dev-python/fastjsonschema/fastjsonschema-2.14.5.ebuild
deleted file mode 100644
index eb92e2dc92d..000
--- a/dev-python/fastjsonschema/fastjsonschema-2.14.5.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7..9} )
-inherit distutils-r1
-
-MY_P=python-${P}
-DESCRIPTION="Fast JSON schema validator for Python"
-HOMEPAGE="https://github.com/horejsek/python-fastjsonschema/;
-SRC_URI="
-   https://github.com/horejsek/python-fastjsonschema/archive/v${PV}.tar.gz
-   -> ${MY_P}.tar.gz"
-S=${WORKDIR}/${MY_P}
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 arm64 x86"
-
-distutils_enable_tests pytest
-
-src_prepare() {
-   distutils-r1_src_prepare
-   rm -r tests/benchmarks || die
-}



  1   2   3   4   5   >