Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] libwacom 2.5.0
@ 2023-01-11  1:02 mhmdanas
  2023-01-11 13:40 ` [PR PATCH] [Updated] libwacom: update to 2.5.0, adopt mhmdanas
                   ` (21 more replies)
  0 siblings, 22 replies; 23+ messages in thread
From: mhmdanas @ 2023-01-11  1:02 UTC (permalink / raw)
  To: ml

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

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

https://github.com/mhmdanas/void-packages libwacom-2.5.0
https://github.com/void-linux/void-packages/pull/41569

libwacom 2.5.0
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **briefly** (tested with my Wacom Intuos Pro)

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-libwacom-2.5.0-41569.patch --]
[-- Type: text/x-diff, Size: 8326 bytes --]

From e132068a1e2e152aa23e3e0ed534eb284cc60811 Mon Sep 17 00:00:00 2001
From: mhmdanas <triallax@tutanota.com>
Date: Wed, 11 Jan 2023 00:36:25 +0000
Subject: [PATCH 1/8] libwacom: update to 2.5.0, adopt.

---
 common/shlibs                          |  2 +-
 srcpkgs/libwacom/patches/fix-test.diff | 23 +++++++++++++++++++++++
 srcpkgs/libwacom/template              |  8 ++++----
 3 files changed, 28 insertions(+), 5 deletions(-)
 create mode 100644 srcpkgs/libwacom/patches/fix-test.diff

diff --git a/common/shlibs b/common/shlibs
index d80771f9f719..63d6027b871e 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -1041,7 +1041,7 @@ libgck-2.so.0.0.0 gcr4-4.0.0_1
 libgcr-4.so.0.0.0 gcr4-4.0.0_1
 libcld2.so cld2-0.0.1.20150821_1
 libcld2_full.so cld2-full-0.0.1.20150821_1
-libwacom.so.2 libwacom-0.3_1
+libwacom.so.9 libwacom-2.5.0_1
 libfarstream-0.2.so.5 farstream-0.2.7_1
 libass.so.9 libass-0.13.6_1
 libcryptui.so.0 libcryptui-3.4.0_1
diff --git a/srcpkgs/libwacom/patches/fix-test.diff b/srcpkgs/libwacom/patches/fix-test.diff
new file mode 100644
index 000000000000..554a6e3bad7f
--- /dev/null
+++ b/srcpkgs/libwacom/patches/fix-test.diff
@@ -0,0 +1,23 @@
+The fixture depends on systemd.
+
+See https://github.com/linuxwacom/libwacom/pull/543 for upstream PR.
+
+diff --git a/test/test_udev_rules.py b/test/test_udev_rules.py
+index 0e8e99c..e31e562 100644
+--- a/test/test_udev_rules.py
++++ b/test/test_udev_rules.py
+@@ -19,14 +19,6 @@ import logging
+ import sys
+ 
+ 
+-@pytest.fixture(scope='session', autouse=True)
+-def systemd_reload():
+-    '''Make sure our hwdb and udev rules are up-to-date'''
+-    import subprocess
+-    subprocess.run(['systemd-hwdb', 'update'])
+-    subprocess.run(['systemctl', 'daemon-reload'])
+-
+-
+ def pytest_generate_tests(metafunc):
+     # for any function that takes a "tablet" argument return a Tablet object
+     # filled with exactly one DeviceMatch from the list of all .tablet files
diff --git a/srcpkgs/libwacom/template b/srcpkgs/libwacom/template
index 248a33d407ac..64a53e956576 100644
--- a/srcpkgs/libwacom/template
+++ b/srcpkgs/libwacom/template
@@ -1,6 +1,6 @@
 # Template file for 'libwacom'
 pkgname=libwacom
-version=1.12
+version=2.5.0
 revision=1
 build_style=meson
 build_helper="qemu"
@@ -9,12 +9,12 @@ hostmakedepends="pkg-config"
 makedepends="libgudev-devel libxml2-devel"
 checkdepends="python3-pytest python3-libevdev python3-pyudev"
 short_desc="Library to identify wacom tablets"
-maintainer="Orphaned <orphan@voidlinux.org>"
+maintainer="Mohammed Anas <triallax@tutanota.com>"
 license="MIT"
 homepage="https://github.com/linuxwacom/libwacom"
 changelog="https://raw.githubusercontent.com/linuxwacom/libwacom/master/NEWS"
-distfiles="https://github.com/linuxwacom/libwacom/releases/download/${pkgname}-${version}/${pkgname}-${version}.tar.bz2"
-checksum=290450d604f78bbd956eddb69f79f8d56f8ed1a5ccbb5e88e22fa84fa2fceb4f
+distfiles="https://github.com/linuxwacom/libwacom/releases/download/libwacom-${version}/libwacom-${version}.tar.xz"
+checksum=40b69a4c38bbcbc80b1231bc115551107ebbc0ba14d2ad1c3e54355dcd876816
 
 if [ -z "${XBPS_CHECK_PKGS}" ]; then
 	configure_args+=" -Dtests=disabled"

From e95a6d57a8d34c05c733b42e117ef4e52d65875a Mon Sep 17 00:00:00 2001
From: mhmdanas <triallax@tutanota.com>
Date: Wed, 11 Jan 2023 00:37:47 +0000
Subject: [PATCH 2/8] budgie-control-center: revbump for libwacom-2.5.0.

---
 srcpkgs/budgie-control-center/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/budgie-control-center/template b/srcpkgs/budgie-control-center/template
index 11c9080925f0..37736255e165 100644
--- a/srcpkgs/budgie-control-center/template
+++ b/srcpkgs/budgie-control-center/template
@@ -1,7 +1,7 @@
 # Template file for 'budgie-control-center'
 pkgname=budgie-control-center
 version=1.1.1
-revision=2
+revision=3
 build_style=meson
 hostmakedepends="glib-devel gsettings-desktop-schemas-devel gettext pkg-config
  polkit python3 libxml2"

From 8c795deacd3670c31b2e1f4e4bfe1389632ce69f Mon Sep 17 00:00:00 2001
From: mhmdanas <triallax@tutanota.com>
Date: Wed, 11 Jan 2023 00:37:47 +0000
Subject: [PATCH 3/8] cinnamon-control-center: revbump for libwacom-2.5.0.

---
 srcpkgs/cinnamon-control-center/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/cinnamon-control-center/template b/srcpkgs/cinnamon-control-center/template
index e1428a97c61e..db1e4ea6d7ba 100644
--- a/srcpkgs/cinnamon-control-center/template
+++ b/srcpkgs/cinnamon-control-center/template
@@ -1,7 +1,7 @@
 # Template file for 'cinnamon-control-center'
 pkgname=cinnamon-control-center
 version=5.4.7
-revision=1
+revision=2
 build_style=meson
 build_helper=gir
 hostmakedepends="gettext-devel glib-devel

From 1b1cadebf0ce9df17e8811c8d52555217ef266e6 Mon Sep 17 00:00:00 2001
From: mhmdanas <triallax@tutanota.com>
Date: Wed, 11 Jan 2023 00:37:47 +0000
Subject: [PATCH 4/8] gnome-control-center: revbump for libwacom-2.5.0.

---
 srcpkgs/gnome-control-center/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gnome-control-center/template b/srcpkgs/gnome-control-center/template
index af6728cd45a1..849763d23c1e 100644
--- a/srcpkgs/gnome-control-center/template
+++ b/srcpkgs/gnome-control-center/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-control-center'
 pkgname=gnome-control-center
 version=43.2
-revision=1
+revision=2
 build_style=meson
 build_helper="gir"
 hostmakedepends="glib-devel gsettings-desktop-schemas-devel gettext pkg-config

From 3d67a432b5e682692a2205cfb3e78b69cda16205 Mon Sep 17 00:00:00 2001
From: mhmdanas <triallax@tutanota.com>
Date: Wed, 11 Jan 2023 00:37:48 +0000
Subject: [PATCH 5/8] gnome-settings-daemon: revbump for libwacom-2.5.0.

---
 srcpkgs/gnome-settings-daemon/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gnome-settings-daemon/template b/srcpkgs/gnome-settings-daemon/template
index f22bdbdb61f4..3d3cf393f960 100644
--- a/srcpkgs/gnome-settings-daemon/template
+++ b/srcpkgs/gnome-settings-daemon/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-settings-daemon'
 pkgname=gnome-settings-daemon
 version=43.0
-revision=1
+revision=2
 build_style=meson
 configure_args="-Dsystemd=false"
 hostmakedepends="cmake docbook-xsl gettext glib-devel libglib-devel libxslt

From 490766e18a462706ab554aaa0af3570c466821b2 Mon Sep 17 00:00:00 2001
From: mhmdanas <triallax@tutanota.com>
Date: Wed, 11 Jan 2023 00:37:48 +0000
Subject: [PATCH 6/8] libinput: revbump for libwacom-2.5.0.

---
 srcpkgs/libinput/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libinput/template b/srcpkgs/libinput/template
index d429098fa2fc..d5b88caeee0b 100644
--- a/srcpkgs/libinput/template
+++ b/srcpkgs/libinput/template
@@ -1,7 +1,7 @@
 # Template file for 'libinput'
 pkgname=libinput
 version=1.22.0
-revision=1
+revision=2
 build_style=meson
 configure_args="-Db_ndebug=false -Ddebug-gui=false"
 hostmakedepends="pkg-config"

From 78ca19d5fb27c5d9d53d578667e98cf759104770 Mon Sep 17 00:00:00 2001
From: mhmdanas <triallax@tutanota.com>
Date: Wed, 11 Jan 2023 00:37:48 +0000
Subject: [PATCH 7/8] muffin: revbump for libwacom-2.5.0.

---
 srcpkgs/muffin/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/muffin/template b/srcpkgs/muffin/template
index 9383775a47f4..6c30d4452451 100644
--- a/srcpkgs/muffin/template
+++ b/srcpkgs/muffin/template
@@ -1,7 +1,7 @@
 # Template file for 'muffin'
 pkgname=muffin
 version=5.4.5
-revision=1
+revision=2
 build_style=meson
 build_helper=gir
 # -Dtests requires -Dwayland, which is explicitly disabled

From 4cdee72e70da92e5c25f507085cb7bcd1f98d496 Mon Sep 17 00:00:00 2001
From: mhmdanas <triallax@tutanota.com>
Date: Wed, 11 Jan 2023 00:37:49 +0000
Subject: [PATCH 8/8] mutter: revbump for libwacom-2.5.0.

---
 srcpkgs/mutter/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mutter/template b/srcpkgs/mutter/template
index 4adf8a458957..c84c35f12b26 100644
--- a/srcpkgs/mutter/template
+++ b/srcpkgs/mutter/template
@@ -1,7 +1,7 @@
 # Template file for 'mutter'
 pkgname=mutter
 version=43.2
-revision=1
+revision=2
 build_helper="gir"
 build_style=meson
 configure_args="-Degl_device=true -Dudev=true -Dnative_backend=true

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

end of thread, other threads:[~2023-02-05  1:19 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-01-11  1:02 [PR PATCH] libwacom 2.5.0 mhmdanas
2023-01-11 13:40 ` [PR PATCH] [Updated] libwacom: update to 2.5.0, adopt mhmdanas
2023-01-12 18:49 ` [PR REVIEW] " mhmdanas
2023-01-15 11:50 ` paper42
2023-01-18 19:31 ` [PR PATCH] [Updated] " mhmdanas
2023-02-03 20:47 ` mhmdanas
2023-02-03 20:50 ` [PR REVIEW] " mhmdanas
2023-02-03 20:53 ` [PR PATCH] [Updated] " mhmdanas
2023-02-03 22:08 ` mhmdanas
2023-02-04 12:34 ` [PR REVIEW] " mhmdanas
2023-02-04 13:03 ` [PR PATCH] [Updated] " mhmdanas
2023-02-04 13:08 ` mhmdanas
2023-02-04 16:42 ` [PR REVIEW] " sgn
2023-02-04 17:32 ` sgn
2023-02-04 17:32 ` sgn
2023-02-04 17:32 ` sgn
2023-02-04 17:52 ` [PR PATCH] [Updated] " mhmdanas
2023-02-04 17:53 ` mhmdanas
2023-02-04 17:53 ` [PR REVIEW] " mhmdanas
2023-02-04 17:54 ` mhmdanas
2023-02-04 17:55 ` mhmdanas
2023-02-05  1:17 ` sgn
2023-02-05  1:19 ` [PR PATCH] [Merged]: " sgn

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).