diff options
author | Matt Turner <mattst88@gentoo.org> | 2022-07-28 11:38:38 -0400 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2022-07-28 21:41:02 -0400 |
commit | 82243b3c919e27f53b28360ef15cf091355fc853 (patch) | |
tree | c7ed00328132e7762629139fdd1db77f5ef665ed /sys-apps/osinfo-db | |
parent | net-misc/youtube-viewer: upgrade 3.9.7 -> 3.10.1 (diff) | |
download | gentoo-82243b3c919e27f53b28360ef15cf091355fc853.tar.gz gentoo-82243b3c919e27f53b28360ef15cf091355fc853.tar.bz2 gentoo-82243b3c919e27f53b28360ef15cf091355fc853.zip |
sys-apps/osinfo-db: Version bump to 20220727
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'sys-apps/osinfo-db')
-rw-r--r-- | sys-apps/osinfo-db/Manifest | 1 | ||||
-rw-r--r-- | sys-apps/osinfo-db/osinfo-db-20220727.ebuild | 25 |
2 files changed, 26 insertions, 0 deletions
diff --git a/sys-apps/osinfo-db/Manifest b/sys-apps/osinfo-db/Manifest index 41214037213c..1c7c7ebf7209 100644 --- a/sys-apps/osinfo-db/Manifest +++ b/sys-apps/osinfo-db/Manifest @@ -1 +1,2 @@ DIST osinfo-db-20220516.tar.xz 129272 BLAKE2B 47f6eb2e1ae0cad277be71fb0955415c4afdb27e3b80e36c98ce5b7c8d22efcab91047e93c586045baa233ac61dc08113a5aedb626db4f24bf0472455826e481 SHA512 44c56824c774e68bd79633c415c71155e814c1f928fceba845ab649f8cb0dd325ad06b91a2d720cb25fd62e67d7ea17774cc395995b4f201527c4a6aa447a744 +DIST osinfo-db-20220727.tar.xz 133656 BLAKE2B 27136c861bf16377b61d56daceee857c29a76f4f2f7c68ef768b54b553bfee5c6f7ae7024e19746fd8e6caa8a0a80a0fa83f32d52bf9d82652d2655190678eec SHA512 1b0bbf64e6808e06bd3d40ef4da932a7f96957a79fc4a1d8d11074da25acd81b016aaf5816dcf39c6f28cf0a17734aab8238d25d2628ee05e80a37a09ad363f3 diff --git a/sys-apps/osinfo-db/osinfo-db-20220727.ebuild b/sys-apps/osinfo-db/osinfo-db-20220727.ebuild new file mode 100644 index 000000000000..28ae854564ac --- /dev/null +++ b/sys-apps/osinfo-db/osinfo-db-20220727.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="osinfo database files" +HOMEPAGE="https://libosinfo.org/ https://gitlab.com/libosinfo/osinfo-db" +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 ~riscv ~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}" +} |