Gentoo Archives: gentoo-commits

From: Michael Orlitzky <mjo@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-php/recaptcha/
Date: Fri, 01 Mar 2019 03:48:56
Message-Id: 1551410986.c0c0ed606a0b68bfaafcd5296c82df8a7d2de190.mjo@gentoo
1 commit: c0c0ed606a0b68bfaafcd5296c82df8a7d2de190
2 Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
3 AuthorDate: Fri Mar 1 03:29:46 2019 +0000
4 Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
5 CommitDate: Fri Mar 1 03:29:46 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0c0ed60
7
8 dev-php/recaptcha: remove "unused" recaptcha-1.1.3.ebuild.
9
10 Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org>
11 Package-Manager: Portage-2.3.51, Repoman-2.3.11
12
13 dev-php/recaptcha/Manifest | 1 -
14 dev-php/recaptcha/recaptcha-1.1.3.ebuild | 34 --------------------------------
15 2 files changed, 35 deletions(-)
16
17 diff --git a/dev-php/recaptcha/Manifest b/dev-php/recaptcha/Manifest
18 index b7b95a982e2..d82a9d1c40a 100644
19 --- a/dev-php/recaptcha/Manifest
20 +++ b/dev-php/recaptcha/Manifest
21 @@ -1,2 +1 @@
22 -DIST recaptcha-1.1.3.tar.gz 12909 BLAKE2B cbffb64148f3359f4d351089fde65d2b9c8136e0814b5f6aedb3cd9b7f7d3f8f77d9673059f3909b381cf9151ca34a31bb961fe8686bdda4612c718828e46036 SHA512 54e22654d3b24400e448260f1d075ba2586d33cf44e0a5187b5c1288705b29bf9de394f8ca48f7717a2480cb1ae21348cc63e724f1eb93f268407a942b13f9dd
23 DIST recaptcha-1.2.1.tar.gz 19935 BLAKE2B 43077b25d484940951bf070fa440b5d13c6992c2a157e06b81961b9692683a277d9507e44102dd0ba0cde66c892fd4736ed34cae4b001bdce0d4ab619828b432 SHA512 62df22a6f4b05006a6051db689994e455ada43f76406dd62c5c13f1d90ae64401e9d75c6a92f2c620a14c070d2b49199c20e70eb6284e42e676d37412a98abe4
24
25 diff --git a/dev-php/recaptcha/recaptcha-1.1.3.ebuild b/dev-php/recaptcha/recaptcha-1.1.3.ebuild
26 deleted file mode 100644
27 index c91f2b60d6f..00000000000
28 --- a/dev-php/recaptcha/recaptcha-1.1.3.ebuild
29 +++ /dev/null
30 @@ -1,34 +0,0 @@
31 -# Copyright 1999-2017 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -
36 -DESCRIPTION="PHP client library for Google's reCAPTCHA service"
37 -HOMEPAGE="https://github.com/google/recaptcha"
38 -SRC_URI="https://github.com/google/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
39 -
40 -LICENSE="BSD"
41 -SLOT="0"
42 -KEYWORDS="amd64 x86"
43 -IUSE="examples test"
44 -
45 -DEPEND="test? ( dev-php/phpunit )"
46 -RDEPEND="dev-lang/php"
47 -
48 -src_install(){
49 - insinto "/usr/share/php/${PN}"
50 - doins -r src/autoload.php src/ReCaptcha
51 - dodoc CONTRIBUTING.md README.md
52 - use examples && dodoc -r examples
53 -}
54 -
55 -src_test(){
56 - phpunit || die "test suite failed"
57 -}
58 -
59 -pkg_postinst(){
60 - elog "${PN} has been installed in /usr/share/php/${PN}/."
61 - elog "To use it in a script, require('${PN}/autoload.php'),"
62 - elog "and then use the ${PN} class normally. Most of the examples in"
63 - elog "the documentation should work without further modification."
64 -}