public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:master commit in: x11-drivers/evdi/
@ 2024-09-07  9:22 David Roman
  0 siblings, 0 replies; 11+ messages in thread
From: David Roman @ 2024-09-07  9:22 UTC (permalink / raw
  To: gentoo-commits

commit:     918ecf81ca1459fcc61eea5a33de3d729137b141
Author:     Paul Zander <negril.nx+gentoo <AT> gmail <DOT> com>
AuthorDate: Fri Sep  6 14:16:26 2024 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Fri Sep  6 14:22:54 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=918ecf81

x11-drivers/evdi: add 1.14.6, add filter-lto

Fixes:
	ERROR: modpost: missing MODULE_LICENSE()

Signed-off-by: Paul Zander <negril.nx+gentoo <AT> gmail.com>

 x11-drivers/evdi/Manifest           |  1 +
 x11-drivers/evdi/evdi-1.14.6.ebuild | 81 +++++++++++++++++++++++++++++++++++++
 2 files changed, 82 insertions(+)

diff --git a/x11-drivers/evdi/Manifest b/x11-drivers/evdi/Manifest
index 35153bb9e..1ff924738 100644
--- a/x11-drivers/evdi/Manifest
+++ b/x11-drivers/evdi/Manifest
@@ -1 +1,2 @@
 DIST evdi-1.14.5.tar.gz 90775 BLAKE2B ccee5c1fa1644bef98ddbc2d06eff990c56d2f5a58042f5ee1557816f25da850bd5c5cc5bd60ca48cc341fe167359ab513425e5ef5d3b248426c1e81a5e5cd10 SHA512 6374c88a4433da0142fc1e9ae7fa48791253747694deb86b4897a2f503783ba45c46f5e5f53718dc73ce47cb4a03479b989300ca57c4d847a912915b36a72142
+DIST evdi-1.14.6.tar.gz 91220 BLAKE2B 7b500096d45f0ac8329059d6ba092b3536039fa2647e39c40a863efd01756cae03dbc06076513e9ba68344e3997838727512003fb75c69c70a277a9276ee945c SHA512 8fc77d1b4a78395f05541ac3f9babb69c3fa59d89383d95b5a429a61d8941cddbc5087348f02125296eeec1c656135580f5a34d61430f4bce4b25c4ca685f735

diff --git a/x11-drivers/evdi/evdi-1.14.6.ebuild b/x11-drivers/evdi/evdi-1.14.6.ebuild
new file mode 100644
index 000000000..f6edbd98f
--- /dev/null
+++ b/x11-drivers/evdi/evdi-1.14.6.ebuild
@@ -0,0 +1,81 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..13} )
+inherit linux-mod-r1 python-single-r1 flag-o-matic
+
+DESCRIPTION="Extensible Virtual Display Interface"
+HOMEPAGE="https://github.com/DisplayLink/evdi"
+SRC_URI="https://github.com/DisplayLink/evdi/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2 LGPL-2.1"
+SLOT="0/$(ver_cut 1)"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+
+IUSE="python test"
+
+RDEPEND="${PYTHON_DEPS}
+	x11-libs/libdrm
+	python? (
+		$(python_gen_cond_dep '
+			dev-python/pybind11[${PYTHON_USEDEP}]
+			test? (
+				dev-python/pytest-mock[${PYTHON_USEDEP}]
+			)
+		')
+	)
+"
+
+DEPEND="${RDEPEND}
+	sys-kernel/linux-headers
+"
+
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
+RESTRICT="!test? ( test )"
+
+# module/Kconfig
+CONFIG_CHECK="~FB_VIRTUAL ~I2C ~DRM ~USB_SUPPORT ~USB_ARCH_HAS_HCD MODULES"
+
+PATCHES=(
+	"${FILESDIR}/${PN}-1.14.4-format-truncation.patch"
+)
+
+pkg_setup() {
+	linux-mod-r1_pkg_setup
+	use python && python-single-r1_pkg_setup
+}
+
+src_compile() {
+	filter-lto
+
+	local modlist=(
+		"evdi=video:module"
+	)
+	local modargs=(
+		CONFIG_DRM_EVDI="m" # https://github.com/DisplayLink/evdi/issues/476
+		KVER="${KV_FULL}"
+		KDIR="${KV_OUT_DIR}"
+	)
+	linux-mod-r1_src_compile
+
+	emake -C library
+
+	use python && emake -C pyevdi
+}
+
+src_test() {
+	use python && emake -C pyevdi tests
+}
+
+src_install() {
+	linux-mod-r1_src_install
+
+	local -x DESTDIR="${ED}" PREFIX="${EPREFIX}"
+
+	LIBDIR="/usr/$(get_libdir)" emake -C library install
+
+	use python && emake -C pyevdi install
+}


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: x11-drivers/evdi/
@ 2024-10-09 15:39 David Roman
  0 siblings, 0 replies; 11+ messages in thread
From: David Roman @ 2024-10-09 15:39 UTC (permalink / raw
  To: gentoo-commits

commit:     3dc17ef603ca06bce2d1ee5fd3c9818088422f0a
Author:     Paul Zander <negril.nx+gentoo <AT> gmail <DOT> com>
AuthorDate: Wed Oct  9 14:29:51 2024 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Wed Oct  9 14:29:51 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3dc17ef6

x11-drivers/evdi: drop 1.14.5

Signed-off-by: Paul Zander <negril.nx+gentoo <AT> gmail.com>

 x11-drivers/evdi/Manifest           |  1 -
 x11-drivers/evdi/evdi-1.14.5.ebuild | 79 -------------------------------------
 2 files changed, 80 deletions(-)

diff --git a/x11-drivers/evdi/Manifest b/x11-drivers/evdi/Manifest
index 1ff924738..f57567b2b 100644
--- a/x11-drivers/evdi/Manifest
+++ b/x11-drivers/evdi/Manifest
@@ -1,2 +1 @@
-DIST evdi-1.14.5.tar.gz 90775 BLAKE2B ccee5c1fa1644bef98ddbc2d06eff990c56d2f5a58042f5ee1557816f25da850bd5c5cc5bd60ca48cc341fe167359ab513425e5ef5d3b248426c1e81a5e5cd10 SHA512 6374c88a4433da0142fc1e9ae7fa48791253747694deb86b4897a2f503783ba45c46f5e5f53718dc73ce47cb4a03479b989300ca57c4d847a912915b36a72142
 DIST evdi-1.14.6.tar.gz 91220 BLAKE2B 7b500096d45f0ac8329059d6ba092b3536039fa2647e39c40a863efd01756cae03dbc06076513e9ba68344e3997838727512003fb75c69c70a277a9276ee945c SHA512 8fc77d1b4a78395f05541ac3f9babb69c3fa59d89383d95b5a429a61d8941cddbc5087348f02125296eeec1c656135580f5a34d61430f4bce4b25c4ca685f735

diff --git a/x11-drivers/evdi/evdi-1.14.5.ebuild b/x11-drivers/evdi/evdi-1.14.5.ebuild
deleted file mode 100644
index 00cf76a59..000000000
--- a/x11-drivers/evdi/evdi-1.14.5.ebuild
+++ /dev/null
@@ -1,79 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{10..13} )
-inherit linux-mod-r1 python-single-r1
-
-DESCRIPTION="Extensible Virtual Display Interface"
-HOMEPAGE="https://github.com/DisplayLink/evdi"
-SRC_URI="https://github.com/DisplayLink/evdi/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2 LGPL-2.1"
-SLOT="0/$(ver_cut 1)"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
-
-IUSE="python test"
-
-RDEPEND="${PYTHON_DEPS}
-	x11-libs/libdrm
-	python? (
-		$(python_gen_cond_dep '
-			dev-python/pybind11[${PYTHON_USEDEP}]
-			test? (
-				dev-python/pytest-mock[${PYTHON_USEDEP}]
-			)
-		')
-	)
-"
-
-DEPEND="${RDEPEND}
-	sys-kernel/linux-headers
-"
-
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-
-RESTRICT="!test? ( test )"
-
-# module/Kconfig
-CONFIG_CHECK="~FB_VIRTUAL ~I2C ~DRM ~USB_SUPPORT ~USB_ARCH_HAS_HCD MODULES"
-
-PATCHES=(
-	"${FILESDIR}/${PN}-1.14.4-format-truncation.patch"
-)
-
-pkg_setup() {
-	linux-mod-r1_pkg_setup
-	use python && python-single-r1_pkg_setup
-}
-
-src_compile() {
-	local modlist=(
-		"evdi=video:module"
-	)
-	local modargs=(
-		CONFIG_DRM_EVDI="m" # https://github.com/DisplayLink/evdi/issues/476
-		KVER="${KV_FULL}"
-		KDIR="${KV_OUT_DIR}"
-	)
-	linux-mod-r1_src_compile
-
-	emake -C library
-
-	use python && emake -C pyevdi
-}
-
-src_test() {
-	use python && emake -C pyevdi tests
-}
-
-src_install() {
-	linux-mod-r1_src_install
-
-	local -x DESTDIR="${ED}" PREFIX="${EPREFIX}"
-
-	LIBDIR="/usr/$(get_libdir)" emake -C library install
-
-	use python && emake -C pyevdi install
-}


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: x11-drivers/evdi/
@ 2024-10-09 15:39 David Roman
  0 siblings, 0 replies; 11+ messages in thread
From: David Roman @ 2024-10-09 15:39 UTC (permalink / raw
  To: gentoo-commits

commit:     c08ed090eef55f00c30038f500b6391362350029
Author:     Paul Zander <negril.nx+gentoo <AT> gmail <DOT> com>
AuthorDate: Wed Oct  9 14:29:06 2024 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Wed Oct  9 14:29:06 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c08ed090

x11-drivers/evdi: add 1.14.7

Signed-off-by: Paul Zander <negril.nx+gentoo <AT> gmail.com>

 x11-drivers/evdi/Manifest           |  1 +
 x11-drivers/evdi/evdi-1.14.7.ebuild | 81 +++++++++++++++++++++++++++++++++++++
 2 files changed, 82 insertions(+)

diff --git a/x11-drivers/evdi/Manifest b/x11-drivers/evdi/Manifest
index f57567b2b..e56ee5207 100644
--- a/x11-drivers/evdi/Manifest
+++ b/x11-drivers/evdi/Manifest
@@ -1 +1,2 @@
 DIST evdi-1.14.6.tar.gz 91220 BLAKE2B 7b500096d45f0ac8329059d6ba092b3536039fa2647e39c40a863efd01756cae03dbc06076513e9ba68344e3997838727512003fb75c69c70a277a9276ee945c SHA512 8fc77d1b4a78395f05541ac3f9babb69c3fa59d89383d95b5a429a61d8941cddbc5087348f02125296eeec1c656135580f5a34d61430f4bce4b25c4ca685f735
+DIST evdi-1.14.7.tar.gz 95158 BLAKE2B ca640c49473b85f59fc5f510a9e59db2579878285ea9bc45ec65d6f464b5937f60cdc96ef3d25bf4e7b06e7478d3cf06b541eda986388418cd077b784db8c0da SHA512 75af080dfb110db1e98a980bba3c7edb892ec1849e368206f8841fc79f947220d8ec5f9ae74c7e3f9164ed2be9cae713270da4bdec10e8af5295d264e55af0d7

diff --git a/x11-drivers/evdi/evdi-1.14.7.ebuild b/x11-drivers/evdi/evdi-1.14.7.ebuild
new file mode 100644
index 000000000..f6edbd98f
--- /dev/null
+++ b/x11-drivers/evdi/evdi-1.14.7.ebuild
@@ -0,0 +1,81 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..13} )
+inherit linux-mod-r1 python-single-r1 flag-o-matic
+
+DESCRIPTION="Extensible Virtual Display Interface"
+HOMEPAGE="https://github.com/DisplayLink/evdi"
+SRC_URI="https://github.com/DisplayLink/evdi/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2 LGPL-2.1"
+SLOT="0/$(ver_cut 1)"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+
+IUSE="python test"
+
+RDEPEND="${PYTHON_DEPS}
+	x11-libs/libdrm
+	python? (
+		$(python_gen_cond_dep '
+			dev-python/pybind11[${PYTHON_USEDEP}]
+			test? (
+				dev-python/pytest-mock[${PYTHON_USEDEP}]
+			)
+		')
+	)
+"
+
+DEPEND="${RDEPEND}
+	sys-kernel/linux-headers
+"
+
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
+RESTRICT="!test? ( test )"
+
+# module/Kconfig
+CONFIG_CHECK="~FB_VIRTUAL ~I2C ~DRM ~USB_SUPPORT ~USB_ARCH_HAS_HCD MODULES"
+
+PATCHES=(
+	"${FILESDIR}/${PN}-1.14.4-format-truncation.patch"
+)
+
+pkg_setup() {
+	linux-mod-r1_pkg_setup
+	use python && python-single-r1_pkg_setup
+}
+
+src_compile() {
+	filter-lto
+
+	local modlist=(
+		"evdi=video:module"
+	)
+	local modargs=(
+		CONFIG_DRM_EVDI="m" # https://github.com/DisplayLink/evdi/issues/476
+		KVER="${KV_FULL}"
+		KDIR="${KV_OUT_DIR}"
+	)
+	linux-mod-r1_src_compile
+
+	emake -C library
+
+	use python && emake -C pyevdi
+}
+
+src_test() {
+	use python && emake -C pyevdi tests
+}
+
+src_install() {
+	linux-mod-r1_src_install
+
+	local -x DESTDIR="${ED}" PREFIX="${EPREFIX}"
+
+	LIBDIR="/usr/$(get_libdir)" emake -C library install
+
+	use python && emake -C pyevdi install
+}


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: x11-drivers/evdi/
@ 2024-11-21 17:45 Julien Roy
  0 siblings, 0 replies; 11+ messages in thread
From: Julien Roy @ 2024-11-21 17:45 UTC (permalink / raw
  To: gentoo-commits

commit:     b532a02aa103744c35952c952200791b61e76798
Author:     Paul Zander <negril.nx+gentoo <AT> gmail <DOT> com>
AuthorDate: Thu Nov 21 16:18:56 2024 +0000
Commit:     Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Thu Nov 21 16:18:56 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b532a02a

x11-driver/evdi: add 1.14.17-r1 fix tests

Fails with installed dev-python/pkgcraft and sys-libs/pkgcraft.

Signed-off-by: Paul Zander <negril.nx+gentoo <AT> gmail.com>

 x11-drivers/evdi/evdi-1.14.7-r1.ebuild | 83 ++++++++++++++++++++++++++++++++++
 1 file changed, 83 insertions(+)

diff --git a/x11-drivers/evdi/evdi-1.14.7-r1.ebuild b/x11-drivers/evdi/evdi-1.14.7-r1.ebuild
new file mode 100644
index 000000000..6df4558dc
--- /dev/null
+++ b/x11-drivers/evdi/evdi-1.14.7-r1.ebuild
@@ -0,0 +1,83 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..13} )
+inherit linux-mod-r1 python-single-r1 flag-o-matic
+
+DESCRIPTION="Extensible Virtual Display Interface"
+HOMEPAGE="https://github.com/DisplayLink/evdi"
+SRC_URI="https://github.com/DisplayLink/evdi/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2 LGPL-2.1"
+SLOT="0/$(ver_cut 1)"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+
+IUSE="python test"
+
+RDEPEND="${PYTHON_DEPS}
+	x11-libs/libdrm
+	python? (
+		$(python_gen_cond_dep '
+			dev-python/pybind11[${PYTHON_USEDEP}]
+			test? (
+				dev-python/pytest-mock[${PYTHON_USEDEP}]
+			)
+		')
+	)
+"
+
+DEPEND="${RDEPEND}
+	sys-kernel/linux-headers
+"
+
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
+RESTRICT="!test? ( test )"
+
+# module/Kconfig
+CONFIG_CHECK="~FB_VIRTUAL ~I2C ~DRM ~USB_SUPPORT ~USB_ARCH_HAS_HCD MODULES"
+
+PATCHES=(
+	"${FILESDIR}/${PN}-1.14.4-format-truncation.patch"
+)
+
+pkg_setup() {
+	linux-mod-r1_pkg_setup
+	use python && python-single-r1_pkg_setup
+}
+
+src_compile() {
+	filter-lto
+
+	local modlist=(
+		"evdi=video:module"
+	)
+	local modargs=(
+		CONFIG_DRM_EVDI="m" # https://github.com/DisplayLink/evdi/issues/476
+		KVER="${KV_FULL}"
+		KDIR="${KV_OUT_DIR}"
+	)
+	linux-mod-r1_src_compile
+
+	emake -C library
+
+	use python && emake -C pyevdi
+}
+
+src_test() {
+	local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+
+	use python && emake -C pyevdi tests
+}
+
+src_install() {
+	linux-mod-r1_src_install
+
+	local -x DESTDIR="${ED}" PREFIX="${EPREFIX}"
+
+	LIBDIR="/usr/$(get_libdir)" emake -C library install
+
+	use python && emake -C pyevdi install
+}


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: x11-drivers/evdi/
@ 2024-11-21 17:45 Julien Roy
  0 siblings, 0 replies; 11+ messages in thread
From: Julien Roy @ 2024-11-21 17:45 UTC (permalink / raw
  To: gentoo-commits

commit:     efa269c6eb78de686c10668de7dfe78f1d4ef25b
Author:     Paul Zander <negril.nx+gentoo <AT> gmail <DOT> com>
AuthorDate: Thu Nov 21 16:22:18 2024 +0000
Commit:     Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Thu Nov 21 16:22:41 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=efa269c6

x11-drivers/evdi: drop 1.14.6 1.14.7

Signed-off-by: Paul Zander <negril.nx+gentoo <AT> gmail.com>

 x11-drivers/evdi/Manifest           |  1 -
 x11-drivers/evdi/evdi-1.14.6.ebuild | 81 -------------------------------------
 x11-drivers/evdi/evdi-1.14.7.ebuild | 81 -------------------------------------
 3 files changed, 163 deletions(-)

diff --git a/x11-drivers/evdi/Manifest b/x11-drivers/evdi/Manifest
index e56ee5207..c4317f295 100644
--- a/x11-drivers/evdi/Manifest
+++ b/x11-drivers/evdi/Manifest
@@ -1,2 +1 @@
-DIST evdi-1.14.6.tar.gz 91220 BLAKE2B 7b500096d45f0ac8329059d6ba092b3536039fa2647e39c40a863efd01756cae03dbc06076513e9ba68344e3997838727512003fb75c69c70a277a9276ee945c SHA512 8fc77d1b4a78395f05541ac3f9babb69c3fa59d89383d95b5a429a61d8941cddbc5087348f02125296eeec1c656135580f5a34d61430f4bce4b25c4ca685f735
 DIST evdi-1.14.7.tar.gz 95158 BLAKE2B ca640c49473b85f59fc5f510a9e59db2579878285ea9bc45ec65d6f464b5937f60cdc96ef3d25bf4e7b06e7478d3cf06b541eda986388418cd077b784db8c0da SHA512 75af080dfb110db1e98a980bba3c7edb892ec1849e368206f8841fc79f947220d8ec5f9ae74c7e3f9164ed2be9cae713270da4bdec10e8af5295d264e55af0d7

diff --git a/x11-drivers/evdi/evdi-1.14.6.ebuild b/x11-drivers/evdi/evdi-1.14.6.ebuild
deleted file mode 100644
index f6edbd98f..000000000
--- a/x11-drivers/evdi/evdi-1.14.6.ebuild
+++ /dev/null
@@ -1,81 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{10..13} )
-inherit linux-mod-r1 python-single-r1 flag-o-matic
-
-DESCRIPTION="Extensible Virtual Display Interface"
-HOMEPAGE="https://github.com/DisplayLink/evdi"
-SRC_URI="https://github.com/DisplayLink/evdi/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2 LGPL-2.1"
-SLOT="0/$(ver_cut 1)"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
-
-IUSE="python test"
-
-RDEPEND="${PYTHON_DEPS}
-	x11-libs/libdrm
-	python? (
-		$(python_gen_cond_dep '
-			dev-python/pybind11[${PYTHON_USEDEP}]
-			test? (
-				dev-python/pytest-mock[${PYTHON_USEDEP}]
-			)
-		')
-	)
-"
-
-DEPEND="${RDEPEND}
-	sys-kernel/linux-headers
-"
-
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-
-RESTRICT="!test? ( test )"
-
-# module/Kconfig
-CONFIG_CHECK="~FB_VIRTUAL ~I2C ~DRM ~USB_SUPPORT ~USB_ARCH_HAS_HCD MODULES"
-
-PATCHES=(
-	"${FILESDIR}/${PN}-1.14.4-format-truncation.patch"
-)
-
-pkg_setup() {
-	linux-mod-r1_pkg_setup
-	use python && python-single-r1_pkg_setup
-}
-
-src_compile() {
-	filter-lto
-
-	local modlist=(
-		"evdi=video:module"
-	)
-	local modargs=(
-		CONFIG_DRM_EVDI="m" # https://github.com/DisplayLink/evdi/issues/476
-		KVER="${KV_FULL}"
-		KDIR="${KV_OUT_DIR}"
-	)
-	linux-mod-r1_src_compile
-
-	emake -C library
-
-	use python && emake -C pyevdi
-}
-
-src_test() {
-	use python && emake -C pyevdi tests
-}
-
-src_install() {
-	linux-mod-r1_src_install
-
-	local -x DESTDIR="${ED}" PREFIX="${EPREFIX}"
-
-	LIBDIR="/usr/$(get_libdir)" emake -C library install
-
-	use python && emake -C pyevdi install
-}

diff --git a/x11-drivers/evdi/evdi-1.14.7.ebuild b/x11-drivers/evdi/evdi-1.14.7.ebuild
deleted file mode 100644
index f6edbd98f..000000000
--- a/x11-drivers/evdi/evdi-1.14.7.ebuild
+++ /dev/null
@@ -1,81 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{10..13} )
-inherit linux-mod-r1 python-single-r1 flag-o-matic
-
-DESCRIPTION="Extensible Virtual Display Interface"
-HOMEPAGE="https://github.com/DisplayLink/evdi"
-SRC_URI="https://github.com/DisplayLink/evdi/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2 LGPL-2.1"
-SLOT="0/$(ver_cut 1)"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
-
-IUSE="python test"
-
-RDEPEND="${PYTHON_DEPS}
-	x11-libs/libdrm
-	python? (
-		$(python_gen_cond_dep '
-			dev-python/pybind11[${PYTHON_USEDEP}]
-			test? (
-				dev-python/pytest-mock[${PYTHON_USEDEP}]
-			)
-		')
-	)
-"
-
-DEPEND="${RDEPEND}
-	sys-kernel/linux-headers
-"
-
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-
-RESTRICT="!test? ( test )"
-
-# module/Kconfig
-CONFIG_CHECK="~FB_VIRTUAL ~I2C ~DRM ~USB_SUPPORT ~USB_ARCH_HAS_HCD MODULES"
-
-PATCHES=(
-	"${FILESDIR}/${PN}-1.14.4-format-truncation.patch"
-)
-
-pkg_setup() {
-	linux-mod-r1_pkg_setup
-	use python && python-single-r1_pkg_setup
-}
-
-src_compile() {
-	filter-lto
-
-	local modlist=(
-		"evdi=video:module"
-	)
-	local modargs=(
-		CONFIG_DRM_EVDI="m" # https://github.com/DisplayLink/evdi/issues/476
-		KVER="${KV_FULL}"
-		KDIR="${KV_OUT_DIR}"
-	)
-	linux-mod-r1_src_compile
-
-	emake -C library
-
-	use python && emake -C pyevdi
-}
-
-src_test() {
-	use python && emake -C pyevdi tests
-}
-
-src_install() {
-	linux-mod-r1_src_install
-
-	local -x DESTDIR="${ED}" PREFIX="${EPREFIX}"
-
-	LIBDIR="/usr/$(get_libdir)" emake -C library install
-
-	use python && emake -C pyevdi install
-}


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: x11-drivers/evdi/
@ 2025-01-13 14:19 Julien Roy
  0 siblings, 0 replies; 11+ messages in thread
From: Julien Roy @ 2025-01-13 14:19 UTC (permalink / raw
  To: gentoo-commits

commit:     3db390852b9e3437998b655d75ddca95a753286a
Author:     Paul Zander <negril.nx+gentoo <AT> gmail <DOT> com>
AuthorDate: Mon Jan 13 12:06:56 2025 +0000
Commit:     Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Mon Jan 13 12:33:58 2025 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3db39085

x11-drivers/evdi: add 1.14.8

Signed-off-by: Paul Zander <negril.nx+gentoo <AT> gmail.com>

 x11-drivers/evdi/Manifest           |  1 +
 x11-drivers/evdi/evdi-1.14.8.ebuild | 83 +++++++++++++++++++++++++++++++++++++
 2 files changed, 84 insertions(+)

diff --git a/x11-drivers/evdi/Manifest b/x11-drivers/evdi/Manifest
index c4317f295..ce159e203 100644
--- a/x11-drivers/evdi/Manifest
+++ b/x11-drivers/evdi/Manifest
@@ -1 +1,2 @@
 DIST evdi-1.14.7.tar.gz 95158 BLAKE2B ca640c49473b85f59fc5f510a9e59db2579878285ea9bc45ec65d6f464b5937f60cdc96ef3d25bf4e7b06e7478d3cf06b541eda986388418cd077b784db8c0da SHA512 75af080dfb110db1e98a980bba3c7edb892ec1849e368206f8841fc79f947220d8ec5f9ae74c7e3f9164ed2be9cae713270da4bdec10e8af5295d264e55af0d7
+DIST evdi-1.14.8.tar.gz 96663 BLAKE2B 2c6cb5ecad1d2b3679a08e19a3985b332c4db9a3a4b2a904479d1338e3a45ebd95428c3d751ca80df8dd9628eeb5150c6967391d7d98685fe267a14b9dd755bd SHA512 ec335b848a4ff7ed09927e8ed4cd7edc4c2ae1c25d2cee8db14928b2c93c5d68cb5946249abb0ef07dd1a4db9374b4f45bc5e2b3c5b4258158a54b426a7c2935

diff --git a/x11-drivers/evdi/evdi-1.14.8.ebuild b/x11-drivers/evdi/evdi-1.14.8.ebuild
new file mode 100644
index 000000000..6107a7522
--- /dev/null
+++ b/x11-drivers/evdi/evdi-1.14.8.ebuild
@@ -0,0 +1,83 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..13} )
+inherit linux-mod-r1 python-single-r1 flag-o-matic
+
+DESCRIPTION="Extensible Virtual Display Interface"
+HOMEPAGE="https://github.com/DisplayLink/evdi"
+SRC_URI="https://github.com/DisplayLink/evdi/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2 LGPL-2.1"
+SLOT="0/$(ver_cut 1)"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+
+IUSE="python test"
+
+RDEPEND="${PYTHON_DEPS}
+	python? (
+		$(python_gen_cond_dep '
+			dev-python/pybind11[${PYTHON_USEDEP}]
+			test? (
+				dev-python/pytest-mock[${PYTHON_USEDEP}]
+			)
+		')
+	)
+"
+
+DEPEND="${RDEPEND}
+	x11-libs/libdrm
+	sys-kernel/linux-headers
+"
+
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
+RESTRICT="!test? ( test )"
+
+# module/Kconfig
+CONFIG_CHECK="~FB_VIRTUAL ~I2C ~DRM ~USB_SUPPORT ~USB_ARCH_HAS_HCD MODULES"
+
+PATCHES=(
+	"${FILESDIR}/${PN}-1.14.4-format-truncation.patch"
+)
+
+pkg_setup() {
+	linux-mod-r1_pkg_setup
+	use python && python-single-r1_pkg_setup
+}
+
+src_compile() {
+	filter-lto
+
+	local modlist=(
+		"evdi=video:module"
+	)
+	local modargs=(
+		CONFIG_DRM_EVDI="m" # https://github.com/DisplayLink/evdi/issues/476
+		KVER="${KV_FULL}"
+		KDIR="${KV_OUT_DIR}"
+	)
+	linux-mod-r1_src_compile
+
+	emake -C library
+
+	use python && emake -C pyevdi
+}
+
+src_test() {
+	local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+
+	use python && emake -C pyevdi tests
+}
+
+src_install() {
+	linux-mod-r1_src_install
+
+	local -x DESTDIR="${ED}" PREFIX="${EPREFIX}"
+
+	LIBDIR="/usr/$(get_libdir)" emake -C library install
+
+	use python && emake -C pyevdi install
+}


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: x11-drivers/evdi/
@ 2025-04-16 12:45 David Roman
  0 siblings, 0 replies; 11+ messages in thread
From: David Roman @ 2025-04-16 12:45 UTC (permalink / raw
  To: gentoo-commits

commit:     18016735170c76431a6df6ca8522553c176ee4b4
Author:     Paul Zander <negril.nx+gentoo <AT> gmail <DOT> com>
AuthorDate: Wed Apr 16 12:17:57 2025 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Wed Apr 16 12:17:57 2025 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=18016735

x11-driver/evdi: add 1.14.9

- Preliminary support for 6.14 kernels

Signed-off-by: Paul Zander <negril.nx+gentoo <AT> gmail.com>

 x11-drivers/evdi/Manifest           |  1 +
 x11-drivers/evdi/evdi-1.14.9.ebuild | 83 +++++++++++++++++++++++++++++++++++++
 2 files changed, 84 insertions(+)

diff --git a/x11-drivers/evdi/Manifest b/x11-drivers/evdi/Manifest
index ce159e203..448123dad 100644
--- a/x11-drivers/evdi/Manifest
+++ b/x11-drivers/evdi/Manifest
@@ -1,2 +1,3 @@
 DIST evdi-1.14.7.tar.gz 95158 BLAKE2B ca640c49473b85f59fc5f510a9e59db2579878285ea9bc45ec65d6f464b5937f60cdc96ef3d25bf4e7b06e7478d3cf06b541eda986388418cd077b784db8c0da SHA512 75af080dfb110db1e98a980bba3c7edb892ec1849e368206f8841fc79f947220d8ec5f9ae74c7e3f9164ed2be9cae713270da4bdec10e8af5295d264e55af0d7
 DIST evdi-1.14.8.tar.gz 96663 BLAKE2B 2c6cb5ecad1d2b3679a08e19a3985b332c4db9a3a4b2a904479d1338e3a45ebd95428c3d751ca80df8dd9628eeb5150c6967391d7d98685fe267a14b9dd755bd SHA512 ec335b848a4ff7ed09927e8ed4cd7edc4c2ae1c25d2cee8db14928b2c93c5d68cb5946249abb0ef07dd1a4db9374b4f45bc5e2b3c5b4258158a54b426a7c2935
+DIST evdi-1.14.9.tar.gz 97080 BLAKE2B 85dd5543bcc9ff94e69a6e9c2c5bc36748bd62ec5f55dee71831c37369c231d71548610547d74e8d307cf2b32b4117f40c0948edccc3e32f4a35a5203e027e18 SHA512 55d1d424ae637436b5f5937df6dbbb14bc02b4d7b2e8ce24002494d4a935466637987a188b74a7bc6b9f4eeb417dd60a471eceee85d0fd440901a5153a323fe2

diff --git a/x11-drivers/evdi/evdi-1.14.9.ebuild b/x11-drivers/evdi/evdi-1.14.9.ebuild
new file mode 100644
index 000000000..f4105664f
--- /dev/null
+++ b/x11-drivers/evdi/evdi-1.14.9.ebuild
@@ -0,0 +1,83 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{11..13} )
+inherit linux-mod-r1 python-single-r1 flag-o-matic
+
+DESCRIPTION="Extensible Virtual Display Interface"
+HOMEPAGE="https://github.com/DisplayLink/evdi"
+SRC_URI="https://github.com/DisplayLink/evdi/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2 LGPL-2.1"
+SLOT="0/$(ver_cut 1)"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+
+IUSE="python test"
+
+RDEPEND="${PYTHON_DEPS}
+	python? (
+		$(python_gen_cond_dep '
+			dev-python/pybind11[${PYTHON_USEDEP}]
+			test? (
+				dev-python/pytest-mock[${PYTHON_USEDEP}]
+			)
+		')
+	)
+"
+
+DEPEND="${RDEPEND}
+	x11-libs/libdrm
+	sys-kernel/linux-headers
+"
+
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
+RESTRICT="!test? ( test )"
+
+# module/Kconfig
+CONFIG_CHECK="~FB_VIRTUAL ~I2C ~DRM ~USB_SUPPORT ~USB_ARCH_HAS_HCD MODULES"
+
+PATCHES=(
+	"${FILESDIR}/${PN}-1.14.4-format-truncation.patch"
+)
+
+pkg_setup() {
+	linux-mod-r1_pkg_setup
+	use python && python-single-r1_pkg_setup
+}
+
+src_compile() {
+	filter-lto
+
+	local modlist=(
+		"evdi=video:module"
+	)
+	local modargs=(
+		CONFIG_DRM_EVDI="m" # https://github.com/DisplayLink/evdi/issues/476
+		KVER="${KV_FULL}"
+		KDIR="${KV_OUT_DIR}"
+	)
+	linux-mod-r1_src_compile
+
+	emake -C library
+
+	use python && emake -C pyevdi
+}
+
+src_test() {
+	local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+
+	use python && emake -C pyevdi tests
+}
+
+src_install() {
+	linux-mod-r1_src_install
+
+	local -x DESTDIR="${ED}" PREFIX="${EPREFIX}"
+
+	LIBDIR="/usr/$(get_libdir)" emake -C library install
+
+	use python && emake -C pyevdi install
+}


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: x11-drivers/evdi/
@ 2025-04-16 12:45 David Roman
  0 siblings, 0 replies; 11+ messages in thread
From: David Roman @ 2025-04-16 12:45 UTC (permalink / raw
  To: gentoo-commits

commit:     a7a593195e6d26b54f8abfce9fbadf1ff0ebb9d9
Author:     Paul Zander <negril.nx+gentoo <AT> gmail <DOT> com>
AuthorDate: Wed Apr 16 12:21:33 2025 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Wed Apr 16 12:21:33 2025 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a7a59319

x11-drivers/evdi: drop 1.14.7-r2

Signed-off-by: Paul Zander <negril.nx+gentoo <AT> gmail.com>

 x11-drivers/evdi/Manifest              |  1 -
 x11-drivers/evdi/evdi-1.14.7-r2.ebuild | 85 ----------------------------------
 2 files changed, 86 deletions(-)

diff --git a/x11-drivers/evdi/Manifest b/x11-drivers/evdi/Manifest
index 448123dad..166f44bd1 100644
--- a/x11-drivers/evdi/Manifest
+++ b/x11-drivers/evdi/Manifest
@@ -1,3 +1,2 @@
-DIST evdi-1.14.7.tar.gz 95158 BLAKE2B ca640c49473b85f59fc5f510a9e59db2579878285ea9bc45ec65d6f464b5937f60cdc96ef3d25bf4e7b06e7478d3cf06b541eda986388418cd077b784db8c0da SHA512 75af080dfb110db1e98a980bba3c7edb892ec1849e368206f8841fc79f947220d8ec5f9ae74c7e3f9164ed2be9cae713270da4bdec10e8af5295d264e55af0d7
 DIST evdi-1.14.8.tar.gz 96663 BLAKE2B 2c6cb5ecad1d2b3679a08e19a3985b332c4db9a3a4b2a904479d1338e3a45ebd95428c3d751ca80df8dd9628eeb5150c6967391d7d98685fe267a14b9dd755bd SHA512 ec335b848a4ff7ed09927e8ed4cd7edc4c2ae1c25d2cee8db14928b2c93c5d68cb5946249abb0ef07dd1a4db9374b4f45bc5e2b3c5b4258158a54b426a7c2935
 DIST evdi-1.14.9.tar.gz 97080 BLAKE2B 85dd5543bcc9ff94e69a6e9c2c5bc36748bd62ec5f55dee71831c37369c231d71548610547d74e8d307cf2b32b4117f40c0948edccc3e32f4a35a5203e027e18 SHA512 55d1d424ae637436b5f5937df6dbbb14bc02b4d7b2e8ce24002494d4a935466637987a188b74a7bc6b9f4eeb417dd60a471eceee85d0fd440901a5153a323fe2

diff --git a/x11-drivers/evdi/evdi-1.14.7-r2.ebuild b/x11-drivers/evdi/evdi-1.14.7-r2.ebuild
deleted file mode 100644
index 429b472bb..000000000
--- a/x11-drivers/evdi/evdi-1.14.7-r2.ebuild
+++ /dev/null
@@ -1,85 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{11..13} )
-inherit linux-mod-r1 python-single-r1 flag-o-matic
-
-DESCRIPTION="Extensible Virtual Display Interface"
-HOMEPAGE="https://github.com/DisplayLink/evdi"
-SRC_URI="https://github.com/DisplayLink/evdi/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2 LGPL-2.1"
-SLOT="0/$(ver_cut 1)"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
-
-IUSE="python test"
-
-RDEPEND="${PYTHON_DEPS}
-	x11-libs/libdrm
-	python? (
-		$(python_gen_cond_dep '
-			dev-python/pybind11[${PYTHON_USEDEP}]
-			test? (
-				dev-python/pytest-mock[${PYTHON_USEDEP}]
-			)
-		')
-	)
-"
-
-DEPEND="${RDEPEND}
-	sys-kernel/linux-headers
-"
-
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-
-RESTRICT="!test? ( test )"
-
-# module/Kconfig
-CONFIG_CHECK="~FB_VIRTUAL ~I2C ~DRM ~USB_SUPPORT ~USB_ARCH_HAS_HCD MODULES"
-
-PATCHES=(
-	"${FILESDIR}/${PN}-1.14.4-format-truncation.patch"
-	"${FILESDIR}/${PN}-1.14.7-removed-output_poll_changed.patch"
-	"${FILESDIR}/${PN}-1.14.7-drm_fb_helper.info.patch" # backport from 1.14.8
-)
-
-pkg_setup() {
-	linux-mod-r1_pkg_setup
-	use python && python-single-r1_pkg_setup
-}
-
-src_compile() {
-	filter-lto
-
-	local modlist=(
-		"evdi=video:module"
-	)
-	local modargs=(
-		CONFIG_DRM_EVDI="m" # https://github.com/DisplayLink/evdi/issues/476
-		KVER="${KV_FULL}"
-		KDIR="${KV_OUT_DIR}"
-	)
-	linux-mod-r1_src_compile
-
-	emake -C library
-
-	use python && emake -C pyevdi
-}
-
-src_test() {
-	local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
-
-	use python && emake -C pyevdi tests
-}
-
-src_install() {
-	linux-mod-r1_src_install
-
-	local -x DESTDIR="${ED}" PREFIX="${EPREFIX}"
-
-	LIBDIR="/usr/$(get_libdir)" emake -C library install
-
-	use python && emake -C pyevdi install
-}


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: x11-drivers/evdi/
@ 2025-06-17  8:45 David Roman
  0 siblings, 0 replies; 11+ messages in thread
From: David Roman @ 2025-06-17  8:45 UTC (permalink / raw
  To: gentoo-commits

commit:     710d306f93cb2bc658d73ab59e0b6bb7756d1a2a
Author:     Paul Zander <negril.nx+gentoo <AT> gmail <DOT> com>
AuthorDate: Mon Jun 16 11:04:56 2025 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Mon Jun 16 14:19:46 2025 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=710d306f

x11-drivers/evdi: add 1.14.10

Signed-off-by: Paul Zander <negril.nx+gentoo <AT> gmail.com>

 x11-drivers/evdi/Manifest            |  1 +
 x11-drivers/evdi/evdi-1.14.10.ebuild | 83 ++++++++++++++++++++++++++++++++++++
 2 files changed, 84 insertions(+)

diff --git a/x11-drivers/evdi/Manifest b/x11-drivers/evdi/Manifest
index 166f44bd13..137d44cb7b 100644
--- a/x11-drivers/evdi/Manifest
+++ b/x11-drivers/evdi/Manifest
@@ -1,2 +1,3 @@
+DIST evdi-1.14.10.tar.gz 97166 BLAKE2B 67e489a3287d773262997cb16337293979fbbfe01b7e32de0dbdf1ab95bcfc25e08707d5fdb44a735a561579b2888d7578761051e78ec34dc76429eb261519ff SHA512 3937af9a2cc377f505c45de4ad0c28c778ef91ee7157341dfe411c8c1dde6c665cede26963678b7492688338059dd57f7fe296666e439240eb0f4d478bafbc28
 DIST evdi-1.14.8.tar.gz 96663 BLAKE2B 2c6cb5ecad1d2b3679a08e19a3985b332c4db9a3a4b2a904479d1338e3a45ebd95428c3d751ca80df8dd9628eeb5150c6967391d7d98685fe267a14b9dd755bd SHA512 ec335b848a4ff7ed09927e8ed4cd7edc4c2ae1c25d2cee8db14928b2c93c5d68cb5946249abb0ef07dd1a4db9374b4f45bc5e2b3c5b4258158a54b426a7c2935
 DIST evdi-1.14.9.tar.gz 97080 BLAKE2B 85dd5543bcc9ff94e69a6e9c2c5bc36748bd62ec5f55dee71831c37369c231d71548610547d74e8d307cf2b32b4117f40c0948edccc3e32f4a35a5203e027e18 SHA512 55d1d424ae637436b5f5937df6dbbb14bc02b4d7b2e8ce24002494d4a935466637987a188b74a7bc6b9f4eeb417dd60a471eceee85d0fd440901a5153a323fe2

diff --git a/x11-drivers/evdi/evdi-1.14.10.ebuild b/x11-drivers/evdi/evdi-1.14.10.ebuild
new file mode 100644
index 0000000000..f4105664f4
--- /dev/null
+++ b/x11-drivers/evdi/evdi-1.14.10.ebuild
@@ -0,0 +1,83 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{11..13} )
+inherit linux-mod-r1 python-single-r1 flag-o-matic
+
+DESCRIPTION="Extensible Virtual Display Interface"
+HOMEPAGE="https://github.com/DisplayLink/evdi"
+SRC_URI="https://github.com/DisplayLink/evdi/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2 LGPL-2.1"
+SLOT="0/$(ver_cut 1)"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+
+IUSE="python test"
+
+RDEPEND="${PYTHON_DEPS}
+	python? (
+		$(python_gen_cond_dep '
+			dev-python/pybind11[${PYTHON_USEDEP}]
+			test? (
+				dev-python/pytest-mock[${PYTHON_USEDEP}]
+			)
+		')
+	)
+"
+
+DEPEND="${RDEPEND}
+	x11-libs/libdrm
+	sys-kernel/linux-headers
+"
+
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
+RESTRICT="!test? ( test )"
+
+# module/Kconfig
+CONFIG_CHECK="~FB_VIRTUAL ~I2C ~DRM ~USB_SUPPORT ~USB_ARCH_HAS_HCD MODULES"
+
+PATCHES=(
+	"${FILESDIR}/${PN}-1.14.4-format-truncation.patch"
+)
+
+pkg_setup() {
+	linux-mod-r1_pkg_setup
+	use python && python-single-r1_pkg_setup
+}
+
+src_compile() {
+	filter-lto
+
+	local modlist=(
+		"evdi=video:module"
+	)
+	local modargs=(
+		CONFIG_DRM_EVDI="m" # https://github.com/DisplayLink/evdi/issues/476
+		KVER="${KV_FULL}"
+		KDIR="${KV_OUT_DIR}"
+	)
+	linux-mod-r1_src_compile
+
+	emake -C library
+
+	use python && emake -C pyevdi
+}
+
+src_test() {
+	local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+
+	use python && emake -C pyevdi tests
+}
+
+src_install() {
+	linux-mod-r1_src_install
+
+	local -x DESTDIR="${ED}" PREFIX="${EPREFIX}"
+
+	LIBDIR="/usr/$(get_libdir)" emake -C library install
+
+	use python && emake -C pyevdi install
+}


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: x11-drivers/evdi/
@ 2025-07-01 13:57 David Roman
  0 siblings, 0 replies; 11+ messages in thread
From: David Roman @ 2025-07-01 13:57 UTC (permalink / raw
  To: gentoo-commits

commit:     0eb3655b884d6fc786e6fa99e35ca364e5f73073
Author:     Paul Zander <negril.nx+gentoo <AT> gmail <DOT> com>
AuthorDate: Mon Jun 30 08:14:25 2025 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Mon Jun 30 08:14:25 2025 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0eb3655b

x11-drivers/evdi: drop 1.14.10

Signed-off-by: Paul Zander <negril.nx+gentoo <AT> gmail.com>

 x11-drivers/evdi/Manifest            |  1 -
 x11-drivers/evdi/evdi-1.14.10.ebuild | 83 ------------------------------------
 2 files changed, 84 deletions(-)

diff --git a/x11-drivers/evdi/Manifest b/x11-drivers/evdi/Manifest
index 79ece035bf..df47438168 100644
--- a/x11-drivers/evdi/Manifest
+++ b/x11-drivers/evdi/Manifest
@@ -1,2 +1 @@
-DIST evdi-1.14.10.tar.gz 97166 BLAKE2B 67e489a3287d773262997cb16337293979fbbfe01b7e32de0dbdf1ab95bcfc25e08707d5fdb44a735a561579b2888d7578761051e78ec34dc76429eb261519ff SHA512 3937af9a2cc377f505c45de4ad0c28c778ef91ee7157341dfe411c8c1dde6c665cede26963678b7492688338059dd57f7fe296666e439240eb0f4d478bafbc28
 DIST evdi-1.14.9.tar.gz 97080 BLAKE2B 85dd5543bcc9ff94e69a6e9c2c5bc36748bd62ec5f55dee71831c37369c231d71548610547d74e8d307cf2b32b4117f40c0948edccc3e32f4a35a5203e027e18 SHA512 55d1d424ae637436b5f5937df6dbbb14bc02b4d7b2e8ce24002494d4a935466637987a188b74a7bc6b9f4eeb417dd60a471eceee85d0fd440901a5153a323fe2

diff --git a/x11-drivers/evdi/evdi-1.14.10.ebuild b/x11-drivers/evdi/evdi-1.14.10.ebuild
deleted file mode 100644
index f4105664f4..0000000000
--- a/x11-drivers/evdi/evdi-1.14.10.ebuild
+++ /dev/null
@@ -1,83 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{11..13} )
-inherit linux-mod-r1 python-single-r1 flag-o-matic
-
-DESCRIPTION="Extensible Virtual Display Interface"
-HOMEPAGE="https://github.com/DisplayLink/evdi"
-SRC_URI="https://github.com/DisplayLink/evdi/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2 LGPL-2.1"
-SLOT="0/$(ver_cut 1)"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
-
-IUSE="python test"
-
-RDEPEND="${PYTHON_DEPS}
-	python? (
-		$(python_gen_cond_dep '
-			dev-python/pybind11[${PYTHON_USEDEP}]
-			test? (
-				dev-python/pytest-mock[${PYTHON_USEDEP}]
-			)
-		')
-	)
-"
-
-DEPEND="${RDEPEND}
-	x11-libs/libdrm
-	sys-kernel/linux-headers
-"
-
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-
-RESTRICT="!test? ( test )"
-
-# module/Kconfig
-CONFIG_CHECK="~FB_VIRTUAL ~I2C ~DRM ~USB_SUPPORT ~USB_ARCH_HAS_HCD MODULES"
-
-PATCHES=(
-	"${FILESDIR}/${PN}-1.14.4-format-truncation.patch"
-)
-
-pkg_setup() {
-	linux-mod-r1_pkg_setup
-	use python && python-single-r1_pkg_setup
-}
-
-src_compile() {
-	filter-lto
-
-	local modlist=(
-		"evdi=video:module"
-	)
-	local modargs=(
-		CONFIG_DRM_EVDI="m" # https://github.com/DisplayLink/evdi/issues/476
-		KVER="${KV_FULL}"
-		KDIR="${KV_OUT_DIR}"
-	)
-	linux-mod-r1_src_compile
-
-	emake -C library
-
-	use python && emake -C pyevdi
-}
-
-src_test() {
-	local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
-
-	use python && emake -C pyevdi tests
-}
-
-src_install() {
-	linux-mod-r1_src_install
-
-	local -x DESTDIR="${ED}" PREFIX="${EPREFIX}"
-
-	LIBDIR="/usr/$(get_libdir)" emake -C library install
-
-	use python && emake -C pyevdi install
-}


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: x11-drivers/evdi/
@ 2025-09-07 11:02 David Roman
  0 siblings, 0 replies; 11+ messages in thread
From: David Roman @ 2025-09-07 11:02 UTC (permalink / raw
  To: gentoo-commits

commit:     6d0c9cb9b6db07dde861b7a37e2811b7c07e5ab4
Author:     Paul Zander <negril.nx+gentoo <AT> gmail <DOT> com>
AuthorDate: Sun Sep  7 07:35:59 2025 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Sun Sep  7 07:35:59 2025 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6d0c9cb9

x11-drivers/evdi: add 1.14.11

Signed-off-by: Paul Zander <negril.nx+gentoo <AT> gmail.com>

 x11-drivers/evdi/Manifest            |  1 +
 x11-drivers/evdi/evdi-1.14.11.ebuild | 83 ++++++++++++++++++++++++++++++++++++
 2 files changed, 84 insertions(+)

diff --git a/x11-drivers/evdi/Manifest b/x11-drivers/evdi/Manifest
index 5ee303c9b2..97dd02e737 100644
--- a/x11-drivers/evdi/Manifest
+++ b/x11-drivers/evdi/Manifest
@@ -1 +1,2 @@
 DIST evdi-1.14.10.tar.gz 97166 BLAKE2B 67e489a3287d773262997cb16337293979fbbfe01b7e32de0dbdf1ab95bcfc25e08707d5fdb44a735a561579b2888d7578761051e78ec34dc76429eb261519ff SHA512 3937af9a2cc377f505c45de4ad0c28c778ef91ee7157341dfe411c8c1dde6c665cede26963678b7492688338059dd57f7fe296666e439240eb0f4d478bafbc28
+DIST evdi-1.14.11.tar.gz 97424 BLAKE2B ffdb7071cc69b9788b1980273428122954dcff276bd13f693598d54a15ea796390e3b57827f8003be0a5c1157aab0fdf75a71f28b0cb7bc46fd199715b8997b7 SHA512 30d21a1b5ba2ecad827a98d7e826da8e3320919baf51b92410048d9d0fdc8f236c24fa20fafd18d946bb72c0b809c98ba1fd7fa3da5058c1b35959ecb04b5ea6

diff --git a/x11-drivers/evdi/evdi-1.14.11.ebuild b/x11-drivers/evdi/evdi-1.14.11.ebuild
new file mode 100644
index 0000000000..f4105664f4
--- /dev/null
+++ b/x11-drivers/evdi/evdi-1.14.11.ebuild
@@ -0,0 +1,83 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{11..13} )
+inherit linux-mod-r1 python-single-r1 flag-o-matic
+
+DESCRIPTION="Extensible Virtual Display Interface"
+HOMEPAGE="https://github.com/DisplayLink/evdi"
+SRC_URI="https://github.com/DisplayLink/evdi/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2 LGPL-2.1"
+SLOT="0/$(ver_cut 1)"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+
+IUSE="python test"
+
+RDEPEND="${PYTHON_DEPS}
+	python? (
+		$(python_gen_cond_dep '
+			dev-python/pybind11[${PYTHON_USEDEP}]
+			test? (
+				dev-python/pytest-mock[${PYTHON_USEDEP}]
+			)
+		')
+	)
+"
+
+DEPEND="${RDEPEND}
+	x11-libs/libdrm
+	sys-kernel/linux-headers
+"
+
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
+RESTRICT="!test? ( test )"
+
+# module/Kconfig
+CONFIG_CHECK="~FB_VIRTUAL ~I2C ~DRM ~USB_SUPPORT ~USB_ARCH_HAS_HCD MODULES"
+
+PATCHES=(
+	"${FILESDIR}/${PN}-1.14.4-format-truncation.patch"
+)
+
+pkg_setup() {
+	linux-mod-r1_pkg_setup
+	use python && python-single-r1_pkg_setup
+}
+
+src_compile() {
+	filter-lto
+
+	local modlist=(
+		"evdi=video:module"
+	)
+	local modargs=(
+		CONFIG_DRM_EVDI="m" # https://github.com/DisplayLink/evdi/issues/476
+		KVER="${KV_FULL}"
+		KDIR="${KV_OUT_DIR}"
+	)
+	linux-mod-r1_src_compile
+
+	emake -C library
+
+	use python && emake -C pyevdi
+}
+
+src_test() {
+	local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+
+	use python && emake -C pyevdi tests
+}
+
+src_install() {
+	linux-mod-r1_src_install
+
+	local -x DESTDIR="${ED}" PREFIX="${EPREFIX}"
+
+	LIBDIR="/usr/$(get_libdir)" emake -C library install
+
+	use python && emake -C pyevdi install
+}


^ permalink raw reply related	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2025-09-07 11:02 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-04-16 12:45 [gentoo-commits] repo/proj/guru:master commit in: x11-drivers/evdi/ David Roman
  -- strict thread matches above, loose matches on Subject: below --
2025-09-07 11:02 David Roman
2025-07-01 13:57 David Roman
2025-06-17  8:45 David Roman
2025-04-16 12:45 David Roman
2025-01-13 14:19 Julien Roy
2024-11-21 17:45 Julien Roy
2024-11-21 17:45 Julien Roy
2024-10-09 15:39 David Roman
2024-10-09 15:39 David Roman
2024-09-07  9:22 David Roman

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox