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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 7E2C0138334 for ; Sat, 14 Sep 2019 15:50:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AD476E0928; Sat, 14 Sep 2019 15:50:39 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 693E2E0928 for ; Sat, 14 Sep 2019 15:50:39 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1E48934B1A5 for ; Sat, 14 Sep 2019 15:50:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B4B8A7F1 for ; Sat, 14 Sep 2019 15:50:34 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1568475488.7b03c5289967a3ed46d86f031f50e48fe7f280b6.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: dev-python/parse_cmake/ X-VCS-Repository: proj/kde X-VCS-Files: dev-python/parse_cmake/parse_cmake-0.4.1.ebuild X-VCS-Directories: dev-python/parse_cmake/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 7b03c5289967a3ed46d86f031f50e48fe7f280b6 X-VCS-Branch: master Date: Sat, 14 Sep 2019 15:50:34 +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: 63c9ac85-c318-4026-a696-cfab3a0e80f9 X-Archives-Hash: 0281cbcb42fa32ecc44b987d302692bd commit: 7b03c5289967a3ed46d86f031f50e48fe7f280b6 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Sep 14 15:38:08 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Sep 14 15:38:08 2019 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=7b03c528 dev-python/parse_cmake: Drop 0.4.1 (r0) Package-Manager: Portage-2.3.76, Repoman-2.3.17 Signed-off-by: Andreas Sturmlechner gentoo.org> dev-python/parse_cmake/parse_cmake-0.4.1.ebuild | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/dev-python/parse_cmake/parse_cmake-0.4.1.ebuild b/dev-python/parse_cmake/parse_cmake-0.4.1.ebuild deleted file mode 100644 index c40a7579b9..0000000000 --- a/dev-python/parse_cmake/parse_cmake-0.4.1.ebuild +++ /dev/null @@ -1,24 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python{2_7,3_5} ) -inherit distutils-r1 - -DESCRIPTION="Parser for CMakeLists.txt files" -HOMEPAGE="https://pypi.python.org/pypi/parse_cmake/" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~amd64" -IUSE="" - -BDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" - -src_prepare() { - distutils-r1_src_prepare - sed -i setup.py -e "s/'pyPEG2'//" || die - mv tests tests-hidden || die -}