mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-05-03 12:10:50 +02:00
aiogram: cleanup
This commit is contained in:
parent
d053cede2d
commit
9cbd78c039
5 changed files with 0 additions and 247 deletions
|
|
@ -1,6 +1,2 @@
|
|||
DIST aiogram-2.24.tar.gz 160932 BLAKE2B c130eb2388fc92c3747dd04600aaeeb6257c6f40481cb2d62560eb1dbcca0ac6c88a47827d604048bc9a99576e31c214f721d7f6b8e24621d92c68ff71bcf46a SHA512 87baa3e3f408301c5294d70c5627b98043e89f4dad6b0e09ef4cd49aba3a3034c4f02e5e89c9b2fae2b0c757c211c25c39f9e742b9f832933d6ae74d59049e38
|
||||
DIST aiogram-3.0.0-beta.4.tar.gz 691644 BLAKE2B a4830ff4128a2753f1da0791ff51c27eaa5ba8e123c039ce7ed9b207d57c93962bc8c2f907a7f5757f379dd164e132496cf699a6468c90b4a947ee38d82f9643 SHA512 88003f85fad84e72c7f40933e3528183aac1e84db548c78155ff78d4def17016b88d69f59e0546935f7b036d72074abe5e331864f33569ce7313bdf62040e36c
|
||||
DIST aiogram-3.0.0.gh.tar.gz 1360069 BLAKE2B 4acfe74f1dfe0a67cc71679fd6eda17dc2754596ebd09867e200808b63693424a0f7f146df7814b54a19ba5e5dad918906b990e54e60ca026245b11c6f0fd41f SHA512 84792cab6b662c9707e3c7a27324167c74b45d52015e2ce6ca776f32b3bed415b59c422fbe49dd2ed1a1576f3d927712cad076e700a4171d5864ea59efc991a9
|
||||
DIST aiogram-3.0.0b7.tar.gz 1198341 BLAKE2B 86aec3000dca0d7f183ef792edab2ad94d72337f7b370a2ae9b2b0e3cc9ed6320ac0b8049db9d826af6cd7370da539ddff1073fdd18a7d00a8cdacb2a0994ffa SHA512 fc5fe0adb764625ec8ec14803e84c8308d72b78100136b41f305b579e16e796256488d5830da87422c07bde655d09169b0d63cfaa3d12399df92b6a990327ca2
|
||||
DIST aiogram-3.1.1.tar.gz 1341696 BLAKE2B 390eb9ae1e66d7980b187c56c3655bd5d30783d8b5bc602abcb600ab6ac8d059eaed2fff4204af62acc20b34fa404eb01efda84dfde5ddab126aaf144869f3d5 SHA512 e678cdc9c4c62ea68a06b1ef8004c7b3a7febc6a1b9a84cfdc4a2e2903cd6a7d8034b5d15ddea38701632837cd45b3f14f92991a9dd6391340f170e6afbde6b9
|
||||
DIST aiogram-3.2.0.tar.gz 1199545 BLAKE2B 98426f4a6e95172acd3792a462bc6948de35b1565314ce47bfeed505a533a54a659747596ce0b38202cfc82ad65d2c787c8f688fecad6cbddb213b2460054a90 SHA512 64ca9ddac6d0d4c0637c7d7939e2df41174d5e3e8ed505d161dd2d7cc9e0e8d28d1516fd0923f8dbfd9ff2a599f578e6f5af8c97c62b8c96b073891cf5b8d916
|
||||
|
|
|
|||
|
|
@ -1,61 +0,0 @@
|
|||
# Copyright 1999-2023 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
#MY_PV="${PV/_beta/b}"
|
||||
#MY_P="${PN}-${MY_PV}"
|
||||
|
||||
DISTUTILS_USE_PEP517=hatchling
|
||||
PYTHON_COMPAT=( python3_{10..12} )
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="Asynchronous framework for Telegram Bot API"
|
||||
HOMEPAGE="https://github.com/aiogram/aiogram"
|
||||
SRC_URI="https://github.com/aiogram/aiogram/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="docs i18n fast proxy redis"
|
||||
RESTRICT="test"
|
||||
|
||||
RDEPEND="
|
||||
>=dev-python/magic-filter-1.0.9[${PYTHON_USEDEP}]
|
||||
>=dev-python/aiohttp-3.8.4[${PYTHON_USEDEP}] <dev-python/aiohttp-3.9.0
|
||||
>=dev-python/pydantic-2.1.1 <dev-python/pydantic-3
|
||||
>=dev-python/aiofiles-22.1.0
|
||||
fast? (
|
||||
>=dev-python/uvloop-0.16.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/ujson-1.35[${PYTHON_USEDEP}]
|
||||
)
|
||||
i18n? ( >=dev-python/Babel-2.9.1[${PYTHON_USEDEP}] )
|
||||
proxy? ( >=dev-python/aiohttp-socks-0.5.3[${PYTHON_USEDEP}] )
|
||||
redis? ( >=dev-python/redis-4.5.1 )
|
||||
>=dev-python/certifi-2022.9.24
|
||||
docs? (
|
||||
dev-python/sphinx
|
||||
dev-python/furo
|
||||
dev-python/sphinx-prompt
|
||||
dev-python/towncrier
|
||||
dev-python/pymdown-extensions
|
||||
dev-python/pygments
|
||||
)"
|
||||
DEPEND="${RDEPEND}"
|
||||
|
||||
#BDEPEND="
|
||||
# test? (
|
||||
# dev-python/redis-py[${PYTHON_USEDEP}]
|
||||
# dev-python/magic-filter[${PYTHON_USEDEP}]
|
||||
# dev-python/aiofiles[${PYTHON_USEDEP}]
|
||||
# dev-python/aiohttp[${PYTHON_USEDEP}]
|
||||
# )
|
||||
#"
|
||||
|
||||
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
||||
|
||||
# from aresponses import ResponsesMockServer
|
||||
# ModuleNotFoundError: No module named 'aresponses'
|
||||
#distutils_enable_tests pytest
|
||||
|
||||
#S="${WORKDIR}/${MY_P}"
|
||||
|
|
@ -1,61 +0,0 @@
|
|||
# Copyright 1999-2022 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
MY_PV="${PV/_beta/-beta.}"
|
||||
MY_P="${PN}-${MY_PV}"
|
||||
|
||||
DISTUTILS_USE_PEP517=poetry
|
||||
PYTHON_COMPAT=( python3_{10..12} )
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="Asynchronous framework for Telegram Bot API"
|
||||
HOMEPAGE="https://github.com/aiogram/aiogram"
|
||||
#SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
|
||||
SRC_URI="https://github.com/aiogram/aiogram/archive/refs/tags/v${MY_PV}.tar.gz -> ${MY_P}.tar.gz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="docs i18n fast proxy redis"
|
||||
RESTRICT="test"
|
||||
|
||||
RDEPEND="
|
||||
>=dev-python/magic-filter-1.0.8[${PYTHON_USEDEP}]
|
||||
>=dev-python/aiohttp-3.8.1[${PYTHON_USEDEP}] <dev-python/aiohttp-3.9.0
|
||||
>=dev-python/pydantic-1.9.2 <dev-python/pydantic-2.0.0
|
||||
>=dev-python/aiofiles-0.8.0
|
||||
i18n? ( >=dev-python/Babel-2.9.1[${PYTHON_USEDEP}] )
|
||||
proxy? ( >=dev-python/aiohttp-socks-0.5.3[${PYTHON_USEDEP}] )
|
||||
redis? ( >=dev-python/redis-4.5.1 )
|
||||
fast? (
|
||||
>=dev-python/uvloop-0.16.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/ujson-1.35[${PYTHON_USEDEP}]
|
||||
)
|
||||
docs? (
|
||||
dev-python/sphinx
|
||||
dev-python/furo
|
||||
dev-python/sphinx-prompt
|
||||
dev-python/towncrier
|
||||
dev-python/pymdown-extensions
|
||||
dev-python/pygments
|
||||
)"
|
||||
DEPEND="${RDEPEND}"
|
||||
|
||||
#BDEPEND="
|
||||
# test? (
|
||||
# dev-python/redis-py[${PYTHON_USEDEP}]
|
||||
# dev-python/magic-filter[${PYTHON_USEDEP}]
|
||||
# dev-python/aiofiles[${PYTHON_USEDEP}]
|
||||
# dev-python/aiohttp[${PYTHON_USEDEP}]
|
||||
# )
|
||||
#"
|
||||
|
||||
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
||||
|
||||
# from aresponses import ResponsesMockServer
|
||||
# ModuleNotFoundError: No module named 'aresponses'
|
||||
#distutils_enable_tests pytest
|
||||
|
||||
S="${WORKDIR}/${MY_P}"
|
||||
|
|
@ -1,62 +0,0 @@
|
|||
# Copyright 1999-2023 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
MY_PV="${PV/_beta/b}"
|
||||
MY_P="${PN}-${MY_PV}"
|
||||
|
||||
DISTUTILS_USE_PEP517=hatchling
|
||||
PYTHON_COMPAT=( python3_{10..12} )
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="Asynchronous framework for Telegram Bot API"
|
||||
HOMEPAGE="https://github.com/aiogram/aiogram"
|
||||
#SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
|
||||
SRC_URI="https://github.com/aiogram/aiogram/archive/refs/tags/v${MY_PV}.tar.gz -> ${MY_P}.tar.gz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="docs i18n fast proxy redis"
|
||||
RESTRICT="test"
|
||||
|
||||
RDEPEND="
|
||||
>=dev-python/magic-filter-1.0.9[${PYTHON_USEDEP}]
|
||||
>=dev-python/aiohttp-3.8.4[${PYTHON_USEDEP}] <dev-python/aiohttp-3.9.0
|
||||
>=dev-python/pydantic-1.10.4 <dev-python/pydantic-2.0.0
|
||||
>=dev-python/aiofiles-22.1.0
|
||||
fast? (
|
||||
>=dev-python/uvloop-0.16.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/ujson-1.35[${PYTHON_USEDEP}]
|
||||
)
|
||||
i18n? ( >=dev-python/Babel-2.9.1[${PYTHON_USEDEP}] )
|
||||
proxy? ( >=dev-python/aiohttp-socks-0.5.3[${PYTHON_USEDEP}] )
|
||||
redis? ( >=dev-python/redis-4.5.1 )
|
||||
>=dev-python/certifi-2022.9.24
|
||||
docs? (
|
||||
dev-python/sphinx
|
||||
dev-python/furo
|
||||
dev-python/sphinx-prompt
|
||||
dev-python/towncrier
|
||||
dev-python/pymdown-extensions
|
||||
dev-python/pygments
|
||||
)"
|
||||
DEPEND="${RDEPEND}"
|
||||
|
||||
#BDEPEND="
|
||||
# test? (
|
||||
# dev-python/redis-py[${PYTHON_USEDEP}]
|
||||
# dev-python/magic-filter[${PYTHON_USEDEP}]
|
||||
# dev-python/aiofiles[${PYTHON_USEDEP}]
|
||||
# dev-python/aiohttp[${PYTHON_USEDEP}]
|
||||
# )
|
||||
#"
|
||||
|
||||
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
||||
|
||||
# from aresponses import ResponsesMockServer
|
||||
# ModuleNotFoundError: No module named 'aresponses'
|
||||
#distutils_enable_tests pytest
|
||||
|
||||
S="${WORKDIR}/${MY_P}"
|
||||
|
|
@ -1,59 +0,0 @@
|
|||
# Copyright 1999-2023 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
DISTUTILS_USE_PEP517=hatchling
|
||||
PYTHON_COMPAT=( python3_{10..12} )
|
||||
inherit distutils-r1 pypi
|
||||
|
||||
DESCRIPTION="Asynchronous framework for Telegram Bot API"
|
||||
HOMEPAGE="https://github.com/aiogram/aiogram"
|
||||
#SRC_URI="https://github.com/aiogram/aiogram/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="docs i18n fast proxy redis"
|
||||
RESTRICT="test"
|
||||
|
||||
RDEPEND="
|
||||
>=dev-python/magic-filter-1.0.11[${PYTHON_USEDEP}]
|
||||
>=dev-python/aiohttp-3.8.5[${PYTHON_USEDEP}] <dev-python/aiohttp-3.9.0
|
||||
>=dev-python/pydantic-2.1.1[${PYTHON_USEDEP}] <dev-python/pydantic-2.4
|
||||
>=dev-python/aiofiles-22.1.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/certifi-2023.7.22[${PYTHON_USEDEP}]
|
||||
|
||||
fast? (
|
||||
>=dev-python/uvloop-0.16.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/ujson-1.35[${PYTHON_USEDEP}]
|
||||
)
|
||||
i18n? ( >=dev-python/Babel-2.9.1[${PYTHON_USEDEP}] )
|
||||
proxy? ( >=dev-python/aiohttp-socks-0.5.3[${PYTHON_USEDEP}] )
|
||||
redis? ( >=dev-python/redis-4.5.1 )
|
||||
docs? (
|
||||
dev-python/sphinx
|
||||
dev-python/furo
|
||||
dev-python/sphinx-prompt
|
||||
dev-python/towncrier
|
||||
dev-python/pymdown-extensions
|
||||
dev-python/pygments
|
||||
)"
|
||||
DEPEND="${RDEPEND}"
|
||||
|
||||
#BDEPEND="
|
||||
# test? (
|
||||
# dev-python/redis-py[${PYTHON_USEDEP}]
|
||||
# dev-python/magic-filter[${PYTHON_USEDEP}]
|
||||
# dev-python/aiofiles[${PYTHON_USEDEP}]
|
||||
# dev-python/aiohttp[${PYTHON_USEDEP}]
|
||||
# )
|
||||
#"
|
||||
|
||||
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
||||
|
||||
# from aresponses import ResponsesMockServer
|
||||
# ModuleNotFoundError: No module named 'aresponses'
|
||||
#distutils_enable_tests pytest
|
||||
|
||||
#S="${WORKDIR}/${MY_P}"
|
||||
Loading…
Reference in a new issue