From eb609f2fb4ff75f84f3807767d6741bfff6f80af Mon Sep 17 00:00:00 2001 From: Mikle Kolyada Date: Fri, 7 Aug 2020 13:48:41 +0300 Subject: sys-power/acpi_call: migrate to sys-apps/kmod Package-Manager: Portage-2.3.103, Repoman-2.3.23 Signed-off-by: Mikle Kolyada --- sys-power/acpi_call/acpi_call-1.1.0-r1.ebuild | 36 ------------------------- sys-power/acpi_call/acpi_call-1.1.0-r2.ebuild | 38 --------------------------- sys-power/acpi_call/acpi_call-1.1.0-r3.ebuild | 32 ++++++++++++++++++++++ sys-power/acpi_call/acpi_call-1.1.0-r4.ebuild | 36 +++++++++++++++++++++++++ sys-power/acpi_call/acpi_call-1.1.0-r5.ebuild | 38 +++++++++++++++++++++++++++ sys-power/acpi_call/acpi_call-1.1.0.ebuild | 32 ---------------------- sys-power/acpi_call/acpi_call-3.17-r1.ebuild | 36 ------------------------- sys-power/acpi_call/acpi_call-3.17-r2.ebuild | 36 +++++++++++++++++++++++++ 8 files changed, 142 insertions(+), 142 deletions(-) delete mode 100644 sys-power/acpi_call/acpi_call-1.1.0-r1.ebuild delete mode 100644 sys-power/acpi_call/acpi_call-1.1.0-r2.ebuild create mode 100644 sys-power/acpi_call/acpi_call-1.1.0-r3.ebuild create mode 100644 sys-power/acpi_call/acpi_call-1.1.0-r4.ebuild create mode 100644 sys-power/acpi_call/acpi_call-1.1.0-r5.ebuild delete mode 100644 sys-power/acpi_call/acpi_call-1.1.0.ebuild delete mode 100644 sys-power/acpi_call/acpi_call-3.17-r1.ebuild create mode 100644 sys-power/acpi_call/acpi_call-3.17-r2.ebuild diff --git a/sys-power/acpi_call/acpi_call-1.1.0-r1.ebuild b/sys-power/acpi_call/acpi_call-1.1.0-r1.ebuild deleted file mode 100644 index 2c15af2d8fe2..000000000000 --- a/sys-power/acpi_call/acpi_call-1.1.0-r1.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit eutils linux-info linux-mod - -if [ "${PV}" = "9999" ]; then - inherit git-2 - EGIT_REPO_URI="https://github.com/mkottman/acpi_call.git" - KEYWORDS="" -else - inherit vcs-snapshot - SRC_URI="https://github.com/mkottman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64" -fi - -DESCRIPTION="A kernel module that enables you to call ACPI methods" -HOMEPAGE="https://github.com/mkottman/acpi_call" - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -CONFIG_CHECK="ACPI" -MODULE_NAMES="acpi_call(misc:${S})" -BUILD_TARGETS="default" - -src_prepare() { - epatch "${FILESDIR}/${P}-linux-3.17.patch" -} - -src_compile() { - BUILD_PARAMS="KDIR=${KV_OUT_DIR} M=${S}" - linux-mod_src_compile -} diff --git a/sys-power/acpi_call/acpi_call-1.1.0-r2.ebuild b/sys-power/acpi_call/acpi_call-1.1.0-r2.ebuild deleted file mode 100644 index 4dd39fb95a87..000000000000 --- a/sys-power/acpi_call/acpi_call-1.1.0-r2.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit linux-info linux-mod - -if [ "${PV}" = "9999" ]; then - inherit git-2 - EGIT_REPO_URI="https://github.com/mkottman/acpi_call.git" - KEYWORDS="" -else - inherit vcs-snapshot - SRC_URI="https://github.com/mkottman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64" -fi - -DESCRIPTION="A kernel module that enables you to call ACPI methods" -HOMEPAGE="https://github.com/mkottman/acpi_call" - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -CONFIG_CHECK="ACPI" -MODULE_NAMES="acpi_call(misc:${S})" -BUILD_TARGETS="default" - -PATCHES=( - "${FILESDIR}/${P}-linux-3.17.patch" - "${FILESDIR}/${P}-linux-4.12.patch" - "${FILESDIR}/${P}-linux-4.14.patch" -) - -src_compile() { - BUILD_PARAMS="KDIR=${KV_OUT_DIR} M=${S}" - linux-mod_src_compile -} diff --git a/sys-power/acpi_call/acpi_call-1.1.0-r3.ebuild b/sys-power/acpi_call/acpi_call-1.1.0-r3.ebuild new file mode 100644 index 000000000000..fb33317d196b --- /dev/null +++ b/sys-power/acpi_call/acpi_call-1.1.0-r3.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=5 + +inherit linux-info linux-mod + +if [ "${PV}" = "9999" ]; then + inherit git-2 + EGIT_REPO_URI="https://github.com/mkottman/acpi_call.git" + KEYWORDS="" +else + inherit vcs-snapshot + SRC_URI="https://github.com/mkottman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64" +fi + +DESCRIPTION="A kernel module that enables you to call ACPI methods" +HOMEPAGE="https://github.com/mkottman/acpi_call" + +LICENSE="GPL-2" +SLOT="0" +IUSE="" + +CONFIG_CHECK="ACPI" +MODULE_NAMES="acpi_call(misc:${S})" +BUILD_TARGETS="default" + +src_compile() { + BUILD_PARAMS="KDIR=${KV_OUT_DIR} M=${S}" + linux-mod_src_compile +} diff --git a/sys-power/acpi_call/acpi_call-1.1.0-r4.ebuild b/sys-power/acpi_call/acpi_call-1.1.0-r4.ebuild new file mode 100644 index 000000000000..2c15af2d8fe2 --- /dev/null +++ b/sys-power/acpi_call/acpi_call-1.1.0-r4.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=5 + +inherit eutils linux-info linux-mod + +if [ "${PV}" = "9999" ]; then + inherit git-2 + EGIT_REPO_URI="https://github.com/mkottman/acpi_call.git" + KEYWORDS="" +else + inherit vcs-snapshot + SRC_URI="https://github.com/mkottman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64" +fi + +DESCRIPTION="A kernel module that enables you to call ACPI methods" +HOMEPAGE="https://github.com/mkottman/acpi_call" + +LICENSE="GPL-2" +SLOT="0" +IUSE="" + +CONFIG_CHECK="ACPI" +MODULE_NAMES="acpi_call(misc:${S})" +BUILD_TARGETS="default" + +src_prepare() { + epatch "${FILESDIR}/${P}-linux-3.17.patch" +} + +src_compile() { + BUILD_PARAMS="KDIR=${KV_OUT_DIR} M=${S}" + linux-mod_src_compile +} diff --git a/sys-power/acpi_call/acpi_call-1.1.0-r5.ebuild b/sys-power/acpi_call/acpi_call-1.1.0-r5.ebuild new file mode 100644 index 000000000000..4dd39fb95a87 --- /dev/null +++ b/sys-power/acpi_call/acpi_call-1.1.0-r5.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit linux-info linux-mod + +if [ "${PV}" = "9999" ]; then + inherit git-2 + EGIT_REPO_URI="https://github.com/mkottman/acpi_call.git" + KEYWORDS="" +else + inherit vcs-snapshot + SRC_URI="https://github.com/mkottman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64" +fi + +DESCRIPTION="A kernel module that enables you to call ACPI methods" +HOMEPAGE="https://github.com/mkottman/acpi_call" + +LICENSE="GPL-2" +SLOT="0" +IUSE="" + +CONFIG_CHECK="ACPI" +MODULE_NAMES="acpi_call(misc:${S})" +BUILD_TARGETS="default" + +PATCHES=( + "${FILESDIR}/${P}-linux-3.17.patch" + "${FILESDIR}/${P}-linux-4.12.patch" + "${FILESDIR}/${P}-linux-4.14.patch" +) + +src_compile() { + BUILD_PARAMS="KDIR=${KV_OUT_DIR} M=${S}" + linux-mod_src_compile +} diff --git a/sys-power/acpi_call/acpi_call-1.1.0.ebuild b/sys-power/acpi_call/acpi_call-1.1.0.ebuild deleted file mode 100644 index fb33317d196b..000000000000 --- a/sys-power/acpi_call/acpi_call-1.1.0.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit linux-info linux-mod - -if [ "${PV}" = "9999" ]; then - inherit git-2 - EGIT_REPO_URI="https://github.com/mkottman/acpi_call.git" - KEYWORDS="" -else - inherit vcs-snapshot - SRC_URI="https://github.com/mkottman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64" -fi - -DESCRIPTION="A kernel module that enables you to call ACPI methods" -HOMEPAGE="https://github.com/mkottman/acpi_call" - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -CONFIG_CHECK="ACPI" -MODULE_NAMES="acpi_call(misc:${S})" -BUILD_TARGETS="default" - -src_compile() { - BUILD_PARAMS="KDIR=${KV_OUT_DIR} M=${S}" - linux-mod_src_compile -} diff --git a/sys-power/acpi_call/acpi_call-3.17-r1.ebuild b/sys-power/acpi_call/acpi_call-3.17-r1.ebuild deleted file mode 100644 index 87ae13124e96..000000000000 --- a/sys-power/acpi_call/acpi_call-3.17-r1.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit linux-info linux-mod - -HOMEPAGE="https://github.com/teleshoes/acpi_call" -if [ "${PV}" = "9999" ]; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/teleshoes/acpi_call.git" - KEYWORDS="" -else - SRC_URI="https://github.com/teleshoes/acpi_call/archive/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64" -fi - -DESCRIPTION="A kernel module that enables you to call ACPI methods" - -LICENSE="GPL-2" -SLOT="0" - -BUILD_TARGETS="default" -CONFIG_CHECK="ACPI" -MODULE_NAMES="acpi_call(misc:${S})" - -PATCHES=( - "${FILESDIR}/${P}-linux-4.12.patch" - "${FILESDIR}/${P}-linux-4.14.patch" - "${FILESDIR}/${P}-linux-5.6.patch" -) - -src_compile() { - BUILD_PARAMS="KDIR=${KV_OUT_DIR} M=${S}" - linux-mod_src_compile -} diff --git a/sys-power/acpi_call/acpi_call-3.17-r2.ebuild b/sys-power/acpi_call/acpi_call-3.17-r2.ebuild new file mode 100644 index 000000000000..87ae13124e96 --- /dev/null +++ b/sys-power/acpi_call/acpi_call-3.17-r2.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit linux-info linux-mod + +HOMEPAGE="https://github.com/teleshoes/acpi_call" +if [ "${PV}" = "9999" ]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/teleshoes/acpi_call.git" + KEYWORDS="" +else + SRC_URI="https://github.com/teleshoes/acpi_call/archive/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64" +fi + +DESCRIPTION="A kernel module that enables you to call ACPI methods" + +LICENSE="GPL-2" +SLOT="0" + +BUILD_TARGETS="default" +CONFIG_CHECK="ACPI" +MODULE_NAMES="acpi_call(misc:${S})" + +PATCHES=( + "${FILESDIR}/${P}-linux-4.12.patch" + "${FILESDIR}/${P}-linux-4.14.patch" + "${FILESDIR}/${P}-linux-5.6.patch" +) + +src_compile() { + BUILD_PARAMS="KDIR=${KV_OUT_DIR} M=${S}" + linux-mod_src_compile +} -- cgit v1.2.3-65-gdbad