diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /net-libs/libwhisker | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'net-libs/libwhisker')
-rw-r--r-- | net-libs/libwhisker/Manifest | 1 | ||||
-rw-r--r-- | net-libs/libwhisker/libwhisker-2.5-r1.ebuild | 34 | ||||
-rw-r--r-- | net-libs/libwhisker/metadata.xml | 15 |
3 files changed, 50 insertions, 0 deletions
diff --git a/net-libs/libwhisker/Manifest b/net-libs/libwhisker/Manifest new file mode 100644 index 000000000000..9e0455e44313 --- /dev/null +++ b/net-libs/libwhisker/Manifest @@ -0,0 +1 @@ +DIST libwhisker2-2.5.tar.gz 207569 SHA256 f45a1cf2ad2637b29dd1b13d7221ea12e3923ea09d107ced446400f19070a42f SHA512 ea3cfa7658048b23d4fd773db9ee7fde32758096cf7491d309390247648b7635952d734a0918f53109de37cdd87b675843320539db727fd107e81647b13bce10 WHIRLPOOL 7eefdaf357be03599d9d8743b6fbe8ed18f06a6d0ea5106ea32f9014a919fdf468d682cef4b8c8f3b37925fa6bd4dcfdf6d87d8fb87adc015642a15b7a8c2f1b diff --git a/net-libs/libwhisker/libwhisker-2.5-r1.ebuild b/net-libs/libwhisker/libwhisker-2.5-r1.ebuild new file mode 100644 index 000000000000..e34fd95eaed3 --- /dev/null +++ b/net-libs/libwhisker/libwhisker-2.5-r1.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit perl-module +MY_P=${PN}2-${PV} + +DESCRIPTION="Perl module geared to HTTP testing" +HOMEPAGE="http://www.wiretrip.net/rfp/lw.asp" +SRC_URI="http://www.wiretrip.net/rfp/libwhisker/${MY_P}.tar.gz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="ssl" + +DEPEND="" +RDEPEND="virtual/perl-MIME-Base64 + ssl? ( dev-perl/Net-SSLeay )" + +S=${WORKDIR}/${MY_P} + +src_compile() { + perl Makefile.pl lib || die +} + +src_install() { + perl_set_version + insinto "${VENDOR_LIB}" + doins LW2.pm + dodoc CHANGES KNOWNBUGS README +} diff --git a/net-libs/libwhisker/metadata.xml b/net-libs/libwhisker/metadata.xml new file mode 100644 index 000000000000..74dec4574fe6 --- /dev/null +++ b/net-libs/libwhisker/metadata.xml @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>perl</herd> + <longdescription> + Libwhisker is a Perl library useful for HTTP testing scripts. It + contains a pure-Perl implementation of functionality found in the LWP, + URI, Digest::MD5, Digest::MD4, Data::Dumper, Authen::NTLM, HTML::Parser, + HTML::FormParser, CGI::Upload, MIME::Base64, and GetOpt::Std modules. + Libwhisker is designed to be portable (a single perl file), fast + (general benchmarks show libwhisker is faster than LWP), and flexible + (great care was taken to ensure the library does exactly what you want + to do, even if it means breaking the protocol). + </longdescription> +</pkgmetadata> |