dev-python/trivup: initial import

Signed-off-by: Alessandro Barbieri <lssndrbarbieri@gmail.com>
This commit is contained in:
Alessandro Barbieri
2022-03-17 14:10:04 +01:00
parent 52e0eee766
commit c9719e57c8
3 changed files with 57 additions and 0 deletions

View File

@@ -0,0 +1 @@
DIST trivup-0.10.0.tar.gz 31264 BLAKE2B ec7f389b95114041123b6057d91ecd063d31295a2cbd3fef8dd7174506e34eaa8f9a353ea39604d2ab519c36f7e737aa04293a7d5e6666469fe411e944465c7c SHA512 ed0465bcfba810334486d53795f89034751c4126dec44e4c9dc5df5ddfa9df852d5f1fe5f2dda373c59a9912e29fa55588a462d782a32fb93896122590d7caf2

View File

@@ -0,0 +1,28 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<longdescription lang="en">
trivup is a flexible, pluggable, light-weight, partly naiivistic, framework for trivially bringing up a cluster of applications.
The initial use-case is to bring up a simple Kafka cluster for easily testing librdkafka on different broker versions.
Featured apps:
Apache Kafka cluster with optional KRaft (ZooKeeper-less) support
Apache ZooKeeper
Confluent's Schema-Registry
Kerberos 5 KDC for GSSAPI/Kerberos authentication
OAUTHBEARER OIDC JWK ticket server
SSL CA/public/private certificate generation
SECURITY WARNING: trivup will run unprotected, wide-open, poorly-configured, server applications on your machine, providing an ingress vector for intrusion, theft and data-loss. DO NOT RUN ON PUBLIC NETWORKS.
</longdescription>
<upstream>
<remote-id type="github">edenhill/trivup</remote-id>
<remote-id type="pypi">trivup</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,28 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="Trivially Up a cluster of applications"
HOMEPAGE="
https://github.com/edenhill/trivup
https://pypi.org/project/trivup/
"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="BSD-2"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND="
dev-python/requests[${PYTHON_USEDEP}]
dev-python/jwcrypto[${PYTHON_USEDEP}]
dev-python/pyjwt[${PYTHON_USEDEP}]
"
DEPEND="${RDEPEND}"
distutils_enable_tests pytest