From 9b78ac75fc0cd0f80dfcaa444436934a6e508c51 Mon Sep 17 00:00:00 2001 From: Nick Sarnie Date: Sat, 23 Jan 2021 13:48:53 -0500 Subject: app-emulation/vendor-reset: New package Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Nick Sarnie --- 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(+) create mode 100644 app-emulation/vendor-reset/Manifest create mode 100644 app-emulation/vendor-reset/files/modload.conf create mode 100644 app-emulation/vendor-reset/metadata.xml create mode 100644 app-emulation/vendor-reset/vendor-reset-0.1.0.ebuild create mode 100644 app-emulation/vendor-reset/vendor-reset-9999.ebuild diff --git a/app-emulation/vendor-reset/Manifest b/app-emulation/vendor-reset/Manifest new file mode 100644 index 000000000000..366f13b544db --- /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 000000000000..ff75088aa8fe --- /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 000000000000..95a133672a10 --- /dev/null +++ b/app-emulation/vendor-reset/metadata.xml @@ -0,0 +1,11 @@ + + + + + sarnex@gentoo.org + Nick Sarnie + + + gnif/vendor-reset + + 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 000000000000..e326cb118082 --- /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 000000000000..e326cb118082 --- /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 +} -- cgit v1.2.3-65-gdbad