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 7AAAF13835D for ; Fri, 8 May 2020 16:57:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 917DDE0841; Fri, 8 May 2020 16:57:37 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 646EBE0841 for ; Fri, 8 May 2020 16:57:37 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 30B8B34F1AB for ; Fri, 8 May 2020 16:57:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0603D233 for ; Fri, 8 May 2020 16:57:31 +0000 (UTC) From: "Alessandro Barbieri" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alessandro Barbieri" Message-ID: <1588955296.498f417dd6f664fe98cdf38795d0d6f86173f556.Alessandro-Barbieri@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/plog/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-cpp/plog/Manifest dev-cpp/plog/metadata.xml dev-cpp/plog/plog-1.1.5_p20200501.ebuild X-VCS-Directories: dev-cpp/plog/ X-VCS-Committer: Alessandro-Barbieri X-VCS-Committer-Name: Alessandro Barbieri X-VCS-Revision: 498f417dd6f664fe98cdf38795d0d6f86173f556 X-VCS-Branch: dev Date: Fri, 8 May 2020 16:57:31 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 345bc964-a25e-4d3e-984b-fbf204089ffd X-Archives-Hash: fa46dcbbe2794b8079695c4a478f9167 commit: 498f417dd6f664fe98cdf38795d0d6f86173f556 Author: Alessandro Barbieri gmail com> AuthorDate: Fri May 8 16:28:16 2020 +0000 Commit: Alessandro Barbieri gmail com> CommitDate: Fri May 8 16:28:16 2020 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=498f417d dev-cpp/plog: new package Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Alessandro Barbieri gmail.com> dev-cpp/plog/Manifest | 1 + dev-cpp/plog/metadata.xml | 20 ++++++++++++++++++++ dev-cpp/plog/plog-1.1.5_p20200501.ebuild | 24 ++++++++++++++++++++++++ 3 files changed, 45 insertions(+) diff --git a/dev-cpp/plog/Manifest b/dev-cpp/plog/Manifest new file mode 100644 index 0000000..ddde6b8 --- /dev/null +++ b/dev-cpp/plog/Manifest @@ -0,0 +1 @@ +DIST plog-1.1.5_p20200501.tar.gz 42321 BLAKE2B 18f4722fbd985abc3c0b14f9eeea6d5c6b0ee8d01b3433ee167a5510f4d661b70e067a11f4a60a0573b4eec3c264d9260dd6bba6f87103769684e4e3e06235ac SHA512 6b0322c61682295150ec5a856faf597ac78897d30314b265908cd9d6da2956b1b2d8562c90818332e42a41f129a3b35ec3d56f1163e7ac979aea617cc01e9c3f diff --git a/dev-cpp/plog/metadata.xml b/dev-cpp/plog/metadata.xml new file mode 100644 index 0000000..a7c96a6 --- /dev/null +++ b/dev-cpp/plog/metadata.xml @@ -0,0 +1,20 @@ + + + + + + lssndrbarbieri@gmail.com + + + Alessandro Barbieri + + + + + https://github.com/SergiusTheBest/plog/issues + + + SergiusTheBest/plog + + + diff --git a/dev-cpp/plog/plog-1.1.5_p20200501.ebuild b/dev-cpp/plog/plog-1.1.5_p20200501.ebuild new file mode 100644 index 0000000..9b7b096 --- /dev/null +++ b/dev-cpp/plog/plog-1.1.5_p20200501.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +COMMIT="fda4a26c26b2d1b2beb68d7b92b56950ec2b8ad2" + +DESCRIPTION="Portable, simple and extensible C++ logging library" +HOMEPAGE="https://github.com/SergiusTheBest/plog" +SRC_URI="https://github.com/SergiusTheBest/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz" +KEYWORDS="~amd64" + +LICENSE="MPL-2.0" +SLOT="0" +IUSE="examples" + +S="${WORKDIR}/${PN}-${COMMIT}" + +src_install() { + doheader -r "include/${PN}" + dodoc README.md + insinto "/usr/share/${P}/samples" + use examples && doins -r samples/. +}