commit:     bd01a4a2de563660bddac850e0b677fa85b9e196
Author:     Hanno <hanno <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 21 14:05:59 2018 +0000
Commit:     Hanno Boeck <hanno <AT> gentoo <DOT> org>
CommitDate: Wed Mar 21 14:05:59 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd01a4a2

dev-python/python-recaptcha: Initial commit.

Fork of dev-python/recaptcha-client supporting recaptcha v2.

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-python/python-recaptcha/Manifest               |  1 +
 dev-python/python-recaptcha/metadata.xml           | 14 +++++++++++
 .../python-recaptcha/python-recaptcha-2.0.0.ebuild | 27 ++++++++++++++++++++++
 3 files changed, 42 insertions(+)

diff --git a/dev-python/python-recaptcha/Manifest 
b/dev-python/python-recaptcha/Manifest
new file mode 100644
index 00000000000..97c36aff4af
--- /dev/null
+++ b/dev-python/python-recaptcha/Manifest
@@ -0,0 +1 @@
+DIST python-recaptcha-2.0.0.tar.gz 5556 BLAKE2B 
b752915eb95343d7cbce483f49ce9d93ecf837c85a1615e414e14226c54dc60ede3187bd127e09769106a7eb06156ab2b73b0a3839743c29b6aba6e6c4d96951
 SHA512 
3a60062f36833888a110d5979ca7a7f46cef927bfcf427aba72d2f6a99a9c401b20bea997ff8fb2b8435876bed3880371a84568b95da1341940d275cba8ff178

diff --git a/dev-python/python-recaptcha/metadata.xml 
b/dev-python/python-recaptcha/metadata.xml
new file mode 100644
index 00000000000..97e2d6ed858
--- /dev/null
+++ b/dev-python/python-recaptcha/metadata.xml
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd";>
+<pkgmetadata>
+  <maintainer type="person">
+    <email>[email protected]</email>
+  </maintainer>
+  <maintainer type="project">
+    <email>[email protected]</email>
+    <name>Python</name>
+  </maintainer>
+  <upstream>
+    <remote-id type="github">redhat-infosec/python-recaptcha</remote-id>
+  </upstream>
+</pkgmetadata>

diff --git a/dev-python/python-recaptcha/python-recaptcha-2.0.0.ebuild 
b/dev-python/python-recaptcha/python-recaptcha-2.0.0.ebuild
new file mode 100644
index 00000000000..e77a8954718
--- /dev/null
+++ b/dev-python/python-recaptcha/python-recaptcha-2.0.0.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 )
+
+inherit distutils-r1
+
+DESCRIPTION="A plugin for reCAPTCHA and reCAPTCHA Mailhide"
+HOMEPAGE="https://github.com/redhat-infosec/python-recaptcha";
+SRC_URI="https://github.com/redhat-infosec/python-recaptcha/releases/download/v${PV}/${P}.tar.gz";
+KEYWORDS="~amd64"
+
+LICENSE="MIT"
+SLOT="0"
+
+RDEPEND="dev-python/pycrypto[${PYTHON_USEDEP}]
+       dev-python/simplejson[${PYTHON_USEDEP}]
+       !dev-python/recaptcha-client"
+DEPEND="${RDEPEND}
+       dev-python/setuptools[${PYTHON_USEDEP}]"
+
+python_install() {
+       distutils-r1_python_install
+       # otherwise we have an empty recaptcha dir/namespace
+       touch "${D}$(python_get_sitedir)"/recaptcha/__init__.py
+}

Reply via email to