Search Criteria
Package Details: perl-http-proxy 0.304-3
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: | None |
Last Packager: | micwoj92 |
Votes: | 4 |
Popularity: | 1.00 |
First Submitted: | 2010-04-03 23:11 (UTC) |
Last Updated: | 2024-06-27 20:52 (UTC) |
Dependencies (2)
- perl-libwww (make)
- perl-test-simple (perl-gitAUR, perl) (make)
Required by (2)
- fusioninventory-agent (check)
- glpi-agent
Latest Comments
1 2 Next › Last »
B3l3tte commented on 2022-10-29 16:47 (UTC)
This patch is working as intended :
If you want to unite it with the existing
HTTP-Proxy-0.304-Fix-Test.patch
which already modifies this file, here it is :B3l3tte commented on 2022-10-29 16:31 (UTC)
The 504 error is not due to upstream but to the test backend : https://github.com/aaronpowell/httpstatus/issues/89#issuecomment-705978272 I think we need to skip the
504
test or hit another URL proposing the same kind of service.I'll try to write a patch and post it here.
B3l3tte commented on 2022-08-16 15:19 (UTC)
Hello, I have the same error as @MarsSeed during the test phase :
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
1 2 Next › Last »