app-admin/synadm: new package, add 0.38

Signed-off-by: Julien Roy <julien@jroy.ca>
This commit is contained in:
Julien Roy
2023-01-13 20:50:06 -05:00
parent c03ba8df6e
commit 73b8045b44
3 changed files with 47 additions and 0 deletions

View File

@@ -0,0 +1 @@
DIST synadm-0.38.gh.tar.gz 53000 BLAKE2B 9684a16ce1962acdc4aec27dce6695b9f210b734a50b4ff37271d20d3a9a0844bb8f26cadd23442c97cc71525e7a5f2ae3fbc0a1222357ea61f735647196b249 SHA512 e55a2f4fe2ca3651c42d35cfd630f89aed0686a881682bc1a65149689b918b2499649c5be1c4c54d81eb217cac1bc10263e04deff905c9de33d51883c16a0bfb

View File

@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>julien@jroy.ca</email>
<name>Julien Roy</name>
</maintainer>
<longdescription>A CLI tool to help admins of Matrix-Synapse homeservers conveniently issue commands available via its admin API.</longdescription>
<upstream>
<maintainer>
<name>Johannes Tiefenbacher</name>
<email>jt@peek-a-boo.at</email>
</maintainer>
<changelog>https://github.com/JOJ0/synadm/releases</changelog>
<bugs-to>https://github.com/JOJ0/synadm/issues</bugs-to>
<remote-id type="github">JOJ0/synadm</remote-id>
<remote-id type="pypi">synadm</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,27 @@
# Copyright 2022-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..11} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1
DESCRIPTION="Command line admin tool for Synapse"
HOMEPAGE="https://github.com/JOJ0/synadm"
SRC_URI="https://github.com/JOJ0/${PN}/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND="
dev-python/click[${PYTHON_USEDEP}]
dev-python/click-option-group[${PYTHON_USEDEP}]
dev-python/dnspython[${PYTHON_USEDEP}]
dev-python/pyyaml[${PYTHON_USEDEP}]
dev-python/requests[${PYTHON_USEDEP}]
dev-python/tabulate[${PYTHON_USEDEP}]
"
DEPEND="${RDEPEND}"