public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:master commit in: sys-apps/asus-touchpad-numpad-driver/
@ 2022-07-23 17:36 Haelwenn Monnier
  0 siblings, 0 replies; 4+ messages in thread
From: Haelwenn Monnier @ 2022-07-23 17:36 UTC (permalink / raw
  To: gentoo-commits

commit:     901ed100ee980714008b35883655e71a04c58eb6
Author:     Aisha Tammy <gentoo <AT> aisha <DOT> cc>
AuthorDate: Sat Jul 23 07:49:45 2022 +0000
Commit:     Haelwenn Monnier <contact <AT> hacktivis <DOT> me>
CommitDate: Sat Jul 23 07:49:51 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=901ed100

sys-apps/asus-touchpad-numpad-driver: initial import

asus touchpad/numpad drivers supporting multiple layouts

Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>

 sys-apps/asus-touchpad-numpad-driver/Manifest      |  1 +
 ...sus-touchpad-numpad-driver-0_pre20220311.ebuild | 51 ++++++++++++++++++++++
 .../asus-touchpad-numpad-driver-9999.ebuild        | 51 ++++++++++++++++++++++
 sys-apps/asus-touchpad-numpad-driver/metadata.xml  |  8 ++++
 4 files changed, 111 insertions(+)

diff --git a/sys-apps/asus-touchpad-numpad-driver/Manifest b/sys-apps/asus-touchpad-numpad-driver/Manifest
new file mode 100644
index 000000000..e9cc0b5b3
--- /dev/null
+++ b/sys-apps/asus-touchpad-numpad-driver/Manifest
@@ -0,0 +1 @@
+DIST asus-touchpad-numpad-driver-0_pre20220311.tar.gz 612461 BLAKE2B 962f7d044401067e779a070797a281cfabf8f0c4496e9791bef968014506bd8d6ae90151a9086273494f98b410a8e800b78214453da4444a20a94ec583c0d731 SHA512 69fe5165b70ad64857d13ba689fd412ba8a50d2c7f97a18c778b04ff03b53c1620bc774c45b00eaa7e9c51e94ad16e693ba8176872dd9fcfe1ded5b2cb78ed56

diff --git a/sys-apps/asus-touchpad-numpad-driver/asus-touchpad-numpad-driver-0_pre20220311.ebuild b/sys-apps/asus-touchpad-numpad-driver/asus-touchpad-numpad-driver-0_pre20220311.ebuild
new file mode 100644
index 000000000..a8cffad00
--- /dev/null
+++ b/sys-apps/asus-touchpad-numpad-driver/asus-touchpad-numpad-driver-0_pre20220311.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{9..11} )
+inherit linux-info python-single-r1
+
+DESCRIPTION="Feature-rich configurable Asus NumPad drivers"
+HOMEPAGE="https://github.com/mohamed-badaoui/asus-touchpad-numpad-driver"
+
+if [[ ${PV} == "9999" ]] ; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/mohamed-badaoui/asus-touchpad-numpad-driver"
+else
+	COMMIT="a2bada610ebb3fc002fceb53ddf93bc799241867"
+	SRC_URI="https://github.com/mohamed-badaoui/asus-touchpad-numpad-driver/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
+	S="${PN}-${COMMIT}"
+	KEYWORDS="~amd64"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+DEPEND="
+	dev-libs/libevdev
+	sys-apps/i2c-tools
+	$(python_gen_cond_dep '
+		dev-python/python-evdev[${PYTHON_USEDEP}]
+		dev-python/numpy[${PYTHON_USEDEP}]
+		dev-python/python-libevdev[${PYTHON_USEDEP}]
+	')
+"
+RDEPEND="
+	${DEPEND}
+	${PYTHON_DEPS}
+"
+
+src_install() {
+	exeinto /usr/libexec/${PN}
+	doexe asus_touchpad.py
+	insinto /usr/libexec/${PN}
+	doins -r numpad_layouts
+
+	python_fix_shebang ${ED}/usr/libexec/${PN}/asus_touchpad.py
+
+	python_optimize ${ED}/usr/libexec/${PN}
+
+	dosym ../libexec/${PN}/asus_touchpad.py /usr/bin/asus_touchpad
+}

diff --git a/sys-apps/asus-touchpad-numpad-driver/asus-touchpad-numpad-driver-9999.ebuild b/sys-apps/asus-touchpad-numpad-driver/asus-touchpad-numpad-driver-9999.ebuild
new file mode 100644
index 000000000..a8cffad00
--- /dev/null
+++ b/sys-apps/asus-touchpad-numpad-driver/asus-touchpad-numpad-driver-9999.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{9..11} )
+inherit linux-info python-single-r1
+
+DESCRIPTION="Feature-rich configurable Asus NumPad drivers"
+HOMEPAGE="https://github.com/mohamed-badaoui/asus-touchpad-numpad-driver"
+
+if [[ ${PV} == "9999" ]] ; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/mohamed-badaoui/asus-touchpad-numpad-driver"
+else
+	COMMIT="a2bada610ebb3fc002fceb53ddf93bc799241867"
+	SRC_URI="https://github.com/mohamed-badaoui/asus-touchpad-numpad-driver/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
+	S="${PN}-${COMMIT}"
+	KEYWORDS="~amd64"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+DEPEND="
+	dev-libs/libevdev
+	sys-apps/i2c-tools
+	$(python_gen_cond_dep '
+		dev-python/python-evdev[${PYTHON_USEDEP}]
+		dev-python/numpy[${PYTHON_USEDEP}]
+		dev-python/python-libevdev[${PYTHON_USEDEP}]
+	')
+"
+RDEPEND="
+	${DEPEND}
+	${PYTHON_DEPS}
+"
+
+src_install() {
+	exeinto /usr/libexec/${PN}
+	doexe asus_touchpad.py
+	insinto /usr/libexec/${PN}
+	doins -r numpad_layouts
+
+	python_fix_shebang ${ED}/usr/libexec/${PN}/asus_touchpad.py
+
+	python_optimize ${ED}/usr/libexec/${PN}
+
+	dosym ../libexec/${PN}/asus_touchpad.py /usr/bin/asus_touchpad
+}

diff --git a/sys-apps/asus-touchpad-numpad-driver/metadata.xml b/sys-apps/asus-touchpad-numpad-driver/metadata.xml
new file mode 100644
index 000000000..65ac1f205
--- /dev/null
+++ b/sys-apps/asus-touchpad-numpad-driver/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>gentoo@aisha.cc</email>
+		<name>Aisha Tammy</name>
+	</maintainer>
+</pkgmetadata>


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

* [gentoo-commits] repo/proj/guru:master commit in: sys-apps/asus-touchpad-numpad-driver/
@ 2022-09-08 10:29 Andrew Ammerlaan
  0 siblings, 0 replies; 4+ messages in thread
From: Andrew Ammerlaan @ 2022-09-08 10:29 UTC (permalink / raw
  To: gentoo-commits

commit:     cb31d69b625b0984823d3bd21a0c4467e29341f7
Author:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
AuthorDate: Thu Sep  8 10:26:06 2022 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Thu Sep  8 10:26:06 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=cb31d69b

sys-apps/asus-touchpad-numpad-driver: quote ED variables

Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>

 .../asus-touchpad-numpad-driver-0_pre20220311.ebuild                  | 4 ++--
 .../asus-touchpad-numpad-driver-9999.ebuild                           | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/sys-apps/asus-touchpad-numpad-driver/asus-touchpad-numpad-driver-0_pre20220311.ebuild b/sys-apps/asus-touchpad-numpad-driver/asus-touchpad-numpad-driver-0_pre20220311.ebuild
index 8e4c96385..0a3aac9d2 100644
--- a/sys-apps/asus-touchpad-numpad-driver/asus-touchpad-numpad-driver-0_pre20220311.ebuild
+++ b/sys-apps/asus-touchpad-numpad-driver/asus-touchpad-numpad-driver-0_pre20220311.ebuild
@@ -43,9 +43,9 @@ src_install() {
 	insinto /usr/libexec/${PN}
 	doins -r numpad_layouts
 
-	python_fix_shebang ${ED}/usr/libexec/${PN}/asus_touchpad.py
+	python_fix_shebang "${ED}/usr/libexec/${PN}/asus_touchpad.py"
 
-	python_optimize ${ED}/usr/libexec/${PN}
+	python_optimize "${ED}/usr/libexec/${PN}"
 
 	dosym ../libexec/${PN}/asus_touchpad.py /usr/bin/asus_touchpad
 }

diff --git a/sys-apps/asus-touchpad-numpad-driver/asus-touchpad-numpad-driver-9999.ebuild b/sys-apps/asus-touchpad-numpad-driver/asus-touchpad-numpad-driver-9999.ebuild
index 8e4c96385..0a3aac9d2 100644
--- a/sys-apps/asus-touchpad-numpad-driver/asus-touchpad-numpad-driver-9999.ebuild
+++ b/sys-apps/asus-touchpad-numpad-driver/asus-touchpad-numpad-driver-9999.ebuild
@@ -43,9 +43,9 @@ src_install() {
 	insinto /usr/libexec/${PN}
 	doins -r numpad_layouts
 
-	python_fix_shebang ${ED}/usr/libexec/${PN}/asus_touchpad.py
+	python_fix_shebang "${ED}/usr/libexec/${PN}/asus_touchpad.py"
 
-	python_optimize ${ED}/usr/libexec/${PN}
+	python_optimize "${ED}/usr/libexec/${PN}"
 
 	dosym ../libexec/${PN}/asus_touchpad.py /usr/bin/asus_touchpad
 }


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

* [gentoo-commits] repo/proj/guru:master commit in: sys-apps/asus-touchpad-numpad-driver/
  2023-10-22  7:44 [gentoo-commits] repo/proj/guru:dev " Viorel Munteanu
@ 2023-10-22  7:58 ` Viorel Munteanu
  0 siblings, 0 replies; 4+ messages in thread
From: Viorel Munteanu @ 2023-10-22  7:58 UTC (permalink / raw
  To: gentoo-commits

commit:     f8303a260c1701cb2b1c5f36930f3b9c83cedebf
Author:     Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 22 07:43:13 2023 +0000
Commit:     Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
CommitDate: Sun Oct 22 07:43:13 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f8303a26

sys-apps/asus-touchpad-numpad-driver: fix dependency

Python dependency has been renamed in ::gentoo.

Signed-off-by: Viorel Munteanu <ceamac <AT> gentoo.org>

 .../asus-touchpad-numpad-driver-0_pre20220311.ebuild                | 6 +++---
 .../asus-touchpad-numpad-driver-9999.ebuild                         | 6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/sys-apps/asus-touchpad-numpad-driver/asus-touchpad-numpad-driver-0_pre20220311.ebuild b/sys-apps/asus-touchpad-numpad-driver/asus-touchpad-numpad-driver-0_pre20220311.ebuild
index 91e00805ff..33dce82ef8 100644
--- a/sys-apps/asus-touchpad-numpad-driver/asus-touchpad-numpad-driver-0_pre20220311.ebuild
+++ b/sys-apps/asus-touchpad-numpad-driver/asus-touchpad-numpad-driver-0_pre20220311.ebuild
@@ -27,9 +27,9 @@ DEPEND="
 	dev-libs/libevdev
 	sys-apps/i2c-tools
 	$(python_gen_cond_dep '
-		dev-python/python-evdev[${PYTHON_USEDEP}]
+		dev-python/libevdev[${PYTHON_USEDEP}]
 		dev-python/numpy[${PYTHON_USEDEP}]
-		dev-python/python-libevdev[${PYTHON_USEDEP}]
+		dev-python/python-evdev[${PYTHON_USEDEP}]
 	')
 "
 RDEPEND="
@@ -47,5 +47,5 @@ src_install() {
 
 	python_optimize "${ED}/usr/libexec/${PN}"
 
-	dosym ../libexec/${PN}/asus_touchpad.py /usr/bin/asus_touchpad
+	dosym -r /usr/libexec/${PN}/asus_touchpad.py /usr/bin/asus_touchpad
 }

diff --git a/sys-apps/asus-touchpad-numpad-driver/asus-touchpad-numpad-driver-9999.ebuild b/sys-apps/asus-touchpad-numpad-driver/asus-touchpad-numpad-driver-9999.ebuild
index 91e00805ff..33dce82ef8 100644
--- a/sys-apps/asus-touchpad-numpad-driver/asus-touchpad-numpad-driver-9999.ebuild
+++ b/sys-apps/asus-touchpad-numpad-driver/asus-touchpad-numpad-driver-9999.ebuild
@@ -27,9 +27,9 @@ DEPEND="
 	dev-libs/libevdev
 	sys-apps/i2c-tools
 	$(python_gen_cond_dep '
-		dev-python/python-evdev[${PYTHON_USEDEP}]
+		dev-python/libevdev[${PYTHON_USEDEP}]
 		dev-python/numpy[${PYTHON_USEDEP}]
-		dev-python/python-libevdev[${PYTHON_USEDEP}]
+		dev-python/python-evdev[${PYTHON_USEDEP}]
 	')
 "
 RDEPEND="
@@ -47,5 +47,5 @@ src_install() {
 
 	python_optimize "${ED}/usr/libexec/${PN}"
 
-	dosym ../libexec/${PN}/asus_touchpad.py /usr/bin/asus_touchpad
+	dosym -r /usr/libexec/${PN}/asus_touchpad.py /usr/bin/asus_touchpad
 }


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

* [gentoo-commits] repo/proj/guru:master commit in: sys-apps/asus-touchpad-numpad-driver/
@ 2024-07-05 10:51 David Roman
  0 siblings, 0 replies; 4+ messages in thread
From: David Roman @ 2024-07-05 10:51 UTC (permalink / raw
  To: gentoo-commits

commit:     f781e9aca658dbbc3edc398ecae2e832b4214364
Author:     Aisha Tammy <gentoo <AT> aisha <DOT> cc>
AuthorDate: Thu Jul  4 15:43:15 2024 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Thu Jul  4 15:43:21 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f781e9ac

sys-apps/asus-touchpad-numpad-driver: enable py3.12

Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>

 .../asus-touchpad-numpad-driver-0_pre20220311.ebuild                    | 2 +-
 .../asus-touchpad-numpad-driver/asus-touchpad-numpad-driver-9999.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-apps/asus-touchpad-numpad-driver/asus-touchpad-numpad-driver-0_pre20220311.ebuild b/sys-apps/asus-touchpad-numpad-driver/asus-touchpad-numpad-driver-0_pre20220311.ebuild
index 5df6a27d1..97a963610 100644
--- a/sys-apps/asus-touchpad-numpad-driver/asus-touchpad-numpad-driver-0_pre20220311.ebuild
+++ b/sys-apps/asus-touchpad-numpad-driver/asus-touchpad-numpad-driver-0_pre20220311.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{10..11} )
+PYTHON_COMPAT=( python3_{10..12} )
 inherit linux-info python-single-r1
 
 DESCRIPTION="Feature-rich configurable Asus NumPad drivers"

diff --git a/sys-apps/asus-touchpad-numpad-driver/asus-touchpad-numpad-driver-9999.ebuild b/sys-apps/asus-touchpad-numpad-driver/asus-touchpad-numpad-driver-9999.ebuild
index 5df6a27d1..97a963610 100644
--- a/sys-apps/asus-touchpad-numpad-driver/asus-touchpad-numpad-driver-9999.ebuild
+++ b/sys-apps/asus-touchpad-numpad-driver/asus-touchpad-numpad-driver-9999.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{10..11} )
+PYTHON_COMPAT=( python3_{10..12} )
 inherit linux-info python-single-r1
 
 DESCRIPTION="Feature-rich configurable Asus NumPad drivers"


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

end of thread, other threads:[~2024-07-05 10:51 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-05 10:51 [gentoo-commits] repo/proj/guru:master commit in: sys-apps/asus-touchpad-numpad-driver/ David Roman
  -- strict thread matches above, loose matches on Subject: below --
2023-10-22  7:44 [gentoo-commits] repo/proj/guru:dev " Viorel Munteanu
2023-10-22  7:58 ` [gentoo-commits] repo/proj/guru:master " Viorel Munteanu
2022-09-08 10:29 Andrew Ammerlaan
2022-07-23 17:36 Haelwenn Monnier

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