diff options
author | 2019-12-01 11:35:26 +0800 | |
---|---|---|
committer | 2019-12-01 12:35:25 +0800 | |
commit | f8c1827c2b9dccc28b15e8a54648fe994ad46da5 (patch) | |
tree | 7b8473f63e8ed34a7a9a67a806af25d769a4df0a /dev-util | |
parent | dev-util/bcm: initial commit of 0.0.1_p20191110. (diff) | |
download | sci-f8c1827c2b9dccc28b15e8a54648fe994ad46da5.tar.gz sci-f8c1827c2b9dccc28b15e8a54648fe994ad46da5.tar.bz2 sci-f8c1827c2b9dccc28b15e8a54648fe994ad46da5.zip |
dev-util/plog: initial commit of 1.1.4_p20191110.
This is included as a dependency of sci-physics/opticks.
Package-Manager: Portage-2.3.79, Repoman-2.3.18
Signed-off-by: Benda Xu <heroxbd@gentoo.org>
Diffstat (limited to 'dev-util')
-rw-r--r-- | dev-util/plog/metadata.xml | 7 | ||||
-rw-r--r-- | dev-util/plog/plog-1.1.4_p20191110.ebuild | 21 |
2 files changed, 28 insertions, 0 deletions
diff --git a/dev-util/plog/metadata.xml b/dev-util/plog/metadata.xml new file mode 100644 index 000000000..7203fb853 --- /dev/null +++ b/dev-util/plog/metadata.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>heroxbd@gentoo.org</email> + </maintainer> +</pkgmetadata> diff --git a/dev-util/plog/plog-1.1.4_p20191110.ebuild b/dev-util/plog/plog-1.1.4_p20191110.ebuild new file mode 100644 index 000000000..f5339e692 --- /dev/null +++ b/dev-util/plog/plog-1.1.4_p20191110.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit git-r3 + +DESCRIPTION="Portable, simple and extensible C++ logging library" +HOMEPAGE="https://github.com/SergiusTheBest/plog" + +EGIT_REPO_URI="https://github.com/simoncblyth/plog.git" +EGIT_COMMIT="04c2389fac6def5471d2c8ff87d16a67c9e4045d" +KEYWORDS="~amd64" + +LICENSE="MPL-2.0" +SLOT="0" + +src_install() { + doheader -r include/${PN} + dodoc README.md LICENSE +} |