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 EB9F8158090 for ; Thu, 12 May 2022 09:07:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2F2A3E0833; Thu, 12 May 2022 09:07:28 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 0F102E0833 for ; Thu, 12 May 2022 09:07:28 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 054003416DF for ; Thu, 12 May 2022 09:07:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5E2CE439 for ; Thu, 12 May 2022 09:07:25 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1652346415.ac44c0f9b9f4b351343b85b07cbf8c268e0296eb.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/gbinder/, dev-python/gbinder/files/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/gbinder/Manifest dev-python/gbinder/files/gbinder-1.0.0-setuppy-extensions.patch dev-python/gbinder/gbinder-1.0.0.ebuild dev-python/gbinder/gbinder-9999.ebuild X-VCS-Directories: dev-python/gbinder/ dev-python/gbinder/files/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: ac44c0f9b9f4b351343b85b07cbf8c268e0296eb X-VCS-Branch: dev Date: Thu, 12 May 2022 09:07:25 +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: adc00c01-205b-4597-9295-09da149319b9 X-Archives-Hash: f4c02a22b3a0ae642ac0aedb2041fa3c commit: ac44c0f9b9f4b351343b85b07cbf8c268e0296eb Author: Andrew Ammerlaan gentoo org> AuthorDate: Thu May 12 09:06:55 2022 +0000 Commit: Andrew Ammerlaan gentoo org> CommitDate: Thu May 12 09:06:55 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ac44c0f9 dev-python/gbinder: EAPI bump, add python3_10, add 1.0.0 Signed-off-by: Andrew Ammerlaan gentoo.org> dev-python/gbinder/Manifest | 1 + .../files/gbinder-1.0.0-setuppy-extensions.patch | 22 ++++++++++++++++++++++ .../{gbinder-9999.ebuild => gbinder-1.0.0.ebuild} | 5 +++-- dev-python/gbinder/gbinder-9999.ebuild | 5 +++-- 4 files changed, 29 insertions(+), 4 deletions(-) diff --git a/dev-python/gbinder/Manifest b/dev-python/gbinder/Manifest new file mode 100644 index 000000000..a17031d32 --- /dev/null +++ b/dev-python/gbinder/Manifest @@ -0,0 +1 @@ +DIST gbinder-1.0.0.tar.gz 22640 BLAKE2B dbd0b07c693c803c6646fded1ea0b546d7dc40a1a5f1592601d28d63dbe5113b2bcc07314710c7ba1b47f3417b943398e720ece089ff8a68856e7b2cfda55ae1 SHA512 3b52c01c99321108a3d5c0129fb4fcf22d164e5de1e197f0e01a77e3bcbf9c4fd7ee35ce58131f545f65561c622b30f5919f4bdc995005b00a18a15c695fbf51 diff --git a/dev-python/gbinder/files/gbinder-1.0.0-setuppy-extensions.patch b/dev-python/gbinder/files/gbinder-1.0.0-setuppy-extensions.patch new file mode 100644 index 000000000..5990393e3 --- /dev/null +++ b/dev-python/gbinder/files/gbinder-1.0.0-setuppy-extensions.patch @@ -0,0 +1,22 @@ +From 79d40e9e564772973f7f085ed5c48e3fc625e0f5 Mon Sep 17 00:00:00 2001 +From: Erfan Abdi +Date: Mon, 6 Sep 2021 13:57:22 +0430 +Subject: [PATCH] setup: Drop None from keywords + +--- + setup.py | 2 ++ + 1 file changed, 2 insertions(+) + +diff --git a/setup.py b/setup.py +index cf3a42e..ed2b1ed 100644 +--- a/setup.py ++++ b/setup.py +@@ -19,6 +19,8 @@ def pkgconfig(package, kw): + + extension_kwargs = { 'sources': ["gbinder" + file_ext] } + extension_kwargs = pkgconfig('libgbinder', extension_kwargs) ++if None in extension_kwargs: ++ del extension_kwargs[None] + extensions = [Extension('gbinder', **extension_kwargs)] + + if USE_CYTHON: diff --git a/dev-python/gbinder/gbinder-9999.ebuild b/dev-python/gbinder/gbinder-1.0.0.ebuild similarity index 88% copy from dev-python/gbinder/gbinder-9999.ebuild copy to dev-python/gbinder/gbinder-1.0.0.ebuild index f2df6a922..913d0d608 100644 --- a/dev-python/gbinder/gbinder-9999.ebuild +++ b/dev-python/gbinder/gbinder-1.0.0.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 -PYTHON_COMPAT=( python3_9 ) +PYTHON_COMPAT=( python3_{9..10} ) inherit distutils-r1 @@ -13,6 +13,7 @@ if [[ ${PV} != *9999* ]]; then S="${WORKDIR}/${MY_P}" SRC_URI="https://github.com/erfanoabdi/gbinder-python/archive/${PV}.tar.gz -> ${P}.tar.gz" KEYWORDS="~amd64" + PATCHES=( "${FILESDIR}/${P}-setuppy-extensions.patch" ) else inherit git-r3 EGIT_REPO_URI="https://github.com/erfanoabdi/gbinder-python.git" diff --git a/dev-python/gbinder/gbinder-9999.ebuild b/dev-python/gbinder/gbinder-9999.ebuild index f2df6a922..913d0d608 100644 --- a/dev-python/gbinder/gbinder-9999.ebuild +++ b/dev-python/gbinder/gbinder-9999.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 -PYTHON_COMPAT=( python3_9 ) +PYTHON_COMPAT=( python3_{9..10} ) inherit distutils-r1 @@ -13,6 +13,7 @@ if [[ ${PV} != *9999* ]]; then S="${WORKDIR}/${MY_P}" SRC_URI="https://github.com/erfanoabdi/gbinder-python/archive/${PV}.tar.gz -> ${P}.tar.gz" KEYWORDS="~amd64" + PATCHES=( "${FILESDIR}/${P}-setuppy-extensions.patch" ) else inherit git-r3 EGIT_REPO_URI="https://github.com/erfanoabdi/gbinder-python.git" 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 173E3158090 for ; Thu, 12 May 2022 09:15:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 23445E0916; Thu, 12 May 2022 09:14:58 +0000 (UTC) Received: from smtp.gentoo.org (dev.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 025C3E0903 for ; Thu, 12 May 2022 09:14:58 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 37EA434179F for ; Thu, 12 May 2022 09:14:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3B439485 for ; Thu, 12 May 2022 09:14:53 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1652346415.ac44c0f9b9f4b351343b85b07cbf8c268e0296eb.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-python/gbinder/files/, dev-python/gbinder/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/gbinder/Manifest dev-python/gbinder/files/gbinder-1.0.0-setuppy-extensions.patch dev-python/gbinder/gbinder-1.0.0.ebuild dev-python/gbinder/gbinder-9999.ebuild X-VCS-Directories: dev-python/gbinder/files/ dev-python/gbinder/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: ac44c0f9b9f4b351343b85b07cbf8c268e0296eb X-VCS-Branch: master Date: Thu, 12 May 2022 09:14:53 +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: 75959897-3800-457f-a998-cb95d34d4510 X-Archives-Hash: acc4aaf82d5b20b58c3a2ba5877b14d9 Message-ID: <20220512091453.rhzxghhuxsj_8yBsy_-kAfDpwUF1_GuyCYa6Fn60hCY@z> commit: ac44c0f9b9f4b351343b85b07cbf8c268e0296eb Author: Andrew Ammerlaan gentoo org> AuthorDate: Thu May 12 09:06:55 2022 +0000 Commit: Andrew Ammerlaan gentoo org> CommitDate: Thu May 12 09:06:55 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ac44c0f9 dev-python/gbinder: EAPI bump, add python3_10, add 1.0.0 Signed-off-by: Andrew Ammerlaan gentoo.org> dev-python/gbinder/Manifest | 1 + .../files/gbinder-1.0.0-setuppy-extensions.patch | 22 ++++++++++++++++++++++ .../{gbinder-9999.ebuild => gbinder-1.0.0.ebuild} | 5 +++-- dev-python/gbinder/gbinder-9999.ebuild | 5 +++-- 4 files changed, 29 insertions(+), 4 deletions(-) diff --git a/dev-python/gbinder/Manifest b/dev-python/gbinder/Manifest new file mode 100644 index 000000000..a17031d32 --- /dev/null +++ b/dev-python/gbinder/Manifest @@ -0,0 +1 @@ +DIST gbinder-1.0.0.tar.gz 22640 BLAKE2B dbd0b07c693c803c6646fded1ea0b546d7dc40a1a5f1592601d28d63dbe5113b2bcc07314710c7ba1b47f3417b943398e720ece089ff8a68856e7b2cfda55ae1 SHA512 3b52c01c99321108a3d5c0129fb4fcf22d164e5de1e197f0e01a77e3bcbf9c4fd7ee35ce58131f545f65561c622b30f5919f4bdc995005b00a18a15c695fbf51 diff --git a/dev-python/gbinder/files/gbinder-1.0.0-setuppy-extensions.patch b/dev-python/gbinder/files/gbinder-1.0.0-setuppy-extensions.patch new file mode 100644 index 000000000..5990393e3 --- /dev/null +++ b/dev-python/gbinder/files/gbinder-1.0.0-setuppy-extensions.patch @@ -0,0 +1,22 @@ +From 79d40e9e564772973f7f085ed5c48e3fc625e0f5 Mon Sep 17 00:00:00 2001 +From: Erfan Abdi +Date: Mon, 6 Sep 2021 13:57:22 +0430 +Subject: [PATCH] setup: Drop None from keywords + +--- + setup.py | 2 ++ + 1 file changed, 2 insertions(+) + +diff --git a/setup.py b/setup.py +index cf3a42e..ed2b1ed 100644 +--- a/setup.py ++++ b/setup.py +@@ -19,6 +19,8 @@ def pkgconfig(package, kw): + + extension_kwargs = { 'sources': ["gbinder" + file_ext] } + extension_kwargs = pkgconfig('libgbinder', extension_kwargs) ++if None in extension_kwargs: ++ del extension_kwargs[None] + extensions = [Extension('gbinder', **extension_kwargs)] + + if USE_CYTHON: diff --git a/dev-python/gbinder/gbinder-9999.ebuild b/dev-python/gbinder/gbinder-1.0.0.ebuild similarity index 88% copy from dev-python/gbinder/gbinder-9999.ebuild copy to dev-python/gbinder/gbinder-1.0.0.ebuild index f2df6a922..913d0d608 100644 --- a/dev-python/gbinder/gbinder-9999.ebuild +++ b/dev-python/gbinder/gbinder-1.0.0.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 -PYTHON_COMPAT=( python3_9 ) +PYTHON_COMPAT=( python3_{9..10} ) inherit distutils-r1 @@ -13,6 +13,7 @@ if [[ ${PV} != *9999* ]]; then S="${WORKDIR}/${MY_P}" SRC_URI="https://github.com/erfanoabdi/gbinder-python/archive/${PV}.tar.gz -> ${P}.tar.gz" KEYWORDS="~amd64" + PATCHES=( "${FILESDIR}/${P}-setuppy-extensions.patch" ) else inherit git-r3 EGIT_REPO_URI="https://github.com/erfanoabdi/gbinder-python.git" diff --git a/dev-python/gbinder/gbinder-9999.ebuild b/dev-python/gbinder/gbinder-9999.ebuild index f2df6a922..913d0d608 100644 --- a/dev-python/gbinder/gbinder-9999.ebuild +++ b/dev-python/gbinder/gbinder-9999.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 -PYTHON_COMPAT=( python3_9 ) +PYTHON_COMPAT=( python3_{9..10} ) inherit distutils-r1 @@ -13,6 +13,7 @@ if [[ ${PV} != *9999* ]]; then S="${WORKDIR}/${MY_P}" SRC_URI="https://github.com/erfanoabdi/gbinder-python/archive/${PV}.tar.gz -> ${P}.tar.gz" KEYWORDS="~amd64" + PATCHES=( "${FILESDIR}/${P}-setuppy-extensions.patch" ) else inherit git-r3 EGIT_REPO_URI="https://github.com/erfanoabdi/gbinder-python.git"