From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A8D5C158091 for ; Sat, 4 Jun 2022 07:42:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CFEBFE086A; Sat, 4 Jun 2022 07:42:06 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B2A30E086A for ; Sat, 4 Jun 2022 07:42:06 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B643D342272 for ; Sat, 4 Jun 2022 07:42:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 103B0448 for ; Sat, 4 Jun 2022 07:42:04 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1654328514.c5002ae1f16ae63e79dc8eac00809933f143e29d.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/pwman3/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-admin/pwman3/pwman3-0.10.0-r1.ebuild app-admin/pwman3/pwman3-0.11.1.ebuild X-VCS-Directories: app-admin/pwman3/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: c5002ae1f16ae63e79dc8eac00809933f143e29d X-VCS-Branch: master Date: Sat, 4 Jun 2022 07:42:04 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: e912e894-6adf-488f-b470-3bdfda8770b5 X-Archives-Hash: 077127439d32eefb8ac617a4a9dadfd5 commit: c5002ae1f16ae63e79dc8eac00809933f143e29d Author: Michał Górny gentoo org> AuthorDate: Sat Jun 4 07:05:30 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Jun 4 07:41:54 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5002ae1 app-admin/pwman3: Use slot for dev-python/psycopg Signed-off-by: Michał Górny gentoo.org> app-admin/pwman3/pwman3-0.10.0-r1.ebuild | 6 +++--- app-admin/pwman3/pwman3-0.11.1.ebuild | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/app-admin/pwman3/pwman3-0.10.0-r1.ebuild b/app-admin/pwman3/pwman3-0.10.0-r1.ebuild index a725bb6405be..2e7f722ba09a 100644 --- a/app-admin/pwman3/pwman3-0.10.0-r1.ebuild +++ b/app-admin/pwman3/pwman3-0.10.0-r1.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=7 -PYTHON_COMPAT=( python3_{7,8} ) +PYTHON_COMPAT=( python3_8 ) PYTHON_REQ_USE="sqlite" DISTUTILS_USE_SETUPTOOLS=rdepend inherit distutils-r1 optfeature @@ -27,6 +27,6 @@ distutils_enable_tests setup.py pkg_postinst() { optfeature "Support for mongodb" dev-python/pymongo - optfeature "Support for postgresql" dev-python/psycopg + optfeature "Support for postgresql" dev-python/psycopg:2 optfeature "Support for mysql" dev-python/pymysql } diff --git a/app-admin/pwman3/pwman3-0.11.1.ebuild b/app-admin/pwman3/pwman3-0.11.1.ebuild index be7e32f50438..57f062d5fbe8 100644 --- a/app-admin/pwman3/pwman3-0.11.1.ebuild +++ b/app-admin/pwman3/pwman3-0.11.1.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -PYTHON_COMPAT=( python3_{7..10} ) +PYTHON_COMPAT=( python3_{8..10} ) PYTHON_REQ_USE="sqlite" inherit distutils-r1 optfeature @@ -26,6 +26,6 @@ distutils_enable_tests setup.py pkg_postinst() { optfeature "Support for mongodb" dev-python/pymongo - optfeature "Support for postgresql" dev-python/psycopg + optfeature "Support for postgresql" dev-python/psycopg:2 optfeature "Support for mysql" dev-python/pymysql }