From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 8E8D8138330 for ; Wed, 31 Aug 2016 13:01:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B4FF2E0B0D; Wed, 31 Aug 2016 13:01:54 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3574621C028 for ; Wed, 31 Aug 2016 13:01:54 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 429883406DD for ; Wed, 31 Aug 2016 13:01:53 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0E3E12467 for ; Wed, 31 Aug 2016 13:01:51 +0000 (UTC) From: "Jeroen Roovers" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jeroen Roovers" Message-ID: <1472648504.65af95dc8450cf07c64e2b5f9de34089d0295c32.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/wandio/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/wandio/Manifest net-libs/wandio/metadata.xml net-libs/wandio/wandio-1.0.3.ebuild X-VCS-Directories: net-libs/wandio/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: 65af95dc8450cf07c64e2b5f9de34089d0295c32 X-VCS-Branch: master Date: Wed, 31 Aug 2016 13:01:51 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: dc8f47ad-b805-4064-8f64-96856b7cb983 X-Archives-Hash: e9fbe74a9bd36bbd7ab736bef36ec68a commit: 65af95dc8450cf07c64e2b5f9de34089d0295c32 Author: Jeroen Roovers gentoo org> AuthorDate: Wed Aug 31 12:58:04 2016 +0000 Commit: Jeroen Roovers gentoo org> CommitDate: Wed Aug 31 13:01:44 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65af95dc net-libs/wandio: Initial commit (bug #592574). Package-Manager: portage-2.3.0 net-libs/wandio/Manifest | 1 + net-libs/wandio/metadata.xml | 10 ++++++++++ net-libs/wandio/wandio-1.0.3.ebuild | 35 +++++++++++++++++++++++++++++++++++ 3 files changed, 46 insertions(+) diff --git a/net-libs/wandio/Manifest b/net-libs/wandio/Manifest new file mode 100644 index 00000000..916f005 --- /dev/null +++ b/net-libs/wandio/Manifest @@ -0,0 +1 @@ +DIST wandio-1.0.3.tar.gz 373723 SHA256 31dcc1402ace3023020446d6c7284fd84447f9b36e570206a179895e1eaa705b SHA512 fb86d022149d839e49805a35c9f5ada0b0bdf1174287d03c823145fbb0b3a5b3d7d78b5bfbf511da73cb06a22650f9a2d5cfd143dfa5b29eacdac1870977081c WHIRLPOOL 843ff98d2407897da9d20feb84287323b7aa2ac09ff23d5d7f4626e48321f7b6ee2fdfda4753bf16296ccf75c9dd5967c5c0c3fde8f62f1f73324980f5534e73 diff --git a/net-libs/wandio/metadata.xml b/net-libs/wandio/metadata.xml new file mode 100644 index 00000000..5cf4e82 --- /dev/null +++ b/net-libs/wandio/metadata.xml @@ -0,0 +1,10 @@ + + + + +netmon@gentoo.org + + +Build support for reading files over HTTP using net-misc/curl + + diff --git a/net-libs/wandio/wandio-1.0.3.ebuild b/net-libs/wandio/wandio-1.0.3.ebuild new file mode 100644 index 00000000..93ee50e --- /dev/null +++ b/net-libs/wandio/wandio-1.0.3.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +DESCRIPTION="Library for transparent file I/O with compression" +HOMEPAGE="http://research.wand.net.nz/software/libwandio.php" +SRC_URI="http://research.wand.net.nz/software/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0/2" +KEYWORDS="~amd64 ~x86" +IUSE="bzip2 http lzma lzo static-libs zlib" + +RDEPEND=" + bzip2? ( app-arch/bzip2 ) + lzma? ( app-arch/xz-utils ) + lzo? ( dev-libs/lzo ) + http? ( net-misc/curl ) + zlib? ( sys-libs/zlib ) +" +DEPEND=" + ${RDEPEND} +" + +src_configure() { + econf \ + $(use_enable static-libs static) \ + $(use_with bzip2) \ + $(use_with http) \ + $(use_with lzma) \ + $(use_with lzo) \ + $(use_with zlib) +}