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 B10AE139694 for ; Fri, 17 Mar 2017 07:36:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DB3FF21C07F; Fri, 17 Mar 2017 07:36:32 +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 A353121C07F for ; Fri, 17 Mar 2017 07:36:32 +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 33FFC33BF1C for ; Fri, 17 Mar 2017 07:36:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5FBD46B15 for ; Fri, 17 Mar 2017 07:36:29 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1489736137.009eacdd11797c29cf57b5f82d1a5cf40944c0f2.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/spdlog/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/spdlog/Manifest dev-libs/spdlog/metadata.xml dev-libs/spdlog/spdlog-0.11.0.ebuild dev-libs/spdlog/spdlog-9999.ebuild X-VCS-Directories: dev-libs/spdlog/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 009eacdd11797c29cf57b5f82d1a5cf40944c0f2 X-VCS-Branch: master Date: Fri, 17 Mar 2017 07:36:29 +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: 634b694e-ec19-4b11-a27a-30fa78251a5b X-Archives-Hash: 46e122be2b9b8f96642f7661ef9c8528 commit: 009eacdd11797c29cf57b5f82d1a5cf40944c0f2 Author: David Roman gmail com> AuthorDate: Fri Feb 17 18:26:12 2017 +0000 Commit: David Seifert gentoo org> CommitDate: Fri Mar 17 07:35:37 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=009eacdd dev-libs/spdlog: New package Live ebuild is included. spdlog is a C++ logging library. Other distributions already have a package for this library. Gentoo Bug: #592708 Closes: https://github.com/gentoo/gentoo/pull/4000 dev-libs/spdlog/Manifest | 1 + dev-libs/spdlog/metadata.xml | 12 ++++++++++++ dev-libs/spdlog/spdlog-0.11.0.ebuild | 34 ++++++++++++++++++++++++++++++++++ dev-libs/spdlog/spdlog-9999.ebuild | 34 ++++++++++++++++++++++++++++++++++ 4 files changed, 81 insertions(+) diff --git a/dev-libs/spdlog/Manifest b/dev-libs/spdlog/Manifest new file mode 100644 index 00000000000..daab870776b --- /dev/null +++ b/dev-libs/spdlog/Manifest @@ -0,0 +1 @@ +DIST spdlog-0.11.0.tar.gz 146346 SHA256 8c0f1810fb6b7d23fef70c2ea8b6fa6768ac8d18d6e0de39be1f48865e22916e SHA512 958d6301d6189dc8cfd2891fb746f1cd6e0b54da6296d334e6d969184772760d3ae67d622beb01b70b662c850f11b06424b12ef19204b569a664fbe99b6aecff WHIRLPOOL f8bafd46c4e7f7158a71fba07780c9c590693989adc46205c01556e3edd54482bbcd5b90a32255e6b3e0866f853c898edcfbbbec610f052d8bb641e587ddd40c diff --git a/dev-libs/spdlog/metadata.xml b/dev-libs/spdlog/metadata.xml new file mode 100644 index 00000000000..b69fe2e3c4a --- /dev/null +++ b/dev-libs/spdlog/metadata.xml @@ -0,0 +1,12 @@ + + + + + davidroman96@gmail.com + David Roman + + + proxy-maint@gentoo.org + Proxy Maintainers + + diff --git a/dev-libs/spdlog/spdlog-0.11.0.ebuild b/dev-libs/spdlog/spdlog-0.11.0.ebuild new file mode 100644 index 00000000000..10ba2d584b1 --- /dev/null +++ b/dev-libs/spdlog/spdlog-0.11.0.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit cmake-utils + +DESCRIPTION="Very fast, header only, C++ logging library." +HOMEPAGE="https://github.com/gabime/spdlog" + +if [[ ${PV} == *9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/gabime/spdlog" +else + SRC_URI="https://github.com/gabime/spdlog/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64" +fi + +LICENSE="MIT" +SLOT="0" +IUSE="test" + +DEPEND="" +RDEPEND="${DEPEND}" + +src_configure() { + local mycmakeargs=( -DSPDLOG_BUILD_EXAMPLES=no ) + if [[ ${PV} == *9999 ]]; then + mycmakeargs+=( -DSPDLOG_BUILD_TESTING=$(usex test) ) + else + mycmakeargs+=( -DSPDLOG_BUILD_TESTS=$(usex test) ) + fi + cmake-utils_src_configure +} diff --git a/dev-libs/spdlog/spdlog-9999.ebuild b/dev-libs/spdlog/spdlog-9999.ebuild new file mode 100644 index 00000000000..10ba2d584b1 --- /dev/null +++ b/dev-libs/spdlog/spdlog-9999.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit cmake-utils + +DESCRIPTION="Very fast, header only, C++ logging library." +HOMEPAGE="https://github.com/gabime/spdlog" + +if [[ ${PV} == *9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/gabime/spdlog" +else + SRC_URI="https://github.com/gabime/spdlog/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64" +fi + +LICENSE="MIT" +SLOT="0" +IUSE="test" + +DEPEND="" +RDEPEND="${DEPEND}" + +src_configure() { + local mycmakeargs=( -DSPDLOG_BUILD_EXAMPLES=no ) + if [[ ${PV} == *9999 ]]; then + mycmakeargs+=( -DSPDLOG_BUILD_TESTING=$(usex test) ) + else + mycmakeargs+=( -DSPDLOG_BUILD_TESTS=$(usex test) ) + fi + cmake-utils_src_configure +}