From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1380508-garchives=archives.gentoo.org@lists.gentoo.org> 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 7E4DA15808B for <garchives@archives.gentoo.org>; Mon, 28 Mar 2022 10:14:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DCD4FE0901; Mon, 28 Mar 2022 10:14:38 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4D1BDE0901 for <gentoo-commits@lists.gentoo.org>; Mon, 28 Mar 2022 10:14:38 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 2A5D8341373 for <gentoo-commits@lists.gentoo.org>; Mon, 28 Mar 2022 10:14:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7FC6C34A for <gentoo-commits@lists.gentoo.org>; Mon, 28 Mar 2022 10:14:35 +0000 (UTC) From: "Michał Górny" <mgorny@gentoo.org> 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" <mgorny@gentoo.org> Message-ID: <1648462465.78853ef5737aa97d35999f526d062011a9909bf1.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/warlock/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/warlock/warlock-1.3.3-r1.ebuild X-VCS-Directories: dev-python/warlock/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 78853ef5737aa97d35999f526d062011a9909bf1 X-VCS-Branch: master Date: Mon, 28 Mar 2022 10:14:35 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 842f07ff-9efc-4a59-b8e9-646777df1d70 X-Archives-Hash: 34ff706f759ad61fb1965d9144b10357 commit: 78853ef5737aa97d35999f526d062011a9909bf1 Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Mon Mar 28 08:58:10 2022 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Mon Mar 28 10:14:25 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78853ef5 dev-python/warlock: Remove old Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> dev-python/warlock/warlock-1.3.3-r1.ebuild | 30 ------------------------------ 1 file changed, 30 deletions(-) diff --git a/dev-python/warlock/warlock-1.3.3-r1.ebuild b/dev-python/warlock/warlock-1.3.3-r1.ebuild deleted file mode 100644 index 0086c8697dbe..000000000000 --- a/dev-python/warlock/warlock-1.3.3-r1.ebuild +++ /dev/null @@ -1,30 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -PYTHON_COMPAT=( python3_{8..10} ) - -inherit distutils-r1 - -DESCRIPTION="Python object model built on JSON schema and JSON patch" -HOMEPAGE="https://github.com/bcwaldon/warlock" -SRC_URI="https://github.com/bcwaldon/${PN}/archive/${PV}.tar.gz -> ${P}.gh.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 ~arm arm64 x86 ~amd64-linux ~x86-linux" - -RDEPEND=" - dev-python/six[${PYTHON_USEDEP}] - >=dev-python/jsonpatch-0.10[${PYTHON_USEDEP}] - <dev-python/jsonpatch-2[${PYTHON_USEDEP}] - >=dev-python/jsonschema-0.7[${PYTHON_USEDEP}] - <dev-python/jsonschema-5[${PYTHON_USEDEP}]" - -distutils_enable_tests pytest - -EPYTEST_DESELECT=( - # broken by jsonschema-4 but this package is dead and glanceclient - # (its only dep) does not seem to be affected - tests/test_core.py::TestCore::test_recursive_models -)