Gentoo Archives: gentoo-commits

From: Georgy Yakovlev <gyakovlev@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/lsvpd/
Date: Fri, 29 May 2020 01:54:24
Message-Id: 1590717247.2aa5357cab8ed1c256af1764983c4475ceebe60b.gyakovlev@gentoo
1 commit: 2aa5357cab8ed1c256af1764983c4475ceebe60b
2 Author: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 29 01:53:51 2020 +0000
4 Commit: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
5 CommitDate: Fri May 29 01:54:07 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2aa5357c
7
8 sys-apps/lsvpd: bump to 1.7.11
9
10 Package-Manager: Portage-2.3.100, Repoman-2.3.22
11 Signed-off-by: Georgy Yakovlev <gyakovlev <AT> gentoo.org>
12
13 sys-apps/lsvpd/Manifest | 1 +
14 sys-apps/lsvpd/lsvpd-1.7.11.ebuild | 34 ++++++++++++++++++++++++++++++++++
15 2 files changed, 35 insertions(+)
16
17 diff --git a/sys-apps/lsvpd/Manifest b/sys-apps/lsvpd/Manifest
18 index 3103b690fc6..c6b05110407 100644
19 --- a/sys-apps/lsvpd/Manifest
20 +++ b/sys-apps/lsvpd/Manifest
21 @@ -1 +1,2 @@
22 DIST lsvpd-1.7.10.tar.gz 89862 BLAKE2B a2fa6f85822313b5cf17ec9207ddd533ffb1cb4a3ee2e32416d6b646930f8499c3d8994ab6cd21b1d4d01be1c32f13e2bd1206cc073bbcbaf8cb9722993a1510 SHA512 0ee9b8329e9ea7eac6b502051a5ecc5af28642aa3f14af9cecd0217ea6637a548eaeab2e5631534041dfd849701e0905a0618b1ab62162b9af493ab0f8ad7ff4
23 +DIST lsvpd-1.7.11.tar.gz 90366 BLAKE2B 2dfbbc92921106247580395ac663731bc4486d9380b052cfaa0867939a22b4c10d130adcb01260316e5c0fa5a093eb8c95c0d0b04a5ea17792e5891cb302a554 SHA512 68efdbee6bbfb4fd6673bc83d340aea6a121d48d1e75dcc4f9322521d8a3aa7b04fbe1acbb7e7343c5a7e2dd33f21ecf2e54a32ff5f6f2b9e1e5d6c34b8b25b5
24
25 diff --git a/sys-apps/lsvpd/lsvpd-1.7.11.ebuild b/sys-apps/lsvpd/lsvpd-1.7.11.ebuild
26 new file mode 100644
27 index 00000000000..8dfb6ff3bd4
28 --- /dev/null
29 +++ b/sys-apps/lsvpd/lsvpd-1.7.11.ebuild
30 @@ -0,0 +1,34 @@
31 +# Copyright 2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +inherit autotools
37 +
38 +DESCRIPTION="Utility to List Device Vital Product Data (VPD)"
39 +HOMEPAGE="https://github.com/power-ras/lsvpd"
40 +SRC_URI="https://github.com/power-ras/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
41 +
42 +LICENSE="GPL-2+ LGPL-2.1+"
43 +SLOT="0"
44 +KEYWORDS="~ppc64"
45 +IUSE=""
46 +
47 +RDEPEND="
48 + dev-db/sqlite:3
49 + sys-apps/sg3_utils
50 + sys-libs/librtas
51 + sys-libs/libvpd
52 + sys-libs/zlib
53 +"
54 +
55 +DEPEND="${RDEPEND}
56 + virtual/os-headers
57 +"
58 +
59 +BDEPEND=""
60 +
61 +src_prepare() {
62 + default
63 + eautoreconf
64 +}