mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-10 23:52:59 -04:00
Python 3.10 target is scheduled for removal in Gentoo: https://public-inbox.gentoo.org/gentoo-dev/e6ca9f1f4ababb79ab2a3d005c39b483c3ecef6e.camel@gentoo.org/ Sphinx 8.2.0 already dropped support for CPython 3.10 and PyPy 3.10, leading to multiple CI failures in ::guru. We can safely remove this target, because GURU is "experimental" and does not have stable keywords. Let's not remove "pypy3" right now because a) There are not many packages using it. b) So we can see which packages supported PyPy 3.10, and test them with PyPy 3.11. Closes: https://github.com/gentoo/guru/pull/291 Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo@sysrq.in>
104 lines
3.1 KiB
Bash
104 lines
3.1 KiB
Bash
# Copyright 2022-2023 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
PYPI_NO_NORMALIZE=1
|
|
DISTUTILS_USE_PEP517=setuptools
|
|
PYTHON_COMPAT=( python3_{11..13} )
|
|
|
|
inherit distutils-r1 optfeature pypi systemd
|
|
|
|
DESCRIPTION="A Matrix-Telegram Messenger puppeting bridge "
|
|
HOMEPAGE="https://github.com/mautrix/telegram/"
|
|
|
|
LICENSE="AGPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
IUSE="crypt minimal +qrcode socks5 sqlite"
|
|
|
|
RDEPEND="
|
|
acct-user/mautrix-telegram
|
|
dev-python/aiohttp[${PYTHON_USEDEP}]
|
|
dev-python/asyncpg[${PYTHON_USEDEP}]
|
|
dev-python/commonmark[${PYTHON_USEDEP}]
|
|
dev-python/mako[${PYTHON_USEDEP}]
|
|
dev-python/mautrix[crypt?,${PYTHON_USEDEP}]
|
|
dev-python/ruamel-yaml[${PYTHON_USEDEP}]
|
|
dev-python/setuptools[${PYTHON_USEDEP}]
|
|
>=dev-python/tulir-telethon-1.37.0_alpha1[${PYTHON_USEDEP}]
|
|
dev-python/yarl[${PYTHON_USEDEP}]
|
|
|| (
|
|
dev-python/python-magic[${PYTHON_USEDEP}]
|
|
sys-apps/file[python,${PYTHON_USEDEP}]
|
|
)
|
|
!minimal? (
|
|
app-arch/brotli[python,${PYTHON_USEDEP}]
|
|
dev-python/aiodns[${PYTHON_USEDEP}]
|
|
dev-python/cryptg[${PYTHON_USEDEP}]
|
|
dev-python/phonenumbers[${PYTHON_USEDEP}]
|
|
)
|
|
qrcode? (
|
|
dev-python/pillow[${PYTHON_USEDEP}]
|
|
dev-python/qrcode[${PYTHON_USEDEP}]
|
|
)
|
|
socks5? ( dev-python/python-socks[${PYTHON_USEDEP}] )
|
|
sqlite? ( dev-python/aiosqlite[${PYTHON_USEDEP}] )
|
|
"
|
|
|
|
distutils_enable_tests import-check
|
|
|
|
python_test() {
|
|
local sitedir="${BUILD_DIR}/install$(python_get_sitedir)"
|
|
local EPYTEST_IGNORE=(
|
|
"${sitedir}/mautrix_telegram/__main__.py"
|
|
"${sitedir}/mautrix_telegram/abstract_user.py"
|
|
"${sitedir}/mautrix_telegram/scripts/unicodemojipack/__main__.py"
|
|
)
|
|
|
|
epytest --import-check "${sitedir}"
|
|
}
|
|
|
|
src_install() {
|
|
distutils-r1_src_install
|
|
|
|
keepdir /var/log/mautrix
|
|
fowners root:mautrix /var/log/mautrix
|
|
fperms 770 /var/log/mautrix
|
|
|
|
mkdir -p "${ED}"/etc/mautrix || die
|
|
sed -i "${ED}/usr/example-config.yaml" \
|
|
-e "s:\./mautrix-telegram.log:/var/log/mautrix/${PN}.log:" || die
|
|
mv "${ED}"/usr/example-config.yaml "${ED}"/etc/mautrix/mautrix_telegram.yaml || die
|
|
|
|
newinitd "${FILESDIR}"/mautrix-telegram.initd-r1 mautrix-telegram
|
|
newconfd "${FILESDIR}"/mautrix-telegram.confd mautrix-telegram
|
|
systemd_dounit "${FILESDIR}"/mautrix-telegram.service
|
|
|
|
fowners -R root:mautrix /etc/mautrix
|
|
fperms -R 770 /etc/mautrix
|
|
}
|
|
|
|
pkg_postinst() {
|
|
optfeature "Prometheus statistics support" dev-python/prometheus_client
|
|
|
|
einfo
|
|
elog "Before you can use mautrix-telegram, you need to configure it correctly."
|
|
elog "The configuration file is located at \"/etc/mautrix/mautrix_telegram.yaml\""
|
|
elog
|
|
elog "When done, run the following command:"
|
|
elog " # emerge --config ${CATEGORY}/${PN}"
|
|
elog
|
|
elog "Then, you need to register the bridge with your homeserver."
|
|
elog "Refer your homeserver's documentation for instructions."
|
|
elog "The registration file is located at /var/lib/mautrix_telegram/registration.yaml"
|
|
elog
|
|
elog "Finally, you may start the mautrix-telegram daemon."
|
|
einfo
|
|
}
|
|
|
|
pkg_config() {
|
|
su - mautrix-telegram -s /bin/sh -c \
|
|
"/usr/bin/python -m mautrix_telegram -c /etc/mautrix/mautrix_telegram.yaml -g -r /var/lib/mautrix_telegram/registration.yaml"
|
|
}
|