dev-cpp/xdgcfg: New package.
continuous-integration/drone/push Build is failing Details

Package-Manager: Portage-2.3.66, Repoman-2.3.11
Manifest-Sign-Key: 3555266864CA6D7FF45AA6E7CFC39497F1B26E07
This commit is contained in:
tastytea 2019-07-22 03:14:26 +02:00
parent b2728fa10e
commit 82f44f5f75
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
3 changed files with 64 additions and 0 deletions

13
dev-cpp/xdgcfg/Manifest Normal file
View File

@ -0,0 +1,13 @@
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
DIST 0.3.1.tar.gz 6299 BLAKE2B 868addb6d6c941d3007dec6ae084c0af4f2f161fd5c47ff32e5bbae04d3f34e925becf621f27d1fff2db273e2fb3cb2eaf36488877edf5cb2bcb42f62d43604a SHA512 0a5607d2459772177ef5d2ee7c4f4a4ff103f793d8049e14f88364dabf87f0b63fce2626ba083eae3ebdebcbff1dcf08ba672d5c197089c9c28ab9bf4e2fee6b
EBUILD xdgcfg-0.3.1.ebuild 662 BLAKE2B c85c621d625ab8ce14537fc6349a62c9393f5f5bc18d55e526b87d62eebf214dc6764514ff5c039c35bea4278844e9c09bd653562a78926ac2bd955f350d8707 SHA512 1d2c7731ef5cf7af5fea500668b8548ad14feaadef2e36e8ff97ef3a164a09951121daa1358c65864f5adc58db2e950d25314a20a82abbad36854b8bdf6c5eec
MISC metadata.xml 517 BLAKE2B 92b4f4a82d463c752b950c01cfab624fc5d5f0fd2d2ef396fe4536fea8a325e07b92b7a38d76dcb59d5deab719cb7f31fad737cb879a787d7c866463a75064ff SHA512 14e1823026bee1e15f1f2cbf066bcd229ce4e54c713835b00f48bf034e7994372cb769b552403b00999a4f2e0ebeb9a6b95e0e3e1e00a9efc2724ea3af9c0039
-----BEGIN PGP SIGNATURE-----
iHUEAREIAB0WIQQ1VSZoZMptf/RapufPw5SX8bJuBwUCXTUN8gAKCRDPw5SX8bJu
B58LAP0XAU8EliIOCB/mOt+afKGooesqmdKxAtca8S7JLf6MUQD/Z3OXZfRBfP8c
/d3kUFig9vQrA2SQ4Z0bucWRKzLjEqY=
=udKL
-----END PGP SIGNATURE-----

View File

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>gentoo@tastytea.de</email>
<name>tastytea</name>
</maintainer>
<upstream>
<maintainer status="active">
<name>tastytea</name>
<email>tastytea@tastytea.de</email>
</maintainer>
<doc>https://doc.schlomp.space/xdgcfg/</doc>
<bugs-to>https://schlomp.space/tastytea/xdgcfg/issues</bugs-to>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,35 @@
# Copyright 2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit cmake-utils
DESCRIPTION="Wrapper around libconfig that writes and reads files in XDG_CONFIG_HOME"
HOMEPAGE="https://schlomp.space/tastytea/xdgcfg"
SRC_URI="https://schlomp.space/tastytea/${PN}/archive/${PV}.tar.gz"
LICENSE="CC0-1.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="examples test"
RDEPEND="dev-libs/libconfig[cxx]"
DEPEND="
${RDEPEND}
test? ( dev-cpp/catch )"
S="${WORKDIR}/${PN}"
src_configure() {
local mycmakeargs=(
-DWITH_TESTS="$(usex test)"
)
cmake-utils_src_configure
}
src_install() {
default
dodoc src/example.cpp
}