forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dev-perl/libwww-perl: Bump to version 6.160.0
- EAPI6 - Tests enabled Upstream: - LWP::Protocol::GHTTP moved to its own dist (Not yet added to gentoo on the basis that anything using this would already need a dep on HTTP::GHTTP as well, which is not in tree either) - Test suite updated - Allow default header to carry over when using UA->post Keywording: - Dropped all but x86 and amd64 due to new dependencies Package-Manager: Portage-2.3.3, Repoman-2.3.1
- Loading branch information
1 parent
e451ff7
commit 30ab0ec
Showing
3 changed files
with
69 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
DIST libwww-perl-6.15.tar.gz 141936 SHA256 6f349d45c21b1ec0501c4437dfcb70570940e6c3d5bff783bd91d4cddead8322 SHA512 b031f1b6766fe5433940abbda438013211e0f82713bfbe8f3512fd3dd64d2c7b1236d19bb9414094726a37ee91908ebca5269855a639d0fd921423163b227aed WHIRLPOOL 808921729702a443950f697ae7d691bafe07a2641aafb6ffc31342301f5881c375dcb35b0f8f11d57d84a13c0d0b79bbfa23d52395e6e689e0381c379d48af03 | ||
DIST libwww-perl-6.16.tar.gz 143751 SHA256 daffd268000f92d241f8ae5508ae5616dbd02f15a587b4fbcd14998ccc15ce22 SHA512 7652d3d79d2638c523140fe8bd0df5bf691d070ad9b972c62f1f3771478b98f72909299b58cf20d280967b99cb2daa7e382916d1f8a3775da0cf9c7457d9d3ca WHIRLPOOL 3ea817eddd83a289eff37ac14a8778252fa125572c16295588019ba53f8babf1f87bddb7fa283586184a610d185bdff430dd5e0b65392de63553a9f10cdc3e14 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
# Copyright 1999-2017 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=6 | ||
|
||
DIST_AUTHOR=OALDERS | ||
DIST_VERSION=6.16 | ||
inherit perl-module | ||
|
||
DESCRIPTION="A collection of Perl Modules for the WWW" | ||
|
||
SLOT="0" | ||
KEYWORDS="~amd64 ~x86" | ||
IUSE="ssl test" | ||
|
||
RDEPEND=" | ||
virtual/perl-Digest-MD5 | ||
>=virtual/perl-Encode-2.120.0 | ||
dev-perl/Encode-Locale | ||
>=dev-perl/File-Listing-6.0.0 | ||
>=dev-perl/HTML-Parser-3.340.0 | ||
>=dev-perl/HTTP-Cookies-6.0.0 | ||
>=dev-perl/HTTP-Daemon-6.0.0 | ||
>=dev-perl/HTTP-Date-6.0.0 | ||
>=dev-perl/HTTP-Negotiate-6.0.0 | ||
>=dev-perl/HTTP-Message-6.0.0 | ||
virtual/perl-IO | ||
>=dev-perl/LWP-MediaTypes-6.0.0 | ||
>=virtual/perl-MIME-Base64-2.120.0 | ||
>=dev-perl/Net-HTTP-6.70.0 | ||
>=dev-perl/URI-1.100.0 | ||
>=dev-perl/WWW-RobotRules-6.0.0 | ||
>=virtual/perl-libnet-1.220.0 | ||
" | ||
DEPEND="${RDEPEND} | ||
virtual/perl-ExtUtils-MakeMaker | ||
virtual/perl-Getopt-Long | ||
test? ( | ||
dev-perl/Test-Fatal | ||
dev-perl/Test-RequiresInternet | ||
virtual/perl-Test-Simple | ||
) | ||
" | ||
PDEPEND=" | ||
ssl? ( | ||
>=dev-perl/LWP-Protocol-https-6.20.0 | ||
) | ||
" | ||
|
||
src_install() { | ||
perl-module_src_install | ||
|
||
# Perform a check to see if the live filesystem is case-INsensitive | ||
# or not. If it is, the symlinks GET, POST and in particular HEAD | ||
# will collide with e.g. head from coreutils. While under Linux | ||
# having a case-INsensitive filesystem is really unusual, most Mac | ||
# OS X users are on it, and also Interix users deal with | ||
# case-INsensitivity since Windows is underneath. | ||
|
||
# bash should always be there, if we can find it in capitals, we're | ||
# on a case-INsensitive filesystem. | ||
if [[ ! -f ${EROOT}/BIN/BASH ]] ; then | ||
dosym /usr/bin/lwp-request /usr/bin/GET | ||
dosym /usr/bin/lwp-request /usr/bin/POST | ||
dosym /usr/bin/lwp-request /usr/bin/HEAD | ||
fi | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters