diff --git a/dev-python/trivup/Manifest b/dev-python/trivup/Manifest new file mode 100644 index 0000000000..238b605f9f --- /dev/null +++ b/dev-python/trivup/Manifest @@ -0,0 +1 @@ +DIST trivup-0.10.0.tar.gz 31264 BLAKE2B ec7f389b95114041123b6057d91ecd063d31295a2cbd3fef8dd7174506e34eaa8f9a353ea39604d2ab519c36f7e737aa04293a7d5e6666469fe411e944465c7c SHA512 ed0465bcfba810334486d53795f89034751c4126dec44e4c9dc5df5ddfa9df852d5f1fe5f2dda373c59a9912e29fa55588a462d782a32fb93896122590d7caf2 diff --git a/dev-python/trivup/metadata.xml b/dev-python/trivup/metadata.xml new file mode 100644 index 0000000000..8b0293d219 --- /dev/null +++ b/dev-python/trivup/metadata.xml @@ -0,0 +1,28 @@ + + + + + lssndrbarbieri@gmail.com + Alessandro Barbieri + + +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. + + + edenhill/trivup + trivup + + diff --git a/dev-python/trivup/trivup-0.10.0.ebuild b/dev-python/trivup/trivup-0.10.0.ebuild new file mode 100644 index 0000000000..dad28aca95 --- /dev/null +++ b/dev-python/trivup/trivup-0.10.0.ebuild @@ -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