Compare commits

...

6 Commits

41 changed files with 727 additions and 342 deletions

View File

@@ -1,3 +1,7 @@
2019-07-19 homeassistant-0.96.1
* homeassistant-0.96.1
* bump frontend-20190718.0
2019-07-18 homeassistant-0.96.0-r1
* Merge branch 'master' of matoro/HomeAssistantRepository into master
- dev-python/pytest: add dev-python/packaging dep

View File

@@ -0,0 +1,4 @@
DIST home-assistant-cli-0.7.0.tar.gz 58802 BLAKE2B 84597c6bbd00d80252eb40863f512e8a4fc8fa5c43db8400061b6d77f605ffc641e9426ed239f6e40d47d16b7b0a9138c969c990bb0346feb74201ed825a91f1 SHA512 9cf4d0b33a2845115d5208884f8e0762bec7c73ef1500630450b4746ab9bc3abbdfe67cd45f4224d6d5a0615e648d1981c545d23557f1ada4fd8e621021da709
EBUILD home-assistant-cli-0.7.0.ebuild 2147 BLAKE2B f7883d7072023aea55041c0b104e25189d45e8ec32dec02e4c51b0836a1df555f627209860c989fd7aa5dadcc84b1a459581aa3a7a1253da226b946fc05fe414 SHA512 272b3526f9d56da73ddd6b4fe963cb67accc7ae0df9cec01a57603090cbd6964407b8f2e1107789db97738fe6a879fc47e2dbaa55059ce074401a1ae9476c8ec
EBUILD home-assistant-cli-9999.ebuild 2272 BLAKE2B d7ce38ff070cddeb35035a696d63f977844e08835b7643b310250ae3b52e02558e9a4f5290933bd8f7ae8073fbe9ce61d5ae6282ceda5d2f2ff337192fa941ea SHA512 97708f3186cf341f51cf8ed1880d97f662e519af8655fa48a7c38a393936446a52407f5bd4fa5a7c7f8bd80f294aa4ef138eb4d4bc1da06c06e02bba09b6f0d4
MISC metadata.xml 487 BLAKE2B 1f1f9aed2a3ef1615865b0e18f4e32f47a912395ddaa8934fedf06003c226216a16ad639a914413f448b4bc6bca8a7f929bba5fe5439a7178c6fb4e79fd9e92e SHA512 329fbf70ce5086771fad02004d566d13a3526eb8f185a441cea56ee71bf61492298aae268202445fa09c361708b6c99a1e83c075f46f13d789b5cbaf380c89d0

View File

@@ -0,0 +1,61 @@
# Copyright 1999-2019 Gentoo Authors Andreas Billmeier b (at) edevau.net
# Distributed under the terms of the GNU General Public License v3.0
EAPI="7"
PYTHON_COMPAT=( python3_{5,6,7} )
inherit distutils-r1
DESCRIPTION="The Home Assistant Command-line Interface (hass-cli)"
HOMEPAGE="https://github.com/home-assistant/home-assistant-cli/"
SRC_URI="https://github.com/home-assistant/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND="~dev-python/aiohttp-3.5.4[${PYTHON_USEDEP}]
~dev-python/click-log-0.3.2[${PYTHON_USEDEP}]
~dev-python/click-7.0[${PYTHON_USEDEP}]
~dev-python/dateparser-0.7.1[${PYTHON_USEDEP}]
>=dev-python/jinja-2.10[${PYTHON_USEDEP}]
~dev-python/jsonpath-rw-1.4.0[${PYTHON_USEDEP}]
~dev-python/netdisco-2.6.0[${PYTHON_USEDEP}]
~dev-python/regex-2019.04.14[${PYTHON_USEDEP}]
>=dev-python/ruamel-yaml-0.15.96[${PYTHON_USEDEP}]
~dev-python/requests-2.22.0[${PYTHON_USEDEP}]
~dev-python/tabulate-0.8.3[${PYTHON_USEDEP}]"
DEPEND="${REDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
~dev-python/coveralls-1.2.0[${PYTHON_USEDEP}]
~dev-python/flake8-docstrings-1.3.0[${PYTHON_USEDEP}]
~dev-python/flake8-3.7.7[${PYTHON_USEDEP}]
~dev-python/mock-open-1.3.1[${PYTHON_USEDEP}]
~dev-python/mypy-0.701[${PYTHON_USEDEP}]
~dev-python/pydocstyle-3.0.0[${PYTHON_USEDEP}]
~dev-python/pylint-2.3.1[${PYTHON_USEDEP}]
~dev-python/pytest-cov-2.6.1[${PYTHON_USEDEP}]
~dev-python/pytest-sugar-0.9.2[${PYTHON_USEDEP}]
~dev-python/pytest-timeout-1.3.3[${PYTHON_USEDEP}]
~dev-python/pytest-4.4.1[${PYTHON_USEDEP}]
~dev-python/requests_mock-1.6.0[${PYTHON_USEDEP}]
~dev-python/wheel-0.33.1[${PYTHON_USEDEP}]
~dev-python/codecov-2.0.15[${PYTHON_USEDEP}]
~dev-python/twine-1.13.0[${PYTHON_USEDEP}]
)"
src_prepare() {
eapply_user
cd "${S}"
sed -i -e "s/'ruamel.yaml==0.15.96'/'ruamel.yaml>=0.15.96'/" setup.py || die "Sed version helper failed!"
}
python_test() {
nosetests --verbose || die
py.test -v -v || die
}

View File

@@ -0,0 +1,66 @@
# Copyright 1999-2019 Gentoo Authors Andreas Billmeier b (at) edevau.net
# Distributed under the terms of the GNU General Public License v3.0
EAPI="7"
PYTHON_COMPAT=( python3_{5,6,7} )
inherit distutils-r1
if [[ ${PV} == *9999* ]]; then
inherit git-r3
fi
DESCRIPTION="The Home Assistant Command-line Interface (hass-cli)"
HOMEPAGE="https://github.com/home-assistant/home-assistant-cli/"
#SRC_URI="https://github.com/home-assistant/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
EGIT_REPO_URI="https://github.com/home-assistant/home-assistant-cli.git"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND="~dev-python/aiohttp-3.5.4[${PYTHON_USEDEP}]
~dev-python/click-log-0.3.2[${PYTHON_USEDEP}]
~dev-python/click-7.0[${PYTHON_USEDEP}]
~dev-python/dateparser-0.7.1[${PYTHON_USEDEP}]
>=dev-python/jinja-2.10[${PYTHON_USEDEP}]
~dev-python/jsonpath-rw-1.4.0[${PYTHON_USEDEP}]
~dev-python/netdisco-2.6.0[${PYTHON_USEDEP}]
~dev-python/regex-2019.04.14[${PYTHON_USEDEP}]
>=dev-python/ruamel-yaml-0.15.96[${PYTHON_USEDEP}]
~dev-python/requests-2.22.0[${PYTHON_USEDEP}]
~dev-python/tabulate-0.8.3[${PYTHON_USEDEP}]"
DEPEND="${REDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
~dev-python/coveralls-1.2.0[${PYTHON_USEDEP}]
~dev-python/flake8-docstrings-1.3.0[${PYTHON_USEDEP}]
~dev-python/flake8-3.7.7[${PYTHON_USEDEP}]
~dev-python/mock-open-1.3.1[${PYTHON_USEDEP}]
~dev-python/mypy-0.701[${PYTHON_USEDEP}]
~dev-python/pydocstyle-3.0.0[${PYTHON_USEDEP}]
~dev-python/pylint-2.3.1[${PYTHON_USEDEP}]
~dev-python/pytest-cov-2.6.1[${PYTHON_USEDEP}]
~dev-python/pytest-sugar-0.9.2[${PYTHON_USEDEP}]
~dev-python/pytest-timeout-1.3.3[${PYTHON_USEDEP}]
~dev-python/pytest-4.4.1[${PYTHON_USEDEP}]
~dev-python/requests_mock-1.6.0[${PYTHON_USEDEP}]
~dev-python/wheel-0.33.1[${PYTHON_USEDEP}]
~dev-python/codecov-2.0.15[${PYTHON_USEDEP}]
~dev-python/twine-1.13.0[${PYTHON_USEDEP}]
)"
src_prepare() {
eapply_user
cd "${S}"
sed -i -e "s/'ruamel.yaml==0.15.96'/'ruamel.yaml>=0.15.96'/" setup.py || die "Sed version helper failed!"
}
python_test() {
nosetests --verbose || die
py.test -v -v || die
}

View File

@@ -0,0 +1,16 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<herd>python</herd>
<upstream>
<remote-id type="pypi">home-assistant-cli</remote-id>
<maintainer status="unknown">
<email>hello@home-assistant.io</email>
<name>The Home Assistant Authors</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@@ -1,9 +1,9 @@
DIST home-assistant-frontend-20190712.0.tar.gz 25322984 BLAKE2B 2a9dd6617aaea919f04db9a36915959fe63d9f9402c479cedc6fc9d0d6ff4c7783bb876bf2371eab958b9afc5a87219666d66639cf99dd8ede90f0d3d9cee772 SHA512 3a7b27a4e458cc50f92101ddb03b0b67a4c790f75546a1f30c8ea9fc84607af0017740bcbcae78a5693978157bcae5c1f65ca3731ac572d53d519668c828eaec
DIST home-assistant-frontend-20190715.0.tar.gz 25378881 BLAKE2B 3e46458f3bb485c3dd1717f942f9f38eea04adede08e856a9faaeae034219e11c3a2f9d1b50d68900f894575d15c31de59c3bd4fee26540efa4bd13d6910b58d SHA512 4b5c32b94ec487e093508989ce6e8e1378855102fe9dff4430a4bc734fd800db09e5de97155a4d613ea7a90d384feabdc19e82b8a9e6f38869089ce79d1fb8a2
DIST home-assistant-frontend-20190717.1.tar.gz 25395778 BLAKE2B 18682bf9ea6815d22c598807900d764b8967a3e52ef5c78e49c2e922214dd3f78821ad04de876ae592624b0463edae334f19c79d778499afb93a8f04ee96ed25 SHA512 c9ffdda6f9396cd032f75db95dd86db9a2544d1fbb574c56fdd6f9480ae0268ac0ee94a1f7bbb10123ffe35a719db500d95528cec4fba238500a0004bcdce02a
DIST home-assistant-frontend-20190718.0.tar.gz 25414663 BLAKE2B c41ae011833ac590410fe949cff813392b0fdddeea87029f5061858ba2a83cc04aea5f5bf94f24781555020635adc3bb48eb4af49f973778bf01c5ce8d67ed70 SHA512 894151c277884baec129e046b403966b682c28a5540cf8bb0cd03438eb8d26f6fe64949f2184a1eab3d18308e5413d54ee22fe38651943f8c5f20814deccfc4c
EBUILD home-assistant-frontend-20190712.0.ebuild 784 BLAKE2B ad29ce3f053da300de396367f2edd0bf4755cd0a949bb03204740b8b9ad5cca10e0ee65f2b7bbf44432aebf92019e600151f9758d64cc88a5d54080a7335e65b SHA512 8e3f273abd6bf50e46849bb181d05519346401e80fc52a95466ec399a283d451b8d8c72e58618f917973828d0de8ad09b27cb5ad82a360c24d0285072e42a262
DIST home-assistant-frontend-20190719.0.tar.gz 25420048 BLAKE2B 466a9c10146b114802f075f5f67606da7b88c82f9aa0bceda629ea324645bb62a359f5b2f65678919b0743abccbc6739a6ba67712b0e048574a9de6e9924bbc9 SHA512 14e168e01cc8178078b0ecc1aa70458662e58cf9b889a19250cb72ce0528ef665c645086de030096463df1fd9d389336b1ff5c59d014baf5fb8a1d04359a997e
EBUILD home-assistant-frontend-20190715.0.ebuild 784 BLAKE2B ad29ce3f053da300de396367f2edd0bf4755cd0a949bb03204740b8b9ad5cca10e0ee65f2b7bbf44432aebf92019e600151f9758d64cc88a5d54080a7335e65b SHA512 8e3f273abd6bf50e46849bb181d05519346401e80fc52a95466ec399a283d451b8d8c72e58618f917973828d0de8ad09b27cb5ad82a360c24d0285072e42a262
EBUILD home-assistant-frontend-20190717.1.ebuild 784 BLAKE2B ad29ce3f053da300de396367f2edd0bf4755cd0a949bb03204740b8b9ad5cca10e0ee65f2b7bbf44432aebf92019e600151f9758d64cc88a5d54080a7335e65b SHA512 8e3f273abd6bf50e46849bb181d05519346401e80fc52a95466ec399a283d451b8d8c72e58618f917973828d0de8ad09b27cb5ad82a360c24d0285072e42a262
EBUILD home-assistant-frontend-20190718.0.ebuild 784 BLAKE2B ad29ce3f053da300de396367f2edd0bf4755cd0a949bb03204740b8b9ad5cca10e0ee65f2b7bbf44432aebf92019e600151f9758d64cc88a5d54080a7335e65b SHA512 8e3f273abd6bf50e46849bb181d05519346401e80fc52a95466ec399a283d451b8d8c72e58618f917973828d0de8ad09b27cb5ad82a360c24d0285072e42a262
EBUILD home-assistant-frontend-20190719.0.ebuild 784 BLAKE2B ad29ce3f053da300de396367f2edd0bf4755cd0a949bb03204740b8b9ad5cca10e0ee65f2b7bbf44432aebf92019e600151f9758d64cc88a5d54080a7335e65b SHA512 8e3f273abd6bf50e46849bb181d05519346401e80fc52a95466ec399a283d451b8d8c72e58618f917973828d0de8ad09b27cb5ad82a360c24d0285072e42a262
MISC metadata.xml 492 BLAKE2B 43ba5d3e567d6e96c2d500e5962d6670f0f6e8548303d743d5ce5838fec4ba0cb6e546d18ff7f72ab6d38a92f7b213f3c223f6646ad13effd817c6a142edbd7c SHA512 403bfcc4cf0b7df751832554e4b830be1731f491fe7c2ff0f338047a1a89e93264560280b56acc958404572f5d41ef1bc9e547625a3cc760183192da02226499

View File

@@ -5,17 +5,15 @@ AUX homeassistant.service 261 BLAKE2B 54819aa30aa5564aca693fa2dd70ad4a9831929a33
AUX recorder.yaml 114 BLAKE2B af04840805aa13124208584e7f1d40335905a083ee7deead5c0e4324c969f2a231c801c23e42075782950aba7535496d92747bf03efd73a80b0d07e8492d18f6 SHA512 cb4e353e54fb6dc7034569b8d62ddcdca92680c23c2c4e1ce707d21cf95e93f41a0c44521d8c3ee90b68c830f6b8e65dab82ae64bfa09727ae384550f7de0c94
AUX update-homeassistant 1326 BLAKE2B 917bdd332c4e5dea5177eecd11a7f8d72b911fddfdc8e5eb54960c526fe8c735e20d44e570cf7aeb99669d2a9670c70da1c5fbc30efb284d1f0f330799de6e24 SHA512 3c05f0d6d1bde0e1526c3e679568794c07091e7856dfd8793e13feec6f22725ddaa3163ca2c81d9df86cf73573f932e561743f05de420b350a0b68f6a9582aca
AUX yamaha.py 13403 BLAKE2B e073c1e3d4bab02e93e971cb6003705e5e82d20524204ed00f5cd4d0f8f1628419a3a0c8a50ce2e2e13a57017607e5543cfed49a3241de549c572c2012c044d7 SHA512 be6ab79a49c47ad15642ac06adc194318a2ae812cdeffa442e32303b7865b1589383386d84f57b50e942b850ffe68c1ce208d0a4c5bb70fee14f39ea77d01ef4
DIST homeassistant-0.95.1.tar.gz 4118985 BLAKE2B 2ddad2079c5924eca24672dc1c66b6f253ce91dacb7f7e0aabb65971cc9ade70a9373d218c236b4509f28d6918f20874383cb1f444bf71a7713dfffb2a51b0f3 SHA512 edbd775df54d7097e511d556fb6bc0425a75235d147fb7b81c5efe84e637584cebffd5ef8c593cd4f4959456cf8a3482c579004598ae7078be1af39c09203beb
DIST homeassistant-0.95.2.tar.gz 4119045 BLAKE2B c64c4dd3f808affe7a3d76638aaddb8f4b5f1bda44a28cc22ffd22f67c3bb277706a5fbcac8a7362810b27d9d129f6eb0fb2c0c861dca1a9bf585750a71d4be0 SHA512 a98161e7d01411e1dd4133415fd60c9b5359b2fee07fbcf0d9c4f0714286af0d548c887fa9c9d62e4b6f2240b5d216dd9cdaa6a7f8e67b49f23457dc3355c6ae
DIST homeassistant-0.95.4.tar.gz 4118571 BLAKE2B 10377c4a5f1a6a76d40e16495596313fb6286293b734c8975f540fcf1eb6b123da709cd7ae6457d922f05e1690951893d6e58beaf2ed3a5250f0b24e5f6aeca4 SHA512 596bee4714cf47935cdf017296efb76b0cc8e4cfa28e15b5273c9a9fa1e1926bfcdc9a9fb004ea6e639a3d0a211f43f7df8a85ca0f9741cae9044e6c0f015b32
DIST homeassistant-0.96.0.tar.gz 4170621 BLAKE2B cdfff1ee26621401f1471a8654783690c5a4ad068cbc29ba9efdb9d02ad61c78b3e8e5c7d076a5abe6c822dceb5e00c319821d81507d0fb6a356cb7ad71d1874 SHA512 7836e3b07b59f3f941ae4cd37720de64780d863c00ff4f848736d908b1b05252b9af68156a3de9574c7c200bd61a1ae9d912095872eff1b2c4cb5639e0370653
DIST homeassistant-0.96.0b4.tar.gz 4170011 BLAKE2B 74ee0f07ad8f56fb45e904a823639055ecbcbcae47f641077dfaddec493fea6c2f1e109c3642b4bd6002c3b50ce59ee13ec777389009c0283c21e61d5e336241 SHA512 269dfddd80ade2dcbfdd44907715d425d8ddd7af5dcb89f800d175c5d802f2c5d7194b8196ecd3f96e341ddf2d5b95e647f4b153fc7b2b8bbbf2f29fc41daab6
DIST homeassistant-0.96.1.tar.gz 4171248 BLAKE2B f598ec9ead78f0320624bbd7c29a44c8fd48a0a3dbdb9720889c57aae2328109489c545bbff8103c417a3862463a89674632a6e6b58a5ed11bfba74df6ad0f4d SHA512 c2499731f11deabecc5660712199474ba04c916dedaebceef2e0109576aad5ec98567f0f1ff1e82fe7395a06eed29f35c81b6e7af0c6fc39d7d3e2e51c65c7c7
EBUILD homeassistant-0.95.1.ebuild 9267 BLAKE2B 07be5d1caf0c99e822f483219d824111d2d2b4e80d799bbd8254e0d844ae81698b45ca0ab57b91d1d2ff641e901350849c557964a2e33c3171b3c5ef60810315 SHA512 6675637203d7c267e9bcb1f1efb2a072c7593a4e60a466fd4dd0d3e26eeba8e5e8668a6ab53e8b1fbbd11c3989af82668c3dca920b0852be3d5aa5726a3b3e12
EBUILD homeassistant-0.95.2.ebuild 9320 BLAKE2B 3dcc80473a212eada739943d631a0aa11cb3930e51cb2f3aade1c958742f45f09fd0bb2453800cf0a102a3aef8521fed500e3f5689fe925a1b97c24596815044 SHA512 8ac2b8a6d691be374dd694d8ef643da0ec911178bd66e6b251a6f4c782f5f07313b1c96e3fcbbdcd59c6b9400c8af9da97816e62dafa2278f621cc0f727f5aaf
DIST homeassistant-0.96.2.tar.gz 4171945 BLAKE2B 687362442b381148ad2c44f3aab9620ff5a829ab49d036a0795bb17e58c6badbbb55e490009d1402b2ebcb82aea41f8e3e47387ae5ee8fba63a07818ecd267a4 SHA512 0b506cec5f18ca3bd9154d4492a6c095a9a15446f0c9492222a240acdaa851df67ede18d1ed0c088e97312ae6cc7ae17ed1862c9bc5d351a0cc71af7d9150411
EBUILD homeassistant-0.95.4.ebuild 9370 BLAKE2B de342dbe29de89124cdf4a03898675fd95b8a6087ffc461159563d219f66d92dc1fcd812ce791a402a23cba74c19aca7679c61aebf0cda1e71147b35cb0737b7 SHA512 bfb7925e913e828143a8bdceb297cbfe83e1924016077096d8e2aa8c09b8964105a8929f035365f72b0bfcb695f55e87b1a9e8af4345f5d316941047608dc59d
EBUILD homeassistant-0.96.0-r1.ebuild 9664 BLAKE2B 305e40211b5434401bc2da2800e70fcf812e3deaf89b08640a292be8e8d49e0ea14a2dd8f4a710e3dce84ec873aa467df44230d6697d7102b8555f67b56461dd SHA512 2d96f40213c3eba425f28f0f752895c01eda3ba9f2754402ad33595d560789fb11a6c82303aaded7296c5b499d0d29c9f38acef95c6d2b8a3b87614c96856470
EBUILD homeassistant-0.96.0.ebuild 9540 BLAKE2B 303e0a669a672481c5f707967cb6ecd64791fc3a0e9d1241c604ed7e6c9cc94dbae1130706b7270ed2d51406d7edb89c0fb5755132b25f54681f1d9b61a4d9f0 SHA512 3dda1bf9f56d42c4fdd104ce55c08f12e7fa744f43a96c129729d8272cdce12f03c3eb4fa2ab21760024c0d3ab8c1f68be38f07f09a4f799c3687b6f836c75d1
EBUILD homeassistant-0.96.0_beta4.ebuild 9541 BLAKE2B 5e9259ff1c60fa898d57f31e967164e0f8ce2219761ca55a14646fb742387f7a98e7fc7a2551ad6a8c56b3ccd945aea395b618797f0fcf0a327a85a17c905b66 SHA512 d3382852f7e53fbcb23eab8f65a20cd33424cd477d60934c07548720d239e1070ceff3ecb1f89f3f6f1219e04185943429bf604bf4153d1f225da2f3266be041
EBUILD homeassistant-0.96.1.ebuild 9664 BLAKE2B d207aca7b40cb04eb729aa150455765c7ec479bea93bd2981731a2cd70ac5c86517630e77898afc2b5315cd1f279abc3722cf9aab45b0c5b22d79d325c2404f1 SHA512 bb4e4f24bdad5efb7d8d739b26630f6b4662277175a637302731fd91b3e4f3ad7af53a1469835bf8c0027cbebf099162b5c91ec333a0180bda9b1d8e55dbc97a
EBUILD homeassistant-0.96.2.ebuild 9713 BLAKE2B aee5dfb55532f48c1801ba0df4741a1abee0f1abf8dcd8408dac71d332679cb4629e74a282b29a9bb80bcb720e128c02ee6137fe970f97a5e8a2f019d30cecf1 SHA512 4d09f2c66010fc18f37c609119bf0ce72241b798a50ba9f501335201bf5eec66ab6f8de853c39f905094390b61de50d34287d090db6941e9950d6ecf0666a4e5
MISC metadata.xml 2589 BLAKE2B a449c68483c189c0f51cd93ec4e32b7233de499df787a4aa9eaa380a357990fc7bfffb989d44611282aebaa6cd466bb13ec3287e87d6f8656397156dfc649e7d SHA512 100f6b5a25b8abf0a9035d40a53c74f7306d27e49870249bc864e606f8811c3874bf55200af5f508137c5ec84371e07a1418605b9dd4e47dc1902c67cfac9349

View File

@@ -1,233 +0,0 @@
# Copyright 1999-2019 Gentoo Authors Andreas Billmeier b (at) edevau.net
# Distributed under the terms of the GNU General Public License v3.0
EAPI="7"
PYTHON_COMPAT=( python3_{6,7} )
inherit user readme.gentoo-r1 eutils distutils-r1
MY_P=${P/_beta/b}
MY_PV=${PV/_beta/b}
DESCRIPTION="Open-source home automation platform running on Python 3.6"
HOMEPAGE="https://home-assistant.io https://git.edevau.net/onkelbeh/HomeAssistantRepository"
SRC_URI="https://github.com/home-assistant/home-assistant/archive/${MY_PV}.tar.gz -> ${MY_P}.tar.gz"
RESTRICT="mirror"
LICENSE=""
SLOT="0"
KEYWORDS="amd64"
IUSE="androidtv asuswrt atv darksky denonavr esphome enigma +frontend homematic hs100 maxcube miio mikrotik musiccast mysql mqtt qnap rxv samsungtv sonos ssl speedtest test tradfri vera wemo wink zoneminder zigbee z-wave"
RDEPEND="${PYTHON_DEPS}
!app-misc/homeassistant-bin
app-admin/logrotate
dev-db/sqlite
dev-libs/libfastjson
>=dev-libs/xerces-c-3.1.4-r1
>=dev-libs/xml-security-c-1.7.3
~dev-python/aiohttp-3.5.4[${PYTHON_USEDEP}]
~dev-python/astral-1.10.1[${PYTHON_USEDEP}]
~dev-python/async_timeout-3.0.1[${PYTHON_USEDEP}]
~dev-python/attrs-19.1.0[${PYTHON_USEDEP}]
~dev-python/bcrypt-3.1.6[${PYTHON_USEDEP}]
>=dev-python/certifi-2019.6.16[${PYTHON_USEDEP}]
~dev-python/importlib-metadata-0.15[${PYTHON_USEDEP}]
>=dev-python/jinja-2.10[${PYTHON_USEDEP}]
~dev-python/pyjwt-1.7.1[${PYTHON_USEDEP}]
~dev-python/cryptography-2.6.1[${PYTHON_USEDEP}]
~dev-python/passlib-1.7.1-r1[${PYTHON_USEDEP}]
>=dev-python/pip-8.0.3-r1[${PYTHON_USEDEP}]
~dev-python/python-slugify-3.0.2[${PYTHON_USEDEP}]
>=dev-python/pytz-2019.1[${PYTHON_USEDEP}]
~dev-python/pyyaml-5.1[${PYTHON_USEDEP}]
=dev-python/requests-2.22.0[${PYTHON_USEDEP}]
~dev-python/ruamel-yaml-0.15.97[${PYTHON_USEDEP}]
~dev-python/voluptuous-0.11.5[${PYTHON_USEDEP}]
~dev-python/voluptuous-serialize-2.1.0[${PYTHON_USEDEP}]
>=app-crypt/acme-0.32.0[${PYTHON_USEDEP}]
>=dev-python/asn1crypto-0.24.0[${PYTHON_USEDEP}]
~dev-python/cffi-1.12.2[${PYTHON_USEDEP}]
>=dev-python/jmespath-0.9.4[${PYTHON_USEDEP}]
>=dev-python/pycparser-2.19[${PYTHON_USEDEP}]
>=dev-python/pyopenssl-19.0.0[${PYTHON_USEDEP}]
>=dev-python/python-dateutil-2.8.0[${PYTHON_USEDEP}]
>=dev-python/pbr-5.1.3[${PYTHON_USEDEP}]
>=dev-python/requests-toolbelt-0.9.1[${PYTHON_USEDEP}]
>=dev-python/six-1.12.0[${PYTHON_USEDEP}]
>=dev-python/pyrfc3339-1.1[${PYTHON_USEDEP}]
~dev-python/hass-nabucasa-0.15[${PYTHON_USEDEP}]
>=dev-python/aiohttp-cors-0.7.0[${PYTHON_USEDEP}]
~dev-python/beautifulsoup-4.7.1[${PYTHON_USEDEP}]
~dev-python/blinkpy-0.14.1[${PYTHON_USEDEP}]
>=dev-python/boto3-1.9.16[${PYTHON_USEDEP}]
>=dev-python/botocore-1.12.115[${PYTHON_USEDEP}]
~dev-python/caldav-0.6.1[${PYTHON_USEDEP}]
>=dev-python/cdu-0.1.3[${PYTHON_USEDEP}]
>=dev-python/chardet-3.0.4[${PYTHON_USEDEP}]
~dev-python/colorlog-4.0.2[${PYTHON_USEDEP}]
>=dev-python/coverage-4.5.2[${PYTHON_USEDEP}]
>=dev-python/distro-1.4.0[${PYTHON_USEDEP}]
~dev-python/docopt-0.6.2[${PYTHON_USEDEP}]
>=dev-python/docutils-0.14[${PYTHON_USEDEP}]
>=dev-python/ecdsa-0.13[${PYTHON_USEDEP}]
>=dev-python/envs-1.3[${PYTHON_USEDEP}]
>=dev-python/future-0.17.1[${PYTHON_USEDEP}]
~dev-python/gTTS-token-1.1.3[${PYTHON_USEDEP}]
>=dev-python/idna-2.8[${PYTHON_USEDEP}]
>=dev-python/idna-ssl-1.1.0[${PYTHON_USEDEP}]
>=dev-python/ifaddr-0.1.6[${PYTHON_USEDEP}]
>=dev-python/jose-1.0.0[${PYTHON_USEDEP}]
>=dev-python/jsonrpc-async-0.6[${PYTHON_USEDEP}]
~dev-python/jsonrpc-base-1.0[${PYTHON_USEDEP}]
~dev-python/jsonrpc-websocket-0.6[${PYTHON_USEDEP}]
>=dev-python/lxml-4.3.3[${PYTHON_USEDEP}]
>=dev-python/multidict-4.5.2[${PYTHON_USEDEP}]
>=dev-python/netdisco-2.6.0[${PYTHON_USEDEP}]
>=dev-python/nose-1.3.7[${PYTHON_USEDEP}]
>=dev-python/numpy-1.16.3[${PYTHON_USEDEP}]
>=dev-python/paho-mqtt-1.4.0[${PYTHON_USEDEP}]
~dev-python/pillow-5.4.1[${PYTHON_USEDEP}]
>=dev-python/psutil-5.6.2[${PYTHON_USEDEP}]
>=dev-python/PyChromecast-3.2.2[${PYTHON_USEDEP}]
|| ( >=dev-python/pycryptodome-3.7.3[${PYTHON_USEDEP}] dev-python/pycrypto[${PYTHON_USEDEP}] )
>=dev-python/pyotp-2.2.7[${PYTHON_USEDEP}]
>=dev-python/pyqrcode-1.2.1[${PYTHON_USEDEP}]
~dev-python/pysnmp-4.4.9[${PYTHON_USEDEP}]
>=dev-python/python-dateutil-2.7.5[${PYTHON_USEDEP}]
>=dev-python/python-jose-cryptodome-1.3.2[${PYTHON_USEDEP}]
=dev-python/RestrictedPython-4.0_beta8[${PYTHON_USEDEP}]
~dev-python/setuptools-40.8.0[${PYTHON_USEDEP}]
~dev-python/sqlalchemy-1.3.3[${PYTHON_USEDEP}]
>=dev-python/typing-3.6.4-r1[${PYTHON_USEDEP}]
~dev-python/transitions-0.6.9[${PYTHON_USEDEP}]
~dev-python/tzlocal-1.5.1[${PYTHON_USEDEP}]
>=dev-python/ua-parser-0.8.0[${PYTHON_USEDEP}]
>=dev-python/urllib3-1.25.3[${PYTHON_USEDEP}]
>=dev-python/user-agents-2.0[${PYTHON_USEDEP}]
>=dev-python/vobject-0.9.6.1[${PYTHON_USEDEP}]
>=dev-python/wakeonlan-1.1.6[${PYTHON_USEDEP}]
=dev-python/warrant-0.6.1-r1[${PYTHON_USEDEP}]
>=dev-python/websockets-7.0[${PYTHON_USEDEP}]
>=dev-python/websocket-client-0.54.0[${PYTHON_USEDEP}]
~dev-python/xmltodict-0.12.0[${PYTHON_USEDEP}]
>=dev-python/yarl-1.3.0[${PYTHON_USEDEP}]
>=dev-python/zeroconf-0.23.0[${PYTHON_USEDEP}]
>=media-libs/mutagen-1.42.0
atv? ( >=dev-python/pyatv-0.3.12[${PYTHON_USEDEP}] )
androidtv? ( ~dev-python/androidtv-0.0.16[${PYTHON_USEDEP}] )
darksky? ( ~dev-python/python-forecastio-1.4.0[${PYTHON_USEDEP}] )
denonavr? ( ~dev-python/denonavr-0.7.9[${PYTHON_USEDEP}] )
esphome? ( ~dev-python/aioesphomeapi-2.2.0[${PYTHON_USEDEP}] )
enigma? ( ~dev-python/openwebifpy-3.1.1[${PYTHON_USEDEP}] )
hs100? ( >=dev-python/pyHS100-0.3.5[${PYTHON_USEDEP}] )
maxcube? ( ~dev-python/maxcube-api-0.1.0[${PYTHON_USEDEP}] )
miio? ( ~dev-python/python-miio-0.4.5[${PYTHON_USEDEP}] )
mikrotik? ( ~dev-python/librouteros-2.2.0[${PYTHON_USEDEP}] )
musiccast? ( >=dev-python/pymusiccast-0.1.6[${PYTHON_USEDEP}] )
mysql? ( dev-python/mysqlclient[${PYTHON_USEDEP}] )
mqtt? ( ~dev-python/hbmqtt-0.9.4[${PYTHON_USEDEP}]
app-misc/mosquitto )
rxv? ( =dev-python/rxv-0.6.0[${PYTHON_USEDEP}]
~dev-python/defusedxml-0.6.0[${PYTHON_USEDEP}] )
samsungtv? ( >=dev-python/samsungctl-0.7.1[${PYTHON_USEDEP}] )
sonos? ( >=dev-python/pysonos-0.0.16[${PYTHON_USEDEP}] )
ssl? ( dev-libs/openssl:0
app-crypt/certbot
net-proxy/haproxy )
tradfri? ( >=dev-python/pytradfri-6.0.1[${PYTHON_USEDEP}]
sys-devel/autoconf:2.69 )
frontend? ( =app-misc/home-assistant-frontend-20190626.0 )
homematic? ( ~dev-python/pyhomematic-0.1.59[${PYTHON_USEDEP}] )
asuswrt? ( ~dev-python/aioasuswrt-1.1.21[${PYTHON_USEDEP}] )
qnap? ( ~dev-python/qnapstats-0.3.0[${PYTHON_USEDEP}] )
speedtest? ( ~net-analyzer/speedtest-cli-2.1.1[${PYTHON_USEDEP}] )
vera? ( ~dev-python/pyvera-0.3.1[${PYTHON_USEDEP}] )
wemo? ( >=dev-python/pywemo-0.4.34[${PYTHON_USEDEP}] )
wink? ( ~dev-python/pubnubsub-handler-1.0.8[${PYTHON_USEDEP}] )
zoneminder? ( ~dev-python/zm-py-0.3.3[${PYTHON_USEDEP}] )
zigbee? ( ~dev-python/zigpy-deconz-0.1.6[${PYTHON_USEDEP}]
~dev-python/zigpy-homeassistant-0.6.1[${PYTHON_USEDEP}]
~dev-python/bellows-homeassistant-0.8.1[${PYTHON_USEDEP}] )
z-wave? ( ~dev-python/pynacl-1.3.0[${PYTHON_USEDEP}]
~dev-python/pydispatcher-2.0.5[${PYTHON_USEDEP}]
~dev-python/cffi-1.12.2[${PYTHON_USEDEP}] )
"
DEPEND="${RDEPEND}
test? (
~dev-python/asynctest-0.12.2[${PYTHON_USEDEP}]
~dev-python/coveralls-1.2.0[${PYTHON_USEDEP}]
~dev-python/flake8-docstrings-1.3.0[${PYTHON_USEDEP}]
~dev-python/flake8-3.7.5[${PYTHON_USEDEP}]
~dev-python/mock-open-1.3.1[${PYTHON_USEDEP}]
dev-python/mock[${PYTHON_USEDEP}]
~dev-python/mypy-0.660[${PYTHON_USEDEP}]
~dev-python/pydocstyle-3.0.0[${PYTHON_USEDEP}]
~dev-python/pylint-2.2.2[${PYTHON_USEDEP}]
~dev-python/pytest-aiohttp-0.3.0[${PYTHON_USEDEP}]
~dev-python/pytest-cov-2.6.1[${PYTHON_USEDEP}]
~dev-python/pytest-sugar-0.9.2[${PYTHON_USEDEP}]
~dev-python/pytest-timeout-1.3.3[${PYTHON_USEDEP}]
~dev-python/pytest-4.2.1[${PYTHON_USEDEP}]
~dev-python/requests-mock-1.5.2[${PYTHON_USEDEP}]
dev-python/nose[${PYTHON_USEDEP}]
dev-python/coverage[${PYTHON_USEDEP}]
)"
INSTALL_DIR="/opt/${PN}"
DISABLE_AUTOFORMATTING=1
DOC_CONTENTS="
The HA interface listens on port 8123
hass configuration is in: /etc/${PN}
daemon command line arguments are configured in: /etc/conf.d/${PN}
logging is to: /var/log/${PN}/{server,errors,stdout}.log
The sqlite db is by default in: /etc/${PN}
support at https://git.edevau.net/onkelbeh/HomeAssistantRepository
"
S="${WORKDIR}/home-assistant-${MY_PV}"
DOCS="README.rst"
pkg_setup() {
enewgroup "${PN}"
enewuser "${PN}" -1 -1 "$INSTALL_DIR" "${PN}"
}
src_prepare() {
sed -e 's;astral==1.5;astral>=1.5;' \
-i "setup.py" \
-i homeassistant/package_constraints.txt
eapply_user
}
python_install_all() {
dodoc ${DOCS}
distutils-r1_python_install_all
keepdir "$INSTALL_DIR"
keepdir "/etc/${PN}"
fowners -R "${PN}:${PN}" "/etc/${PN}"
keepdir "/var/log/${PN}"
fowners -R "${PN}:${PN}" "/var/log/${PN}"
newconfd "${FILESDIR}/${PN}.conf.d" "${PN}"
newinitd "${FILESDIR}/${PN}.init.d" "${PN}"
insinto /etc/logrotate.d
newins "${FILESDIR}/${PN}.logrotate" "${PN}"
readme.gentoo_create_doc
}
pkg_postinst() {
readme.gentoo_print_elog
}

View File

@@ -18,10 +18,11 @@ RESTRICT="mirror"
LICENSE=""
SLOT="0"
KEYWORDS="amd64"
IUSE="androidtv asuswrt atv darksky denonavr esphome enigma +frontend homematic hs100 maxcube miio mikrotik musiccast mysql mqtt qnap rxv samsungtv sonos ssl speedtest test tradfri vera wemo wink zoneminder zigbee z-wave"
IUSE="androidtv asuswrt atv darksky denonavr enigma esphome fronius +frontend growl homematic hs100 maxcube miio mikrotik mqtt musiccast +mysql qnap rxv samsungtv sma sonos speedtest ssl test tradfri vera wemo wink wwlln zigbee zoneminder z-wave"
RDEPEND="${PYTHON_DEPS}
!app-misc/homeassistant-bin
app-admin/logrotate
dev-db/sqlite
dev-libs/libfastjson
@@ -31,42 +32,32 @@ RDEPEND="${PYTHON_DEPS}
~dev-python/astral-1.10.1[${PYTHON_USEDEP}]
~dev-python/async_timeout-3.0.1[${PYTHON_USEDEP}]
~dev-python/attrs-19.1.0[${PYTHON_USEDEP}]
~dev-python/bcrypt-3.1.6[${PYTHON_USEDEP}]
~dev-python/bcrypt-3.1.7[${PYTHON_USEDEP}]
>=dev-python/certifi-2019.6.16[${PYTHON_USEDEP}]
~dev-python/importlib-metadata-0.15[${PYTHON_USEDEP}]
~dev-python/cryptography-2.7[${PYTHON_USEDEP}]
~dev-python/importlib-metadata-0.18[${PYTHON_USEDEP}]
>=dev-python/jinja-2.10[${PYTHON_USEDEP}]
~dev-python/pyjwt-1.7.1[${PYTHON_USEDEP}]
~dev-python/cryptography-2.6.1[${PYTHON_USEDEP}]
~dev-python/passlib-1.7.1-r1[${PYTHON_USEDEP}]
>=dev-python/pip-8.0.3-r1[${PYTHON_USEDEP}]
~dev-python/pyjwt-1.7.1[${PYTHON_USEDEP}]
~dev-python/python-slugify-3.0.2[${PYTHON_USEDEP}]
>=dev-python/pytz-2019.1[${PYTHON_USEDEP}]
~dev-python/pyyaml-5.1[${PYTHON_USEDEP}]
~dev-python/pyyaml-5.1.1[${PYTHON_USEDEP}]
=dev-python/requests-2.22.0[${PYTHON_USEDEP}]
~dev-python/ruamel-yaml-0.15.97[${PYTHON_USEDEP}]
~dev-python/voluptuous-0.11.5[${PYTHON_USEDEP}]
~dev-python/voluptuous-serialize-2.1.0[${PYTHON_USEDEP}]
>=app-crypt/acme-0.32.0[${PYTHON_USEDEP}]
>=dev-python/asn1crypto-0.24.0[${PYTHON_USEDEP}]
~dev-python/cffi-1.12.2[${PYTHON_USEDEP}]
>=dev-python/jmespath-0.9.4[${PYTHON_USEDEP}]
>=dev-python/pycparser-2.19[${PYTHON_USEDEP}]
>=dev-python/pyopenssl-19.0.0[${PYTHON_USEDEP}]
>=dev-python/python-dateutil-2.8.0[${PYTHON_USEDEP}]
>=dev-python/pbr-5.1.3[${PYTHON_USEDEP}]
>=dev-python/requests-toolbelt-0.9.1[${PYTHON_USEDEP}]
>=dev-python/six-1.12.0[${PYTHON_USEDEP}]
>=dev-python/pyrfc3339-1.1[${PYTHON_USEDEP}]
~dev-python/hass-nabucasa-0.15[${PYTHON_USEDEP}]
>=dev-python/aiohttp-cors-0.7.0[${PYTHON_USEDEP}]
>=dev-python/asn1crypto-0.24.0[${PYTHON_USEDEP}]
~dev-python/beautifulsoup-4.7.1[${PYTHON_USEDEP}]
~dev-python/blinkpy-0.14.1[${PYTHON_USEDEP}]
>=dev-python/boto3-1.9.16[${PYTHON_USEDEP}]
>=dev-python/botocore-1.12.115[${PYTHON_USEDEP}]
~dev-python/caldav-0.6.1[${PYTHON_USEDEP}]
>=dev-python/cdu-0.1.3[${PYTHON_USEDEP}]
~dev-python/cffi-1.12.2[${PYTHON_USEDEP}]
>=dev-python/chardet-3.0.4[${PYTHON_USEDEP}]
~dev-python/colorlog-4.0.2[${PYTHON_USEDEP}]
>=dev-python/coverage-4.5.2[${PYTHON_USEDEP}]
@@ -77,9 +68,11 @@ RDEPEND="${PYTHON_DEPS}
>=dev-python/envs-1.3[${PYTHON_USEDEP}]
>=dev-python/future-0.17.1[${PYTHON_USEDEP}]
~dev-python/gTTS-token-1.1.3[${PYTHON_USEDEP}]
~dev-python/hass-nabucasa-0.15[${PYTHON_USEDEP}]
>=dev-python/idna-2.8[${PYTHON_USEDEP}]
>=dev-python/idna-ssl-1.1.0[${PYTHON_USEDEP}]
>=dev-python/ifaddr-0.1.6[${PYTHON_USEDEP}]
>=dev-python/jmespath-0.9.4[${PYTHON_USEDEP}]
>=dev-python/jose-1.0.0[${PYTHON_USEDEP}]
>=dev-python/jsonrpc-async-0.6[${PYTHON_USEDEP}]
~dev-python/jsonrpc-base-1.0[${PYTHON_USEDEP}]
@@ -88,22 +81,30 @@ RDEPEND="${PYTHON_DEPS}
>=dev-python/multidict-4.5.2[${PYTHON_USEDEP}]
>=dev-python/netdisco-2.6.0[${PYTHON_USEDEP}]
>=dev-python/nose-1.3.7[${PYTHON_USEDEP}]
>=dev-python/numpy-1.16.3[${PYTHON_USEDEP}]
>=dev-python/numpy-1.16.4[${PYTHON_USEDEP}]
>=dev-python/paho-mqtt-1.4.0[${PYTHON_USEDEP}]
>=dev-python/pbr-5.1.3[${PYTHON_USEDEP}]
~dev-python/pillow-5.4.1[${PYTHON_USEDEP}]
>=dev-python/psutil-5.6.2[${PYTHON_USEDEP}]
>=dev-python/psutil-5.6.3[${PYTHON_USEDEP}]
>=dev-python/PyChromecast-3.2.2[${PYTHON_USEDEP}]
>=dev-python/pycparser-2.19[${PYTHON_USEDEP}]
|| ( >=dev-python/pycryptodome-3.7.3[${PYTHON_USEDEP}] dev-python/pycrypto[${PYTHON_USEDEP}] )
~dev-python/pyhaversion-3.0.2[${PYTHON_USEDEP}]
>=dev-python/pyopenssl-19.0.0[${PYTHON_USEDEP}]
>=dev-python/pyotp-2.2.7[${PYTHON_USEDEP}]
>=dev-python/pyqrcode-1.2.1[${PYTHON_USEDEP}]
>=dev-python/pyrfc3339-1.1[${PYTHON_USEDEP}]
~dev-python/pysnmp-4.4.9[${PYTHON_USEDEP}]
>=dev-python/python-dateutil-2.7.5[${PYTHON_USEDEP}]
>=dev-python/python-dateutil-2.8.0[${PYTHON_USEDEP}]
>=dev-python/python-jose-cryptodome-1.3.2[${PYTHON_USEDEP}]
>=dev-python/requests-toolbelt-0.9.1[${PYTHON_USEDEP}]
=dev-python/RestrictedPython-4.0_beta8[${PYTHON_USEDEP}]
~dev-python/setuptools-40.8.0[${PYTHON_USEDEP}]
~dev-python/sqlalchemy-1.3.3[${PYTHON_USEDEP}]
>=dev-python/typing-3.6.4-r1[${PYTHON_USEDEP}]
>=dev-python/six-1.12.0[${PYTHON_USEDEP}]
~dev-python/sqlalchemy-1.3.5[${PYTHON_USEDEP}]
~dev-python/transitions-0.6.9[${PYTHON_USEDEP}]
>=dev-python/typing-3.6.4-r1[${PYTHON_USEDEP}]
~dev-python/tzlocal-1.5.1[${PYTHON_USEDEP}]
>=dev-python/ua-parser-0.8.0[${PYTHON_USEDEP}]
>=dev-python/urllib3-1.25.3[${PYTHON_USEDEP}]
@@ -111,49 +112,56 @@ RDEPEND="${PYTHON_DEPS}
>=dev-python/vobject-0.9.6.1[${PYTHON_USEDEP}]
>=dev-python/wakeonlan-1.1.6[${PYTHON_USEDEP}]
=dev-python/warrant-0.6.1-r1[${PYTHON_USEDEP}]
>=dev-python/websockets-7.0[${PYTHON_USEDEP}]
>=dev-python/websocket-client-0.54.0[${PYTHON_USEDEP}]
>=dev-python/websockets-7.0[${PYTHON_USEDEP}]
~dev-python/xmltodict-0.12.0[${PYTHON_USEDEP}]
>=dev-python/yarl-1.3.0[${PYTHON_USEDEP}]
>=dev-python/zeroconf-0.23.0[${PYTHON_USEDEP}]
>=media-libs/mutagen-1.42.0
androidtv? ( ~dev-python/androidtv-0.0.18[${PYTHON_USEDEP}] )
asuswrt? ( ~dev-python/aioasuswrt-1.1.21[${PYTHON_USEDEP}] )
atv? ( >=dev-python/pyatv-0.3.12[${PYTHON_USEDEP}] )
androidtv? ( ~dev-python/androidtv-0.0.16[${PYTHON_USEDEP}] )
darksky? ( ~dev-python/python-forecastio-1.4.0[${PYTHON_USEDEP}] )
denonavr? ( ~dev-python/denonavr-0.7.9[${PYTHON_USEDEP}] )
esphome? ( ~dev-python/aioesphomeapi-2.2.0[${PYTHON_USEDEP}] )
enigma? ( ~dev-python/openwebifpy-3.1.1[${PYTHON_USEDEP}] )
esphome? ( ~dev-python/aioesphomeapi-2.2.0[${PYTHON_USEDEP}] )
fronius? ( ~dev-python/PyFronius-0.4.6 )
frontend? ( =app-misc/home-assistant-frontend-20190719.0 )
growl? ( ~dev-python/gntp-1.0.3[${PYTHON_USEDEP}] )
homematic? ( ~dev-python/pyhomematic-0.1.60[${PYTHON_USEDEP}] )
hs100? ( >=dev-python/pyHS100-0.3.5[${PYTHON_USEDEP}] )
maxcube? ( ~dev-python/maxcube-api-0.1.0[${PYTHON_USEDEP}] )
miio? ( ~dev-python/python-miio-0.4.5[${PYTHON_USEDEP}] )
mikrotik? ( ~dev-python/librouteros-2.2.0[${PYTHON_USEDEP}] )
musiccast? ( >=dev-python/pymusiccast-0.1.6[${PYTHON_USEDEP}] )
mysql? ( dev-python/mysqlclient[${PYTHON_USEDEP}] )
mqtt? ( ~dev-python/hbmqtt-0.9.4[${PYTHON_USEDEP}]
app-misc/mosquitto )
musiccast? ( >=dev-python/pymusiccast-0.1.6[${PYTHON_USEDEP}] )
mysql? ( || ( dev-python/mysqlclient[${PYTHON_USEDEP}]
dev-python/mysql-python[${PYTHON_USEDEP}] ) )
qnap? ( ~dev-python/qnapstats-0.3.0[${PYTHON_USEDEP}] )
rxv? ( =dev-python/rxv-0.6.0[${PYTHON_USEDEP}]
~dev-python/defusedxml-0.6.0[${PYTHON_USEDEP}] )
samsungtv? ( >=dev-python/samsungctl-0.7.1[${PYTHON_USEDEP}] )
sonos? ( >=dev-python/pysonos-0.0.16[${PYTHON_USEDEP}] )
sma? ( ~dev-python/pysma-0.3.2[${PYTHON_USEDEP}] )
sonos? ( >=dev-python/pysonos-0.0.21[${PYTHON_USEDEP}] )
speedtest? ( ~net-analyzer/speedtest-cli-2.1.1[${PYTHON_USEDEP}] )
ssl? ( dev-libs/openssl:0
app-crypt/certbot
net-proxy/haproxy )
tradfri? ( >=dev-python/pytradfri-6.0.1[${PYTHON_USEDEP}]
sys-devel/autoconf:2.69 )
frontend? ( =app-misc/home-assistant-frontend-20190626.0 )
homematic? ( ~dev-python/pyhomematic-0.1.59[${PYTHON_USEDEP}] )
asuswrt? ( ~dev-python/aioasuswrt-1.1.21[${PYTHON_USEDEP}] )
qnap? ( ~dev-python/qnapstats-0.3.0[${PYTHON_USEDEP}] )
speedtest? ( ~net-analyzer/speedtest-cli-2.1.1[${PYTHON_USEDEP}] )
vera? ( ~dev-python/pyvera-0.3.1[${PYTHON_USEDEP}] )
vera? ( ~dev-python/pyvera-0.3.2[${PYTHON_USEDEP}] )
wemo? ( >=dev-python/pywemo-0.4.34[${PYTHON_USEDEP}] )
wink? ( ~dev-python/pubnubsub-handler-1.0.8[${PYTHON_USEDEP}] )
zoneminder? ( ~dev-python/zm-py-0.3.3[${PYTHON_USEDEP}] )
zigbee? ( ~dev-python/zigpy-deconz-0.1.6[${PYTHON_USEDEP}]
wwlln? ( ~dev-python/aiowwlln-1.0.0[${PYTHON_USEDEP}] )
zigbee? ( ~dev-python/zigpy-deconz-0.2.1[${PYTHON_USEDEP}]
~dev-python/zigpy-homeassistant-0.6.1[${PYTHON_USEDEP}]
~dev-python/bellows-homeassistant-0.8.1[${PYTHON_USEDEP}]
~dev-python/zha-quirks-0.0.17[${PYTHON_USEDEP}] )
~dev-python/zha-quirks-0.0.18[${PYTHON_USEDEP}] )
zoneminder? ( ~dev-python/zm-py-0.3.3[${PYTHON_USEDEP}] )
z-wave? ( ~dev-python/pynacl-1.3.0[${PYTHON_USEDEP}]
~dev-python/homeassistant-pyozw-0.1.4[${PYTHON_USEDEP}]
~dev-python/pydispatcher-2.0.5[${PYTHON_USEDEP}]
~dev-python/cffi-1.12.2[${PYTHON_USEDEP}] )
"

View File

@@ -1,3 +0,0 @@
DIST Jinja2-2.10.1.tar.gz 260956 BLAKE2B f24b04ac12c8123e7e012d1f1624ba5df058c5c2be1f1d40b8080055fd4b437c6dd18cb82c9c35e929ca4a06a1ea63a4f5aa38c634fe2b657d1ab06862525259 SHA512 a00153a0e07bb7d67f301b4eaf7af657726a1985e9ffc7ae2d76bdbb4c062d672efc8065e398767e1039b18a483a0092e206deac91e4047aad64920b56869623
EBUILD Jinja2-2.10.1.ebuild 740 BLAKE2B 783219a712113456e3761ced76d92dba8aeb4394c1fc0126080a6b4daa8797a267d3769f58aaf11505f21f7b5ada0da3926044e892b79c56525186216319a372 SHA512 7d9b36bca8ae05703c3f2d0c5cdf7ded981f7ff03a84aa026f77102904556d844918d136c04f9b038a2f5f8f7b59e1c227b588056e52e2639868541e23650410
MISC metadata.xml 467 BLAKE2B 52b798a95821ef5d4bcb278dafd014e441b5868c3bf736a11992332597fd62a6f73f75714bb01acd3f569097170ac6ceb05b4d83b500bdc1aa97eaedfbb8f706 SHA512 d804ccee7d4e5431732c52ab34adc519a9f7760b4957b5fc3c7a976e44822347b207f1af8c2ffb6524b8247d3e453aed31428104f129e48d4ae1e3886f292594

View File

@@ -0,0 +1,3 @@
DIST convertdate-2.1.3.tar.gz 28903 BLAKE2B 017b6dbcf742bc47172dc5a002d47209007cb2bafc5b42f6e3f06edf400459691add55d10b79cdbea98c710c03586ffaeb1974c76ad82b296dd12db5165691df SHA512 0bac4d4b09d3de6f15e03516340fcb422511066ff04b7183fc6063cae6f3f0f1f210a99c8856ffca1fba82615d92fecf98bab22df86ddf792df0d12633e44ef8
EBUILD convertdate-2.1.3.ebuild 948 BLAKE2B 7c2ad1728449bdc63d56ef518fa3f6e0699845c9108ad871dde5caa7461998fbaea385053c84e219731afaa61e57c1b3ad5b67b89bd76abf66e1d319dc1b5d55 SHA512 a65d1ee966bd484fdbe63cc2d86571bb74ee2f2481f13543a16cceccb6e2f18e194a99683b110227c89855275994d90e0a1e4a269a92a33d76968efb4f444580
MISC metadata.xml 471 BLAKE2B 02c584efea187d44f70e5fea7df26db34fb0bb4e36a408ccfb527d1903a0b75c066f8a2772b9123893f4a959044b77b502f5711945b3f7940b7a057c339fb6a1 SHA512 97b3276707fd002100974231614bf7181bc7698b459f4586cd179851adf67ebd7eb39dec03545fd8fde338672f2276799e79671a207b8b75185ffe09d5537a1e

View File

@@ -0,0 +1,33 @@
# Copyright 1999-2019 Gentoo Authors Andreas Billmeier b (at) edevau.net
# Distributed under the terms of the GNU General Public License v3.0
EAPI="7"
PYTHON_COMPAT=( python3_{5,6,7} )
inherit distutils-r1
DESCRIPTION="Converts between Gregorian dates and other calendar systems.Calendars included: Baha'i, French Republican, Hebrew, Indian Civil, Islamic, ISO, Julian, Mayan and Persian."
HOMEPAGE="https://github.com/fitnr/convertdate https://pypi.org/project/convertdate/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=">=dev-python/ephem-3.7.5.3
<dev-python/ephem-3.8
>=dev-python/pytz-2014.10
<dev-python/pytz-2020"
DEPEND="${REDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}

View File

@@ -0,0 +1,16 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<herd>python</herd>
<upstream>
<remote-id type="pypi">convertdate</remote-id>
<maintainer status="unknown">
<email>contact@fakeisthenewreal.org</email>
<name>Neil Freeman</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,3 @@
DIST dateparser-0.7.1.tar.gz 309095 BLAKE2B 91828f915e58d2fd6c212d4d7d55ed3c0df9c2bf1dc1f423d3550cd18c406d319c01078cfb26748513fa8e05486265e1fd1fc684e46905e6b42cc3f49b976323 SHA512 afe5be78e156defbd8b8a917afd9b89909c46b9b680e1c300a8e50cfaea84b481ede5eb96185a9ad25ef48066a4b749612d2bcba48b505760ac9ae631d02b1ad
EBUILD dateparser-0.7.1.ebuild 911 BLAKE2B 82f7dc3356f75089adcd493be4e0ed3460abc39a7b9fc9ce0cd57bc6da3030b493470148583d8f2928653569a1cce57cf165df9d75fdbc0532a56eee3a5681c2 SHA512 2f4f4dd003fa9ab64bee270168112b95f505e9e96598d974498410981323e7a6d6d601f3fdd66e9b88de2bd9ad16d32e783adadf448a06527010e338cc69a311
MISC metadata.xml 461 BLAKE2B deb5ccf31fd2fbf74045429e6421ca8335230ef726cda33b7b289698f2ab523987daf717dd2b1f7ee0019ad4c8eb960a266e44779379f8ed44a8b9c30edea0d7 SHA512 b0762fe65c834a263d2c48a1efac96fb6a3efc016123f306e75cda090f99d2f8c2e422b18cfa10f2ce2bde0f2b3d12fc470dc2662f9c1009ad256a3a7c39e78b

View File

@@ -0,0 +1,36 @@
# Copyright 1999-2019 Gentoo Authors Andreas Billmeier b (at) edevau.net
# Distributed under the terms of the GNU General Public License v3.0
EAPI="7"
PYTHON_COMPAT=( python3_{5,6,7} )
inherit distutils-r1
DESCRIPTION="Date parsing library designed to parse dates from HTML pages"
HOMEPAGE="https://github.com/scrapinghub/dateparser https://pypi.org/project/dateparser/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND="dev-python/convertdate
dev-python/jdatetime
dev-python/python-dateutil
dev-python/pytz
dev-python/regex
dev-python/tzlocal"
DEPEND="${REDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
dev-python/wheel[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}

View File

@@ -7,10 +7,10 @@
</maintainer>
<herd>python</herd>
<upstream>
<remote-id type="pypi">Jinja2</remote-id>
<remote-id type="pypi">dateparser</remote-id>
<maintainer status="unknown">
<email>armin.ronacher@active-4.com</email>
<name>Armin Ronacher</name>
<email>info@scrapinghub.com</email>
<name>Scrapinghub</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,5 @@
DIST ephem-3.7.5.3.tar.gz 735066 BLAKE2B a9c5202185956cf2f66cfc0ec58e8b17dbdb5c96893c66f8cd4b3ebbf7d6716f54960477632d79309c60c7afafc0723dae33f4b502485c563579739bb219e434 SHA512 70002c35dcc14710725895516f9e6dccb0ecfb43c9132ec028f3599773c5b8d5ae64259620ba7227aee1d32a1f70dbed968c06212c8afb9f80a3f9b5c9687352
DIST ephem-3.7.6.0.tar.gz 739442 BLAKE2B 891434388c1d7beab53b68b4048681596e7df037812b47789bb7640a8cc70bf8b677cd00684cbf65fd4162d4b8e70538cf295d60fe7e38cf785bf8414a38b46f SHA512 64f1ac2529782d5d50668d17aa2af4810e42db29e4dc55354dd6167c4ce052ffcd0b02f6bb06c1557c4ff6da1180131cfc0dfa53a97ff34aaa488fe58e4b41a3
EBUILD ephem-3.7.5.3.ebuild 705 BLAKE2B 773d6523c046f5097fa30954983eac99cb028ac7d053eaa4449969cfa12852a356bbf5cad15f795e2e0e605a05870bfde796e8a4ca0c403004e550f1d6e3bbd9 SHA512 9735bee0356242e4bd003678555c53cd16a2b29b0a3a9077b7c42132b66ca218503c5cdbfcf43fa40916034b4146544585a4928138c4d4066bb4d63f73c483af
EBUILD ephem-3.7.6.0.ebuild 705 BLAKE2B 773d6523c046f5097fa30954983eac99cb028ac7d053eaa4449969cfa12852a356bbf5cad15f795e2e0e605a05870bfde796e8a4ca0c403004e550f1d6e3bbd9 SHA512 9735bee0356242e4bd003678555c53cd16a2b29b0a3a9077b7c42132b66ca218503c5cdbfcf43fa40916034b4146544585a4928138c4d4066bb4d63f73c483af
MISC metadata.xml 461 BLAKE2B 0024190a9b23f4fc1e286e927740f1dbc80f12f14399ba3d9ff60c034dca81c1b95f4954681bedb4bf1c261e05754d10d505c47d1afe28dbd2d096b943645a8c SHA512 82d3e216642da3b7effea745be43d2f18524f537274b03fb903ccf6a457493ff6fee3dcc968dc23edfde3742bd1c43d00f7bb71642369502526aa8a7a0119568

View File

@@ -7,11 +7,11 @@ PYTHON_COMPAT=( python3_{5,6,7} )
inherit distutils-r1
DESCRIPTION=""
HOMEPAGE="https://github.com/ludeeus/pyhaversion https://pypi.org/project/pyhaversion/"
DESCRIPTION="Compute positions of the planets and stars"
HOMEPAGE="http://rhodesmill.org/pyephem/ https://pypi.org/project/ephem/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE=""
LICENSE="LGPL"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"

View File

@@ -7,11 +7,11 @@ PYTHON_COMPAT=( python3_{5,6,7} )
inherit distutils-r1
DESCRIPTION="A small but fast and easy to use stand-alone template engine written in pure python."
HOMEPAGE="http://jinja.pocoo.org/ https://pypi.org/project/Jinja2/"
DESCRIPTION="Compute positions of the planets and stars"
HOMEPAGE="http://rhodesmill.org/pyephem/ https://pypi.org/project/ephem/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="BSD"
LICENSE="LGPL"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"

View File

@@ -0,0 +1,16 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<herd>python</herd>
<upstream>
<remote-id type="pypi">ephem</remote-id>
<maintainer status="unknown">
<email>brandon@rhodesmill.org</email>
<name>Brandon Rhodes</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,5 @@
DIST jdatetime-3.1.0.tar.gz 10504 BLAKE2B 22e1a22301dd71961c7bc7acaec810d0b3bfe7ca1b012bbe542cbc2c3dd4768aad6e8c7a2e45cf8efd22f38fa31a3aa57d9a6bb941b82ea50fc1ca5eea29d451 SHA512 6b038a90599117cb529db0051c228dcc4dfb6f26d2537864334cb77da90dee6c2adb0231e33d568a58a2d68e3d2e252f0e4897f34b1bb46132f199250c7fa057
DIST jdatetime-3.4.0.tar.gz 10910 BLAKE2B 604b7d8e37cdd483bf66f902d9473db70af10cea10d89d3999d056ab8dc07b7e9e1809306d2e532ae9885e2903dc908bc9c83878892e86191301096a78889dc8 SHA512 a4f2ddb0ce794fba46b49caaa7082768ce0ec29494725ee4b84882cb757f3c63fafe4626f4aba2088fabdded631d07a02096eeee3659f002bec17334288c1658
EBUILD jdatetime-3.1.0.ebuild 743 BLAKE2B 4ebfc096c056665d8934dc5868d7d4bc4a5bcf4c72db2194559f6ef0b6adcf3515d17608a6af6b7df9e01f8bada1afa4814612cf85d2ddcaad7429077f1c3884 SHA512 5e05539bd833afaca634ecca3c5a78ae7e7e88c609b86d817c4e3d567df79aec275d11249b03357e78c0ef8b3d8f6ea6d7df5d07c0e3fc6ccb9faf3a41be32ea
EBUILD jdatetime-3.4.0.ebuild 743 BLAKE2B 4ebfc096c056665d8934dc5868d7d4bc4a5bcf4c72db2194559f6ef0b6adcf3515d17608a6af6b7df9e01f8bada1afa4814612cf85d2ddcaad7429077f1c3884 SHA512 5e05539bd833afaca634ecca3c5a78ae7e7e88c609b86d817c4e3d567df79aec275d11249b03357e78c0ef8b3d8f6ea6d7df5d07c0e3fc6ccb9faf3a41be32ea
MISC metadata.xml 515 BLAKE2B e8f57e50cabe72c7913b95d903f9002403922cb6af056957494c5a85fa8504e7d9574dea76ea1ef5b50d2246a83c97a52acb01fbafc5baf21ac60da6ec51fadb SHA512 2530adedc6d780a54b25034bca4fd959f78282bddbbe2d9c949b460c700d6163041d7716a42270ab3671c60e2a8cca1edd1b9a31732a1ffcec415133032a20cc

View File

@@ -0,0 +1,30 @@
# Copyright 1999-2019 Gentoo Authors Andreas Billmeier b (at) edevau.net
# Distributed under the terms of the GNU General Public License v3.0
EAPI="7"
PYTHON_COMPAT=( python3_{5,6,7} )
inherit distutils-r1
DESCRIPTION="Jalali datetime binding for python"
HOMEPAGE="https://github.com/slashmili/python-jalali https://pypi.org/project/jdatetime/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="Python Software Foundation License"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=""
DEPEND="${REDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}

View File

@@ -0,0 +1,30 @@
# Copyright 1999-2019 Gentoo Authors Andreas Billmeier b (at) edevau.net
# Distributed under the terms of the GNU General Public License v3.0
EAPI="7"
PYTHON_COMPAT=( python3_{5,6,7} )
inherit distutils-r1
DESCRIPTION="Jalali datetime binding for python"
HOMEPAGE="https://github.com/slashmili/python-jalali https://pypi.org/project/jdatetime/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="Python Software Foundation License"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=""
DEPEND="${REDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}

View File

@@ -0,0 +1,17 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<herd>python</herd>
<upstream>
<remote-id type="pypi">jdatetime</remote-id>
<docs>https://pythonhosted.org/jdatetime/</docs>
<maintainer status="unknown">
<email>eslashmili@gmail.com</email>
<name>Milad Rastian</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,3 @@
DIST jsonpath-rw-1.4.0.tar.gz 13814 BLAKE2B 96c17df53db15ea06b8d33231a5349e00d85eb92c9c1da784ee8b1773f1a12791f8dc2a6dc7ec67fde0c8c3cfec0a8fc08e77ff08eeebe4ef699d6d4bdda9276 SHA512 5fcbd832975a32d375fd400ebfb84f083c0e7d8780cc63df730a75cca0224bf32d72cb793fcac63fc3afa9697199d7a569af29961da95494253996cc6e5f63b7
EBUILD jsonpath-rw-1.4.0.ebuild 916 BLAKE2B d9e8aceccfc30b5ffb41f8e915320c664ca53accfaffbdc51158fc816e86444fdc27bba032bf4a39fac737a8c0ffbff269674d8b6c74d80208be8688d121b643 SHA512 25cdbc54597f9bb1ffa3faf190db5c6b9dbbfacd509aac257b81d39b83f71ba2983b5874ec19a588c52d1e9640e0b94436b0d4cb4f58f57c22d68a7ea6774036
MISC metadata.xml 468 BLAKE2B 38e20b2c5d1a051b8c0f375a66ddb52341e42f955b8cafbd099721f4239510c5a7a2a80a2c0f8d2a3c9081ef427d6871dd0c3bf48bce370677e75c20d70cb560 SHA512 a22a76c9e48669bba9914287723df6c14065c252ee8b70bbf23d7bee5e88ba9f25dc8b15c8f6979923ade6c83764df45ed559650b91720a09150897507dc11d2

View File

@@ -0,0 +1,32 @@
# Copyright 1999-2019 Gentoo Authors Andreas Billmeier b (at) edevau.net
# Distributed under the terms of the GNU General Public License v3.0
EAPI="7"
PYTHON_COMPAT=( python3_{5,6,7} )
inherit distutils-r1
DESCRIPTION="A robust and significantly extended implementation of JSONPath for Python, with a clear AST for metaprogramming."
HOMEPAGE="https://github.com/kennknowles/python-jsonpath-rw https://pypi.org/project/jsonpath-rw/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache 2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND="dev-python/decorator[${PYTHON_USEDEP}]
dev-python/ply[${PYTHON_USEDEP}]
dev-python/six[${PYTHON_USEDEP}]"
DEPEND="${REDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}

View File

@@ -0,0 +1,16 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<herd>python</herd>
<upstream>
<remote-id type="pypi">jsonpath-rw</remote-id>
<maintainer status="unknown">
<email>kenn.knowles@gmail.com</email>
<name>Kenneth Knowles</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@@ -1,9 +1,7 @@
DIST pyhaversion-2.0.3.tar.gz 2780 BLAKE2B 8ac94264bd2e050a42aeb0be465bdfb2fc9ca3eaafdf9452072e8f1d5df1530291dbaf5e4492c35c67de9f39491e71ad16126d4b995493ba4ddb8e63bbf399ff SHA512 7508360ff0fcc0d29a358d9a666869f295ef4efe84d01a5f95e096dda0af909c5e89c80ad34a9c90260b3cacdf05c700b2eb4f1e1c888c848bfb548fccb8e241
DIST pyhaversion-2.2.0.tar.gz 3242 BLAKE2B 614ba2fa8d3a4197437e71f206988b9664033200b85cf8cc8dd8431c1875eb112ace954d11f81365225089e89deeb42decc40b69bd01b59f339c13cddbaa4af1 SHA512 d285b137cb22f6e76086c1a6e72d36ff3024fd1f004e42c789e3bb5d84ec78c933803c2818c68d53836f6b7f0ea230267012b92c27aeb47190b2fcec1f170282
DIST pyhaversion-2.2.1.tar.gz 3269 BLAKE2B 75f335d9768c4ccc4bbd0cf94aeb523fded5ae4a0f6181bf44c361981c1d3b19a40d6868f1cd7965c5e7297e9e7b21d449ded3a6dd766a8761c2a9851ce5f72b SHA512 85a597573b08d668c80728114f015808bb5292755e3ef3c1cb185e1ef91c993bc4fa985d7cfcc600b732bba78665abdc7255ede00b87b80870f0f515363a5f3f
DIST pyhaversion-3.0.2.tar.gz 4588 BLAKE2B 814e199640a3c00e0e9a9f0d5de9043112147006868f8824d07551d44b9fc679fc8ce3e40aa9a6638808e3d04dea35ee075e18d7c18828785c91515a876f8d99 SHA512 a670e2ad20c305046901c6792ae2e1d1c73c3464f94e657a69059674c0f381d395dbda079c041dc665f46b2cb157b3ec9feaba1c69400c885c1463262b5b109e
EBUILD pyhaversion-2.0.3.ebuild 673 BLAKE2B b1b6ea9cfb16a3ce115f573cdfd977a172f1d7ba584d218adcfc778e8366d8b10121a13dbf306ffb3297337c66b23b805935b90d83e436c1ba49f45424acce4d SHA512 945560e5abf9bfdfc5e140593d2e2410fb0ce73b2903bd8e60816dd4ba0e6e8ca60cd5fa7991826842e0a45c9e651798e11258ff586fe1b15a76fc4fa5f18b36
EBUILD pyhaversion-2.2.0.ebuild 673 BLAKE2B b1b6ea9cfb16a3ce115f573cdfd977a172f1d7ba584d218adcfc778e8366d8b10121a13dbf306ffb3297337c66b23b805935b90d83e436c1ba49f45424acce4d SHA512 945560e5abf9bfdfc5e140593d2e2410fb0ce73b2903bd8e60816dd4ba0e6e8ca60cd5fa7991826842e0a45c9e651798e11258ff586fe1b15a76fc4fa5f18b36
EBUILD pyhaversion-2.2.1.ebuild 673 BLAKE2B b1b6ea9cfb16a3ce115f573cdfd977a172f1d7ba584d218adcfc778e8366d8b10121a13dbf306ffb3297337c66b23b805935b90d83e436c1ba49f45424acce4d SHA512 945560e5abf9bfdfc5e140593d2e2410fb0ce73b2903bd8e60816dd4ba0e6e8ca60cd5fa7991826842e0a45c9e651798e11258ff586fe1b15a76fc4fa5f18b36
EBUILD pyhaversion-3.0.2.ebuild 673 BLAKE2B b1b6ea9cfb16a3ce115f573cdfd977a172f1d7ba584d218adcfc778e8366d8b10121a13dbf306ffb3297337c66b23b805935b90d83e436c1ba49f45424acce4d SHA512 945560e5abf9bfdfc5e140593d2e2410fb0ce73b2903bd8e60816dd4ba0e6e8ca60cd5fa7991826842e0a45c9e651798e11258ff586fe1b15a76fc4fa5f18b36
EBUILD pyhaversion-2.2.0.ebuild 902 BLAKE2B df34109c47a729276fb8b0aded89ee8cc47eb2fa51a97d6cabae2bbbac1abe9ef0386f5be0dea6418c364372eccbce383c4077f77c9ea97fd3cc53b31a654910 SHA512 3aa6146a5bca3f73bb53daaa92ac2e097973d6ec88250b778dab3aef7d2a7d8be2fee6b5578ad0564696a22c7487be8b039d7b7705a44b38fdfd07beab8b084c
EBUILD pyhaversion-2.2.1.ebuild 903 BLAKE2B 82498b4b760135b6e2c693f6788af74da8a3a3d050ad5fa80c7146bacba15d1e05adbafcc657c683facf3c5d2f4d4ce8e7f90c59622a569994faebd50ae2f877 SHA512 b4b12fa9ffaf4f6e324248fd5d24d385c6765717c41ebf27a1be19e3b79c6758f42851cf29281b93a3c336064bf269f53eeea1a20652d3df1044e3559b524854
EBUILD pyhaversion-3.0.2.ebuild 902 BLAKE2B df34109c47a729276fb8b0aded89ee8cc47eb2fa51a97d6cabae2bbbac1abe9ef0386f5be0dea6418c364372eccbce383c4077f77c9ea97fd3cc53b31a654910 SHA512 3aa6146a5bca3f73bb53daaa92ac2e097973d6ec88250b778dab3aef7d2a7d8be2fee6b5578ad0564696a22c7487be8b039d7b7705a44b38fdfd07beab8b084c
MISC metadata.xml 463 BLAKE2B c6f494b47060fe40e723c1c45182860a5b5701a9df64570ff1b6873d48bd4f555ecafded5a0a705ee3a8f3b1aa7bcc2608e501868a5d5ce6345176b7b7f78d5d SHA512 851d1eb1ddeb56510755ed96fa93a84547c1f02e4e4f9874d1d056236998304bcc49c00aa1c710ee5701bed3ba08d8b6e26d6bc3d6c423fb966d8a1f026ef1d3

View File

@@ -16,7 +16,8 @@ SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=""
RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}]
dev-python/aresponses[${PYTHON_USEDEP}]"
DEPEND="${REDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
@@ -24,6 +25,11 @@ DEPEND="${REDEPEND}
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_prepare_all() {
distutils-r1_python_prepare_all
sed -e "s:find_packages():find_packages(exclude=['tests','tests.*']):" -i setup.py || die
}
python_test() {
nosetests --verbose || die
py.test -v -v || die

View File

@@ -16,7 +16,9 @@ SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=""
RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}]
dev-python/aresponses[${PYTHON_USEDEP}]"
DEPEND="${REDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
@@ -24,6 +26,11 @@ DEPEND="${REDEPEND}
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_prepare_all() {
distutils-r1_python_prepare_all
sed -e "s:find_packages():find_packages(exclude=['tests','tests.*']):" -i setup.py || die
}
python_test() {
nosetests --verbose || die
py.test -v -v || die

View File

@@ -16,7 +16,8 @@ SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=""
RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}]
dev-python/aresponses[${PYTHON_USEDEP}]"
DEPEND="${REDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
@@ -24,6 +25,11 @@ DEPEND="${REDEPEND}
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_prepare_all() {
distutils-r1_python_prepare_all
sed -e "s:find_packages():find_packages(exclude=['tests','tests.*']):" -i setup.py || die
}
python_test() {
nosetests --verbose || die
py.test -v -v || die

11
dev-python/regex/Manifest Normal file
View File

@@ -0,0 +1,11 @@
DIST regex-2019.04.14.tar.gz 644970 BLAKE2B 5807f869f3fbe7ddaecdd78a00dfa7129c23916c1da505b31f49153bf60e17b14a9c35702d001fef5fd4928278d1cd730008119087ec6041f2f83ba7c84fd10b SHA512 51b7a5c31618da573e829baec6bb1ef29842e1eb3be3d608557543beee83d98e9d866ff5065a2e06df14330c253cf704d111f7c307c751df7db24eb44c84dfd4
DIST regex-2019.05.25.tar.gz 645155 BLAKE2B 2e1a7a82efd36d47636759f0c387b756db2587d9ba33ba4b4145a6b251e59d02869b65901532430c3a2d1adc39546583a0179fd4ae303cce95ab0fd3f93cfc71 SHA512 71be8e5a488c69acf946dee12e8deb4fafe659667512d5c82e916b9c71e8aef122790fa1af0c2123546fca2f0d6a974041e144c96b43fd150bba90927c241cd9
DIST regex-2019.06.02.tar.gz 651428 BLAKE2B 952b4962a05abcad1792b4c29ee666c382a61ed868c6463f1eec9df6b9e6ad5504bfb458a06c6a996529692b4587720204dbc94d30875d02f279953bf4fc3210 SHA512 043ad602bd593e2c1711373185a3e4565c0df2bf0e86d7a42d79a32ac51740f9bbfa6bf36d47fe7e35b83a913a2e22f74afa0b094e0cb0e96e12d5982d583410
DIST regex-2019.06.05.tar.gz 651476 BLAKE2B 0ea178b4b1171f2248b3aa1e62630a8cf309e5aac6748b4c76663cc51ee8e54324e40326c7b66b193528736f166c55597545bad5b416d6cd1c0d0a1751bffdb8 SHA512 fd24c8e60e64ae780d1a34ab2400420e49d569c4b0e0992f1ac44f736b61d33bf22994780fb37f9f3f219bd279acbef2fbfcd0159f3bf173ae02bf2b6e469ccb
DIST regex-2019.06.08.tar.gz 651424 BLAKE2B f46a525af8342e994470872dd0d6790b3a3b5b089c3098585e8124b8338213b9bb7b533ae8562e06d987df303d66b7b698cd2f636b748dfb46d25cc86e42e645 SHA512 b5ef47cbf9b0cd8b38c9b3055f44b976a44d1da4e182964c16d614a3838de8db5e8c7ff69638b496464cbedb12852b61bbdffd86cf6f22f60d1109be532d8291
EBUILD regex-2019.04.14.ebuild 1182 BLAKE2B 6a5774e782aa7f99a7eff9615338edf0ca5664cbbf74ad0ba91bbc79f48092124b2ac6e744c25049aa1ce2b146fc87f2ab3ad9fe41910204737285d9a2ab1a49 SHA512 f942defa13ff544dc2bc3ca71689a25170fdebba1eed4e266987ddccac12695f428983225faf2be6aede68057c404dfbe78d1ec77f7da0b2973616a3adea7a85
EBUILD regex-2019.05.25.ebuild 1182 BLAKE2B 6a5774e782aa7f99a7eff9615338edf0ca5664cbbf74ad0ba91bbc79f48092124b2ac6e744c25049aa1ce2b146fc87f2ab3ad9fe41910204737285d9a2ab1a49 SHA512 f942defa13ff544dc2bc3ca71689a25170fdebba1eed4e266987ddccac12695f428983225faf2be6aede68057c404dfbe78d1ec77f7da0b2973616a3adea7a85
EBUILD regex-2019.06.02.ebuild 1182 BLAKE2B 6a5774e782aa7f99a7eff9615338edf0ca5664cbbf74ad0ba91bbc79f48092124b2ac6e744c25049aa1ce2b146fc87f2ab3ad9fe41910204737285d9a2ab1a49 SHA512 f942defa13ff544dc2bc3ca71689a25170fdebba1eed4e266987ddccac12695f428983225faf2be6aede68057c404dfbe78d1ec77f7da0b2973616a3adea7a85
EBUILD regex-2019.06.05.ebuild 1182 BLAKE2B 6a5774e782aa7f99a7eff9615338edf0ca5664cbbf74ad0ba91bbc79f48092124b2ac6e744c25049aa1ce2b146fc87f2ab3ad9fe41910204737285d9a2ab1a49 SHA512 f942defa13ff544dc2bc3ca71689a25170fdebba1eed4e266987ddccac12695f428983225faf2be6aede68057c404dfbe78d1ec77f7da0b2973616a3adea7a85
EBUILD regex-2019.06.08.ebuild 1182 BLAKE2B 6a5774e782aa7f99a7eff9615338edf0ca5664cbbf74ad0ba91bbc79f48092124b2ac6e744c25049aa1ce2b146fc87f2ab3ad9fe41910204737285d9a2ab1a49 SHA512 f942defa13ff544dc2bc3ca71689a25170fdebba1eed4e266987ddccac12695f428983225faf2be6aede68057c404dfbe78d1ec77f7da0b2973616a3adea7a85
MISC metadata.xml 384 BLAKE2B 4928f66b54b5e4de6a8b913207ec6e46c124e55510eac304a7fd46c6ca63cce60704757e9289bf35d2d58e9ddcd4aa98d751a079c79f09dda9206553096e0561 SHA512 3db0a8abe7036cd9d0fd8b1450598436dbb30581806380ad51c3d0f49d129325aba1bad9700d14adffc7cfd199c4ec3377e6eb0225244bfc82368bbb50548e07

View File

@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>python@gentoo.org</email>
<name>Python</name>
</maintainer>
<upstream>
<remote-id type="pypi">regex</remote-id>
<remote-id type="bitbucket">mrabarnett/mrab-regex</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,45 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python2_7 python3_{5,6,7} pypy pypy3 )
inherit distutils-r1 flag-o-matic
DESCRIPTION="Alternative regular expression module to replace re"
HOMEPAGE="https://bitbucket.org/mrabarnett/mrab-regex"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-fbsd"
IUSE="doc"
DOCS=( README docs/UnicodeProperties.txt )
python_compile() {
if ! python_is_python3; then
local CFLAGS=${CFLAGS}
append-cflags -fno-strict-aliasing
fi
distutils-r1_python_compile
}
python_test() {
local msg="tests failed under ${EPYTHON}"
# https://bitbucket.org/mrabarnett/mrab-regex/issue/145/1-fail-in-testsuite-under-pypy
einfo "There is one trivial fail of test test_empty_array under pypy"
if python_is_python3; then
"${PYTHON}" Python3/test_regex.py || die "${msg}"
else
"${PYTHON}" Python2/test_regex.py || die "${msg}"
fi
}
python_install_all() {
use doc && local HTML_DOCS=( docs/Features.html )
distutils-r1_python_install_all
}

View File

@@ -0,0 +1,45 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python2_7 python3_{5,6,7} pypy pypy3 )
inherit distutils-r1 flag-o-matic
DESCRIPTION="Alternative regular expression module to replace re"
HOMEPAGE="https://bitbucket.org/mrabarnett/mrab-regex"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-fbsd"
IUSE="doc"
DOCS=( README docs/UnicodeProperties.txt )
python_compile() {
if ! python_is_python3; then
local CFLAGS=${CFLAGS}
append-cflags -fno-strict-aliasing
fi
distutils-r1_python_compile
}
python_test() {
local msg="tests failed under ${EPYTHON}"
# https://bitbucket.org/mrabarnett/mrab-regex/issue/145/1-fail-in-testsuite-under-pypy
einfo "There is one trivial fail of test test_empty_array under pypy"
if python_is_python3; then
"${PYTHON}" Python3/test_regex.py || die "${msg}"
else
"${PYTHON}" Python2/test_regex.py || die "${msg}"
fi
}
python_install_all() {
use doc && local HTML_DOCS=( docs/Features.html )
distutils-r1_python_install_all
}

View File

@@ -0,0 +1,45 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python2_7 python3_{5,6,7} pypy pypy3 )
inherit distutils-r1 flag-o-matic
DESCRIPTION="Alternative regular expression module to replace re"
HOMEPAGE="https://bitbucket.org/mrabarnett/mrab-regex"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-fbsd"
IUSE="doc"
DOCS=( README docs/UnicodeProperties.txt )
python_compile() {
if ! python_is_python3; then
local CFLAGS=${CFLAGS}
append-cflags -fno-strict-aliasing
fi
distutils-r1_python_compile
}
python_test() {
local msg="tests failed under ${EPYTHON}"
# https://bitbucket.org/mrabarnett/mrab-regex/issue/145/1-fail-in-testsuite-under-pypy
einfo "There is one trivial fail of test test_empty_array under pypy"
if python_is_python3; then
"${PYTHON}" Python3/test_regex.py || die "${msg}"
else
"${PYTHON}" Python2/test_regex.py || die "${msg}"
fi
}
python_install_all() {
use doc && local HTML_DOCS=( docs/Features.html )
distutils-r1_python_install_all
}

View File

@@ -0,0 +1,45 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python2_7 python3_{5,6,7} pypy pypy3 )
inherit distutils-r1 flag-o-matic
DESCRIPTION="Alternative regular expression module to replace re"
HOMEPAGE="https://bitbucket.org/mrabarnett/mrab-regex"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-fbsd"
IUSE="doc"
DOCS=( README docs/UnicodeProperties.txt )
python_compile() {
if ! python_is_python3; then
local CFLAGS=${CFLAGS}
append-cflags -fno-strict-aliasing
fi
distutils-r1_python_compile
}
python_test() {
local msg="tests failed under ${EPYTHON}"
# https://bitbucket.org/mrabarnett/mrab-regex/issue/145/1-fail-in-testsuite-under-pypy
einfo "There is one trivial fail of test test_empty_array under pypy"
if python_is_python3; then
"${PYTHON}" Python3/test_regex.py || die "${msg}"
else
"${PYTHON}" Python2/test_regex.py || die "${msg}"
fi
}
python_install_all() {
use doc && local HTML_DOCS=( docs/Features.html )
distutils-r1_python_install_all
}

View File

@@ -0,0 +1,45 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python2_7 python3_{5,6,7} pypy pypy3 )
inherit distutils-r1 flag-o-matic
DESCRIPTION="Alternative regular expression module to replace re"
HOMEPAGE="https://bitbucket.org/mrabarnett/mrab-regex"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-fbsd"
IUSE="doc"
DOCS=( README docs/UnicodeProperties.txt )
python_compile() {
if ! python_is_python3; then
local CFLAGS=${CFLAGS}
append-cflags -fno-strict-aliasing
fi
distutils-r1_python_compile
}
python_test() {
local msg="tests failed under ${EPYTHON}"
# https://bitbucket.org/mrabarnett/mrab-regex/issue/145/1-fail-in-testsuite-under-pypy
einfo "There is one trivial fail of test test_empty_array under pypy"
if python_is_python3; then
"${PYTHON}" Python3/test_regex.py || die "${msg}"
else
"${PYTHON}" Python2/test_regex.py || die "${msg}"
fi
}
python_install_all() {
use doc && local HTML_DOCS=( docs/Features.html )
distutils-r1_python_install_all
}

View File

@@ -1,11 +1,9 @@
DIST ruamel-yaml-0.15.89.tar.gz 396878 BLAKE2B 949b36665c9071d6a57674a51b2c6c8ea5a29d943019b92acd7703f77fe5ea3d5a0244de99f4ccc41c714d65f0625a3d7ce4c4257558ca0de7d3e1f7eb947274 SHA512 3ad266f069b4e522fb9044c1b87fd007ec2e6c4a316332d55939861491e36b87a28f7f1f3c230960d50c15f0b66834cf2db5807aafa5348e1cddf863e935ac4b
DIST ruamel-yaml-0.15.91.tar.gz 397339 BLAKE2B 66f713cf3fd6e0c8900d22a3525a69c77dccc1e0c8039c7bc05f0829d2e7f38a1b83da9acde78273059129b432fc6bebfd3afe5844c9e7205b859de73a8743f6 SHA512 c9c9de649a40cb55953005a2fa991112c34a699409379c3c04d33f9f42efa7d0e43fb4c7e7f5caea1b6a86af4e0785925c541632bca88ab6b9c52969260b705a
DIST ruamel-yaml-0.15.94.tar.gz 398392 BLAKE2B 0203656b39488c659a917a5ea90149885953c86b45c97df24ca47403b56703479384a5c4df491df08f269e8545bad96efd568d73916cfb245bc5034e6ab359fa SHA512 4a1854503e16f44c5090abb041a6838ed2ffaa8ea36deb2781f12f4b303ec33fb5a4901a9ff798755d38efc4251aa4ae92596001bbdf63a5703de4ab72f76a8e
DIST ruamel-yaml-0.15.97.tar.gz 400728 BLAKE2B 04b957ba7739ceebcfc802d86252ace5bba8960cc75ff0bea00ef8ba25e945e80ef878a9699d1a8d1664ed8e39d23eb47542f2bf70e0628b1bd1904d80e8c034 SHA512 2c61609867147c3fd9fde77d03c589848765a068893197ae4aab4417933a7f54b46c4eb81e9359d116fd45a37f5e5e357ab3ea19d0b19455f2ab3c022a40349e
DIST ruamel-yaml-0.15.99.tar.gz 401377 BLAKE2B f12bdef492b048dfaca64a9b659f544626bbd0fe77f3a0712f31d6b150eaeb2195cf041f4cef177b40a3ca69b45d3dab1726f8619a59324b800968217a39eacf SHA512 5580f31c1d6bf94ba12182a4a8845c209566050876c813a049821d3cf3f7e59838653281ec573f40184f29265cf6e43cdae45b84d94a647c2ac74ee6e17416ff
EBUILD ruamel-yaml-0.15.89.ebuild 1087 BLAKE2B fe35232884bdba17a279e989221f600bbc2d8d7a957a739dc92da4c954277a3dad0c7fb79a9a30c6a6e864aaa60dba275ca8433e897d612fb383049a253a6917 SHA512 4d0d1fb236dd3b9ff9df73665a3866e4b3602fc64db6fd123d5c75f9565e5fde61001cabfbf6c1ab552aab1785cd5ac3f146100da01cda1696ffeeae06b60222
EBUILD ruamel-yaml-0.15.91.ebuild 1087 BLAKE2B fe35232884bdba17a279e989221f600bbc2d8d7a957a739dc92da4c954277a3dad0c7fb79a9a30c6a6e864aaa60dba275ca8433e897d612fb383049a253a6917 SHA512 4d0d1fb236dd3b9ff9df73665a3866e4b3602fc64db6fd123d5c75f9565e5fde61001cabfbf6c1ab552aab1785cd5ac3f146100da01cda1696ffeeae06b60222
EBUILD ruamel-yaml-0.15.94.ebuild 1087 BLAKE2B fe35232884bdba17a279e989221f600bbc2d8d7a957a739dc92da4c954277a3dad0c7fb79a9a30c6a6e864aaa60dba275ca8433e897d612fb383049a253a6917 SHA512 4d0d1fb236dd3b9ff9df73665a3866e4b3602fc64db6fd123d5c75f9565e5fde61001cabfbf6c1ab552aab1785cd5ac3f146100da01cda1696ffeeae06b60222
EBUILD ruamel-yaml-0.15.97.ebuild 1087 BLAKE2B fe35232884bdba17a279e989221f600bbc2d8d7a957a739dc92da4c954277a3dad0c7fb79a9a30c6a6e864aaa60dba275ca8433e897d612fb383049a253a6917 SHA512 4d0d1fb236dd3b9ff9df73665a3866e4b3602fc64db6fd123d5c75f9565e5fde61001cabfbf6c1ab552aab1785cd5ac3f146100da01cda1696ffeeae06b60222
EBUILD ruamel-yaml-0.15.99.ebuild 1087 BLAKE2B fe35232884bdba17a279e989221f600bbc2d8d7a957a739dc92da4c954277a3dad0c7fb79a9a30c6a6e864aaa60dba275ca8433e897d612fb383049a253a6917 SHA512 4d0d1fb236dd3b9ff9df73665a3866e4b3602fc64db6fd123d5c75f9565e5fde61001cabfbf6c1ab552aab1785cd5ac3f146100da01cda1696ffeeae06b60222
MISC metadata.xml 252 BLAKE2B 507e0ddc9d50b879ff374b903b142f85d020dfd6c486aba2af84fe082c878e780edbb79188ae10104d57db0eb775c86814cc8c06891a3854c9da840a4d377050 SHA512 9470ac9c8a5a4f80e3f767e7aa198addc7b21866c63b2a310e9f41ce65817672fb77423117bdd619e99cb62322025aeadf50717e23eafabf99080fcc106820af

View File

@@ -1,44 +0,0 @@
# Copyright 1999-2019 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python3_{5,6,7} )
inherit distutils-r1 vcs-snapshot
DESCRIPTION="YAML parser/emitter that supports roundtrip comment preservation"
HOMEPAGE="https://pypi.org/project/ruamel.yaml/ https://bitbucket.org/ruamel/yaml"
MY_PN="${PN//-/.}"
SRC_URI="https://bitbucket.org/${MY_PN/.//}/get/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm64"
IUSE="test"
RDEPEND="
${PYTHON_DEPS}
"
DEPEND="
${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/flake8[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/ruamel-std-pathlib[${PYTHON_USEDEP}]
)
"
python_install() {
distutils-r1_python_install --single-version-externally-managed
find "${ED}" -name '*.pth' -delete || die
}
python_test() {
# This file produced by setup.py breaks finding system-wide installed
# ruamel.std.pathlib due to shared namespace
rm "${BUILD_DIR}/lib/ruamel/__init__.py" || die
py.test -v _test/test_*.py || die
}