forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
sys-apps/osinfo-db: bump to 20170423
Package-Manager: Portage-2.3.5, Repoman-2.3.2
- Loading branch information
Showing
2 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
DIST osinfo-db-20170326.tar.xz 62696 SHA256 348e216cf26f905190de2bef321d2c0d3f3953775370cf6f58b81f4cc40ac7ee SHA512 06470488ea7442f1dacd2309a7c85ec90f05f55ad3b1f138e32e620f13b70addc203710e7c4cac840151899035fe61ca0ca93d73fdfbb7232d1425e9e5a593c5 WHIRLPOOL f4f23f1f14bbd0a1f827e9cf234d7a5ab6df50057fc96ad2633152b538884cf1391c3cb7d74b6c88ced12d192df47f3e479280d61654102ff8289795788f3a84 | ||
DIST osinfo-db-20170423.tar.xz 63508 SHA256 1f21ba0bbee71fefbec9b71a63289f4456aa64b205ed071c0bcd8ca7d21dfa3b SHA512 5ca13ced160f19dced65f3552e17a0379a47a05f1aa3bdd533550022f0023050b6cc1b43b2da6cff3fa10451f81560fbb0db241a11ed072b9f101db1bd301833 WHIRLPOOL a3fe710504ad85cfcd716d4b6d72a09fca428f8260980a9d794cac24cb1a2e25d654a9a299f86414f13b0f72ed3e2d0fa2bc4fb5d67a843b64a8bb8e815ef5a1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Copyright 1999-2017 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=6 | ||
|
||
DESCRIPTION="osinfo database files" | ||
HOMEPAGE="http://libosinfo.org/" | ||
SRC_URI="https://releases.pagure.org/libosinfo/${P}.tar.xz" | ||
S="${WORKDIR}" | ||
|
||
LICENSE="GPL-2+" | ||
SLOT="0" | ||
|
||
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~x86" | ||
|
||
RDEPEND="" | ||
DEPEND="${RDEPEND} | ||
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}" | ||
} |