This commit is contained in:
Mario Fetka
2024-03-12 20:41:02 +01:00
parent 6efca6afa2
commit a14b80a8cf
74 changed files with 887 additions and 778 deletions

View File

@@ -0,0 +1,16 @@
# ChangeLog for dev-python/martINI
# Copyright 1999-2022 Gentoo Authors; Distributed under the GPL v2
# $Header: $
05 Apr 2022; Mario Fetka <mario.fetka@gmail.com> martINI-0.4.ebuild,
martINI-0.6.ebuild, metadata.xml:
dev-python/martINI: update metadata
07 Jun 2017; Mario Fetka <mario@gentoo.org> martINI-0.4.ebuild:
switch to distutils-r1
*martINI-0.4 (20 Feb 2013)
20 Feb 2013; Mario Fetka <mario.fetka@gmail.com> +martINI-0.4.ebuild,
+metadata.xml:
Initial checkin

View File

@@ -0,0 +1,5 @@
AUX setup.py 385 BLAKE2B 4520fcf71147803377339bcde6f2717393f9089882237aa71e662367122d8d44ab354d5333c7cd211fd0bd4b699dcc10a3be6a21a3ad77afdf63c318240544a9 SHA512 17425a5661e65b505cbe1dc19ecebdec92764530c8331ef1261e8f1443a9687c831c27ae4d8bf8e2d93410d535670ac4af4c34eee4691cb1970a53fd4624fd38
DIST deb-changectl-1.0.24.tar.gz 5775 BLAKE2B 6e21944728a8a14d4ee404de33b85e534bf4daf28ae8b17720f8a52eaf803bba4c2896c4ed9d6124859de2c678d4355b3f4ce96c450cd8cecfb9b55dd13a7f78 SHA512 9791124ddc46081086b68b289a799c950338047237d2076913a58e65de72cb66858886ba61bd13291943659a98cae925d43a42bf32501c083b843e74cf6304e3
EBUILD deb-changectl-1.0.24.ebuild 958 BLAKE2B f7c500a889237e92ff95a29543b88dc6e4a845d4ba309093476aca2265f78efebf73a64d942a34c81edf0f7fedb7b083308280005c7ded1d38be42d667f6894d SHA512 2aa526e9390ad8ed77aaa22cb59d64cf4aea1a24da6b84de2e05849820763f04561ef4bf64b987dc79074d2c2c81c7c61e02e8736e06262da0e5e4b8d746393b
MISC ChangeLog 489 BLAKE2B 73ea0a3ace103af9d8cb7b311dfa7f959b3dbc785b0602257ae0d3c24e547c191be8ef78ca081d8ea32f4b4d7aff750f04252a1751520d8da62e7575d3a42ff8 SHA512 cc982bba8a6dfec9cf278842f11175c9262087bd126a44735943dde6c9f88e93d0182ba55c390e3d568cdcde7c41c488848c6d03783e313d76bc914ece366c4d
MISC metadata.xml 408 BLAKE2B 66a3e2838d5c5f95c7463733cd13b1230ef3ca005ec0c5dac797561be30f950da98dfa41eeb4d43cf97500c9a2e0d04c57b0b084d60107072a988dd7c4d16ded SHA512 9cac3e4a07c425e87274de776e03d243e462341168235cd3991ef4706aa1a902cf6591ae8e965b9c4ed370fc2ebef3ca805a9c761d05c4b994ae8667198b267c

View File

@@ -0,0 +1,35 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..12} )
DISTUTILS_SINGLE_IMPL=1
inherit distutils-r1
DESCRIPTION="deb-changectl only reads from the git log and writes to the changelog"
HOMEPAGE="https://github.com/seanodea/deb-changectl"
SRC_URI="https://github.com/seanodea/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~x86-linux"
IUSE=""
REQUIRED_USE=${PYTHON_REQUIRED_USE}
RDEPEND="dev-python/pyyaml
dev-python/python-debian
dev-python/GitPython"
DEPEND="${RDEPEND}"
src_prepare() {
# unpin deps
cat ${FILESDIR}/setup.py > setup.py || die
echo "" > ${PN}/release/__init__.py
echo "" > ${PN}/snapshot/__init__.py
sed -e 's!from !from deb_changectl.!g' -i ${PN}/${PN}.py
mv ${PN}/${PN}.py ${PN}/${PN}
mv ${PN} deb_changectl
distutils-r1_src_prepare
}

View File

@@ -0,0 +1,11 @@
from setuptools import setup, find_packages
setup(
name='deb_changectl',
version='1.0.24',
url='https://github.com/seanodea/deb-changectl',
description='Description of my package',
packages=find_packages(include=['deb_changectl', 'deb_changectl.*']),
scripts=['deb_changectl/deb-changectl'],
# install_requires=['numpy >= 1.11.1', 'matplotlib >= 1.5.1'],
)

View File

@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>mario.fetka@gmail.com</email>
<description>Primary maintainer</description>
</maintainer>
<maintainer type="project">
<email>exampleproject@gentoo.org</email>
<name>Geos One Linamh Project</name>
</maintainer>
</pkgmetadata>