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 5C05C13835B for ; Sun, 11 Oct 2020 14:49:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ABDE1E0D28; Sun, 11 Oct 2020 14:49:36 +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 95957E0D28 for ; Sun, 11 Oct 2020 14:49:36 +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 A2B96335DC7 for ; Sun, 11 Oct 2020 14:49:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 59B0839E for ; Sun, 11 Oct 2020 14:49:34 +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: <1602427770.e766d14e2f3f61c103ecb2b05e0aba6bd55c1da9.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/objgraph/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/objgraph/Manifest dev-python/objgraph/objgraph-3.5.0.ebuild X-VCS-Directories: dev-python/objgraph/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: e766d14e2f3f61c103ecb2b05e0aba6bd55c1da9 X-VCS-Branch: master Date: Sun, 11 Oct 2020 14:49: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: 12dc1c28-8b11-4dea-9026-f3041f3d21f2 X-Archives-Hash: 508a3f6bbd0ac2369beda52c172cbab7 commit: e766d14e2f3f61c103ecb2b05e0aba6bd55c1da9 Author: Michał Górny gentoo org> AuthorDate: Sun Oct 11 14:31:55 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Oct 11 14:49:30 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e766d14e dev-python/objgraph: Bump to 3.5.0 Signed-off-by: Michał Górny gentoo.org> dev-python/objgraph/Manifest | 1 + dev-python/objgraph/objgraph-3.5.0.ebuild | 31 +++++++++++++++++++++++++++++++ 2 files changed, 32 insertions(+) diff --git a/dev-python/objgraph/Manifest b/dev-python/objgraph/Manifest index 4a64a1f4406..9074170ea25 100644 --- a/dev-python/objgraph/Manifest +++ b/dev-python/objgraph/Manifest @@ -1 +1,2 @@ DIST objgraph-3.4.1.tar.gz 634602 BLAKE2B 17424fa5b6b079e9b0dabdfb5facc88fef67bb3742252fd986b19cb0b674c40f335e0372cb08a86e89d42cce0d504830c24471e0d34483925b33d44f45859445 SHA512 174e097cd9f9b5bd2e83a389d2ce3bd05a1754c1535923cc75f59a3281a292b50014501f093ccf1b2350fdbb34757af950636819227e39cdad2f64cb7de5ebb8 +DIST objgraph-3.5.0.tar.gz 638591 BLAKE2B 7a0ee6c9ee1d8417f7b322f19a397ea2452ed592ebbc07afc1378e86b5bad3895ed2e4a20d92a5f4b0215f68fc7440f85852303585a3161497a85d41d4c4e550 SHA512 da29202871bad06f2caa9cc297e7bf9a15af4c89e23baf9c271764e0ce93ff9557cd5c21d0bf39b425713460dbe2dbc8468d70c6bfcc1c3ff8b1b4d4a7923858 diff --git a/dev-python/objgraph/objgraph-3.5.0.ebuild b/dev-python/objgraph/objgraph-3.5.0.ebuild new file mode 100644 index 00000000000..86764006685 --- /dev/null +++ b/dev-python/objgraph/objgraph-3.5.0.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6..9} pypy3 ) + +inherit distutils-r1 + +DESCRIPTION="Draws Python object reference graphs with graphviz" +HOMEPAGE="https://mg.pov.lt/objgraph/" +SRC_URI="mirror://pypi/o/${PN}/${P}.tar.gz" + +LICENSE="MIT" +KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux" +SLOT="0" +IUSE="doc" + +RDEPEND="media-gfx/graphviz" +BDEPEND="test? ( media-gfx/xdot )" + +PATCHES=( + "${FILESDIR}/objgraph-3.4.1-tests.patch" +) + +distutils_enable_tests unittest + +python_install_all() { + use doc && local HTML_DOCS=( docs/* ) + distutils-r1_python_install_all +}