From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 785F61382C5 for ; Sun, 29 Apr 2018 00:08:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C87F9E084A; Sun, 29 Apr 2018 00:08:38 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A5AE1E084A for ; Sun, 29 Apr 2018 00:08:38 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 89D7F335CA9 for ; Sun, 29 Apr 2018 00:08:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9A44D2B4 for ; Sun, 29 Apr 2018 00:08:33 +0000 (UTC) From: "Mart Raudsepp" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mart Raudsepp" Message-ID: <1524960198.85fcda2c9923d2be9ff6eab0e094377591914dc8.leio@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/osinfo-db/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/osinfo-db/Manifest sys-apps/osinfo-db/osinfo-db-20180416.ebuild X-VCS-Directories: sys-apps/osinfo-db/ X-VCS-Committer: leio X-VCS-Committer-Name: Mart Raudsepp X-VCS-Revision: 85fcda2c9923d2be9ff6eab0e094377591914dc8 X-VCS-Branch: master Date: Sun, 29 Apr 2018 00:08:33 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: b0eb9f41-381c-4cbc-943b-1cba5d684f47 X-Archives-Hash: 02b531da8913775d0db35e9ea738df39 commit: 85fcda2c9923d2be9ff6eab0e094377591914dc8 Author: Mart Raudsepp gentoo org> AuthorDate: Sun Apr 29 00:03:18 2018 +0000 Commit: Mart Raudsepp gentoo org> CommitDate: Sun Apr 29 00:03:18 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85fcda2c sys-apps/osinfo-db: bump to 20180416 Package-Manager: Portage-2.3.28, Repoman-2.3.9 sys-apps/osinfo-db/Manifest | 1 + sys-apps/osinfo-db/osinfo-db-20180416.ebuild | 27 +++++++++++++++++++++++++++ 2 files changed, 28 insertions(+) diff --git a/sys-apps/osinfo-db/Manifest b/sys-apps/osinfo-db/Manifest index 058b3faa7c5..62fb94cdb0c 100644 --- a/sys-apps/osinfo-db/Manifest +++ b/sys-apps/osinfo-db/Manifest @@ -1 +1,2 @@ DIST osinfo-db-20170813.tar.xz 64424 BLAKE2B b4d46f82197bb5f1b956fe72e87ef365b139c6a1ab90906ac30dd3191fb6c3f5ef3978ceaf56d029a3766e8354558aa00554a767c637eef49b861b6a775fc614 SHA512 0ae4906b5c3eb400ca397f0c3baf5146b8197ee2dc712b1b89dd2f443f9505aee208327f008118628407b54ce52390a8b6138425f3f6f974b94f4a8d79955653 +DIST osinfo-db-20180416.tar.xz 70324 BLAKE2B 44bcc2be467f7e1ce50d1a0fd2bd2f3695f6aa68ab038fd0d548a8c46606032a9fb805152f0de08a0f56d6e096397cc17582a7451e0695dbb58760fa94363630 SHA512 e8d25dc501909803a949987239ea5a2e7a01ac4bb536f1040edff93d8ce3871499fceda882da799ada295dd5d4cc284e99c6b5f493c464dda776f6144803a1f1 diff --git a/sys-apps/osinfo-db/osinfo-db-20180416.ebuild b/sys-apps/osinfo-db/osinfo-db-20180416.ebuild new file mode 100644 index 00000000000..9e69a433ac6 --- /dev/null +++ b/sys-apps/osinfo-db/osinfo-db-20180416.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2018 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 ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~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}" +}