Search Criteria
Package Details: perl-http-proxy 0.304-2
Package Actions
Git Clone URL: | https://aur.archlinux.org/perl-http-proxy.git (read-only, click to copy) |
---|---|
Package Base: | perl-http-proxy |
Description: | HTTP proxy |
Upstream URL: | http://search.cpan.org/dist/HTTP-Proxy |
Licenses: | GPL, PerlArtistic |
Submitter: | sputnick |
Maintainer: | zeppelinlg |
Last Packager: | zeppelinlg |
Votes: | 3 |
Popularity: | 0.000000 |
First Submitted: | 2010-04-03 23:11 (UTC) |
Last Updated: | 2022-06-27 11:02 (UTC) |
Dependencies (2)
- perl-libwww (make)
- perl-test-simple (perl-git, perl) (make)
Required by (1)
- fusioninventory-agent (check)
Latest Comments
MarsSeed commented on 2022-06-27 11:27 (UTC) (edited on 2022-06-27 11:27 (UTC) by MarsSeed)
Please move the
make test
command to a separatecheck()
function.Currently that test execution also freezes for a long time and then errors out, thereby preventing the build phase to finish and the package cannot be created.
YELLOW commented on 2020-07-21 13:07 (UTC)
Extend @neowinx PKGBUILD. Using local patches:
HTTP-Proxy-0.304-Support-IPv6.patch:
HTTP-Proxy-0.304-Fix-Empty-Read.patch:
PKGBUILD:
rimeno commented on 2020-06-18 09:46 (UTC)
Even with the path (with the PKGBUILD proposed by @neowinx), it doesn't compile.
neowinx commented on 2020-02-03 15:40 (UTC)
As @rdoursenaud pointed out, the PKGBUILD needs to contain the patched version or the build doesn't work:
PKGBUILD:
rdoursenaud commented on 2019-05-22 12:42 (UTC)
The relevant patch has been posted there: https://rt.cpan.org/Public/Bug/Display.html?id=120275
It's the same that is applied by Debian.
Please add it to the package.
Thanks.
andreagi commented on 2019-03-03 09:37 (UTC) (edited on 2019-03-03 09:43 (UTC) by andreagi)
There is an issue on the dependency https://www.archlinux.org/packages/extra/any/perl-libwww/ that prevents this package to successfully complete the test where the proxy is an IPv6 address. There are two different issues open on the libwww-perl tracker, see:
https://github.com/libwww-perl/libwww-perl/issues/148
https://github.com/libwww-perl/libwww-perl/issues/237
both the patches correct the file:
/usr/share/perl5/vendor_perl/LWP/UserAgent.pm
this line:
Carp::croak("Bad http proxy specification '$url'") if $url =~ /^https?:/ && $url !~ m,^https?://\w,;
with either:
Carp::croak("Bad http proxy specification '$url'") if $url =~ /^https?:/ && $url !~ m,^https?://(\w|[),;
or
Carp::croak("Bad http proxy specification '$url'") if $url =~ /^https?:/ && $url !~ m,^https?://[\w[],;
alessiotomelleri commented on 2018-09-24 08:54 (UTC)
Hi,
problem still there...
t/20dummy.t ............... Bad http proxy specification .... line 80
@jcorthoefer if your patch works, could you upload it or simply show it ?!
thx in advance to everyone could help here. Alessio
sputnick commented on 2018-04-02 16:27 (UTC)
Latest commit b8065e8 on 16 Jun 2015 https://github.com/book/HTTP-Proxy
sputnick commented on 2018-04-02 16:25 (UTC)
If test fails, it's an upstream issue, not related to aur
astroty commented on 2018-04-02 14:44 (UTC)
Test 20dummy.t is still failing with the error:
t/20dummy.t ............... Bad http proxy specification 'http://[::1]:33485/' at t/20dummy.t line 80.
jcorthoefer commented on 2018-01-19 16:23 (UTC)
This package does not currently build nor do the tests work. I've added patches to at least let it build. I'll submit the diff file as soon as I figure out how to upload it.
Radar2 commented on 2017-12-15 09:05 (UTC)
Hi. Build breaks:
t/20dummy.t ............... Bad http proxy specification 'http://[::1]:46805/' at t/20dummy.t line 80.
Then it hangs indefinitely
bparmentier commented on 2017-01-05 11:30 (UTC)