-
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.
Signed-off-by: Andreas Billmeier <[email protected]>
- Loading branch information
Showing
4 changed files
with
31 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 peco-0.0.29.tar.gz 4862 BLAKE2B 454ca947d534d4e3aa292b04113d90e0116aa1ed14b302e235890b208b532808307e336f0445a55b50eed58d17156dc2adaf2927ceab20c1cbbb72752d59b29d SHA512 963590f334d36063d7319723cdab10e8cf0945c9e5917ee6fb344097afbb0957ace6ff0904df77f81c03d03fe7b4e1bc350ecf45d4407384ec373daf614c67ff | ||
EBUILD peco-0.0.29-r1.ebuild 683 BLAKE2B a74010e7a1e32e2548fcf1e6bccef3ede1c11db29c9490f9513f309ae3e6324a86142ee53ab988a3ab4a40f1bd799ec39195cb902fcf6111f664fd44675eb37a SHA512 eeb3ca46f2ef74d1599c42a2253b47d4b22976671a9f4e06af7bde52174dd296684fa3744be0db581c62e4549ea9c3ae737722a6fc2a4e022d658a93dacb087a | ||
DIST peco-0.0.30.tar.gz 4948 BLAKE2B f0a73dae578d632baecae9504ccdcb36ad64c5469f31b70144f9f4cad169c81793bff4f6235033d0e61afb2e62ae659358a83fb8c0e24039782a62d54c23067f SHA512 7c104d0c9fca2e3fcb79b0a5eba772f55c35e88527f862114f75051434941e764371f825b8ebcce242738ce48e1f42febc4a049c5687a24bbfe1b030d4f809d6 | ||
EBUILD peco-0.0.29-r1.ebuild 683 BLAKE2B 656d198c897eebeadee88861bb939e70106139f021ca9200792f57e6f550a7fa10f3b1f311c4df2e8191680cf6610a2de7cd94ec09d2435e317684719ff1fe2d SHA512 705c0f7f15e315aacc0ea54b8a834b37151945e8149bc5c0d9c5f8ba0fcc3b3830e9721114ce50affe8a72b013d9d1c5947bb24c8d314a6bcb61c80d1f927e96 | ||
EBUILD peco-0.0.30.ebuild 581 BLAKE2B 9323b3104502fe661c3d239bb80e97de4c2f755541a0084d35a344c1d67918ea46353114b2d927d631f3a13372c34cc7affe7dde6d4b6ab13096564fb1b9e3c6 SHA512 28eaf438308da31d0ba6f0ba299f4a78a726a0ae542abceecbc81b04149309b3f5a4b121acd4b102bcfbe9a892fcfe8f7a0b326a151505dffc44d7b86d9db420 | ||
MISC metadata.xml 511 BLAKE2B 25f38d0c5176d514d589a5b9bb62aae6cbde61c9cd060175808ee95f372240d7d96e1d13aa387e1878a92f5ee0b724338436b3a861a8c3f57f3c99ee21dd0dcb SHA512 166259b5e66d85176fefeb09bb5f33453493b60f9e94752aab4c080466e58cc36a014ee2fe48ceb1a844ca0f6a3be7e505175934571238fca97bd21cf3e79a89 |
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# 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="Wrapper for PECO Outage API" | ||
HOMEPAGE="https://github.com/IceBotYT/peco-outage-api https://pypi.org/project/peco/" | ||
|
||
LICENSE="MIT" | ||
SLOT="0" | ||
KEYWORDS="amd64 arm arm64 x86" | ||
IUSE="test" | ||
RESTRICT="!test? ( test )" | ||
|
||
DOCS="README.md" | ||
|
||
RDEPEND=">=dev-python/aiohttp-3.9.5[${PYTHON_USEDEP}] | ||
>=dev-python/pydantic-1.9.0[${PYTHON_USEDEP}]" | ||
|
||
distutils_enable_tests pytest |