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 50A4B158043 for ; Sat, 13 Apr 2024 22:19:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0F2B5E2A2E; Sat, 13 Apr 2024 22:19:45 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C208BE2A2C for ; Sat, 13 Apr 2024 22:19:44 +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 0E83D3433DC for ; Sat, 13 Apr 2024 22:19:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9D23E16DD for ; Sat, 13 Apr 2024 22:19:42 +0000 (UTC) From: "Julien Roy" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Julien Roy" Message-ID: <1713034980.383a34ed729be9ad4209393c4d47f9f91eadbbe3.julien@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-python/gbinder/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/gbinder/gbinder-1.1.2.ebuild X-VCS-Directories: dev-python/gbinder/ X-VCS-Committer: julien X-VCS-Committer-Name: Julien Roy X-VCS-Revision: 383a34ed729be9ad4209393c4d47f9f91eadbbe3 X-VCS-Branch: master Date: Sat, 13 Apr 2024 22:19:42 +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: bcfce43b-8bf1-4a00-958c-a9ef03f36d9b X-Archives-Hash: 988c3e699494a18d894e8679a5cbbc30 Message-ID: <20240413221942.hxZpNReOrkb5JaS98Bu1pzkCe6LPOkX1jTs_ST3ME3o@z> commit: 383a34ed729be9ad4209393c4d47f9f91eadbbe3 Author: Julien Roy jroy ca> AuthorDate: Sat Apr 13 19:03:00 2024 +0000 Commit: Julien Roy jroy ca> CommitDate: Sat Apr 13 19:03:00 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=383a34ed dev-python/gbinder: drop 1.1.2 Signed-off-by: Julien Roy jroy.ca> dev-python/gbinder/gbinder-1.1.2.ebuild | 44 --------------------------------- 1 file changed, 44 deletions(-) diff --git a/dev-python/gbinder/gbinder-1.1.2.ebuild b/dev-python/gbinder/gbinder-1.1.2.ebuild deleted file mode 100644 index cbccaee389..0000000000 --- a/dev-python/gbinder/gbinder-1.1.2.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{10..11} ) - -DISTUTILS_USE_PEP517="setuptools" - -inherit distutils-r1 - -if [[ ${PV} != *9999* ]]; then - MY_PN="${PN}-python" - MY_P="${MY_PN}-${PV}" - S="${WORKDIR}/${MY_P}" - SRC_URI="https://github.com/erfanoabdi/gbinder-python/archive/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~arm ~arm64 ~x86" -else - inherit git-r3 - EGIT_REPO_URI="https://github.com/erfanoabdi/gbinder-python.git" -fi - -DESCRIPTION="Python bindings for libgbinder" -HOMEPAGE="https://github.com/erfanoabdi/gbinder-python" -LICENSE="GPL-3" -SLOT="0" - -PATCHES=( - "${FILESDIR}"/gbinder-1.1.1-setuptools.patch -) - - -DEPEND="dev-libs/gbinder - dev-libs/libglibutil" -RDEPEND="${DEPEND}" -BDEPEND=" - virtual/pkgconfig - dev-python/cython[${PYTHON_USEDEP}] - ${DISTUTILS_DEPS} -" - -python_configure_all () { - DISTUTILS_ARGS=( --cython ) -}