[gentoo-commits] repo/gentoo:master commit in: dev-php/PEAR-Crypt_GPG/files/, dev-php/PEAR-Crypt_GPG/

2023-07-05 Thread Michael Orlitzky
commit: 786475e77ec09887be16e2fbfc09336003dd6e71
Author: Michael Orlitzky  gentoo  org>
AuthorDate: Wed Jul  5 20:45:02 2023 +
Commit: Michael Orlitzky  gentoo  org>
CommitDate: Wed Jul  5 20:49:40 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=786475e7

dev-php/PEAR-Crypt_GPG: drop 1.6.2

Bug: https://bugs.gentoo.org/833570
Signed-off-by: Michael Orlitzky  gentoo.org>

 dev-php/PEAR-Crypt_GPG/Manifest|  1 -
 dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.2.ebuild | 49 ---
 .../files/fix-unit-tests-with-new-gpg.patch| 55 --
 3 files changed, 105 deletions(-)

diff --git a/dev-php/PEAR-Crypt_GPG/Manifest b/dev-php/PEAR-Crypt_GPG/Manifest
index 94e41118baf7..7209c7c0e908 100644
--- a/dev-php/PEAR-Crypt_GPG/Manifest
+++ b/dev-php/PEAR-Crypt_GPG/Manifest
@@ -1,2 +1 @@
-DIST Crypt_GPG-1.6.2.tgz 346709 BLAKE2B 
abced2fe8c909f06690c38884506ce03df4c5ef3ef460aafce65ea9405c6974f8af320fd5a07a7967b45421a9a67aa27026c28ef7eb1402ffefba527007a33ae
 SHA512 
9d954d96b4e461c75f79ce9bc701d062e3f19671690228e6e0ce5265733ac1de9c06520f9f750348f3c37f01ccb79720574b2d2f371e69c8a25ae6e1bc18aabd
 DIST Crypt_GPG-1.6.7.tgz 343957 BLAKE2B 
c95346005fdd36bd97e2a0e6cd42c5a2898fb59f0a4a3d3b09bd99a409bd9c998b267ffd84ab28148e17c3f7e78e094393c3b077998b05dc2d7ddcb0ab81394b
 SHA512 
dd629271ebbcb98df5d31313c1a6911b62964046c758e00b55377170653e9880d2edc7d0b953fd6ae441d74238c4a8e1008bf6a9195a19ff463bcc82665f14e8

diff --git a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.2.ebuild 
b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.2.ebuild
deleted file mode 100644
index e0f4c627a409..
--- a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.2.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-MY_PN="${PN/PEAR-/}"
-MY_PV="${PV/_/}"
-MY_P="${MY_PN}-${MY_PV}"
-
-DESCRIPTION="PHP interface to the GNU Privacy Guard (GnuPG)"
-HOMEPAGE="https://pear.php.net/package/Crypt_GPG;
-SRC_URI="http://download.pear.php.net/package/${MY_P}.tgz;
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="amd64 arm ~hppa ~ia64 ppc ppc64 sparc x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="app-crypt/gnupg
-   dev-lang/php:*[posix,unicode]
-   dev-php/PEAR-Console_CommandLine
-   dev-php/PEAR-Exception"
-DEPEND="test? (${RDEPEND} 
-Date: Sat, 16 Sep 2017 13:05:37 +0200
-Subject: [PATCH] Fix Bug #21242: PHPUnit tests fail sometimes while deleting
- S.gpg-agent.extra
-

- tests/TestCase.php | 20 ++--
- 1 file changed, 14 insertions(+), 6 deletions(-)
-
-diff --git a/tests/TestCase.php b/tests/TestCase.php
-index b91ea7d..1ad8028 100644
 a/tests/TestCase.php
-+++ b/tests/TestCase.php
-@@ -583,7 +583,10 @@ private function _tearDownKeyring()
- $iterator = new DirectoryIterator($dirname);
- foreach ($iterator as $file) {
- if (!$file->isDot()) {
--unlink($dirname . '/' . $file->getFilename());
-+$filename = $dirname . '/' . $file->getFilename();
-+if (file_exists($filename)) {
-+unlink($filename);
-+}
- }
- }
- rmdir($dirname);
-@@ -595,7 +598,10 @@ private function _tearDownKeyring()
- 
- foreach ($iterator as $file) {
- if (!$file->isDot()) {
--unlink($homedir . '/' . $file->getFilename());
-+$filename = $homedir . '/' . $file->getFilename();
-+if (file_exists($filename)) {
-+unlink($filename);
-+}
- }
- }
- 
-@@ -614,10 +620,12 @@ private function _tearDownTempdir()
- foreach ($iterator as $file) {
- if (!$file->isDot()) {
- $filename = $this->getTempFilename($file->getFilename());
--if (is_dir($filename)) {
--rmdir($filename);
--} else {
--unlink($filename);
-+if (file_exists($filename)) {
-+if (is_dir($filename)) {
-+rmdir($filename);
-+} else {
-+unlink($filename);
-+}
- }
- }
- }



[gentoo-commits] repo/gentoo:master commit in: dev-php/PEAR-Crypt_GPG/

2023-07-04 Thread Sam James
commit: e24c554261402cb6698fd1ceb39b50dcc1367bb0
Author: Sam James  gentoo  org>
AuthorDate: Wed Jul  5 04:25:14 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jul  5 04:25:14 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e24c5542

dev-php/PEAR-Crypt_GPG: Stabilize 1.6.7 ALLARCHES, #833501

Signed-off-by: Sam James  gentoo.org>

 dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.7.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.7.ebuild 
b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.7.ebuild
index a3a112cc6615..7537f6de6eb6 100644
--- a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.7.ebuild
+++ b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.7.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -12,7 +12,7 @@ HOMEPAGE="https://pear.php.net/package/Crypt_GPG;
 SRC_URI="http://download.pear.php.net/package/${MY_P}.tgz;
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="amd64 arm ~hppa ~ia64 ppc ppc64 sparc x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-php/PEAR-Crypt_GPG/files/, dev-php/PEAR-Crypt_GPG/

2022-02-16 Thread Brian Evans
commit: 4cfbe3bd8b37007ed590cd1e1f34d3e83031fa79
Author: Brian Evans  gentoo  org>
AuthorDate: Wed Feb 16 19:13:24 2022 +
Commit: Brian Evans  gentoo  org>
CommitDate: Wed Feb 16 19:14:15 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4cfbe3bd

dev-php/PEAR-Crypt_GPG: Drop old unstable

Signed-off-by: Brian Evans  gentoo.org>

 dev-php/PEAR-Crypt_GPG/Manifest|  4 --
 dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.3.ebuild | 47 
 dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.4.ebuild | 49 -
 dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.5.ebuild | 51 --
 dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.6.ebuild | 49 -
 dev-php/PEAR-Crypt_GPG/files/1.6.4-fix-tests.patch | 45 ---
 6 files changed, 245 deletions(-)

diff --git a/dev-php/PEAR-Crypt_GPG/Manifest b/dev-php/PEAR-Crypt_GPG/Manifest
index eb329d0e6a8d..94e41118baf7 100644
--- a/dev-php/PEAR-Crypt_GPG/Manifest
+++ b/dev-php/PEAR-Crypt_GPG/Manifest
@@ -1,6 +1,2 @@
 DIST Crypt_GPG-1.6.2.tgz 346709 BLAKE2B 
abced2fe8c909f06690c38884506ce03df4c5ef3ef460aafce65ea9405c6974f8af320fd5a07a7967b45421a9a67aa27026c28ef7eb1402ffefba527007a33ae
 SHA512 
9d954d96b4e461c75f79ce9bc701d062e3f19671690228e6e0ce5265733ac1de9c06520f9f750348f3c37f01ccb79720574b2d2f371e69c8a25ae6e1bc18aabd
-DIST Crypt_GPG-1.6.3.tgz 346999 BLAKE2B 
8402ef382a6393972a3fda7370fbd37dec19d0ebabb6b316d35783538dbc01746476977d7dc3da487876201cd678964d9572dc67a43911319b1b614004a3c909
 SHA512 
f1ad2560a43a1e8f5a33269bc4ae4067e19e5325fdbd8d2fc55f6cb8aad89258df45fbecedd93a21749f33024c819f07399580b1a4760f5740f26043109dc396
-DIST Crypt_GPG-1.6.4.tgz 346390 BLAKE2B 
22e9e9d893f96bb3c3dc538b168a35366d2b699e92bf832370223879e90e8018cfd3b736e099807fdcc897b7569a40af66e72f011eaeb7400477053b7838409d
 SHA512 
3eee39702abe97fc322e5976ebe8a7f7ba07bc950d22aa6636cadf38b0bd9c6c6316d7be35f21a8d0e8dfdb66a76db33121edb34736869d31ae89b03468cf470
-DIST Crypt_GPG-1.6.5.tgz 346966 BLAKE2B 
5ca074b57c44d99159409b1c7ce0adcf672b59882f6f2dddf864df692243457ccd69c8018b5031dc6ab0ea0e88dba0586b8842992184be65c72100d3f34904c1
 SHA512 
86feeff3e698c8ce133b0481ca96a000f00801f52c128dc8cb4cfec37040494c1e7176138e9988ebf0e85206c5fe3b51f939b4d7ca6decc16a787be4f4e8f261
-DIST Crypt_GPG-1.6.6.tgz 343929 BLAKE2B 
1cc5b01d5c44e614cc67e5f21298120aa44ff4b4efb933a8fdb64c02eb7f19c7299a7d53e7d032f9ab013b8d319798dec5732c382590bdb1da52998f30eab9b9
 SHA512 
38f721cf818972f835162b9e405efb55160276d759361e1f351645d585695f903445accf83f190f7f14f202e2bebe3c78b7ff2b8af2151c3d66bd6636f98859a
 DIST Crypt_GPG-1.6.7.tgz 343957 BLAKE2B 
c95346005fdd36bd97e2a0e6cd42c5a2898fb59f0a4a3d3b09bd99a409bd9c998b267ffd84ab28148e17c3f7e78e094393c3b077998b05dc2d7ddcb0ab81394b
 SHA512 
dd629271ebbcb98df5d31313c1a6911b62964046c758e00b55377170653e9880d2edc7d0b953fd6ae441d74238c4a8e1008bf6a9195a19ff463bcc82665f14e8

diff --git a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.3.ebuild 
b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.3.ebuild
deleted file mode 100644
index e0cea4ce1b04..
--- a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.3.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-MY_PN="${PN/PEAR-/}"
-MY_PV="${PV/_/}"
-MY_P="${MY_PN}-${MY_PV}"
-
-DESCRIPTION="PHP interface to the GNU Privacy Guard (GnuPG)"
-HOMEPAGE="https://pear.php.net/package/Crypt_GPG;
-SRC_URI="http://download.pear.php.net/package/${MY_P}.tgz;
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="app-crypt/gnupg
-   dev-lang/php:*[posix,unicode]
-   dev-php/PEAR-Console_CommandLine
-   dev-php/PEAR-Exception"
-BDEPEND="test? ( ${RDEPEND} https://pear.php.net/package/Crypt_GPG;
-SRC_URI="http://download.pear.php.net/package/${MY_P}.tgz;
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="app-crypt/gnupg
-   dev-lang/php:*[posix,unicode]
-   dev-php/PEAR-Console_CommandLine
-   dev-php/PEAR-Exception"
-BDEPEND="test? ( ${RDEPEND} https://pear.php.net/package/Crypt_GPG;
-SRC_URI="http://download.pear.php.net/package/${MY_P}.tgz;
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="app-crypt/gnupg
-   dev-lang/php:*[posix,unicode]
-   dev-php/PEAR-Console_CommandLine
-   dev-php/PEAR-Exception"
-BDEPEND="test? ( ${RDEPEND} https://pear.php.net/package/Crypt_GPG;
-SRC_URI="http://download.pear.php.net/package/${MY_P}.tgz;
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="app-crypt/gnupg
-   dev-lang/php:*[posix,unicode]
-   dev-php/PEAR-Console_CommandLine
-   

[gentoo-commits] repo/gentoo:master commit in: dev-php/PEAR-Crypt_GPG/

2022-02-16 Thread Brian Evans
commit: 2212801aec840c701039357cf5c02a3533d12f5b
Author: Brian Evans  gentoo  org>
AuthorDate: Wed Feb 16 19:02:52 2022 +
Commit: Brian Evans  gentoo  org>
CommitDate: Wed Feb 16 19:14:14 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2212801a

dev-php/PEAR-Crypt_GPG: Version bump for 1.6.7 Security Release

Signed-off-by: Brian Evans  gentoo.org>

 dev-php/PEAR-Crypt_GPG/Manifest|  1 +
 dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.7.ebuild | 49 ++
 2 files changed, 50 insertions(+)

diff --git a/dev-php/PEAR-Crypt_GPG/Manifest b/dev-php/PEAR-Crypt_GPG/Manifest
index 3fc918e92fa8..eb329d0e6a8d 100644
--- a/dev-php/PEAR-Crypt_GPG/Manifest
+++ b/dev-php/PEAR-Crypt_GPG/Manifest
@@ -3,3 +3,4 @@ DIST Crypt_GPG-1.6.3.tgz 346999 BLAKE2B 
8402ef382a6393972a3fda7370fbd37dec19d0eb
 DIST Crypt_GPG-1.6.4.tgz 346390 BLAKE2B 
22e9e9d893f96bb3c3dc538b168a35366d2b699e92bf832370223879e90e8018cfd3b736e099807fdcc897b7569a40af66e72f011eaeb7400477053b7838409d
 SHA512 
3eee39702abe97fc322e5976ebe8a7f7ba07bc950d22aa6636cadf38b0bd9c6c6316d7be35f21a8d0e8dfdb66a76db33121edb34736869d31ae89b03468cf470
 DIST Crypt_GPG-1.6.5.tgz 346966 BLAKE2B 
5ca074b57c44d99159409b1c7ce0adcf672b59882f6f2dddf864df692243457ccd69c8018b5031dc6ab0ea0e88dba0586b8842992184be65c72100d3f34904c1
 SHA512 
86feeff3e698c8ce133b0481ca96a000f00801f52c128dc8cb4cfec37040494c1e7176138e9988ebf0e85206c5fe3b51f939b4d7ca6decc16a787be4f4e8f261
 DIST Crypt_GPG-1.6.6.tgz 343929 BLAKE2B 
1cc5b01d5c44e614cc67e5f21298120aa44ff4b4efb933a8fdb64c02eb7f19c7299a7d53e7d032f9ab013b8d319798dec5732c382590bdb1da52998f30eab9b9
 SHA512 
38f721cf818972f835162b9e405efb55160276d759361e1f351645d585695f903445accf83f190f7f14f202e2bebe3c78b7ff2b8af2151c3d66bd6636f98859a
+DIST Crypt_GPG-1.6.7.tgz 343957 BLAKE2B 
c95346005fdd36bd97e2a0e6cd42c5a2898fb59f0a4a3d3b09bd99a409bd9c998b267ffd84ab28148e17c3f7e78e094393c3b077998b05dc2d7ddcb0ab81394b
 SHA512 
dd629271ebbcb98df5d31313c1a6911b62964046c758e00b55377170653e9880d2edc7d0b953fd6ae441d74238c4a8e1008bf6a9195a19ff463bcc82665f14e8

diff --git a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.7.ebuild 
b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.7.ebuild
new file mode 100644
index ..a3a112cc6615
--- /dev/null
+++ b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.7.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+MY_PN="${PN/PEAR-/}"
+MY_PV="${PV/_/}"
+MY_P="${MY_PN}-${MY_PV}"
+
+DESCRIPTION="PHP interface to the GNU Privacy Guard (GnuPG)"
+HOMEPAGE="https://pear.php.net/package/Crypt_GPG;
+SRC_URI="http://download.pear.php.net/package/${MY_P}.tgz;
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="app-crypt/gnupg
+   dev-lang/php:*[posix(-),unicode(-)]
+   dev-php/PEAR-Console_CommandLine
+   dev-php/PEAR-Exception"
+BDEPEND="test? ( ${RDEPEND} 

[gentoo-commits] repo/gentoo:master commit in: dev-php/PEAR-Crypt_GPG/

2021-09-07 Thread Brian Evans
commit: 160b07780ef39dfbc1c7ad0fb15049932d381d6b
Author: Brian Evans  gentoo  org>
AuthorDate: Tue Sep  7 13:31:38 2021 +
Commit: Brian Evans  gentoo  org>
CommitDate: Tue Sep  7 13:31:38 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=160b0778

dev-php/PEAR-Crypt_GPG: Version bump for 1.6.6

Signed-off-by: Brian Evans  gentoo.org>

 dev-php/PEAR-Crypt_GPG/Manifest|  1 +
 dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.6.ebuild | 49 ++
 2 files changed, 50 insertions(+)

diff --git a/dev-php/PEAR-Crypt_GPG/Manifest b/dev-php/PEAR-Crypt_GPG/Manifest
index a4fbd22ca52..3fc918e92fa 100644
--- a/dev-php/PEAR-Crypt_GPG/Manifest
+++ b/dev-php/PEAR-Crypt_GPG/Manifest
@@ -2,3 +2,4 @@ DIST Crypt_GPG-1.6.2.tgz 346709 BLAKE2B 
abced2fe8c909f06690c38884506ce03df4c5ef3
 DIST Crypt_GPG-1.6.3.tgz 346999 BLAKE2B 
8402ef382a6393972a3fda7370fbd37dec19d0ebabb6b316d35783538dbc01746476977d7dc3da487876201cd678964d9572dc67a43911319b1b614004a3c909
 SHA512 
f1ad2560a43a1e8f5a33269bc4ae4067e19e5325fdbd8d2fc55f6cb8aad89258df45fbecedd93a21749f33024c819f07399580b1a4760f5740f26043109dc396
 DIST Crypt_GPG-1.6.4.tgz 346390 BLAKE2B 
22e9e9d893f96bb3c3dc538b168a35366d2b699e92bf832370223879e90e8018cfd3b736e099807fdcc897b7569a40af66e72f011eaeb7400477053b7838409d
 SHA512 
3eee39702abe97fc322e5976ebe8a7f7ba07bc950d22aa6636cadf38b0bd9c6c6316d7be35f21a8d0e8dfdb66a76db33121edb34736869d31ae89b03468cf470
 DIST Crypt_GPG-1.6.5.tgz 346966 BLAKE2B 
5ca074b57c44d99159409b1c7ce0adcf672b59882f6f2dddf864df692243457ccd69c8018b5031dc6ab0ea0e88dba0586b8842992184be65c72100d3f34904c1
 SHA512 
86feeff3e698c8ce133b0481ca96a000f00801f52c128dc8cb4cfec37040494c1e7176138e9988ebf0e85206c5fe3b51f939b4d7ca6decc16a787be4f4e8f261
+DIST Crypt_GPG-1.6.6.tgz 343929 BLAKE2B 
1cc5b01d5c44e614cc67e5f21298120aa44ff4b4efb933a8fdb64c02eb7f19c7299a7d53e7d032f9ab013b8d319798dec5732c382590bdb1da52998f30eab9b9
 SHA512 
38f721cf818972f835162b9e405efb55160276d759361e1f351645d585695f903445accf83f190f7f14f202e2bebe3c78b7ff2b8af2151c3d66bd6636f98859a

diff --git a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.6.ebuild 
b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.6.ebuild
new file mode 100644
index 000..0315abb14ed
--- /dev/null
+++ b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.6.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+MY_PN="${PN/PEAR-/}"
+MY_PV="${PV/_/}"
+MY_P="${MY_PN}-${MY_PV}"
+
+DESCRIPTION="PHP interface to the GNU Privacy Guard (GnuPG)"
+HOMEPAGE="https://pear.php.net/package/Crypt_GPG;
+SRC_URI="http://download.pear.php.net/package/${MY_P}.tgz;
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="app-crypt/gnupg
+   dev-lang/php:*[posix,unicode]
+   dev-php/PEAR-Console_CommandLine
+   dev-php/PEAR-Exception"
+BDEPEND="test? ( ${RDEPEND} 

[gentoo-commits] repo/gentoo:master commit in: dev-php/PEAR-Crypt_GPG/

2021-03-29 Thread Thomas Deutschmann
commit: bed8c0acaa9eb2ec6238181d69acc1ea14c35574
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Mar 29 19:18:33 2021 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Mar 30 00:19:14 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bed8c0ac

dev-php/PEAR-Crypt_GPG: bump to v1.6.5

Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Thomas Deutschmann  gentoo.org>

 dev-php/PEAR-Crypt_GPG/Manifest|  1 +
 dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.5.ebuild | 51 ++
 2 files changed, 52 insertions(+)

diff --git a/dev-php/PEAR-Crypt_GPG/Manifest b/dev-php/PEAR-Crypt_GPG/Manifest
index 56adfac2535..a4fbd22ca52 100644
--- a/dev-php/PEAR-Crypt_GPG/Manifest
+++ b/dev-php/PEAR-Crypt_GPG/Manifest
@@ -1,3 +1,4 @@
 DIST Crypt_GPG-1.6.2.tgz 346709 BLAKE2B 
abced2fe8c909f06690c38884506ce03df4c5ef3ef460aafce65ea9405c6974f8af320fd5a07a7967b45421a9a67aa27026c28ef7eb1402ffefba527007a33ae
 SHA512 
9d954d96b4e461c75f79ce9bc701d062e3f19671690228e6e0ce5265733ac1de9c06520f9f750348f3c37f01ccb79720574b2d2f371e69c8a25ae6e1bc18aabd
 DIST Crypt_GPG-1.6.3.tgz 346999 BLAKE2B 
8402ef382a6393972a3fda7370fbd37dec19d0ebabb6b316d35783538dbc01746476977d7dc3da487876201cd678964d9572dc67a43911319b1b614004a3c909
 SHA512 
f1ad2560a43a1e8f5a33269bc4ae4067e19e5325fdbd8d2fc55f6cb8aad89258df45fbecedd93a21749f33024c819f07399580b1a4760f5740f26043109dc396
 DIST Crypt_GPG-1.6.4.tgz 346390 BLAKE2B 
22e9e9d893f96bb3c3dc538b168a35366d2b699e92bf832370223879e90e8018cfd3b736e099807fdcc897b7569a40af66e72f011eaeb7400477053b7838409d
 SHA512 
3eee39702abe97fc322e5976ebe8a7f7ba07bc950d22aa6636cadf38b0bd9c6c6316d7be35f21a8d0e8dfdb66a76db33121edb34736869d31ae89b03468cf470
+DIST Crypt_GPG-1.6.5.tgz 346966 BLAKE2B 
5ca074b57c44d99159409b1c7ce0adcf672b59882f6f2dddf864df692243457ccd69c8018b5031dc6ab0ea0e88dba0586b8842992184be65c72100d3f34904c1
 SHA512 
86feeff3e698c8ce133b0481ca96a000f00801f52c128dc8cb4cfec37040494c1e7176138e9988ebf0e85206c5fe3b51f939b4d7ca6decc16a787be4f4e8f261

diff --git a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.5.ebuild 
b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.5.ebuild
new file mode 100644
index 000..2574cb9fb2d
--- /dev/null
+++ b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.5.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+MY_PN="${PN/PEAR-/}"
+MY_PV="${PV/_/}"
+MY_P="${MY_PN}-${MY_PV}"
+
+DESCRIPTION="PHP interface to the GNU Privacy Guard (GnuPG)"
+HOMEPAGE="https://pear.php.net/package/Crypt_GPG;
+SRC_URI="http://download.pear.php.net/package/${MY_P}.tgz;
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="app-crypt/gnupg
+   dev-lang/php:*[posix,unicode]
+   dev-php/PEAR-Console_CommandLine
+   dev-php/PEAR-Exception"
+BDEPEND="test? ( ${RDEPEND} 

[gentoo-commits] repo/gentoo:master commit in: dev-php/PEAR-Crypt_GPG/

2021-03-17 Thread Brian Evans
commit: 55e10974c7c124df4cf7d745da2836d9b510d6c9
Author: Brian Evans  gentoo  org>
AuthorDate: Tue Mar 16 17:53:51 2021 +
Commit: Brian Evans  gentoo  org>
CommitDate: Wed Mar 17 12:28:20 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=55e10974

dev-php/PEAR-Crypt_GPG: Mark as allarches

Signed-off-by: Brian Evans  gentoo.org>

 dev-php/PEAR-Crypt_GPG/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-php/PEAR-Crypt_GPG/metadata.xml 
b/dev-php/PEAR-Crypt_GPG/metadata.xml
index a023f1bf487..6d24d2bc5e1 100644
--- a/dev-php/PEAR-Crypt_GPG/metadata.xml
+++ b/dev-php/PEAR-Crypt_GPG/metadata.xml
@@ -13,4 +13,5 @@
 pear/Crypt_GPG
 Crypt_GPG
   
+  
 



[gentoo-commits] repo/gentoo:master commit in: dev-php/PEAR-Crypt_GPG/, dev-php/PEAR-Crypt_GPG/files/

2021-02-02 Thread Brian Evans
commit: e3cc58f44c5055f87d71c5b55122813a9e880a37
Author: Brian Evans  gentoo  org>
AuthorDate: Tue Feb  2 19:51:05 2021 +
Commit: Brian Evans  gentoo  org>
CommitDate: Tue Feb  2 19:51:05 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3cc58f4

dev-php/PEAR-Crypt_GPG: Fix unit tests for phpunit-8

Signed-off-by: Brian Evans  gentoo.org>

 dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.4.ebuild |  6 ++-
 dev-php/PEAR-Crypt_GPG/files/1.6.4-fix-tests.patch | 45 ++
 2 files changed, 49 insertions(+), 2 deletions(-)

diff --git a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.4.ebuild 
b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.4.ebuild
index e0cea4ce1b0..720a949b060 100644
--- a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.4.ebuild
+++ b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -20,7 +20,9 @@ RDEPEND="app-crypt/gnupg
dev-lang/php:*[posix,unicode]
dev-php/PEAR-Console_CommandLine
dev-php/PEAR-Exception"
-BDEPEND="test? ( ${RDEPEND} generator = new Crypt_GPG_KeyGenerator($this->getOptions());
+diff -uarN a/tests/TestCase.php b/tests/TestCase.php
+--- a/tests/TestCase.php   2020-03-22 08:00:23.0 -0400
 b/tests/TestCase.php   2021-02-02 14:42:36.978387716 -0500
+@@ -119,7 +119,7 @@
+ // set up
+ // {{{ setUp()
+ 
+-public function setUp()
++public function setUp() :void
+ {
+ // load test configuration file if it exists
+ $configFilename = __DIR__ . '/config.php';
+@@ -567,7 +567,7 @@
+ // }}}
+ // {{{ tearDown()
+ 
+-public function tearDown()
++public function tearDown() :void
+ {
+ unset($this->gpg);
+ 



[gentoo-commits] repo/gentoo:master commit in: dev-php/PEAR-Crypt_GPG/

2020-08-18 Thread Thomas Deutschmann
commit: 654061cdc733d48dbfa0bbf6aca38835ea90d53f
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Aug 18 22:40:51 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Aug 18 22:40:51 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=654061cd

dev-php/PEAR-Crypt_GPG: Restrict https://bugs.gentoo.org/737640
Package-Manager: Portage-3.0.3, Repoman-3.0.0
Signed-off-by: Thomas Deutschmann  gentoo.org>

 dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.2.ebuild | 2 +-
 dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.3.ebuild | 2 +-
 dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.4.ebuild | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.2.ebuild 
b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.2.ebuild
index dfc934dcbed..53f4edf909e 100644
--- a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.2.ebuild
+++ b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.2.ebuild
@@ -20,7 +20,7 @@ RDEPEND="app-crypt/gnupg
dev-lang/php:*[posix,unicode]
dev-php/PEAR-Console_CommandLine
dev-php/PEAR-Exception"
-DEPEND="test? (${RDEPEND} dev-php/phpunit )"
+DEPEND="test? (${RDEPEND} 

[gentoo-commits] repo/gentoo:master commit in: dev-php/PEAR-Crypt_GPG/

2020-06-14 Thread Thomas Deutschmann
commit: 1f12b61377e0e886275754c9b928d9b16525ca89
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Jun 14 23:28:35 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Jun 14 23:30:31 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f12b613

dev-php/PEAR-Crypt_GPG: bump to v1.6.4

Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Thomas Deutschmann  gentoo.org>

 dev-php/PEAR-Crypt_GPG/Manifest|  1 +
 dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.4.ebuild | 47 ++
 2 files changed, 48 insertions(+)

diff --git a/dev-php/PEAR-Crypt_GPG/Manifest b/dev-php/PEAR-Crypt_GPG/Manifest
index bf34db2b470..56adfac2535 100644
--- a/dev-php/PEAR-Crypt_GPG/Manifest
+++ b/dev-php/PEAR-Crypt_GPG/Manifest
@@ -1,2 +1,3 @@
 DIST Crypt_GPG-1.6.2.tgz 346709 BLAKE2B 
abced2fe8c909f06690c38884506ce03df4c5ef3ef460aafce65ea9405c6974f8af320fd5a07a7967b45421a9a67aa27026c28ef7eb1402ffefba527007a33ae
 SHA512 
9d954d96b4e461c75f79ce9bc701d062e3f19671690228e6e0ce5265733ac1de9c06520f9f750348f3c37f01ccb79720574b2d2f371e69c8a25ae6e1bc18aabd
 DIST Crypt_GPG-1.6.3.tgz 346999 BLAKE2B 
8402ef382a6393972a3fda7370fbd37dec19d0ebabb6b316d35783538dbc01746476977d7dc3da487876201cd678964d9572dc67a43911319b1b614004a3c909
 SHA512 
f1ad2560a43a1e8f5a33269bc4ae4067e19e5325fdbd8d2fc55f6cb8aad89258df45fbecedd93a21749f33024c819f07399580b1a4760f5740f26043109dc396
+DIST Crypt_GPG-1.6.4.tgz 346390 BLAKE2B 
22e9e9d893f96bb3c3dc538b168a35366d2b699e92bf832370223879e90e8018cfd3b736e099807fdcc897b7569a40af66e72f011eaeb7400477053b7838409d
 SHA512 
3eee39702abe97fc322e5976ebe8a7f7ba07bc950d22aa6636cadf38b0bd9c6c6316d7be35f21a8d0e8dfdb66a76db33121edb34736869d31ae89b03468cf470

diff --git a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.4.ebuild 
b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.4.ebuild
new file mode 100644
index 000..46eb948e97d
--- /dev/null
+++ b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.4.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+MY_PN="${PN/PEAR-/}"
+MY_PV="${PV/_/}"
+MY_P="${MY_PN}-${MY_PV}"
+
+DESCRIPTION="PHP interface to the GNU Privacy Guard (GnuPG)"
+HOMEPAGE="https://pear.php.net/package/Crypt_GPG;
+SRC_URI="http://download.pear.php.net/package/${MY_P}.tgz;
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="app-crypt/gnupg
+   dev-lang/php:*[posix,unicode]
+   dev-php/PEAR-Console_CommandLine
+   dev-php/PEAR-Exception"
+BDEPEND="test? ( ${RDEPEND} dev-php/phpunit )"
+
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+   default
+   sed -i "s|@bin-dir@|${EPREFIX}/usr/bin|" Crypt/GPG/Engine.php || die
+   sed -i "s|@package-name@|${MY_PN}|" Crypt/GPG/PinEntry.php || die
+   sed -i "s|@data-dir@|${EPREFIX}/usr/share|" Crypt/GPG/PinEntry.php || 
die
+}
+
+src_install() {
+   dodoc README.md
+   dobin scripts/crypt-gpg-pinentry
+
+   insinto "/usr/share/${MY_PN}"
+   doins -r data
+
+   insinto /usr/share/php
+   doins -r Crypt
+}
+
+src_test() {
+   phpunit tests/ || die "test suite failed"
+}



[gentoo-commits] repo/gentoo:master commit in: dev-php/PEAR-Crypt_GPG/

2020-01-21 Thread Michael Orlitzky
commit: ab17cc261eb5081630a38507e65ac8faff4f970f
Author: Michael Orlitzky  gentoo  org>
AuthorDate: Tue Jan 21 23:58:02 2020 +
Commit: Michael Orlitzky  gentoo  org>
CommitDate: Tue Jan 21 23:58:02 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab17cc26

dev-php/PEAR-Crypt_GPG: add myself as a maintainer.

Package-Manager: Portage-2.3.79, Repoman-2.3.16
Signed-off-by: Michael Orlitzky  gentoo.org>

 dev-php/PEAR-Crypt_GPG/metadata.xml | 4 
 1 file changed, 4 insertions(+)

diff --git a/dev-php/PEAR-Crypt_GPG/metadata.xml 
b/dev-php/PEAR-Crypt_GPG/metadata.xml
index bceba1d91cd..ce4c99ce49a 100644
--- a/dev-php/PEAR-Crypt_GPG/metadata.xml
+++ b/dev-php/PEAR-Crypt_GPG/metadata.xml
@@ -5,6 +5,10 @@
 php-b...@gentoo.org
 PHP
   
+  
+m...@gentoo.org
+Michael Orlitzky
+  
   
 pear/Crypt_GPG
 Crypt_GPG



[gentoo-commits] repo/gentoo:master commit in: dev-php/PEAR-Crypt_GPG/

2018-06-06 Thread Brian Evans
commit: 1d806ab67b47136f0ad8db4d27f349c411bbd1ea
Author: Brian Evans  gentoo  org>
AuthorDate: Wed Jun  6 18:47:07 2018 +
Commit: Brian Evans  gentoo  org>
CommitDate: Wed Jun  6 18:47:07 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d806ab6

dev-php/PEAR-Crypt_GPG: Version bump for 1.6.3

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-php/PEAR-Crypt_GPG/Manifest|  1 +
 dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.3.ebuild | 46 ++
 2 files changed, 47 insertions(+)

diff --git a/dev-php/PEAR-Crypt_GPG/Manifest b/dev-php/PEAR-Crypt_GPG/Manifest
index 5fba343f944..bf34db2b470 100644
--- a/dev-php/PEAR-Crypt_GPG/Manifest
+++ b/dev-php/PEAR-Crypt_GPG/Manifest
@@ -1 +1,2 @@
 DIST Crypt_GPG-1.6.2.tgz 346709 BLAKE2B 
abced2fe8c909f06690c38884506ce03df4c5ef3ef460aafce65ea9405c6974f8af320fd5a07a7967b45421a9a67aa27026c28ef7eb1402ffefba527007a33ae
 SHA512 
9d954d96b4e461c75f79ce9bc701d062e3f19671690228e6e0ce5265733ac1de9c06520f9f750348f3c37f01ccb79720574b2d2f371e69c8a25ae6e1bc18aabd
+DIST Crypt_GPG-1.6.3.tgz 346999 BLAKE2B 
8402ef382a6393972a3fda7370fbd37dec19d0ebabb6b316d35783538dbc01746476977d7dc3da487876201cd678964d9572dc67a43911319b1b614004a3c909
 SHA512 
f1ad2560a43a1e8f5a33269bc4ae4067e19e5325fdbd8d2fc55f6cb8aad89258df45fbecedd93a21749f33024c819f07399580b1a4760f5740f26043109dc396

diff --git a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.3.ebuild 
b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.3.ebuild
new file mode 100644
index 000..f40428e9b27
--- /dev/null
+++ b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.3.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+MY_PN="${PN/PEAR-/}"
+MY_PV="${PV/_/}"
+MY_P="${MY_PN}-${MY_PV}"
+
+DESCRIPTION="PHP interface to the GNU Privacy Guard (GnuPG)"
+HOMEPAGE="http://pear.php.net/package/${MY_PN};
+SRC_URI="http://download.pear.php.net/package/${MY_P}.tgz;
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+IUSE="test"
+
+RDEPEND="app-crypt/gnupg
+   dev-lang/php:*[posix,unicode]
+   dev-php/PEAR-Console_CommandLine
+   dev-php/PEAR-Exception"
+BDEPEND="test? ( ${RDEPEND} dev-php/phpunit )"
+
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+   default
+   sed -i "s|@bin-dir@|${EPREFIX}/usr/bin|" Crypt/GPG/Engine.php || die
+   sed -i "s|@package-name@|${MY_PN}|" Crypt/GPG/PinEntry.php || die
+   sed -i "s|@data-dir@|${EPREFIX}/usr/share|" Crypt/GPG/PinEntry.php || 
die
+}
+
+src_install() {
+   dodoc README.md
+   dobin scripts/crypt-gpg-pinentry
+
+   insinto "/usr/share/${MY_PN}"
+   doins -r data
+
+   insinto /usr/share/php
+   doins -r Crypt
+}
+
+src_test() {
+   phpunit tests/ || die "test suite failed"
+}



[gentoo-commits] repo/gentoo:master commit in: dev-php/PEAR-Crypt_GPG/

2018-04-24 Thread Brian Evans
commit: 52b715192dfacb225771552cb2b7f727c4a68dd9
Author: Brian Evans  gentoo  org>
AuthorDate: Tue Apr 24 20:26:33 2018 +
Commit: Brian Evans  gentoo  org>
CommitDate: Tue Apr 24 20:33:15 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52b71519

dev-php/PEAR-Crypt_GPG: Drop old

Package-Manager: Portage-2.3.31, Repoman-2.3.9

 dev-php/PEAR-Crypt_GPG/Manifest|  1 -
 .../PEAR-Crypt_GPG-1.6.0_beta3.ebuild  | 48 --
 2 files changed, 49 deletions(-)

diff --git a/dev-php/PEAR-Crypt_GPG/Manifest b/dev-php/PEAR-Crypt_GPG/Manifest
index f3e1d8a84a7..5fba343f944 100644
--- a/dev-php/PEAR-Crypt_GPG/Manifest
+++ b/dev-php/PEAR-Crypt_GPG/Manifest
@@ -1,2 +1 @@
-DIST Crypt_GPG-1.6.0b3.tgz 345445 BLAKE2B 
ab9318fa026f3dbde5974da9581b9fdf73245e78a8b5e891b2151aa7ebc8e1356a090e21a05129f4d3aa110a78082621ab386625069936f4644a1fff2bb461ef
 SHA512 
0a3cb665fac8e84a0699600155cb74e2394e4759fe0b111d971d253ca511a371d06d826e54abadfbb3f707833cd3d6b369f52d04541b3e04f217056ec8439f4c
 DIST Crypt_GPG-1.6.2.tgz 346709 BLAKE2B 
abced2fe8c909f06690c38884506ce03df4c5ef3ef460aafce65ea9405c6974f8af320fd5a07a7967b45421a9a67aa27026c28ef7eb1402ffefba527007a33ae
 SHA512 
9d954d96b4e461c75f79ce9bc701d062e3f19671690228e6e0ce5265733ac1de9c06520f9f750348f3c37f01ccb79720574b2d2f371e69c8a25ae6e1bc18aabd

diff --git a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0_beta3.ebuild 
b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0_beta3.ebuild
deleted file mode 100644
index 23527ba9fca..000
--- a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0_beta3.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-MY_PN="${PN/PEAR-/}"
-MY_PV="${PV/_/}"
-MY_PV="${MY_PV/beta/b}"
-MY_P="${MY_PN}-${MY_PV}"
-
-DESCRIPTION="PHP interface to the GNU Privacy Guard (GnuPG)"
-HOMEPAGE="http://pear.php.net/package/${MY_PN};
-SRC_URI="http://download.pear.php.net/package/${MY_P}.tgz;
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="amd64 arm hppa ia64 ppc ppc64 sparc x86"
-IUSE="test"
-
-# Really only needs PEAR_Exception, not PEAR-PEAR.
-RDEPEND="app-crypt/gnupg
-   dev-lang/php:*[posix,unicode]
-   dev-php/PEAR-Console_CommandLine
-   dev-php/PEAR-PEAR"
-DEPEND="test? (${RDEPEND} dev-php/phpunit )"
-
-S="${WORKDIR}/${MY_P}"
-
-src_prepare() {
-   default
-   sed -i "s|@bin-dir@|${EPREFIX}/usr/bin|" Crypt/GPG/Engine.php || die
-   sed -i "s|@package-name@|${MY_PN}|" Crypt/GPG/PinEntry.php || die
-   sed -i "s|@data-dir@|${EPREFIX}/usr/share|" Crypt/GPG/PinEntry.php || 
die
-}
-
-src_install() {
-   dodoc README.md
-   dobin scripts/crypt-gpg-pinentry
-
-   insinto "/usr/share/${MY_PN}"
-   doins -r data
-
-   insinto /usr/share/php
-   doins -r Crypt
-}
-
-src_test() {
-   phpunit tests/ || die "test suite failed"
-}



[gentoo-commits] repo/gentoo:master commit in: dev-php/PEAR-Crypt_GPG/

2018-04-24 Thread Brian Evans
commit: 0389cba27d21ddb7c5d74cf51df7318c3c94d356
Author: Brian Evans  gentoo  org>
AuthorDate: Tue Apr 24 20:24:24 2018 +
Commit: Brian Evans  gentoo  org>
CommitDate: Tue Apr 24 20:33:09 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0389cba2

dev-php/PEAR-Crypt_GPG: Mark 1.6.2 stable ALLARCHES

script only package

Package-Manager: Portage-2.3.31, Repoman-2.3.9

 dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.2.ebuild 
b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.2.ebuild
index e3a6ec81ebb..f07396ab6c0 100644
--- a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.2.ebuild
+++ b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.2.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="http://pear.php.net/package/${MY_PN};
 SRC_URI="http://download.pear.php.net/package/${MY_P}.tgz;
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="amd64 arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="amd64 arm hppa ia64 ppc ppc64 sparc x86"
 IUSE="test"
 
 RDEPEND="app-crypt/gnupg



[gentoo-commits] repo/gentoo:master commit in: dev-php/PEAR-Crypt_GPG/

2018-04-24 Thread Mikle Kolyada
commit: b028a1cf366b830a5fb6f7dbb211c85f7a99cde4
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Apr 24 19:29:47 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Apr 24 19:32:25 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b028a1cf

dev-php/PEAR-Crypt_GPG: arm stable wrt bug #649646

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.2.ebuild 
b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.2.ebuild
index 610e5dd784f..e3a6ec81ebb 100644
--- a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.2.ebuild
+++ b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.2.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="http://pear.php.net/package/${MY_PN};
 SRC_URI="http://download.pear.php.net/package/${MY_P}.tgz;
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="amd64 arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86"
 IUSE="test"
 
 RDEPEND="app-crypt/gnupg



[gentoo-commits] repo/gentoo:master commit in: dev-php/PEAR-Crypt_GPG/

2018-03-14 Thread Mikle Kolyada
commit: 76bb6bbbf86c5c2cd77a8fc5205233a6f1b0d258
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Wed Mar 14 11:09:54 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Wed Mar 14 11:20:55 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76bb6bbb

dev-php/PEAR-Crypt_GPG: amd64 stable wrt bug #649646

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.2.ebuild 
b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.2.ebuild
index f57133bc965..610e5dd784f 100644
--- a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.2.ebuild
+++ b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.2.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="http://pear.php.net/package/${MY_PN};
 SRC_URI="http://download.pear.php.net/package/${MY_P}.tgz;
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86"
 IUSE="test"
 
 RDEPEND="app-crypt/gnupg



[gentoo-commits] repo/gentoo:master commit in: dev-php/PEAR-Crypt_GPG/

2018-03-13 Thread Thomas Deutschmann
commit: a910ae331b0e54d8f10ea2ea2179e7b2b43c0f7c
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Mar 13 22:18:42 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Mar 13 22:26:04 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a910ae33

dev-php/PEAR-Crypt_GPG: x86 stable (bug #649646)

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.2.ebuild 
b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.2.ebuild
index 78ed9b3dd21..f57133bc965 100644
--- a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.2.ebuild
+++ b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -12,7 +12,7 @@ HOMEPAGE="http://pear.php.net/package/${MY_PN};
 SRC_URI="http://download.pear.php.net/package/${MY_P}.tgz;
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86"
 IUSE="test"
 
 RDEPEND="app-crypt/gnupg



[gentoo-commits] repo/gentoo:master commit in: dev-php/PEAR-Crypt_GPG/

2018-02-19 Thread Brian Evans
commit: 7bef663c798a320905026b11fab090bd7da848d8
Author: Brian Evans  gentoo  org>
AuthorDate: Tue Feb 20 01:53:38 2018 +
Commit: Brian Evans  gentoo  org>
CommitDate: Tue Feb 20 01:53:38 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7bef663c

dev-php/PEAR-Crypt_GPG: Pure PHP code stable on all arches

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0_beta3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0_beta3.ebuild 
b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0_beta3.ebuild
index 6b6f6674bff..23527ba9fca 100644
--- a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0_beta3.ebuild
+++ b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0_beta3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -13,7 +13,7 @@ HOMEPAGE="http://pear.php.net/package/${MY_PN};
 SRC_URI="http://download.pear.php.net/package/${MY_P}.tgz;
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86"
+KEYWORDS="amd64 arm hppa ia64 ppc ppc64 sparc x86"
 IUSE="test"
 
 # Really only needs PEAR_Exception, not PEAR-PEAR.



[gentoo-commits] repo/gentoo:master commit in: dev-php/PEAR-Crypt_GPG/

2018-02-19 Thread Brian Evans
commit: 44f559e4fa472b6d44960250a2bf73d3680c7d66
Author: Brian Evans  gentoo  org>
AuthorDate: Tue Feb 20 01:55:23 2018 +
Commit: Brian Evans  gentoo  org>
CommitDate: Tue Feb 20 01:55:23 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44f559e4

dev-php/PEAR-Crypt_GPG: Drop old

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-php/PEAR-Crypt_GPG/Manifest|  2 --
 dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.3.2.ebuild | 16 
 dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.4.2.ebuild | 17 -
 3 files changed, 35 deletions(-)

diff --git a/dev-php/PEAR-Crypt_GPG/Manifest b/dev-php/PEAR-Crypt_GPG/Manifest
index 0e95f87ecce..f3e1d8a84a7 100644
--- a/dev-php/PEAR-Crypt_GPG/Manifest
+++ b/dev-php/PEAR-Crypt_GPG/Manifest
@@ -1,4 +1,2 @@
-DIST Crypt_GPG-1.3.2.tgz 339001 BLAKE2B 
a86a732992063f41abbe10517517ac212bde3e0a3ea300d2b4850850504d894bbddbc77a49140c339c887cfe43d201a6572fcc0b7288d4055e96a7e2b2422e7e
 SHA512 
c045942798f2974d1d200413864708b4476b53d1999b721f1b51fd6cfafb23c05479a391ebc7ebe513f5a88641d63d991e7ba59b7edcbd8397efde365528f999
-DIST Crypt_GPG-1.4.2.tgz 345962 BLAKE2B 
dadab0111209a6f3d68575057735cae3fb0f3de4dcbaa9fbfbb23133aa9cf7e8d6726dc14c7d487e65667e4cf0802ae787e88d128c6889246c2424d2f198a8ab
 SHA512 
c0384f0b4a35f8e7d7189b0b08c277c2629e7fa84e13f2c8c92aaafbeace7a60b6e18f2347571e7bcdf4bc504fd9463f080d9c2938063fdfcabc8f44dd7f4950
 DIST Crypt_GPG-1.6.0b3.tgz 345445 BLAKE2B 
ab9318fa026f3dbde5974da9581b9fdf73245e78a8b5e891b2151aa7ebc8e1356a090e21a05129f4d3aa110a78082621ab386625069936f4644a1fff2bb461ef
 SHA512 
0a3cb665fac8e84a0699600155cb74e2394e4759fe0b111d971d253ca511a371d06d826e54abadfbb3f707833cd3d6b369f52d04541b3e04f217056ec8439f4c
 DIST Crypt_GPG-1.6.2.tgz 346709 BLAKE2B 
abced2fe8c909f06690c38884506ce03df4c5ef3ef460aafce65ea9405c6974f8af320fd5a07a7967b45421a9a67aa27026c28ef7eb1402ffefba527007a33ae
 SHA512 
9d954d96b4e461c75f79ce9bc701d062e3f19671690228e6e0ce5265733ac1de9c06520f9f750348f3c37f01ccb79720574b2d2f371e69c8a25ae6e1bc18aabd

diff --git a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.3.2.ebuild 
b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.3.2.ebuild
deleted file mode 100644
index 44d14b27f0c..000
--- a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.3.2.ebuild
+++ /dev/null
@@ -1,16 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="4"
-
-inherit php-pear-r1
-
-DESCRIPTION="GNU Privacy Guard (GnuPG)"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 arm ~hppa ppc ppc64 sparc x86"
-IUSE=""
-DEPEND=">=dev-lang/php-5.2.1"
-RDEPEND="${DEPEND}
-   app-crypt/gnupg"

diff --git a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.4.2.ebuild 
b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.4.2.ebuild
deleted file mode 100644
index d859e36bfc0..000
--- a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.4.2.ebuild
+++ /dev/null
@@ -1,17 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-inherit php-pear-r1
-
-DESCRIPTION="GNU Privacy Guard (GnuPG)"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 arm ~ppc ~ppc64 x86"
-IUSE=""
-DEPEND=">=dev-lang/php-5.2.1:*[posix,unicode]"
-RDEPEND="${DEPEND}
-   app-crypt/gnupg
-   dev-php/PEAR-Console_CommandLine"



[gentoo-commits] repo/gentoo:master commit in: dev-php/PEAR-Crypt_GPG/

2017-11-14 Thread Michael Orlitzky
commit: df47f319de3ce2a90ed2424afd718015dd8efd09
Author: Michael Orlitzky  gentoo  org>
AuthorDate: Wed Nov 15 04:51:18 2017 +
Commit: Michael Orlitzky  gentoo  org>
CommitDate: Wed Nov 15 04:51:18 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df47f319

dev-php/PEAR-Crypt_GPG: remove unused PEAR-Crypt_GPG-1.6.0.ebuild.

Package-Manager: Portage-2.3.8, Repoman-2.3.3

 dev-php/PEAR-Crypt_GPG/Manifest|  1 -
 dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0.ebuild | 48 --
 2 files changed, 49 deletions(-)

diff --git a/dev-php/PEAR-Crypt_GPG/Manifest b/dev-php/PEAR-Crypt_GPG/Manifest
index 42b48952a7a..65be1e88b8c 100644
--- a/dev-php/PEAR-Crypt_GPG/Manifest
+++ b/dev-php/PEAR-Crypt_GPG/Manifest
@@ -1,5 +1,4 @@
 DIST Crypt_GPG-1.3.2.tgz 339001 SHA256 
67f77bfb9b21dd428587f5bd336e4b9b2e200a1b62160e7ae0d0dfffd1357899 SHA512 
c045942798f2974d1d200413864708b4476b53d1999b721f1b51fd6cfafb23c05479a391ebc7ebe513f5a88641d63d991e7ba59b7edcbd8397efde365528f999
 WHIRLPOOL 
27124bb96e28d7206f56e0d0fcbee603b3f1516a4d61a98e4a72139cae7e76b357f025bde04baec83530ff4ad6ec2a7d35d92a114ad9269ff198c06c94d63aef
 DIST Crypt_GPG-1.4.2.tgz 345962 SHA256 
8e1cf98b5bf37fead50745327261c021efac8c1ee2bddd57c38be57e8f1bc969 SHA512 
c0384f0b4a35f8e7d7189b0b08c277c2629e7fa84e13f2c8c92aaafbeace7a60b6e18f2347571e7bcdf4bc504fd9463f080d9c2938063fdfcabc8f44dd7f4950
 WHIRLPOOL 
ea6e2d0dfbfc56cf4bec5bcdfa312a5f43109c305b699b501e102e81908ad1ba350a97525b5d9ada45d6713ef64512744b6e04f208b5dc2f029ad01fedbffb4e
-DIST Crypt_GPG-1.6.0.tgz 345474 SHA256 
efbe714d553d9e478f39bd181acf684a68180353971c05e764d8d70bc59f68ed SHA512 
b5119204114218a8100d978ea265f1b4f7883b0155c6c984e493737ec7185a9a37c2eb3255b3dd30ccc8821363dbd5c86f8861b8da206c0a0efff89086ac6ae0
 WHIRLPOOL 
d6098e37966ff9aea5467f6f98e5ae9ff3c2605c719c9fad3ff914b75a622e1cc29075507703dc3f6905df957dac77b7b83aae3513b04cf5af77eeb8babdedd1
 DIST Crypt_GPG-1.6.0b3.tgz 345445 SHA256 
fc3757b33a1ea39f9816521aca50dee4bf6c07cc9c7be60600db32066cf89d29 SHA512 
0a3cb665fac8e84a0699600155cb74e2394e4759fe0b111d971d253ca511a371d06d826e54abadfbb3f707833cd3d6b369f52d04541b3e04f217056ec8439f4c
 WHIRLPOOL 
0df9a3b21bbfc0d2f8e3cd8efaf8e19a58981520976faf1c4b501a363bbb05c2e4299de22e3c987f8f5ead36e98b5401c813d07947e4e84c6c664c2d46c4e3fa
 DIST Crypt_GPG-1.6.2.tgz 346709 SHA256 
5b552ef565c4323af56114c6eac30a7431d36667c271adf68fe4a76e00b51224 SHA512 
9d954d96b4e461c75f79ce9bc701d062e3f19671690228e6e0ce5265733ac1de9c06520f9f750348f3c37f01ccb79720574b2d2f371e69c8a25ae6e1bc18aabd
 WHIRLPOOL 
1f4e0beb51a2d690a493a80bfaf27e818e9e73f2c314e160645e5dd4994feddfeba3fc5b55a46056cd8cae8520359081d304978d7f85e41f86215156bcc6a527

diff --git a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0.ebuild 
b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0.ebuild
deleted file mode 100644
index 0d4d1766b51..000
--- a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-MY_PN="${PN/PEAR-/}"
-MY_PV="${PV/_/}"
-MY_PV="${MY_PV/beta/b}"
-MY_P="${MY_PN}-${MY_PV}"
-
-DESCRIPTION="PHP interface to the GNU Privacy Guard (GnuPG)"
-HOMEPAGE="http://pear.php.net/package/${MY_PN};
-SRC_URI="http://download.pear.php.net/package/${MY_P}.tgz;
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
-IUSE="test"
-
-# Really only needs PEAR_Exception, not PEAR-PEAR.
-RDEPEND="app-crypt/gnupg
-   dev-lang/php:*[posix,unicode]
-   dev-php/PEAR-Console_CommandLine
-   dev-php/PEAR-PEAR"
-DEPEND="test? (${RDEPEND} dev-php/phpunit )"
-
-S="${WORKDIR}/${MY_P}"
-
-src_prepare() {
-   default
-   sed -i "s|@bin-dir@|${EPREFIX}/usr/bin|" Crypt/GPG/Engine.php || die
-   sed -i "s|@package-name@|${MY_PN}|" Crypt/GPG/PinEntry.php || die
-   sed -i "s|@data-dir@|${EPREFIX}/usr/share|" Crypt/GPG/PinEntry.php || 
die
-}
-
-src_install() {
-   dodoc README.md
-   dobin scripts/crypt-gpg-pinentry
-
-   insinto "/usr/share/${MY_PN}"
-   doins -r data
-
-   insinto /usr/share/php
-   doins -r Crypt
-}
-
-src_test() {
-   phpunit tests/ || die "test suite failed"
-}



[gentoo-commits] repo/gentoo:master commit in: dev-php/PEAR-Crypt_GPG/files/, dev-php/PEAR-Crypt_GPG/

2017-11-14 Thread Michael Orlitzky
commit: b94584584d063065778fc438d93922a5ee29f609
Author: Michael Orlitzky  gentoo  org>
AuthorDate: Wed Nov 15 02:27:45 2017 +
Commit: Michael Orlitzky  gentoo  org>
CommitDate: Wed Nov 15 04:50:09 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9458458

dev-php/PEAR-Crypt_GPG: new version 1.6.2.

This new version fixes two issues, in addition to whatever upstream
changes took place:

  1. We now use the tiny PEAR-Exception instead of big PEAR-PEAR.

  2. An upstream commit was backported to fix the test suite
 with newer versions of app-crypt/gnupg.

Thanks to Rolf Eike Beer for reporting the test suite issue.

Closes: https://bugs.gentoo.org/636728
Package-Manager: Portage-2.3.8, Repoman-2.3.3

 dev-php/PEAR-Crypt_GPG/Manifest|  1 +
 dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.2.ebuild | 48 +++
 .../files/fix-unit-tests-with-new-gpg.patch| 55 ++
 3 files changed, 104 insertions(+)

diff --git a/dev-php/PEAR-Crypt_GPG/Manifest b/dev-php/PEAR-Crypt_GPG/Manifest
index 7b86112fb35..42b48952a7a 100644
--- a/dev-php/PEAR-Crypt_GPG/Manifest
+++ b/dev-php/PEAR-Crypt_GPG/Manifest
@@ -2,3 +2,4 @@ DIST Crypt_GPG-1.3.2.tgz 339001 SHA256 
67f77bfb9b21dd428587f5bd336e4b9b2e200a1b6
 DIST Crypt_GPG-1.4.2.tgz 345962 SHA256 
8e1cf98b5bf37fead50745327261c021efac8c1ee2bddd57c38be57e8f1bc969 SHA512 
c0384f0b4a35f8e7d7189b0b08c277c2629e7fa84e13f2c8c92aaafbeace7a60b6e18f2347571e7bcdf4bc504fd9463f080d9c2938063fdfcabc8f44dd7f4950
 WHIRLPOOL 
ea6e2d0dfbfc56cf4bec5bcdfa312a5f43109c305b699b501e102e81908ad1ba350a97525b5d9ada45d6713ef64512744b6e04f208b5dc2f029ad01fedbffb4e
 DIST Crypt_GPG-1.6.0.tgz 345474 SHA256 
efbe714d553d9e478f39bd181acf684a68180353971c05e764d8d70bc59f68ed SHA512 
b5119204114218a8100d978ea265f1b4f7883b0155c6c984e493737ec7185a9a37c2eb3255b3dd30ccc8821363dbd5c86f8861b8da206c0a0efff89086ac6ae0
 WHIRLPOOL 
d6098e37966ff9aea5467f6f98e5ae9ff3c2605c719c9fad3ff914b75a622e1cc29075507703dc3f6905df957dac77b7b83aae3513b04cf5af77eeb8babdedd1
 DIST Crypt_GPG-1.6.0b3.tgz 345445 SHA256 
fc3757b33a1ea39f9816521aca50dee4bf6c07cc9c7be60600db32066cf89d29 SHA512 
0a3cb665fac8e84a0699600155cb74e2394e4759fe0b111d971d253ca511a371d06d826e54abadfbb3f707833cd3d6b369f52d04541b3e04f217056ec8439f4c
 WHIRLPOOL 
0df9a3b21bbfc0d2f8e3cd8efaf8e19a58981520976faf1c4b501a363bbb05c2e4299de22e3c987f8f5ead36e98b5401c813d07947e4e84c6c664c2d46c4e3fa
+DIST Crypt_GPG-1.6.2.tgz 346709 SHA256 
5b552ef565c4323af56114c6eac30a7431d36667c271adf68fe4a76e00b51224 SHA512 
9d954d96b4e461c75f79ce9bc701d062e3f19671690228e6e0ce5265733ac1de9c06520f9f750348f3c37f01ccb79720574b2d2f371e69c8a25ae6e1bc18aabd
 WHIRLPOOL 
1f4e0beb51a2d690a493a80bfaf27e818e9e73f2c314e160645e5dd4994feddfeba3fc5b55a46056cd8cae8520359081d304978d7f85e41f86215156bcc6a527

diff --git a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.2.ebuild 
b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.2.ebuild
new file mode 100644
index 000..78ed9b3dd21
--- /dev/null
+++ b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.2.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+MY_PN="${PN/PEAR-/}"
+MY_PV="${PV/_/}"
+MY_P="${MY_PN}-${MY_PV}"
+
+DESCRIPTION="PHP interface to the GNU Privacy Guard (GnuPG)"
+HOMEPAGE="http://pear.php.net/package/${MY_PN};
+SRC_URI="http://download.pear.php.net/package/${MY_P}.tgz;
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+IUSE="test"
+
+RDEPEND="app-crypt/gnupg
+   dev-lang/php:*[posix,unicode]
+   dev-php/PEAR-Console_CommandLine
+   dev-php/PEAR-Exception"
+DEPEND="test? (${RDEPEND} dev-php/phpunit )"
+
+S="${WORKDIR}/${MY_P}"
+
+PATCHES=( "${FILESDIR}/fix-unit-tests-with-new-gpg.patch" )
+
+src_prepare() {
+   default
+   sed -i "s|@bin-dir@|${EPREFIX}/usr/bin|" Crypt/GPG/Engine.php || die
+   sed -i "s|@package-name@|${MY_PN}|" Crypt/GPG/PinEntry.php || die
+   sed -i "s|@data-dir@|${EPREFIX}/usr/share|" Crypt/GPG/PinEntry.php || 
die
+}
+
+src_install() {
+   dodoc README.md
+   dobin scripts/crypt-gpg-pinentry
+
+   insinto "/usr/share/${MY_PN}"
+   doins -r data
+
+   insinto /usr/share/php
+   doins -r Crypt
+}
+
+src_test() {
+   phpunit tests/ || die "test suite failed"
+}

diff --git a/dev-php/PEAR-Crypt_GPG/files/fix-unit-tests-with-new-gpg.patch 
b/dev-php/PEAR-Crypt_GPG/files/fix-unit-tests-with-new-gpg.patch
new file mode 100644
index 000..8e49a2f263f
--- /dev/null
+++ b/dev-php/PEAR-Crypt_GPG/files/fix-unit-tests-with-new-gpg.patch
@@ -0,0 +1,55 @@
+From 14a884dd5127141929ef7a58185c298e92602c40 Mon Sep 17 00:00:00 2001
+From: Aleksander Machniak 
+Date: Sat, 16 Sep 2017 13:05:37 +0200
+Subject: [PATCH] Fix Bug #21242: PHPUnit tests fail sometimes while deleting
+ S.gpg-agent.extra
+
+---
+ tests/TestCase.php | 20 ++--
+ 

[gentoo-commits] repo/gentoo:master commit in: dev-php/PEAR-Crypt_GPG/

2017-11-06 Thread Sergei Trofimovich
commit: d70041ec58b93d3bd27822ccc2c573a79b433407
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Nov  6 21:18:03 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Nov  6 21:20:19 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d70041ec

dev-php/PEAR-Crypt_GPG: keyworded 1.6.0 for sparc, bug #574264 (thanks to Rolf 
Eike Beer)

Package-Manager: Portage-2.3.13, Repoman-2.3.4
RepoMan-Options: --include-arches="sparc"

 dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0.ebuild 
b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0.ebuild
index 9e21bd39011..0d4d1766b51 100644
--- a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0.ebuild
+++ b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="http://pear.php.net/package/${MY_PN};
 SRC_URI="http://download.pear.php.net/package/${MY_P}.tgz;
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 IUSE="test"
 
 # Really only needs PEAR_Exception, not PEAR-PEAR.



[gentoo-commits] repo/gentoo:master commit in: dev-php/PEAR-Crypt_GPG/

2017-04-01 Thread Michael Weber
commit: 708022cf54d84fffefa8ce62ed43f8513b55c46d
Author: Michael Weber  gentoo  org>
AuthorDate: Sat Apr  1 10:38:00 2017 +
Commit: Michael Weber  gentoo  org>
CommitDate: Sat Apr  1 10:38:00 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=708022cf

dev-php/PEAR-Crypt_GPG: add ~ppc keyword (bug 594824).

Package-Manager: Portage-2.3.5, Repoman-2.3.2
RepoMan-Options: --include-arches="arm arm64 ppc ppc64"

 dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.4.2.ebuild   | 2 +-
 dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0.ebuild   | 2 +-
 dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0_beta3.ebuild | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.4.2.ebuild 
b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.4.2.ebuild
index 66c312a73c4..d859e36bfc0 100644
--- a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.4.2.ebuild
+++ b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.4.2.ebuild
@@ -9,7 +9,7 @@ DESCRIPTION="GNU Privacy Guard (GnuPG)"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 arm ~ppc64 x86"
+KEYWORDS="amd64 arm ~ppc ~ppc64 x86"
 IUSE=""
 DEPEND=">=dev-lang/php-5.2.1:*[posix,unicode]"
 RDEPEND="${DEPEND}

diff --git a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0.ebuild 
b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0.ebuild
index 5d8d3d04172..ad7e0803a74 100644
--- a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0.ebuild
+++ b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="http://pear.php.net/package/${MY_PN};
 SRC_URI="http://download.pear.php.net/package/${MY_P}.tgz;
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86"
 IUSE="test"
 
 # Really only needs PEAR_Exception, not PEAR-PEAR.

diff --git a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0_beta3.ebuild 
b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0_beta3.ebuild
index 726076e5283..6b6f6674bff 100644
--- a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0_beta3.ebuild
+++ b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0_beta3.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="http://pear.php.net/package/${MY_PN};
 SRC_URI="http://download.pear.php.net/package/${MY_P}.tgz;
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~ppc64 x86"
+KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86"
 IUSE="test"
 
 # Really only needs PEAR_Exception, not PEAR-PEAR.



[gentoo-commits] repo/gentoo:master commit in: dev-php/PEAR-Crypt_GPG/

2017-04-01 Thread Michael Weber
commit: 82ec0abd021f005ba923f743f8ad3df1cb8f831d
Author: Michael Weber  gentoo  org>
AuthorDate: Sat Apr  1 10:01:01 2017 +
Commit: Michael Weber  gentoo  org>
CommitDate: Sat Apr  1 10:01:01 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82ec0abd

dev-php/PEAR-Crypt_GPG: add ~ppc64 keyword (bug 594824).

Package-Manager: Portage-2.3.5, Repoman-2.3.2
RepoMan-Options: --include-arches="arm arm64 ppc ppc64"

 dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.4.2.ebuild   | 4 ++--
 dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0.ebuild   | 2 +-
 dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0_beta3.ebuild | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.4.2.ebuild 
b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.4.2.ebuild
index ba55a47f02c..66c312a73c4 100644
--- a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.4.2.ebuild
+++ b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.4.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="6"
@@ -9,7 +9,7 @@ DESCRIPTION="GNU Privacy Guard (GnuPG)"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 arm x86"
+KEYWORDS="amd64 arm ~ppc64 x86"
 IUSE=""
 DEPEND=">=dev-lang/php-5.2.1:*[posix,unicode]"
 RDEPEND="${DEPEND}

diff --git a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0.ebuild 
b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0.ebuild
index 4715fd83766..5d8d3d04172 100644
--- a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0.ebuild
+++ b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="http://pear.php.net/package/${MY_PN};
 SRC_URI="http://download.pear.php.net/package/${MY_P}.tgz;
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~x86"
+KEYWORDS="~amd64 ~arm ~hppa ~ppc64 ~x86"
 IUSE="test"
 
 # Really only needs PEAR_Exception, not PEAR-PEAR.

diff --git a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0_beta3.ebuild 
b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0_beta3.ebuild
index b7c8667f4ec..726076e5283 100644
--- a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0_beta3.ebuild
+++ b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0_beta3.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="http://pear.php.net/package/${MY_PN};
 SRC_URI="http://download.pear.php.net/package/${MY_P}.tgz;
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="amd64 ~arm x86"
+KEYWORDS="amd64 ~arm ~ppc64 x86"
 IUSE="test"
 
 # Really only needs PEAR_Exception, not PEAR-PEAR.



[gentoo-commits] repo/gentoo:master commit in: dev-php/PEAR-Crypt_GPG/

2017-03-25 Thread Jeroen Roovers
commit: fead22e037f4e5015a212bedb5122602560dac07
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sat Mar 25 09:15:03 2017 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sat Mar 25 10:08:13 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fead22e0

dev-php/PEAR-Crypt_GPG: Mark ~hppa (bug #574264).

Package-Manager: Portage-2.3.5, Repoman-2.3.2
RepoMan-Options: --ignore-arches

 dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0.ebuild 
b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0.ebuild
index d08cc26c4f4..4715fd83766 100644
--- a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0.ebuild
+++ b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="http://pear.php.net/package/${MY_PN};
 SRC_URI="http://download.pear.php.net/package/${MY_P}.tgz;
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
+KEYWORDS="~amd64 ~arm ~hppa ~x86"
 IUSE="test"
 
 # Really only needs PEAR_Exception, not PEAR-PEAR.



[gentoo-commits] repo/gentoo:master commit in: dev-php/PEAR-Crypt_GPG/

2017-03-02 Thread Agostino Sarubbo
commit: f2a8b3d2cc52d3d5d3adab42e1244eb6c9416514
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Mar  2 10:45:49 2017 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Mar  2 10:45:49 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2a8b3d2

dev-php/PEAR-Crypt_GPG: x86 stable wrt bug #611166

Package-Manager: portage-2.3.3
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0_beta3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0_beta3.ebuild 
b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0_beta3.ebuild
index cd3e892bf09..b7c8667f4ec 100644
--- a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0_beta3.ebuild
+++ b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0_beta3.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="http://pear.php.net/package/${MY_PN};
 SRC_URI="http://download.pear.php.net/package/${MY_P}.tgz;
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~x86"
+KEYWORDS="amd64 ~arm x86"
 IUSE="test"
 
 # Really only needs PEAR_Exception, not PEAR-PEAR.



[gentoo-commits] repo/gentoo:master commit in: dev-php/PEAR-Crypt_GPG/

2017-03-02 Thread Agostino Sarubbo
commit: 7169e51e5eb7a5e8c44c9007d2873650f60539b4
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Mar  2 10:30:09 2017 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Mar  2 10:30:09 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7169e51e

dev-php/PEAR-Crypt_GPG: amd64 stable wrt bug #611166

Package-Manager: portage-2.3.3
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0_beta3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0_beta3.ebuild 
b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0_beta3.ebuild
index d08cc26c4f4..cd3e892bf09 100644
--- a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0_beta3.ebuild
+++ b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0_beta3.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="http://pear.php.net/package/${MY_PN};
 SRC_URI="http://download.pear.php.net/package/${MY_P}.tgz;
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
+KEYWORDS="amd64 ~arm ~x86"
 IUSE="test"
 
 # Really only needs PEAR_Exception, not PEAR-PEAR.



[gentoo-commits] repo/gentoo:master commit in: dev-php/PEAR-Crypt_GPG/

2017-02-27 Thread Brian Evans
commit: b999e15c03efc02d51a3a22df9bd51c7ba176796
Author: Brian Evans  gentoo  org>
AuthorDate: Mon Feb 27 16:20:28 2017 +
Commit: Brian Evans  gentoo  org>
CommitDate: Mon Feb 27 16:20:28 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b999e15c

dev-php/PEAR-Crypt_GPG: Version bump

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-php/PEAR-Crypt_GPG/Manifest|  1 +
 dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0.ebuild | 49 ++
 2 files changed, 50 insertions(+)

diff --git a/dev-php/PEAR-Crypt_GPG/Manifest b/dev-php/PEAR-Crypt_GPG/Manifest
index 292e0574fc..7b86112fb3 100644
--- a/dev-php/PEAR-Crypt_GPG/Manifest
+++ b/dev-php/PEAR-Crypt_GPG/Manifest
@@ -1,3 +1,4 @@
 DIST Crypt_GPG-1.3.2.tgz 339001 SHA256 
67f77bfb9b21dd428587f5bd336e4b9b2e200a1b62160e7ae0d0dfffd1357899 SHA512 
c045942798f2974d1d200413864708b4476b53d1999b721f1b51fd6cfafb23c05479a391ebc7ebe513f5a88641d63d991e7ba59b7edcbd8397efde365528f999
 WHIRLPOOL 
27124bb96e28d7206f56e0d0fcbee603b3f1516a4d61a98e4a72139cae7e76b357f025bde04baec83530ff4ad6ec2a7d35d92a114ad9269ff198c06c94d63aef
 DIST Crypt_GPG-1.4.2.tgz 345962 SHA256 
8e1cf98b5bf37fead50745327261c021efac8c1ee2bddd57c38be57e8f1bc969 SHA512 
c0384f0b4a35f8e7d7189b0b08c277c2629e7fa84e13f2c8c92aaafbeace7a60b6e18f2347571e7bcdf4bc504fd9463f080d9c2938063fdfcabc8f44dd7f4950
 WHIRLPOOL 
ea6e2d0dfbfc56cf4bec5bcdfa312a5f43109c305b699b501e102e81908ad1ba350a97525b5d9ada45d6713ef64512744b6e04f208b5dc2f029ad01fedbffb4e
+DIST Crypt_GPG-1.6.0.tgz 345474 SHA256 
efbe714d553d9e478f39bd181acf684a68180353971c05e764d8d70bc59f68ed SHA512 
b5119204114218a8100d978ea265f1b4f7883b0155c6c984e493737ec7185a9a37c2eb3255b3dd30ccc8821363dbd5c86f8861b8da206c0a0efff89086ac6ae0
 WHIRLPOOL 
d6098e37966ff9aea5467f6f98e5ae9ff3c2605c719c9fad3ff914b75a622e1cc29075507703dc3f6905df957dac77b7b83aae3513b04cf5af77eeb8babdedd1
 DIST Crypt_GPG-1.6.0b3.tgz 345445 SHA256 
fc3757b33a1ea39f9816521aca50dee4bf6c07cc9c7be60600db32066cf89d29 SHA512 
0a3cb665fac8e84a0699600155cb74e2394e4759fe0b111d971d253ca511a371d06d826e54abadfbb3f707833cd3d6b369f52d04541b3e04f217056ec8439f4c
 WHIRLPOOL 
0df9a3b21bbfc0d2f8e3cd8efaf8e19a58981520976faf1c4b501a363bbb05c2e4299de22e3c987f8f5ead36e98b5401c813d07947e4e84c6c664c2d46c4e3fa

diff --git a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0.ebuild 
b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0.ebuild
new file mode 100644
index 00..f4f3090e4b
--- /dev/null
+++ b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+MY_PN="${PN/PEAR-/}"
+MY_PV="${PV/_/}"
+MY_PV="${MY_PV/beta/b}"
+MY_P="${MY_PN}-${MY_PV}"
+
+DESCRIPTION="PHP interface to the GNU Privacy Guard (GnuPG)"
+HOMEPAGE="http://pear.php.net/package/${MY_PN};
+SRC_URI="http://download.pear.php.net/package/${MY_P}.tgz;
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE="test"
+
+# Really only needs PEAR_Exception, not PEAR-PEAR.
+RDEPEND="app-crypt/gnupg
+   dev-lang/php:*[posix,unicode]
+   dev-php/PEAR-Console_CommandLine
+   dev-php/PEAR-PEAR"
+DEPEND="test? (${RDEPEND} dev-php/phpunit )"
+
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+   default
+   sed -i "s|@bin-dir@|${EPREFIX}/usr/bin|" Crypt/GPG/Engine.php || die
+   sed -i "s|@package-name@|${MY_PN}|" Crypt/GPG/PinEntry.php || die
+   sed -i "s|@data-dir@|${EPREFIX}/usr/share|" Crypt/GPG/PinEntry.php || 
die
+}
+
+src_install() {
+   dodoc README.md
+   dobin scripts/crypt-gpg-pinentry
+
+   insinto "/usr/share/${MY_PN}"
+   doins -r data
+
+   insinto /usr/share/php
+   doins -r Crypt
+}
+
+src_test() {
+   phpunit tests/ || die "test suite failed"
+}



[gentoo-commits] repo/gentoo:master commit in: dev-php/PEAR-Crypt_GPG/

2017-01-19 Thread Michael Orlitzky
commit: 9d239b40bef123cac4cd6a4eea12c72f40c97344
Author: Michael Orlitzky  gentoo  org>
AuthorDate: Fri Jan 20 02:22:25 2017 +
Commit: Michael Orlitzky  gentoo  org>
CommitDate: Fri Jan 20 02:28:15 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d239b40

dev-php/PEAR-Crypt_GPG: new version 1.6.0_beta3.

This new version drops the php-pear-r1 eclass, and fixes a few
things. The documentation and data files are now installed in the
correct place, and the tests are not installed at all. The test suite
does however run and pass. The LICENSE was also corrected.

Package-Manager: portage-2.3.0

 dev-php/PEAR-Crypt_GPG/Manifest|  2 +-
 .../PEAR-Crypt_GPG-1.6.0_beta1.ebuild  | 18 
 .../PEAR-Crypt_GPG-1.6.0_beta3.ebuild  | 49 ++
 dev-php/PEAR-Crypt_GPG/metadata.xml| 11 +++--
 4 files changed, 57 insertions(+), 23 deletions(-)

diff --git a/dev-php/PEAR-Crypt_GPG/Manifest b/dev-php/PEAR-Crypt_GPG/Manifest
index e8efb77..292e057 100644
--- a/dev-php/PEAR-Crypt_GPG/Manifest
+++ b/dev-php/PEAR-Crypt_GPG/Manifest
@@ -1,3 +1,3 @@
 DIST Crypt_GPG-1.3.2.tgz 339001 SHA256 
67f77bfb9b21dd428587f5bd336e4b9b2e200a1b62160e7ae0d0dfffd1357899 SHA512 
c045942798f2974d1d200413864708b4476b53d1999b721f1b51fd6cfafb23c05479a391ebc7ebe513f5a88641d63d991e7ba59b7edcbd8397efde365528f999
 WHIRLPOOL 
27124bb96e28d7206f56e0d0fcbee603b3f1516a4d61a98e4a72139cae7e76b357f025bde04baec83530ff4ad6ec2a7d35d92a114ad9269ff198c06c94d63aef
 DIST Crypt_GPG-1.4.2.tgz 345962 SHA256 
8e1cf98b5bf37fead50745327261c021efac8c1ee2bddd57c38be57e8f1bc969 SHA512 
c0384f0b4a35f8e7d7189b0b08c277c2629e7fa84e13f2c8c92aaafbeace7a60b6e18f2347571e7bcdf4bc504fd9463f080d9c2938063fdfcabc8f44dd7f4950
 WHIRLPOOL 
ea6e2d0dfbfc56cf4bec5bcdfa312a5f43109c305b699b501e102e81908ad1ba350a97525b5d9ada45d6713ef64512744b6e04f208b5dc2f029ad01fedbffb4e
-DIST Crypt_GPG-1.6.0b1.tgz 344406 SHA256 
a69ba79b8e5a75b3b4635045d9af1c83080b5224a1cf34b642aa86e8c50ec851 SHA512 
2ac367edf13fdcccd4c279958fd414ae36cf2cebcc03fe5d561d9c918da7ef663d756c150287c96b5f7316609b1bd744d314c806dd47c7c8c25711d9e4076d29
 WHIRLPOOL 
851b79c95cc55ec07098b605d739ee78c9d0c14dbb6056baa8b57cdf9b773ea635e47185a80229bfdf96da88d179d7e3462960bf9d995f606727fab3a42ddf82
+DIST Crypt_GPG-1.6.0b3.tgz 345445 SHA256 
fc3757b33a1ea39f9816521aca50dee4bf6c07cc9c7be60600db32066cf89d29 SHA512 
0a3cb665fac8e84a0699600155cb74e2394e4759fe0b111d971d253ca511a371d06d826e54abadfbb3f707833cd3d6b369f52d04541b3e04f217056ec8439f4c
 WHIRLPOOL 
0df9a3b21bbfc0d2f8e3cd8efaf8e19a58981520976faf1c4b501a363bbb05c2e4299de22e3c987f8f5ead36e98b5401c813d07947e4e84c6c664c2d46c4e3fa

diff --git a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0_beta1.ebuild 
b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0_beta1.ebuild
deleted file mode 100644
index b5ac777..
--- a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0_beta1.ebuild
+++ /dev/null
@@ -1,18 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="6"
-
-inherit php-pear-r1
-
-DESCRIPTION="GNU Privacy Guard (GnuPG)"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
-IUSE=""
-DEPEND=">=dev-lang/php-5.4.8:*[posix,unicode]"
-RDEPEND="${DEPEND}
-   app-crypt/gnupg
-   dev-php/PEAR-Console_CommandLine"

diff --git a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0_beta3.ebuild 
b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0_beta3.ebuild
new file mode 100644
index ..f4f3090
--- /dev/null
+++ b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0_beta3.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+MY_PN="${PN/PEAR-/}"
+MY_PV="${PV/_/}"
+MY_PV="${MY_PV/beta/b}"
+MY_P="${MY_PN}-${MY_PV}"
+
+DESCRIPTION="PHP interface to the GNU Privacy Guard (GnuPG)"
+HOMEPAGE="http://pear.php.net/package/${MY_PN};
+SRC_URI="http://download.pear.php.net/package/${MY_P}.tgz;
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE="test"
+
+# Really only needs PEAR_Exception, not PEAR-PEAR.
+RDEPEND="app-crypt/gnupg
+   dev-lang/php:*[posix,unicode]
+   dev-php/PEAR-Console_CommandLine
+   dev-php/PEAR-PEAR"
+DEPEND="test? (${RDEPEND} dev-php/phpunit )"
+
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+   default
+   sed -i "s|@bin-dir@|${EPREFIX}/usr/bin|" Crypt/GPG/Engine.php || die
+   sed -i "s|@package-name@|${MY_PN}|" Crypt/GPG/PinEntry.php || die
+   sed -i "s|@data-dir@|${EPREFIX}/usr/share|" Crypt/GPG/PinEntry.php || 
die
+}
+
+src_install() {
+   dodoc README.md
+   dobin scripts/crypt-gpg-pinentry
+
+   insinto "/usr/share/${MY_PN}"
+   doins -r data
+
+   insinto /usr/share/php
+   doins -r Crypt
+}
+
+src_test() {
+   phpunit tests/ || die "test suite failed"
+}

diff --git a/dev-php/PEAR-Crypt_GPG/metadata.xml 

[gentoo-commits] repo/gentoo:master commit in: dev-php/PEAR-Crypt_GPG/

2017-01-05 Thread Michael Orlitzky
commit: 5d9c97bc9c7f39fa9261b884cd98d5d2ed237adb
Author: Michael Orlitzky  gentoo  org>
AuthorDate: Fri Jan  6 05:08:31 2017 +
Commit: Michael Orlitzky  gentoo  org>
CommitDate: Fri Jan  6 05:08:31 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d9c97bc

dev-php/PEAR-Crypt_GPG: remove unused version 1.4.0.

Package-Manager: portage-2.3.0

 dev-php/PEAR-Crypt_GPG/Manifest|  1 -
 dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.4.0.ebuild | 18 --
 2 files changed, 19 deletions(-)

diff --git a/dev-php/PEAR-Crypt_GPG/Manifest b/dev-php/PEAR-Crypt_GPG/Manifest
index 725314b..e8efb77 100644
--- a/dev-php/PEAR-Crypt_GPG/Manifest
+++ b/dev-php/PEAR-Crypt_GPG/Manifest
@@ -1,4 +1,3 @@
 DIST Crypt_GPG-1.3.2.tgz 339001 SHA256 
67f77bfb9b21dd428587f5bd336e4b9b2e200a1b62160e7ae0d0dfffd1357899 SHA512 
c045942798f2974d1d200413864708b4476b53d1999b721f1b51fd6cfafb23c05479a391ebc7ebe513f5a88641d63d991e7ba59b7edcbd8397efde365528f999
 WHIRLPOOL 
27124bb96e28d7206f56e0d0fcbee603b3f1516a4d61a98e4a72139cae7e76b357f025bde04baec83530ff4ad6ec2a7d35d92a114ad9269ff198c06c94d63aef
-DIST Crypt_GPG-1.4.0.tgz 348446 SHA256 
5a1d45655c74eb187695cc1a1810256fbbc640fc728481086d64a365dcb1635e SHA512 
a27f24f66271484fe9d837c48c4fd68e53d24ed1d1c6baa55b1942ed5a82e4c8d5e25bed86b112cd5f9927b70ad40caead3fd3e1ddb87e4e2d983dd73302d498
 WHIRLPOOL 
c0f2f076700619b1b680efb3032e9471172880afd237a68b4a87a1211e6c11648564e3da75530cf56a86e827691ee467eac695419b3697180355621c34e0edd7
 DIST Crypt_GPG-1.4.2.tgz 345962 SHA256 
8e1cf98b5bf37fead50745327261c021efac8c1ee2bddd57c38be57e8f1bc969 SHA512 
c0384f0b4a35f8e7d7189b0b08c277c2629e7fa84e13f2c8c92aaafbeace7a60b6e18f2347571e7bcdf4bc504fd9463f080d9c2938063fdfcabc8f44dd7f4950
 WHIRLPOOL 
ea6e2d0dfbfc56cf4bec5bcdfa312a5f43109c305b699b501e102e81908ad1ba350a97525b5d9ada45d6713ef64512744b6e04f208b5dc2f029ad01fedbffb4e
 DIST Crypt_GPG-1.6.0b1.tgz 344406 SHA256 
a69ba79b8e5a75b3b4635045d9af1c83080b5224a1cf34b642aa86e8c50ec851 SHA512 
2ac367edf13fdcccd4c279958fd414ae36cf2cebcc03fe5d561d9c918da7ef663d756c150287c96b5f7316609b1bd744d314c806dd47c7c8c25711d9e4076d29
 WHIRLPOOL 
851b79c95cc55ec07098b605d739ee78c9d0c14dbb6056baa8b57cdf9b773ea635e47185a80229bfdf96da88d179d7e3462960bf9d995f606727fab3a42ddf82

diff --git a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.4.0.ebuild 
b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.4.0.ebuild
deleted file mode 100644
index 6737312..
--- a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.4.0.ebuild
+++ /dev/null
@@ -1,18 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="6"
-
-inherit php-pear-r1
-
-DESCRIPTION="GNU Privacy Guard (GnuPG)"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
-IUSE=""
-DEPEND=">=dev-lang/php-5.2.1:*[posix,unicode]"
-RDEPEND="${DEPEND}
-   app-crypt/gnupg
-   dev-php/PEAR-Console_CommandLine"



[gentoo-commits] repo/gentoo:master commit in: dev-php/PEAR-Crypt_GPG/

2016-12-23 Thread Markus Meier
commit: ee356cb8be69853d6de1051337782dba759efba0
Author: Markus Meier  gentoo  org>
AuthorDate: Fri Dec 23 15:05:48 2016 +
Commit: Markus Meier  gentoo  org>
CommitDate: Fri Dec 23 15:05:48 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee356cb8

dev-php/PEAR-Crypt_GPG: arm stable, bug #601410

Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --include-arches="arm"

 dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.4.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.4.2.ebuild 
b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.4.2.ebuild
index cf4e3b9..973843d 100644
--- a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.4.2.ebuild
+++ b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.4.2.ebuild
@@ -10,7 +10,7 @@ DESCRIPTION="GNU Privacy Guard (GnuPG)"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~arm x86"
+KEYWORDS="amd64 arm x86"
 IUSE=""
 DEPEND=">=dev-lang/php-5.2.1:*[posix,unicode]"
 RDEPEND="${DEPEND}



[gentoo-commits] repo/gentoo:master commit in: dev-php/PEAR-Crypt_GPG/

2016-12-13 Thread Agostino Sarubbo
commit: bdf42fdc2c787db713725689b4ab73b0f7150a08
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Dec 13 11:29:02 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Dec 13 11:29:02 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bdf42fdc

dev-php/PEAR-Crypt_GPG: x86 stable wrt bug #601410

Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.4.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.4.2.ebuild 
b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.4.2.ebuild
index 2a85b17..cf4e3b9 100644
--- a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.4.2.ebuild
+++ b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.4.2.ebuild
@@ -10,7 +10,7 @@ DESCRIPTION="GNU Privacy Guard (GnuPG)"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~x86"
+KEYWORDS="amd64 ~arm x86"
 IUSE=""
 DEPEND=">=dev-lang/php-5.2.1:*[posix,unicode]"
 RDEPEND="${DEPEND}



[gentoo-commits] repo/gentoo:master commit in: dev-php/PEAR-Crypt_GPG/

2016-12-13 Thread Agostino Sarubbo
commit: b987821f7552b85e923303f608c56a0fbbe1e1c4
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Dec 13 11:03:19 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Dec 13 11:03:19 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b987821f

dev-php/PEAR-Crypt_GPG: amd64 stable wrt bug #601410

Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.4.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.4.2.ebuild 
b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.4.2.ebuild
index 6737312..2a85b17 100644
--- a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.4.2.ebuild
+++ b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.4.2.ebuild
@@ -10,7 +10,7 @@ DESCRIPTION="GNU Privacy Guard (GnuPG)"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
+KEYWORDS="amd64 ~arm ~x86"
 IUSE=""
 DEPEND=">=dev-lang/php-5.2.1:*[posix,unicode]"
 RDEPEND="${DEPEND}



[gentoo-commits] repo/gentoo:master commit in: dev-php/PEAR-Crypt_GPG/

2016-10-31 Thread Brian Evans
commit: 4eac57b6a955aef3656686f03a6c33947f7fa660
Author: Brian Evans  gentoo  org>
AuthorDate: Mon Oct 31 14:53:05 2016 +
Commit: Brian Evans  gentoo  org>
CommitDate: Mon Oct 31 14:53:05 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4eac57b6

dev-php/PEAR-Crypt_GPG: Version bump;

Adds support for GnuPG 2.1

Package-Manager: portage-2.3.2

 dev-php/PEAR-Crypt_GPG/Manifest|  1 +
 .../PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0_beta1.ebuild   | 18 ++
 2 files changed, 19 insertions(+)

diff --git a/dev-php/PEAR-Crypt_GPG/Manifest b/dev-php/PEAR-Crypt_GPG/Manifest
index 0ac55b8..725314b 100644
--- a/dev-php/PEAR-Crypt_GPG/Manifest
+++ b/dev-php/PEAR-Crypt_GPG/Manifest
@@ -1,3 +1,4 @@
 DIST Crypt_GPG-1.3.2.tgz 339001 SHA256 
67f77bfb9b21dd428587f5bd336e4b9b2e200a1b62160e7ae0d0dfffd1357899 SHA512 
c045942798f2974d1d200413864708b4476b53d1999b721f1b51fd6cfafb23c05479a391ebc7ebe513f5a88641d63d991e7ba59b7edcbd8397efde365528f999
 WHIRLPOOL 
27124bb96e28d7206f56e0d0fcbee603b3f1516a4d61a98e4a72139cae7e76b357f025bde04baec83530ff4ad6ec2a7d35d92a114ad9269ff198c06c94d63aef
 DIST Crypt_GPG-1.4.0.tgz 348446 SHA256 
5a1d45655c74eb187695cc1a1810256fbbc640fc728481086d64a365dcb1635e SHA512 
a27f24f66271484fe9d837c48c4fd68e53d24ed1d1c6baa55b1942ed5a82e4c8d5e25bed86b112cd5f9927b70ad40caead3fd3e1ddb87e4e2d983dd73302d498
 WHIRLPOOL 
c0f2f076700619b1b680efb3032e9471172880afd237a68b4a87a1211e6c11648564e3da75530cf56a86e827691ee467eac695419b3697180355621c34e0edd7
 DIST Crypt_GPG-1.4.2.tgz 345962 SHA256 
8e1cf98b5bf37fead50745327261c021efac8c1ee2bddd57c38be57e8f1bc969 SHA512 
c0384f0b4a35f8e7d7189b0b08c277c2629e7fa84e13f2c8c92aaafbeace7a60b6e18f2347571e7bcdf4bc504fd9463f080d9c2938063fdfcabc8f44dd7f4950
 WHIRLPOOL 
ea6e2d0dfbfc56cf4bec5bcdfa312a5f43109c305b699b501e102e81908ad1ba350a97525b5d9ada45d6713ef64512744b6e04f208b5dc2f029ad01fedbffb4e
+DIST Crypt_GPG-1.6.0b1.tgz 344406 SHA256 
a69ba79b8e5a75b3b4635045d9af1c83080b5224a1cf34b642aa86e8c50ec851 SHA512 
2ac367edf13fdcccd4c279958fd414ae36cf2cebcc03fe5d561d9c918da7ef663d756c150287c96b5f7316609b1bd744d314c806dd47c7c8c25711d9e4076d29
 WHIRLPOOL 
851b79c95cc55ec07098b605d739ee78c9d0c14dbb6056baa8b57cdf9b773ea635e47185a80229bfdf96da88d179d7e3462960bf9d995f606727fab3a42ddf82

diff --git a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0_beta1.ebuild 
b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0_beta1.ebuild
new file mode 100644
index ..b5ac777
--- /dev/null
+++ b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0_beta1.ebuild
@@ -0,0 +1,18 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="6"
+
+inherit php-pear-r1
+
+DESCRIPTION="GNU Privacy Guard (GnuPG)"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE=""
+DEPEND=">=dev-lang/php-5.4.8:*[posix,unicode]"
+RDEPEND="${DEPEND}
+   app-crypt/gnupg
+   dev-php/PEAR-Console_CommandLine"



[gentoo-commits] repo/gentoo:master commit in: dev-php/PEAR-Crypt_GPG/

2016-07-15 Thread Brian Evans
commit: 781a3f1cd27ade1fb5314be51dc625a9dc4f941f
Author: Brian Evans  gentoo  org>
AuthorDate: Fri Jul 15 18:44:46 2016 +
Commit: Brian Evans  gentoo  org>
CommitDate: Fri Jul 15 18:47:02 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=781a3f1c

dev-php/PEAR-Crypt_GPG: Version bump

Package-Manager: portage-2.3.0

 dev-php/PEAR-Crypt_GPG/Manifest|  1 +
 dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.4.2.ebuild | 18 ++
 2 files changed, 19 insertions(+)

diff --git a/dev-php/PEAR-Crypt_GPG/Manifest b/dev-php/PEAR-Crypt_GPG/Manifest
index e5d63b3..0ac55b8 100644
--- a/dev-php/PEAR-Crypt_GPG/Manifest
+++ b/dev-php/PEAR-Crypt_GPG/Manifest
@@ -1,2 +1,3 @@
 DIST Crypt_GPG-1.3.2.tgz 339001 SHA256 
67f77bfb9b21dd428587f5bd336e4b9b2e200a1b62160e7ae0d0dfffd1357899 SHA512 
c045942798f2974d1d200413864708b4476b53d1999b721f1b51fd6cfafb23c05479a391ebc7ebe513f5a88641d63d991e7ba59b7edcbd8397efde365528f999
 WHIRLPOOL 
27124bb96e28d7206f56e0d0fcbee603b3f1516a4d61a98e4a72139cae7e76b357f025bde04baec83530ff4ad6ec2a7d35d92a114ad9269ff198c06c94d63aef
 DIST Crypt_GPG-1.4.0.tgz 348446 SHA256 
5a1d45655c74eb187695cc1a1810256fbbc640fc728481086d64a365dcb1635e SHA512 
a27f24f66271484fe9d837c48c4fd68e53d24ed1d1c6baa55b1942ed5a82e4c8d5e25bed86b112cd5f9927b70ad40caead3fd3e1ddb87e4e2d983dd73302d498
 WHIRLPOOL 
c0f2f076700619b1b680efb3032e9471172880afd237a68b4a87a1211e6c11648564e3da75530cf56a86e827691ee467eac695419b3697180355621c34e0edd7
+DIST Crypt_GPG-1.4.2.tgz 345962 SHA256 
8e1cf98b5bf37fead50745327261c021efac8c1ee2bddd57c38be57e8f1bc969 SHA512 
c0384f0b4a35f8e7d7189b0b08c277c2629e7fa84e13f2c8c92aaafbeace7a60b6e18f2347571e7bcdf4bc504fd9463f080d9c2938063fdfcabc8f44dd7f4950
 WHIRLPOOL 
ea6e2d0dfbfc56cf4bec5bcdfa312a5f43109c305b699b501e102e81908ad1ba350a97525b5d9ada45d6713ef64512744b6e04f208b5dc2f029ad01fedbffb4e

diff --git a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.4.2.ebuild 
b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.4.2.ebuild
new file mode 100644
index 000..6737312
--- /dev/null
+++ b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.4.2.ebuild
@@ -0,0 +1,18 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="6"
+
+inherit php-pear-r1
+
+DESCRIPTION="GNU Privacy Guard (GnuPG)"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE=""
+DEPEND=">=dev-lang/php-5.2.1:*[posix,unicode]"
+RDEPEND="${DEPEND}
+   app-crypt/gnupg
+   dev-php/PEAR-Console_CommandLine"



[gentoo-commits] repo/gentoo:master commit in: dev-php/PEAR-Crypt_GPG/

2016-03-02 Thread Markus Meier
commit: abb33022b05ff12a6ee1680793fc20ff9f81e397
Author: Markus Meier  gentoo  org>
AuthorDate: Wed Mar  2 19:26:29 2016 +
Commit: Markus Meier  gentoo  org>
CommitDate: Wed Mar  2 19:26:29 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=abb33022

dev-php/PEAR-Crypt_GPG: add ~arm, bug #574264

Package-Manager: portage-2.2.27
RepoMan-Options: --include-arches="arm"

 dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.4.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.4.0.ebuild 
b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.4.0.ebuild
index b15e610..6737312 100644
--- a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.4.0.ebuild
+++ b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.4.0.ebuild
@@ -10,7 +10,7 @@ DESCRIPTION="GNU Privacy Guard (GnuPG)"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm ~x86"
 IUSE=""
 DEPEND=">=dev-lang/php-5.2.1:*[posix,unicode]"
 RDEPEND="${DEPEND}



[gentoo-commits] repo/gentoo:master commit in: dev-php/PEAR-Crypt_GPG/

2016-02-09 Thread Brian Evans
commit: cd2dda9521039beec529260335f35cd9bb27c75b
Author: Brian Evans  gentoo  org>
AuthorDate: Tue Feb  9 14:17:59 2016 +
Commit: Brian Evans  gentoo  org>
CommitDate: Tue Feb  9 14:17:59 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd2dda95

dev-php/PEAR-Crypt_GPG: Version bump; drop keywords due to new dependency

Package-Manager: portage-2.2.27

 dev-php/PEAR-Crypt_GPG/Manifest|  1 +
 dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.4.0.ebuild | 18 ++
 2 files changed, 19 insertions(+)

diff --git a/dev-php/PEAR-Crypt_GPG/Manifest b/dev-php/PEAR-Crypt_GPG/Manifest
index 7dd7350..e5d63b3 100644
--- a/dev-php/PEAR-Crypt_GPG/Manifest
+++ b/dev-php/PEAR-Crypt_GPG/Manifest
@@ -1 +1,2 @@
 DIST Crypt_GPG-1.3.2.tgz 339001 SHA256 
67f77bfb9b21dd428587f5bd336e4b9b2e200a1b62160e7ae0d0dfffd1357899 SHA512 
c045942798f2974d1d200413864708b4476b53d1999b721f1b51fd6cfafb23c05479a391ebc7ebe513f5a88641d63d991e7ba59b7edcbd8397efde365528f999
 WHIRLPOOL 
27124bb96e28d7206f56e0d0fcbee603b3f1516a4d61a98e4a72139cae7e76b357f025bde04baec83530ff4ad6ec2a7d35d92a114ad9269ff198c06c94d63aef
+DIST Crypt_GPG-1.4.0.tgz 348446 SHA256 
5a1d45655c74eb187695cc1a1810256fbbc640fc728481086d64a365dcb1635e SHA512 
a27f24f66271484fe9d837c48c4fd68e53d24ed1d1c6baa55b1942ed5a82e4c8d5e25bed86b112cd5f9927b70ad40caead3fd3e1ddb87e4e2d983dd73302d498
 WHIRLPOOL 
c0f2f076700619b1b680efb3032e9471172880afd237a68b4a87a1211e6c11648564e3da75530cf56a86e827691ee467eac695419b3697180355621c34e0edd7

diff --git a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.4.0.ebuild 
b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.4.0.ebuild
new file mode 100644
index 000..b15e610
--- /dev/null
+++ b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.4.0.ebuild
@@ -0,0 +1,18 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="6"
+
+inherit php-pear-r1
+
+DESCRIPTION="GNU Privacy Guard (GnuPG)"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+DEPEND=">=dev-lang/php-5.2.1:*[posix,unicode]"
+RDEPEND="${DEPEND}
+   app-crypt/gnupg
+   dev-php/PEAR-Console_CommandLine"