diff options
author | Matt Turner <mattst88@gentoo.org> | 2021-08-08 15:22:23 -0700 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2021-08-08 15:22:56 -0700 |
commit | 2b4cfc1a9f895cb41f3a0c5c187fbcccab04761c (patch) | |
tree | aaeab2956a6763f52d8d35fd9513b012f1520a9e /sys-apps | |
parent | dev-python/python-ldap: sync live ebuild with 3.3.1 (diff) | |
download | gentoo-2b4cfc1a9f895cb41f3a0c5c187fbcccab04761c.tar.gz gentoo-2b4cfc1a9f895cb41f3a0c5c187fbcccab04761c.tar.bz2 gentoo-2b4cfc1a9f895cb41f3a0c5c187fbcccab04761c.zip |
sys-apps/osinfo-db: Version bump to 20210806
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'sys-apps')
-rw-r--r-- | sys-apps/osinfo-db/Manifest | 1 | ||||
-rw-r--r-- | sys-apps/osinfo-db/osinfo-db-20210806.ebuild | 25 |
2 files changed, 26 insertions, 0 deletions
diff --git a/sys-apps/osinfo-db/Manifest b/sys-apps/osinfo-db/Manifest index 7aa8f488c92d..d60cc3b8606f 100644 --- a/sys-apps/osinfo-db/Manifest +++ b/sys-apps/osinfo-db/Manifest @@ -1 +1,2 @@ DIST osinfo-db-20210621.tar.xz 118292 BLAKE2B 6051916322b52cc3496819a29257940421dfaa3071a7d3adc2aa644fd04e1100b2c6d272e88a9fb0205d97c4b7e9035f6e4d5833bf901b985c472164ab98034d SHA512 c0ed0621d799b6515038716bd3b78f6b9f7fa6f80dc83899f691e69a9dc604a43d8d36f0ba5810c68731f0e3ded5fac0a66b7be9c66a14d501384c6850bdb797 +DIST osinfo-db-20210806.tar.xz 120664 BLAKE2B 1b52a2eee65e947dba9929e09758212a02cd3b33930abf0fb90ee99692e9f454bc1151d75357e4d3eecd5cb65e39f70a0effeb153ce71c3a24ffc0ba334c77df SHA512 cd71e85e88bdb4d904ab078ef77799c3e74d922e466889713124cb5e3d4138a28fa6c83af6f30e299e33376b9ff015f679611d2e5849c36923428cd78bafb120 diff --git a/sys-apps/osinfo-db/osinfo-db-20210806.ebuild b/sys-apps/osinfo-db/osinfo-db-20210806.ebuild new file mode 100644 index 000000000000..b76468286d57 --- /dev/null +++ b/sys-apps/osinfo-db/osinfo-db-20210806.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="osinfo database files" +HOMEPAGE="https://libosinfo.org/" +SRC_URI="https://releases.pagure.org/libosinfo/${P}.tar.xz" +S="${WORKDIR}" + +LICENSE="GPL-2+" +SLOT="0" + +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86" + +BDEPEND="sys-apps/osinfo-db-tools" + +# we don't depend on intltool here, contrary to README, as the tarball already +# contains the processed results with translations in XML files + +src_unpack() { :; } + +src_install() { + osinfo-db-import --root "${D}" --dir "/usr/share/osinfo" "${DISTDIR}/${A}" +} |