summaryrefslogtreecommitdiffstats
path: root/Crypt_RSA-role.patch
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2014-01-24 07:45:31 +0100
committerRemi Collet <fedora@famillecollet.com>2014-01-24 07:45:31 +0100
commit8a1c5f8ff870995d911b6f19602a7cea7432b9aa (patch)
treedca59aba05956b9b4cb062a01b42d5509a111c5c /Crypt_RSA-role.patch
php-phpseclib-crypt-rsa: import from rawhide
Diffstat (limited to 'Crypt_RSA-role.patch')
-rw-r--r--Crypt_RSA-role.patch42
1 files changed, 42 insertions, 0 deletions
diff --git a/Crypt_RSA-role.patch b/Crypt_RSA-role.patch
new file mode 100644
index 0000000..079032c
--- /dev/null
+++ b/Crypt_RSA-role.patch
@@ -0,0 +1,42 @@
+--- Crypt_RSA-0.3.5/RSA.php 2014-01-07 11:18:22.000000000 +0100
++++ Crypt_RSA-0.3.5/RSA.php.fix 2014-01-07 11:18:22.000000000 +0100
+@@ -171,7 +171,7 @@ define('CRYPT_RSA_MODE_OPENSSL', 2);
+ /**
+ * Default openSSL configuration file.
+ */
+-define('CRYPT_RSA_OPENSSL_CONFIG', dirname(__FILE__) . '/../openssl.cnf');
++define('CRYPT_RSA_OPENSSL_CONFIG', 'openssl.cnf');
+
+
+ /**#@+
+@@ -465,7 +465,14 @@ class Crypt_RSA {
+ require_once('Math/BigInteger.php');
+ }
+
+- $this->configFile = CRYPT_RSA_OPENSSL_CONFIG;
++ $dir = '@cfg_dir@' . DIRECTORY_SEPARATOR . 'Crypt_RSA';
++ if (strpos($dir, '@') === false) {
++ // PEAR installer was used to install the package
++ } else {
++ // manual install
++ $dir = dirname(__FILE__);
++ }
++ $this->configFile = $dir . DIRECTORY_SEPARATOR . CRYPT_RSA_OPENSSL_CONFIG;
+
+ if ( !defined('CRYPT_RSA_MODE') ) {
+ switch (true) {
+--- package.xml 2014-01-07 11:03:40.000000000 +0100
++++ package.xml.fix 2014-01-07 11:06:12.000000000 +0100
+@@ -23,8 +23,10 @@
+ <notes>0.3.5 release</notes>
+ <contents>
+ <dir name="/">
+- <file baseinstalldir="Crypt" name="RSA.php" role="php" md5sum="bd0402efcbf7cdeb3e68205c77a88bc0"/>
+- <file baseinstalldir="" name="openssl.cnf" role="php" md5sum="0f1015cb8894127a94a05afa7cc23760"/>
++ <file baseinstalldir="Crypt" name="RSA.php" role="php">
++ <tasks:replace from="@cfg_dir@" to="cfg_dir" type="pear-config" />
++ </file>
++ <file name="openssl.cnf" role="cfg" md5sum="0f1015cb8894127a94a05afa7cc23760"/>
+ </dir>
+ </contents>
+ <dependencies>