public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Mike Gilbert" <floppym@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/hwids/
Date: Mon,  7 Dec 2020 17:31:08 +0000 (UTC)	[thread overview]
Message-ID: <1607362239.9c28af6ccf5e113db09423a37fb22218de73d9ba.floppym@gentoo> (raw)

commit:     9c28af6ccf5e113db09423a37fb22218de73d9ba
Author:     Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Mon Dec  7 17:30:18 2020 +0000
Commit:     Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Mon Dec  7 17:30:39 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c28af6c

sys-apps/hwids: bump to 20201207

Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>

 sys-apps/hwids/Manifest              |  1 +
 sys-apps/hwids/hwids-20201207.ebuild | 89 ++++++++++++++++++++++++++++++++++++
 2 files changed, 90 insertions(+)

diff --git a/sys-apps/hwids/Manifest b/sys-apps/hwids/Manifest
index af941fe105e..3dd11da5b30 100644
--- a/sys-apps/hwids/Manifest
+++ b/sys-apps/hwids/Manifest
@@ -1,3 +1,4 @@
 DIST hwids-20200204.tar.gz 3495191 BLAKE2B 23075b6728d9b0e020be45729d0df4cef95cac5e912e646b612266337d1add59c87a1031e6672c5b6eb23e13c26e6299b62a5886aa25017242a86fd474c1e9ae SHA512 1d2a9baaa7ab64575a3d9b98ae4df9060cb8593ae752365296dd53b18bc5996170bbfe1c5b4b1ffc24b28e3dbaa7c321c4fa333bbf91449a6ca7b187cbe23741
 DIST hwids-20200306.tar.gz 3512152 BLAKE2B 6a6ee48598e72f97a90bff8f45aacb699218570ede5b60ed119ebae78de6cd4b92e02f96cf57c83710da699be9a7dcdfdef8d404539e04b664298874b35e54ce SHA512 eff1d2783925ca459b387fbaa5cf68a98aa4209ab8509ad92a902b4d02cc7f4a47e5506c2beed4c792d24a8ab636ad77b376a92b59ae4f605d1b5258350ff250
 DIST hwids-20200813.1.tar.gz 3680906 BLAKE2B 652cf4b05ead42a750c6f41ad78650ea8b0125f90563dec37bfa8388d021ceab12e94fd2f949b3f7b3b7c09a356d279b91e62164af2cf066cfee07ab583f8b83 SHA512 5ba15067969fa19d3218f523c1a0186568841466de4d18c563b5f09202ab7185c4df02b962f70eb6d3e99915caad8a743fc6c6349f49b666db742f9ced8053fc
+DIST hwids-20201207.tar.gz 3749352 BLAKE2B a968e6daf5686c4f73d9d900fbe80a5b3844c006102ed8801f88e378dc43c1bb66aaeced42bc2703a9c8ad624a1a7167bba485b1bf0c0d0e6043920e015c9177 SHA512 ec638edd1bbf00bd66e9baa50e3b9c9a5004a96a359e6bea306f1509c69bb3c7ede3569174007ab8bde11d49300da452b06be96136cde6bd2d84a76cff9251c2

diff --git a/sys-apps/hwids/hwids-20201207.ebuild b/sys-apps/hwids/hwids-20201207.ebuild
new file mode 100644
index 00000000000..fdc4a456ddd
--- /dev/null
+++ b/sys-apps/hwids/hwids-20201207.ebuild
@@ -0,0 +1,89 @@
+# Copyright 2012-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit udev
+
+DESCRIPTION="Hardware (PCI, USB, OUI, IAB) IDs databases"
+HOMEPAGE="https://github.com/gentoo/hwids"
+if [[ ${PV} == 99999999 ]]; then
+	PYTHON_COMPAT=( python3_{6..9} )
+	inherit git-r3 python-any-r1
+	EGIT_REPO_URI="https://github.com/gentoo/hwids.git"
+else
+	SRC_URI="https://github.com/gentoo/hwids/archive/${P}.tar.gz"
+	KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
+fi
+
+LICENSE="|| ( GPL-2 BSD ) public-domain"
+SLOT="0"
+IUSE="+net +pci +udev +usb"
+
+RDEPEND="
+	udev? ( virtual/udev )
+"
+
+if [[ ${PV} == 99999999 ]]; then
+	BDEPEND="
+		net-misc/curl
+		udev? ( $(python_gen_any_dep 'dev-python/pyparsing[${PYTHON_USEDEP}]') )
+	"
+	python_check_deps() {
+		if use udev; then
+			has_version -b "dev-python/pyparsing[${PYTHON_USEDEP}]"
+		fi
+	}
+else
+	S=${WORKDIR}/hwids-${P}
+fi
+
+pkg_setup() {
+	:
+}
+
+src_unpack() {
+	if [[ ${PV} == 99999999 ]]; then
+		git-r3_src_unpack
+		cd "${S}" || die
+		emake fetch
+	else
+		default
+	fi
+}
+
+src_prepare() {
+	default
+	sed -i -e '/udevadm hwdb/d' Makefile || die
+}
+
+_emake() {
+	emake \
+		NET=$(usex net) \
+		PCI=$(usex pci) \
+		UDEV=$(usex udev) \
+		USB=$(usex usb) \
+		"$@"
+}
+
+src_compile() {
+	if [[ ${PV} == 99999999 ]] && use udev; then
+		python_setup
+		_emake udev-hwdb
+	fi
+	_emake
+}
+
+src_install() {
+	_emake install \
+		DOCDIR="${EPREFIX}/usr/share/doc/${PF}" \
+		MISCDIR="${EPREFIX}/usr/share/misc" \
+		HWDBDIR="${EPREFIX}$(get_udevdir)/hwdb.d" \
+		DESTDIR="${D}"
+}
+
+pkg_postinst() {
+	if use udev; then
+		udevadm hwdb --update --root="${ROOT}"
+	fi
+}


             reply	other threads:[~2020-12-07 17:31 UTC|newest]

Thread overview: 100+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-12-07 17:31 Mike Gilbert [this message]
  -- strict thread matches above, loose matches on Subject: below --
2021-11-25  3:22 [gentoo-commits] repo/gentoo:master commit in: sys-apps/hwids/ Mike Gilbert
2021-10-03 11:28 David Seifert
2021-09-18 19:48 Sam James
2021-09-15 16:00 Mike Gilbert
2021-08-10 14:37 Mike Gilbert
2021-08-10 14:37 Mike Gilbert
2021-06-20 17:18 Mike Gilbert
2021-06-13 14:42 Mike Gilbert
2021-05-14 22:14 David Seifert
2021-02-07 18:09 Mike Gilbert
2021-02-07 18:09 Mike Gilbert
2020-12-07 17:42 Mike Gilbert
2020-08-14 19:24 Mike Gilbert
2020-08-14 19:16 Mike Gilbert
2020-08-13  2:56 Mike Gilbert
2020-08-13  2:56 Mike Gilbert
2020-08-13  2:56 Mike Gilbert
2020-03-06 19:40 Mike Gilbert
2020-03-06 19:39 Mike Gilbert
2020-02-04 18:52 Mike Gilbert
2019-11-26 11:46 Agostino Sarubbo
2019-11-26 10:18 Thomas Deutschmann
2019-09-13 17:58 Mikle Kolyada
2019-09-13 17:58 Mikle Kolyada
2019-09-13 17:58 Mikle Kolyada
2019-08-26 18:45 Sergei Trofimovich
2019-08-23 16:33 Agostino Sarubbo
2019-08-23 13:11 Agostino Sarubbo
2019-08-23 10:00 Agostino Sarubbo
2019-08-22 22:03 Agostino Sarubbo
2019-08-22 22:01 Agostino Sarubbo
2019-08-22  6:03 Sergei Trofimovich
2019-08-20 20:36 Aaron Bauman
2019-08-19 11:37 Agostino Sarubbo
2019-08-19  5:57 Agostino Sarubbo
2019-08-18 21:58 Mike Gilbert
2019-05-04 19:40 Andreas K. Hüttel
2019-04-17 12:21 Mikle Kolyada
2019-04-17 12:21 Mikle Kolyada
2019-04-17 12:21 Mikle Kolyada
2019-04-13  3:27 Aaron Bauman
2019-04-01 17:21 Thomas Deutschmann
2019-03-17  1:49 Mike Gilbert
2019-03-17  1:49 Mike Gilbert
2019-03-17  1:49 Mike Gilbert
2019-03-16 22:55 Sergei Trofimovich
2019-03-16 21:57 Sergei Trofimovich
2019-03-16 14:46 Mikle Kolyada
2019-03-15 23:17 Mikle Kolyada
2019-03-15  9:56 Mikle Kolyada
2019-03-14 21:53 Sergei Trofimovich
2019-03-14  8:31 Sergei Trofimovich
2019-03-11 19:58 Sergei Trofimovich
2018-09-17 15:01 Mike Gilbert
2018-06-26 11:21 Thomas Deutschmann
2018-05-14 22:02 Mikle Kolyada
2018-04-22  6:33 Matt Turner
2018-04-18 20:52 Mikle Kolyada
2018-03-17 23:02 Matt Turner
2018-03-17 23:02 Matt Turner
2018-03-15 19:09 Mike Gilbert
2018-03-15  1:50 Mart Raudsepp
2018-03-05 17:13 Tobias Klausmann
2018-02-25 18:21 Thomas Deutschmann
2018-02-23 10:15 Sergei Trofimovich
2018-02-22  9:49 Jason Zaman
2018-02-21 22:34 Sergei Trofimovich
2018-01-12  4:19 Mike Frysinger
2017-12-24  9:46 Mart Raudsepp
2017-10-05 22:02 Mike Gilbert
2017-10-03 21:55 Mike Gilbert
2017-07-15 15:20 Mike Gilbert
2017-07-15 15:20 Mike Gilbert
2017-05-05 19:11 Markus Meier
2017-04-30  9:37 Agostino Sarubbo
2017-04-29 15:02 Agostino Sarubbo
2017-04-27 11:23 Agostino Sarubbo
2017-04-25  7:21 Jeroen Roovers
2017-04-23 10:27 Agostino Sarubbo
2017-04-22  7:33 Tobias Klausmann
2017-03-28 21:04 Mike Gilbert
2016-11-04  1:48 Mike Gilbert
2016-08-19 10:07 Pacho Ramos
2016-08-07  9:30 Pacho Ramos
2016-08-01  5:29 Mike Frysinger
2016-08-01  5:29 Mike Frysinger
2016-08-01  5:29 Mike Frysinger
2016-04-21 22:40 Mike Gilbert
2016-03-06 15:04 Mike Gilbert
2016-03-06 15:01 Mike Gilbert
2016-01-14  2:29 Mike Frysinger
2016-01-11  9:56 Agostino Sarubbo
2016-01-10 11:22 Agostino Sarubbo
2016-01-09  7:00 Agostino Sarubbo
2016-01-07 20:12 Markus Meier
2015-12-26 12:03 Agostino Sarubbo
2015-12-19  6:18 Jeroen Roovers
2015-12-14 16:13 Agostino Sarubbo
2015-12-14  7:54 Anthony G. Basile

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1607362239.9c28af6ccf5e113db09423a37fb22218de73d9ba.floppym@gentoo \
    --to=floppym@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox