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 D4320138359 for ; Wed, 21 Oct 2020 22:51:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2C211E091B; Wed, 21 Oct 2020 22:51:50 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 17AE7E091B for ; Wed, 21 Oct 2020 22:51:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 1B5B6340D38 for ; Wed, 21 Oct 2020 22:51:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4490A3BC for ; Wed, 21 Oct 2020 22:51:46 +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: <1603320686.a082a544ffe4daf653026e013e8096671af379d7.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/svg-path/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/svg-path/Manifest dev-python/svg-path/svg-path-3.0.ebuild X-VCS-Directories: dev-python/svg-path/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: a082a544ffe4daf653026e013e8096671af379d7 X-VCS-Branch: master Date: Wed, 21 Oct 2020 22:51:46 +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: 361930e1-40bf-49ba-9af0-636c04179905 X-Archives-Hash: 36219850d1ce57add3b26657844ec3a5 commit: a082a544ffe4daf653026e013e8096671af379d7 Author: Michał Górny gentoo org> AuthorDate: Wed Oct 21 22:48:18 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Oct 21 22:51:26 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a082a544 dev-python/svg-path: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/svg-path/Manifest | 1 - dev-python/svg-path/svg-path-3.0.ebuild | 33 --------------------------------- 2 files changed, 34 deletions(-) diff --git a/dev-python/svg-path/Manifest b/dev-python/svg-path/Manifest index 8c90abdb0a8..fa6d2195d6b 100644 --- a/dev-python/svg-path/Manifest +++ b/dev-python/svg-path/Manifest @@ -1,2 +1 @@ -DIST svg.path-3.0.tar.gz 17077 BLAKE2B 6fdb51c982575639337d74a6f02f0bb3cc44dac56bd6982dec6493bed52d9caab5ed725ac59bf754f309cc62ef6f77faec462afacc8f93ce9a20b886ef2b5c8e SHA512 73d23f1386bbd4d1c1d805766f7e6fe6f8b7ac731e104020e7d853d7f1b46bc2681f44ef20d9c5343197d9d16b2af49f2c4ef4ba5945f4d25fa0493502203e13 DIST svg.path-4.0.2.tar.gz 18161 BLAKE2B bd5adbf059808b8197fbff0f12e274d98cc72ef840cd29e504bab1dd5fbcb5240aa3d6beb2cc3f6b91bcbdd9251fa29285de0ecd163c22d6cb8454102b911597 SHA512 0659c3d012b81cca83306c2895480bcc770cf23f4fc98dc4f167b6799a9c5618a90aabd81e2c91e6b7c57998d42f04a47d8f0fa966546111cd165127df239510 diff --git a/dev-python/svg-path/svg-path-3.0.ebuild b/dev-python/svg-path/svg-path-3.0.ebuild deleted file mode 100644 index 9d0dcff79ea..00000000000 --- a/dev-python/svg-path/svg-path-3.0.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{6,7} ) - -inherit distutils-r1 - -MY_PN="svg.path" -MY_P="${MY_PN}-${PV}" - -DESCRIPTION="SVG path objects and parser" -HOMEPAGE="https://github.com/regebro/svg.path" -SRC_URI="https://github.com/regebro/svg.path/archive/${PV}.tar.gz -> ${MY_P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" -RDEPEND="${DEPEND}" - -S="${WORKDIR}/${MY_P}" - -python_test() { - esetup.py test || die -} - -python_install() { - python_domodule src/svg -}