diff options
author | Julien Roy <julien@jroy.ca> | 2024-05-25 15:16:59 -0400 |
---|---|---|
committer | Julien Roy <julien@jroy.ca> | 2024-05-25 15:16:59 -0400 |
commit | 7b67040be725e52ea4b694b3b04fd770e3894d5f (patch) | |
tree | dcaaef3a47eabd320649d24b3dda396437d777d1 | |
parent | 2b5ba798893356463532e8864d5816e6707afc72 (diff) | |
download | MrRoy-Overlay-7b67040be725e52ea4b694b3b04fd770e3894d5f.tar.gz MrRoy-Overlay-7b67040be725e52ea4b694b3b04fd770e3894d5f.tar.bz2 MrRoy-Overlay-7b67040be725e52ea4b694b3b04fd770e3894d5f.zip |
dev-python/django-simple-history: new package, add 3.5.0
Signed-off-by: Julien Roy <julien@jroy.ca>
-rw-r--r-- | dev-python/django-simple-history/Manifest | 1 | ||||
-rw-r--r-- | dev-python/django-simple-history/django-simple-history-3.5.0.ebuild | 33 | ||||
-rw-r--r-- | dev-python/django-simple-history/metadata.xml | 15 |
3 files changed, 49 insertions, 0 deletions
diff --git a/dev-python/django-simple-history/Manifest b/dev-python/django-simple-history/Manifest new file mode 100644 index 0000000..c204c5a --- /dev/null +++ b/dev-python/django-simple-history/Manifest @@ -0,0 +1 @@ +DIST django-simple-history-3.5.0.tar.gz 569458 BLAKE2B 523113726a1b90f02d966131756082458f9251eee8160cb1c25dbfda678769b3c61f5353c6db786123eedc153ec5027aaec0ab70b92225e55b45824061e5cc00 SHA512 7c147aefbe74b9ef2226e9906bb5bfd4c0265338e02d3f59c90fd087a9e66392e0931e3ab9d2f72d822d76512eda36b0fc9e459ffcb15ab9788f45ba0d4cc62a diff --git a/dev-python/django-simple-history/django-simple-history-3.5.0.ebuild b/dev-python/django-simple-history/django-simple-history-3.5.0.ebuild new file mode 100644 index 0000000..d1a19dc --- /dev/null +++ b/dev-python/django-simple-history/django-simple-history-3.5.0.ebuild @@ -0,0 +1,33 @@ +# Copyright 2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{10..12} ) +DISTUTILS_USE_PEP517=setuptools +PYPI_NO_NORMALIZE=1 + +inherit distutils-r1 pypi + +DESCRIPTION="Store model history and view/revert changes from admin site" +HOMEPAGE=" + https://github.com/jazzband/django-simple-history + https://pypi.org/project/django-simple-history/ +" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64" +# Tests fail to run +RESTRICT="test" + +RDEPEND=" + dev-python/django[${PYTHON_USEDEP}] + dev-python/psycopg:2[${PYTHON_USEDEP}] + dev-python/mysqlclient[${PYTHON_USEDEP}] + + test? ( dev-python/asgiref[${PYTHON_USEDEP}] ) +" +DEPEND="${RDEPEND}" + +distutils_enable_tests setup.py diff --git a/dev-python/django-simple-history/metadata.xml b/dev-python/django-simple-history/metadata.xml new file mode 100644 index 0000000..c01eb93 --- /dev/null +++ b/dev-python/django-simple-history/metadata.xml @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <name>Julien Roy</name> + <email>julien@jroy.ca</email> + </maintainer> + <upstream> + <bugs-to>https://github.com/jazzband/django-simple-history/issues</bugs-to> + <changelog>https://github.com/jazzband/django-simple-history/blob/master/CHANGES.rst</changelog> + <doc>https://django-simple-history.readthedocs.io/</doc> + <remote-id type="github">jazzband/django-simple-history</remote-id> + <remote-id type="pypi">django-simple-history</remote-id> + </upstream> +</pkgmetadata> |