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 AAC86138334 for ; Wed, 11 Jul 2018 21:35:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9A969E07FA; Wed, 11 Jul 2018 21:35:49 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 6B71FE07FA for ; Wed, 11 Jul 2018 21:35:49 +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 D3D38335CAC for ; Wed, 11 Jul 2018 21:35:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5CAA731B for ; Wed, 11 Jul 2018 21:35:46 +0000 (UTC) From: "Jason Donenfeld" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jason Donenfeld" Message-ID: <1531344925.4fa384ee9394fdc66c99208ce37798d0c4094a4d.zx2c4@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/svgwrite/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/svgwrite/Manifest dev-python/svgwrite/metadata.xml dev-python/svgwrite/svgwrite-1.1.12.ebuild X-VCS-Directories: dev-python/svgwrite/ X-VCS-Committer: zx2c4 X-VCS-Committer-Name: Jason Donenfeld X-VCS-Revision: 4fa384ee9394fdc66c99208ce37798d0c4094a4d X-VCS-Branch: master Date: Wed, 11 Jul 2018 21:35: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-Archives-Salt: 4ab2ce9c-4b13-4598-9b85-f178bbece45f X-Archives-Hash: 09753e9121657a2a4a9c75805ce6ecc3 commit: 4fa384ee9394fdc66c99208ce37798d0c4094a4d Author: Jason A. Donenfeld gentoo org> AuthorDate: Wed Jul 11 21:29:01 2018 +0000 Commit: Jason Donenfeld gentoo org> CommitDate: Wed Jul 11 21:35:25 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4fa384ee dev-python/svgwrite: import new ebuild Package-Manager: Portage-2.3.41, Repoman-2.3.9 dev-python/svgwrite/Manifest | 1 + dev-python/svgwrite/metadata.xml | 8 ++++++++ dev-python/svgwrite/svgwrite-1.1.12.ebuild | 20 ++++++++++++++++++++ 3 files changed, 29 insertions(+) diff --git a/dev-python/svgwrite/Manifest b/dev-python/svgwrite/Manifest new file mode 100644 index 00000000000..8b9eaa08905 --- /dev/null +++ b/dev-python/svgwrite/Manifest @@ -0,0 +1 @@ +DIST svgwrite-1.1.12.tar.gz 202920 BLAKE2B a2b60f3c3829203342919bc75d01f64515f13ba305f357fa788c3754679451e21a7ab97eb517413d4e882e7271d063e7034a10bb70a1946d84734e23e838bdd1 SHA512 326fcc0dd0749925c0c35793a91ffdb25be1fd724d7d87bd6491a6396a6ab65fce073a387faac4f3d034ceadcf24ef73e3838cd249c4e1c19e20b1e82769cf1a diff --git a/dev-python/svgwrite/metadata.xml b/dev-python/svgwrite/metadata.xml new file mode 100644 index 00000000000..7f4f33c6dbc --- /dev/null +++ b/dev-python/svgwrite/metadata.xml @@ -0,0 +1,8 @@ + + + + + python@gentoo.org + Python + + diff --git a/dev-python/svgwrite/svgwrite-1.1.12.ebuild b/dev-python/svgwrite/svgwrite-1.1.12.ebuild new file mode 100644 index 00000000000..dde90e114ee --- /dev/null +++ b/dev-python/svgwrite/svgwrite-1.1.12.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python2_7 python3_{5,6} ) +inherit distutils-r1 + +DESCRIPTION="Python Package to write SVG files" +HOMEPAGE="https://github.com/mozman/svgwrite" +SRC_URI="https://github.com/mozman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="${PYTHON_DEPS} + >=dev-python/pyparsing-2.0.1[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND}"