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 16D8513835A for ; Mon, 7 Dec 2020 11:39:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0B4B9E0798; Mon, 7 Dec 2020 11:39:26 +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 9B5D1E08FE for ; Mon, 7 Dec 2020 11:39:25 +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 087A4340C79 for ; Mon, 7 Dec 2020 11:39:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 83187474 for ; Mon, 7 Dec 2020 11:39:22 +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: <1607341134.ac34027f8660b42d78515b3b3885653d2494b206.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/voluptuous/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/voluptuous/Manifest dev-python/voluptuous/voluptuous-0.12.1.ebuild X-VCS-Directories: dev-python/voluptuous/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: ac34027f8660b42d78515b3b3885653d2494b206 X-VCS-Branch: master Date: Mon, 7 Dec 2020 11:39:22 +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: 4bc1df65-6f63-407e-ab6a-9abd24f16ebd X-Archives-Hash: de9fd28cf99d016d82165c881bede475 commit: ac34027f8660b42d78515b3b3885653d2494b206 Author: Michał Górny gentoo org> AuthorDate: Mon Dec 7 07:48:36 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Dec 7 11:38:54 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac34027f dev-python/voluptuous: Bump to 0.12.1 Signed-off-by: Michał Górny gentoo.org> dev-python/voluptuous/Manifest | 1 + dev-python/voluptuous/voluptuous-0.12.1.ebuild | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+) diff --git a/dev-python/voluptuous/Manifest b/dev-python/voluptuous/Manifest index 2145ac8b7c3..fcd498312d7 100644 --- a/dev-python/voluptuous/Manifest +++ b/dev-python/voluptuous/Manifest @@ -1 +1,2 @@ DIST voluptuous-0.12.0.tar.gz 46958 BLAKE2B ec41ea9d5775bdc443153b913bcef7e73f14e29d47c6997e5597958b59c2b1143c83b65ca08d2a06aba3725f76f9168be4f46f68d91d87ceb4e4e3b6643e6800 SHA512 7c72d965f2a2eeb2ad099a19b41e2249b9921e51985ff975ed62fe5a6d5b3f2d5c2a7d6fc2cbe3c80abbea17cfc46c39f1953db5daecc0faafb348c838f80417 +DIST voluptuous-0.12.1.tar.gz 47476 BLAKE2B aa991ab2131e478eb06909c8b7ca86158980b47431d7fae82f41ab2c09b2d23c21d6da937394732cb479436fc247268947c3b31701c6260132cd6f9c7f7e288f SHA512 14ead6bd99c9238318e7ed39fa543cb3363cbb0716a251061e6f533b8fae3fd5e754bd6b2756b6d76745da0e02236e04bfe0ae4e25dd87d291bb2a716660eebc diff --git a/dev-python/voluptuous/voluptuous-0.12.1.ebuild b/dev-python/voluptuous/voluptuous-0.12.1.ebuild new file mode 100644 index 00000000000..d0c398fb00b --- /dev/null +++ b/dev-python/voluptuous/voluptuous-0.12.1.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6..9} ) + +inherit distutils-r1 + +DESCRIPTION="A Python data validation library." +HOMEPAGE="https://github.com/alecthomas/voluptuous" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" + +PATCHES=( "${FILESDIR}"/${PN}-0.11.5-fix-doctest.patch ) + +distutils_enable_tests nose