commit:     9b78ac75fc0cd0f80dfcaa444436934a6e508c51
Author:     Nick Sarnie <sarnex <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 23 18:48:53 2021 +0000
Commit:     Nick Sarnie <sarnex <AT> gentoo <DOT> org>
CommitDate: Sat Jan 23 18:53:37 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b78ac75

app-emulation/vendor-reset: New package

Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Nick Sarnie <sarnex <AT> gentoo.org>

 app-emulation/vendor-reset/Manifest                |  1 +
 app-emulation/vendor-reset/files/modload.conf      |  1 +
 app-emulation/vendor-reset/metadata.xml            | 11 ++++++
 .../vendor-reset/vendor-reset-0.1.0.ebuild         | 46 ++++++++++++++++++++++
 .../vendor-reset/vendor-reset-9999.ebuild          | 46 ++++++++++++++++++++++
 5 files changed, 105 insertions(+)

diff --git a/app-emulation/vendor-reset/Manifest 
b/app-emulation/vendor-reset/Manifest
new file mode 100644
index 00000000000..366f13b544d
--- /dev/null
+++ b/app-emulation/vendor-reset/Manifest
@@ -0,0 +1 @@
+DIST v0.1.0.tar.gz 12718324 BLAKE2B 
762ec8bc289b572ab8f8ecc3fa233e3c78c48c48a261c58ce1be9c10356a55957e0bd8fd01e3143443be74236bf9ed540b84d332788c67aa949599ccc5a564d3
 SHA512 
ed4dcb1a71fa8901732e729d37b501ac105cc2c93d0666e44c08e311d99a244027339d5709a9305ff992ca2acb2f337793cdb1f9369197911985cd20d6f3139f

diff --git a/app-emulation/vendor-reset/files/modload.conf 
b/app-emulation/vendor-reset/files/modload.conf
new file mode 100644
index 00000000000..ff75088aa8f
--- /dev/null
+++ b/app-emulation/vendor-reset/files/modload.conf
@@ -0,0 +1 @@
+vendor-reset

diff --git a/app-emulation/vendor-reset/metadata.xml 
b/app-emulation/vendor-reset/metadata.xml
new file mode 100644
index 00000000000..95a133672a1
--- /dev/null
+++ b/app-emulation/vendor-reset/metadata.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd";>
+<pkgmetadata>
+       <maintainer type="person">
+               <email>sar...@gentoo.org</email>
+               <name>Nick Sarnie</name>
+       </maintainer>
+       <upstream>
+               <remote-id type="github">gnif/vendor-reset</remote-id>
+       </upstream>
+</pkgmetadata>

diff --git a/app-emulation/vendor-reset/vendor-reset-0.1.0.ebuild 
b/app-emulation/vendor-reset/vendor-reset-0.1.0.ebuild
new file mode 100644
index 00000000000..e326cb11808
--- /dev/null
+++ b/app-emulation/vendor-reset/vendor-reset-0.1.0.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit linux-mod
+
+if [[ ${PV} == *9999* ]]; then
+       EGIT_REPO_URI="https://github.com/gnif/vendor-reset.git";
+       EGIT_BRANCH="master"
+       inherit git-r3
+else
+       KEYWORDS="~amd64"
+       SRC_URI="https://github.com/gnif/vendor-reset/archive/v${PV}.tar.gz";
+fi
+
+DESCRIPTION="Linux kernel vendor specific hardware reset module"
+HOMEPAGE="https://github.com/gnif/vendor-reset";
+LICENSE="GPL-2"
+SLOT="0"
+
+DEPEND=""
+RDEPEND="${DEPEND}"
+
+pkg_setup() {
+       local CONFIG_CHECK="FTRACE KPROBES PCI_QUIRKS KALLSYMS FUNCTION_TRACER"
+       linux-mod_pkg_setup
+}
+
+src_compile() {
+       set_arch_to_kernel
+       emake \
+               DESTDIR="${ED}" \
+               INSTALL_MOD_PATH="${ED}"
+}
+
+src_install() {
+       set_arch_to_kernel
+       emake \
+               DESTDIR="${ED}" \
+               INSTALL_MOD_PATH="${ED}" \
+               install
+
+       insinto /etc/modules-load.d/
+       newins "${FILESDIR}"/modload.conf vendor-reset.conf
+}

diff --git a/app-emulation/vendor-reset/vendor-reset-9999.ebuild 
b/app-emulation/vendor-reset/vendor-reset-9999.ebuild
new file mode 100644
index 00000000000..e326cb11808
--- /dev/null
+++ b/app-emulation/vendor-reset/vendor-reset-9999.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit linux-mod
+
+if [[ ${PV} == *9999* ]]; then
+       EGIT_REPO_URI="https://github.com/gnif/vendor-reset.git";
+       EGIT_BRANCH="master"
+       inherit git-r3
+else
+       KEYWORDS="~amd64"
+       SRC_URI="https://github.com/gnif/vendor-reset/archive/v${PV}.tar.gz";
+fi
+
+DESCRIPTION="Linux kernel vendor specific hardware reset module"
+HOMEPAGE="https://github.com/gnif/vendor-reset";
+LICENSE="GPL-2"
+SLOT="0"
+
+DEPEND=""
+RDEPEND="${DEPEND}"
+
+pkg_setup() {
+       local CONFIG_CHECK="FTRACE KPROBES PCI_QUIRKS KALLSYMS FUNCTION_TRACER"
+       linux-mod_pkg_setup
+}
+
+src_compile() {
+       set_arch_to_kernel
+       emake \
+               DESTDIR="${ED}" \
+               INSTALL_MOD_PATH="${ED}"
+}
+
+src_install() {
+       set_arch_to_kernel
+       emake \
+               DESTDIR="${ED}" \
+               INSTALL_MOD_PATH="${ED}" \
+               install
+
+       insinto /etc/modules-load.d/
+       newins "${FILESDIR}"/modload.conf vendor-reset.conf
+}

Reply via email to