dev-ml/xcp-rrd: initial import

Signed-off-by: Alessandro Barbieri <lssndrbarbieri@gmail.com>
This commit is contained in:
Alessandro Barbieri
2022-04-02 20:00:06 +02:00
parent 5eeed228eb
commit a935491bb6
3 changed files with 40 additions and 0 deletions

1
dev-ml/xcp-rrd/Manifest Normal file
View File

@@ -0,0 +1 @@
DIST xcp-rrd-1.8.0.tar.gz 30002 BLAKE2B c7a755eac2264af23bba749536eb73e7bc9a61ff436a25948e1565d1fa5aa0cc6d91d78befe7d3cf0111eb45c46734f99f86e5209b97f48ebbb3baf790e4d186 SHA512 92ab3d8e699f04a7ef2f15dce490477cfb0accae10e35802a2ae82390224d747586975e4c6f941f5ac0c940b34954b454b1949b3db7c9a6d9a9bc35d72871b13

View File

@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<upstream>
<remote-id type="github">xapi-project/xcp-rrd</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,28 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit dune
DESCRIPTION="RRD library for use with xapi"
HOMEPAGE="https://github.com/xapi-project/xcp-rrd"
SRC_URI="https://github.com/xapi-project/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="LGPL-2.1-with-linking-exception"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE="ocamlopt"
DEPEND="
dev-ml/base
dev-ml/ezjsonm
dev-ml/ppx_deriving
dev-ml/xmlm
dev-ml/uuidm
"
RDEPEND="${DEPEND}"
src_install() {
dune_src_install xapi-rrd
}