Gentoo Archives: gentoo-commits

From: William Hubbs <williamh@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/django-filter/
Date: Thu, 14 Mar 2019 21:03:18
Message-Id: 1552597382.f6c58f30e7b30f34861b3bd4ffe0db265e78f8dd.williamh@gentoo
1 commit: f6c58f30e7b30f34861b3bd4ffe0db265e78f8dd
2 Author: William Hubbs <william.hubbs <AT> sony <DOT> com>
3 AuthorDate: Thu Mar 14 20:49:52 2019 +0000
4 Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 14 21:03:02 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6c58f30
7
8 dev-python/django-filter: Django QuerySet filtering from URL parameters
9
10 Copyright: Sony Interactive Entertainment Inc.
11 Package-Manager: Portage-2.3.51, Repoman-2.3.12
12 Signed-off-by: William Hubbs <williamh <AT> gentoo.org>
13
14 dev-python/django-filter/Manifest | 1 +
15 dev-python/django-filter/django-filter-2.1.0.ebuild | 19 +++++++++++++++++++
16 dev-python/django-filter/metadata.xml | 8 ++++++++
17 3 files changed, 28 insertions(+)
18
19 diff --git a/dev-python/django-filter/Manifest b/dev-python/django-filter/Manifest
20 new file mode 100644
21 index 00000000000..731d3c06531
22 --- /dev/null
23 +++ b/dev-python/django-filter/Manifest
24 @@ -0,0 +1 @@
25 +DIST django-filter-2.1.0.tar.gz 142256 BLAKE2B 0763c3032cdd857be30050caa27af6bd938030c37cc52f30c98ab751c81dc8b2ce0c974ed19ae8c859347fbec2139b27a08657e99c83bc8e79b8883196050897 SHA512 e917ec0fb1cdb8f19e6a7e50989d2df3697baa0bb50eaa62f5916cc0fe000e1e3594672a312114ab761d49b9f83bf7f5c1f4a35f4014c113ac9387a9bf086e10
26
27 diff --git a/dev-python/django-filter/django-filter-2.1.0.ebuild b/dev-python/django-filter/django-filter-2.1.0.ebuild
28 new file mode 100644
29 index 00000000000..aa5e60df1dd
30 --- /dev/null
31 +++ b/dev-python/django-filter/django-filter-2.1.0.ebuild
32 @@ -0,0 +1,19 @@
33 +# Copyright 1999-2019 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +
38 +PYTHON_COMPAT=( python3_{4,5,6,7} )
39 +inherit distutils-r1
40 +
41 +DESCRIPTION="Django app allowing declarative dynamic QuerySet filtering from URL parameters"
42 +HOMEPAGE="https://github.com/carltongibson/django-filter"
43 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
44 +
45 +LICENSE="BSD"
46 +SLOT="0"
47 +KEYWORDS="~amd64"
48 +
49 +RDEPEND=">=dev-python/django-1.11[${PYTHON_USEDEP}]"
50 +DEPEND="${RDEPEND}
51 +dev-python/setuptools[${PYTHON_USEDEP}]"
52
53 diff --git a/dev-python/django-filter/metadata.xml b/dev-python/django-filter/metadata.xml
54 new file mode 100644
55 index 00000000000..c36c37139fa
56 --- /dev/null
57 +++ b/dev-python/django-filter/metadata.xml
58 @@ -0,0 +1,8 @@
59 +<?xml version="1.0" encoding="UTF-8"?>
60 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
61 +<pkgmetadata>
62 + <maintainer type="person">
63 + <email>williamh@g.o</email>
64 + <name>William Hubbs</name>
65 + </maintainer>
66 +</pkgmetadata>