Hanno commited on 2018-02-20 16:59:15
Zeige 4 geänderte Dateien mit 0 Einfügungen und 81 Löschungen.
... | ... |
@@ -1,4 +0,0 @@ |
1 |
-AUX fix-failing-tests-1.1.1.patch 1250 SHA256 340064772313d6a784746587f634ac2225f2100c57ec079c90e3a6acb226c866 SHA512 9e3c93b337c38feaec29001a5a5b243f376bc7a32caaafa848b51daa3f0efbdecf407de6c8f304801ad106aa0e4906513588c42aa19bc6d5b261ccd6cb00b652 WHIRLPOOL f4ba0bb7c8505de8119ab7ddfc2466709d3ed7cc9cf241ccf66039acc215496f6e6bd09ee2ff73b0a35ecd80aeed5345c89ee93fa455b1f0dd29203e2b0baecc |
|
2 |
-DIST geoip-1.1.1.tgz 13004 SHA256 b2d05c03019d46135c249b5a7fa0dbd43ca5ee98aea8ed807bc7aa90ac8c0f06 SHA512 395715297726aa8e7ed71297d403bea9cb08417a03adfca29dc6ea68bbc738c176f71ea621f9026109e07cd5a2adc647e2af8e140e18a6af1c8f0fe4ed1a9c6b WHIRLPOOL 2792b1c03efa7963b1d113133e21979ebe95ca0fc179192101cd515c77914c6c040bef744a81cbb7f36583c30dfa7b45123c2fca9c214314d9ab88429496bb24 |
|
3 |
-EBUILD pecl-geoip-1.1.1-r3.ebuild 451 SHA256 06bb930958140c27a667217dc0df487256aac466a53b6782f6c41d357c278222 SHA512 5e6634fa0104a0541b98ed8c8f176673246d2f366488fb4fb3ebd38f4196732958d221d2055da9e3a2581a8df56df5dade05a81866607199361c53bbb486617a WHIRLPOOL 7cc8c1dd9e4dfa6afb66a233804ffc440d6de5121d892cd376d4788b3bd67525e693e43f0735c9ef8483fcdbb226f7dc90d299ae510fe3a8c6a414d51ff73de2 |
|
4 |
-MISC metadata.xml 239 SHA256 b54aca642ac424532264a97d14931720ed288cf387dbdef6a10b34ffed6689f1 SHA512 2181b874bfe8cd31e7730d8207e26cfd2f272eaf2d1b57ae0faff126347a5298fa1c506d9107e1da9736c8a0ed9c8c339e4d9509a8726b79dbe86e073c12dee0 WHIRLPOOL 80ab9605bb31ce3310bf524de4705c67ca85cf8f2346b7e13274595598b9fe92c9b119beb865ef214ad33ef172b880e318d18ff8c8d2026cb7319f0524d8a7aa |
... | ... |
@@ -1,46 +0,0 @@ |
1 |
-On Gentoo, we require users to download the GeoIP databases |
|
2 |
-themselves. As a result, the databases may not be there when |
|
3 |
-installing pecl-geoip. The first patch below skips a test if the |
|
4 |
-database it uses is not present. The second patch disables 019.phpt |
|
5 |
-completely, because I can't make it pass. |
|
6 |
- |
|
7 |
-PHP-Bug: 73416 |
|
8 |
- |
|
9 |
-diff --git a/tests/001.phpt b/tests/001.phpt |
|
10 |
-index a548d6e..c0e4972 100644 |
|
11 |
---- a/tests/001.phpt |
|
12 |
-+++ b/tests/001.phpt |
|
13 |
-@@ -1,7 +1,10 @@ |
|
14 |
- --TEST-- |
|
15 |
- Checking Country (Free) DB availability |
|
16 |
- --SKIPIF-- |
|
17 |
--<?php if (!extension_loaded("geoip")) print "skip"; ?> |
|
18 |
-+<?php |
|
19 |
-+if (!extension_loaded("geoip")) print "skip"; |
|
20 |
-+if (!file_exists(geoip_db_filename(GEOIP_COUNTRY_EDITION))) print "skip"; |
|
21 |
-+?> |
|
22 |
- --POST-- |
|
23 |
- --GET-- |
|
24 |
- --FILE-- |
|
25 |
-diff --git a/tests/019.phpt b/tests/019.phpt |
|
26 |
-deleted file mode 100644 |
|
27 |
-index 4630354..0000000 |
|
28 |
---- a/tests/019.phpt |
|
29 |
-+++ /dev/null |
|
30 |
-@@ -1,15 +0,0 @@ |
|
31 |
----TEST-- |
|
32 |
--Checking geoip_setup_custom_directory() (with trailing slash) |
|
33 |
----SKIPIF-- |
|
34 |
--<?php if (!extension_loaded("geoip")) print "skip"; ?> |
|
35 |
----INI-- |
|
36 |
--geoip.custom_directory="/test/" |
|
37 |
----FILE-- |
|
38 |
--<?php |
|
39 |
-- |
|
40 |
--var_dump( geoip_country_name_by_name_v6('0000:0000:0000:0000') ); |
|
41 |
-- |
|
42 |
--?> |
|
43 |
----EXPECT-- |
|
44 |
--string(27) "/some/other/place/GeoIP.dat" |
|
45 |
--string(6) "/test/" |
|
46 |
-\ No newline at end of file |
... | ... |
@@ -1,23 +0,0 @@ |
1 |
-# Copyright 1999-2017 Gentoo Foundation |
|
2 |
-# Distributed under the terms of the GNU General Public License v2 |
|
3 |
-# $Id$ |
|
4 |
- |
|
5 |
-EAPI=6 |
|
6 |
- |
|
7 |
-PHP_EXT_NAME="geoip" |
|
8 |
-DOCS="README ChangeLog" |
|
9 |
-USE_PHP="php5-6 php7-0 php7-1" |
|
10 |
- |
|
11 |
-inherit php-ext-pecl-r3 |
|
12 |
- |
|
13 |
-KEYWORDS="~amd64 ~x86" |
|
14 |
- |
|
15 |
-DESCRIPTION="PHP extension to map IP address to geographic places" |
|
16 |
-LICENSE="PHP-3" |
|
17 |
-SLOT="0" |
|
18 |
-IUSE="" |
|
19 |
- |
|
20 |
-DEPEND="dev-libs/geoip" |
|
21 |
-RDEPEND="${DEPEND}" |
|
22 |
- |
|
23 |
-PATCHES=( "${FILESDIR}/fix-failing-tests-1.1.1.patch" ) |
|
24 | 0 |