-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dev-python/pysuezV2: new package, add 0.2.2
Closes: https://git.edevau.net/onkelbeh/HomeAssistantRepository/issues/4065 Signed-off-by: Andreas Billmeier <[email protected]>
- Loading branch information
Showing
3 changed files
with
42 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
DIST pysuezv2-0.2.2.tar.gz 8359 BLAKE2B 5d0efd071f5b50783f53125bc2393c9ad4583d4644449b95a650cb0a8f7d7115b98ea7314e7cfe5df4243ec3604c102c51b76292cf935acb0118d2153096a250 SHA512 9348ea46511f91fa0a3333b4bc90e42af75e9128e8fe0bd4c5fd15e2562e3831e4095fc32374b4daa43812a977e2e0378db3ad40a622ae2ea9705c557f9e6544 | ||
EBUILD pysuezV2-0.2.2.ebuild 602 BLAKE2B 844677ae2bb4a1109e1978803ca66052cdcfe01e5f145e206cbf706ba8fe4fd4750fe628dec924be9b72cf45a26a892daba8c9f042ef307b97147be7c3c6ce5e SHA512 e476a5dfef04b4c344aa3694aa1be2557f70968084b71cf59f3fee600572bf932315e4831d6d2f5c89de3f235dc0c89893a26a6e378944c6d3c6c3f79d3a7610 | ||
MISC metadata.xml 517 BLAKE2B 0891fdc7930bfd004cb81764d84753b7ac410928a21263ff68a50f8d961ee0cb381d9bef737d2aa8cd35c587343af2a33ada19c8e61cd1e9f29cfc2ed71ba626 SHA512 04c38bcbddd6d692107b53a046cf5306b73506cf93a9ecc05e9eedd82cdf329471a2c985912bd6172aadf5b920e279fced419c92f7687ddb0b52334f0109c458 |
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,16 @@ | ||
<?xml version='1.0' encoding='UTF-8'?> | ||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> | ||
<pkgmetadata> | ||
<maintainer type="project"> | ||
<email>[email protected]</email> | ||
<name>Andreas Billmeier</name> | ||
</maintainer> | ||
<upstream> | ||
<remote-id type="pypi">pysuezV2</remote-id> | ||
<remote-id type="github">jb101010-2/pySuez</remote-id> | ||
<maintainer status="unknown"> | ||
<email>[email protected]</email> | ||
<name>jb101010-2</name> | ||
</maintainer> | ||
</upstream> | ||
</pkgmetadata> |
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,23 @@ | ||
# Copyright 1999-2024 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
PYTHON_COMPAT=( python3_{11..13} ) | ||
DISTUTILS_USE_PEP517=setuptools | ||
inherit distutils-r1 pypi | ||
|
||
DESCRIPTION="Get your water consumption data from your Suez account (www.toutsurmoneau.fr or www.eau-olivet.fr)" | ||
HOMEPAGE="https://github.com/jb101010-2/pySuez/ https://pypi.org/project/pysuezV2/" | ||
|
||
LICENSE="Apache-2.0" | ||
SLOT="0" | ||
KEYWORDS="amd64 arm arm64 x86" | ||
IUSE="test" | ||
RESTRICT="!test? ( test )" | ||
|
||
DOCS="README.md" | ||
|
||
RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}]" | ||
|
||
distutils_enable_tests pytest |