[gentoo-commits] repo/gentoo:master commit in: dev-libs/capnproto/files/, dev-libs/capnproto/

2022-02-27 Thread Sam James
commit: 8e8b3e9588eacd192978599a5199fbb54071a53e
Author: Sam James  gentoo  org>
AuthorDate: Sun Feb 27 23:47:41 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Feb 27 23:47:41 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e8b3e95

dev-libs/capnproto: fix libatomic on PPC

Thanks to Arfrever; I skimmed the patch, thought it looked reasonable,
didn't notice the latter part was for CMake config file, not CMakeLists.txt.

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

 dev-libs/capnproto/capnproto-0.9.1.ebuild  | 10 ++--
 .../files/capnproto-0.9.1-libatomic.patch  | 59 --
 2 files changed, 5 insertions(+), 64 deletions(-)

diff --git a/dev-libs/capnproto/capnproto-0.9.1.ebuild 
b/dev-libs/capnproto/capnproto-0.9.1.ebuild
index d3be55f08340..69ef73c4bba3 100644
--- a/dev-libs/capnproto/capnproto-0.9.1.ebuild
+++ b/dev-libs/capnproto/capnproto-0.9.1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-inherit cmake
+inherit cmake flag-o-matic
 
 DESCRIPTION="RPC/Serialization system with capabilities support"
 HOMEPAGE="https://capnproto.org;
@@ -25,11 +25,11 @@ DEPEND="${RDEPEND}
test? ( dev-cpp/gtest )
 "
 
-PATCHES=(
-   "${FILESDIR}"/${PN}-0.9.1-libatomic.patch
-)
-
 src_configure() {
+   if use arm || use ppc || use mips || [[ ${CHOST} == *i486* ]] ; then
+   append-libs -latomic
+   fi
+
local mycmakeargs=(
-DWITH_OPENSSL=$(usex ssl)
-DBUILD_TESTING=$(usex test)

diff --git a/dev-libs/capnproto/files/capnproto-0.9.1-libatomic.patch 
b/dev-libs/capnproto/files/capnproto-0.9.1-libatomic.patch
deleted file mode 100644
index 654d3fc9873a..
--- a/dev-libs/capnproto/files/capnproto-0.9.1-libatomic.patch
+++ /dev/null
@@ -1,59 +0,0 @@
-https://bugs.gentoo.org/832816
-https://sources.debian.org/patches/capnproto/0.9.1-2/07_libatomic.patch/
-
-Description: link against libatomic
-Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1005066
 a/configure.ac
-+++ b/configure.ac
-@@ -16,6 +16,11 @@
- 
- AM_INIT_AUTOMAKE([tar-ustar])
- 
-+AC_ARG_WITH([libatomic],
-+  [AS_HELP_STRING([--with-libatomic],
-+[build by linking against libatomic @<:@default=check@:>@])],
-+  [],[with_libatomic=check])
-+
- AC_ARG_WITH([external-capnp],
-   [AS_HELP_STRING([--with-external-capnp],
- [use the system capnp binary (or the one specified with $CAPNP) instead 
of compiling a new
-@@ -195,8 +200,19 @@
- ])
- AM_CONDITIONAL([BUILD_KJ_TLS], [test "$with_openssl" != no])
- 
--# CapnProtoConfig.cmake.in needs this variable.
-+AS_IF([test "$with_libatomic" = check], [
-+  AC_SEARCH_LIBS([__atomic_load_8], [atomic], [with_libatomic=yes], 
[with_libatomic=no])
-+], [
-+  AS_IF([test "$with_libatomic" = yes], [
-+AC_SEARCH_LIBS([__atomic_load_8], [atomic], [:], [
-+  AC_MSG_ERROR([could not find libatomic])
-+])
-+  ])
-+])
-+
-+# CapnProtoConfig.cmake.in needs these variables.
- AC_SUBST(WITH_OPENSSL, $with_openssl)
-+AC_SUBST(WITH_LIBATOMIC, $with_libatomic)
- 
- AM_CONDITIONAL([HAS_FUZZING_ENGINE], [test "x$LIB_FUZZING_ENGINE" != "x"])
- 
 a/cmake/CapnProtoConfig.cmake.in
-+++ b/cmake/CapnProtoConfig.cmake.in
-@@ -62,6 +62,16 @@
-   endif()
- endif()
- 
-+if (@WITH_LIBATOMIC@)  # WITH_LIBATOMIC
-+  include(CheckLibraryExists)
-+  check_library_exists(atomic __atomic_load_8 "" FOUND_LIBATOMIC)
-+  if (FOUND_LIBATOMIC)
-+list(APPEND CMAKE_REQUIRED_LIBRARIES "atomic")
-+  else()
-+message(FATAL_ERROR "libatomic not found")
-+  endif()
-+endif()
-+
- include("${CMAKE_CURRENT_LIST_DIR}/CapnProtoTargets.cmake")
- include("${CMAKE_CURRENT_LIST_DIR}/CapnProtoMacros.cmake")
- 



[gentoo-commits] repo/gentoo:master commit in: www-misc/fcgiwrap/

2022-02-27 Thread Sam James
commit: 577a0f1552054711a19407b0b95170f57b958339
Author: Sam James  gentoo  org>
AuthorDate: Sun Feb 27 23:43:48 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Feb 27 23:43:48 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=577a0f15

www-misc/fcgiwrap: drop 1.1.0-r1

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

 www-misc/fcgiwrap/fcgiwrap-1.1.0-r1.ebuild | 58 --
 1 file changed, 58 deletions(-)

diff --git a/www-misc/fcgiwrap/fcgiwrap-1.1.0-r1.ebuild 
b/www-misc/fcgiwrap/fcgiwrap-1.1.0-r1.ebuild
deleted file mode 100644
index e30a45f61524..
--- a/www-misc/fcgiwrap/fcgiwrap-1.1.0-r1.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-[[ ${PV} = ** ]] && VCS_ECLASS="git-r3" || VCS_ECLASS=""
-inherit autotools systemd toolchain-funcs ${VCS_ECLASS}
-
-DESCRIPTION="Simple FastCGI wrapper for CGI scripts (CGI support for nginx)"
-HOMEPAGE="https://github.com/gnosek/fcgiwrap;
-
-LICENSE="BSD"
-SLOT="0"
-IUSE="systemd"
-
-if [[ ${PV} == ** ]]; then
-   EGIT_REPO_URI="https://github.com/gnosek/${PN}.git;
-else
-   SRC_URI="https://github.com/gnosek/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="amd64 ~arm x86"
-fi
-
-RDEPEND="
-   dev-libs/fcgi
-   systemd? ( sys-apps/systemd )
-"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig"
-
-DOCS=( README.rst )
-
-src_prepare() {
-   sed -e "s/-Werror//" \
-   -i configure.ac || die "sed failed"
-
-   sed -e '/man8dir = $(DESTDIR)/s/@prefix@//' \
-   -i Makefile.in || die "sed failed"
-
-   sed -e "s/libsystemd-daemon/libsystemd/" \
-   -i configure.ac || die "sed failed"
-   tc-export CC
-
-   # Fix systemd units for Gentoo
-   sed -i -e '/User/d' systemd/fcgiwrap.service || die
-   sed -i -e '/Group/d' systemd/fcgiwrap.service || die
-
-   eautoreconf
-}
-
-src_configure() {
-   econf \
-   $(use_with systemd) \
-   "$(systemd_with_unitdir)"
-}
-
-pkg_postinst() {
-   einfo 'You may want to install www-servers/spawn-fcgi to use with 
fcgiwrap.'
-}



[gentoo-commits] proj/kde:master commit in: kde-frameworks/kitemviews/, kde-frameworks/kwidgetsaddons/, ...

2022-02-27 Thread Andreas Sturmlechner
commit: 244deff579db93b23c3a21a9082d88294cebdfbd
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Feb 27 23:33:17 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 27 23:33:17 2022 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=244deff5

kde-frameworks: PythonModuleGeneration was dropped upstream

See also:
https://mail.kde.org/pipermail/distributions/2022-February/001148.html

Glad we never wasted time on this.

Bug: https://bugs.gentoo.org/746866
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 kde-frameworks/kauth/kauth-.ebuild   |  1 -
 kde-frameworks/kcodecs/kcodecs-.ebuild   |  7 ---
 kde-frameworks/kcompletion/kcompletion-.ebuild   | 12 ++--
 kde-frameworks/kconfig/kconfig-.ebuild   |  1 -
 kde-frameworks/kconfigwidgets/kconfigwidgets-.ebuild |  1 -
 kde-frameworks/kcoreaddons/kcoreaddons-.ebuild   |  1 -
 kde-frameworks/kdbusaddons/kdbusaddons-.ebuild   |  1 -
 kde-frameworks/kguiaddons/kguiaddons-.ebuild |  1 -
 kde-frameworks/ki18n/ki18n-.ebuild   |  1 -
 kde-frameworks/kitemmodels/kitemmodels-.ebuild   |  1 -
 kde-frameworks/kitemviews/kitemviews-.ebuild | 12 ++--
 kde-frameworks/kjobwidgets/kjobwidgets-.ebuild   |  1 -
 kde-frameworks/kwidgetsaddons/kwidgetsaddons-.ebuild | 12 ++--
 13 files changed, 6 insertions(+), 46 deletions(-)

diff --git a/kde-frameworks/kauth/kauth-.ebuild 
b/kde-frameworks/kauth/kauth-.ebuild
index 3a063f47fc..98f8fed890 100644
--- a/kde-frameworks/kauth/kauth-.ebuild
+++ b/kde-frameworks/kauth/kauth-.ebuild
@@ -28,7 +28,6 @@ PDEPEND="policykit? ( kde-plasma/polkit-kde-agent )"
 
 src_configure() {
local mycmakeargs=(
-   -DCMAKE_DISABLE_FIND_PACKAGE_PythonModuleGeneration=ON # bug 
746866
$(cmake_use_find_package policykit PolkitQt5-1)
)
 

diff --git a/kde-frameworks/kcodecs/kcodecs-.ebuild 
b/kde-frameworks/kcodecs/kcodecs-.ebuild
index 8cddcc784c..895396b6bb 100644
--- a/kde-frameworks/kcodecs/kcodecs-.ebuild
+++ b/kde-frameworks/kcodecs/kcodecs-.ebuild
@@ -15,10 +15,3 @@ BDEPEND="
dev-util/gperf
nls? ( >=dev-qt/linguist-tools-${QTMIN}:5 )
 "
-
-src_configure() {
-   local mycmakeargs=(
-   -DCMAKE_DISABLE_FIND_PACKAGE_PythonModuleGeneration=ON # bug 
746866
-   )
-   ecm_src_configure
-}

diff --git a/kde-frameworks/kcompletion/kcompletion-.ebuild 
b/kde-frameworks/kcompletion/kcompletion-.ebuild
index 599b20726d..2cd94ed5aa 100644
--- a/kde-frameworks/kcompletion/kcompletion-.ebuild
+++ b/kde-frameworks/kcompletion/kcompletion-.ebuild
@@ -10,13 +10,11 @@ VIRTUALX_REQUIRED="test"
 inherit ecm kde.org
 
 DESCRIPTION="Framework for common completion tasks such as filename or URL 
completion"
+
 LICENSE="LGPL-2+"
 KEYWORDS=""
 IUSE="nls"
 
-BDEPEND="
-   nls? ( >=dev-qt/linguist-tools-${QTMIN}:5 )
-"
 DEPEND="
>=dev-qt/qtgui-${QTMIN}:5
>=dev-qt/qtwidgets-${QTMIN}:5
@@ -24,10 +22,4 @@ DEPEND="
=kde-frameworks/kwidgetsaddons-${PVCUT}*:5
 "
 RDEPEND="${DEPEND}"
-
-src_configure() {
-   local mycmakeargs=(
-   -DCMAKE_DISABLE_FIND_PACKAGE_PythonModuleGeneration=ON # bug 
746866
-   )
-   ecm_src_configure
-}
+BDEPEND="nls? ( >=dev-qt/linguist-tools-${QTMIN}:5 )"

diff --git a/kde-frameworks/kconfig/kconfig-.ebuild 
b/kde-frameworks/kconfig/kconfig-.ebuild
index d2487c627a..3e09d5e4c5 100644
--- a/kde-frameworks/kconfig/kconfig-.ebuild
+++ b/kde-frameworks/kconfig/kconfig-.ebuild
@@ -33,7 +33,6 @@ DOCS=( DESIGN docs/{DESIGN.kconfig,options.md} )
 
 src_configure() {
local mycmakeargs=(
-   -DCMAKE_DISABLE_FIND_PACKAGE_PythonModuleGeneration=ON # bug 
746866
-DKCONFIG_USE_DBUS=$(usex dbus)
$(cmake_use_find_package qml Qt5Qml)
)

diff --git a/kde-frameworks/kconfigwidgets/kconfigwidgets-.ebuild 
b/kde-frameworks/kconfigwidgets/kconfigwidgets-.ebuild
index f15bbd8410..ed9898275b 100644
--- a/kde-frameworks/kconfigwidgets/kconfigwidgets-.ebuild
+++ b/kde-frameworks/kconfigwidgets/kconfigwidgets-.ebuild
@@ -33,7 +33,6 @@ RDEPEND="${DEPEND}"
 
 src_configure() {
local mycmakeargs=(
-   -DCMAKE_DISABLE_FIND_PACKAGE_PythonModuleGeneration=ON # bug 
746866
$(cmake_use_find_package man KF5DocTools)
)
 

diff --git a/kde-frameworks/kcoreaddons/kcoreaddons-.ebuild 
b/kde-frameworks/kcoreaddons/kcoreaddons-.ebuild
index 9cd45888d2..ea451f0dce 100644
--- a/kde-frameworks/kcoreaddons/kcoreaddons-.ebuild
+++ b/kde-frameworks/kcoreaddons/kcoreaddons-.ebuild
@@ -26,7 +26,6 @@ BDEPEND="
 src_configure() {
local mycmakeargs=(

[gentoo-commits] repo/gentoo:master commit in: dev-libs/capnproto/files/, dev-libs/capnproto/

2022-02-27 Thread Sam James
commit: adbf12388bbda19a3ad3911b7488c14d67b95df1
Author: Sam James  gentoo  org>
AuthorDate: Sun Feb 27 23:29:45 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Feb 27 23:29:55 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=adbf1238

dev-libs/capnproto: fix build on PPC (-latomic)

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

 dev-libs/capnproto/capnproto-0.9.1.ebuild  |  4 ++
 .../files/capnproto-0.9.1-libatomic.patch  | 59 ++
 2 files changed, 63 insertions(+)

diff --git a/dev-libs/capnproto/capnproto-0.9.1.ebuild 
b/dev-libs/capnproto/capnproto-0.9.1.ebuild
index ecd0a5027d58..d3be55f08340 100644
--- a/dev-libs/capnproto/capnproto-0.9.1.ebuild
+++ b/dev-libs/capnproto/capnproto-0.9.1.ebuild
@@ -25,6 +25,10 @@ DEPEND="${RDEPEND}
test? ( dev-cpp/gtest )
 "
 
+PATCHES=(
+   "${FILESDIR}"/${PN}-0.9.1-libatomic.patch
+)
+
 src_configure() {
local mycmakeargs=(
-DWITH_OPENSSL=$(usex ssl)

diff --git a/dev-libs/capnproto/files/capnproto-0.9.1-libatomic.patch 
b/dev-libs/capnproto/files/capnproto-0.9.1-libatomic.patch
new file mode 100644
index ..654d3fc9873a
--- /dev/null
+++ b/dev-libs/capnproto/files/capnproto-0.9.1-libatomic.patch
@@ -0,0 +1,59 @@
+https://bugs.gentoo.org/832816
+https://sources.debian.org/patches/capnproto/0.9.1-2/07_libatomic.patch/
+
+Description: link against libatomic
+Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1005066
+--- a/configure.ac
 b/configure.ac
+@@ -16,6 +16,11 @@
+ 
+ AM_INIT_AUTOMAKE([tar-ustar])
+ 
++AC_ARG_WITH([libatomic],
++  [AS_HELP_STRING([--with-libatomic],
++[build by linking against libatomic @<:@default=check@:>@])],
++  [],[with_libatomic=check])
++
+ AC_ARG_WITH([external-capnp],
+   [AS_HELP_STRING([--with-external-capnp],
+ [use the system capnp binary (or the one specified with $CAPNP) instead 
of compiling a new
+@@ -195,8 +200,19 @@
+ ])
+ AM_CONDITIONAL([BUILD_KJ_TLS], [test "$with_openssl" != no])
+ 
+-# CapnProtoConfig.cmake.in needs this variable.
++AS_IF([test "$with_libatomic" = check], [
++  AC_SEARCH_LIBS([__atomic_load_8], [atomic], [with_libatomic=yes], 
[with_libatomic=no])
++], [
++  AS_IF([test "$with_libatomic" = yes], [
++AC_SEARCH_LIBS([__atomic_load_8], [atomic], [:], [
++  AC_MSG_ERROR([could not find libatomic])
++])
++  ])
++])
++
++# CapnProtoConfig.cmake.in needs these variables.
+ AC_SUBST(WITH_OPENSSL, $with_openssl)
++AC_SUBST(WITH_LIBATOMIC, $with_libatomic)
+ 
+ AM_CONDITIONAL([HAS_FUZZING_ENGINE], [test "x$LIB_FUZZING_ENGINE" != "x"])
+ 
+--- a/cmake/CapnProtoConfig.cmake.in
 b/cmake/CapnProtoConfig.cmake.in
+@@ -62,6 +62,16 @@
+   endif()
+ endif()
+ 
++if (@WITH_LIBATOMIC@)  # WITH_LIBATOMIC
++  include(CheckLibraryExists)
++  check_library_exists(atomic __atomic_load_8 "" FOUND_LIBATOMIC)
++  if (FOUND_LIBATOMIC)
++list(APPEND CMAKE_REQUIRED_LIBRARIES "atomic")
++  else()
++message(FATAL_ERROR "libatomic not found")
++  endif()
++endif()
++
+ include("${CMAKE_CURRENT_LIST_DIR}/CapnProtoTargets.cmake")
+ include("${CMAKE_CURRENT_LIST_DIR}/CapnProtoMacros.cmake")
+ 



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

2022-02-27 Thread Mike Pagano
commit: 80b836ff0a9a24c1a63ab867af708467c15dea15
Author: Mike Pagano  gentoo  org>
AuthorDate: Sun Feb 27 23:27:21 2022 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Sun Feb 27 23:27:21 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80b836ff

Linux patch 5.17-rc6

Signed-off-by: Mike Pagano  gentoo.org>

 sys-kernel/git-sources/Manifest|  1 +
 sys-kernel/git-sources/git-sources-5.17_rc6.ebuild | 40 ++
 2 files changed, 41 insertions(+)

diff --git a/sys-kernel/git-sources/Manifest b/sys-kernel/git-sources/Manifest
index 2187a52576f4..4ac36f2d193b 100644
--- a/sys-kernel/git-sources/Manifest
+++ b/sys-kernel/git-sources/Manifest
@@ -4,3 +4,4 @@ DIST patch-5.17-rc2.patch 36928215 BLAKE2B 
3ae1f09eeb870fda422db561ca1adfd68c7ea
 DIST patch-5.17-rc3.patch 37376734 BLAKE2B 
40564254d729bdad9860b48a51657b6a3cef681b9f4add643d7a7e8bd80511cc3da9ec7257acd355a23cde8f1c8e51286560a168ad951100c9139057518d64f6
 SHA512 
d5c6444f73a1d0099ed9c3f1c35e7d0e6df487b9897d57b5f9d4d787df210dd8a2fb58c428a13844c5c846007fe5f349860503187690ed83f846b867377d5cf1
 DIST patch-5.17-rc4.patch 37600999 BLAKE2B 
f5839b3f9cf1c7ec4e49ae29d27525a9bce1f244fbfbd30b4b2f9b35761873e74d79a36e4ecb619ce91d04829164b8e347a3c23d66fbef677619f0f8e51498d2
 SHA512 
54a3e37bad6e223b09bebe97f5188cbbbc38ada271611d817aa2d033895c602bfb989fcd028004507a0ab5063af532d3f5a16424f574f24d78e6962eb460998c
 DIST patch-5.17-rc5.patch 37807134 BLAKE2B 
26624949169e5f64fd76394e9ef5850f0eb2d71acd562bc7e44db20e7ad3bd178747bfffa99c5d5c54c54c7ada563417e617a5d8e63b077e70b42effe2a825a3
 SHA512 
e0ce9cc3c1bd1584d59d747f6419c54654d9be0ced307f2328f04ca1684c74e32e38b3dbabc292fffef87ab1813e4e3e0321f3a1e2d971b4cac81577f07ac0f3
+DIST patch-5.17-rc6.patch 38063544 BLAKE2B 
7a57f1ae851fecfd89e2ad47e92b0c581ec166f42f3faec1986991d3629b7c48746c411b6b0f9cf2d1534c11a4d8560261cd236c8279561c6ee32030713c63f8
 SHA512 
f6c26d604db0db15678c866ad30d6d8b2ebd7fde66064e71d048080e20d26c4050a224d94917d5e1deff2a27c5607fc41440af6dbb3cc68d3043b3f8460b5f18

diff --git a/sys-kernel/git-sources/git-sources-5.17_rc6.ebuild 
b/sys-kernel/git-sources/git-sources-5.17_rc6.ebuild
new file mode 100644
index ..b7eedd7884ba
--- /dev/null
+++ b/sys-kernel/git-sources/git-sources-5.17_rc6.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="8"
+UNIPATCH_STRICTORDER="yes"
+K_NOUSENAME="yes"
+K_NOSETEXTRAVERSION="yes"
+K_NOUSEPR="yes"
+K_SECURITY_UNSUPPORTED="1"
+K_BASE_VER="5.16"
+K_EXP_GENPATCHES_NOUSE="1"
+K_FROM_GIT="yes"
+ETYPE="sources"
+CKV="${PVR/-r/-git}"
+
+# only use this if it's not an _rc/_pre release
+[ "${PV/_pre}" == "${PV}" ] && [ "${PV/_rc}" == "${PV}" ] && OKV="${PV}"
+inherit kernel-2
+detect_version
+
+DESCRIPTION="The very latest -git version of the Linux kernel"
+HOMEPAGE="https://www.kernel.org;
+SRC_URI="${KERNEL_URI}"
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86"
+IUSE=""
+
+K_EXTRAEINFO="This kernel is not supported by Gentoo due to its unstable and
+experimental nature. If you have any issues, try a matching vanilla-sources
+ebuild -- if the problem is not there, please contact the upstream kernel
+developers at https://bugzilla.kernel.org and on the linux-kernel mailing list 
to
+report the problem so it can be fixed in time for the next kernel release."
+
+RDEPEND=""
+DEPEND="${RDEPEND}
+   >=sys-devel/patch-2.7.6-r4"
+
+pkg_postinst() {
+   postinst_sources
+}



[gentoo-commits] proj/kde:master commit in: kde-plasma/oxygen-sounds/

2022-02-27 Thread Andreas Sturmlechner
commit: f83ce172626bbb9a18940e0601c0ca759f4c6aa5
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Fri Feb 18 22:38:12 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 27 23:20:49 2022 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=f83ce172

kde-plasma/oxygen-sounds: Update blocker

Will be released only with 5.25.

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

 kde-plasma/oxygen-sounds/oxygen-sounds-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-plasma/oxygen-sounds/oxygen-sounds-.ebuild 
b/kde-plasma/oxygen-sounds/oxygen-sounds-.ebuild
index 3adf816bbf..4527a4b94c 100644
--- a/kde-plasma/oxygen-sounds/oxygen-sounds-.ebuild
+++ b/kde-plasma/oxygen-sounds/oxygen-sounds-.ebuild
@@ -14,4 +14,4 @@ LICENSE="GPL-2+"
 SLOT="5"
 KEYWORDS=""
 
-RDEPEND="!

[gentoo-commits] proj/kde:master commit in: sets/

2022-02-27 Thread Andreas Sturmlechner
commit: 5c6d55005aac025bda3f38a7817f5e2447fc8ec3
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Jan  8 16:25:03 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 27 23:20:49 2022 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=5c6d5500

sets: Add kde-plasma/oxygen-sounds to kde-plasma-live

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 sets/kde-plasma-live | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sets/kde-plasma-live b/sets/kde-plasma-live
index 2b649e11c9..22e27280b4 100644
--- a/sets/kde-plasma-live
+++ b/sets/kde-plasma-live
@@ -29,6 +29,7 @@
 ~kde-plasma/libkworkspace-
 ~kde-plasma/milou-
 ~kde-plasma/oxygen-
+~kde-plasma/oxygen-sounds-
 ~kde-plasma/plasma-browser-integration-
 ~kde-plasma/plasma-desktop-
 ~kde-plasma/plasma-disks-



[gentoo-commits] proj/kde:master commit in: eclass/

2022-02-27 Thread Andreas Sturmlechner
commit: 591d8256b3a673470c98f96588dd4a0ef18b7c6c
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Jan  9 08:04:54 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 27 23:20:49 2022 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=591d8256

kde.org.eclass: Use KDE_ORG_NAME to determine fetch location

Makes much more sense here instead of PN, and avoids duplicating checks
for split packages.

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 eclass/kde.org.eclass | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/eclass/kde.org.eclass b/eclass/kde.org.eclass
index a803cab662..2ddde6a865 100644
--- a/eclass/kde.org.eclass
+++ b/eclass/kde.org.eclass
@@ -197,8 +197,7 @@ _kde.org_calculate_src_uri() {
case ${CATEGORY} in
kde-frameworks)
_src_uri+="stable/frameworks/$(ver_cut 1-2)/"
-   case ${PN} in
-   countryflags | \
+   case ${KDE_ORG_NAME} in
kdelibs4support | \
kdesignerplugin | \
kdewebkit | \



[gentoo-commits] proj/kde:master commit in: kde-apps/kalarm/files/, kde-apps/kalarm/

2022-02-27 Thread Andreas Sturmlechner
commit: 32a86d5ca4fe16e46a1acf2777bd16d5ea38557d
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Feb 27 23:19:37 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 27 23:20:49 2022 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=32a86d5c

kde-apps/kalarm: Add IUSE speech

Bug: https://bugs.gentoo.org/832776
Bug: https://bugs.gentoo.org/832845
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 .../files/kalarm-21.12.3-speech-optional.patch | 124 +
 kde-apps/kalarm/kalarm-21.12.49..ebuild|   6 +-
 kde-apps/kalarm/kalarm-.ebuild |   4 +-
 kde-apps/kalarm/metadata.xml   |   3 +
 4 files changed, 133 insertions(+), 4 deletions(-)

diff --git a/kde-apps/kalarm/files/kalarm-21.12.3-speech-optional.patch 
b/kde-apps/kalarm/files/kalarm-21.12.3-speech-optional.patch
new file mode 100644
index 00..ce4f45c376
--- /dev/null
+++ b/kde-apps/kalarm/files/kalarm-21.12.3-speech-optional.patch
@@ -0,0 +1,124 @@
+From 53a299c513c447afc57c7f520ac35aea2dffc277 Mon Sep 17 00:00:00 2001
+From: Laurent Montel 
+Date: Fri, 25 Feb 2022 07:29:19 +0100
+Subject: [PATCH] Make build without texttospeech support
+
+---
+ src/commandoptions.cpp   | 7 +++
+ src/messagedisplayhelper.cpp | 5 +
+ src/prefdlg.cpp  | 5 +
+ src/soundpicker.cpp  | 5 +
+ 4 files changed, 22 insertions(+)
+
+diff --git a/src/commandoptions.cpp b/src/commandoptions.cpp
+index a564fbb3..a6bbded1 100644
+--- a/src/commandoptions.cpp
 b/src/commandoptions.cpp
+@@ -14,7 +14,10 @@
+ #include "kalarm_debug.h"
+ 
+ #include 
++#include 
++#if KPIMTEXTEDIT_TEXT_TO_SPEECH
+ #include 
++#endif
+ #include 
+ 
+ #include 
+@@ -570,7 +573,11 @@ void CommandOptions::process()
+ {
+ if (mParser->isSet(*mOptions.at(BEEP)))
+ setErrorIncompatible(BEEP, SPEAK);
++#if KPIMTEXTEDIT_TEXT_TO_SPEECH
+ else if (!KPIMTextEdit::TextToSpeech::self()->isReady())
++#else
++else
++#endif
+ setError(xi18nc("@info:shell", "%1 
requires KAlarm to be compiled with QTextToSpeech support", optionName(SPEAK)));
+ }
+ const bool onceOnly = mParser->isSet(*mOptions.at(REMINDER_ONCE));
+diff --git a/src/messagedisplayhelper.cpp b/src/messagedisplayhelper.cpp
+index 0f6b9680..6e80e8ca 100644
+--- a/src/messagedisplayhelper.cpp
 b/src/messagedisplayhelper.cpp
+@@ -21,7 +21,10 @@
+ #include "lib/synchtimer.h"
+ #include "kalarm_debug.h"
+ 
++#include 
++#if KPIMTEXTEDIT_TEXT_TO_SPEECH
+ #include 
++#endif
+ 
+ #include 
+ #include 
+@@ -831,6 +834,7 @@ void MessageDisplayHelper::playAudio()
+ */
+ void MessageDisplayHelper::slotSpeak()
+ {
++#if KPIMTEXTEDIT_TEXT_TO_SPEECH
+ KPIMTextEdit::TextToSpeech* tts = KPIMTextEdit::TextToSpeech::self();
+ if (!tts->isReady())
+ {
+@@ -840,6 +844,7 @@ void MessageDisplayHelper::slotSpeak()
+ }
+ 
+ tts->say(mMessage);
++#endif
+ }
+ 
+ 
/**
+diff --git a/src/prefdlg.cpp b/src/prefdlg.cpp
+index ea32116e..d3cf48ae 100644
+--- a/src/prefdlg.cpp
 b/src/prefdlg.cpp
+@@ -48,7 +48,10 @@
+ #include 
+ using namespace KHolidays;
+ 
++#include 
++#if KPIMTEXTEDIT_TEXT_TO_SPEECH
+ #include 
++#endif
+ 
+ #include 
+ #include 
+@@ -1355,8 +1358,10 @@ EditPrefTab::EditPrefTab(StackedScrollGroup* 
scrollGroup)
+ mSound->addItem(SoundPicker::i18n_combo_None()); // index 0
+ mSound->addItem(SoundPicker::i18n_combo_Beep()); // index 1
+ mSound->addItem(SoundPicker::i18n_combo_File()); // index 2
++#if KPIMTEXTEDIT_TEXT_TO_SPEECH
+ if (KPIMTextEdit::TextToSpeech::self()->isReady())
+ mSound->addItem(SoundPicker::i18n_combo_Speak());  // index 3
++#endif
+ mSound->setMinimumSize(mSound->sizeHint());
+ 
mSound->setWhatsThis(defsetting.subs(SoundPicker::i18n_label_Sound()).toString());
+ hlayout->addWidget(mSound);
+diff --git a/src/soundpicker.cpp b/src/soundpicker.cpp
+index 426baf96..f85071ea 100644
+--- a/src/soundpicker.cpp
 b/src/soundpicker.cpp
+@@ -16,7 +16,10 @@
+ #include "lib/pushbutton.h"
+ #include "kalarm_debug.h"
+ 
++#include 
++#if KPIMTEXTEDIT_TEXT_TO_SPEECH
+ #include 
++#endif
+ 
+ #include 
+ #include 
+@@ -130,7 +133,9 @@ void SoundPicker::showFile(bool show)
+ */
+ void SoundPicker::showSpeak(bool show)
+ {
++#if KPIMTEXTEDIT_TEXT_TO_SPEECH
+ if (!KPIMTextEdit::TextToSpeech::self()->isReady())
++#endif
+ show = false;// speech capability is not installed or configured
+ if (show != mSpeakShowing)
+ {
+-- 
+GitLab
+

diff --git a/kde-apps/kalarm/kalarm-21.12.49..ebuild 
b/kde-apps/kalarm/kalarm-21.12.49..ebuild
index 8ff08c36c0..96894ed98f 100644
--- a/kde-apps/kalarm/kalarm-21.12.49..ebuild
+++ 

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

2022-02-27 Thread Sam James
commit: 11e6c664897b8a4304fd075280a54b61fc09b34e
Author: Sam James  gentoo  org>
AuthorDate: Sun Feb 27 23:16:22 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Feb 27 23:16:22 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11e6c664

app-text/antiword: drop 0.37-r1

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

 app-text/antiword/antiword-0.37-r1.ebuild | 50 ---
 1 file changed, 50 deletions(-)

diff --git a/app-text/antiword/antiword-0.37-r1.ebuild 
b/app-text/antiword/antiword-0.37-r1.ebuild
deleted file mode 100644
index b9ae5e10151d..
--- a/app-text/antiword/antiword-0.37-r1.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-inherit epatch toolchain-funcs
-
-IUSE="kde"
-PATCHVER="r2"
-DESCRIPTION="free MS Word reader"
-HOMEPAGE="http://www.winfield.demon.nl;
-SRC_URI="http://www.winfield.demon.nl/linux/${P}.tar.gz
-   
https://dev.gentoo.org/~grobian/distfiles/${PN}-gentoo-patches-${PATCHVER}.tar.bz2;
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="~alpha amd64 ~arm ~hppa ppc ppc64 sparc x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
-
-src_prepare() {
-   # Makefile is a symlink to Makefile.Linux, avoid that we patch it by
-   # accident using patch <2.7, see bug #435492
-   rm Makefile || die
-
-   EPATCH_SUFFIX="patch" epatch 
"${WORKDIR}/${PN}-gentoo-patches-${PATCHVER}"
-
-   # Re-add convenience symlink, see above
-   ln -s Makefile.Linux Makefile
-
-   epatch "${FILESDIR}"/${P}-CVE-2014-8123.patch
-}
-
-src_configure() { :; }
-
-src_compile() {
-   emake PREFIX="${EPREFIX}" OPT="${CFLAGS}" CC="$(tc-getCC)" 
LD="$(tc-getCC)" \
-   LDFLAGS="${LDFLAGS}"
-}
-
-src_install() {
-   emake -j1 PREFIX="${EPREFIX}" DESTDIR="${D}" global_install
-
-   use kde || rm -f "${ED}"/usr/bin/kantiword
-
-   insinto /usr/share/${PN}/examples
-   doins Docs/testdoc.doc Docs/antiword.php
-
-   cd Docs
-   doman antiword.1
-   dodoc ChangeLog Exmh Emacs FAQ History Netscape QandA ReadMe Mozilla 
Mutt
-}



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Mac-Pasteboard/

2022-02-27 Thread Sam James
commit: b7c55c02975fc5d96a31a217a9f6fa5f4f8e650e
Author: Sam James  gentoo  org>
AuthorDate: Sun Feb 27 23:13:16 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Feb 27 23:13:16 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7c55c02

dev-perl/Mac-Pasteboard: treeclean

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

 dev-perl/Mac-Pasteboard/Mac-Pasteboard-0.3.0.ebuild | 18 --
 dev-perl/Mac-Pasteboard/Manifest|  1 -
 dev-perl/Mac-Pasteboard/metadata.xml| 16 
 3 files changed, 35 deletions(-)

diff --git a/dev-perl/Mac-Pasteboard/Mac-Pasteboard-0.3.0.ebuild 
b/dev-perl/Mac-Pasteboard/Mac-Pasteboard-0.3.0.ebuild
deleted file mode 100644
index 7393f40822a9..
--- a/dev-perl/Mac-Pasteboard/Mac-Pasteboard-0.3.0.ebuild
+++ /dev/null
@@ -1,18 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-MODULE_AUTHOR=WYANT
-MODULE_VERSION=0.003
-inherit perl-module
-
-DESCRIPTION="Manipulate Mac OS X clipboards/pasteboards"
-
-SLOT="0"
-KEYWORDS="~ppc-macos ~x64-macos"
-IUSE=""
-
-DEPEND="
-   dev-perl/Module-Build
-"

diff --git a/dev-perl/Mac-Pasteboard/Manifest b/dev-perl/Mac-Pasteboard/Manifest
deleted file mode 100644
index 087c120ceffa..
--- a/dev-perl/Mac-Pasteboard/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST Mac-Pasteboard-0.003.tar.gz 98521 BLAKE2B 
9f3030150e7f942c3da88fcb18d628a149f77d99d30d04eb0af3149d7a4e78b5747a1da6a94fba1507fe66de1c92c469960ac21962bd0788ef3f36446c2cb37a
 SHA512 
aef307706db5721def91be4a37d504e4f1cfd48edbaf4c1e2367d6667e69ee118910653d2b4dab00132b6e70a3b7a863ae289f5153a41e23135b3ac1508035b8

diff --git a/dev-perl/Mac-Pasteboard/metadata.xml 
b/dev-perl/Mac-Pasteboard/metadata.xml
deleted file mode 100644
index 73a7c41dfd01..
--- a/dev-perl/Mac-Pasteboard/metadata.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-https://www.gentoo.org/dtd/metadata.dtd;>
-
-  
-pre...@gentoo.org
-Primary Maintainer (for OSX part)
-  
-  
-p...@gentoo.org
-Gentoo Perl Project
-  
-  
-Mac-Pasteboard
-Mac::Pasteboard
-  
-



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

2022-02-27 Thread Sam James
commit: b56e26863b1ed693e54d9a61b07c876850719627
Author: Sam James  gentoo  org>
AuthorDate: Sun Feb 27 23:13:47 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Feb 27 23:13:47 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b56e2686

dev-python/django-pglocks: treeclean

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

 dev-python/django-pglocks/Manifest|  1 -
 dev-python/django-pglocks/django-pglocks-1.0.4.ebuild | 19 ---
 dev-python/django-pglocks/metadata.xml|  8 
 3 files changed, 28 deletions(-)

diff --git a/dev-python/django-pglocks/Manifest 
b/dev-python/django-pglocks/Manifest
deleted file mode 100644
index e4a2f92c742b..
--- a/dev-python/django-pglocks/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST django-pglocks-1.0.4.tar.gz 4085 BLAKE2B 
8af3b6ace4fb179117dd7b5064245ed9bcc44d0a613e3fd8a048196a15c9d9243bd683388b318c5ebab68b81b111c214ae3a7c3575ac86dcfe6e34a65403
 SHA512 
bb0a7dc18142fb668cb2f47acf48e62118c17b824d1d04407d253b1bcb3e572a38341e851f53f5e44e48fb6241d4c977e4971686e1f1feca191b27f6e9d7b133

diff --git a/dev-python/django-pglocks/django-pglocks-1.0.4.ebuild 
b/dev-python/django-pglocks/django-pglocks-1.0.4.ebuild
deleted file mode 100644
index 00a09d61df5b..
--- a/dev-python/django-pglocks/django-pglocks-1.0.4.ebuild
+++ /dev/null
@@ -1,19 +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} )
-inherit distutils-r1
-
-DESCRIPTION="PostgreSQL locking context managers and functions for Django"
-HOMEPAGE="https://github.com/Xof/django-pglocks;
-SRC_URI="mirror://pypi/${PN:0:1}"/${PN}/${P}.tar.gz
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-
-DEPEND=">=dev-python/six-1.0.0[${PYTHON_USEDEP}]"
-RDEPEND="${DEPEND}"

diff --git a/dev-python/django-pglocks/metadata.xml 
b/dev-python/django-pglocks/metadata.xml
deleted file mode 100644
index f29d9b73cefb..
--- a/dev-python/django-pglocks/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-https://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   
-   django-pglocks
-   
-



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

2022-02-27 Thread Sam James
commit: 210a96f5f4ce35f802fd9a3dd904b5a1c3871253
Author: Sam James  gentoo  org>
AuthorDate: Sun Feb 27 23:08:04 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Feb 27 23:08:58 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=210a96f5

dev-libs/mathjax: stabilize 2.7.7 for arm64

Bug: https://bugs.gentoo.org/834273
Signed-off-by: Sam James  gentoo.org>

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

diff --git a/dev-libs/mathjax/mathjax-2.7.7.ebuild 
b/dev-libs/mathjax/mathjax-2.7.7.ebuild
index 45beeda1f03a..ddbeca772756 100644
--- a/dev-libs/mathjax/mathjax-2.7.7.ebuild
+++ b/dev-libs/mathjax/mathjax-2.7.7.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}"/MathJax-${PV}
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 
sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 sparc 
x86 ~amd64-linux ~x86-linux ~x64-macos"
 IUSE="doc examples"
 
 RDEPEND="doc? ( app-doc/mathjax-docs:${SLOT} )"



[gentoo-commits] repo/gentoo:master commit in: app-doc/mathjax-docs/

2022-02-27 Thread Sam James
commit: b1f630bc73bd82a6523d3eeb6c39d5172bd10038
Author: Sam James  gentoo  org>
AuthorDate: Sun Feb 27 23:08:37 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Feb 27 23:09:02 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1f630bc

app-doc/mathjax-docs: stabilize 2.7.7 for arm64

Bug: https://bugs.gentoo.org/834273
Signed-off-by: Sam James  gentoo.org>

 app-doc/mathjax-docs/mathjax-docs-2.7.7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-doc/mathjax-docs/mathjax-docs-2.7.7.ebuild 
b/app-doc/mathjax-docs/mathjax-docs-2.7.7.ebuild
index ceca0d3ec978..cc87a5b9fd0b 100644
--- a/app-doc/mathjax-docs/mathjax-docs-2.7.7.ebuild
+++ b/app-doc/mathjax-docs/mathjax-docs-2.7.7.ebuild
@@ -15,7 +15,7 @@ S="${WORKDIR}/MathJax-docs-${COMMIT}"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 
sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 sparc 
x86 ~amd64-linux ~x86-linux ~x64-macos"
 
 BDEPEND="
$(python_gen_any_dep '



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

2022-02-27 Thread Lars Wendler
commit: efb726749d0ff189ccd0de9faed4cfd14e6961a8
Author: Lars Wendler  gentoo  org>
AuthorDate: Sun Feb 27 23:02:44 2022 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Sun Feb 27 23:04:14 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=efb72674

app-admin/keepassxc: Synced live ebuild

Signed-off-by: Lars Wendler  gentoo.org>

 app-admin/keepassxc/keepassxc-.ebuild | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/app-admin/keepassxc/keepassxc-.ebuild 
b/app-admin/keepassxc/keepassxc-.ebuild
index 6eb2c5dbb6e3..3d0e25a306e7 100644
--- a/app-admin/keepassxc/keepassxc-.ebuild
+++ b/app-admin/keepassxc/keepassxc-.ebuild
@@ -92,8 +92,5 @@ src_configure() {
if [[ "${PV}" == *_beta* ]] ; then
mycmakeargs+=( -DOVERRIDE_VERSION="${PV/_/-}" )
fi
-   if [[ "${PV}" !=  ]] ; then
-   mycmakeargs+=( -DWITH_XC_KEESHARE_SECURE="$(usex keeshare)" )
-   fi
cmake_src_configure
 }



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

2022-02-27 Thread Lars Wendler
commit: 3d720dd85f6c09f643b910e045f526af610f8451
Author: Lars Wendler  gentoo  org>
AuthorDate: Sun Feb 27 23:02:21 2022 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Sun Feb 27 23:04:14 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d720dd8

app-admin/keepassxc: Bump to version 2.7.0_beta1

Signed-off-by: Lars Wendler  gentoo.org>

 app-admin/keepassxc/Manifest |  1 +
 app-admin/keepassxc/keepassxc-2.7.0_beta1.ebuild | 96 
 2 files changed, 97 insertions(+)

diff --git a/app-admin/keepassxc/Manifest b/app-admin/keepassxc/Manifest
index cfe9fe1f233c..2e6bcf95b9b0 100644
--- a/app-admin/keepassxc/Manifest
+++ b/app-admin/keepassxc/Manifest
@@ -1 +1,2 @@
 DIST keepassxc-2.6.6-src.tar.xz 7640532 BLAKE2B 
ed55dfe992c02e78354d7aeb9f63853380dbcdec0e834232997cb6f5ecc303ff18ed50dcc48f54497031d6fc8b741c620202e78c3eacbe50d4dcfa7e4d59a92c
 SHA512 
175702ef3ae5b048ba23a794ddf4e17d61f2640955de7ec21a3e49e4abe7cab8c93c9a2bc61c5c052c62382a69bd8dcb4a4f0cf6daa162f5e00cff3f7a1a713b
+DIST keepassxc-2.7.0_beta1.tar.gz 10634757 BLAKE2B 
3ec079dacbf6f13f60ac68084d167e90f213894f3141a55962720646673de0bf466c81493a4f449b4871298d8067b1971e7e25477b7cbecb47a277e5594b425e
 SHA512 
b1fbdf5afea1514a8e42338ea26077b0a6d3088674baf1761e8ac0060ffd5c14da6f7bf11d31cd04f90d02c30e6db39e559c2995863cb3f563d7e6894f7680a9

diff --git a/app-admin/keepassxc/keepassxc-2.7.0_beta1.ebuild 
b/app-admin/keepassxc/keepassxc-2.7.0_beta1.ebuild
new file mode 100644
index ..3d0e25a306e7
--- /dev/null
+++ b/app-admin/keepassxc/keepassxc-2.7.0_beta1.ebuild
@@ -0,0 +1,96 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake flag-o-matic xdg
+
+DESCRIPTION="KeePassXC - KeePass Cross-platform Community Edition"
+HOMEPAGE="https://keepassxc.org;
+
+if [[ "${PV}" != * ]] ; then
+   if [[ "${PV}" == *_beta* ]] ; then
+   
SRC_URI="https://github.com/keepassxreboot/keepassxc/archive/${PV/_/-}.tar.gz 
-> ${P}.tar.gz"
+   S="${WORKDIR}/${P/_/-}"
+   else
+   
#SRC_URI="https://github.com/keepassxreboot/keepassxc/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+   
SRC_URI="https://github.com/keepassxreboot/keepassxc/releases/download/${PV}/${P}-src.tar.xz;
+   KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
+   fi
+else
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/keepassxreboot/${PN};
+   [[ "${PV}" !=  ]] && EGIT_BRANCH="master"
+fi
+
+LICENSE="LGPL-2.1 GPL-2 GPL-3"
+SLOT="0"
+IUSE="autotype browser ccache doc keeshare +network test yubikey"
+
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   dev-libs/botan:2
+   dev-qt/qtconcurrent:5
+   dev-qt/qtcore:5
+   dev-qt/qtdbus:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5
+   dev-qt/qtsvg:5
+   dev-qt/qtwidgets:5
+   media-gfx/qrencode:=
+   sys-libs/readline:0=
+   sys-libs/zlib:=
+   autotype? (
+   dev-qt/qtx11extras:5
+   x11-libs/libX11
+   x11-libs/libXtst
+   )
+   keeshare? ( sys-libs/zlib:=[minizip] )
+   yubikey? (
+   dev-libs/libusb:1
+   sys-apps/pcsc-lite
+   )
+"
+
+DEPEND="
+   ${RDEPEND}
+   dev-qt/linguist-tools:5
+   dev-qt/qttest:5
+"
+BDEPEND="
+   ccache? ( dev-util/ccache )
+   doc? ( dev-ruby/asciidoctor )
+"
+
+src_prepare() {
+   if [[ "${PV}" != *_beta* ]] && [[ "${PV}" != * ]] && [[ ! -f 
.version ]] ; then
+   printf '%s' "${PV}" > .version || die
+   fi
+
+cmake_src_prepare
+}
+
+src_configure() {
+   # https://github.com/keepassxreboot/keepassxc/issues/5801
+   filter-flags -flto*
+
+   local mycmakeargs=(
+   -DWITH_CCACHE="$(usex ccache)"
+   -DWITH_GUI_TESTS=OFF
+   -DWITH_TESTS="$(usex test)"
+   -DWITH_XC_AUTOTYPE="$(usex autotype)"
+   -DWITH_XC_DOCS="$(usex doc)"
+   -DWITH_XC_BROWSER="$(usex browser)"
+   -DWITH_XC_FDOSECRETS=ON
+   -DWITH_XC_KEESHARE="$(usex keeshare)"
+   -DWITH_XC_NETWORKING="$(usex network)"
+   -DWITH_XC_SSHAGENT=ON
+   -DWITH_XC_UPDATECHECK=OFF
+   -DWITH_XC_YUBIKEY="$(usex yubikey)"
+   )
+   if [[ "${PV}" == *_beta* ]] ; then
+   mycmakeargs+=( -DOVERRIDE_VERSION="${PV/_/-}" )
+   fi
+   cmake_src_configure
+}



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

2022-02-27 Thread Sam James
commit: 0f882b889ad7aa194a5a2ea8ccf50309d6705439
Author: Sam James  gentoo  org>
AuthorDate: Sun Feb 27 23:00:29 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Feb 27 23:00:29 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f882b88

media-libs/spandsp: drop 0.0.6

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

 media-libs/spandsp/spandsp-0.0.6.ebuild | 66 -
 1 file changed, 66 deletions(-)

diff --git a/media-libs/spandsp/spandsp-0.0.6.ebuild 
b/media-libs/spandsp/spandsp-0.0.6.ebuild
deleted file mode 100644
index f5989411a1b1..
--- a/media-libs/spandsp/spandsp-0.0.6.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-inherit multilib versionator
-
-DESCRIPTION="SpanDSP is a library of DSP functions for telephony"
-HOMEPAGE="http://www.soft-switch.org/;
-SRC_URI="http://www.soft-switch.org/downloads/spandsp/${P/_}.tar.gz;
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~sparc x86"
-IUSE="doc fixed-point cpu_flags_x86_mmx cpu_flags_x86_sse cpu_flags_x86_sse2 
cpu_flags_x86_sse3 static-libs"
-
-RDEPEND="media-libs/tiff
-virtual/jpeg"
-DEPEND="${RDEPEND}
-   doc? ( app-doc/doxygen
-   dev-libs/libxslt )"
-
-# Enabled implicitly by the build system. Really useless.
-REQUIRED_USE="
-   cpu_flags_x86_sse3? ( cpu_flags_x86_sse2 )
-   cpu_flags_x86_sse2? ( cpu_flags_x86_sse )
-   cpu_flags_x86_sse? ( cpu_flags_x86_mmx )"
-
-S=${WORKDIR}/${PN}-$(get_version_component_range 1-3)
-
-# TODO:
-# there are two tests options: tests and test-data
-#  they need audiofile, fftw, libxml and probably more
-
-src_configure() {
-   # Note: flags over sse3 aren't really used -- they're only
-   # boilerplate. They also make some silly assumptions, e.g. that
-   # every CPU with SSE4* has SSSE3.
-   # Reference: https://bugs.funtoo.org/browse/FL-2069.
-   # If you want to re-add them, first check if the code started
-   # using them. If it did, figure out if the flags can be unbundled
-   # from one another. Otherwise, you'd have to do REQUIRED_USE.
-
-   econf \
-   $(use_enable doc) \
-   $(use_enable fixed-point) \
-   $(use_enable cpu_flags_x86_mmx mmx) \
-   $(use_enable cpu_flags_x86_sse sse) \
-   $(use_enable cpu_flags_x86_sse2 sse2) \
-   $(use_enable cpu_flags_x86_sse3 sse3) \
-   $(use_enable static-libs static)
-}
-
-src_install() {
-   emake DESTDIR="${D}" install
-   dodoc AUTHORS ChangeLog DueDiligence NEWS README
-
-   if ! use static-libs; then
-   # remove useless la file when not installing static lib
-   find "${ED}" -name '*.la' -delete || die
-   fi
-
-   if use doc; then
-   dohtml -r doc/{api/html/*,t38_manual}
-   fi
-}



[gentoo-commits] repo/gentoo:master commit in: net-analyzer/nagios-check_ipmi_sensor/

2022-02-27 Thread Sam James
commit: 13139bdc1fa8dce3ef945efeaebda85d4c077be0
Author: Sam James  gentoo  org>
AuthorDate: Sun Feb 27 22:59:41 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Feb 27 22:59:41 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13139bdc

net-analyzer/nagios-check_ipmi_sensor: UnusedInherits (multilib.eclass)

Not needed in EAPI 6+ for get_libdir.

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

 .../nagios-check_ipmi_sensor/nagios-check_ipmi_sensor-3.13.ebuild   | 2 --
 1 file changed, 2 deletions(-)

diff --git 
a/net-analyzer/nagios-check_ipmi_sensor/nagios-check_ipmi_sensor-3.13.ebuild 
b/net-analyzer/nagios-check_ipmi_sensor/nagios-check_ipmi_sensor-3.13.ebuild
index 988727e9cc2b..994a1a52d408 100644
--- a/net-analyzer/nagios-check_ipmi_sensor/nagios-check_ipmi_sensor-3.13.ebuild
+++ b/net-analyzer/nagios-check_ipmi_sensor/nagios-check_ipmi_sensor-3.13.ebuild
@@ -3,8 +3,6 @@
 
 EAPI=8
 
-inherit multilib
-
 MY_P="${PN#nagios-}_v$(ver_cut 1)-${PV}"
 
 DESCRIPTION="IPMI Sensor Monitoring Plugin for Nagios/Icinga"



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

2022-02-27 Thread Sam James
commit: 9241ace1642778469c7834dfcf346a774af94038
Author: Sam James  gentoo  org>
AuthorDate: Sun Feb 27 22:55:34 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Feb 27 22:55:34 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9241ace1

app-text/trang: drop 20151127

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

 app-text/trang/Manifest  |  1 -
 app-text/trang/trang-20151127.ebuild | 79 
 2 files changed, 80 deletions(-)

diff --git a/app-text/trang/Manifest b/app-text/trang/Manifest
index 69f8050bc313..9ddc07d64b74 100644
--- a/app-text/trang/Manifest
+++ b/app-text/trang/Manifest
@@ -1,2 +1 @@
-DIST trang-20151127.tar.gz 13746141 BLAKE2B 
8895fefa8be62a524a2bfb603a64bcf641f13cd500dbe51b9efdaed7d5147dd6478963d356aec81c5c5b6af12a59edcb908d203b6b8edaf093fe29f76db80b7c
 SHA512 
f5c6973791e8caa8dcce6bbf92cbd58491f55edd7819523947ad718ea3973eb81afc6b21d4e830949c2f183b485915dab98dbb5b90e01324677cfa41f5746e26
 DIST trang-20181222.tar.gz 14847113 BLAKE2B 
335722853b2d373fd9a6e9d4478b8248ca49d0559d5a8f60566f5550e60d5a004f26338897617acc617f84d1d55546afb9c51da64b7634514fa2ec508fa7a47a
 SHA512 
fa412a5beeff07a620c4aa5723cf5b73bdb6b1cda561e3bf7764a609110f538da5313bcc79aca4d7742f71b3b071d3537681845d17ece46bc871c0964f4e251d

diff --git a/app-text/trang/trang-20151127.ebuild 
b/app-text/trang/trang-20151127.ebuild
deleted file mode 100644
index d04740027209..
--- a/app-text/trang/trang-20151127.ebuild
+++ /dev/null
@@ -1,79 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-COMMIT="1e74846999bbd14ce5248acbd2be9f1e624a9846"
-
-inherit java-pkg-2 java-ant-2
-
-DESCRIPTION="Multi-format schema converter based on RELAX NG"
-HOMEPAGE="http://thaiopensource.com/relaxng/trang.html;
-SRC_URI="https://github.com/relaxng/jing-trang/archive/${COMMIT}.tar.gz -> 
${P}.tar.gz"
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-COMMON_DEP="
-   dev-java/xerces:2
-   dev-java/xml-commons-resolver:0"
-
-RDEPEND="
-   >=virtual/jre-1.7
-   ${COMMON_DEP}"
-
-DEPEND="
-   >=virtual/jdk-1.7
-   dev-java/javacc:0
-   dev-java/saxon:6.5
-   dev-java/testng:0
-   ${COMMON_DEP}"
-
-S="${WORKDIR}/jing-${PN}-${COMMIT}"
-
-EANT_ANT_TASKS="testng"
-EANT_GENTOO_CLASSPATH="xerces-2,xml-commons-resolver"
-JAVA_ANT_REWRITE_CLASSPATH="yes"
-JAVA_PKG_BSFIX_NAME="build.xsl"
-
-java_prepare() {
-   java-pkg_clean
-   echo "${PV}" > version.xml || die
-}
-
-src_configure() {
-   java-ant-2_src_configure
-
-   # Because this crazy package uses XSLT, we need to escape this.
-   sed -i 's:\${gentoo\.classpath}:${{gentoo.classpath}}:g' build.xsl || 
die
-
-   EANT_EXTRA_ARGS="-Djavacc.dir=${EPREFIX}/usr/share/javacc/lib"
-   export LOCALCLASSPATH=$(java-pkg_getjars --build-only 
--with-dependencies saxon-6.5)
-}
-
-src_compile() {
-   EANT_BUILD_TARGET="modbuild trang-doc" java-pkg-2_src_compile
-   EANT_BUILD_TARGET="mod.trang.jar" EANT_BUILD_XML="modbuild.xml" 
java-pkg-2_src_compile
-}
-
-src_install() {
-   java-pkg_dojar build/${PN}.jar
-   java-pkg_dolauncher ${PN} \
-   --main com.thaiopensource.relaxng.translate.Driver
-
-   docinto html
-   dodoc build/*.html
-}
-
-src_test() {
-   java -jar build/${PN}.jar "${FILESDIR}/test.xml" test/test.xsd
-   java -jar build/${PN}.jar "${FILESDIR}/test.xml" test/test.dtd
-   java -jar build/${PN}.jar test/test.dtd test/test.dtd.xsd
-
-   md5sum -c <

[gentoo-commits] repo/gentoo:master commit in: net-analyzer/nagios-check_ipmi_sensor/

2022-02-27 Thread Sam James
commit: 1bf9df9ec3de704f1a7bfa5b52abc017bbe4af39
Author: Sam James  gentoo  org>
AuthorDate: Sun Feb 27 22:57:29 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Feb 27 22:57:29 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1bf9df9e

net-analyzer/nagios-check_ipmi_sensor: drop 3.2

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

 net-analyzer/nagios-check_ipmi_sensor/Manifest |  1 -
 .../nagios-check_ipmi_sensor-3.2.ebuild| 32 --
 2 files changed, 33 deletions(-)

diff --git a/net-analyzer/nagios-check_ipmi_sensor/Manifest 
b/net-analyzer/nagios-check_ipmi_sensor/Manifest
index f549319a8872..45e45ed8c88f 100644
--- a/net-analyzer/nagios-check_ipmi_sensor/Manifest
+++ b/net-analyzer/nagios-check_ipmi_sensor/Manifest
@@ -1,2 +1 @@
 DIST check_ipmi_sensor_v3-3.13.tar.gz 27079 BLAKE2B 
19f2eddeeb43a73eb8faa2907b53f2b0514a19a3313e90487082c463ef12a128cb3b252457768c1afcacd06402b572f54cab7c05d159df4e6f7881b191663046
 SHA512 
b117ca13936e8c2201f3262302004bd0f903d19ee7289222962ee6b53119ba8306cdf355292c63b9d7639d850bd59c24b2875ccb8b3c408bdac60d144837e97a
-DIST check_ipmi_sensor_v3-8120430.tgz 20620 BLAKE2B 
2542c4320498700362e8e7c1cfe0d00d98e4894e987aac002f0e2db499fdab4c27b33ff587349a836ae18d7b89939a96f6a66484b46486caa0d548c3e794d1c3
 SHA512 
89b3fd7ae2d523e1510c528d44d03ad9af5bc174bb325393f50a4a95380c996867b4502b55f38712515f556fe0f2019e15f6800ca1db00a9bbbcef655f1fd845

diff --git 
a/net-analyzer/nagios-check_ipmi_sensor/nagios-check_ipmi_sensor-3.2.ebuild 
b/net-analyzer/nagios-check_ipmi_sensor/nagios-check_ipmi_sensor-3.2.ebuild
deleted file mode 100644
index 37653d213a53..
--- a/net-analyzer/nagios-check_ipmi_sensor/nagios-check_ipmi_sensor-3.2.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit multilib versionator
-
-MY_COMMIT="8120430"
-MY_P="${PN#nagios-}_v$(get_major_version ${PV})-${MY_COMMIT}"
-
-DESCRIPTION="IPMI Sensor Monitoring Plugin for Nagios/Icinga"
-HOMEPAGE="http://www.thomas-krenn.com/en/oss/ipmi-plugin/;
-SRC_URI="http://git.thomas-krenn.com/?p=check_ipmi_sensor_v3.git;a=snapshot;h=${MY_COMMIT};sf=tgz
 -> ${MY_P}.tgz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 hppa x86"
-IUSE=""
-
-DEPEND=""
-RDEPEND="dev-lang/perl
-   dev-perl/IPC-Run
-   sys-libs/freeipmi"
-
-S="${WORKDIR}/${MY_P}"
-
-src_install() {
-   exeinto /usr/$(get_libdir)/nagios/plugins
-   doexe check_ipmi_sensor
-
-   dodoc changelog.txt
-}



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

2022-02-27 Thread Sam James
commit: 99cac3bfed9a78f3f8bb5fe28db2087f86e8f7fc
Author: Sam James  gentoo  org>
AuthorDate: Sun Feb 27 22:49:30 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Feb 27 22:49:30 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99cac3bf

profiles: last-rite sci-chemistry/mm-align

Bug: https://bugs.gentoo.org/723194
Bug: https://bugs.gentoo.org/834301
Signed-off-by: Sam James  gentoo.org>

 profiles/package.mask | 5 +
 1 file changed, 5 insertions(+)

diff --git a/profiles/package.mask b/profiles/package.mask
index 5363b9c37b36..9e344e20efcc 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -33,6 +33,11 @@
 
 #--- END OF EXAMPLES ---
 
+# Sam James  (2022-02-27)
+# Fails to build with modern GCC, stuck on cmake-utils.eclass too.
+# bug #723194, bug #834301. Removal on 2022-03-27.
+sci-chemistry/mm-align
+
 # David Seifert  (2022-02-27)
 # Last release 10 years ago, no other distro packages this,
 # stuck on cmake-utils.eclass and QA issues.



[gentoo-commits] repo/gentoo:master commit in: sci-chemistry/tm-align/

2022-02-27 Thread Sam James
commit: 1489c366aee882be497075a8e99c4218f34d6c15
Author: Sam James  gentoo  org>
AuthorDate: Sun Feb 27 22:52:01 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Feb 27 22:52:01 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1489c366

sci-chemistry/tm-align: update EAPI 6 -> 8

Bug: https://bugs.gentoo.org/834302
Signed-off-by: Sam James  gentoo.org>

 sci-chemistry/tm-align/tm-align-20150914-r1.ebuild | 24 ++
 1 file changed, 24 insertions(+)

diff --git a/sci-chemistry/tm-align/tm-align-20150914-r1.ebuild 
b/sci-chemistry/tm-align/tm-align-20150914-r1.ebuild
new file mode 100644
index ..23c016c77a05
--- /dev/null
+++ b/sci-chemistry/tm-align/tm-align-20150914-r1.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake flag-o-matic fortran-2
+
+DESCRIPTION="Quick & Accurate Structural Alignment"
+HOMEPAGE="https://zhanggroup.org/TM-align/;
+SRC_URI="http://zhanglab.ccmb.med.umich.edu/TM-align/TMtools${PV}.tar.gz;
+S="${WORKDIR}"
+
+LICENSE="tm-align"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="custom-cflags"
+
+src_prepare() {
+   cp "${FILESDIR}"/CMakeLists.txt . || die
+   cmake_src_prepare
+
+   # Recommended by upstream
+   use custom-cflags || replace-flags -O* -O3 && append-fflags -ffast-math
+}



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

2022-02-27 Thread Sam James
commit: e967f66d4f288bdb573bed79059a0a3cc4f8f333
Author: Sam James  gentoo  org>
AuthorDate: Sun Feb 27 22:44:20 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Feb 27 22:45:04 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e967f66d

dev-util/min-cscope: drop 16.1.0

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

 dev-util/min-cscope/min-cscope-16.1.0.ebuild | 35 
 1 file changed, 35 deletions(-)

diff --git a/dev-util/min-cscope/min-cscope-16.1.0.ebuild 
b/dev-util/min-cscope/min-cscope-16.1.0.ebuild
deleted file mode 100644
index 2648a185f329..
--- a/dev-util/min-cscope/min-cscope-16.1.0.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit cmake-utils flag-o-matic
-
-DESCRIPTION="Interactively examine a C program"
-HOMEPAGE="https://sourceforge.net/projects/kscope/;
-SRC_URI="mirror://sourceforge/kscope/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="debug"
-
-S=${WORKDIR}/${PN}
-
-DOCS=( AUTHORS README{,.cscope} TODO )
-
-PATCHES=(
-   "${FILESDIR}/${P}-tinfo.patch" #678886
-)
-
-src_prepare() {
-   cmake-utils_src_prepare
-
-   echo 'INSTALL(TARGETS min-cscope RUNTIME DESTINATION bin)' \
-   >> src/CMakeLists.txt || die
-}
-
-src_configure() {
-   append-flags -I"${S}/sort"
-   cmake-utils_src_configure
-}



[gentoo-commits] repo/gentoo:master commit in: sci-libs/orocos-bfl/

2022-02-27 Thread David Seifert
commit: 5ff80052f3b98b6e9ab08ddf4c1d11238a2187fc
Author: David Seifert  gentoo  org>
AuthorDate: Sun Feb 27 22:44:31 2022 +
Commit: David Seifert  gentoo  org>
CommitDate: Sun Feb 27 22:44:31 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ff80052

sci-libs/orocos-bfl: [QA] port to cmake.eclass

Closes: https://bugs.gentoo.org/770592
Signed-off-by: David Seifert  gentoo.org>

 sci-libs/orocos-bfl/orocos-bfl-0.8.0.ebuild | 43 +++--
 1 file changed, 22 insertions(+), 21 deletions(-)

diff --git a/sci-libs/orocos-bfl/orocos-bfl-0.8.0.ebuild 
b/sci-libs/orocos-bfl/orocos-bfl-0.8.0.ebuild
index bc79a85db067..ad5ae2e60d63 100644
--- a/sci-libs/orocos-bfl/orocos-bfl-0.8.0.ebuild
+++ b/sci-libs/orocos-bfl/orocos-bfl-0.8.0.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=8
 
-inherit cmake-utils
+inherit cmake
 
 DESCRIPTION="Bayesian Filtering Library"
 HOMEPAGE="https://orocos.org/bfl;
@@ -12,54 +12,55 @@ 
SRC_URI="https://people.mech.kuleuven.be/~tdelaet/bfl_tar/${P}-src.tar.bz2;
 LICENSE="LGPL-2.1"
 SLOT="0"
 KEYWORDS="~amd64 ~arm"
-IUSE="doc examples static-libs test"
+IUSE="doc test"
 RESTRICT="!test? ( test )"
 
 RDEPEND="dev-libs/boost:="
 DEPEND="${RDEPEND}
+   test? ( dev-util/cppunit )"
+BDEPEND="
virtual/pkgconfig
doc? (
app-doc/doxygen
virtual/latex-base
-   )
-   test? ( dev-util/cppunit )"
+   )"
 
 src_prepare() {
-   cmake-utils_src_prepare
+   cmake_src_prepare
 
sed -e 's:/lib:/${CMAKE_INSTALL_LIBDIR}:' \
-   -i "${S}/"{,src/,src/bindings/rtt/}CMakeLists.txt || die
+   -i {,src/,src/bindings/rtt/}CMakeLists.txt || die
 }
 
 src_configure() {
local mycmakeargs=(
-   "-DLIBRARY_TYPE=$(usex static-libs both shared)"
-   "-DBUILD_EXAMPLES=$(usex examples ON OFF)"
-   "-DBUILD_TESTS=$(usex test ON OFF)"
+   -DLIBRARY_TYPE=shared
+   # installs test binaries
+   -DBUILD_EXAMPLES=NO
+   -DBUILD_TESTS=$(usex test)
)
-   cmake-utils_src_configure
+   cmake_src_configure
 }
 
 src_compile() {
-   cmake-utils_src_compile
+   cmake_src_compile
+
if use doc ; then
-   cd "${BUILD_DIR}"
+   cd "${BUILD_DIR}" || die
doxygen || die
cd "${S}/docs" || die
pdflatex getting_started_guide || die
pdflatex getting_started_guide || die
+
+   HTML_DOCS=( "${BUILD_DIR}"/doc/html/. )
fi
 }
 
 src_test() {
-   cd "${BUILD_DIR}"
-   emake check
+   cmake_build check
 }
 
 src_install() {
-   cmake-utils_src_install
-   if use doc ; then
-   dohtml -r "${BUILD_DIR}/doc/html/"
-   dodoc "${S}/docs/getting_started_guide.pdf"
-   fi
+   cmake_src_install
+   use doc && dodoc docs/getting_started_guide.pdf
 }



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

2022-02-27 Thread David Seifert
commit: c4098de1cd8c87d8753be20025ca57f454ce0d94
Author: David Seifert  gentoo  org>
AuthorDate: Sun Feb 27 22:44:33 2022 +
Commit: David Seifert  gentoo  org>
CommitDate: Sun Feb 27 22:44:33 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4098de1

profiles: last-rite net-fs/smbtad

Bug: https://bugs.gentoo.org/711880
Bug: https://bugs.gentoo.org/774519
Signed-off-by: David Seifert  gentoo.org>

 profiles/package.mask | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/profiles/package.mask b/profiles/package.mask
index 099fcf800715..5363b9c37b36 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -33,6 +33,12 @@
 
 #--- END OF EXAMPLES ---
 
+# David Seifert  (2022-02-27)
+# Last release 10 years ago, no other distro packages this,
+# stuck on cmake-utils.eclass and QA issues.
+# Bug #711880, #774519, removal on 2022-03-27.
+net-fs/smbtad
+
 # Sam James  (2022-02-27)
 # EAPI=6 consumer of deprecated cmake-utils.eclass. No reverse
 # dependencies and will soon be unbuildable with new CMake.



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

2022-02-27 Thread Sam James
commit: 9d7ce55e5c7380a07d2cfd82e1eee81ca93742a2
Author: Sam James  gentoo  org>
AuthorDate: Sun Feb 27 22:41:59 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Feb 27 22:41:59 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d7ce55e

dev-libs/tree-sitter: Stabilize 0.20.2-r1 ppc, #834133

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

 dev-libs/tree-sitter/tree-sitter-0.20.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/tree-sitter/tree-sitter-0.20.2-r1.ebuild 
b/dev-libs/tree-sitter/tree-sitter-0.20.2-r1.ebuild
index 9800235d12bc..4dc88d7e37dc 100644
--- a/dev-libs/tree-sitter/tree-sitter-0.20.2-r1.ebuild
+++ b/dev-libs/tree-sitter/tree-sitter-0.20.2-r1.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} == ** ]]; then
EGIT_REPO_URI="https://github.com/${PN}/${PN};
 else
SRC_URI="https://github.com/${PN}/${PN}/archive/refs/tags/v${PV}.tar.gz 
-> ${P}.tar.gz"
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
 fi
 
 LICENSE="MIT"



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

2022-02-27 Thread Sam James
commit: 0f473c070c016ff5c8b7b3ff348e7144a9264486
Author: Sam James  gentoo  org>
AuthorDate: Sun Feb 27 22:41:53 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Feb 27 22:41:53 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f473c07

app-arch/snappy: Stabilize 1.1.9-r1 ppc, #834318

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

 app-arch/snappy/snappy-1.1.9-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-arch/snappy/snappy-1.1.9-r1.ebuild 
b/app-arch/snappy/snappy-1.1.9-r1.ebuild
index 74b9e884e633..e3b714e0e52d 100644
--- a/app-arch/snappy/snappy-1.1.9-r1.ebuild
+++ b/app-arch/snappy/snappy-1.1.9-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/google/${PN}/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0/${PV%%.*}"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~riscv ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2022-02-27 Thread Sam James
commit: 9aade55122c2923fce6d4aedf0b31bdf1ee0d8fa
Author: Sam James  gentoo  org>
AuthorDate: Sun Feb 27 22:41:48 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Feb 27 22:41:48 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9aade551

dev-python/argon2-cffi: Stabilize 21.3.0-r1 sparc, #834268

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

 dev-python/argon2-cffi/argon2-cffi-21.3.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/argon2-cffi/argon2-cffi-21.3.0-r1.ebuild 
b/dev-python/argon2-cffi/argon2-cffi-21.3.0-r1.ebuild
index b3f986e7389c..4dfb755a9f18 100644
--- a/dev-python/argon2-cffi/argon2-cffi-21.3.0-r1.ebuild
+++ b/dev-python/argon2-cffi/argon2-cffi-21.3.0-r1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 hppa ~ia64 ppc ~ppc64 ~riscv ~s390 ~sparc x86"
+KEYWORDS="amd64 arm arm64 hppa ~ia64 ppc ~ppc64 ~riscv ~s390 sparc x86"
 
 RDEPEND=">=dev-python/argon2-cffi-bindings-21.2.0[${PYTHON_USEDEP}]"
 BDEPEND="



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

2022-02-27 Thread Sam James
commit: b5691d9a2ccd20294f35223d9aecb905327fa927
Author: Sam James  gentoo  org>
AuthorDate: Sun Feb 27 22:42:10 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Feb 27 22:42:10 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5691d9a

dev-libs/tree-sitter: Stabilize 0.20.2-r1 ppc64, #834133

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

 dev-libs/tree-sitter/tree-sitter-0.20.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/tree-sitter/tree-sitter-0.20.2-r1.ebuild 
b/dev-libs/tree-sitter/tree-sitter-0.20.2-r1.ebuild
index 4dc88d7e37dc..aaf7947a04e4 100644
--- a/dev-libs/tree-sitter/tree-sitter-0.20.2-r1.ebuild
+++ b/dev-libs/tree-sitter/tree-sitter-0.20.2-r1.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} == ** ]]; then
EGIT_REPO_URI="https://github.com/${PN}/${PN};
 else
SRC_URI="https://github.com/${PN}/${PN}/archive/refs/tags/v${PV}.tar.gz 
-> ${P}.tar.gz"
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 
~sparc ~x86"
 fi
 
 LICENSE="MIT"



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

2022-02-27 Thread Sam James
commit: 1a2070410d21c95072c75125082726b4b856d109
Author: Sam James  gentoo  org>
AuthorDate: Sun Feb 27 22:42:04 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Feb 27 22:42:04 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a207041

app-arch/snappy: Stabilize 1.1.9-r1 ppc64, #834318

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

 app-arch/snappy/snappy-1.1.9-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-arch/snappy/snappy-1.1.9-r1.ebuild 
b/app-arch/snappy/snappy-1.1.9-r1.ebuild
index e3b714e0e52d..2b62af55b980 100644
--- a/app-arch/snappy/snappy-1.1.9-r1.ebuild
+++ b/app-arch/snappy/snappy-1.1.9-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/google/${PN}/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0/${PV%%.*}"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~riscv ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: sci-chemistry/pdbmat/, sci-chemistry/pdbmat/files/

2022-02-27 Thread Sam James
commit: bc5b58f78574e2a185a02ab4b56230a02f1090ff
Author: Sam James  gentoo  org>
AuthorDate: Sun Feb 27 22:39:37 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Feb 27 22:39:37 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc5b58f7

sci-chemistry/pdbmat: port to EAPI 8

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

 sci-chemistry/pdbmat/files/CMakeLists.txt |  6 --
 .../pdbmat/{pdbmat-3.89.ebuild => pdbmat-3.89-r1.ebuild}  | 15 +++
 2 files changed, 11 insertions(+), 10 deletions(-)

diff --git a/sci-chemistry/pdbmat/files/CMakeLists.txt 
b/sci-chemistry/pdbmat/files/CMakeLists.txt
index 2f1937d84b3f..a20199bbca91 100644
--- a/sci-chemistry/pdbmat/files/CMakeLists.txt
+++ b/sci-chemistry/pdbmat/files/CMakeLists.txt
@@ -1,14 +1,16 @@
 cmake_minimum_required (VERSION 2.6)
 project (PDBMAT Fortran)
 
+include(GNUInstallDirs)
+
 option (EXAMPLES "Instal additional example files" OFF)
 
 add_executable(diagstd diagstd.f)
 add_executable(pdbmat pdbmat.f)
 
 install (TARGETS diagstd pdbmat DESTINATION bin)
-install (FILES diagstd.README pdbmat.README DESTINATION share/doc/pdbmat)
+install (FILES diagstd.README pdbmat.README DESTINATION 
${CMAKE_INSTALL_DOCDIR})
 
 if ( EXAMPLES )
-   install (DIRECTORY ../Try_ENM2011 DESTINATION share/pdbmat/examples)
+   install (DIRECTORY ../Try_ENM2011 DESTINATION 
${CMAKE_INSTALL_DOCDIR}/examples)
 endif (EXAMPLES)

diff --git a/sci-chemistry/pdbmat/pdbmat-3.89.ebuild 
b/sci-chemistry/pdbmat/pdbmat-3.89-r1.ebuild
similarity index 79%
rename from sci-chemistry/pdbmat/pdbmat-3.89.ebuild
rename to sci-chemistry/pdbmat/pdbmat-3.89-r1.ebuild
index 6c14461b5019..40ef7c9df2d3 100644
--- a/sci-chemistry/pdbmat/pdbmat-3.89.ebuild
+++ b/sci-chemistry/pdbmat/pdbmat-3.89-r1.ebuild
@@ -1,25 +1,24 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=8
 
-inherit cmake-utils fortran-2
+inherit cmake fortran-2
 
 DESCRIPTION="Calculate Tirion's model from pdb structures"
 HOMEPAGE="http://ecole.modelisation.free.fr/modes.html;
 SRC_URI="http://ecole.modelisation.free.fr/enm2011.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}"/Source_ENM2011
 
-SLOT="0"
 LICENSE="CeCILL-2"
+SLOT="0"
 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
 IUSE="examples"
 
-S="${WORKDIR}"/Source_ENM2011
-
 src_prepare() {
cp "${FILESDIR}"/CMakeLists.txt . || die
 
-   cmake-utils_src_prepare
+   cmake_src_prepare
 }
 
 src_configure() {
@@ -27,5 +26,5 @@ src_configure() {
-DEXAMPLES=$(usex examples)
)
 
-   cmake-utils_src_configure
+   cmake_src_configure
 }



[gentoo-commits] repo/gentoo:master commit in: sci-chemistry/pdbcat/

2022-02-27 Thread Sam James
commit: df50910c5761df0de027da735f6990e577f2ead7
Author: Sam James  gentoo  org>
AuthorDate: Sun Feb 27 22:36:04 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Feb 27 22:36:04 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df50910c

sci-chemistry/pdbcat: port to EAPI 8

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

 .../pdbcat/{pdbcat-1.3.ebuild => pdbcat-1.3-r1.ebuild}| 15 +--
 1 file changed, 9 insertions(+), 6 deletions(-)

diff --git a/sci-chemistry/pdbcat/pdbcat-1.3.ebuild 
b/sci-chemistry/pdbcat/pdbcat-1.3-r1.ebuild
similarity index 76%
rename from sci-chemistry/pdbcat/pdbcat-1.3.ebuild
rename to sci-chemistry/pdbcat/pdbcat-1.3-r1.ebuild
index ccdbd9928160..270e7b98fb36 100644
--- a/sci-chemistry/pdbcat/pdbcat-1.3.ebuild
+++ b/sci-chemistry/pdbcat/pdbcat-1.3-r1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=8
 
-inherit cmake-utils
+inherit cmake
 
 DESCRIPTION="Manipulate and process PDB files using tools such as Perl, awk, 
etc"
 HOMEPAGE="http://www.ks.uiuc.edu/Development/MDTools/pdbcat/;
@@ -12,12 +12,15 @@ 
SRC_URI="http://www.ks.uiuc.edu/Development/MDTools/${PN}/files/${P}.tar.gz;
 LICENSE="free-noncomm"
 SLOT="0"
 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE=""
 
-PATCHES=( "${FILESDIR}"/${P}-gcc.patch )
+PATCHES=(
+   "${FILESDIR}"/${P}-gcc.patch
+)
+
 DOCS=( README )
 
 src_prepare() {
cp "${FILESDIR}"/CMakeLists.txt . || die
-   cmake-utils_src_prepare
+
+   cmake_src_prepare
 }



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

2022-02-27 Thread Sam James
commit: 8c76adae7a10da734b6cf783374f289bff66c897
Author: Sam James  gentoo  org>
AuthorDate: Sun Feb 27 22:34:31 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Feb 27 22:34:44 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c76adae

profiles: fix sys-libs/tapi mask/last-rites

Bug: https://bugs.gentoo.org/834306
Signed-off-by: Sam James  gentoo.org>

 profiles/package.mask | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/profiles/package.mask b/profiles/package.mask
index 9b2fbe6fc54f..099fcf800715 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -57,7 +57,7 @@ x11-libs/libyui-qt
 # Masked for removal, needs updates, significant amount of work, no
 # Clang toolchain available to test with
 # Removal on 2022-03-29.  Bug #834306
-sys-apps/tapi
+sys-libs/tapi
 
 # Michał Górny  (2022-02-26)
 # The original Midori browser has been discontinued, and the new



[gentoo-commits] repo/gentoo:master commit in: app-portage/nattka/

2022-02-27 Thread Michał Górny
commit: acae02bfac5003977d1d29c7d4d901fc9e842b33
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Feb 27 22:29:55 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Feb 27 22:34:33 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=acae02bf

app-portage/nattka: Remove the live ebuild

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

 app-portage/nattka/nattka-.ebuild | 34 --
 1 file changed, 34 deletions(-)

diff --git a/app-portage/nattka/nattka-.ebuild 
b/app-portage/nattka/nattka-.ebuild
deleted file mode 100644
index 62f83dc85154..
--- a/app-portage/nattka/nattka-.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 2020-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{8..10} )
-inherit distutils-r1 git-r3
-
-DESCRIPTION="A New Arch Tester Toolkit -- open-source stable-bot replacement"
-HOMEPAGE="https://github.com/mgorny/nattka/;
-EGIT_REPO_URI="https://github.com/mgorny/nattka.git;
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS=""
-IUSE="depgraph-order"
-
-RDEPEND="
-   dev-python/lxml[${PYTHON_USEDEP}]
-   dev-python/requests[${PYTHON_USEDEP}]
-   dev-util/pkgcheck[${PYTHON_USEDEP}]
-   dev-vcs/git
-   sys-apps/pkgcore[${PYTHON_USEDEP}]
-   depgraph-order? (
-   dev-python/networkx[${PYTHON_USEDEP}]
-   )"
-BDEPEND="
-   test? (
-   dev-python/networkx[${PYTHON_USEDEP}]
-   dev-python/vcrpy[${PYTHON_USEDEP}]
-   )"
-
-distutils_enable_sphinx doc --no-autodoc
-distutils_enable_tests pytest



[gentoo-commits] repo/gentoo:master commit in: app-portage/nattka/

2022-02-27 Thread Michał Górny
commit: 0affe88385e24e740fa723c32f1dfc8b89311e6d
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Feb 27 22:30:45 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Feb 27 22:34:34 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0affe883

app-portage/nattka: Bump to 0.3

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

 app-portage/nattka/Manifest  |  1 +
 app-portage/nattka/nattka-0.3.ebuild | 37 
 2 files changed, 38 insertions(+)

diff --git a/app-portage/nattka/Manifest b/app-portage/nattka/Manifest
index 608f2fde4947..d574afcda6fb 100644
--- a/app-portage/nattka/Manifest
+++ b/app-portage/nattka/Manifest
@@ -1 +1,2 @@
 DIST nattka-0.2.19.tar.gz 93800 BLAKE2B 
65efff2454cdb24f3b71dc5713adbf3bda3976ed958622f7adec14e3708a53531aac6801e838fd21346ce02974fa79bcb82c3f4d2a6555095fa8d81db9ad2992
 SHA512 
7508a78fa774a9229caa573426839ec84210e9a2d38b7ca9cd47d857b9922b946e9e31fadf946f001565ce6dc65103bca8af58935d7eb2fcf32da423345ce61a
+DIST nattka-0.3.tar.gz 93914 BLAKE2B 
c38ec336ed202e508e1cb4bfcae0586b94a6fd55df97d5be514caddf0113b9588496492ebc68dbda45c4a3034451368d32a3f53f5ebc8f3136515614ac70ecab
 SHA512 
390b276ab11e5de056e165f95574b5a97edbcad3adf876e20bb6ef8accf94629428c4fc60bbea4eaf883d5e0a9f6e7ea00aff74989d31bdd59c418041d9164dc

diff --git a/app-portage/nattka/nattka-0.3.ebuild 
b/app-portage/nattka/nattka-0.3.ebuild
new file mode 100644
index ..92798cde8626
--- /dev/null
+++ b/app-portage/nattka/nattka-0.3.ebuild
@@ -0,0 +1,37 @@
+# Copyright 2020-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=flit
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="A New Arch Tester Toolkit -- open-source stable-bot replacement"
+HOMEPAGE="https://github.com/mgorny/nattka/;
+SRC_URI="https://github.com/mgorny/nattka/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86 ~x64-macos"
+IUSE="depgraph-order"
+
+RDEPEND="
+   dev-python/lxml[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-util/pkgcheck[${PYTHON_USEDEP}]
+   dev-vcs/git
+   sys-apps/pkgcore[${PYTHON_USEDEP}]
+   depgraph-order? (
+   dev-python/networkx[${PYTHON_USEDEP}]
+   )
+"
+BDEPEND="
+   test? (
+   dev-python/vcrpy[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_sphinx doc --no-autodoc
+distutils_enable_tests pytest



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

2022-02-27 Thread Sam James
commit: 5120fff1fcd280952b5e3d5688e0cc55ed5dda35
Author: Sam James  gentoo  org>
AuthorDate: Sun Feb 27 22:31:09 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Feb 27 22:33:58 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5120fff1

profiles: last-rite dev-libs/smack

Bug: https://bugs.gentoo.org/774495
Signed-off-by: Sam James  gentoo.org>

 profiles/package.mask | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/profiles/package.mask b/profiles/package.mask
index a426f08f91a4..9b2fbe6fc54f 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -33,6 +33,12 @@
 
 #--- END OF EXAMPLES ---
 
+# Sam James  (2022-02-27)
+# EAPI=6 consumer of deprecated cmake-utils.eclass. No reverse
+# dependencies and will soon be unbuildable with new CMake.
+# bug #774495. Dead HOMEPAGE. Removal on 2022-03-27.
+dev-libs/smack
+
 # Andreas K. Hüttel  (2022-02-27)
 # Outdated, fails to build with glibc-2.34, bug 806755
 # Has been integrated into net-fs/nfs-utils, please use that instead.



[gentoo-commits] repo/gentoo:master commit in: dev-embedded/mcu8051ide/

2022-02-27 Thread Andreas Sturmlechner
commit: 7a9efa5fabff2acbb47bec0431866dbbd161e16b
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Feb 27 22:32:23 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 27 22:32:36 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a9efa5f

dev-embedded/mcu8051ide: Drop 1.4.10 (r0), EAPI-6--

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

 dev-embedded/mcu8051ide/mcu8051ide-1.4.10.ebuild | 30 
 1 file changed, 30 deletions(-)

diff --git a/dev-embedded/mcu8051ide/mcu8051ide-1.4.10.ebuild 
b/dev-embedded/mcu8051ide/mcu8051ide-1.4.10.ebuild
deleted file mode 100644
index 0ea0c430b591..
--- a/dev-embedded/mcu8051ide/mcu8051ide-1.4.10.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit cmake-utils xdg
-
-DESCRIPTION="Graphical IDE for microcontrollers based on 8051"
-HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage;
-SRC_URI="mirror://gentoo/${P}.tar.gz"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~amd64"
-
-# The doxygen dependency is suspect, but it appears to be used at runtime.
-RDEPEND="
-   >=dev-embedded/sdcc-2.5[mcs51]
-   >=app-doc/doxygen-1.7
-   >=dev-util/indent-2.2
-   >=app-text/hunspell-1.3
-   >=dev-tcltk/bwidget-1.8
-   >dev-tcltk/itcl-3.3
-   >=dev-lang/tcl-8.5.9:*
-   >=dev-tcltk/tdom-0.8
-   >=dev-tcltk/tcllib-1.11
-   >=dev-lang/tk-8.5.9:*
-   >=dev-tcltk/tkimg-1.4
-   >=dev-tcltk/tclx-8.4
-"
-DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: dev-embedded/mcu8051ide/, dev-embedded/mcu8051ide/files/

2022-02-27 Thread Andreas Sturmlechner
commit: 51b061083a0aeaa9580055a8082153be17990fe4
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Feb 27 22:31:44 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 27 22:32:36 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51b06108

dev-embedded/mcu8051ide: EAPI-8 bump, switch to cmake.eclass

Fix HOMEPAGE
Fix appdata installation path
Fix desktop file
Drop install of useless files
Don't install compressed manpages

Closes: https://bugs.gentoo.org/735720
Closes: https://bugs.gentoo.org/735726
Closes: https://bugs.gentoo.org/834305
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 .../files/mcu8051ide-1.4.10-appdata.patch  | 22 ++
 .../mcu8051ide/files/mcu8051ide-1.4.10-cmake.patch | 36 
 .../files/mcu8051ide-1.4.10-desktop-file.patch | 23 ++
 .../mcu8051ide/mcu8051ide-1.4.10-r1.ebuild | 49 ++
 4 files changed, 130 insertions(+)

diff --git a/dev-embedded/mcu8051ide/files/mcu8051ide-1.4.10-appdata.patch 
b/dev-embedded/mcu8051ide/files/mcu8051ide-1.4.10-appdata.patch
new file mode 100644
index ..c92f5aedfd4a
--- /dev/null
+++ b/dev-embedded/mcu8051ide/files/mcu8051ide-1.4.10-appdata.patch
@@ -0,0 +1,22 @@
+From: Carlos Henrique Lima Melara 
+Subject: Update the appdata file to comply with the new standard
+Last-Update: 2020-06-27
+
+--- a/mcu8051ide.appdata.xml
 b/mcu8051ide.appdata.xml
+@@ -1,7 +1,7 @@
+ 
+ 
+-
+- mcu8051ide.desktop
++
++ mcu8051ide.desktop
+  CC0-1.0
+  GPL-2.0+
+  MCU 8051 IDE
+@@ -19,4 +19,4 @@
+  https://sourceforge.net/projects/mcu8051ide/
+  martin.osm...@gmail.com
+  Development
+-
++

diff --git a/dev-embedded/mcu8051ide/files/mcu8051ide-1.4.10-cmake.patch 
b/dev-embedded/mcu8051ide/files/mcu8051ide-1.4.10-cmake.patch
new file mode 100644
index ..04b24f4c1e87
--- /dev/null
+++ b/dev-embedded/mcu8051ide/files/mcu8051ide-1.4.10-cmake.patch
@@ -0,0 +1,36 @@
+From: Carlos Henrique Lima Melara 
+Subject: Remove unneeded files installation and update appstream location
+Last-Update: 2020-06-27
+
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -53,10 +53,6 @@
+   ENDFOREACH(ext)
+ ENDFOREACH(subdir)
+ 
+-# Install manual page(s)
+-FILE(GLOB man doc/man/*)
+-INSTALL(FILES ${man} DESTINATION share/man/man1)
+-
+ # Install demonstration project files
+ FILE(GLOB demo demo/*)
+ INSTALL(FILES ${demo} DESTINATION ${target_installation_directory}/demo)
+@@ -72,7 +68,7 @@ INSTALL(FILES ${translations} DESTINATIO
+ # Install .desktop spec and application icon
+ INSTALL(FILES mcu8051ide.png DESTINATION share/pixmaps/)
+ INSTALL(FILES mcu8051ide.desktop DESTINATION share/applications/)
+-INSTALL(FILES mcu8051ide.appdata.xml DESTINATION share/appdata/)
++INSTALL(FILES mcu8051ide.appdata.xml DESTINATION share/metainfo/)
+ INSTALL(FILES application-x-mcu8051ide.xml DESTINATION share/mime/packages/)
+ 
+ # Install launcher
+@@ -84,9 +80,3 @@ INSTALL(
+   OWNER_WRITE OWNER_READ OWNER_EXECUTE
+   GROUP_EXECUTE GROUP_READ
+ )
+-
+-# Install misc. files
+-INSTALL(
+-  FILES ChangeLog LICENSE
+-  DESTINATION ${target_installation_directory}
+-)

diff --git a/dev-embedded/mcu8051ide/files/mcu8051ide-1.4.10-desktop-file.patch 
b/dev-embedded/mcu8051ide/files/mcu8051ide-1.4.10-desktop-file.patch
new file mode 100644
index ..00dde9bdef96
--- /dev/null
+++ b/dev-embedded/mcu8051ide/files/mcu8051ide-1.4.10-desktop-file.patch
@@ -0,0 +1,23 @@
+Subject: Add Keywords and Field code to Exec field
+ Fabricio added some keywords and Carlos added the Field code.
+
+Author: Fabricio Alcalde 
+Author: Carlos Henrique Lima Melara 
+Last-Update: 2020-06-27
+
+--- a/mcu8051ide.desktop
 b/mcu8051ide.desktop
+@@ -2,7 +2,7 @@
+ Categories=Development;
+ Comment=Graphical IDE for MCS-51 based microcontrollers
+ Comment[en_US]=Graphical IDE for MCS-51 based microcontrollers
+-Exec=mcu8051ide
++Exec=mcu8051ide %f
+ GenericName=MCU 8051 IDE
+ GenericName[en_US]=MCU 8051 IDE
+ Icon=mcu8051ide
+@@ -17,3 +17,4 @@ Version=1.0
+ X-DCOP-ServiceType=
+ X-KDE-SubstituteUID=false
+ X-KDE-Username=
++Keywords=mcu8051ide;8051;ide

diff --git a/dev-embedded/mcu8051ide/mcu8051ide-1.4.10-r1.ebuild 
b/dev-embedded/mcu8051ide/mcu8051ide-1.4.10-r1.ebuild
new file mode 100644
index ..25736dcc3994
--- /dev/null
+++ b/dev-embedded/mcu8051ide/mcu8051ide-1.4.10-r1.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake xdg
+
+DESCRIPTION="Graphical IDE for microcontrollers based on 8051"
+HOMEPAGE="https://sourceforge.net/projects/mcu8051ide/;
+SRC_URI="mirror://gentoo/${P}.tar.gz"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64"
+
+# The doxygen dependency is suspect, but it appears to be used at runtime.
+RDEPEND="
+   >=app-doc/doxygen-1.7
+   

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

2022-02-27 Thread Sam James
commit: 847ef792906b51f2914dc46eae8199c7eafd5ce0
Author: Sam James  gentoo  org>
AuthorDate: Sun Feb 27 22:26:31 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Feb 27 22:26:31 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=847ef792

dev-db/mariadb: Stabilize 10.5.13 ppc, #829392

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

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

diff --git a/dev-db/mariadb/mariadb-10.5.13.ebuild 
b/dev-db/mariadb/mariadb-10.5.13.ebuild
index 5d08dca8e812..859ec7e16a9e 100644
--- a/dev-db/mariadb/mariadb-10.5.13.ebuild
+++ b/dev-db/mariadb/mariadb-10.5.13.ebuild
@@ -31,7 +31,7 @@ REQUIRED_USE="jdbc? ( extraengine server !static )
?? ( tcmalloc jemalloc )
static? ( yassl !pam )"
 
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~riscv ~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 ~riscv ~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: dev-db/mariadb/

2022-02-27 Thread Sam James
commit: 1a9da25ff5ca9df1062003d3463a99caee6e7781
Author: Sam James  gentoo  org>
AuthorDate: Sun Feb 27 22:26:27 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Feb 27 22:26:27 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a9da25f

dev-db/mariadb: Stabilize 10.4.22 ppc, #829392

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

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

diff --git a/dev-db/mariadb/mariadb-10.4.22.ebuild 
b/dev-db/mariadb/mariadb-10.4.22.ebuild
index 6a62a063bfd4..6891a95f444d 100644
--- a/dev-db/mariadb/mariadb-10.4.22.ebuild
+++ b/dev-db/mariadb/mariadb-10.4.22.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: dev-db/mariadb/

2022-02-27 Thread Sam James
commit: ff7eea4e96fc84bb7b435ba71c94da68260cbb1b
Author: Sam James  gentoo  org>
AuthorDate: Sun Feb 27 22:26:24 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Feb 27 22:26:24 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff7eea4e

dev-db/mariadb: Stabilize 10.3.32 ppc, #829392

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

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

diff --git a/dev-db/mariadb/mariadb-10.3.32.ebuild 
b/dev-db/mariadb/mariadb-10.3.32.ebuild
index fed581f1e375..5864e882e22d 100644
--- a/dev-db/mariadb/mariadb-10.3.32.ebuild
+++ b/dev-db/mariadb/mariadb-10.3.32.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: dev-db/mariadb/

2022-02-27 Thread Sam James
commit: bce8f9cc0025ba167c711622346990474f463168
Author: Sam James  gentoo  org>
AuthorDate: Sun Feb 27 22:26:20 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Feb 27 22:26:20 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bce8f9cc

dev-db/mariadb: Stabilize 10.2.41 ppc, #829392

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

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

diff --git a/dev-db/mariadb/mariadb-10.2.41.ebuild 
b/dev-db/mariadb/mariadb-10.2.41.ebuild
index f0462da46138..cfa72a94cf62 100644
--- a/dev-db/mariadb/mariadb-10.2.41.ebuild
+++ b/dev-db/mariadb/mariadb-10.2.41.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: dev-db/mysql-connector-c/

2022-02-27 Thread Sam James
commit: f75188fc40fc0f386213ddbd160f402e08ddb664
Author: Sam James  gentoo  org>
AuthorDate: Sun Feb 27 22:24:33 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Feb 27 22:24:33 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f75188fc

dev-db/mysql-connector-c: Stabilize 8.0.27 ppc64, #822258

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

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

diff --git a/dev-db/mysql-connector-c/mysql-connector-c-8.0.27.ebuild 
b/dev-db/mysql-connector-c/mysql-connector-c-8.0.27.ebuild
index 7aee9e8d3573..168e1f70f883 100644
--- a/dev-db/mysql-connector-c/mysql-connector-c-8.0.27.ebuild
+++ b/dev-db/mysql-connector-c/mysql-connector-c-8.0.27.ebuild
@@ -18,7 +18,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://dev.mysql.com/get/Downloads/MySQL-$(ver_cut 
1-2)/mysql-boost-${PV}.tar.gz"
-   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv 
~s390 sparc x86"
+   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~riscv 
~s390 sparc x86"
 
S="${WORKDIR}/mysql-${PV}"
 fi



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

2022-02-27 Thread Sam James
commit: a51f472161e83a0c10479407f5b41c0058643b54
Author: Sam James  gentoo  org>
AuthorDate: Sun Feb 27 22:24:46 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Feb 27 22:24:46 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a51f4721

dev-db/mysql-connector-c++: Stabilize 8.0.27 ppc64, #822258

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

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

diff --git a/dev-db/mysql-connector-c++/mysql-connector-c++-8.0.27.ebuild 
b/dev-db/mysql-connector-c++/mysql-connector-c++-8.0.27.ebuild
index f9457c31b7d3..3fb7a1ce6e83 100644
--- a/dev-db/mysql-connector-c++/mysql-connector-c++-8.0.27.ebuild
+++ b/dev-db/mysql-connector-c++/mysql-connector-c++-8.0.27.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://dev.mysql.com/get/Downloads/${URI_DIR}/${P}-src.tar.gz;
 LICENSE="Artistic GPL-2"
 SLOT="0"
 # -ppc, -sparc for bug #711940
-KEYWORDS="amd64 arm ~arm64 -ppc ~ppc64 -sparc x86"
+KEYWORDS="amd64 arm ~arm64 -ppc ppc64 -sparc x86"
 IUSE="+legacy"
 
 RDEPEND="



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

2022-02-27 Thread Sam James
commit: 05ce2eaf5910965a0b7b151c298c72c71d8a59da
Author: Sam James  gentoo  org>
AuthorDate: Sun Feb 27 22:24:39 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Feb 27 22:24:39 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05ce2eaf

dev-db/mysql: Stabilize 5.7.36-r1 ppc64, #822258

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

 dev-db/mysql/mysql-5.7.36-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-db/mysql/mysql-5.7.36-r1.ebuild 
b/dev-db/mysql/mysql-5.7.36-r1.ebuild
index 17090aef5a0e..ecda1ce67a3d 100644
--- a/dev-db/mysql/mysql-5.7.36-r1.ebuild
+++ b/dev-db/mysql/mysql-5.7.36-r1.ebuild
@@ -27,7 +27,7 @@ RESTRICT="!test? ( test )"
 
 REQUIRED_USE="?? ( tcmalloc jemalloc )"
 
-KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc x86 
~amd64-linux ~x86-linux ~x64-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sparc x86 
~amd64-linux ~x86-linux ~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: dev-db/mysql/

2022-02-27 Thread Sam James
commit: beb0cbb9bfd260e6d606f594ac7c4f13e27baa89
Author: Sam James  gentoo  org>
AuthorDate: Sun Feb 27 22:24:42 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Feb 27 22:24:42 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=beb0cbb9

dev-db/mysql: Stabilize 8.0.27 ppc64, #822258

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

 dev-db/mysql/mysql-8.0.27.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-db/mysql/mysql-8.0.27.ebuild b/dev-db/mysql/mysql-8.0.27.ebuild
index bb140baf5ef2..a6a52bcee87b 100644
--- a/dev-db/mysql/mysql-8.0.27.ebuild
+++ b/dev-db/mysql/mysql-8.0.27.ebuild
@@ -37,7 +37,7 @@ REQUIRED_USE="?? ( tcmalloc jemalloc )
tcmalloc? ( server )"
 
 # -ppc, -riscv for bug #761715
-KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~mips -ppc ~ppc64 -riscv ~s390 ~sparc 
x86 ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~mips -ppc ppc64 -riscv ~s390 ~sparc x86 
~amd64-linux ~x86-linux ~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: games-server/bedrock-server/

2022-02-27 Thread Conrad Kostecki
commit: bfdc936edf532f7dac6fd3597c8a229f99885d6b
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Sun Feb 27 22:13:35 2022 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Sun Feb 27 22:13:35 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bfdc936e

games-server/bedrock-server: add 1.18.12.01

Signed-off-by: Conrad Kostecki  gentoo.org>

 games-server/bedrock-server/Manifest   |  1 +
 .../bedrock-server-1.18.12.01.ebuild   | 53 ++
 2 files changed, 54 insertions(+)

diff --git a/games-server/bedrock-server/Manifest 
b/games-server/bedrock-server/Manifest
index d62d779c5724..f2bbab408cdf 100644
--- a/games-server/bedrock-server/Manifest
+++ b/games-server/bedrock-server/Manifest
@@ -1,2 +1,3 @@
 DIST bedrock-server-1.18.11.01.zip 67702744 BLAKE2B 
9c8f9ebb72c1e1bf83102b5bc19fd61e3d08e197bc0dbe5c7c39f7d80cfa13936ca9c887bf133c29f2b819407474426c0bb3092b6211a89a7ec295cb577073bb
 SHA512 
a7684f55b60ca81aeb243da9dcbed7febf12f66abd3b738c80b7e65599e33e6486845026c318f81e971b2313007780c2145ef3274b40b8f0cad002d8235b7624
+DIST bedrock-server-1.18.12.01.zip 67706215 BLAKE2B 
8047a014d01fef4e5e438ecfe5886b154fe424599d72e6c3405c8a7663df883e250e20ffa46e0eb6e9df5e867d22e5e193a0e389049cd67d355873cb0e68a798
 SHA512 
fe0bade92143759b4d0eccd4586a15b62083d95606cd62a7fb1fe5ec1a36496512a4414493c210f09c42b8c117db760236861913bbf6d17bc024cdfb83e5d1e2
 DIST bedrock-server-1.18.2.03.zip 63042052 BLAKE2B 
e996c8a49b9c25a77127097f5c9b23339b0eeaae26dc0b011bdb38a6627408eb805ffed070df68c147646a78c8a00f9b0121cea958b7e4ab23300f66ff034713
 SHA512 
353e525ad8db31616925f5e0947240542019bd2e9b3337c4f83329c4c530fad81754c53daf9e5c9b23cadbddafe7d84b887e5b682dec00a77e82aa34b4bd2f43

diff --git a/games-server/bedrock-server/bedrock-server-1.18.12.01.ebuild 
b/games-server/bedrock-server/bedrock-server-1.18.12.01.ebuild
new file mode 100644
index ..27a0e1aed100
--- /dev/null
+++ b/games-server/bedrock-server/bedrock-server-1.18.12.01.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="The official bedrock (non-java) based server for the sandbox 
video game"
+HOMEPAGE="https://www.minecraft.net/;
+SRC_URI="https://minecraft.azureedge.net/bin-linux/${P}.zip;
+S="${WORKDIR}"
+
+LICENSE="Mojang"
+SLOT="0"
+KEYWORDS="-* ~amd64"
+
+RDEPEND="
+   acct-group/bedrock
+   acct-user/bedrock
+   app-misc/dtach
+   dev-libs/openssl:0/1.1
+   sys-libs/zlib
+"
+
+BDEPEND="app-arch/unzip"
+
+RESTRICT="bindist mirror"
+
+DOCS=(
+   "bedrock_server_how_to.html"
+   "release-notes.txt"
+)
+
+QA_PREBUILT="opt/bedrock-server/bedrock_server"
+
+src_compile() {
+   :;
+}
+
+src_install() {
+   exeinto /opt/bedrock-server
+   doexe bedrock_server
+
+   insinto /opt/bedrock-server
+   doins {allowlist,permissions}.json server.properties
+   doins -r {behavior,resource}_packs definitions structures
+
+   dodir /opt/bin
+   dosym ../bedrock-server/bedrock_server /opt/bin/bedrock-server
+
+   newinitd "${FILESDIR}"/bedrock-server.initd-r2 bedrock-server
+   newconfd "${FILESDIR}"/bedrock-server.confd bedrock-server
+
+   einstalldocs
+}



[gentoo-commits] repo/gentoo:master commit in: games-server/bedrock-server/

2022-02-27 Thread Conrad Kostecki
commit: 4744fddc813c97879b4c36f90dcb64f0feeadf5f
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Sun Feb 27 22:14:36 2022 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Sun Feb 27 22:14:36 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4744fddc

games-server/bedrock-server: drop 1.18.11.01

Signed-off-by: Conrad Kostecki  gentoo.org>

 games-server/bedrock-server/Manifest   |  1 -
 .../bedrock-server-1.18.11.01.ebuild   | 53 --
 2 files changed, 54 deletions(-)

diff --git a/games-server/bedrock-server/Manifest 
b/games-server/bedrock-server/Manifest
index f2bbab408cdf..e35d88529426 100644
--- a/games-server/bedrock-server/Manifest
+++ b/games-server/bedrock-server/Manifest
@@ -1,3 +1,2 @@
-DIST bedrock-server-1.18.11.01.zip 67702744 BLAKE2B 
9c8f9ebb72c1e1bf83102b5bc19fd61e3d08e197bc0dbe5c7c39f7d80cfa13936ca9c887bf133c29f2b819407474426c0bb3092b6211a89a7ec295cb577073bb
 SHA512 
a7684f55b60ca81aeb243da9dcbed7febf12f66abd3b738c80b7e65599e33e6486845026c318f81e971b2313007780c2145ef3274b40b8f0cad002d8235b7624
 DIST bedrock-server-1.18.12.01.zip 67706215 BLAKE2B 
8047a014d01fef4e5e438ecfe5886b154fe424599d72e6c3405c8a7663df883e250e20ffa46e0eb6e9df5e867d22e5e193a0e389049cd67d355873cb0e68a798
 SHA512 
fe0bade92143759b4d0eccd4586a15b62083d95606cd62a7fb1fe5ec1a36496512a4414493c210f09c42b8c117db760236861913bbf6d17bc024cdfb83e5d1e2
 DIST bedrock-server-1.18.2.03.zip 63042052 BLAKE2B 
e996c8a49b9c25a77127097f5c9b23339b0eeaae26dc0b011bdb38a6627408eb805ffed070df68c147646a78c8a00f9b0121cea958b7e4ab23300f66ff034713
 SHA512 
353e525ad8db31616925f5e0947240542019bd2e9b3337c4f83329c4c530fad81754c53daf9e5c9b23cadbddafe7d84b887e5b682dec00a77e82aa34b4bd2f43

diff --git a/games-server/bedrock-server/bedrock-server-1.18.11.01.ebuild 
b/games-server/bedrock-server/bedrock-server-1.18.11.01.ebuild
deleted file mode 100644
index 27a0e1aed100..
--- a/games-server/bedrock-server/bedrock-server-1.18.11.01.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DESCRIPTION="The official bedrock (non-java) based server for the sandbox 
video game"
-HOMEPAGE="https://www.minecraft.net/;
-SRC_URI="https://minecraft.azureedge.net/bin-linux/${P}.zip;
-S="${WORKDIR}"
-
-LICENSE="Mojang"
-SLOT="0"
-KEYWORDS="-* ~amd64"
-
-RDEPEND="
-   acct-group/bedrock
-   acct-user/bedrock
-   app-misc/dtach
-   dev-libs/openssl:0/1.1
-   sys-libs/zlib
-"
-
-BDEPEND="app-arch/unzip"
-
-RESTRICT="bindist mirror"
-
-DOCS=(
-   "bedrock_server_how_to.html"
-   "release-notes.txt"
-)
-
-QA_PREBUILT="opt/bedrock-server/bedrock_server"
-
-src_compile() {
-   :;
-}
-
-src_install() {
-   exeinto /opt/bedrock-server
-   doexe bedrock_server
-
-   insinto /opt/bedrock-server
-   doins {allowlist,permissions}.json server.properties
-   doins -r {behavior,resource}_packs definitions structures
-
-   dodir /opt/bin
-   dosym ../bedrock-server/bedrock_server /opt/bin/bedrock-server
-
-   newinitd "${FILESDIR}"/bedrock-server.initd-r2 bedrock-server
-   newconfd "${FILESDIR}"/bedrock-server.confd bedrock-server
-
-   einstalldocs
-}



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

2022-02-27 Thread Andreas K. Hüttel
commit: f2f08e6c2e2b7794d0cb332c8290132bd736f4cc
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sun Feb 27 21:51:29 2022 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Sun Feb 27 21:51:29 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2f08e6c

package.mask: Last-rite net-libs/libnfsidmap

Bug: https://bugs.gentoo.org/806755
Signed-off-by: Andreas K. Hüttel  gentoo.org>

 profiles/package.mask | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/profiles/package.mask b/profiles/package.mask
index 1b1d52aa7f8b..a426f08f91a4 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -33,6 +33,12 @@
 
 #--- END OF EXAMPLES ---
 
+# Andreas K. Hüttel  (2022-02-27)
+# Outdated, fails to build with glibc-2.34, bug 806755
+# Has been integrated into net-fs/nfs-utils, please use that instead.
+# Removal in 30 days.
+net-libs/libnfsidmap
+
 # Andreas Sturmlechner  (2022-02-27)
 # No revdeps since begin of gentoo.git history, outdated and unmaintained.
 # Bug #834307. Removal on 2022-03-29.



[gentoo-commits] repo/gentoo:master commit in: app-office/libreoffice/

2022-02-27 Thread Andreas Sturmlechner
commit: 18b9bc4a7957e31a53b99f95c41a9ba60dfb0d95
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Feb 27 17:26:17 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 27 21:41:27 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18b9bc4a

app-office/libreoffice: Drop upstream backported patch from 7.3.

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

 app-office/libreoffice/libreoffice-7.3..ebuild | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/app-office/libreoffice/libreoffice-7.3..ebuild 
b/app-office/libreoffice/libreoffice-7.3..ebuild
index c8ad5df807a3..74a8caa49137 100644
--- a/app-office/libreoffice/libreoffice-7.3..ebuild
+++ b/app-office/libreoffice/libreoffice-7.3..ebuild
@@ -297,9 +297,6 @@ PATCHES=(
"${FILESDIR}/${PN}-5.3.4.2-kioclient5.patch"
"${FILESDIR}/${PN}-6.1-nomancompress.patch"
"${FILESDIR}/${PN}-7.2.0.4-qt5detect.patch"
-
-   # master branch
-   "${FILESDIR}/${PN}-7.2.5.2-kf591.patch"
 )
 
 S="${WORKDIR}/${PN}-${MY_PV}"



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

2022-02-27 Thread Andreas Sturmlechner
commit: ab18212dd0b3ee4733537b95c48fd33869387483
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Feb 27 16:48:23 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 27 21:41:27 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab18212d

profiles: Mask x11-libs/libyui{,-gtk,-ncurses,-qt} for removal

Bug: https://bugs.gentoo.org/834307
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 profiles/package.mask | 8 
 1 file changed, 8 insertions(+)

diff --git a/profiles/package.mask b/profiles/package.mask
index 966e73e9b60b..1b1d52aa7f8b 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -33,6 +33,14 @@
 
 #--- END OF EXAMPLES ---
 
+# Andreas Sturmlechner  (2022-02-27)
+# No revdeps since begin of gentoo.git history, outdated and unmaintained.
+# Bug #834307. Removal on 2022-03-29.
+x11-libs/libyui
+x11-libs/libyui-gtk
+x11-libs/libyui-ncurses
+x11-libs/libyui-qt
+
 # Fabian Groffen  (2022-02-27)
 # Masked for removal, needs updates, significant amount of work, no
 # Clang toolchain available to test with



[gentoo-commits] repo/gentoo:master commit in: dev-games/aseprite/

2022-02-27 Thread Andreas Sturmlechner
commit: 6952b9fa8e8d0292a331705cffc49a0974895397
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Feb 26 20:33:34 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 27 21:41:27 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6952b9fa

dev-games/aseprite: Drop 1.1.6

Bug: https://bugs.gentoo.org/770664
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 dev-games/aseprite/Manifest  |  1 -
 dev-games/aseprite/aseprite-1.1.6.ebuild | 93 
 2 files changed, 94 deletions(-)

diff --git a/dev-games/aseprite/Manifest b/dev-games/aseprite/Manifest
index 38b5c22a6fae..61be6a72eed5 100644
--- a/dev-games/aseprite/Manifest
+++ b/dev-games/aseprite/Manifest
@@ -1,2 +1 @@
-DIST Aseprite-v1.1.6-Source.zip 11801981 BLAKE2B 
f20186a1669d7f9ab1453a2104a54228c22e2ef1703bba200f44c965b3fb3d9310c1ddd343db9c27ddca3564e4245352476c5228e171f1c0e74c553e5a59d419
 SHA512 
d87bcc5ece64cbc772ea5d4dc1edf29943d9038221905c0263511852afbb4e9119ce82468502a78c286729bb91389d08e3a8b7f358e4f6f8fe88507e7e69c9ac
 DIST Aseprite-v1.1.9-Source.zip 11746265 BLAKE2B 
fa16be059a7bb3b83705c56e7e93cbbb71676617a8d0798f0e481b09199ae069b85826615f8609acabb10a4e9a9da0857f2f99b03c2b913f26eee6d4dfdc0f0a
 SHA512 
44c5878c67e69d2510c862e8f6869d727aa47b3d23d41d4e7318eca54c6d72fc5f89e72c70c160ce6da78fa091e11eedefa74e0273dc4cea59b2fe16c8851d9e

diff --git a/dev-games/aseprite/aseprite-1.1.6.ebuild 
b/dev-games/aseprite/aseprite-1.1.6.ebuild
deleted file mode 100644
index aab455bf61f3..
--- a/dev-games/aseprite/aseprite-1.1.6.ebuild
+++ /dev/null
@@ -1,93 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit cmake-utils desktop flag-o-matic
-
-DESCRIPTION="Animated sprite editor & pixel art tool"
-HOMEPAGE="https://www.aseprite.org;
-SRC_URI="https://github.com/aseprite/aseprite/releases/download/v${PV}/Aseprite-v${PV}-Source.zip;
-
-# See https://github.com/aseprite/aseprite#credits
-# Some bundled third-party packages built-in:
-# gtest duktape modp_b64 simpleini
-LICENSE="BSD GPL-2 MIT"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-IUSE="debug kde gtk3 test webp"
-RESTRICT="!test? ( test )"
-
-RDEPEND="dev-libs/tinyxml
-   media-libs/allegro:0[X,png]
-   media-libs/freetype
-   media-libs/giflib:=
-   webp? ( media-libs/libwebp )
-   media-libs/libpng:0=
-   net-misc/curl
-   sys-libs/zlib
-   virtual/jpeg:0
-   x11-libs/libX11
-   x11-libs/pixman
-   gtk3? ( dev-cpp/gtkmm:3.0 )
-   kde? (
-   dev-qt/qtcore:5
-   kde-frameworks/kio:5 )"
-DEPEND="${RDEPEND}
-   app-arch/unzip
-   gtk3? ( virtual/pkgconfig )
-   webp? ( virtual/pkgconfig )"
-
-DOCS=( docs/files/ase.txt
-   docs/files/fli.txt
-   docs/files/msk.txt
-   docs/files/pic.txt
-   docs/files/picpro.txt
-   README.md )
-
-S="${WORKDIR}"
-
-src_prepare() {
-   cmake-utils_src_prepare
-
-   # Fix to make flag-o-matic work.
-   if use debug ; then
-   sed -i '/-DNDEBUG/d' CMakeLists.txt || die
-   fi
-
-   # Fix shebang in thumbnailer
-   sed -i -e 's:#!/usr/bin/sh:#!/bin/sh:' desktop/aseprite-thumbnailer || 
die
-}
-
-src_configure() {
-   use debug && append-cppflags -DDEBUGMODE -D_DEBUG
-
-   local mycmakeargs=(
-   -DENABLE_UPDATER=OFF
-   -DFULLSCREEN_PLATFORM=ON
-   -DUSE_SHARED_ALLEGRO4=ON
-   -DUSE_SHARED_CURL=ON
-   -DUSE_SHARED_FREETYPE=ON
-   -DUSE_SHARED_GIFLIB=ON
-   -DUSE_SHARED_JPEGLIB=ON
-   -DUSE_SHARED_LIBLOADPNG=ON
-   -DUSE_SHARED_LIBPNG=ON
-   -DUSE_SHARED_PIXMAN=ON
-   -DUSE_SHARED_TINYXML=ON
-   -DUSE_SHARED_ZLIB=ON
-   -DUSE_SHARED_LIBWEBP=ON
-   -DWITH_DESKTOP_INTEGRATION=ON
-   -DWITH_GTK_FILE_DIALOG_SUPPORT="$(usex gtk3)"
-   -DWITH_QT_THUMBNAILER="$(usex kde)"
-   -DWITH_WEBP_SUPPORT="$(usex webp)"
-   -DENABLE_TESTS="$(usex test)"
-   -DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-   )
-   cmake-utils_src_configure
-}
-
-src_install() {
-   newicon "${S}/data/icons/ase64.png" "${PN}.png"
-   cmake-utils_src_install
-}



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

2022-02-27 Thread Arthur Zamarin
commit: c9c673dbdd4ba915fc8d02bc9d6aca39f24d514c
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sun Feb 27 20:27:57 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sun Feb 27 20:27:57 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9c673db

dev-python/requests-unixsocket: Stabilize 0.3.0-r1 hppa, #834272

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/requests-unixsocket/requests-unixsocket-0.3.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/requests-unixsocket/requests-unixsocket-0.3.0-r1.ebuild 
b/dev-python/requests-unixsocket/requests-unixsocket-0.3.0-r1.ebuild
index 6273b25074a9..1811dd9afa7f 100644
--- a/dev-python/requests-unixsocket/requests-unixsocket-0.3.0-r1.ebuild
+++ b/dev-python/requests-unixsocket/requests-unixsocket-0.3.0-r1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 
sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 
sparc x86"
 
 RDEPEND="dev-python/requests[${PYTHON_USEDEP}]"
 BDEPEND="



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

2022-02-27 Thread Michał Górny
commit: d248c3332bea2f81b849495b4a4c08c7817f7786
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Feb 27 20:04:45 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Feb 27 20:04:45 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d248c333

dev-libs/mathjax: Remove old

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

 dev-libs/mathjax/Manifest |  2 --
 dev-libs/mathjax/mathjax-2.7.0.ebuild | 57 ---
 dev-libs/mathjax/mathjax-2.7.4.ebuild | 57 ---
 3 files changed, 116 deletions(-)

diff --git a/dev-libs/mathjax/Manifest b/dev-libs/mathjax/Manifest
index ce20ad49d1e2..ebad0abcc862 100644
--- a/dev-libs/mathjax/Manifest
+++ b/dev-libs/mathjax/Manifest
@@ -1,3 +1 @@
-DIST mathjax-2.7.0.tar.gz 24594403 BLAKE2B 
7cadfe7565a7ebba3569fb298a097f07081926b843a06c3c32447757eb0a5d463d654f20c42821010c81c59819bb14fdc5e84a39e87106bb6808bd6c9ca52bb7
 SHA512 
2a7c2b4a4991485c18f78dda4115da05a31c1a2d952c403726e99d22fd26f166298199238ad482e53b63b5414be687f325b586f5ebe4e2d552447c929415b350
-DIST mathjax-2.7.4.tar.gz 25355532 BLAKE2B 
0bed5224356757c64989de8b9355f5c2505f1fa951456c52caf1cc0a9b5a864633ce5299cc9b67b1e5c743e39bcb6aee787a76d6871fc998b614d62e12499f6f
 SHA512 
cddc4c64c188620307f0ede3b0bc7ba071f78702ba6315426d8c83129543a6b81a3a9a115f88017e23b5094b7aefd934c39aeec9688419830e33f9fd0fb1de7e
 DIST mathjax-2.7.7.tar.gz 25347766 BLAKE2B 
c1f11bc854c95888d7f04ee627094a2e297e7554b0380dab30c08e2c4405495df611b440da0efd1e6456150513e07fa4ef90808d2332f9fb83785c118228de18
 SHA512 
471bd22475827a13d79de7d335f3e51ace06dfc04f575e8829b4505f428949f1dbe58798635cb434ed02ae0cd3fd8d1d577196b4961365fbcb399cc075d3284f

diff --git a/dev-libs/mathjax/mathjax-2.7.0.ebuild 
b/dev-libs/mathjax/mathjax-2.7.0.ebuild
deleted file mode 100644
index b61ec426b028..
--- a/dev-libs/mathjax/mathjax-2.7.0.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit vcs-clean
-
-DESCRIPTION="JavaScript display engine for LaTeX, MathML and AsciiMath"
-HOMEPAGE="https://www.mathjax.org/;
-SRC_URI="https://github.com/mathjax/MathJax/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-S="${WORKDIR}"/MathJax-${PV}
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 arm ~arm64 ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
-IUSE="doc examples"
-
-RESTRICT="binchecks strip"
-
-make_webconf() {
-   # web server config file - should we really do this?
-   cat > $1 <<-EOF
-   Alias /MathJax/ ${EPREFIX}${webinstalldir}/
-   Alias /mathjax/ ${EPREFIX}${webinstalldir}/
-
-   
-   Options None
-   AllowOverride None
-   Order allow,deny
-   Allow from all
-   
-   EOF
-}
-
-src_prepare() {
-   default
-   egit_clean
-}
-
-src_install() {
-   local DOCS=( README* )
-   use doc && local HTML_DOCS=( docs/html/* )
-   default
-   if use examples; then
-   insinto /usr/share/${PN}/examples
-   doins -r test/*
-   fi
-   rm -r test docs LICENSE README* || die
-
-   webinstalldir=/usr/share/${PN}
-   insinto ${webinstalldir}
-   doins -r *
-
-   make_webconf MathJax.conf
-   insinto /etc/httpd/conf.d
-   doins MathJax.conf
-}

diff --git a/dev-libs/mathjax/mathjax-2.7.4.ebuild 
b/dev-libs/mathjax/mathjax-2.7.4.ebuild
deleted file mode 100644
index f27ee1117965..
--- a/dev-libs/mathjax/mathjax-2.7.4.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit vcs-clean
-
-DESCRIPTION="JavaScript display engine for LaTeX, MathML and AsciiMath"
-HOMEPAGE="https://www.mathjax.org/;
-SRC_URI="https://github.com/mathjax/MathJax/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-S="${WORKDIR}"/MathJax-${PV}
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 arm ~arm64 hppa ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
-IUSE="doc examples"
-
-RESTRICT="binchecks strip"
-
-make_webconf() {
-   # web server config file - should we really do this?
-   cat > $1 <<-EOF
-   Alias /MathJax/ ${EPREFIX}${webinstalldir}/
-   Alias /mathjax/ ${EPREFIX}${webinstalldir}/
-
-   
-   Options None
-   AllowOverride None
-   Order allow,deny
-   Allow from all
-   
-   EOF
-}
-
-src_prepare() {
-   default
-   egit_clean
-}
-
-src_install() {
-   local DOCS=( README* )
-   use doc && local HTML_DOCS=( docs/html/* )
-   default
-   if use examples; then
-   insinto /usr/share/${PN}/examples
-   doins -r test/*
-   fi
-   rm -r test docs LICENSE README* || die
-
-   

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

2022-02-27 Thread Michał Górny
commit: a9ff1e4e1b071665dc138c0661acb38f4388f41f
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Feb 27 19:58:27 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Feb 27 20:03:51 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9ff1e4e

dev-python/stripe: Remove old

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

 dev-python/stripe/Manifest |  2 --
 dev-python/stripe/stripe-2.64.0.ebuild | 60 --
 dev-python/stripe/stripe-2.65.0.ebuild | 60 --
 3 files changed, 122 deletions(-)

diff --git a/dev-python/stripe/Manifest b/dev-python/stripe/Manifest
index 925e74355ba1..a9f0f2b0e50e 100644
--- a/dev-python/stripe/Manifest
+++ b/dev-python/stripe/Manifest
@@ -1,3 +1 @@
-DIST stripe-2.64.0.tar.gz 234442 BLAKE2B 
504e32c19f1a65a39ee709d3abc7211d648c7aaf8493edb4130d49d3fbbebea4ec7d2c116b9b715e9e0d5d383578c477ae0e2cbace51f5b8574d540e9b9238d8
 SHA512 
5055b5a712c0891f3660d00fe7bb27452cce33aa4a9c70fbd7391dd989d31aeb8d8288c3cdd22747b6fd4c480be17f7ab9428c31ea7d2c674e175e77f4f6a0b7
-DIST stripe-2.65.0.tar.gz 234847 BLAKE2B 
474757c17abd5259f46913d5be0fa1130e64608f0306d772d6776bc34b76a62c2a7cc1dbe812201d867b06e361f9ec905e0a12bb4830e9ccc1e5211e2aeecd6b
 SHA512 
309a3e2202e7e8983bf7d8a403a588c6793f35866bf44edf6fc2877624a98716033e633b1f38790b2731049cfef3f90c878b5bc9df65dce9f4606414944dc8f4
 DIST stripe-2.66.0.tar.gz 234929 BLAKE2B 
289c3464c3aa9ef5ebeccaffde383271ca23e704303d5b5499d1f5f1f197483088781d16878749bca03c8ea56209a22173c376ef00510f53d81c733f0a626af8
 SHA512 
d716e82580757ec0b187a74de1f8ef7bbe2f32468f13c551886bcbadf631eef001df9f4d249f091856b009545ca8b6d60f16c07e79345fee33651e7d27fb31c0

diff --git a/dev-python/stripe/stripe-2.64.0.ebuild 
b/dev-python/stripe/stripe-2.64.0.ebuild
deleted file mode 100644
index 59aa459f7cb9..
--- a/dev-python/stripe/stripe-2.64.0.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} pypy3 )
-inherit distutils-r1
-
-DESCRIPTION="Stripe python bindings"
-HOMEPAGE="https://github.com/stripe/stripe-python;
-SRC_URI="mirror://pypi/s/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-RDEPEND=">=dev-python/requests-2.20[${PYTHON_USEDEP}]"
-BDEPEND="
-   test? (
-   >=dev-util/stripe-mock-0.115.0
-   dev-python/pytest-mock[${PYTHON_USEDEP}]
-   net-misc/curl
-   )
-"
-
-distutils_enable_tests pytest
-
-DOCS=( LONG_DESCRIPTION.rst CHANGELOG.md README.md )
-
-src_test() {
-   local stripe_mock_port=12111
-   local stripe_mock_max_port=12121
-   local stripe_mock_logfile="${T}/stripe_mock_${EPYTHON}.log"
-   # Try to start stripe-mock until we find a free port
-   while [[ "${stripe_mock_port}" -le "${stripe_mock_max_port}" ]]; do
-   ebegin "Trying to start stripe-mock on port ${stripe_mock_port}"
-   stripe-mock --http-port ${stripe_mock_port} &> 
"${stripe_mock_logfile}" &
-   local stripe_mock_pid=$!
-   sleep 2
-   # Did stripe-mock start?
-   curl --fail -u "sk_test_123:" \
-   http://127.0.0.1:${stripe_mock_port}/v1/customers &> 
/dev/null
-   eend $? "Port ${stripe_mock_port} unavailable"
-   if [[ $? -eq 0 ]]; then
-   einfo "stripe-mock running on port ${stripe_mock_port}"
-   break
-   fi
-   (( stripe_mock_port++ ))
-   done
-   if [[ "${stripe_mock_port}" -gt "${stripe_mock_max_port}" ]]; then
-   eerror "Unable to start stripe-mock for tests"
-   die "Please see the logfile located at: ${stripe_mock_logfile}"
-   fi
-
-   local -x STRIPE_MOCK_PORT=${stripe_mock_port}
-   distutils-r1_src_test
-
-   # Tear down stripe-mock
-   kill "${stripe_mock_pid}" || die "Unable to stop stripe-mock"
-}

diff --git a/dev-python/stripe/stripe-2.65.0.ebuild 
b/dev-python/stripe/stripe-2.65.0.ebuild
deleted file mode 100644
index 4545bd168ea0..
--- a/dev-python/stripe/stripe-2.65.0.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} pypy3 )
-inherit distutils-r1
-
-DESCRIPTION="Stripe python bindings"
-HOMEPAGE="https://github.com/stripe/stripe-python;
-SRC_URI="mirror://pypi/s/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND=">=dev-python/requests-2.20[${PYTHON_USEDEP}]"
-BDEPEND="
-   test? (
-   >=dev-util/stripe-mock-0.117.0
-   dev-python/pytest-mock[${PYTHON_USEDEP}]
-   net-misc/curl
-   )
-"
-
-distutils_enable_tests pytest
-
-DOCS=( LONG_DESCRIPTION.rst CHANGELOG.md README.md )
-
-src_test() 

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

2022-02-27 Thread Michał Górny
commit: 466e55b1d667bbcfd5081ae844d288deaef9347d
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Feb 27 19:55:24 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Feb 27 20:03:50 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=466e55b1

dev-python/pytest-aiohttp: Remove old

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

 dev-python/pytest-aiohttp/Manifest |  3 ---
 .../pytest-aiohttp/pytest-aiohttp-0.3.0-r1.ebuild  | 21 
 .../pytest-aiohttp/pytest-aiohttp-1.0.2.ebuild | 28 --
 .../pytest-aiohttp/pytest-aiohttp-1.0.3.ebuild | 28 --
 4 files changed, 80 deletions(-)

diff --git a/dev-python/pytest-aiohttp/Manifest 
b/dev-python/pytest-aiohttp/Manifest
index f83bfdf1fb94..006695422700 100644
--- a/dev-python/pytest-aiohttp/Manifest
+++ b/dev-python/pytest-aiohttp/Manifest
@@ -1,4 +1 @@
-DIST pytest-aiohttp-0.3.0.tar.gz 6884 BLAKE2B 
02b50fcd14192d23a4b257c2b7cb235966eff52b1c0ac87a4c61a20bc0babdb22eb38c63e267a797d52ce57c9fb471232db3d0bc6566168a2d73f6404cd4
 SHA512 
4164166465dc40ff78a86304d1bcd4db9fb3f7dad3188f8ebe2ff151ed51eb0bf9c1b7a608d94cfe3339ee3b6efd4d5abbaa0691388460d5ac95635afa14984c
-DIST pytest-aiohttp-1.0.2.tar.gz 11102 BLAKE2B 
3210b9ebb9c7e55e182595187bb17ad55acf28439750e8424004a1a33008fc62d6be26959f5d2c8db8659d9657c57e6a7b154fb1286cb6e034f26cb8c377e27c
 SHA512 
3bab3df10ea5642c183681d2a6a70a842f1c11f0a6907334e04a528383051243cf7013548406fcc53525f9003fa536a92a45a97f7d54466a049afc4c579780e5
-DIST pytest-aiohttp-1.0.3.tar.gz 11155 BLAKE2B 
d539b69145944458ffd18f66d92117b5cf2c3d67664660086e1f585ee089dfc85b6e605ce8c8dbe75f974c16a6ad743f46cfb1e4bc19d68e4bf04a3be65ed4fd
 SHA512 
5d900875fd2973d7ca578d9787a6cf1e3cc6f9ae85b81e83f141c1bd2f789b55437769f2e2ebf50d424979ff4f199a73cbebd171e78f21133423476409422805
 DIST pytest-aiohttp-1.0.4.tar.gz 11868 BLAKE2B 
d964fe29ebe10e80391ebcbe4fc73bf37e2d8568c4d7679493ce68392b5722d75735798a78f388134d60b9c922bac116b0d453cabae5a95fc06c4288cc5d4c8e
 SHA512 
baf87e3aa229e8a4ab6746d277a923436ad2e0625825581c94a2fb0a9bbcd309bfc55186f8866589b65a75ccfd7d5b494d71554359724c0b2c9541ea94a177d8

diff --git a/dev-python/pytest-aiohttp/pytest-aiohttp-0.3.0-r1.ebuild 
b/dev-python/pytest-aiohttp/pytest-aiohttp-0.3.0-r1.ebuild
deleted file mode 100644
index a63fe0646249..
--- a/dev-python/pytest-aiohttp/pytest-aiohttp-0.3.0-r1.ebuild
+++ /dev/null
@@ -1,21 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{8..10} pypy3 )
-
-inherit distutils-r1
-
-DESCRIPTION="pytest plugin for aiohttp support"
-HOMEPAGE="https://github.com/aio-libs/pytest-aiohttp/;
-SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv sparc x86 
~x64-macos"
-
-RDEPEND="
-   >=dev-python/pytest-5.4[${PYTHON_USEDEP}]
-   >=dev-python/aiohttp-0.22.0[${PYTHON_USEDEP}]
-"

diff --git a/dev-python/pytest-aiohttp/pytest-aiohttp-1.0.2.ebuild 
b/dev-python/pytest-aiohttp/pytest-aiohttp-1.0.2.ebuild
deleted file mode 100644
index 6f2f5b8373a9..
--- a/dev-python/pytest-aiohttp/pytest-aiohttp-1.0.2.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} pypy3 )
-
-inherit distutils-r1
-
-DESCRIPTION="pytest plugin for aiohttp support"
-HOMEPAGE="https://github.com/aio-libs/pytest-aiohttp/;
-SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86 
~x64-macos"
-
-RDEPEND="
-   >=dev-python/aiohttp-3.8.1[${PYTHON_USEDEP}]
-   >=dev-python/pytest-6.1.0[${PYTHON_USEDEP}]
-   >=dev-python/pytest-asyncio-0.17.2[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   >=dev-python/setuptools_scm-6.2[${PYTHON_USEDEP}]
-"
-
-distutils_enable_tests pytest

diff --git a/dev-python/pytest-aiohttp/pytest-aiohttp-1.0.3.ebuild 
b/dev-python/pytest-aiohttp/pytest-aiohttp-1.0.3.ebuild
deleted file mode 100644
index 6f2f5b8373a9..
--- a/dev-python/pytest-aiohttp/pytest-aiohttp-1.0.3.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} pypy3 )
-
-inherit distutils-r1
-
-DESCRIPTION="pytest plugin for aiohttp support"
-HOMEPAGE="https://github.com/aio-libs/pytest-aiohttp/;
-SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86 
~x64-macos"
-
-RDEPEND="
-   >=dev-python/aiohttp-3.8.1[${PYTHON_USEDEP}]
-   

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

2022-02-27 Thread Michał Górny
commit: 846f7650cd895ba9b0b8375c4fcfca6d4191763a
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Feb 27 19:59:49 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Feb 27 20:03:52 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=846f7650

dev-python/arrow: Remove old

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

 dev-python/arrow/Manifest  |  1 -
 dev-python/arrow/arrow-1.2.1-r1.ebuild | 32 
 2 files changed, 33 deletions(-)

diff --git a/dev-python/arrow/Manifest b/dev-python/arrow/Manifest
index 0e49e90e0620..00b1f1828774 100644
--- a/dev-python/arrow/Manifest
+++ b/dev-python/arrow/Manifest
@@ -1,2 +1 @@
-DIST arrow-1.2.1.tar.gz 118941 BLAKE2B 
4e1cb13180d72fa42e86ae810aa3101ee4f7be53f8235b901b662293ba67a5379abc1af0f19c1e64ae68c772d0bef8125717b3ce3ee24d587ff89e7c96e6
 SHA512 
96ac71c103554a9a609227af870c051031e66fcc8abb343f6d8f38c7e35ad632633b68afb2818443e38ff59ea4790101fbca4449f14168fc41260d15fcd6cce4
 DIST arrow-1.2.2.tar.gz 123174 BLAKE2B 
b8b8d83ede0c61840ffcc75272a0275b6120cc142197c5f95f0fdb7d53981879b431f074db9606caa8d9817761cc4847a525bbc6449c05155410808960a1541e
 SHA512 
f88afa9a0bc967e8731a7bf1712ecf3810f12ade9cc53a94a74efd3ece750f37bea7541a054eb9acd12b99b4a6d32687eab4eae20a6f49b2c2d6f1b499221542

diff --git a/dev-python/arrow/arrow-1.2.1-r1.ebuild 
b/dev-python/arrow/arrow-1.2.1-r1.ebuild
deleted file mode 100644
index f70c82e4fe6c..
--- a/dev-python/arrow/arrow-1.2.1-r1.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} pypy3 )
-inherit distutils-r1
-
-DESCRIPTION="Better dates and times for Python"
-HOMEPAGE="https://github.com/arrow-py/arrow/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
sparc x86"
-
-RDEPEND="
-   >=dev-python/python-dateutil-2.7.0[${PYTHON_USEDEP}]"
-
-BDEPEND="
-   test? (
-   dev-python/pytest-mock[${PYTHON_USEDEP}]
-   dev-python/pytz[${PYTHON_USEDEP}]
-   dev-python/simplejson[${PYTHON_USEDEP}]
-   )"
-
-distutils_enable_tests pytest
-
-src_prepare() {
-   sed -i -e '/addopts/d' tox.ini || die
-   distutils-r1_src_prepare
-}



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

2022-02-27 Thread Michał Górny
commit: 5fc491a655826423ff65ddba7081c0c99329e46f
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Feb 27 20:00:11 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Feb 27 20:03:53 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5fc491a6

dev-python/pygraphviz: Remove old

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

 dev-python/pygraphviz/Manifest  |  2 --
 dev-python/pygraphviz/pygraphviz-1.7.ebuild | 43 -
 dev-python/pygraphviz/pygraphviz-1.8.ebuild | 42 
 3 files changed, 87 deletions(-)

diff --git a/dev-python/pygraphviz/Manifest b/dev-python/pygraphviz/Manifest
index 27a35e94beb5..3d5e9f04cba8 100644
--- a/dev-python/pygraphviz/Manifest
+++ b/dev-python/pygraphviz/Manifest
@@ -1,3 +1 @@
-DIST pygraphviz-1.7.zip 118754 BLAKE2B 
36507fc862bec45a33bee3f89e7593a15639e7d98067e1c4ddf917558b7bc037b9d7607f7f017ad5980ba0e6805e63f05464efe8fd416ef70cb95709151714e3
 SHA512 
09438931d1930a70f7da94b0a12b449c0836ad707c6c8abed49bae0db162c136002d170398ed02dc56a5029269490ce3156d2d4b0f30602a11165bc0038998ea
-DIST pygraphviz-1.8.zip 119640 BLAKE2B 
a5c035085c503a06b0496a7ea4db0861e703d2811ab415f2d528dbc6c342d0fab1e9294f818cc4e49bdebba1b98456d6f34eea5628735193a6dde2c37035afce
 SHA512 
f59d9452867167ba406d0e352700ec6bc80364318413a982eadb324c7817f92b9d09922b5fd90b603e2cf6f408390f862e003ef3f1fd3230390944f7d6ee7228
 DIST pygraphviz-1.9.zip 119946 BLAKE2B 
a399742ae5e8323eec0b6890858cc9158c2942c4f0adb8c74fbfb9745321ae013b93227540e5c328f5dd22d8fba2cf9217a9079f99a14feb983d7188e07084c9
 SHA512 
0a963b2cfe526c5444379b037797504380898c300256ab3b4800687f46b6230d8bc0adb5f499004a8009544c6cc804221689921c08a4f4b71b86ae01dc39cb7e

diff --git a/dev-python/pygraphviz/pygraphviz-1.7.ebuild 
b/dev-python/pygraphviz/pygraphviz-1.7.ebuild
deleted file mode 100644
index 8d7f82137309..
--- a/dev-python/pygraphviz/pygraphviz-1.7.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} )
-inherit distutils-r1
-
-DESCRIPTION="Python wrapper for the Graphviz Agraph data structure"
-HOMEPAGE="https://pygraphviz.github.io/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.zip"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ppc ~ppc64 ~riscv x86 ~x86-linux ~ppc-macos 
~x64-macos"
-
-# Note: only C API of graphviz is used, PYTHON_USEDEP unnecessary.
-RDEPEND="media-gfx/graphviz"
-DEPEND="${RDEPEND}"
-BDEPEND="
-   app-arch/unzip
-   dev-lang/swig:0
-   test? ( dev-python/doctest-ignore-unicode[${PYTHON_USEDEP}] )"
-
-distutils_enable_tests pytest
-
-python_prepare_all() {
-   distutils-r1_python_prepare_all
-   swig -python pygraphviz/graphviz.i || die
-}
-
-python_test() {
-   cd "${BUILD_DIR}"/lib || die
-   epytest
-   rm -rf .hypothesis .pytest_cache || die
-}
-
-python_install_all() {
-   dodoc -r examples
-   docompress -x /usr/share/doc/${PF}/examples
-
-   distutils-r1_python_install_all
-}

diff --git a/dev-python/pygraphviz/pygraphviz-1.8.ebuild 
b/dev-python/pygraphviz/pygraphviz-1.8.ebuild
deleted file mode 100644
index cc40c444bcd8..
--- a/dev-python/pygraphviz/pygraphviz-1.8.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} )
-inherit distutils-r1
-
-DESCRIPTION="Python wrapper for the Graphviz Agraph data structure"
-HOMEPAGE="https://pygraphviz.github.io/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.zip"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 ~x86-linux ~ppc-macos 
~x64-macos"
-
-# Note: only C API of graphviz is used, PYTHON_USEDEP unnecessary.
-RDEPEND="media-gfx/graphviz"
-DEPEND="${RDEPEND}"
-BDEPEND="
-   app-arch/unzip
-   dev-lang/swig:0
-   test? ( dev-python/doctest-ignore-unicode[${PYTHON_USEDEP}] )"
-
-distutils_enable_tests pytest
-
-src_configure() {
-   swig -python pygraphviz/graphviz.i || die
-}
-
-python_test() {
-   cd "${BUILD_DIR}"/install || die
-   epytest
-}
-
-python_install_all() {
-   dodoc -r examples
-   docompress -x /usr/share/doc/${PF}/examples
-
-   distutils-r1_python_install_all
-}



[gentoo-commits] repo/gentoo:master commit in: media-video/smplayer/

2022-02-27 Thread Lars Wendler
commit: 65e6cffa6875e6cd4643b38a56062004b0ccf0d3
Author: Lars Wendler  gentoo  org>
AuthorDate: Sun Feb 27 19:35:44 2022 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Sun Feb 27 19:35:44 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65e6cffa

media-video/smplayer: Bump to version 22.2.0

Signed-off-by: Lars Wendler  gentoo.org>

 media-video/smplayer/Manifest   |   1 +
 media-video/smplayer/smplayer-22.2.0.ebuild | 139 
 2 files changed, 140 insertions(+)

diff --git a/media-video/smplayer/Manifest b/media-video/smplayer/Manifest
index 690ff7776a53..72b1a597dc56 100644
--- a/media-video/smplayer/Manifest
+++ b/media-video/smplayer/Manifest
@@ -1 +1,2 @@
 DIST smplayer-21.10.0.tar.bz2 5186253 BLAKE2B 
e2da80e64c4cbb9a3977ae9f5570800a2c3e012f21fdd011d66dce681488805c309fb40aae72aff5858cc06beaf1e8bbe052816eb91d3700a222b3b10be57228
 SHA512 
3e4a046c704eeb181570c56a819afbca939257df370c909dab3af448553702feeebba542f123d18cf6b786a19f92ee67ba60ba25a649d83f1f31411b715f7ae4
+DIST smplayer-22.2.0.tar.bz2 5165034 BLAKE2B 
b10103907dc334f65bf1d0dfc55baef5fe330e84eabb0534d77b4ebeb6b93f677b5f39b9e8ab60f8a7fdaf405fee8ab683e7c5e284256b04a6628603fc476540
 SHA512 
62916d9df8493efbe810a5de36c2d45fd2e39173e061060c749c87ac498f43ca08caa073bd04b05e3e9de72c5efdf9bece8e08f4c57a0d283d9f78b7687e2d14

diff --git a/media-video/smplayer/smplayer-22.2.0.ebuild 
b/media-video/smplayer/smplayer-22.2.0.ebuild
new file mode 100644
index ..75684168f00f
--- /dev/null
+++ b/media-video/smplayer/smplayer-22.2.0.ebuild
@@ -0,0 +1,139 @@
+# Copyright 2007-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PLOCALES="am ar_SY ar bg ca cs da de el en_GB en en_US es et eu fa fi fr gl
+he_IL hr hu id it ja ka ko ku lt mk ms_MY nl nn_NO pl pt_BR pt ro_RO ru_RU
+sk sl_SI sq_AL sr sv th tr uk_UA uz vi_VN zh_CN zh_TW"
+PLOCALE_BACKUP="en_US"
+
+inherit plocale qmake-utils toolchain-funcs xdg
+
+DESCRIPTION="Great Qt GUI front-end for mplayer/mpv"
+HOMEPAGE="https://www.smplayer.eu/;
+SRC_URI="https://github.com/smplayer-dev/${PN}/releases/download/v${PV}/${P}.tar.bz2;
+
+LICENSE="GPL-2+ BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux"
+IUSE="autoshutdown bidi debug mpris"
+
+BDEPEND="dev-qt/linguist-tools:5"
+DEPEND="
+   dev-qt/qtcore:5
+   dev-qt/qtdbus:5
+   dev-qt/qtgui:5=
+   dev-qt/qtnetwork:5[ssl]
+   dev-qt/qtscript:5
+   dev-qt/qtsingleapplication[X,qt5(+)]
+   dev-qt/qtwidgets:5
+   dev-qt/qtxml:5
+   sys-libs/zlib
+   autoshutdown? ( dev-qt/qtdbus:5 )
+   mpris? ( dev-qt/qtdbus:5 )
+"
+RDEPEND="${DEPEND}
+   || (
+   media-video/mpv[libass(+),X]
+   media-video/mplayer[bidi?,libass,png,X]
+   )
+"
+
+PATCHES=(
+   "${FILESDIR}/${PN}-14.9.0.6966-unbundle-qtsingleapplication.patch" # 
bug 487544
+   "${FILESDIR}/${PN}-17.1.0-advertisement_crap.patch"
+   "${FILESDIR}/${PN}-18.2.0-jobserver.patch"
+   "${FILESDIR}/${PN}-18.3.0-disable-werror.patch"
+)
+
+src_prepare() {
+   use bidi || PATCHES+=( "${FILESDIR}"/${PN}-16.4.0-zero-bidi.patch )
+
+   default
+
+   # Upstream Makefile sucks
+   sed -i -e "/^PREFIX=/ s:/usr/local:${EPREFIX}/usr:" \
+   -e "/^DOC_PATH=/ s:packages/smplayer:${PF}:" \
+   -e '/\.\/get_svn_revision\.sh/,+2c\
+   cd src && $(DEFS) $(MAKE)' \
+   Makefile || die
+
+   # Turn off online update checker, bug #479902
+   sed -e 's:DEFINES += UPDATE_CHECKER:#&:' \
+   -e 's:DEFINES += CHECK_UPGRADED:#&:' \
+   -i src/smplayer.pro || die
+
+   # Turn off intrusive share widget
+   sed -e 's:DEFINES += SHARE_WIDGET:#&:' \
+   -i src/smplayer.pro || die
+
+   # Toggle autoshutdown option which pulls in dbus, bug #524392
+   if ! use autoshutdown ; then
+   sed -e 's:DEFINES += AUTO_SHUTDOWN_PC:#&:' \
+   -i src/smplayer.pro || die
+   fi
+
+   # Turn debug message flooding off
+   if ! use debug ; then
+   sed -e 's:#\(DEFINES += NO_DEBUG_ON_CONSOLE\):\1:' \
+   -i src/smplayer.pro || die
+   fi
+
+   # MPRIS2 pulls in dbus, bug #553710
+   if ! use mpris ; then
+   sed -e 's:DEFINES += MPRIS2:#&:' \
+   -i src/smplayer.pro || die
+   fi
+
+   # Commented out because it gives false positives
+   #plocale_find_changes "${S}"/src/translations ${PN}_ .ts
+
+   # Do not default compress man page
+   sed '/gzip -9.*\.1$/d' -i Makefile || die
+   sed 's@\.gz$@@' -i smplayer.spec || die
+}
+
+src_configure() {
+   cd src || die
+   eqmake5
+}
+
+gen_translation() {
+   local mydir="$(qt5_get_bindir)"
+
+   ebegin "Generating $1 translation"
+   "${mydir}"/lrelease ${PN}_${1}.ts
+   eend $? || die 

[gentoo-commits] proj/qa-scripts:master commit in: htdocs/

2022-02-27 Thread Robin H. Johnson
commit: 0fc0320d35bfef018cfb35762834e05c1368ac19
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Sun Feb 27 19:27:30 2022 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Sun Feb 27 19:27:30 2022 +
URL:https://gitweb.gentoo.org/proj/qa-scripts.git/commit/?id=0fc0320d

htdocs/index: add keyring artifact links

Signed-off-by: Robin H. Johnson  gentoo.org>

 htdocs/index.html | 9 +
 1 file changed, 9 insertions(+)

diff --git a/htdocs/index.html b/htdocs/index.html
index ea4a50c..3652d33 100644
--- a/htdocs/index.html
+++ b/htdocs/index.html
@@ -130,6 +130,15 @@
   
 
   
+  Generated artifacts
+  
+GPG keyring: service keys
+GPG keyring: all active devs
+GPG keyring: active gentoo.git devs
+GPG keyring: retired devs
+GPG keyring: infra devs
+GPG keyring: all devs
+  
 
 
   Tree-wide Scanning



[gentoo-commits] proj/qa-scripts:master commit in: /

2022-02-27 Thread Robin H. Johnson
commit: 74e7faa94ef8c3d1ca88902ae504efeb6997cff7
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Sun Feb 27 19:21:45 2022 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Sun Feb 27 19:21:45 2022 +
URL:https://gitweb.gentoo.org/proj/qa-scripts.git/commit/?id=74e7faa9

keyrings-export: another spot for infra-devs

Signed-off-by: Robin H. Johnson  gentoo.org>

 keyrings-export.bash | 4 
 1 file changed, 4 insertions(+)

diff --git a/keyrings-export.bash b/keyrings-export.bash
index 5b6dc17..f07df83 100755
--- a/keyrings-export.bash
+++ b/keyrings-export.bash
@@ -27,6 +27,9 @@ export_keys "${OUTPUT_DIR}"/active-devs.gpg \
"${COMMITTING_DEVS[@]}" \
"${NONCOMMITTING_DEVS[@]}"
 
+export_keys "${OUTPUT_DIR}"/infra-devs.gpg \
+   "${INFRA_DEVS[@]}"
+
 export_keys "${OUTPUT_DIR}"/retired-devs.gpg \
"${RETIRED_DEVS[@]}"
 
@@ -35,6 +38,7 @@ export_keys "${OUTPUT_DIR}"/all-devs.gpg \
"${SYSTEM_KEYS[@]}" \
"${COMMITTING_DEVS[@]}" \
"${NONCOMMITTING_DEVS[@]}" \
+   "${INFRA_DEVS[@]}" \
"${RETIRED_DEVS[@]}"
 
 clean_tmp



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

2022-02-27 Thread Michał Górny
commit: 3de19a8e60eaa2fec05272f3515a7944f5145f80
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Feb 27 18:57:47 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Feb 27 18:57:47 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3de19a8e

dev-python/pytest-asyncio: Remove old

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

 dev-python/pytest-asyncio/Manifest |  1 -
 .../pytest-asyncio/pytest-asyncio-0.17.1.ebuild| 35 --
 2 files changed, 36 deletions(-)

diff --git a/dev-python/pytest-asyncio/Manifest 
b/dev-python/pytest-asyncio/Manifest
index c8294324c9bd..78c43a76ddda 100644
--- a/dev-python/pytest-asyncio/Manifest
+++ b/dev-python/pytest-asyncio/Manifest
@@ -1,2 +1 @@
-DIST pytest-asyncio-0.17.1.tar.gz 23694 BLAKE2B 
30856f9635db84fade650c1ecebe9c713d8cd801acd646e3dffb97996c591e4a11378faba8abe30002a1fa0f6dc62aae53029f059504478d4527e88c404929c2
 SHA512 
691bedb0d84e05179815d9a5c11108568dc59fc8fe6e8549e54e14b83e5e6bcad37d512980ea27f87f927f623c0496bbddf0aff1f44fc78f9bea1d9106b0800c
 DIST pytest-asyncio-0.17.2.tar.gz 23805 BLAKE2B 
0501a193518cefb0596b1595a58e8f18915b61ba2b502726b457e78c10b5849e5fc1980192d4b5aceb7499af15556c185efc42b76153e2b8f72ab4e36249ad23
 SHA512 
f1f6a586a7a3a1672ed76e8758a76e8bd427b0da055461597ab3b6296e3ae50002a9a259aba57f0b6191d606db6fa61377dbf03099d3437272a4a1f4144aa58e

diff --git a/dev-python/pytest-asyncio/pytest-asyncio-0.17.1.ebuild 
b/dev-python/pytest-asyncio/pytest-asyncio-0.17.1.ebuild
deleted file mode 100644
index c401be63d945..
--- a/dev-python/pytest-asyncio/pytest-asyncio-0.17.1.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 2019-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} pypy3 )
-
-inherit distutils-r1
-
-DESCRIPTION="Library for testing asyncio code with pytest"
-HOMEPAGE="https://github.com/pytest-dev/pytest-asyncio
-   https://pypi.org/project/pytest-asyncio/;
-SRC_URI="https://github.com/pytest-dev/pytest-asyncio/archive/v${PV}.tar.gz -> 
${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="
-   >=dev-python/pytest-5.4.0[${PYTHON_USEDEP}]"
-BDEPEND="
-   dev-python/setuptools_scm[${PYTHON_USEDEP}]
-   test? (
-   dev-python/flaky[${PYTHON_USEDEP}]
-   >=dev-python/hypothesis-3.64[${PYTHON_USEDEP}]
-   )"
-
-distutils_enable_tests --install pytest
-
-export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
-
-EPYTEST_DESELECT=(
-   # rely on precise warning counts
-   tests/modes/test_legacy_mode.py
-)



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

2022-02-27 Thread Michał Górny
commit: bf08e060ce737c5a6320692fb3d3220d5d5a2959
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Feb 27 18:57:38 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Feb 27 18:57:38 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf08e060

dev-python/py: Remove old

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

 dev-python/py/py-1.11.0.ebuild | 22 --
 1 file changed, 22 deletions(-)

diff --git a/dev-python/py/py-1.11.0.ebuild b/dev-python/py/py-1.11.0.ebuild
deleted file mode 100644
index 6bc4dafc3a51..
--- a/dev-python/py/py-1.11.0.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} pypy3 )
-inherit distutils-r1
-
-DESCRIPTION="library with cross-python path, ini-parsing, io, code, log 
facilities"
-HOMEPAGE="https://py.readthedocs.io/ https://pypi.org/project/py/;
-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 
~sparc64-solaris ~x64-solaris ~x86-solaris"
-# This package is unmaintained and keeps being broken periodically.
-RESTRICT=test
-
-BDEPEND="
-   dev-python/setuptools_scm[${PYTHON_USEDEP}]"
-
-distutils_enable_tests pytest



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

2022-02-27 Thread Michał Górny
commit: dea4ea1339ebfbe39a0f531742f1d8851888fddf
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Feb 27 18:57:21 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Feb 27 18:57:21 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dea4ea13

dev-python/ordered-set: Remove old

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

 dev-python/ordered-set/Manifest|  1 -
 dev-python/ordered-set/ordered-set-4.0.2-r1.ebuild | 37 --
 dev-python/ordered-set/ordered-set-4.0.2.ebuild| 17 --
 3 files changed, 55 deletions(-)

diff --git a/dev-python/ordered-set/Manifest b/dev-python/ordered-set/Manifest
index 72542a6658b6..8eac0eb2cdda 100644
--- a/dev-python/ordered-set/Manifest
+++ b/dev-python/ordered-set/Manifest
@@ -1,2 +1 @@
-DIST ordered-set-4.0.2.tar.gz 10658 BLAKE2B 
c07a4f48a6b0bf74ab11dc25a2d85c401bbcde825b63ff4d6e3e6ee12139f22d803bda3db57937ad3760c0c665f0ec3b44bcaab832c2604148dd0add350f515c
 SHA512 
d7031ae90fdaf116c27415170a7197be34ff4b977a03684a6fb53dc453845a97cd32b9666ed3ae58fb7bc722ff3b2b4f2e156578841033759b490b359a5619b4
 DIST ordered-set-4.1.0.tar.gz 12826 BLAKE2B 
8e1d1510fec429c002062584cadb1dd64a1131889345629cb73f6fbc7dbd1ab06a4f97d43ae54c8dc1f21bb243ab0706cefe33cf4fd634fc5af28b10806cee1e
 SHA512 
f12d19f7d9cf0ebcc414d97798f0959ff69a77146839cc6a9067c864f9e0be795795c4d648f736fd7448ddf89666ce37f23e7380d1c9b1678a4787961e4e1e79

diff --git a/dev-python/ordered-set/ordered-set-4.0.2-r1.ebuild 
b/dev-python/ordered-set/ordered-set-4.0.2-r1.ebuild
deleted file mode 100644
index 0e3b25027632..
--- a/dev-python/ordered-set/ordered-set-4.0.2-r1.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-# please keep this ebuild at EAPI 7 -- sys-apps/portage dep
-EAPI=7
-
-DISTUTILS_USE_PEP517=flit
-PYTHON_COMPAT=( python3_{8..10} pypy3 )
-inherit distutils-r1
-
-DESCRIPTION="A mutable set that remembers the order of its entries"
-HOMEPAGE="https://github.com/rspeer/ordered-set;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~riscv ~x86"
-
-distutils_enable_tests pytest
-
-src_configure() {
-   [[ -e pyproject.toml ]] &&
-   die "Upstream added pyproject.toml, recheck"
-   # write a custom pyproject.toml to ease setuptools bootstrap
-   cat > pyproject.toml <<-EOF || die
-   [build-system]
-   requires = ["flit_core >=3.2,<4"]
-   build-backend = "flit_core.buildapi"
-
-   [project]
-   name = "ordered-set"
-   dynamic = ["version", "description"]
-
-   [tool.flit.module]
-   name = "ordered_set"
-   EOF
-}

diff --git a/dev-python/ordered-set/ordered-set-4.0.2.ebuild 
b/dev-python/ordered-set/ordered-set-4.0.2.ebuild
deleted file mode 100644
index d5f3565a3648..
--- a/dev-python/ordered-set/ordered-set-4.0.2.ebuild
+++ /dev/null
@@ -1,17 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{8..10} pypy3 )
-inherit distutils-r1
-
-DESCRIPTION="A mutable set that remembers the order of its entries"
-HOMEPAGE="https://github.com/rspeer/ordered-set;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~riscv x86"
-
-distutils_enable_tests pytest



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

2022-02-27 Thread Michał Górny
commit: 35ed3f406cecfd6f92a2aa674a63742f4df095b3
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Feb 27 18:57:30 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Feb 27 18:57:30 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35ed3f40

dev-python/pep517: Remove old

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

 dev-python/pep517/pep517-0.12.0.ebuild | 41 --
 1 file changed, 41 deletions(-)

diff --git a/dev-python/pep517/pep517-0.12.0.ebuild 
b/dev-python/pep517/pep517-0.12.0.ebuild
deleted file mode 100644
index b6e0572eddbe..
--- a/dev-python/pep517/pep517-0.12.0.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 2021-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_SETUPTOOLS=pyproject.toml
-PYTHON_COMPAT=( python3_{8..10} pypy3 )
-
-inherit distutils-r1
-
-DESCRIPTION="Wrappers to build Python packages using PEP 517 hooks"
-HOMEPAGE="
-   https://pypi.org/project/pep517/
-   https://github.com/pypa/pep517/
-   https://pep517.readthedocs.io/;
-SRC_URI="
-   https://github.com/pypa/pep517/archive/v${PV}.tar.gz
-   -> ${P}.gh.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
sparc x86"
-
-RDEPEND="
-   dev-python/tomli[${PYTHON_USEDEP}]"
-BDEPEND="
-   test? (
-   dev-python/testpath[${PYTHON_USEDEP}]
-   )"
-
-distutils_enable_tests pytest
-
-EPYTEST_IGNORE=(
-   # require Internet
-   tests/test_meta.py
-)
-
-src_prepare() {
-   sed -i -e '/--flake8/d' pytest.ini || die
-   distutils-r1_src_prepare
-}



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

2022-02-27 Thread Michał Górny
commit: cc988d981ee911437fe1030d29ada95d4e3d5048
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Feb 27 18:58:05 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Feb 27 18:58:05 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc988d98

dev-util/stripe-mock: Remove old

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

 dev-util/stripe-mock/Manifest   |  2 --
 dev-util/stripe-mock/stripe-mock-0.116.0.ebuild | 22 --
 dev-util/stripe-mock/stripe-mock-0.117.0.ebuild | 22 --
 dev-util/stripe-mock/stripe-mock-0.118.0.ebuild | 22 --
 4 files changed, 68 deletions(-)

diff --git a/dev-util/stripe-mock/Manifest b/dev-util/stripe-mock/Manifest
index f8468ee557ca..54254af2df52 100644
--- a/dev-util/stripe-mock/Manifest
+++ b/dev-util/stripe-mock/Manifest
@@ -1,3 +1 @@
-DIST stripe-mock-0.116.0.tar.gz 631741 BLAKE2B 
8b8d3e0db1b0cb9e6f54773ac0a2f340c7a609e147c398b55b3616638163a88e8924d3739150b040eb4068aed142bad7f3de3db3679a8bd111b028286ae0ac68
 SHA512 
bf6dd3abf0fdf4472047060ed28d6709b9215a7c708e40ee573a7ada4be7af1d68d26000c7f1517b15d04923479f5e5113cc952457e810ca29220284b76dd783
-DIST stripe-mock-0.117.0.tar.gz 649146 BLAKE2B 
c7e51c932f43b012df28cd83a4232e0cf5a4892e60bdf6d6fc5a8e34d1ba480a69b7f86a7bb61eff0509bd22b1ac67e9292daea874aa1a291cac78d1c9b86001
 SHA512 
2a3b7979180be47bd0ade3f920fc17b5a341e38999cf6492e36a572be4308bc10225b0ba9de0f61d5826b2ae189a2c98f99f89e51235faccadaa00db80dd8d91
 DIST stripe-mock-0.118.0.tar.gz 651234 BLAKE2B 
b6651dda1ee23ce0143688458fc695f4f3fbaf8a8320228599033e0907bac611de2cc3dfd9845f3c27b5a1a07864ca6aa744d11029b078c25b73fd0a8cf99cb5
 SHA512 
3fa18acd747bee7e17f8ddbe02dda0dc38b9d2fe332d3606e44a3ad75b9acb5b34bd04aace875b4c1b67e172656d7032def6dd08b364939cf76e58a5cc736015

diff --git a/dev-util/stripe-mock/stripe-mock-0.116.0.ebuild 
b/dev-util/stripe-mock/stripe-mock-0.116.0.ebuild
deleted file mode 100644
index 07a1e00de87f..
--- a/dev-util/stripe-mock/stripe-mock-0.116.0.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
-
-EGO_SRC="github.com/stripe/stripe-mock"
-EGO_PN=${EGO_SRC}/...
-inherit golang-build golang-vcs-snapshot
-
-DESCRIPTION="Mock HTTP server that responds like the real Stripe API"
-HOMEPAGE="https://github.com/stripe/stripe-mock;
-SRC_URI="https://github.com/stripe/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="amd64 x86"
-
-LICENSE="MIT ISC BSD-2"
-SLOT="0"
-
-src_install() {
-   golang-build_src_install
-   dobin bin/stripe-mock
-   rm -rf "${D}$(get_golibdir_gopath)" || die
-}

diff --git a/dev-util/stripe-mock/stripe-mock-0.117.0.ebuild 
b/dev-util/stripe-mock/stripe-mock-0.117.0.ebuild
deleted file mode 100644
index 0f98e7040d17..
--- a/dev-util/stripe-mock/stripe-mock-0.117.0.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-EGO_SRC="github.com/stripe/stripe-mock"
-EGO_PN=${EGO_SRC}/...
-inherit golang-build golang-vcs-snapshot
-
-DESCRIPTION="Mock HTTP server that responds like the real Stripe API"
-HOMEPAGE="https://github.com/stripe/stripe-mock;
-SRC_URI="https://github.com/stripe/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~amd64 ~x86"
-
-LICENSE="MIT ISC BSD-2"
-SLOT="0"
-
-src_install() {
-   golang-build_src_install
-   dobin bin/stripe-mock
-   rm -rf "${D}$(get_golibdir_gopath)" || die
-}

diff --git a/dev-util/stripe-mock/stripe-mock-0.118.0.ebuild 
b/dev-util/stripe-mock/stripe-mock-0.118.0.ebuild
deleted file mode 100644
index 0f98e7040d17..
--- a/dev-util/stripe-mock/stripe-mock-0.118.0.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-EGO_SRC="github.com/stripe/stripe-mock"
-EGO_PN=${EGO_SRC}/...
-inherit golang-build golang-vcs-snapshot
-
-DESCRIPTION="Mock HTTP server that responds like the real Stripe API"
-HOMEPAGE="https://github.com/stripe/stripe-mock;
-SRC_URI="https://github.com/stripe/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~amd64 ~x86"
-
-LICENSE="MIT ISC BSD-2"
-SLOT="0"
-
-src_install() {
-   golang-build_src_install
-   dobin bin/stripe-mock
-   rm -rf "${D}$(get_golibdir_gopath)" || die
-}



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

2022-02-27 Thread Michał Górny
commit: 4ac8a79bd3df77eeb806a6edcd003b1813d1ae65
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Feb 27 18:57:09 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Feb 27 18:57:09 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ac8a79b

dev-python/libarchive-c: Remove old

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

 dev-python/libarchive-c/Manifest   |  1 -
 dev-python/libarchive-c/libarchive-c-3.2-r1.ebuild | 21 -
 2 files changed, 22 deletions(-)

diff --git a/dev-python/libarchive-c/Manifest b/dev-python/libarchive-c/Manifest
index d7a9f3981b60..009a87bd751e 100644
--- a/dev-python/libarchive-c/Manifest
+++ b/dev-python/libarchive-c/Manifest
@@ -1,2 +1 @@
-DIST libarchive-c-3.2.tar.gz 44896 BLAKE2B 
9e984c8e23422ceb552d34d4560b2c8279e1c2d52ffedcc893af3a1a8420eb03b735058d2f8dbe542f3920d0f0bf53777f0679a238cc0368e8e680c44358a72c
 SHA512 
d11a7da0e592b7fce5044b9ff2930e50004c15b166a76f7871b9d0d584cb6da5989c4ec79969439b00baffa564738af607cdf5e37141c6e879b8a76ae68c325c
 DIST libarchive-c-4.0.gh.tar.gz 47743 BLAKE2B 
c6246b35a9a389c6cd999b32412436f8134737a4cba1c0bf8a905e3ba6e1653c515956f43a580901dd4278cbc00b783ecfa7a4306f0fc7ca2d2666b3af500cb8
 SHA512 
787b049a5f06d7370369a6bb2d9ebab6e4e5eda0a4f839906e205a7e19a00f9f7e350d4c42e3434e345063dd0ea44e5b0b4c0524033b05a6d8f15758757c5c36

diff --git a/dev-python/libarchive-c/libarchive-c-3.2-r1.ebuild 
b/dev-python/libarchive-c/libarchive-c-3.2-r1.ebuild
deleted file mode 100644
index 07b3b940883d..
--- a/dev-python/libarchive-c/libarchive-c-3.2-r1.ebuild
+++ /dev/null
@@ -1,21 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{8..10} )
-inherit distutils-r1
-
-DESCRIPTION="A Python interface to libarchive"
-HOMEPAGE="https://github.com/Changaco/python-libarchive-c/ 
https://pypi.org/project/libarchive-c/;
-SRC_URI="https://github.com/Changaco/python-libarchive-c/archive/refs/tags/${PV}.tar.gz
 -> ${P}.tar.gz"
-S="${WORKDIR}"/python-${P}
-
-LICENSE="CC0-1.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86"
-
-RDEPEND="app-arch/libarchive"
-BDEPEND="test? ( dev-python/mock[${PYTHON_USEDEP}] )"
-
-distutils_enable_tests pytest



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

2022-02-27 Thread Michał Górny
commit: 501ea2c1b1f866687d91c0c6333962c34a261686
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Feb 27 18:57:01 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Feb 27 18:57:01 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=501ea2c1

dev-python/wheel: Remove old

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

 dev-python/wheel/wheel-0.37.1.ebuild | 33 -
 1 file changed, 33 deletions(-)

diff --git a/dev-python/wheel/wheel-0.37.1.ebuild 
b/dev-python/wheel/wheel-0.37.1.ebuild
deleted file mode 100644
index d44720c3b267..
--- a/dev-python/wheel/wheel-0.37.1.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} pypy3 )
-inherit distutils-r1
-
-DESCRIPTION="A built-package format for Python"
-HOMEPAGE="https://pypi.org/project/wheel/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-SRC_URI="https://github.com/pypa/wheel/archive/${PV}.tar.gz -> ${P}.gh.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~x64-macos"
-
-RDEPEND="
-   dev-python/packaging[${PYTHON_USEDEP}]"
-
-distutils_enable_tests --install pytest
-
-src_prepare() {
-   sed \
-   -e 's:--cov --cov-config=setup.cfg::g' \
-   -i setup.cfg || die
-
-   # unbundle packaging
-   rm -r src/wheel/vendored || die
-   sed -i -e 's:\.vendored\.::' src/wheel/*.py || die
-
-   distutils-r1_src_prepare
-}



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

2022-02-27 Thread Michał Górny
commit: 2e042c74bd45badeef0bf1af4450fe31bc6a80fb
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Feb 27 18:56:37 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Feb 27 18:56:37 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e042c74

dev-python/setuptools_scm: Remove old

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

 dev-python/setuptools_scm/Manifest |  1 -
 .../setuptools_scm/setuptools_scm-6.3.2.ebuild | 40 --
 2 files changed, 41 deletions(-)

diff --git a/dev-python/setuptools_scm/Manifest 
b/dev-python/setuptools_scm/Manifest
index 09ab5823ab27..98e5d311be2c 100644
--- a/dev-python/setuptools_scm/Manifest
+++ b/dev-python/setuptools_scm/Manifest
@@ -1,2 +1 @@
-DIST setuptools_scm-6.3.2.tar.gz 57207 BLAKE2B 
4291f3810dc5ea111a6bad1bf37c8704a7eb6cdd112ea476d629d6175c43cc7d8f78d450181c0e588a5f3fc0fc092fedb41fcb6e198a42f730f9fc6b8d96e343
 SHA512 
9a16552803ef92367ad71007cf322737b5baa58b924083f04c860875bf6cb2e2bb4f43a7f89778b040c2eb55c5d32de479a918056519339820c6d0f1a6a386f0
 DIST setuptools_scm-6.4.1.tar.gz 61255 BLAKE2B 
984b60de24e3090bfa7284ef91f40cfb8481cd9008d57012564e6631727dc1e1bb6820265a4fd3576581ce836224599bdd8ddef73446ddc3040e51ddad4b6140
 SHA512 
b4d16fc9f352d7fccf18853aee2e80c2bd048fe46753fe5c099542253cf30e0d087be6dfec846aed0b8182238494ef63482dcd75781e285312a9f7547c11

diff --git a/dev-python/setuptools_scm/setuptools_scm-6.3.2.ebuild 
b/dev-python/setuptools_scm/setuptools_scm-6.3.2.ebuild
deleted file mode 100644
index 122373658933..
--- a/dev-python/setuptools_scm/setuptools_scm-6.3.2.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-# please keep this ebuild at EAPI 7 -- sys-apps/portage dep
-EAPI=7
-
-DISTUTILS_USE_SETUPTOOLS=rdepend
-PYTHON_COMPAT=( python3_{8..10} pypy3 )
-
-inherit distutils-r1
-
-DESCRIPTION="Manage versions by scm tags via setuptools"
-HOMEPAGE="
-   https://github.com/pypa/setuptools_scm/
-   https://pypi.org/project/setuptools-scm/;
-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"
-
-RDEPEND="
-   dev-python/packaging[${PYTHON_USEDEP}]
-   dev-python/tomli[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   !!

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

2022-02-27 Thread Michał Górny
commit: ef8147f8ed6c5306872b481a1301fad646ea4fa5
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Feb 27 18:55:33 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Feb 27 18:55:33 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef8147f8

dev-python/hyperlink: Remove old

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

 dev-python/hyperlink/hyperlink-21.0.0.ebuild | 25 -
 1 file changed, 25 deletions(-)

diff --git a/dev-python/hyperlink/hyperlink-21.0.0.ebuild 
b/dev-python/hyperlink/hyperlink-21.0.0.ebuild
deleted file mode 100644
index 45ffb2446234..
--- a/dev-python/hyperlink/hyperlink-21.0.0.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( pypy3 python3_{8..10} )
-inherit distutils-r1
-
-DESCRIPTION="A featureful, correct URL for Python"
-HOMEPAGE="https://github.com/python-hyper/hyperlink 
https://pypi.org/project/hyperlink/;
-SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD MIT"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc 
x86 ~amd64-linux ~x86-linux ~x64-macos"
-
-RDEPEND="dev-python/idna[${PYTHON_USEDEP}]"
-
-distutils_enable_tests pytest
-
-src_test() {
-   # suppresses hypothesis health checks
-   local -x CI=1
-   distutils-r1_src_test
-}



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

2022-02-27 Thread Michał Górny
commit: 070d8242fe1bc3631e5633b68beee38bd5fd1c86
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Feb 27 18:56:08 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Feb 27 18:56:08 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=070d8242

dev-python/iso8601: Remove old

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

 dev-python/iso8601/iso8601-1.0.2.ebuild | 25 -
 1 file changed, 25 deletions(-)

diff --git a/dev-python/iso8601/iso8601-1.0.2.ebuild 
b/dev-python/iso8601/iso8601-1.0.2.ebuild
deleted file mode 100644
index f0d89ad82da2..
--- a/dev-python/iso8601/iso8601-1.0.2.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_SETUPTOOLS=pyproject.toml
-PYTHON_COMPAT=( python3_{8..10} 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"
-
-BDEPEND="
-   test? (
-   dev-python/hypothesis[${PYTHON_USEDEP}]
-   dev-python/pytz[${PYTHON_USEDEP}]
-   )"
-
-distutils_enable_tests pytest



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

2022-02-27 Thread Michał Górny
commit: 66a88be50eb44a1e2a4fcee51d44caf8d861f91a
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Feb 27 18:53:13 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Feb 27 18:53:13 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66a88be5

dev-python/python-socks: Remove old

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

 dev-python/python-socks/Manifest  |  1 -
 dev-python/python-socks/python-socks-2.0.2.ebuild | 37 ---
 2 files changed, 38 deletions(-)

diff --git a/dev-python/python-socks/Manifest b/dev-python/python-socks/Manifest
index c04f6b362063..fcf803e8d367 100644
--- a/dev-python/python-socks/Manifest
+++ b/dev-python/python-socks/Manifest
@@ -1,2 +1 @@
-DIST python-socks-2.0.2.gh.tar.gz 40722 BLAKE2B 
cfcb3bf26ad9b306ea74ede172d4c8e7cf5412c1e212fb2b806e61bd5fa085c53c47a5846105bc84e9a197198f00d85689dee55c97c691cd1b8b48bad56cc449
 SHA512 
fac699e2d5898553cfb0045990e5f56c16f910a5434a2e5f9c549872761835170ad7e505833f1cbc4b31cba864c1c0dddc95a530c5b0a7c2002afe0766dd6029
 DIST python-socks-2.0.3.gh.tar.gz 40697 BLAKE2B 
c1e6f72763d1bd767af78ea1188e411814a6d41f703488dd67165d5a9b9ce1e2f9070b35a46cd72859b65c10519cdb02c91d1702a97c2d82cb5891b46187d02a
 SHA512 
9d51e61d03b4a46e94a66fc037ac759715db2e2c5d631aaf6088a0363ad13140c00da44a513088a40c0f149b9d4ee2bb4165f59f76c3956f0aede8104772fc5d

diff --git a/dev-python/python-socks/python-socks-2.0.2.ebuild 
b/dev-python/python-socks/python-socks-2.0.2.ebuild
deleted file mode 100644
index 8caa47b13832..
--- a/dev-python/python-socks/python-socks-2.0.2.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 2020-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} pypy3 )
-inherit distutils-r1
-
-DESCRIPTION="SOCKS4, SOCKS5, HTTP tunneling functionality for Python"
-HOMEPAGE="
-   https://pypi.org/project/python-socks/
-   https://github.com/romis2012/python-socks/;
-SRC_URI="
-   https://github.com/romis2012/python-socks/archive/v${PV}.tar.gz
-   -> ${P}.gh.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~ppc64 ~riscv x86"
-
-# curio is not packaged
-# asyncio is the only backend we have, so dep on its deps unconditionally
-# TODO: revisit
-RDEPEND="dev-python/async_timeout[${PYTHON_USEDEP}]"
-BDEPEND="
-   test? (
-   $(python_gen_cond_dep '
-   >=dev-python/anyio-3.4.0[${PYTHON_USEDEP}]
-   dev-python/trio[${PYTHON_USEDEP}]
-   ' 'python*')
-   dev-python/async_timeout[${PYTHON_USEDEP}]
-   dev-python/flask[${PYTHON_USEDEP}]
-   dev-python/pytest-asyncio[${PYTHON_USEDEP}]
-   dev-python/yarl[${PYTHON_USEDEP}]
-   )"
-
-distutils_enable_tests pytest



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

2022-02-27 Thread Michał Górny
commit: d4e722610dda74a1ac956a219c97e71bfcf8cc5d
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Feb 27 18:56:25 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Feb 27 18:56:25 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4e72261

dev-python/rfc3986-validator: Remove old

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

 .../rfc3986-validator-0.1.1.ebuild | 32 --
 1 file changed, 32 deletions(-)

diff --git a/dev-python/rfc3986-validator/rfc3986-validator-0.1.1.ebuild 
b/dev-python/rfc3986-validator/rfc3986-validator-0.1.1.ebuild
deleted file mode 100644
index 3ca733d8ec05..
--- a/dev-python/rfc3986-validator/rfc3986-validator-0.1.1.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python3_{8..10} pypy3 )
-
-inherit distutils-r1
-
-# 0.1.1 isn't tagged on GitHub
-COMMIT_HASH="ee3dcca0df300e0584e129a4ab81828be002684b"
-MY_PN="${PN//-/_}"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="Pure python RFC3986 validator"
-HOMEPAGE="https://pypi.org/project/rfc3986-validator/ 
https://github.com/naimetti/rfc3986-validator;
-SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
-S=${WORKDIR}/${MY_P}
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
sparc x86"
-
-RDEPEND="dev-python/rfc3987[${PYTHON_USEDEP}]"
-BDEPEND="test? ( dev-python/hypothesis[${PYTHON_USEDEP}] )"
-
-distutils_enable_tests pytest
-
-python_prepare_all() {
-   # remove dep on pytest-runner
-   sed -i -r "s:('|\")pytest-runner('|\")(,|)::" setup.py || die
-   distutils-r1_python_prepare_all
-}



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

2022-02-27 Thread Michał Górny
commit: aa6a798087550df710dd8a241a371e394b2d34c7
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Feb 27 18:52:20 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Feb 27 18:52:20 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa6a7980

dev-python/zipp: Remove old

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

 dev-python/zipp/zipp-3.7.0.ebuild | 42 ---
 1 file changed, 42 deletions(-)

diff --git a/dev-python/zipp/zipp-3.7.0.ebuild 
b/dev-python/zipp/zipp-3.7.0.ebuild
deleted file mode 100644
index cc4d1d62a53a..
--- a/dev-python/zipp/zipp-3.7.0.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( pypy3 python3_{8..10} )
-inherit distutils-r1
-
-DESCRIPTION="Backport of pathlib-compatible object wrapper for zip files"
-HOMEPAGE="https://github.com/jaraco/zipp;
-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-macos"
-
-BDEPEND="
-   >=dev-python/setuptools_scm-3.4.2[${PYTHON_USEDEP}]
-   test? ( dev-python/jaraco-itertools[${PYTHON_USEDEP}] )
-"
-
-distutils_enable_sphinx docs \
-   ">=dev-python/jaraco-packaging-3.2" \
-   ">=dev-python/rst-linker-1.9"
-distutils_enable_tests pytest
-
-EPYTEST_DESELECT=(
-   # speed tests are flaky by design
-   test_zipp.py::TestPath::test_implied_dirs_performance
-)
-
-EPYTEST_IGNORE=(
-   # Ignoring zipp.py from ${S} avoids ImportPathMismatchError with Python 
< 3.8
-   # by ensuring only zipp from ${BUILD_DIR} is loaded
-   zipp.py
-)
-
-python_prepare_all() {
-   # dep of disabled test
-   sed -i -e '/func_timeout/d' test_zipp.py || die
-   distutils-r1_python_prepare_all
-}



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

2022-02-27 Thread Michał Górny
commit: 78f08eb02137781abd31db425b22d01c86a7a1bc
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Feb 27 18:52:12 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Feb 27 18:52:12 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78f08eb0

dev-python/jaraco-context: Remove old

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

 .../jaraco-context/jaraco-context-4.1.1.ebuild | 23 --
 1 file changed, 23 deletions(-)

diff --git a/dev-python/jaraco-context/jaraco-context-4.1.1.ebuild 
b/dev-python/jaraco-context/jaraco-context-4.1.1.ebuild
deleted file mode 100644
index 551ea413afe9..
--- a/dev-python/jaraco-context/jaraco-context-4.1.1.ebuild
+++ /dev/null
@@ -1,23 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} pypy3 )
-inherit distutils-r1
-
-MY_PN="${PN/-/.}"
-DESCRIPTION="Context managers by jaraco"
-HOMEPAGE="https://github.com/jaraco/jaraco.context;
-SRC_URI="mirror://pypi/${PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
-S="${WORKDIR}/${MY_PN}-${PV}"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 ~ia64 ppc ~ppc64 ~riscv x86"
-
-BDEPEND="
-   dev-python/setuptools_scm[${PYTHON_USEDEP}]
-"
-
-distutils_enable_tests pytest



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

2022-02-27 Thread Michał Górny
commit: 4184d6a522e3fcc75899103502b482e7bf895c65
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Feb 27 18:52:37 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Feb 27 18:52:37 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4184d6a5

dev-python/jaraco-functools: Remove old

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

 .../jaraco-functools/jaraco-functools-3.5.0.ebuild | 32 --
 1 file changed, 32 deletions(-)

diff --git a/dev-python/jaraco-functools/jaraco-functools-3.5.0.ebuild 
b/dev-python/jaraco-functools/jaraco-functools-3.5.0.ebuild
deleted file mode 100644
index d435acb7b573..
--- a/dev-python/jaraco-functools/jaraco-functools-3.5.0.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( pypy3 python3_{8..10} )
-inherit distutils-r1
-
-MY_PN="${PN/-/.}"
-DESCRIPTION="Additional functions used by other projects by developer jaraco"
-HOMEPAGE="https://github.com/jaraco/jaraco.functools;
-SRC_URI="mirror://pypi/${PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
-S="${WORKDIR}/${MY_PN}-${PV}"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv sparc x86 
~x64-macos"
-
-RDEPEND="
-   dev-python/more-itertools[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   dev-python/setuptools_scm[${PYTHON_USEDEP}]
-   test? (
-   dev-python/jaraco-classes[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_sphinx docs \
-   ">=dev-python/jaraco-packaging-3.2" \
-   ">=dev-python/rst-linker-1.9"
-distutils_enable_tests pytest



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

2022-02-27 Thread Michał Górny
commit: 5151599dfb0cce404cb9ed3df634ec6ed87d306f
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Feb 27 18:50:52 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Feb 27 18:50:52 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5151599d

dev-python/oslo-utils: Remove old

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

 dev-python/oslo-utils/Manifest |  2 --
 dev-python/oslo-utils/oslo-utils-4.12.0.ebuild | 47 --
 dev-python/oslo-utils/oslo-utils-4.12.1.ebuild | 47 --
 3 files changed, 96 deletions(-)

diff --git a/dev-python/oslo-utils/Manifest b/dev-python/oslo-utils/Manifest
index cba4a261f4b8..db024b0c6c4a 100644
--- a/dev-python/oslo-utils/Manifest
+++ b/dev-python/oslo-utils/Manifest
@@ -1,3 +1 @@
-DIST oslo.utils-4.12.0.tar.gz 100927 BLAKE2B 
6f175d7c08a9084af083d1e2a339ef81c9d49f832f0c94b17fe652485f077d787731bbef61bb7b4cc30188b776b7494f53700b76a736be70cff0ce5b4da5b11d
 SHA512 
a31d307199584d6aa891464e0d9ef218d0a2aa6b54337e081ac3d787d883dfa088484f894c421c4cbf428ce2a53b6547770d469299ec7b9d0159e5a38fde06e3
-DIST oslo.utils-4.12.1.tar.gz 101375 BLAKE2B 
d6f74c8cbe8d28b0955a7f46906f28d7719413a3ea4e210fc050f89aebf30fa03c36bec9d1ccc658d59bcfe6c933d9eb8cc6096d693f0c75882fd3099de5953a
 SHA512 
26d4d8c7584e516c05b035a11d12b638713c9349fa8cf8a310b6ead2a078684b29409c1a6a01ac035f872f3deb0dda2aaef8c3a0150825b36d6583052d887ed7
 DIST oslo.utils-4.12.2.tar.gz 101505 BLAKE2B 
fb2d56c767e8ed100ba789560e6b50dfecf8528de2a2717a9660e3dc8ceb93838137d59f1c2e3f05ccb99b95ea1ec86870e22160fb670a8cfb2dd9d6783f1d0f
 SHA512 
fa56225f1991b031e2122cf08cd0992d8a9bfacd9a83d590f87ff86c495d51763ac06f65076c746a59563a60f886601d00ea9536dfcc927fca94c5a1431bcf67

diff --git a/dev-python/oslo-utils/oslo-utils-4.12.0.ebuild 
b/dev-python/oslo-utils/oslo-utils-4.12.0.ebuild
deleted file mode 100644
index 48ad03a4b210..
--- a/dev-python/oslo-utils/oslo-utils-4.12.0.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..9} )
-inherit distutils-r1
-
-MY_P=${P/-/.}
-DESCRIPTION="Oslo Utility library"
-HOMEPAGE="https://launchpad.net/oslo;
-SRC_URI="mirror://pypi/${PN::1}/${PN/-/.}/${MY_P}.tar.gz"
-S="${WORKDIR}/${MY_P}"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm arm64 x86"
-
-RDEPEND="
-   >=dev-python/iso8601-0.1.11[${PYTHON_USEDEP}]
-   >=dev-python/oslo-i18n-3.15.3[${PYTHON_USEDEP}]
-   >=dev-python/pytz-2013.6[${PYTHON_USEDEP}]
-   >=dev-python/netaddr-0.7.18[${PYTHON_USEDEP}]
-   >=dev-python/netifaces-0.10.4[${PYTHON_USEDEP}]
-   >=dev-python/debtcollector-1.2.0[${PYTHON_USEDEP}]
-   >=dev-python/pyparsing-2.1.0[${PYTHON_USEDEP}]
-   >=dev-python/packaging-20.4[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   >=dev-python/pbr-2.2.0[${PYTHON_USEDEP}]
-   >dev-python/eventlet-0.23.0[${PYTHON_USEDEP}]
-   test? (
-   >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
-   >=dev-python/testscenarios-0.4[${PYTHON_USEDEP}]
-   >=dev-python/testtools-2.2.0[${PYTHON_USEDEP}]
-   >=dev-python/oslotest-3.2.0[${PYTHON_USEDEP}]
-   >=dev-python/ddt-1.0.1[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests unittest
-
-src_prepare() {
-   # spurious rdep
-   sed -i -e '/pbr/d' requirements.txt || die
-   distutils-r1_src_prepare
-}

diff --git a/dev-python/oslo-utils/oslo-utils-4.12.1.ebuild 
b/dev-python/oslo-utils/oslo-utils-4.12.1.ebuild
deleted file mode 100644
index 188b2dbbcda8..
--- a/dev-python/oslo-utils/oslo-utils-4.12.1.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..9} )
-inherit distutils-r1
-
-MY_P=${P/-/.}
-DESCRIPTION="Oslo Utility library"
-HOMEPAGE="https://launchpad.net/oslo;
-SRC_URI="mirror://pypi/${PN::1}/${PN/-/.}/${MY_P}.tar.gz"
-S="${WORKDIR}/${MY_P}"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
-
-RDEPEND="
-   >=dev-python/iso8601-0.1.11[${PYTHON_USEDEP}]
-   >=dev-python/oslo-i18n-3.15.3[${PYTHON_USEDEP}]
-   >=dev-python/pytz-2013.6[${PYTHON_USEDEP}]
-   >=dev-python/netaddr-0.7.18[${PYTHON_USEDEP}]
-   >=dev-python/netifaces-0.10.4[${PYTHON_USEDEP}]
-   >=dev-python/debtcollector-1.2.0[${PYTHON_USEDEP}]
-   >=dev-python/pyparsing-2.1.0[${PYTHON_USEDEP}]
-   >=dev-python/packaging-20.4[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   >=dev-python/pbr-2.2.0[${PYTHON_USEDEP}]
-   >dev-python/eventlet-0.23.0[${PYTHON_USEDEP}]
-   test? (
-   >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
-   >=dev-python/testscenarios-0.4[${PYTHON_USEDEP}]
-   >=dev-python/testtools-2.2.0[${PYTHON_USEDEP}]
-   

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

2022-02-27 Thread Michał Górny
commit: b133ba2a7cc4159729ce084e800095b2adb13d01
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Feb 27 18:48:50 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Feb 27 18:48:50 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b133ba2a

dev-python/tzlocal: Remove old

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

 dev-python/tzlocal/tzlocal-4.1.ebuild | 27 ---
 1 file changed, 27 deletions(-)

diff --git a/dev-python/tzlocal/tzlocal-4.1.ebuild 
b/dev-python/tzlocal/tzlocal-4.1.ebuild
deleted file mode 100644
index b7f7c3f25e8e..
--- a/dev-python/tzlocal/tzlocal-4.1.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} pypy3 )
-inherit distutils-r1
-
-DESCRIPTION="tzinfo object for the local timezone"
-HOMEPAGE="https://github.com/regebro/tzlocal;
-SRC_URI="https://github.com/regebro/tzlocal/archive/${PV}.tar.gz -> 
${P}.gh.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc x86"
-
-RDEPEND="
-   dev-python/pytz_deprecation_shim[${PYTHON_USEDEP}]
-   $(python_gen_cond_dep '
-   dev-python/backports-zoneinfo[${PYTHON_USEDEP}]
-   ' python3_8 pypy3)"
-BDEPEND="
-   test? (
-   dev-python/pytest-mock[${PYTHON_USEDEP}]
-   )"
-
-distutils_enable_tests pytest



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

2022-02-27 Thread Michał Górny
commit: 944a08d04d6b9774596343811cdf67a360f7e0bc
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Feb 27 18:48:14 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Feb 27 18:48:14 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=944a08d0

dev-python/url-normalize: Remove old

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

 .../url-normalize/url-normalize-1.4.3.ebuild   | 30 --
 1 file changed, 30 deletions(-)

diff --git a/dev-python/url-normalize/url-normalize-1.4.3.ebuild 
b/dev-python/url-normalize/url-normalize-1.4.3.ebuild
deleted file mode 100644
index 5c25c5942d52..
--- a/dev-python/url-normalize/url-normalize-1.4.3.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DISTUTILS_USE_SETUPTOOLS=pyproject.toml
-PYTHON_COMPAT=( python3_{8..10} )
-inherit distutils-r1
-
-DESCRIPTION="URL normalization for Python"
-HOMEPAGE="
-   https://github.com/niksite/url-normalize/
-   https://pypi.org/project/url-normalize/;
-SRC_URI="
-   https://github.com/niksite/url-normalize/archive/${PV}.tar.gz
-   -> ${P}.gh.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-RDEPEND="dev-python/six[${PYTHON_USEDEP}]"
-
-distutils_enable_tests pytest
-
-src_prepare() {
-   # remove problematic pytest options
-   rm tox.ini || die
-   distutils-r1_src_prepare
-}



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

2022-02-27 Thread Michał Górny
commit: 5d33c11f128608a16a26a4fba57f4591824118bc
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Feb 27 18:51:32 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Feb 27 18:51:32 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d33c11f

dev-python/pony: Remove old

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

 dev-python/pony/Manifest   |  2 --
 dev-python/pony/pony-0.7.14.ebuild | 26 --
 dev-python/pony/pony-0.7.15.ebuild | 25 -
 3 files changed, 53 deletions(-)

diff --git a/dev-python/pony/Manifest b/dev-python/pony/Manifest
index 932de943bcaa..730f6c692639 100644
--- a/dev-python/pony/Manifest
+++ b/dev-python/pony/Manifest
@@ -1,3 +1 @@
-DIST pony-0.7.14.gh.tar.gz 305795 BLAKE2B 
a0e056d722a205a00567a230628be6ef8a7fe86f594f91ec0e8bbfc6d6eec17ec1d4cf3f57ad10984b8beb0a90da3010d9a32f2f08dca434af39e20fc6e9126c
 SHA512 
ed27fd697dd14948c282dab6b75e41c9309d0ef4c4cccb0f91e4214e81de52a2de3910e413dfc5495ffcea190a5b50255c45b2beecead84eecb601ba2463d998
-DIST pony-0.7.15.gh.tar.gz 268638 BLAKE2B 
d93dcc21a13834a23c0fcbeec7f6ea98ff6750d1650b00e738d65c7b7985ba7880ddfc8238e4b4f3ee4a302a31b69a4767ea52728e66b5cfe62e0190769e6b8c
 SHA512 
ca81441fe1a714bc863bde33739ae2e65f42d8e763a5c6734517987a4c03faffb08a134517bcc61f5b7941f207e32e4ca02fe12fccca871d481f44a81da12536
 DIST pony-0.7.16.gh.tar.gz 268683 BLAKE2B 
bee6447116f215cd586e69f29fea37ba3f9953d0a72b28acf612da2d6e1be07e424b704593e42ae1755e898580aaf4f2e61923ff81e6e58fe0cc8ec04a3b8399
 SHA512 
db9bb06f0e718866eb6f137d5650a2b484119c42f1ade83a7bc1c9e3c27a852ed25e451a226a80bebd050ca3217c0993e59f3b66719a3fe41a98e45349172495

diff --git a/dev-python/pony/pony-0.7.14.ebuild 
b/dev-python/pony/pony-0.7.14.ebuild
deleted file mode 100644
index 23ab8c6e7cc6..
--- a/dev-python/pony/pony-0.7.14.ebuild
+++ /dev/null
@@ -1,26 +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="Python ORM with beautiful query syntax"
-HOMEPAGE="
-   https://ponyorm.org/
-   https://github.com/ponyorm/pony/;
-SRC_URI="
-   https://github.com/ponyorm/pony/archive/v${PV}.tar.gz
-   -> ${P}.gh.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-BDEPEND="test? ( $(python_gen_impl_dep sqlite) )"
-RDEPEND="dev-python/flask[${PYTHON_USEDEP}]"
-
-distutils_enable_tests unittest

diff --git a/dev-python/pony/pony-0.7.15.ebuild 
b/dev-python/pony/pony-0.7.15.ebuild
deleted file mode 100644
index 2260573d4ebf..
--- a/dev-python/pony/pony-0.7.15.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 2020-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} )
-inherit distutils-r1
-
-DESCRIPTION="Python ORM with beautiful query syntax"
-HOMEPAGE="
-   https://ponyorm.org/
-   https://github.com/ponyorm/pony/;
-SRC_URI="
-   https://github.com/ponyorm/pony/archive/v${PV}.tar.gz
-   -> ${P}.gh.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="dev-python/flask[${PYTHON_USEDEP}]"
-BDEPEND="test? ( $(python_gen_impl_dep sqlite) )"
-
-distutils_enable_tests unittest



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

2022-02-27 Thread Michał Górny
commit: ec2e811c4a3ab040a10ad30157fb85ec05deccd9
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Feb 27 18:50:40 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Feb 27 18:50:40 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec2e811c

dev-python/more-itertools: Remove old

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

 .../more-itertools/more-itertools-8.12.0.ebuild   | 19 ---
 1 file changed, 19 deletions(-)

diff --git a/dev-python/more-itertools/more-itertools-8.12.0.ebuild 
b/dev-python/more-itertools/more-itertools-8.12.0.ebuild
deleted file mode 100644
index 2c4344c1e70f..
--- a/dev-python/more-itertools/more-itertools-8.12.0.ebuild
+++ /dev/null
@@ -1,19 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} pypy3 )
-inherit distutils-r1
-
-DESCRIPTION="More routines for operating on iterables, beyond itertools"
-HOMEPAGE="https://pypi.org/project/more-itertools/;
-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-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-
-distutils_enable_sphinx docs \
-   dev-python/sphinx_rtd_theme
-distutils_enable_tests unittest



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

2022-02-27 Thread Michał Górny
commit: 654b56d363416cb754d00a15a0dec91630054f5a
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Feb 27 18:51:22 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Feb 27 18:51:22 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=654b56d3

dev-python/pkgconfig: Remove old

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

 dev-python/pkgconfig/pkgconfig-1.5.5.ebuild | 20 
 1 file changed, 20 deletions(-)

diff --git a/dev-python/pkgconfig/pkgconfig-1.5.5.ebuild 
b/dev-python/pkgconfig/pkgconfig-1.5.5.ebuild
deleted file mode 100644
index 8123f6db1f37..
--- a/dev-python/pkgconfig/pkgconfig-1.5.5.ebuild
+++ /dev/null
@@ -1,20 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} pypy3 )
-DISTUTILS_USE_SETUPTOOLS=pyproject.toml
-inherit distutils-r1
-
-DESCRIPTION="Interface Python with pkg-config"
-HOMEPAGE="https://pypi.org/project/pkgconfig/ 
https://github.com/matze/pkgconfig;
-SRC_URI="https://github.com/matze/pkgconfig/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 ~ppc64 ~riscv x86 ~amd64-linux ~x86-linux"
-
-RDEPEND="virtual/pkgconfig"
-
-distutils_enable_tests pytest



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

2022-02-27 Thread Michał Górny
commit: 44c1c654cf4c5059cbe35557bdeca30cb0807359
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Feb 27 18:51:12 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Feb 27 18:51:12 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44c1c654

dev-python/prometheus_client: Remove old

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

 dev-python/prometheus_client/Manifest  |  2 --
 .../prometheus_client-0.12.0.ebuild| 21 --
 .../prometheus_client-0.13.0.ebuild| 25 --
 3 files changed, 48 deletions(-)

diff --git a/dev-python/prometheus_client/Manifest 
b/dev-python/prometheus_client/Manifest
index 11b34cbe7c74..88ff9c361f28 100644
--- a/dev-python/prometheus_client/Manifest
+++ b/dev-python/prometheus_client/Manifest
@@ -1,3 +1 @@
-DIST prometheus_client-0.12.0.tar.gz 73521 BLAKE2B 
eb90c7f3991519fe132f01612d6aadd10193947069b79e67c9e37faa4e174d739ca78b12de028dfc922cb368c7405baeb4fa929b378a91db12e67190ca3561ff
 SHA512 
ebcbbed706a96a9402eb985f5da15ee8fae09de952144a89a3323e147c0d16615ccd9be58b50b5b8ede37d4f66de1e2ce93ed53c4da939ca2e44c7aac687a1f7
-DIST prometheus_client-0.13.0.tar.gz 73277 BLAKE2B 
547966c22efdaaa76b821918e8e22ebc14f3a43b7f712c6c8be13d0a6ab3d94d56dd92576e63d1a9a0ba62a5ff662b717c5b6294f48a5e28fd40dfe4693706a2
 SHA512 
4991e534a78b08686f46ff7214cf2e19a97e302977a696460adfde1e0245d4cc115502a2cc9cb5d5f34401712ab6f84f9b77bb0f88aefaf9c534eadfe66803f3
 DIST prometheus_client-0.13.1.gh.tar.gz 73480 BLAKE2B 
53b2572373024a452731c055fc115ddb3c029b905d455cf9dc6289af91866c13187e58008770aa20969b371cd0852ef20651603e153195fb4658d21a628df5a3
 SHA512 
8d5263ff00fc4797fa65a446bdab4dc3c717cc091f8cee571fdd2130febc480cc61e73e11145ac2bf9bc0eee132efc92d88a4d4facd61d515234748791a92255

diff --git a/dev-python/prometheus_client/prometheus_client-0.12.0.ebuild 
b/dev-python/prometheus_client/prometheus_client-0.12.0.ebuild
deleted file mode 100644
index 833fba36cb47..
--- a/dev-python/prometheus_client/prometheus_client-0.12.0.ebuild
+++ /dev/null
@@ -1,21 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} )
-inherit distutils-r1
-
-DESCRIPTION="Python client for the Prometheus monitoring system"
-HOMEPAGE="https://pypi.org/project/prometheus-client/
-   https://github.com/prometheus/client_python/;
-SRC_URI="https://github.com/prometheus/client_python/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-S="${WORKDIR}/client_python-${PV}"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm arm64 hppa ~ia64 ppc ~ppc64 ~riscv ~s390 ~sparc x86"
-
-RDEPEND="dev-python/twisted[${PYTHON_USEDEP}]"
-
-distutils_enable_tests pytest

diff --git a/dev-python/prometheus_client/prometheus_client-0.13.0.ebuild 
b/dev-python/prometheus_client/prometheus_client-0.13.0.ebuild
deleted file mode 100644
index f15fb9437e92..
--- a/dev-python/prometheus_client/prometheus_client-0.13.0.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="Python client for the Prometheus monitoring system"
-HOMEPAGE="https://pypi.org/project/prometheus-client/
-   https://github.com/prometheus/client_python/;
-SRC_URI="
-   https://github.com/prometheus/client_python/archive/v${PV}.tar.gz
-   -> ${P}.tar.gz"
-S="${WORKDIR}/client_python-${PV}"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
-
-RDEPEND="dev-python/twisted[${PYTHON_USEDEP}]"
-
-distutils_enable_tests pytest



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

2022-02-27 Thread Michał Górny
commit: b41cbafbd8520e82adc73661d4fc8903ef8248f3
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Feb 27 18:47:39 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Feb 27 18:47:39 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b41cbafb

dev-python/twine: Remove old

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

 dev-python/twine/Manifest  |  1 -
 dev-python/twine/twine-3.7.0-r1.ebuild | 54 --
 dev-python/twine/twine-3.7.0.ebuild| 54 --
 3 files changed, 109 deletions(-)

diff --git a/dev-python/twine/Manifest b/dev-python/twine/Manifest
index c9396c74d67c..9005a8b2c07d 100644
--- a/dev-python/twine/Manifest
+++ b/dev-python/twine/Manifest
@@ -1,2 +1 @@
-DIST twine-3.7.0.tar.gz 212591 BLAKE2B 
116d96a058cb53e0626747aaeae40c63fd6ece4ed8ef537c3890f99226f34827b65e5e894f5f04a24999d5ca2bcf182505e08075c4ff8b979d7be71e05f645ef
 SHA512 
d7ddfdfcbaa7a5e3eba3657a06da090eeecbf373646e64d659f420fae4ba10c16c2c02e85bdf9c1f050b86177f19c85aa20183ad9d546cb053a11d60db0851f3
 DIST twine-3.8.0.tar.gz 213157 BLAKE2B 
c7c013a01b0f1f5ec24c76ebfea2c645da07eae0bb816978a37ed95bca4a2193cea627bdddefcd4beaadbe4bd7ee51315b309fbf06555cc75d509bc61578ac7d
 SHA512 
d6ede7241d4825665054811ad657916281426eda6ee88f0e83295b5498876830b6c69284056e409539c792c24ebeb5af2eedf45108261490a72812b9e86e08f2

diff --git a/dev-python/twine/twine-3.7.0-r1.ebuild 
b/dev-python/twine/twine-3.7.0-r1.ebuild
deleted file mode 100644
index 8566ac09bad8..
--- a/dev-python/twine/twine-3.7.0-r1.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} pypy3 )
-inherit distutils-r1
-
-DESCRIPTION="Collection of utilities for publishing packages on PyPI"
-HOMEPAGE="https://twine.readthedocs.io/ https://github.com/pypa/twine 
https://pypi.org/project/twine/;
-SRC_URI="https://github.com/pypa/twine/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86 
~x64-macos"
-
-RDEPEND="
-   >=dev-python/colorama-0.4.3[${PYTHON_USEDEP}]
-   >=dev-python/importlib_metadata-3.6[${PYTHON_USEDEP}]
-   >=dev-python/keyring-15.1[${PYTHON_USEDEP}]
-   >=dev-python/pkginfo-1.8.1[${PYTHON_USEDEP}]
-   >=dev-python/readme_renderer-21.0[${PYTHON_USEDEP}]
-   >=dev-python/requests-2.20.0[${PYTHON_USEDEP}]
-   >=dev-python/requests-toolbelt-0.8.0[${PYTHON_USEDEP}]
-   >=dev-python/rfc3986-1.4.0[${PYTHON_USEDEP}]
-   >=dev-python/tqdm-4.14[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   dev-python/setuptools_scm[${PYTHON_USEDEP}]
-   test? (
-   dev-python/jaraco-envs[${PYTHON_USEDEP}]
-   dev-python/jaraco-functools[${PYTHON_USEDEP}]
-   dev-python/munch[${PYTHON_USEDEP}]
-   dev-python/portend[${PYTHON_USEDEP}]
-   dev-python/pretend[${PYTHON_USEDEP}]
-   dev-python/pypiserver[${PYTHON_USEDEP}]
-   dev-python/pytest[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-python_prepare_all() {
-   # requires internet
-   rm -f tests/test_integration.py || die
-   # pytest-socket dep relevant only to test_integration, and upstream
-   # disables it anyway
-   sed -i -e '/--disable-socket/d' pytest.ini || die
-   sed -i -e '/--cov/d' pytest.ini || die
-
-   distutils-r1_python_prepare_all
-   export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
-}

diff --git a/dev-python/twine/twine-3.7.0.ebuild 
b/dev-python/twine/twine-3.7.0.ebuild
deleted file mode 100644
index 75214fef9457..
--- a/dev-python/twine/twine-3.7.0.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_SETUPTOOLS=pyproject.toml
-PYTHON_COMPAT=( python3_{8..10} pypy3 )
-inherit distutils-r1
-
-DESCRIPTION="Collection of utilities for publishing packages on PyPI"
-HOMEPAGE="https://twine.readthedocs.io/ https://github.com/pypa/twine 
https://pypi.org/project/twine/;
-SRC_URI="https://github.com/pypa/twine/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ppc ppc64 ~riscv sparc x86 ~x64-macos"
-
-RDEPEND="
-   >=dev-python/colorama-0.4.3[${PYTHON_USEDEP}]
-   >=dev-python/importlib_metadata-3.6[${PYTHON_USEDEP}]
-   >=dev-python/keyring-15.1[${PYTHON_USEDEP}]
-   >=dev-python/pkginfo-1.8.1[${PYTHON_USEDEP}]
-   >=dev-python/readme_renderer-21.0[${PYTHON_USEDEP}]
-   >=dev-python/requests-2.20.0[${PYTHON_USEDEP}]
-   >=dev-python/requests-toolbelt-0.8.0[${PYTHON_USEDEP}]
-   >=dev-python/rfc3986-1.4.0[${PYTHON_USEDEP}]
-   >=dev-python/tqdm-4.14[${PYTHON_USEDEP}]
-"
-BDEPEND="

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

2022-02-27 Thread Michał Górny
commit: 31a776dc61a92eb5591ce69ed723a73869cae776
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Feb 27 18:48:23 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Feb 27 18:48:23 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31a776dc

dev-python/tomli-w: Remove old

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

 dev-python/tomli-w/tomli-w-1.0.0.ebuild | 26 --
 1 file changed, 26 deletions(-)

diff --git a/dev-python/tomli-w/tomli-w-1.0.0.ebuild 
b/dev-python/tomli-w/tomli-w-1.0.0.ebuild
deleted file mode 100644
index eea63b533bf9..
--- a/dev-python/tomli-w/tomli-w-1.0.0.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 2021-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_SETUPTOOLS=pyproject.toml
-PYTHON_COMPAT=( python3_{8..10} pypy3 )
-
-inherit distutils-r1
-
-DESCRIPTION="A lil' TOML writer"
-HOMEPAGE="
-   https://pypi.org/project/tomli-w/
-   https://github.com/hukkin/tomli-w/;
-SRC_URI="
-   https://github.com/hukkin/tomli-w/archive/${PV}.tar.gz
-   -> ${P}.gh.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv sparc 
x86"
-
-BDEPEND="
-   test? ( dev-python/tomli[${PYTHON_USEDEP}] )"
-
-distutils_enable_tests pytest



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

2022-02-27 Thread Michał Górny
commit: 37b4bac8aead677ed8f59a655be8940b341e7f98
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Feb 27 18:47:27 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Feb 27 18:47:27 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37b4bac8

dev-python/terminaltables: Remove old

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

 .../terminaltables/terminaltables-3.1.10.ebuild| 39 --
 1 file changed, 39 deletions(-)

diff --git a/dev-python/terminaltables/terminaltables-3.1.10.ebuild 
b/dev-python/terminaltables/terminaltables-3.1.10.ebuild
deleted file mode 100644
index 030c0351a71d..
--- a/dev-python/terminaltables/terminaltables-3.1.10.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_SETUPTOOLS=pyproject.toml
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="Generate simple tables in terminals from a nested list of strings"
-HOMEPAGE="https://robpol86.github.io/terminaltables/;
-SRC_URI="
-   
https://github.com/matthewdeanmartin/terminaltables/archive/v${PV}.tar.gz
-   -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-BDEPEND="
-   test? (
-   dev-python/colorama[${PYTHON_USEDEP}]
-   dev-python/colorclass[${PYTHON_USEDEP}]
-   dev-python/termcolor[${PYTHON_USEDEP}]
-   )"
-
-distutils_enable_tests pytest
-
-PATCHES=(
-   "${FILESDIR}"/terminaltables-3.1.0-stdout.patch
-)
-
-src_prepare() {
-   # workaround pp2sp complaining about unsupported exclude,
-   # even though it's empty (fix will be included in pp2sp-22)
-   sed -i -e 's:^exclude:empty-&:' pyproject.toml || die
-   distutils-r1_src_prepare
-}



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

2022-02-27 Thread Michał Górny
commit: aad9ffd2313a8b0b1efa06b8b05b4160973e34c9
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Feb 27 18:48:05 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Feb 27 18:48:05 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aad9ffd2

dev-python/typing-extensions: Remove old

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

 dev-python/typing-extensions/Manifest  |  2 --
 .../typing-extensions-4.0.1-r1.ebuild  | 27 
 .../typing-extensions-4.0.1.ebuild | 29 --
 .../typing-extensions-4.1.0.ebuild | 27 
 4 files changed, 85 deletions(-)

diff --git a/dev-python/typing-extensions/Manifest 
b/dev-python/typing-extensions/Manifest
index 573b97b6ce0f..235acc55c533 100644
--- a/dev-python/typing-extensions/Manifest
+++ b/dev-python/typing-extensions/Manifest
@@ -1,3 +1 @@
-DIST typing-extensions-4.0.1.gh.tar.gz 65425 BLAKE2B 
0712ac0b87e67e716c562bc8d25d88b60c42b513b7f97ddeb2b6d959f2a3ee582ec5f692a192d17323ff892290bf410eadd53012ff0485c4c8b2bc8b15a7a465
 SHA512 
5af1590a98247f01df5abcbc7fe4db19b0b174918d2679b532e8c1e5483ae2293901c2314240217ab1bad087633e02865311f9b295b3d65587fdf2f6e0a26bc5
-DIST typing-extensions-4.1.0.gh.tar.gz 78345 BLAKE2B 
535e99c40f148b84047074e7fdf3e34e47fca018e258170677cad82d4fdd821429dd13a33673841757357d4d8bc01d22eca2d409b5ee106fffa876177fbe4037
 SHA512 
05afc509502a1c36b50a3c0c64e1677573d7ae4fccb3f0e14497df2a655f897faeda58a6d0c529ec160e89327a865e9bd6f818a58b773f75da64c6ce2c7d0f2e
 DIST typing-extensions-4.1.1.gh.tar.gz 78687 BLAKE2B 
94a486a746ff76d8ad1c416b61ec3e22864246c531536d7db6f0aa5113adf0f4bcb9e8e843b9c7fdbbbe915375fa303211d66b9f838629ac0d43a768a4bc82cc
 SHA512 
251e7bd0216d0b2a83d963bd528d94700f113cc0ccc98959d5512faf5c738e1332673f42709ce8b3b7f5c7573edb794c34f5c02d82fef8d4bbae03db50b1ce92

diff --git a/dev-python/typing-extensions/typing-extensions-4.0.1-r1.ebuild 
b/dev-python/typing-extensions/typing-extensions-4.0.1-r1.ebuild
deleted file mode 100644
index 40d1dbb27581..
--- a/dev-python/typing-extensions/typing-extensions-4.0.1-r1.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=flit
-PYTHON_COMPAT=( python3_{8..10} pypy3 )
-
-inherit distutils-r1
-
-MY_P=typing-${PV}
-DESCRIPTION="Type Hint extensions from Python 3.8 backported"
-HOMEPAGE="
-   https://pypi.org/project/typing-extensions/
-   https://github.com/python/typing/;
-SRC_URI="
-   https://github.com/python/typing/archive/${PV}.tar.gz -> ${P}.gh.tar.gz"
-S=${WORKDIR}/${MY_P}/typing_extensions
-
-LICENSE="PSF-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris"
-
-python_test() {
-   cd "${S}"/src || die
-   "${EPYTHON}" test_typing_extensions.py -v || die "tests failed under 
${EPYTHON}"
-}

diff --git a/dev-python/typing-extensions/typing-extensions-4.0.1.ebuild 
b/dev-python/typing-extensions/typing-extensions-4.0.1.ebuild
deleted file mode 100644
index a070b0236058..
--- a/dev-python/typing-extensions/typing-extensions-4.0.1.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_SETUPTOOLS=pyproject.toml
-PYTHON_COMPAT=( python3_{8..10} pypy3 )
-
-inherit distutils-r1
-
-MY_P=typing-${PV}
-DESCRIPTION="Type Hint extensions from Python 3.8 backported"
-HOMEPAGE="
-   https://pypi.org/project/typing-extensions/
-   https://github.com/python/typing/;
-SRC_URI="
-   https://github.com/python/typing/archive/${PV}.tar.gz -> ${P}.gh.tar.gz"
-S=${WORKDIR}/${MY_P}/typing_extensions
-
-LICENSE="PSF-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris"
-
-BDEPEND=">=dev-python/pyproject2setuppy-22[${PYTHON_USEDEP}]"
-
-python_test() {
-   cd "${S}"/src || die
-   "${EPYTHON}" test_typing_extensions.py -v || die "tests failed under 
${EPYTHON}"
-}

diff --git a/dev-python/typing-extensions/typing-extensions-4.1.0.ebuild 
b/dev-python/typing-extensions/typing-extensions-4.1.0.ebuild
deleted file mode 100644
index 40d1dbb27581..
--- a/dev-python/typing-extensions/typing-extensions-4.1.0.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=flit
-PYTHON_COMPAT=( python3_{8..10} pypy3 )
-
-inherit distutils-r1
-
-MY_P=typing-${PV}
-DESCRIPTION="Type Hint extensions from Python 3.8 backported"
-HOMEPAGE="
-   https://pypi.org/project/typing-extensions/
-   https://github.com/python/typing/;
-SRC_URI="
-   

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

2022-02-27 Thread Michał Górny
commit: 5127453a7dd689a4fa66459820471912a85b1fc3
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Feb 27 18:47:11 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Feb 27 18:47:11 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5127453a

dev-python/terminado: Remove old

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

 dev-python/terminado/Manifest|  2 --
 dev-python/terminado/terminado-0.12.1.ebuild | 30 ---
 dev-python/terminado/terminado-0.13.0.ebuild | 31 
 3 files changed, 63 deletions(-)

diff --git a/dev-python/terminado/Manifest b/dev-python/terminado/Manifest
index c31306fc5b53..85ad1a265832 100644
--- a/dev-python/terminado/Manifest
+++ b/dev-python/terminado/Manifest
@@ -1,3 +1 @@
-DIST terminado-0.12.1.tar.gz 14513 BLAKE2B 
97537851a2284c4cae2d9cdc42ad2714c9368f4318ac14c35197d6691404bec205b7b589c35302ff9d3fa99e4a15e24e713f70cc319e26788631134ff4b77cb1
 SHA512 
770a41b8fa6b43a577c077e8239a43b654f8e4423564ca38d66428ed6c322edea64c98225cb94ae182add9757b6d4e52796edd332443fe7ac643677a8d133674
-DIST terminado-0.13.0.tar.gz 16587 BLAKE2B 
4a5b7431412d4eb65df076846519bb4ec89873bf2a6daf6ef5bf9c378d428378ca7323dadfcbcac43b4136cc91d6e786361c96e36b1e1dddbc0723a02666a52b
 SHA512 
bf2b1d39afeaff43c9ae9cfa4ab799e254b97b7fb43d831c373ac1a6f954780757546df2a240d863901e13c610f07f429b30f188eebacbae33c6c9bb43d14bcc
 DIST terminado-0.13.1.tar.gz 16770 BLAKE2B 
ee95896d8fea06496ff9c7b44e081719227fa83ac612a40919ecbd979b0078df3a66f69b9a0ce2b944f4e6d181208f6918a1d69ffb3315bea7793c1f1c449eb1
 SHA512 
80d0ae11debd302b561d27ebf5f62cd8e318f0f0585818b71da5bf3fa43da497c0a7a90f4c23330e4d7e65c1f879db2df1e80768d9f45bbb5a7dd9e4362b4198

diff --git a/dev-python/terminado/terminado-0.12.1.ebuild 
b/dev-python/terminado/terminado-0.12.1.ebuild
deleted file mode 100644
index e3c753560fc5..
--- a/dev-python/terminado/terminado-0.12.1.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_SETUPTOOLS=pyproject.toml
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="Terminals served to term.js using Tornado websockets"
-HOMEPAGE="https://pypi.org/project/terminado/ 
https://github.com/jupyter/terminado;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-SLOT="0"
-LICENSE="BSD-2"
-KEYWORDS="amd64 ~arm ~arm64 hppa ~ia64 ppc ~ppc64 ~riscv ~s390 ~sparc x86 
~amd64-linux ~x86-linux"
-
-RDEPEND="
-   dev-python/ptyprocess[${PYTHON_USEDEP}]
-   www-servers/tornado[${PYTHON_USEDEP}]"
-
-distutils_enable_tests pytest
-
-src_test() {
-   # workaround new readline defaults
-   echo "set enable-bracketed-paste off" > "${T}"/inputrc || die
-   local -x INPUTRC="${T}"/inputrc
-   distutils-r1_src_test
-}

diff --git a/dev-python/terminado/terminado-0.13.0.ebuild 
b/dev-python/terminado/terminado-0.13.0.ebuild
deleted file mode 100644
index 72cd87d36e72..
--- a/dev-python/terminado/terminado-0.13.0.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="Terminals served to term.js using Tornado websockets"
-HOMEPAGE="https://pypi.org/project/terminado/ 
https://github.com/jupyter/terminado;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-SLOT="0"
-LICENSE="BSD-2"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 
~amd64-linux ~x86-linux"
-
-BDEPEND="
-   www-servers/tornado[${PYTHON_USEDEP}]"
-RDEPEND="${BDEPEND}
-   dev-python/ptyprocess[${PYTHON_USEDEP}]"
-
-distutils_enable_tests pytest
-
-src_test() {
-   # workaround new readline defaults
-   echo "set enable-bracketed-paste off" > "${T}"/inputrc || die
-   local -x INPUTRC="${T}"/inputrc
-   distutils-r1_src_test
-}



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

2022-02-27 Thread Michał Górny
commit: 9baa0ea6ea0770f0dfc42595f43b814641b1c0dc
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Feb 27 18:47:48 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Feb 27 18:47:48 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9baa0ea6

dev-python/tinycss2: Remove old

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

 dev-python/tinycss2/tinycss2-1.1.1.ebuild | 39 ---
 1 file changed, 39 deletions(-)

diff --git a/dev-python/tinycss2/tinycss2-1.1.1.ebuild 
b/dev-python/tinycss2/tinycss2-1.1.1.ebuild
deleted file mode 100644
index 35f158990430..
--- a/dev-python/tinycss2/tinycss2-1.1.1.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_SETUPTOOLS=pyproject.toml
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1
-
-CSS_TEST_COMMIT_ID=c5749e51dda3868b3e8062e65a36584c2fec8059
-
-DESCRIPTION="A complete yet simple CSS parser for Python"
-HOMEPAGE="https://github.com/Kozea/tinycss2/
-   https://pypi.org/project/tinycss2/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-SRC_URI="
-   https://github.com/Kozea/tinycss2/archive/v${PV}.tar.gz -> 
${P}.gh.tar.gz
-   test? (
-   
https://github.com/SimonSapin/css-parsing-tests/archive/${CSS_TEST_COMMIT_ID}.tar.gz
-   -> css-parsing-tests-${CSS_TEST_COMMIT_ID}.gh.tar.gz
-   )"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~riscv x86"
-
-RDEPEND=">=dev-python/webencodings-0.4[${PYTHON_USEDEP}]"
-
-distutils_enable_tests pytest
-
-src_prepare() {
-   sed -i -e '/addopts/d' pyproject.toml || die
-   if use test; then
-   mv "${WORKDIR}/css-parsing-tests-${CSS_TEST_COMMIT_ID}"/* \
-   tests/css-parsing-tests/ || die
-   fi
-   distutils-r1_src_prepare
-}



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

2022-02-27 Thread Michał Górny
commit: 083c97743920dbc71c583fc7a69fccfe042f21a5
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Feb 27 18:50:28 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Feb 27 18:50:28 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=083c9774

dev-python/logical-unification: Remove old

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

 dev-python/logical-unification/Manifest|  1 -
 .../logical-unification-0.4.4.ebuild   | 33 --
 2 files changed, 34 deletions(-)

diff --git a/dev-python/logical-unification/Manifest 
b/dev-python/logical-unification/Manifest
index 2fa74fb9b298..f4d929eeae85 100644
--- a/dev-python/logical-unification/Manifest
+++ b/dev-python/logical-unification/Manifest
@@ -1,2 +1 @@
-DIST logical-unification-0.4.4.gh.tar.gz 44705 BLAKE2B 
2a120bd143fba81554a94bea12e007a1a1230f9cb47304e7248acbdbda59666e46bbfcfddf2fa95e422eecd5978a3eec51f1648e995c46e8467b423a96970cf9
 SHA512 
0742b105702efc9d17b48ce573e02e119adfbc30c0835fe2bae1266193d8e9ecefe0caec691cc214a29ecae6f7051c5b0d2f05f8d3910c29893d1822a97f5d5a
 DIST logical-unification-0.4.5.gh.tar.gz 47003 BLAKE2B 
9f7e119a69b15b460ce66af137a3f0c3dd3da154173ac196a94d4894aafc67eeaa31d69c5ca8bdd6e264a3f7599f9e301dad103510c77e60ff14cc8af1c86ce8
 SHA512 
42af33ac7da6013d48d26ab49b84b40146f494963f1eee06256a219e8d0517b04cc3fe86f51cf19729fc64ad765e75a4890b278c2dbbf34eb7e1ef65f3014784

diff --git a/dev-python/logical-unification/logical-unification-0.4.4.ebuild 
b/dev-python/logical-unification/logical-unification-0.4.4.ebuild
deleted file mode 100644
index cdbe4e5b259c..
--- a/dev-python/logical-unification/logical-unification-0.4.4.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} )
-inherit distutils-r1
-
-DESCRIPTION="Logical unification in Python"
-HOMEPAGE="
-   https://pypi.org/project/logical-unification/
-   https://github.com/pythological/unification/
-"
-SRC_URI="
-   https://github.com/pythological/unification/archive/v${PV}.tar.gz
-   -> ${P}.gh.tar.gz
-"
-S="${WORKDIR}/unification-${PV}"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~riscv x86"
-
-RDEPEND="
-   dev-python/multipledispatch[${PYTHON_USEDEP}]
-   dev-python/toolz[${PYTHON_USEDEP}]
-"
-
-distutils_enable_tests pytest
-
-EPYTEST_DESELECT=(
-   tests/test_benchmarks.py
-)



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

2022-02-27 Thread Michał Górny
commit: 6840a73b2f117994cede621d7bcc3ad7be0cbd61
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Feb 27 18:46:56 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Feb 27 18:46:56 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6840a73b

dev-python/rfc3987: Remove old

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

 dev-python/rfc3987/rfc3987-1.3.8-r1.ebuild | 24 
 1 file changed, 24 deletions(-)

diff --git a/dev-python/rfc3987/rfc3987-1.3.8-r1.ebuild 
b/dev-python/rfc3987/rfc3987-1.3.8-r1.ebuild
deleted file mode 100644
index 79caa93503db..
--- a/dev-python/rfc3987/rfc3987-1.3.8-r1.ebuild
+++ /dev/null
@@ -1,24 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{8..10} pypy3 )
-
-inherit distutils-r1
-
-DESCRIPTION="Parsing and validation of URIs (RFC 3986) and IRIs (RFC 3987)"
-HOMEPAGE="https://github.com/dgerber/rfc3987 https://pypi.org/project/rfc3987/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~amd64-linux ~x86-linux"
-IUSE=""
-
-RDEPEND="dev-python/regex[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}"
-
-python_test() {
-   ${EPYTHON} -m doctest -v "${S}/${PN}.py" || die
-}



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

2022-02-27 Thread Michał Górny
commit: 838e8710b4f59d01f1e336322d65d9da32081c19
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Feb 27 18:45:41 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Feb 27 18:45:41 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=838e8710

dev-python/pyparsing: Remove old

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

 dev-python/pyparsing/Manifest   |  1 -
 dev-python/pyparsing/pyparsing-3.0.6.ebuild | 44 -
 dev-python/pyparsing/pyparsing-3.0.7.ebuild | 44 -
 3 files changed, 89 deletions(-)

diff --git a/dev-python/pyparsing/Manifest b/dev-python/pyparsing/Manifest
index 7b07598e99f3..ee6f4f744636 100644
--- a/dev-python/pyparsing/Manifest
+++ b/dev-python/pyparsing/Manifest
@@ -1,2 +1 @@
-DIST pyparsing_3.0.6.tar.gz 942509 BLAKE2B 
1ece2e83dd4193c8364bf690afc54090b46658fced62fc852b0098208d2ae4b18e96f050e63d8751c4b5cf95aa178a11dd1c37fc9d63ae1551639b5c91fe81d8
 SHA512 
5e94f1dcb4560a0f8e5b9a979b691b6362939648d03e9ea03f74e3aeeddafc09029c8e82c42a517aebe4a0483fd06cac03ae45030e074a40576f9570ed1eb5cc
 DIST pyparsing_3.0.7.tar.gz 944917 BLAKE2B 
bcbcd18817c69a69ac6863affb1309a5ca63fe46a45dc056d8407d79a77d1f19e4d1abce08f5d6f1aff7cbdaefb5b699787abcddfcbf64e5514e79e2b0b86ce6
 SHA512 
d5d5547188ebda6fb7f45928174314d3d4d10302acc8fb476cd6590fb4a75167dee5f6397ab0b63efd4cb55c0765708ffd432bcfecf28d8f808815e62615f447

diff --git a/dev-python/pyparsing/pyparsing-3.0.6.ebuild 
b/dev-python/pyparsing/pyparsing-3.0.6.ebuild
deleted file mode 100644
index 82b0224932c1..
--- a/dev-python/pyparsing/pyparsing-3.0.6.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 2004-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-# please keep this ebuild at EAPI 7 -- sys-apps/portage dep
-EAPI=7
-
-PYTHON_COMPAT=( python3_{8..10} pypy3 )
-inherit distutils-r1
-
-MY_P=${P/-/_}
-DESCRIPTION="Easy-to-use Python module for text parsing"
-HOMEPAGE="https://github.com/pyparsing/pyparsing 
https://pypi.org/project/pyparsing/;
-SRC_URI="https://github.com/${PN}/${PN}/archive/${MY_P}.tar.gz;
-S=${WORKDIR}/${PN}-${MY_P}
-
-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"
-IUSE="examples"
-
-distutils_enable_tests pytest
-
-EPYTEST_IGNORE=(
-   # railroad-diagrams not packaged (and not suitable for packaging yet)
-   tests/test_diagram.py
-)
-
-EPYTEST_DESELECT=(
-   # also railroad-diagrams
-   
tests/test_unit.py::Test02_WithoutPackrat::testEmptyExpressionsAreHandledProperly
-   
tests/test_unit.py::Test04_WithPackrat::testEmptyExpressionsAreHandledProperly
-   
tests/test_unit.py::Test06_WithBoundedPackrat::testEmptyExpressionsAreHandledProperly
-   
tests/test_unit.py::Test08_WithUnboundedPackrat::testEmptyExpressionsAreHandledProperly
-   
tests/test_unit.py::Test09_WithLeftRecursionParsing::testEmptyExpressionsAreHandledProperly
-   
tests/test_unit.py::Test10_WithLeftRecursionParsingBoundedMemo::testEmptyExpressionsAreHandledProperly
-)
-
-python_install_all() {
-   if use examples; then
-   docompress -x /usr/share/doc/${PF}/examples
-   dodoc -r examples
-   fi
-   distutils-r1_python_install_all
-}

diff --git a/dev-python/pyparsing/pyparsing-3.0.7.ebuild 
b/dev-python/pyparsing/pyparsing-3.0.7.ebuild
deleted file mode 100644
index 2130df7b4182..
--- a/dev-python/pyparsing/pyparsing-3.0.7.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 2004-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-# please keep this ebuild at EAPI 7 -- sys-apps/portage dep
-EAPI=7
-
-PYTHON_COMPAT=( python3_{8..10} pypy3 )
-inherit distutils-r1
-
-MY_P=${P/-/_}
-DESCRIPTION="Easy-to-use Python module for text parsing"
-HOMEPAGE="https://github.com/pyparsing/pyparsing 
https://pypi.org/project/pyparsing/;
-SRC_URI="https://github.com/${PN}/${PN}/archive/${MY_P}.tar.gz;
-S="${WORKDIR}/${PN}-${MY_P}"
-
-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"
-IUSE="examples"
-
-distutils_enable_tests pytest
-
-EPYTEST_IGNORE=(
-   # railroad-diagrams not packaged (and not suitable for packaging yet)
-   tests/test_diagram.py
-)
-
-EPYTEST_DESELECT=(
-   # also railroad-diagrams
-   
tests/test_unit.py::Test02_WithoutPackrat::testEmptyExpressionsAreHandledProperly
-   
tests/test_unit.py::Test04_WithPackrat::testEmptyExpressionsAreHandledProperly
-   
tests/test_unit.py::Test06_WithBoundedPackrat::testEmptyExpressionsAreHandledProperly
-   

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

2022-02-27 Thread Michał Górny
commit: 22821b78d8b11cc6ceea3d6239c2a1edf9afe9e6
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Feb 27 18:46:21 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Feb 27 18:46:21 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22821b78

dev-python/pytest-timeout: Remove old

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

 dev-python/pytest-timeout/Manifest |  1 -
 .../pytest-timeout/pytest-timeout-2.0.2.ebuild | 27 --
 2 files changed, 28 deletions(-)

diff --git a/dev-python/pytest-timeout/Manifest 
b/dev-python/pytest-timeout/Manifest
index e52c707ea5ef..80ad097be8da 100644
--- a/dev-python/pytest-timeout/Manifest
+++ b/dev-python/pytest-timeout/Manifest
@@ -1,2 +1 @@
-DIST pytest-timeout-2.0.2.tar.gz 16683 BLAKE2B 
bc6ee17832dfa5c3e5a35efc34bda630f1f1f7e7ece5a71d68110ab12c08566ee89c3b0f68967807967d17e2622ca1d2bce24baf51986ad8921fd55df091b376
 SHA512 
ee151a55f6323ae23ddd7e54e39e1c014de2aa2a142a0e3ba81c80b5d36435fc6c2809e383df8c49e62df70361a03dbe73e4d96d03798323fe7f1304a197f770
 DIST pytest-timeout-2.1.0.tar.gz 18386 BLAKE2B 
1c84b67e8d07056f9c5b188e467832d4aa292ce1047da6cb13b2939962d2599853db134b16ff3a1a953cbdc1c1772be961eadc9925b32f8dbe514938ede90d40
 SHA512 
5750e5183669ed9b83fbb76bd7fc9fc1f5f6eef3d9b675dc44f6c7edfd2c6d15739d71e845ededaa192c93da73026ac3376a3295be9f7d3f3eac325660ce7bf3

diff --git a/dev-python/pytest-timeout/pytest-timeout-2.0.2.ebuild 
b/dev-python/pytest-timeout/pytest-timeout-2.0.2.ebuild
deleted file mode 100644
index f11adfbb8c3a..
--- a/dev-python/pytest-timeout/pytest-timeout-2.0.2.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} pypy3 )
-inherit distutils-r1
-
-DESCRIPTION="pytest plugin to abort hanging tests"
-HOMEPAGE="https://pypi.org/project/pytest-timeout/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-SLOT="0"
-LICENSE="MIT"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~amd64-linux ~x86-linux"
-
-# do not rdepend on pytest, it won't be used without it anyway
-# pytest-cov used to test compatibility
-BDEPEND="
-   test? (
-   dev-python/pexpect[${PYTHON_USEDEP}]
-   !hppa? (
-   dev-python/pytest-cov[${PYTHON_USEDEP}]
-   )
-   )"
-
-distutils_enable_tests --install pytest



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

2022-02-27 Thread Michał Górny
commit: 1272c3b742a24284ddd068d7bf097be00c0277a7
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Feb 27 18:44:56 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Feb 27 18:44:56 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1272c3b7

dev-python/httpcore: Relax the dev-python/h11 dep

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

 .../{httpcore-0.14.7.ebuild => httpcore-0.14.7-r1.ebuild} | 8 +++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/dev-python/httpcore/httpcore-0.14.7.ebuild 
b/dev-python/httpcore/httpcore-0.14.7-r1.ebuild
similarity index 88%
rename from dev-python/httpcore/httpcore-0.14.7.ebuild
rename to dev-python/httpcore/httpcore-0.14.7-r1.ebuild
index 44f405586310..396c0c27cbe0 100644
--- a/dev-python/httpcore/httpcore-0.14.7.ebuild
+++ b/dev-python/httpcore/httpcore-0.14.7-r1.ebuild
@@ -5,6 +5,7 @@ EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
 PYTHON_COMPAT=( python3_{8..10} )
+
 inherit distutils-r1 optfeature
 
 DESCRIPTION="A minimal low-level HTTP client"
@@ -20,7 +21,7 @@ KEYWORDS="amd64 arm arm64 hppa ppc ppc64 ~riscv sparc x86"
 RDEPEND="
=dev-python/anyio-3*[${PYTHON_USEDEP}]
dev-python/certifi[${PYTHON_USEDEP}]
-   

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

2022-02-27 Thread Michał Górny
commit: d248f82ceb2ad8f59ab655eebd912e4d65b754a4
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Feb 27 18:45:51 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Feb 27 18:45:51 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d248f82c

dev-python/pyphen: Remove old

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

 dev-python/pyphen/pyphen-0.12.0.ebuild | 29 -
 1 file changed, 29 deletions(-)

diff --git a/dev-python/pyphen/pyphen-0.12.0.ebuild 
b/dev-python/pyphen/pyphen-0.12.0.ebuild
deleted file mode 100644
index 375255ad8716..
--- a/dev-python/pyphen/pyphen-0.12.0.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_SETUPTOOLS=pyproject.toml
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="Python module for hyphenation using hunspell dictionaries"
-HOMEPAGE="https://github.com/Kozea/Pyphen;
-SRC_URI="https://github.com/Kozea/Pyphen/archive/${PV}.tar.gz -> ${P^}.tar.gz"
-S=${WORKDIR}/${P^}
-
-LICENSE="GPL-2+ LGPL-2+ MPL-1.1"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-BDEPEND="
-   >=dev-python/pyproject2setuppy-18[${PYTHON_USEDEP}]"
-
-distutils_enable_tests pytest
-
-src_prepare() {
-   # avoid dep on extra plugins
-   sed -i -e '/addopts/d' pyproject.toml || die
-   distutils-r1_src_prepare
-}



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

2022-02-27 Thread Michał Górny
commit: 4e6fc028a70c927719409a9d2f658e6da928413a
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Feb 27 18:46:32 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Feb 27 18:46:32 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e6fc028

dev-python/python3-xapp: Remove old

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

 dev-python/python3-xapp/python3-xapp-2.2.1.ebuild | 25 ---
 1 file changed, 25 deletions(-)

diff --git a/dev-python/python3-xapp/python3-xapp-2.2.1.ebuild 
b/dev-python/python3-xapp/python3-xapp-2.2.1.ebuild
deleted file mode 100644
index 0f3392d3c0cc..
--- a/dev-python/python3-xapp/python3-xapp-2.2.1.ebuild
+++ /dev/null
@@ -1,25 +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
-
-DESCRIPTION="Python bindings for x11-libs/xapp"
-HOMEPAGE="https://github.com/linuxmint/python3-xapp;
-SRC_URI="https://github.com/linuxmint/python3-xapp/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="LGPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 ~riscv x86"
-IUSE=""
-
-DEPEND="
-   >=x11-libs/xapp-2.2.0[introspection]
-"
-RDEPEND="
-   ${DEPEND}
-   dev-python/psutil[${PYTHON_USEDEP}]
-"



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

2022-02-27 Thread Michał Górny
commit: 5b80103994f5acbc17f82969ad9646849fdd1993
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Feb 27 18:38:47 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Feb 27 18:38:47 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b801039

dev-python/google-api-python-client: Remove old

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

 dev-python/google-api-python-client/Manifest   |  3 --
 .../google-api-python-client-2.34.0.ebuild | 45 -
 .../google-api-python-client-2.35.0.ebuild | 45 -
 .../google-api-python-client-2.36.0.ebuild | 45 -
 .../google-api-python-client-2.38.0.ebuild | 47 --
 5 files changed, 185 deletions(-)

diff --git a/dev-python/google-api-python-client/Manifest 
b/dev-python/google-api-python-client/Manifest
index 7e0851d09cea..9bd163cb7605 100644
--- a/dev-python/google-api-python-client/Manifest
+++ b/dev-python/google-api-python-client/Manifest
@@ -1,5 +1,2 @@
-DIST google-api-python-client-2.34.0.tar.gz 28469433 BLAKE2B 
aa2c8849b629fe489cf39cddd410a40a0af0bddfa5f370a4a41c1446aeadf69cd4592eeb1d76e6c63da9737906801aea9c8a4d706328b63a7bf5b34a43b83e00
 SHA512 
321dfdd3ba821beabc6c3a96575afd06c75a0c8e3db61b1ff5fa9db472e62de81b037c435a1051d6294c2a37e471bcaa068cd27ad7434a3416231d31931dd74e
-DIST google-api-python-client-2.35.0.tar.gz 28553015 BLAKE2B 
8ff92145f280e090b8f43c10e425dd4a8fe65b4cf565c5b5a0df2813cdb8ba1bcea50e37556efb9dd0b270a21fe11b7d6d1b445c8fdaa83326c7dc6230ee1fdb
 SHA512 
4d0325b79250a26ae252568759e8345d31d692aa1d8f1d7aae623bb9a1a950efae654cd689d39f30450789c6d4fa9ca264111f8a9e798820cf6d0c3acba904f6
-DIST google-api-python-client-2.36.0.tar.gz 28624616 BLAKE2B 
738d89e740ded848683a4bc5c1d4b27f57acb817c54397ed563de376fa395d1202c47fd4b42046f313b31c826fb3d0fc2e3761c0779bf9c9718b3b2923fc63a3
 SHA512 
bdca303fa84f5cb510102265ebb7629b48b939c8d7a01420e61635ef4c461f62b6dfa6f29e96060a80d86baf0ea6587d88b0ec64a7b4c6b32563921c3a1a53ca
 DIST google-api-python-client-2.37.0.tar.gz 28868090 BLAKE2B 
971fa3a873c902a34c100066a026ab6698d142a4875282d8be890b403a2edf1f00ea5a3dc4bcf90a30ad9dfb8aa5e1d5eb1b60e64a6718a6e054d49b7ff94afc
 SHA512 
72543f78779403a5d16cfae8f84718d7a6dc08e9fcaa4e97d7a1f6e5ba6594b3a87762e229b94ccfc3a3ca196bbe0cd17c5fde949d101d5975b61cdc57a32622
 DIST google-api-python-client-2.38.0.tar.gz 29194978 BLAKE2B 
741cf925256f0bd648e68c339233cfc13a9eaa12e123e202eab64b8389bc493755838c3da8ca4e7f4ffeecacec783c41f37df1847edf0fb54387d58163c112fc
 SHA512 
b93f1f946ebab226b9fdd9012c3ae70563197a895d9069f09c7eb8926cd8fe5567535d3677a6824f66720b9ed1f0a732f02be9440dc800a13cb7e335728a3ce8

diff --git 
a/dev-python/google-api-python-client/google-api-python-client-2.34.0.ebuild 
b/dev-python/google-api-python-client/google-api-python-client-2.34.0.ebuild
deleted file mode 100644
index ee4279a8e2a4..
--- a/dev-python/google-api-python-client/google-api-python-client-2.34.0.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..9} )
-inherit distutils-r1
-
-DESCRIPTION="Google API Client for Python"
-HOMEPAGE="https://github.com/googleapis/google-api-python-client;
-SRC_URI="https://github.com/googleapis/google-api-python-client/archive/v${PV}.tar.gz
 -> ${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 x86"
-
-RDEPEND="
-   >=dev-python/httplib2-0.15[${PYTHON_USEDEP}]
-   =dev-python/google-auth-1.35.0[${PYTHON_USEDEP}]
-   >=dev-python/google-auth-httplib2-0.1.0[${PYTHON_USEDEP}]
-   >=dev-python/uritemplate-3.0.0[${PYTHON_USEDEP}]
-   https://github.com/googleapis/google-api-python-client;
-SRC_URI="https://github.com/googleapis/google-api-python-client/archive/v${PV}.tar.gz
 -> ${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
-
-RDEPEND="
-   >=dev-python/httplib2-0.15[${PYTHON_USEDEP}]
-   =dev-python/google-auth-1.35.0[${PYTHON_USEDEP}]
-   >=dev-python/google-auth-httplib2-0.1.0[${PYTHON_USEDEP}]
-   >=dev-python/uritemplate-3.0.0[${PYTHON_USEDEP}]
-   https://github.com/googleapis/google-api-python-client;
-SRC_URI="https://github.com/googleapis/google-api-python-client/archive/v${PV}.tar.gz
 -> ${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
-
-RDEPEND="
-   >=dev-python/httplib2-0.15[${PYTHON_USEDEP}]
-   =dev-python/google-auth-1.35.0[${PYTHON_USEDEP}]
-   >=dev-python/google-auth-httplib2-0.1.0[${PYTHON_USEDEP}]
-   >=dev-python/uritemplate-3.0.0[${PYTHON_USEDEP}]
-   https://github.com/googleapis/google-api-python-client;
-SRC_URI="https://github.com/googleapis/google-api-python-client/archive/v${PV}.tar.gz
 -> ${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
-
-RDEPEND="
-   

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

2022-02-27 Thread Michał Górny
commit: 6cd3714880e4cd6d40b108703b86021daacea5fd
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Feb 27 18:46:10 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Feb 27 18:46:10 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6cd37148

dev-python/pytest-cov: Remove old

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

 dev-python/pytest-cov/pytest-cov-3.0.0.ebuild | 55 ---
 1 file changed, 55 deletions(-)

diff --git a/dev-python/pytest-cov/pytest-cov-3.0.0.ebuild 
b/dev-python/pytest-cov/pytest-cov-3.0.0.ebuild
deleted file mode 100644
index 9c14153ab26d..
--- a/dev-python/pytest-cov/pytest-cov-3.0.0.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} pypy3 )
-inherit distutils-r1
-
-DESCRIPTION="py.test plugin for coverage reporting"
-HOMEPAGE="https://github.com/pytest-dev/pytest-cov 
https://pypi.org/project/pytest-cov/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
sparc x86"
-
-RDEPEND="
-   >=dev-python/py-1.4.22[${PYTHON_USEDEP}]
-   >=dev-python/pytest-3.6[${PYTHON_USEDEP}]
-   >=dev-python/coverage-4.4[${PYTHON_USEDEP}]
-   dev-python/toml[${PYTHON_USEDEP}]
-"
-# TODO: figure out how to make tests work without pytest-cov installed
-# first
-BDEPEND="
-   test? (
-   ~dev-python/pytest-cov-${PV}[${PYTHON_USEDEP}]
-   dev-python/virtualenv[${PYTHON_USEDEP}]
-   dev-python/fields[${PYTHON_USEDEP}]
-   >=dev-python/process-tests-2.0.2[${PYTHON_USEDEP}]
-   dev-python/pytest-xdist[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_sphinx docs \
-   dev-python/sphinx-py3doc-enhanced-theme
-distutils_enable_tests pytest
-
-PATCHES=(
-   # https://github.com/pytest-dev/pytest-cov/pull/518
-   "${FILESDIR}"/${P}-coverage-6.2.patch
-)
-
-python_test() {
-   # NB: disabling all plugins speeds tests up a lot
-   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
-   local -x PYTEST_PLUGINS=pytest_cov.plugin,xdist.plugin,xdist.looponfail
-
-   local EPYTEST_DESELECT=(
-   # attempts to install packages via pip (network)
-   tests/test_pytest_cov.py::test_dist_missing_data
-   )
-
-   epytest
-}



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

2022-02-27 Thread Michał Górny
commit: 11fe49dd193d6a027c653f6b8aae9ece7130d7d5
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Feb 27 18:45:25 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Feb 27 18:45:25 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11fe49dd

dev-python/h11: Remove old

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

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

diff --git a/dev-python/h11/Manifest b/dev-python/h11/Manifest
index be9848a0cdfa..eb8286a51cd4 100644
--- a/dev-python/h11/Manifest
+++ b/dev-python/h11/Manifest
@@ -1,2 +1 @@
-DIST h11-0.12.0.tar.gz 98121 BLAKE2B 
8e510461e0256a49166ad3b11394d715634d036642629b216f0c94785245909fc3d9ab89ba3048b857f1ae030cae7ed0b3195745739d80c74028a85848a762db
 SHA512 
ba2a2c185af270185ba5e1fd80ec9308e35afcd60a125a77cbeae2669f462983d063339371312f154a7c80c154ac97796ab36782b36549235435dcfd81b93421
 DIST h11-0.13.0.tar.gz 100165 BLAKE2B 
6cb610afa474f5945151300e6ec6c2860e8b959b9ab0224b58fb047f3fa0b417499adb0119b7b7727b9ebfb4b60360fef78843fde41935616784bbf450605503
 SHA512 
c3a16dd66287ab6491b664aab9d72e14f1e61950c19182d60e195b81b2857e47157c38137b2ee2a9cd35d9d54997f554f768a3933051030895ddf7bc5b813e02

diff --git a/dev-python/h11/h11-0.12.0.ebuild b/dev-python/h11/h11-0.12.0.ebuild
deleted file mode 100644
index 65c9b8a6de47..
--- a/dev-python/h11/h11-0.12.0.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..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="A pure-Python implementation of HTTP/1.1 inspired by hyper-h2"
-HOMEPAGE="https://github.com/python-hyper/h11/ https://pypi.org/project/h11/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 hppa ppc ppc64 ~riscv sparc x86"
-
-distutils_enable_tests pytest



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

2022-02-27 Thread Michał Górny
commit: 42957e7b72521c0b22c516bbd291a9f44d132ed5
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Feb 27 18:38:10 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Feb 27 18:38:10 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42957e7b

dev-python/funcparserlib: Remove old

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

 .../funcparserlib-1.0.0_alpha0.ebuild  | 31 --
 1 file changed, 31 deletions(-)

diff --git a/dev-python/funcparserlib/funcparserlib-1.0.0_alpha0.ebuild 
b/dev-python/funcparserlib/funcparserlib-1.0.0_alpha0.ebuild
deleted file mode 100644
index 11745efb63f9..
--- a/dev-python/funcparserlib/funcparserlib-1.0.0_alpha0.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} )
-DISTUTILS_USE_SETUPTOOLS=pyproject.toml
-inherit distutils-r1
-
-MY_PV="${PV/_alpha/a}"
-
-DESCRIPTION="Recursive descent parsing library based on functional combinators"
-HOMEPAGE="https://pypi.org/project/funcparserlib/;
-SRC_URI="
-   https://github.com/vlasovskikh/funcparserlib/archive/${MY_PV}.tar.gz
-   -> ${P}.gh.tar.gz
-"
-S="${WORKDIR}/${PN}-${MY_PV}"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86"
-
-BDEPEND="test? ( dev-python/six[${PYTHON_USEDEP}] )"
-
-distutils_enable_tests unittest
-
-python_install_all() {
-   local DOCS=( doc/*.md )
-   distutils-r1_python_install_all
-}



<    1   2   3   4   5   >