Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] antimicrox: update to 3.3.2
@ 2022-12-27 16:25 pascal-huber
  2022-12-27 17:40 ` [PR REVIEW] " paper42
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: pascal-huber @ 2022-12-27 16:25 UTC (permalink / raw)
  To: ml

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

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

https://github.com/pascal-huber/void-packages antimicrox
https://github.com/void-linux/void-packages/pull/41319

antimicrox: update to 3.3.2
#### Testing the changes
- I tested the changes in this PR: **briefly**

#### Local build testing
- I built this PR locally for my native architecture, x86_64-glibc, x86_64-musl
- I built this PR locally for these architectures:
  - armv7l


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

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

From f4ab71f0bc7b5397e57a072d3660faeeaeb401ab Mon Sep 17 00:00:00 2001
From: Pascal Huber <pascal.huber@resolved.ch>
Date: Tue, 27 Dec 2022 14:11:25 +0100
Subject: [PATCH] antimicrox: update to 3.3.2

---
 srcpkgs/antimicrox/patches/endian.patch | 20 --------------------
 srcpkgs/antimicrox/template             |  4 ++--
 2 files changed, 2 insertions(+), 22 deletions(-)
 delete mode 100644 srcpkgs/antimicrox/patches/endian.patch

diff --git a/srcpkgs/antimicrox/patches/endian.patch b/srcpkgs/antimicrox/patches/endian.patch
deleted file mode 100644
index 3e0093c90ea2..000000000000
--- a/srcpkgs/antimicrox/patches/endian.patch
+++ /dev/null
@@ -1,20 +0,0 @@
---- a/src/haptictriggerps5.cpp
-+++ b/src/haptictriggerps5.cpp
-@@ -27,7 +27,7 @@ constexpr u16 u16tole(u16 x)
- {
- #if __BYTE_ORDER == __LITTLE_ENDIAN
-     return x;
--#elif __BYTE_ORDER == _BIG_ENDIAN
-+#elif __BYTE_ORDER == __BIG_ENDIAN
-     return ((x << 8) & 0xFF00) | ((x >> 8) & 0x00FF);
- #else
-     #error "Target machine has unknown endianness!"
-@@ -38,7 +38,7 @@ constexpr u32 u32tole(u32 x)
- {
- #if __BYTE_ORDER == __LITTLE_ENDIAN
-     return x;
--#elif __BYTE_ORDER == _BIG_ENDIAN
-+#elif __BYTE_ORDER == __BIG_ENDIAN
-     return ((x << 24) & 0xFF000000) | ((x << 8) & 0x00FF0000) | ((x >> 8) & 0x0000FF00) | ((x >> 24) & 0x000000FF);
- #else
-     #error "Target machine has unknown endianness!"
diff --git a/srcpkgs/antimicrox/template b/srcpkgs/antimicrox/template
index 4c2217e40536..3b6622670bcd 100644
--- a/srcpkgs/antimicrox/template
+++ b/srcpkgs/antimicrox/template
@@ -1,6 +1,6 @@
 # Template file for 'antimicrox'
 pkgname=antimicrox
-version=3.3.1
+version=3.3.2
 revision=1
 build_style=cmake
 hostmakedepends="pkg-config extra-cmake-modules itstool gettext qt5-qmake
@@ -13,7 +13,7 @@ license="GPL-3.0-or-later"
 homepage="https://github.com/AntiMicroX/antimicrox"
 changelog="https://raw.githubusercontent.com/AntiMicroX/antimicrox/master/CHANGELOG.md"
 distfiles="${homepage}/archive/${version}.tar.gz"
-checksum=df1df587691568190a1cfa024f85e842c3883f9c58e6a7e883d42976584f728d
+checksum=9f5b51655fb5bac9259e553bc3f001f4d31088f83ee0f90f0c136e58c10e9724
 
 if [ "$XBPS_TARGET_LIBC" = "musl" ]; then
 	makedepends+=" libexecinfo-devel"

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

* Re: [PR REVIEW] antimicrox: update to 3.3.2
  2022-12-27 16:25 [PR PATCH] antimicrox: update to 3.3.2 pascal-huber
@ 2022-12-27 17:40 ` paper42
  2022-12-27 18:12 ` [PR PATCH] [Updated] " pascal-huber
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: paper42 @ 2022-12-27 17:40 UTC (permalink / raw)
  To: ml

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

New review comment by paper42 on void-packages repository

https://github.com/void-linux/void-packages/pull/41319#discussion_r1057815762

Comment:
```suggestion
distfiles="https://github.com/AntiMicroX/antimicrox/archive/${version}.tar.gz"
```

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

* Re: [PR PATCH] [Updated] antimicrox: update to 3.3.2
  2022-12-27 16:25 [PR PATCH] antimicrox: update to 3.3.2 pascal-huber
  2022-12-27 17:40 ` [PR REVIEW] " paper42
@ 2022-12-27 18:12 ` pascal-huber
  2022-12-27 18:14 ` [PR REVIEW] " pascal-huber
  2022-12-27 18:45 ` [PR PATCH] [Merged]: " paper42
  3 siblings, 0 replies; 5+ messages in thread
From: pascal-huber @ 2022-12-27 18:12 UTC (permalink / raw)
  To: ml

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

There is an updated pull request by pascal-huber against master on the void-packages repository

https://github.com/pascal-huber/void-packages antimicrox
https://github.com/void-linux/void-packages/pull/41319

antimicrox: update to 3.3.2
#### Testing the changes
- I tested the changes in this PR: **briefly**

#### Local build testing
- I built this PR locally for my native architecture, x86_64-glibc, x86_64-musl
- I built this PR locally for these architectures:
  - armv7l


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

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

From a9a518410f058d0e139d99a7d2c4d316cc807751 Mon Sep 17 00:00:00 2001
From: Pascal Huber <pascal.huber@resolved.ch>
Date: Tue, 27 Dec 2022 14:11:25 +0100
Subject: [PATCH] antimicrox: update to 3.3.2

---
 srcpkgs/antimicrox/patches/endian.patch | 20 --------------------
 srcpkgs/antimicrox/template             |  6 +++---
 2 files changed, 3 insertions(+), 23 deletions(-)
 delete mode 100644 srcpkgs/antimicrox/patches/endian.patch

diff --git a/srcpkgs/antimicrox/patches/endian.patch b/srcpkgs/antimicrox/patches/endian.patch
deleted file mode 100644
index 3e0093c90ea2..000000000000
--- a/srcpkgs/antimicrox/patches/endian.patch
+++ /dev/null
@@ -1,20 +0,0 @@
---- a/src/haptictriggerps5.cpp
-+++ b/src/haptictriggerps5.cpp
-@@ -27,7 +27,7 @@ constexpr u16 u16tole(u16 x)
- {
- #if __BYTE_ORDER == __LITTLE_ENDIAN
-     return x;
--#elif __BYTE_ORDER == _BIG_ENDIAN
-+#elif __BYTE_ORDER == __BIG_ENDIAN
-     return ((x << 8) & 0xFF00) | ((x >> 8) & 0x00FF);
- #else
-     #error "Target machine has unknown endianness!"
-@@ -38,7 +38,7 @@ constexpr u32 u32tole(u32 x)
- {
- #if __BYTE_ORDER == __LITTLE_ENDIAN
-     return x;
--#elif __BYTE_ORDER == _BIG_ENDIAN
-+#elif __BYTE_ORDER == __BIG_ENDIAN
-     return ((x << 24) & 0xFF000000) | ((x << 8) & 0x00FF0000) | ((x >> 8) & 0x0000FF00) | ((x >> 24) & 0x000000FF);
- #else
-     #error "Target machine has unknown endianness!"
diff --git a/srcpkgs/antimicrox/template b/srcpkgs/antimicrox/template
index 4c2217e40536..8be47cd06183 100644
--- a/srcpkgs/antimicrox/template
+++ b/srcpkgs/antimicrox/template
@@ -1,6 +1,6 @@
 # Template file for 'antimicrox'
 pkgname=antimicrox
-version=3.3.1
+version=3.3.2
 revision=1
 build_style=cmake
 hostmakedepends="pkg-config extra-cmake-modules itstool gettext qt5-qmake
@@ -12,8 +12,8 @@ maintainer="fosslinux <fosslinux@aussies.space>"
 license="GPL-3.0-or-later"
 homepage="https://github.com/AntiMicroX/antimicrox"
 changelog="https://raw.githubusercontent.com/AntiMicroX/antimicrox/master/CHANGELOG.md"
-distfiles="${homepage}/archive/${version}.tar.gz"
-checksum=df1df587691568190a1cfa024f85e842c3883f9c58e6a7e883d42976584f728d
+distfiles="https://github.com/AntiMicroX/antimicrox/archive/${version}.tar.gz"
+checksum=9f5b51655fb5bac9259e553bc3f001f4d31088f83ee0f90f0c136e58c10e9724
 
 if [ "$XBPS_TARGET_LIBC" = "musl" ]; then
 	makedepends+=" libexecinfo-devel"

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

* Re: [PR REVIEW] antimicrox: update to 3.3.2
  2022-12-27 16:25 [PR PATCH] antimicrox: update to 3.3.2 pascal-huber
  2022-12-27 17:40 ` [PR REVIEW] " paper42
  2022-12-27 18:12 ` [PR PATCH] [Updated] " pascal-huber
@ 2022-12-27 18:14 ` pascal-huber
  2022-12-27 18:45 ` [PR PATCH] [Merged]: " paper42
  3 siblings, 0 replies; 5+ messages in thread
From: pascal-huber @ 2022-12-27 18:14 UTC (permalink / raw)
  To: ml

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

New review comment by pascal-huber on void-packages repository

https://github.com/void-linux/void-packages/pull/41319#discussion_r1057834955

Comment:
done

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

* Re: [PR PATCH] [Merged]: antimicrox: update to 3.3.2
  2022-12-27 16:25 [PR PATCH] antimicrox: update to 3.3.2 pascal-huber
                   ` (2 preceding siblings ...)
  2022-12-27 18:14 ` [PR REVIEW] " pascal-huber
@ 2022-12-27 18:45 ` paper42
  3 siblings, 0 replies; 5+ messages in thread
From: paper42 @ 2022-12-27 18:45 UTC (permalink / raw)
  To: ml

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

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

antimicrox: update to 3.3.2
https://github.com/void-linux/void-packages/pull/41319

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

#### Local build testing
- I built this PR locally for my native architecture, x86_64-glibc, x86_64-musl
- I built this PR locally for these architectures:
  - armv7l


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

end of thread, other threads:[~2022-12-27 18:45 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-12-27 16:25 [PR PATCH] antimicrox: update to 3.3.2 pascal-huber
2022-12-27 17:40 ` [PR REVIEW] " paper42
2022-12-27 18:12 ` [PR PATCH] [Updated] " pascal-huber
2022-12-27 18:14 ` [PR REVIEW] " pascal-huber
2022-12-27 18:45 ` [PR PATCH] [Merged]: " paper42

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