Received: by mail.netbsd.org (Postfix, from userid 605) id 7E8D284D36; Wed, 10 Jan 2024 16:05:14 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id AE14984D1B for ; Wed, 10 Jan 2024 16:05:13 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id xSsKPoMpQU4m for ; Wed, 10 Jan 2024 16:05:13 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 1C27284CD7 for ; Wed, 10 Jan 2024 16:05:13 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 0CC24FA42; Wed, 10 Jan 2024 16:05:13 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1704902713280940" MIME-Version: 1.0 Date: Wed, 10 Jan 2024 16:05:13 +0000 From: "Amitai Schleier" Subject: CVS commit: pkgsrc/www/p5-HTTP-Tiny To: pkgsrc-changes@NetBSD.org Reply-To: schmonz@netbsd.org X-Mailer: log_accum Message-Id: <20240110160513.0CC24FA42@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1704902713280940 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: schmonz Date: Wed Jan 10 16:05:12 UTC 2024 Added Files: pkgsrc/www/p5-HTTP-Tiny: DESCR Makefile distinfo Log Message: Add p5-HTTP-Tiny: Small, simple, correct HTTP/1.1 client This is a very simple HTTP/1.1 client, designed for doing simple requests without the overhead of a large framework like LWP::UserAgent. It is more correct and more complete than HTTP::Lite. It supports proxies and redirection. It also correctly resumes after EINTR. To generate a diff of this commit: cvs rdiff -u -r0 -r1.3 pkgsrc/www/p5-HTTP-Tiny/DESCR cvs rdiff -u -r0 -r1.27 pkgsrc/www/p5-HTTP-Tiny/Makefile cvs rdiff -u -r0 -r1.17 pkgsrc/www/p5-HTTP-Tiny/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1704902713280940 Content-Disposition: inline Content-Length: 2050 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Added files: Index: pkgsrc/www/p5-HTTP-Tiny/DESCR diff -u /dev/null pkgsrc/www/p5-HTTP-Tiny/DESCR:1.3 --- /dev/null Wed Jan 10 16:05:12 2024 +++ pkgsrc/www/p5-HTTP-Tiny/DESCR Wed Jan 10 16:05:12 2024 @@ -0,0 +1,5 @@ +This is a very simple HTTP/1.1 client, designed for doing simple +requests without the overhead of a large framework like LWP::UserAgent. + +It is more correct and more complete than HTTP::Lite. It supports +proxies and redirection. It also correctly resumes after EINTR. Index: pkgsrc/www/p5-HTTP-Tiny/Makefile diff -u /dev/null pkgsrc/www/p5-HTTP-Tiny/Makefile:1.27 --- /dev/null Wed Jan 10 16:05:12 2024 +++ pkgsrc/www/p5-HTTP-Tiny/Makefile Wed Jan 10 16:05:12 2024 @@ -0,0 +1,22 @@ +# $NetBSD: Makefile,v 1.27 2024/01/10 16:05:12 schmonz Exp $ + +DISTNAME= HTTP-Tiny-0.088 +PKGNAME= p5-${DISTNAME} +CATEGORIES= www perl5 +MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=HTTP/} + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= https://metacpan.org/pod/HTTP::Tiny +COMMENT= Small, simple, correct HTTP/1.1 client +LICENSE= ${PERL5_LICENSE} + +DEPENDS+= p5-HTTP-CookieJar>=0.001:../../www/p5-HTTP-CookieJar +DEPENDS+= p5-IO-Socket-SSL>=1.42:../../security/p5-IO-Socket-SSL +DEPENDS+= p5-Mozilla-CA>=20160104:../../security/p5-Mozilla-CA +DEPENDS+= p5-Net-SSLeay>=1.49:../../security/p5-Net-SSLeay + +PERL5_PACKLIST= auto/HTTP/Tiny/.packlist +USE_LANGUAGES= # none + +.include "../../lang/perl5/module.mk" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/www/p5-HTTP-Tiny/distinfo diff -u /dev/null pkgsrc/www/p5-HTTP-Tiny/distinfo:1.17 --- /dev/null Wed Jan 10 16:05:12 2024 +++ pkgsrc/www/p5-HTTP-Tiny/distinfo Wed Jan 10 16:05:12 2024 @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.17 2024/01/10 16:05:12 schmonz Exp $ + +BLAKE2s (HTTP-Tiny-0.088.tar.gz) = ea6a3a4ef526c855b4f53b0553b902dbf5fff1f92e02ffd10869d82aaafeba9c +SHA512 (HTTP-Tiny-0.088.tar.gz) = 3f4fb7a5ecf4bc664c0370f66b738bf171478767770400f5774be49a14ed95ce6430e6ac8fb755068e3d73bb3f074268cb6d6da7e6f0aceffbbdc76b0563bb0a +Size (HTTP-Tiny-0.088.tar.gz) = 77140 bytes --_----------=_1704902713280940--