mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-07-25 08:58:27 -07:00
dev-python/toml: Revbump, enable tests, add py38
Copyright: Sony Interactive Entertainment Inc. Package-Manager: Portage-2.3.79, Repoman-2.3.18 Signed-off-by: Patrick McLean <chutzpah@gentoo.org>
This commit is contained in:
committed by
Patrick McLean
parent
36028ed5d4
commit
abdbe7ce47
@@ -1 +1,3 @@
|
||||
DIST toml-0.10.0-1.tar.gz 20396 BLAKE2B 3ddcb4cadfc68239cfcb34938a785b27326991ea89966aa6ba3ff2c8a430099664dce1474adf453f2d372b0d149c43584bce9c7abee4c8cbec3126adb3d2ab95 SHA512 ebad9d87606cf66f3db5abb2b0abd333d5536037446df131bda3f8138c33a6495a8923fc583328c27632d39448790e0e6788745d8acd7d600ea3ce57cb7dbd45
|
||||
DIST toml-0.10.0.tar.gz 16719 BLAKE2B f7863e9cf0ca5185a59d64010346b4b960c40bc3711d4cbd1ad907d15da823319b748df1a5536465e9f36428bf1599624ede3b1fa68cb420684a52ba137227c9 SHA512 26f26c38ce9cd48305218c2c34c5a5407b00aefc25a933f044bb7be22c23cfdfa3b8cf2da952d17760c4b9038df62e405fa039cc7b63dd3e94c9c312f04f9182
|
||||
DIST toml-test-39bb76d631ba103a94b377aaf52c979456677fb1.tar.gz 19304 BLAKE2B 5bb73ff91146ee85f6844132cdfc06673cdb384810c6c978cfc9f8ce6ba8b1607a0dc2d03aa868791d5fd33d00ebac96a4cd57a98948a3ef9318a52417904eda SHA512 931ba91b77da576979bde290c99f6cb1a2eeec3aee55b5041b0216094c584934d560487d329df21caa64b405ec50b4dd417dc910bbe4f15b1440686efc58da29
|
||||
|
||||
19
dev-python/toml/files/toml-0.10.0-depricationwarning.patch
Normal file
19
dev-python/toml/files/toml-0.10.0-depricationwarning.patch
Normal file
@@ -0,0 +1,19 @@
|
||||
commit 660dd2d57278e6f608bbaedcaaa4529ace557e41
|
||||
Author: Tsuyoshi Hombashi <tsuyoshi.hombashi@gmail.com>
|
||||
Date: Mon Oct 8 23:32:53 2018 +0900
|
||||
|
||||
Change to avoid "DeprecationWarning: invalid escape sequence"
|
||||
|
||||
diff --git a/toml/decoder.py b/toml/decoder.py
|
||||
index bed551b..aa468f2 100644
|
||||
--- a/toml/decoder.py
|
||||
+++ b/toml/decoder.py
|
||||
@@ -44,7 +44,7 @@ except NameError:
|
||||
FNFError = IOError
|
||||
|
||||
|
||||
-TIME_RE = re.compile("([0-9]{2}):([0-9]{2}):([0-9]{2})(\.([0-9]{3,6}))?")
|
||||
+TIME_RE = re.compile(r"([0-9]{2}):([0-9]{2}):([0-9]{2})(\.([0-9]{3,6}))?")
|
||||
|
||||
|
||||
class TomlDecodeError(ValueError):
|
||||
43
dev-python/toml/toml-0.10.0-r1.ebuild
Normal file
43
dev-python/toml/toml-0.10.0-r1.ebuild
Normal file
@@ -0,0 +1,43 @@
|
||||
# Copyright 1999-2019 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
PYTHON_COMPAT=( python{2_7,3_{5,6,7,8}} pypy{,3} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
TOML_TEST_VER="39bb76d631ba103a94b377aaf52c979456677fb1"
|
||||
|
||||
DESCRIPTION="Python library for handling TOML files"
|
||||
HOMEPAGE="https://github.com/uiri/toml"
|
||||
SRC_URI="https://github.com/uiri/${PN}/archive/${PV}.tar.gz -> ${P}-1.tar.gz
|
||||
test? ( https://github.com/BurntSushi/toml-test/archive/${TOML_TEST_VER}.tar.gz -> toml-test-${TOML_TEST_VER}.tar.gz )"
|
||||
IUSE="test"
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha ~amd64 ~arm64 ~hppa ~ia64 ~sparc ~x86"
|
||||
|
||||
# peculiar testing depending on https://github.com/BurntSushi/toml-test. Not
|
||||
# particularly worth the trouble.
|
||||
#RESTRICT="test"
|
||||
|
||||
BDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
|
||||
test? ( $(python_gen_cond_dep 'dev-python/numpy[${PYTHON_USEDEP}]' 'python3*') )"
|
||||
|
||||
PATCHES=(
|
||||
"${FILESDIR}/toml-0.10.0-depricationwarning.patch"
|
||||
)
|
||||
|
||||
DOCS=( README.rst )
|
||||
|
||||
distutils_enable_tests pytest
|
||||
|
||||
python_prepare_all() {
|
||||
if use test; then
|
||||
mv "${WORKDIR}/toml-test-${TOML_TEST_VER#v}" "${S}/toml-test" || die
|
||||
fi
|
||||
|
||||
distutils-r1_python_prepare_all
|
||||
}
|
||||
Reference in New Issue
Block a user