-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dev-python/charset-normalizer: add 3.4.0
Closes: https://git.edevau.net/onkelbeh/HomeAssistantRepository/issues/4316 Signed-off-by: Andreas Billmeier <b@edevau.net>
- Loading branch information
Showing
4 changed files
with
34 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
DIST charset-normalizer-3.2.0.tar.gz 97063 BLAKE2B 2192401d74abab5f7ccd434c5493ae59b449df9a6ab90190a236b3f665e3a940e15d00803a2477a7c2996030fa1e5bf725fc15b6373040f29f27feab9df6e1e1 SHA512 0e3967b489561394ca848c1fe7dfaa72a330a3f645e9386c1d2d2dc8c2e35a34a8186e6f3377eda2aed503a3e7e626fe116d7b34c2f4a3fd8446a4c1a8fb74cc | ||
EBUILD charset-normalizer-3.2.0.ebuild 619 BLAKE2B 5c8d0bf58f9e145c5f324601977cb1d43dd06affaeb39f90df49dbb8c9c47a314bd3857de69c8cfe41adbca0f67af31ca15f242a50a70cfc9688297c90913bfe SHA512 c0dc5c5f1defa99756839f7ed59f80d888f8877f94fdaf9dd0b3847803a9526b53179daba96108cdb436ca18e748e0a542b610c74229a0575ab07d34da5d2b76 | ||
DIST charset_normalizer-3.4.0.tar.gz 106620 BLAKE2B 52dc9a2db3d4aaf841cd464dbe95d1089fd8a8d37e3dcc518ade0a3efe7d26fee529f4f82e344971965ada09108e9b3647c9dfa3222f99cc9fc5fd6b9dd34e8e SHA512 7b7098d389bf4b181bd26037fa439abb44811ee68b01b78bfd399b4213cca7309d4878e90a0983d6aa2c550c3b9b355c8b5157fae731981f3e6e4028a911d143 | ||
EBUILD charset-normalizer-3.2.0.ebuild 619 BLAKE2B 8d18dcab72ae8164357eae8d3030f097bdecb150604e629595bcadfe0eda99fa6e09cf39db2fd0b9285e56db907ac8a728cf30d9d187bd645a5dbda932648fd9 SHA512 ba168bbfb27831a65555cbbf1f207ade7bde4bd586217aefb5b2d3ecbff28c20a5f59a3bfd5c427f8bef7b3b1a58439d52c6ad336fa735aef7cc1a28e7b22f76 | ||
EBUILD charset-normalizer-3.4.0.ebuild 598 BLAKE2B f375b13366d8520aaa200a6b8ec155ac6bb2f53a31ed81cc5f91219c66c2e4be2a8d4e8dac794a9d95e526362d51ec3547eec41fb6bc9bc8aceeb2b35c1ca377 SHA512 cd4e1ddf41d9af4d9321431131eb4fe2fbeebc4e4e8ceedc81616629b2b3d587d0fe98b3f11aabda22d1b9225e76d56199f2be514b19ee0eab45d1471655520e | ||
MISC metadata.xml 537 BLAKE2B 945573124563a0b1e483c880e8d5d6cf549c14db0ee8180cc9885e4e235346f17bd7450d5c1dae734b4d8f60a310f483228168eccb8a4bf2f101716c5deb40f3 SHA512 939eaccc10ab45f7346f67c5aa7970affd518d3dee8bb53b7cc804a460cec48e8f53fbbc2b485af5b4f0294b8bab3dbbcc8786435e15aab0c175aa9c6988a9a7 |
4 changes: 2 additions & 2 deletions
4
dev-python/charset-normalizer/charset-normalizer-3.2.0.ebuild
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
dev-python/charset-normalizer/charset-normalizer-3.4.0.ebuild
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Copyright 1999-2024 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
# please keep this ebuild at EAPI 8 -- sys-apps/portage dep | ||
EAPI=8 | ||
|
||
DISTUTILS_USE_PEP517=setuptools | ||
PYTHON_COMPAT=( python3_{11..13} ) | ||
|
||
inherit distutils-r1 pypi | ||
|
||
DESCRIPTION="The Real First Universal Charset Detector" | ||
HOMEPAGE=" | ||
https://pypi.org/project/charset-normalizer/ | ||
https://github.com/jawah/charset_normalizer/ | ||
" | ||
|
||
LICENSE="MIT" | ||
SLOT="0" | ||
KEYWORDS="amd64 arm arm64 x86" | ||
|
||
distutils_enable_tests pytest | ||
|
||
python_test() { | ||
local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 | ||
epytest -o addopts= | ||
} |