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 D9779138335 for ; Sat, 14 Sep 2019 20:40:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DB13AE0893; Sat, 14 Sep 2019 20:40:20 +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 BFB35E0893 for ; Sat, 14 Sep 2019 20:40:20 +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 0372B34B187 for ; Sat, 14 Sep 2019 20:40:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 530BC71A for ; Sat, 14 Sep 2019 20:40:08 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1568493461.8333ee542641a2fb96a1cff0eb1303c6012a720c.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/defcon/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/defcon/Manifest dev-python/defcon/defcon-0.6.0.ebuild X-VCS-Directories: dev-python/defcon/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 8333ee542641a2fb96a1cff0eb1303c6012a720c X-VCS-Branch: master Date: Sat, 14 Sep 2019 20:40:08 +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: 394f6ca0-4755-4cfb-9b49-01d8b3dc1fc0 X-Archives-Hash: a2f20936153b6d2bcd5372de2c9433b8 commit: 8333ee542641a2fb96a1cff0eb1303c6012a720c Author: Pacho Ramos gentoo org> AuthorDate: Sat Sep 14 20:37:41 2019 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Sat Sep 14 20:37:41 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8333ee54 dev-python/defcon: Bump to 0.6.0 Package-Manager: Portage-2.3.76, Repoman-2.3.17 Signed-off-by: Pacho Ramos gentoo.org> dev-python/defcon/Manifest | 1 + dev-python/defcon/defcon-0.6.0.ebuild | 24 ++++++++++++++++++++++++ 2 files changed, 25 insertions(+) diff --git a/dev-python/defcon/Manifest b/dev-python/defcon/Manifest index a7e76ce1d94..453f27c943a 100644 --- a/dev-python/defcon/Manifest +++ b/dev-python/defcon/Manifest @@ -1 +1,2 @@ DIST defcon-0.5.3.tar.gz 439149 BLAKE2B 5407eeb8c9bb8e63056d0d42e653eb3bad793b17139fc31f153b12f7ae604aa6615442556f5360f84cc29dfd9674b8117a9022a1e4bdc62324c31378b4c075f1 SHA512 5975c2c0054a1c5d067414b5fe02dc4546fffd12d316c6773ce48425276d7ca7b4e132b772fab2ebc4e683170d02592e1917a67f0dbad64a4c2f2a6a3bfae9ce +DIST defcon-0.6.0.tar.gz 403682 BLAKE2B c85cf4f846cab3f7543dcec885221e9f828cdf56fb1a373c9d06b27a29c1ab22fc9702d2ce561af97e3d4aa3b03712538ce0b29a0042fa4a0fea6f11eacba69b SHA512 b981c87d2355dc83b5da0ea4879707336ade8ea4d6ca2bc13da064367938579f2a60dfa5b1c0fd3629f4a2de97676e4f02f30f99a6116049cc2a10abd13a3d7b diff --git a/dev-python/defcon/defcon-0.6.0.ebuild b/dev-python/defcon/defcon-0.6.0.ebuild new file mode 100644 index 00000000000..f39240fd7e4 --- /dev/null +++ b/dev-python/defcon/defcon-0.6.0.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python2_7 python3_6 ) +inherit distutils-r1 + +DESCRIPTION="A set of UFO based objects for use in font editing applications" +HOMEPAGE="https://github.com/typesupply/defcon" +SRC_URI="https://github.com/typesupply/defcon/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +RDEPEND=">=dev-python/fonttools-3.31.0[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND}" +BDEPEND="" + +python_test() { + esetup.py test +}