Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] tuxedo-keyboard: rename to tuxedo-drivers and update to 4.4.3
@ 2024-05-11 14:22 orchy-contrib
  2024-05-19  7:36 ` [PR REVIEW] " Luciogi
                   ` (8 more replies)
  0 siblings, 9 replies; 10+ messages in thread
From: orchy-contrib @ 2024-05-11 14:22 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 535 bytes --]

There is a new pull request by orchy-contrib against master on the void-packages repository

https://github.com/orchy-contrib/void-packages-tuxedo tuxedo-update
https://github.com/void-linux/void-packages/pull/50277

tuxedo-keyboard: rename to tuxedo-drivers and update to 4.4.3
#### Testing the changes
- I tested the changes in this PR: **YES**

#### Local build testing
- I built this PR locally for my native architecture (x86_64-musl)

A patch file from https://github.com/void-linux/void-packages/pull/50277.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-tuxedo-update-50277.patch --]
[-- Type: text/x-diff, Size: 3033 bytes --]

From b7e679972fa40c424c2dc3c104dbd83bac2151d1 Mon Sep 17 00:00:00 2001
From: orchy <orchy12@proton.me>
Date: Sat, 11 May 2024 16:02:18 +0000
Subject: [PATCH] tuxedo-keyboard: rename to tuxedo-drivers and update to 4.4.3

Description changed to fit "transitional dummy package" in 72
characters.
---
 srcpkgs/tuxedo-drivers/template  | 26 ++++++++++++++++++++++++++
 srcpkgs/tuxedo-keyboard          |  1 +
 srcpkgs/tuxedo-keyboard/template | 21 ---------------------
 3 files changed, 27 insertions(+), 21 deletions(-)
 create mode 100644 srcpkgs/tuxedo-drivers/template
 create mode 120000 srcpkgs/tuxedo-keyboard
 delete mode 100644 srcpkgs/tuxedo-keyboard/template

diff --git a/srcpkgs/tuxedo-drivers/template b/srcpkgs/tuxedo-drivers/template
new file mode 100644
index 00000000000000..e93a686be8548e
--- /dev/null
+++ b/srcpkgs/tuxedo-drivers/template
@@ -0,0 +1,26 @@
+# Template file for 'tuxedo-drivers'
+pkgname=tuxedo-drivers
+version=4.4.3
+revision=1
+depends="dkms"
+short_desc="TUXEDO hardware drivers"
+maintainer="newbluemoon <blaumolch@mailbox.org>"
+license="GPL-3.0-or-later"
+homepage="https://gitlab.com/tuxedocomputers/development/packages/tuxedo-drivers"
+distfiles="https://gitlab.com/tuxedocomputers/development/packages/tuxedo-drivers/-/archive/v${version}/tuxedo-drivers-v{version}.tar.gz"
+checksum=c9b3af2c93f56d01ef7b1a5e8264211b347e16e258a04e1f08c60ca4311e6c1e
+
+dkms_modules="tuxedo-drivers ${version}"
+
+do_install() {
+	sed "s/#MODULE_VERSION#/${version}/" debian/tuxedo-drivers.dkms > src/dkms.conf
+	vmkdir usr/src/${pkgname}-${version}
+	vcopy src/* usr/src/${pkgname}-${version}
+	vinstall tuxedo_keyboard.conf 644 usr/lib/modprobe.d/
+}
+
+tuxedo-keyboard_package() {
+	depends="tuxedo-drivers"
+	short_desc+=" - transitional dummy package"
+	build_style=meta
+}
diff --git a/srcpkgs/tuxedo-keyboard b/srcpkgs/tuxedo-keyboard
new file mode 120000
index 00000000000000..632257a712b0c1
--- /dev/null
+++ b/srcpkgs/tuxedo-keyboard
@@ -0,0 +1 @@
+tuxedo-drivers
\ No newline at end of file
diff --git a/srcpkgs/tuxedo-keyboard/template b/srcpkgs/tuxedo-keyboard/template
deleted file mode 100644
index 7c2437fa3165e4..00000000000000
--- a/srcpkgs/tuxedo-keyboard/template
+++ /dev/null
@@ -1,21 +0,0 @@
-# Template file for 'tuxedo-keyboard'
-pkgname=tuxedo-keyboard
-version=3.2.14
-revision=1
-depends="dkms"
-short_desc="TUXEDO kernel module drivers for keyboard & general hardware I/O"
-maintainer="newbluemoon <blaumolch@mailbox.org>"
-license="GPL-3.0-or-later"
-homepage="https://github.com/tuxedocomputers/tuxedo-keyboard"
-distfiles="https://github.com/tuxedocomputers/tuxedo-keyboard/archive/v${version}.tar.gz"
-checksum=e743f5878dc52ba671d4cd47707b00e7fa2c884ca540c99919f8a03345e2f354
-
-dkms_modules="tuxedo-keyboard ${version}"
-
-do_install() {
-	vmkdir usr/src/${pkgname}-${version}
-	vcopy src usr/src/${pkgname}-${version}
-	vcopy dkms.conf usr/src/${pkgname}-${version}
-	vcopy Makefile usr/src/${pkgname}-${version}
-	vinstall tuxedo_keyboard.conf 644 usr/lib/modprobe.d/
-}

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

* Re: [PR REVIEW] tuxedo-keyboard: rename to tuxedo-drivers and update to 4.4.3
  2024-05-11 14:22 [PR PATCH] tuxedo-keyboard: rename to tuxedo-drivers and update to 4.4.3 orchy-contrib
@ 2024-05-19  7:36 ` Luciogi
  2024-05-19 13:33 ` [PR PATCH] [Updated] " orchy-contrib
                   ` (7 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Luciogi @ 2024-05-19  7:36 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 217 bytes --]

New review comment by Luciogi on void-packages repository

https://github.com/void-linux/void-packages/pull/50277#discussion_r1605968289

Comment:
```suggestion
	depends="tuxedo-drivers>=${version}_${revision}"
```

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

* Re: [PR PATCH] [Updated] tuxedo-keyboard: rename to tuxedo-drivers and update to 4.4.3
  2024-05-11 14:22 [PR PATCH] tuxedo-keyboard: rename to tuxedo-drivers and update to 4.4.3 orchy-contrib
  2024-05-19  7:36 ` [PR REVIEW] " Luciogi
@ 2024-05-19 13:33 ` orchy-contrib
  2024-05-19 13:34 ` [PR REVIEW] " orchy-contrib
                   ` (6 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: orchy-contrib @ 2024-05-19 13:33 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 540 bytes --]

There is an updated pull request by orchy-contrib against master on the void-packages repository

https://github.com/orchy-contrib/void-packages-tuxedo tuxedo-update
https://github.com/void-linux/void-packages/pull/50277

tuxedo-keyboard: rename to tuxedo-drivers and update to 4.4.3
#### Testing the changes
- I tested the changes in this PR: **YES**

#### Local build testing
- I built this PR locally for my native architecture (x86_64-musl)

A patch file from https://github.com/void-linux/void-packages/pull/50277.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-tuxedo-update-50277.patch --]
[-- Type: text/x-diff, Size: 3057 bytes --]

From be7ffbe02040d6897a13577311bb7732122a0a4c Mon Sep 17 00:00:00 2001
From: orchy <orchy12@proton.me>
Date: Sat, 11 May 2024 16:02:18 +0000
Subject: [PATCH] tuxedo-keyboard: rename to tuxedo-drivers and update to 4.4.3

Description changed to fit "transitional dummy package" in 72
characters.
---
 srcpkgs/tuxedo-drivers/template  | 26 ++++++++++++++++++++++++++
 srcpkgs/tuxedo-keyboard          |  1 +
 srcpkgs/tuxedo-keyboard/template | 21 ---------------------
 3 files changed, 27 insertions(+), 21 deletions(-)
 create mode 100644 srcpkgs/tuxedo-drivers/template
 create mode 120000 srcpkgs/tuxedo-keyboard
 delete mode 100644 srcpkgs/tuxedo-keyboard/template

diff --git a/srcpkgs/tuxedo-drivers/template b/srcpkgs/tuxedo-drivers/template
new file mode 100644
index 00000000000000..845a12a3dc96e8
--- /dev/null
+++ b/srcpkgs/tuxedo-drivers/template
@@ -0,0 +1,26 @@
+# Template file for 'tuxedo-drivers'
+pkgname=tuxedo-drivers
+version=4.4.3
+revision=1
+depends="dkms"
+short_desc="TUXEDO hardware drivers"
+maintainer="newbluemoon <blaumolch@mailbox.org>"
+license="GPL-3.0-or-later"
+homepage="https://gitlab.com/tuxedocomputers/development/packages/tuxedo-drivers"
+distfiles="https://gitlab.com/tuxedocomputers/development/packages/tuxedo-drivers/-/archive/v${version}/tuxedo-drivers-v{version}.tar.gz"
+checksum=c9b3af2c93f56d01ef7b1a5e8264211b347e16e258a04e1f08c60ca4311e6c1e
+
+dkms_modules="tuxedo-drivers ${version}"
+
+do_install() {
+	sed "s/#MODULE_VERSION#/${version}/" debian/tuxedo-drivers.dkms > src/dkms.conf
+	vmkdir usr/src/${pkgname}-${version}
+	vcopy src/* usr/src/${pkgname}-${version}
+	vinstall tuxedo_keyboard.conf 644 usr/lib/modprobe.d/
+}
+
+tuxedo-keyboard_package() {
+	depends="tuxedo-drivers>=${version}_${revision}"
+	short_desc+=" - transitional dummy package"
+	build_style=meta
+}
diff --git a/srcpkgs/tuxedo-keyboard b/srcpkgs/tuxedo-keyboard
new file mode 120000
index 00000000000000..632257a712b0c1
--- /dev/null
+++ b/srcpkgs/tuxedo-keyboard
@@ -0,0 +1 @@
+tuxedo-drivers
\ No newline at end of file
diff --git a/srcpkgs/tuxedo-keyboard/template b/srcpkgs/tuxedo-keyboard/template
deleted file mode 100644
index 7c2437fa3165e4..00000000000000
--- a/srcpkgs/tuxedo-keyboard/template
+++ /dev/null
@@ -1,21 +0,0 @@
-# Template file for 'tuxedo-keyboard'
-pkgname=tuxedo-keyboard
-version=3.2.14
-revision=1
-depends="dkms"
-short_desc="TUXEDO kernel module drivers for keyboard & general hardware I/O"
-maintainer="newbluemoon <blaumolch@mailbox.org>"
-license="GPL-3.0-or-later"
-homepage="https://github.com/tuxedocomputers/tuxedo-keyboard"
-distfiles="https://github.com/tuxedocomputers/tuxedo-keyboard/archive/v${version}.tar.gz"
-checksum=e743f5878dc52ba671d4cd47707b00e7fa2c884ca540c99919f8a03345e2f354
-
-dkms_modules="tuxedo-keyboard ${version}"
-
-do_install() {
-	vmkdir usr/src/${pkgname}-${version}
-	vcopy src usr/src/${pkgname}-${version}
-	vcopy dkms.conf usr/src/${pkgname}-${version}
-	vcopy Makefile usr/src/${pkgname}-${version}
-	vinstall tuxedo_keyboard.conf 644 usr/lib/modprobe.d/
-}

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

* Re: [PR REVIEW] tuxedo-keyboard: rename to tuxedo-drivers and update to 4.4.3
  2024-05-11 14:22 [PR PATCH] tuxedo-keyboard: rename to tuxedo-drivers and update to 4.4.3 orchy-contrib
  2024-05-19  7:36 ` [PR REVIEW] " Luciogi
  2024-05-19 13:33 ` [PR PATCH] [Updated] " orchy-contrib
@ 2024-05-19 13:34 ` orchy-contrib
  2024-05-25 15:35 ` [PR PATCH] [Updated] " orchy-contrib
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: orchy-contrib @ 2024-05-19 13:34 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 159 bytes --]

New review comment by orchy-contrib on void-packages repository

https://github.com/void-linux/void-packages/pull/50277#discussion_r1606033842

Comment:
fixed

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

* Re: [PR PATCH] [Updated] tuxedo-keyboard: rename to tuxedo-drivers and update to 4.4.3
  2024-05-11 14:22 [PR PATCH] tuxedo-keyboard: rename to tuxedo-drivers and update to 4.4.3 orchy-contrib
                   ` (2 preceding siblings ...)
  2024-05-19 13:34 ` [PR REVIEW] " orchy-contrib
@ 2024-05-25 15:35 ` orchy-contrib
  2024-05-25 15:36 ` tuxedo-keyboard: rename to tuxedo-drivers and update to 4.5.0 orchy-contrib
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: orchy-contrib @ 2024-05-25 15:35 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 540 bytes --]

There is an updated pull request by orchy-contrib against master on the void-packages repository

https://github.com/orchy-contrib/void-packages-tuxedo tuxedo-update
https://github.com/void-linux/void-packages/pull/50277

tuxedo-keyboard: rename to tuxedo-drivers and update to 4.4.3
#### Testing the changes
- I tested the changes in this PR: **YES**

#### Local build testing
- I built this PR locally for my native architecture (x86_64-musl)

A patch file from https://github.com/void-linux/void-packages/pull/50277.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-tuxedo-update-50277.patch --]
[-- Type: text/x-diff, Size: 3057 bytes --]

From b6a955ccffb1cbb32c4981de64bc39573fdbf607 Mon Sep 17 00:00:00 2001
From: orchy <orchy12@proton.me>
Date: Sat, 11 May 2024 16:02:18 +0000
Subject: [PATCH] tuxedo-keyboard: rename to tuxedo-drivers and update to 4.5.0

Description changed to fit "transitional dummy package" in 72
characters.
---
 srcpkgs/tuxedo-drivers/template  | 26 ++++++++++++++++++++++++++
 srcpkgs/tuxedo-keyboard          |  1 +
 srcpkgs/tuxedo-keyboard/template | 21 ---------------------
 3 files changed, 27 insertions(+), 21 deletions(-)
 create mode 100644 srcpkgs/tuxedo-drivers/template
 create mode 120000 srcpkgs/tuxedo-keyboard
 delete mode 100644 srcpkgs/tuxedo-keyboard/template

diff --git a/srcpkgs/tuxedo-drivers/template b/srcpkgs/tuxedo-drivers/template
new file mode 100644
index 00000000000000..2421586213050c
--- /dev/null
+++ b/srcpkgs/tuxedo-drivers/template
@@ -0,0 +1,26 @@
+# Template file for 'tuxedo-drivers'
+pkgname=tuxedo-drivers
+version=4.5.0
+revision=1
+depends="dkms"
+short_desc="TUXEDO hardware drivers"
+maintainer="newbluemoon <blaumolch@mailbox.org>"
+license="GPL-3.0-or-later"
+homepage="https://gitlab.com/tuxedocomputers/development/packages/tuxedo-drivers"
+distfiles="https://gitlab.com/tuxedocomputers/development/packages/tuxedo-drivers/-/archive/v${version}/tuxedo-drivers-v{version}.tar.gz"
+checksum=c9b3af2c93f56d01ef7b1a5e8264211b347e16e258a04e1f08c60ca4311e6c1e
+
+dkms_modules="tuxedo-drivers ${version}"
+
+do_install() {
+	sed "s/#MODULE_VERSION#/${version}/" debian/tuxedo-drivers.dkms > src/dkms.conf
+	vmkdir usr/src/${pkgname}-${version}
+	vcopy src/* usr/src/${pkgname}-${version}
+	vinstall tuxedo_keyboard.conf 644 usr/lib/modprobe.d/
+}
+
+tuxedo-keyboard_package() {
+	depends="tuxedo-drivers>=${version}_${revision}"
+	short_desc+=" - transitional dummy package"
+	build_style=meta
+}
diff --git a/srcpkgs/tuxedo-keyboard b/srcpkgs/tuxedo-keyboard
new file mode 120000
index 00000000000000..632257a712b0c1
--- /dev/null
+++ b/srcpkgs/tuxedo-keyboard
@@ -0,0 +1 @@
+tuxedo-drivers
\ No newline at end of file
diff --git a/srcpkgs/tuxedo-keyboard/template b/srcpkgs/tuxedo-keyboard/template
deleted file mode 100644
index 7c2437fa3165e4..00000000000000
--- a/srcpkgs/tuxedo-keyboard/template
+++ /dev/null
@@ -1,21 +0,0 @@
-# Template file for 'tuxedo-keyboard'
-pkgname=tuxedo-keyboard
-version=3.2.14
-revision=1
-depends="dkms"
-short_desc="TUXEDO kernel module drivers for keyboard & general hardware I/O"
-maintainer="newbluemoon <blaumolch@mailbox.org>"
-license="GPL-3.0-or-later"
-homepage="https://github.com/tuxedocomputers/tuxedo-keyboard"
-distfiles="https://github.com/tuxedocomputers/tuxedo-keyboard/archive/v${version}.tar.gz"
-checksum=e743f5878dc52ba671d4cd47707b00e7fa2c884ca540c99919f8a03345e2f354
-
-dkms_modules="tuxedo-keyboard ${version}"
-
-do_install() {
-	vmkdir usr/src/${pkgname}-${version}
-	vcopy src usr/src/${pkgname}-${version}
-	vcopy dkms.conf usr/src/${pkgname}-${version}
-	vcopy Makefile usr/src/${pkgname}-${version}
-	vinstall tuxedo_keyboard.conf 644 usr/lib/modprobe.d/
-}

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

* Re: tuxedo-keyboard: rename to tuxedo-drivers and update to 4.5.0
  2024-05-11 14:22 [PR PATCH] tuxedo-keyboard: rename to tuxedo-drivers and update to 4.4.3 orchy-contrib
                   ` (3 preceding siblings ...)
  2024-05-25 15:35 ` [PR PATCH] [Updated] " orchy-contrib
@ 2024-05-25 15:36 ` orchy-contrib
  2024-05-31 11:47 ` [PR PATCH] [Updated] " orchy-contrib
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: orchy-contrib @ 2024-05-25 15:36 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 178 bytes --]

New comment by orchy-contrib on void-packages repository

https://github.com/void-linux/void-packages/pull/50277#issuecomment-2131311119

Comment:
Updated to 4.5.0 (still works)

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

* Re: [PR PATCH] [Updated] tuxedo-keyboard: rename to tuxedo-drivers and update to 4.5.0
  2024-05-11 14:22 [PR PATCH] tuxedo-keyboard: rename to tuxedo-drivers and update to 4.4.3 orchy-contrib
                   ` (4 preceding siblings ...)
  2024-05-25 15:36 ` tuxedo-keyboard: rename to tuxedo-drivers and update to 4.5.0 orchy-contrib
@ 2024-05-31 11:47 ` orchy-contrib
  2024-05-31 11:48 ` orchy-contrib
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: orchy-contrib @ 2024-05-31 11:47 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 540 bytes --]

There is an updated pull request by orchy-contrib against master on the void-packages repository

https://github.com/orchy-contrib/void-packages-tuxedo tuxedo-update
https://github.com/void-linux/void-packages/pull/50277

tuxedo-keyboard: rename to tuxedo-drivers and update to 4.5.0
#### Testing the changes
- I tested the changes in this PR: **YES**

#### Local build testing
- I built this PR locally for my native architecture (x86_64-musl)

A patch file from https://github.com/void-linux/void-packages/pull/50277.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-tuxedo-update-50277.patch --]
[-- Type: text/x-diff, Size: 3057 bytes --]

From c92f59dab9330a2acf4b4d603dc6d055f3ee8511 Mon Sep 17 00:00:00 2001
From: orchy <orchy12@proton.me>
Date: Sat, 11 May 2024 16:02:18 +0000
Subject: [PATCH] tuxedo-keyboard: rename to tuxedo-drivers and update to 4.5.0

Description changed to fit "transitional dummy package" in 72
characters.
---
 srcpkgs/tuxedo-drivers/template  | 26 ++++++++++++++++++++++++++
 srcpkgs/tuxedo-keyboard          |  1 +
 srcpkgs/tuxedo-keyboard/template | 21 ---------------------
 3 files changed, 27 insertions(+), 21 deletions(-)
 create mode 100644 srcpkgs/tuxedo-drivers/template
 create mode 120000 srcpkgs/tuxedo-keyboard
 delete mode 100644 srcpkgs/tuxedo-keyboard/template

diff --git a/srcpkgs/tuxedo-drivers/template b/srcpkgs/tuxedo-drivers/template
new file mode 100644
index 00000000000000..f64d9ac2d43426
--- /dev/null
+++ b/srcpkgs/tuxedo-drivers/template
@@ -0,0 +1,26 @@
+# Template file for 'tuxedo-drivers'
+pkgname=tuxedo-drivers
+version=4.5.0
+revision=1
+depends="dkms"
+short_desc="TUXEDO hardware drivers"
+maintainer="newbluemoon <blaumolch@mailbox.org>"
+license="GPL-3.0-or-later"
+homepage="https://gitlab.com/tuxedocomputers/development/packages/tuxedo-drivers"
+distfiles="https://gitlab.com/tuxedocomputers/development/packages/tuxedo-drivers/-/archive/v${version}/tuxedo-drivers-v{version}.tar.gz"
+checksum=b68d38a0f6d57c80c5cd63fb2e235dcf1808d3e98253a096c91757d73dad5fa4
+
+dkms_modules="tuxedo-drivers ${version}"
+
+do_install() {
+	sed "s/#MODULE_VERSION#/${version}/" debian/tuxedo-drivers.dkms > src/dkms.conf
+	vmkdir usr/src/${pkgname}-${version}
+	vcopy src/* usr/src/${pkgname}-${version}
+	vinstall tuxedo_keyboard.conf 644 usr/lib/modprobe.d/
+}
+
+tuxedo-keyboard_package() {
+	depends="tuxedo-drivers>=${version}_${revision}"
+	short_desc+=" - transitional dummy package"
+	build_style=meta
+}
diff --git a/srcpkgs/tuxedo-keyboard b/srcpkgs/tuxedo-keyboard
new file mode 120000
index 00000000000000..632257a712b0c1
--- /dev/null
+++ b/srcpkgs/tuxedo-keyboard
@@ -0,0 +1 @@
+tuxedo-drivers
\ No newline at end of file
diff --git a/srcpkgs/tuxedo-keyboard/template b/srcpkgs/tuxedo-keyboard/template
deleted file mode 100644
index 7c2437fa3165e4..00000000000000
--- a/srcpkgs/tuxedo-keyboard/template
+++ /dev/null
@@ -1,21 +0,0 @@
-# Template file for 'tuxedo-keyboard'
-pkgname=tuxedo-keyboard
-version=3.2.14
-revision=1
-depends="dkms"
-short_desc="TUXEDO kernel module drivers for keyboard & general hardware I/O"
-maintainer="newbluemoon <blaumolch@mailbox.org>"
-license="GPL-3.0-or-later"
-homepage="https://github.com/tuxedocomputers/tuxedo-keyboard"
-distfiles="https://github.com/tuxedocomputers/tuxedo-keyboard/archive/v${version}.tar.gz"
-checksum=e743f5878dc52ba671d4cd47707b00e7fa2c884ca540c99919f8a03345e2f354
-
-dkms_modules="tuxedo-keyboard ${version}"
-
-do_install() {
-	vmkdir usr/src/${pkgname}-${version}
-	vcopy src usr/src/${pkgname}-${version}
-	vcopy dkms.conf usr/src/${pkgname}-${version}
-	vcopy Makefile usr/src/${pkgname}-${version}
-	vinstall tuxedo_keyboard.conf 644 usr/lib/modprobe.d/
-}

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

* Re: tuxedo-keyboard: rename to tuxedo-drivers and update to 4.5.0
  2024-05-11 14:22 [PR PATCH] tuxedo-keyboard: rename to tuxedo-drivers and update to 4.4.3 orchy-contrib
                   ` (5 preceding siblings ...)
  2024-05-31 11:47 ` [PR PATCH] [Updated] " orchy-contrib
@ 2024-05-31 11:48 ` orchy-contrib
  2024-06-17  3:27 ` [PR PATCH] [Merged]: " classabbyamp
  2024-06-18  4:18 ` newbluemoon
  8 siblings, 0 replies; 10+ messages in thread
From: orchy-contrib @ 2024-05-31 11:48 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 276 bytes --]

New comment by orchy-contrib on void-packages repository

https://github.com/void-linux/void-packages/pull/50277#issuecomment-2131311119

Comment:
Updated to 4.5.0 (still works)
EDIT: Turns out I didn't actually test it correctly. I've updated the checksum and now it works.

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

* Re: [PR PATCH] [Merged]: tuxedo-keyboard: rename to tuxedo-drivers and update to 4.5.0
  2024-05-11 14:22 [PR PATCH] tuxedo-keyboard: rename to tuxedo-drivers and update to 4.4.3 orchy-contrib
                   ` (6 preceding siblings ...)
  2024-05-31 11:48 ` orchy-contrib
@ 2024-06-17  3:27 ` classabbyamp
  2024-06-18  4:18 ` newbluemoon
  8 siblings, 0 replies; 10+ messages in thread
From: classabbyamp @ 2024-06-17  3:27 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 376 bytes --]

There's a merged pull request on the void-packages repository

tuxedo-keyboard: rename to tuxedo-drivers and update to 4.5.0
https://github.com/void-linux/void-packages/pull/50277

Description:
closes #47715

#### Testing the changes
- I tested the changes in this PR: **YES**

#### Local build testing
- I built this PR locally for my native architecture (x86_64-musl)

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

* Re: tuxedo-keyboard: rename to tuxedo-drivers and update to 4.5.0
  2024-05-11 14:22 [PR PATCH] tuxedo-keyboard: rename to tuxedo-drivers and update to 4.4.3 orchy-contrib
                   ` (7 preceding siblings ...)
  2024-06-17  3:27 ` [PR PATCH] [Merged]: " classabbyamp
@ 2024-06-18  4:18 ` newbluemoon
  8 siblings, 0 replies; 10+ messages in thread
From: newbluemoon @ 2024-06-18  4:18 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 210 bytes --]

New comment by newbluemoon on void-packages repository

https://github.com/void-linux/void-packages/pull/50277#issuecomment-2174957664

Comment:
Sorry I didn’t catch this. Please give me a ping next time. :)

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

end of thread, other threads:[~2024-06-18  4:18 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-05-11 14:22 [PR PATCH] tuxedo-keyboard: rename to tuxedo-drivers and update to 4.4.3 orchy-contrib
2024-05-19  7:36 ` [PR REVIEW] " Luciogi
2024-05-19 13:33 ` [PR PATCH] [Updated] " orchy-contrib
2024-05-19 13:34 ` [PR REVIEW] " orchy-contrib
2024-05-25 15:35 ` [PR PATCH] [Updated] " orchy-contrib
2024-05-25 15:36 ` tuxedo-keyboard: rename to tuxedo-drivers and update to 4.5.0 orchy-contrib
2024-05-31 11:47 ` [PR PATCH] [Updated] " orchy-contrib
2024-05-31 11:48 ` orchy-contrib
2024-06-17  3:27 ` [PR PATCH] [Merged]: " classabbyamp
2024-06-18  4:18 ` newbluemoon

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).