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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 36E31158090 for ; Mon, 16 May 2022 13:20:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 78F79E09A1; Mon, 16 May 2022 13:20:48 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5A824E09A1 for ; Mon, 16 May 2022 13:20:48 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 635CC3415D0 for ; Mon, 16 May 2022 13:20:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 511BB483 for ; Mon, 16 May 2022 13:20:43 +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: <1652707132.fc82eb50359d37f5e2d3e27b9001beeffae93a9a.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/jsonref/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/jsonref/Manifest dev-python/jsonref/jsonref-0.1-r1.ebuild X-VCS-Directories: dev-python/jsonref/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: fc82eb50359d37f5e2d3e27b9001beeffae93a9a X-VCS-Branch: master Date: Mon, 16 May 2022 13:20:43 +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: 0e96a0ab-3087-4873-b775-4223644a4b1b X-Archives-Hash: 9934268704973818f3415dc30a6ab161 commit: fc82eb50359d37f5e2d3e27b9001beeffae93a9a Author: Michał Górny gentoo org> AuthorDate: Mon May 16 13:18:52 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon May 16 13:18:52 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc82eb50 dev-python/jsonref: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/jsonref/Manifest | 1 - dev-python/jsonref/jsonref-0.1-r1.ebuild | 23 ----------------------- 2 files changed, 24 deletions(-) diff --git a/dev-python/jsonref/Manifest b/dev-python/jsonref/Manifest index d4c5f01fc21a..88191d85dba9 100644 --- a/dev-python/jsonref/Manifest +++ b/dev-python/jsonref/Manifest @@ -1,2 +1 @@ -DIST jsonref-0.1.tar.gz 12296 BLAKE2B cab2b4778b8a0184989ed6ff520ed6f12a68e9109a92aa0fd5521b69ea14cd5b6301ce61bf98f0d0d4d44fb016f7d6bd99fc804975bddf1c350bc4b46d62f77f SHA512 9900601feab0c20c902a6d5575fd411898af126a650d0c9ff955f50f5bd1f5da8e5a071ca86cac31ce3c5fb35a516f849cbb70098cac2cfdc910ba33a1f7411b DIST jsonref-0.2.tar.gz 13032 BLAKE2B 0db36904f6914c889d608ac6a368cc8a80b0f81b6bf9f77bb229042c484084c6a06f31099440a48f49f5efea248e0e4f498269bdf89e240be8e149a0f221747d SHA512 415eaefcaf2c7a02bf70749522fef0d96f1e0cc5772edd50ca016a564258df21dd3eb178b7a33ee61e606125fb802a29b0cb8855a81c6116baf6393208927b0f diff --git a/dev-python/jsonref/jsonref-0.1-r1.ebuild b/dev-python/jsonref/jsonref-0.1-r1.ebuild deleted file mode 100644 index a5ab5203605d..000000000000 --- a/dev-python/jsonref/jsonref-0.1-r1.ebuild +++ /dev/null @@ -1,23 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{8..10} ) - -inherit distutils-r1 - -DESCRIPTION="An implementation of JSON Reference for Python" -HOMEPAGE="https://github.com/gazpachoking/jsonref https://pypi.org/project/jsonref/" -SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64" - -distutils_enable_tests pytest - -python_test() { - epytest tests.py -}