From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id CBC8D1388BF for ; Thu, 14 Jan 2016 13:38:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6384EE084B; Thu, 14 Jan 2016 13:38:13 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DF868E084B for ; Thu, 14 Jan 2016 13:38:12 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BEE8F340AC1 for ; Thu, 14 Jan 2016 13:38:11 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A1F36A91 for ; Thu, 14 Jan 2016 13:37:58 +0000 (UTC) From: "Bernard Cafarelli" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Bernard Cafarelli" Message-ID: <1452778658.3ea8f68b92b5b115adb9b60a92e6e682cf82101d.voyageur@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libfilezilla/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libfilezilla/Manifest dev-libs/libfilezilla/libfilezilla-0.3.0.ebuild dev-libs/libfilezilla/metadata.xml X-VCS-Directories: dev-libs/libfilezilla/ X-VCS-Committer: voyageur X-VCS-Committer-Name: Bernard Cafarelli X-VCS-Revision: 3ea8f68b92b5b115adb9b60a92e6e682cf82101d X-VCS-Branch: master Date: Thu, 14 Jan 2016 13:37:58 +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: bed0e0e3-b43f-4338-af37-db0ea5cd7c14 X-Archives-Hash: c66f134188a6c7f4713860419bc09144 commit: 3ea8f68b92b5b115adb9b60a92e6e682cf82101d Author: Bernard Cafarelli gentoo org> AuthorDate: Thu Jan 14 13:37:23 2016 +0000 Commit: Bernard Cafarelli gentoo org> CommitDate: Thu Jan 14 13:37:38 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ea8f68b dev-libs/libfilezilla: initial commit This is a new dependency for >=net-ftp/filezilla-3.15.0 Package-Manager: portage-2.2.26 dev-libs/libfilezilla/Manifest | 1 + dev-libs/libfilezilla/libfilezilla-0.3.0.ebuild | 30 +++++++++++++++++++++++++ dev-libs/libfilezilla/metadata.xml | 17 ++++++++++++++ 3 files changed, 48 insertions(+) diff --git a/dev-libs/libfilezilla/Manifest b/dev-libs/libfilezilla/Manifest new file mode 100644 index 0000000..aae57c4 --- /dev/null +++ b/dev-libs/libfilezilla/Manifest @@ -0,0 +1 @@ +DIST libfilezilla-0.3.0.tar.bz2 372588 SHA256 1ca09836fc166f21cedb71a45e5efc0771650a74d9f611d1fe320f36b53fa42d SHA512 c243cf32bddcee2ce568c08e81deebe7335e6b7f793751972d1b4f7629e3cd70113489c6cbc48c41a9ad0632eb5b7d3cb8ab470d591419b19563dcb9dab3a0dd WHIRLPOOL 66cc027349d31656c885b1063eff482b5a3077fbbd9dbb6e7c03a4880cc654574a8d010ff906ddcd057fef0a440c2093c6627ac7972c9b552b950302e7befae5 diff --git a/dev-libs/libfilezilla/libfilezilla-0.3.0.ebuild b/dev-libs/libfilezilla/libfilezilla-0.3.0.ebuild new file mode 100644 index 0000000..25ecdfc --- /dev/null +++ b/dev-libs/libfilezilla/libfilezilla-0.3.0.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit flag-o-matic + +DESCRIPTION="C++ library offering some basic functionality for platform-independent programs" +HOMEPAGE="https://lib.filezilla-project.org/" +SRC_URI="mirror://sourceforge/filezilla/${P}.tar.bz2" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +RDEPEND="" +DEPEND="${RDEPEND} + test? ( dev-util/cppunit )" + +pkg_pretend() { + if [[ ${MERGE_TYPE} != binary ]]; then + if ! test-flag-CXX -std=c++14; then + eerror "${P} requires C++14-capable C++ compiler. Your current compiler" + eerror "does not seem to support -std=c++14 option. Please upgrade your compiler" + eerror "to gcc-4.9 or an equivalent version supporting C++14." + die "Currently active compiler does not support -std=c++14" + fi + fi +} diff --git a/dev-libs/libfilezilla/metadata.xml b/dev-libs/libfilezilla/metadata.xml new file mode 100644 index 0000000..f918987 --- /dev/null +++ b/dev-libs/libfilezilla/metadata.xml @@ -0,0 +1,17 @@ + + + + + voyageur@gentoo.org + Bernard Cafarelli + + +libfilezilla is a small and modern C++ library, offering some basic functionality to build high-performing, platform-independent programs. Some of the highlights include: + +- A typesafe, multi-threaded event system that's very simple to use yet extremely efficient +- Timers for periodic events +- A datetime class that not only tracks timestamp but also their accuracy, which simplifies dealing with timestamps originating from different sources +- Simple process handling for spawning child processes with redirected I/O +libfilezilla is a cross-platform library for all major operating systems, including but not limited to Linux, *BSD, OS X and Windows. + +