* [PR PATCH] New package: leftwm-0.3.0
@ 2022-05-02 5:52 uncomfyhalomacro
2022-05-02 5:59 ` classabbyamp
` (26 more replies)
0 siblings, 27 replies; 28+ messages in thread
From: uncomfyhalomacro @ 2022-05-02 5:52 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 1118 bytes --]
There is a new pull request by uncomfyhalomacro against master on the void-packages repository
https://github.com/uncomfyhalomacro/void-packages leftwm-0.3.0
https://github.com/void-linux/void-packages/pull/36947
New package: leftwm-0.3.0
#### Testing the changes
- I tested the changes in this PR: **NO**
#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**
<!-- 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.
-->
- 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/36947.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-leftwm-0.3.0-36947.patch --]
[-- Type: text/x-diff, Size: 3232 bytes --]
From a842a022d454e8b58e58e8686af368c825d03a87 Mon Sep 17 00:00:00 2001
From: "Soc Virnyl S. Estela" <socvirnyl.estela@gmail.com>
Date: Mon, 2 May 2022 13:49:24 +0800
Subject: [PATCH] New package: leftwm-0.3.0
---
srcpkgs/leftwm/patches/fix-arm-builds.patch | 31 ---------------------
srcpkgs/leftwm/patches/series | 1 -
srcpkgs/leftwm/template | 4 +--
3 files changed, 2 insertions(+), 34 deletions(-)
delete mode 100644 srcpkgs/leftwm/patches/fix-arm-builds.patch
delete mode 100644 srcpkgs/leftwm/patches/series
diff --git a/srcpkgs/leftwm/patches/fix-arm-builds.patch b/srcpkgs/leftwm/patches/fix-arm-builds.patch
deleted file mode 100644
index 9337bc90ec52..000000000000
--- a/srcpkgs/leftwm/patches/fix-arm-builds.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-From 876216bcc0398fb869240cd51d5ea0d12ba699b1 Mon Sep 17 00:00:00 2001
-From: pkubaj <pkubaj@anongoth.pl>
-Date: Tue, 14 Dec 2021 06:37:11 +0000
-Subject: [PATCH] Fix build errors on architectures with u8 (#623)
-
----
- .../src/display_servers/xlib_display_server/xwrap/getters.rs | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/leftwm-core/src/display_servers/xlib_display_server/xwrap/getters.rs b/leftwm-core/src/display_servers/xlib_display_server/xwrap/getters.rs
-index 2fe20d3a..b8a90495 100644
---- a/leftwm-core/src/display_servers/xlib_display_server/xwrap/getters.rs
-+++ b/leftwm-core/src/display_servers/xlib_display_server/xwrap/getters.rs
-@@ -3,7 +3,7 @@ use super::{Screen, WindowHandle, XlibError, MAX_PROPERTY_VALUE_LEN};
- use crate::models::{DockArea, WindowState, WindowType, XyhwChange};
- use crate::XWrap;
- use std::ffi::CString;
--use std::os::raw::{c_int, c_long, c_uchar, c_uint, c_ulong};
-+use std::os::raw::{c_char, c_int, c_long, c_uchar, c_uint, c_ulong};
- use std::slice;
- use x11_dl::xlib;
-
-@@ -575,7 +575,7 @@ impl XWrap {
- if status == 0 {
- return Err(XlibError::FailedStatus);
- }
-- if let Ok(s) = CString::from_raw(text_prop.value.cast::<i8>()).into_string() {
-+ if let Ok(s) = CString::from_raw(text_prop.value.cast::<c_char>()).into_string() {
- return Ok(s);
- }
- };
diff --git a/srcpkgs/leftwm/patches/series b/srcpkgs/leftwm/patches/series
deleted file mode 100644
index 5f8e5e089321..000000000000
--- a/srcpkgs/leftwm/patches/series
+++ /dev/null
@@ -1 +0,0 @@
-fix-arm-builds.patch
diff --git a/srcpkgs/leftwm/template b/srcpkgs/leftwm/template
index 6da896578e3b..1c416bae1a65 100644
--- a/srcpkgs/leftwm/template
+++ b/srcpkgs/leftwm/template
@@ -1,6 +1,6 @@
# Template file for 'leftwm'
pkgname=leftwm
-version=0.2.11
+version=0.3.0
revision=1
build_style=cargo
makedepends="libX11-devel libXinerama-devel libXrandr-devel xorg-server-devel"
@@ -10,7 +10,7 @@ maintainer="Soc Virnyl S. Estela <socvirnyl.estela@gmail.com>"
license="MIT"
homepage="https://github.com/leftwm/leftwm"
distfiles="https://github.com/leftwm/leftwm/archive/${version}.tar.gz"
-checksum=3a2bd59f12566d94b6be3b162c95d280acbaec1b40da415cb42fe07332a5b709
+checksum=d69d3ec8ea49b4a23e145d42a2f66f5c38642378c762919fce6c56b818fad8c7
do_install() {
vdoc README.md
^ permalink raw reply [flat|nested] 28+ messages in thread
* Re: New package: leftwm-0.3.0
2022-05-02 5:52 [PR PATCH] New package: leftwm-0.3.0 uncomfyhalomacro
@ 2022-05-02 5:59 ` classabbyamp
2022-05-02 6:10 ` [PR PATCH] [Updated] leftwm: update to 0.3.0 uncomfyhalomacro
` (25 subsequent siblings)
26 siblings, 0 replies; 28+ messages in thread
From: classabbyamp @ 2022-05-02 5:59 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 193 bytes --]
New comment by classabbyamp on void-packages repository
https://github.com/void-linux/void-packages/pull/36947#issuecomment-1114522387
Comment:
I think this is an update, not a new package
^ permalink raw reply [flat|nested] 28+ messages in thread
* Re: [PR PATCH] [Updated] leftwm: update to 0.3.0
2022-05-02 5:52 [PR PATCH] New package: leftwm-0.3.0 uncomfyhalomacro
2022-05-02 5:59 ` classabbyamp
@ 2022-05-02 6:10 ` uncomfyhalomacro
2022-05-02 6:10 ` uncomfyhalomacro
` (24 subsequent siblings)
26 siblings, 0 replies; 28+ messages in thread
From: uncomfyhalomacro @ 2022-05-02 6:10 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 1121 bytes --]
There is an updated pull request by uncomfyhalomacro against master on the void-packages repository
https://github.com/uncomfyhalomacro/void-packages leftwm-0.3.0
https://github.com/void-linux/void-packages/pull/36947
leftwm: update to 0.3.0
#### Testing the changes
- I tested the changes in this PR: **NO**
#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**
<!-- 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.
-->
- 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/36947.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-leftwm-0.3.0-36947.patch --]
[-- Type: text/x-diff, Size: 3230 bytes --]
From 7e7560c4504d44e6226b3c7d19afc533a35317d9 Mon Sep 17 00:00:00 2001
From: "Soc Virnyl S. Estela" <socvirnyl.estela@gmail.com>
Date: Mon, 2 May 2022 13:49:24 +0800
Subject: [PATCH] leftwm: update to 0.3.0
---
srcpkgs/leftwm/patches/fix-arm-builds.patch | 31 ---------------------
srcpkgs/leftwm/patches/series | 1 -
srcpkgs/leftwm/template | 4 +--
3 files changed, 2 insertions(+), 34 deletions(-)
delete mode 100644 srcpkgs/leftwm/patches/fix-arm-builds.patch
delete mode 100644 srcpkgs/leftwm/patches/series
diff --git a/srcpkgs/leftwm/patches/fix-arm-builds.patch b/srcpkgs/leftwm/patches/fix-arm-builds.patch
deleted file mode 100644
index 9337bc90ec52..000000000000
--- a/srcpkgs/leftwm/patches/fix-arm-builds.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-From 876216bcc0398fb869240cd51d5ea0d12ba699b1 Mon Sep 17 00:00:00 2001
-From: pkubaj <pkubaj@anongoth.pl>
-Date: Tue, 14 Dec 2021 06:37:11 +0000
-Subject: [PATCH] Fix build errors on architectures with u8 (#623)
-
----
- .../src/display_servers/xlib_display_server/xwrap/getters.rs | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/leftwm-core/src/display_servers/xlib_display_server/xwrap/getters.rs b/leftwm-core/src/display_servers/xlib_display_server/xwrap/getters.rs
-index 2fe20d3a..b8a90495 100644
---- a/leftwm-core/src/display_servers/xlib_display_server/xwrap/getters.rs
-+++ b/leftwm-core/src/display_servers/xlib_display_server/xwrap/getters.rs
-@@ -3,7 +3,7 @@ use super::{Screen, WindowHandle, XlibError, MAX_PROPERTY_VALUE_LEN};
- use crate::models::{DockArea, WindowState, WindowType, XyhwChange};
- use crate::XWrap;
- use std::ffi::CString;
--use std::os::raw::{c_int, c_long, c_uchar, c_uint, c_ulong};
-+use std::os::raw::{c_char, c_int, c_long, c_uchar, c_uint, c_ulong};
- use std::slice;
- use x11_dl::xlib;
-
-@@ -575,7 +575,7 @@ impl XWrap {
- if status == 0 {
- return Err(XlibError::FailedStatus);
- }
-- if let Ok(s) = CString::from_raw(text_prop.value.cast::<i8>()).into_string() {
-+ if let Ok(s) = CString::from_raw(text_prop.value.cast::<c_char>()).into_string() {
- return Ok(s);
- }
- };
diff --git a/srcpkgs/leftwm/patches/series b/srcpkgs/leftwm/patches/series
deleted file mode 100644
index 5f8e5e089321..000000000000
--- a/srcpkgs/leftwm/patches/series
+++ /dev/null
@@ -1 +0,0 @@
-fix-arm-builds.patch
diff --git a/srcpkgs/leftwm/template b/srcpkgs/leftwm/template
index 6da896578e3b..1c416bae1a65 100644
--- a/srcpkgs/leftwm/template
+++ b/srcpkgs/leftwm/template
@@ -1,6 +1,6 @@
# Template file for 'leftwm'
pkgname=leftwm
-version=0.2.11
+version=0.3.0
revision=1
build_style=cargo
makedepends="libX11-devel libXinerama-devel libXrandr-devel xorg-server-devel"
@@ -10,7 +10,7 @@ maintainer="Soc Virnyl S. Estela <socvirnyl.estela@gmail.com>"
license="MIT"
homepage="https://github.com/leftwm/leftwm"
distfiles="https://github.com/leftwm/leftwm/archive/${version}.tar.gz"
-checksum=3a2bd59f12566d94b6be3b162c95d280acbaec1b40da415cb42fe07332a5b709
+checksum=d69d3ec8ea49b4a23e145d42a2f66f5c38642378c762919fce6c56b818fad8c7
do_install() {
vdoc README.md
^ permalink raw reply [flat|nested] 28+ messages in thread
* Re: leftwm: update to 0.3.0
2022-05-02 5:52 [PR PATCH] New package: leftwm-0.3.0 uncomfyhalomacro
2022-05-02 5:59 ` classabbyamp
2022-05-02 6:10 ` [PR PATCH] [Updated] leftwm: update to 0.3.0 uncomfyhalomacro
@ 2022-05-02 6:10 ` uncomfyhalomacro
2022-05-02 6:11 ` uncomfyhalomacro
` (23 subsequent siblings)
26 siblings, 0 replies; 28+ messages in thread
From: uncomfyhalomacro @ 2022-05-02 6:10 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 282 bytes --]
New comment by uncomfyhalomacro on void-packages repository
https://github.com/void-linux/void-packages/pull/36947#issuecomment-1114528519
Comment:
> I think this is an update, not a new package
> I think this is an update, not a new package
yeah my bad. all good now
^ permalink raw reply [flat|nested] 28+ messages in thread
* Re: leftwm: update to 0.3.0
2022-05-02 5:52 [PR PATCH] New package: leftwm-0.3.0 uncomfyhalomacro
` (2 preceding siblings ...)
2022-05-02 6:10 ` uncomfyhalomacro
@ 2022-05-02 6:11 ` uncomfyhalomacro
2022-05-02 6:12 ` uncomfyhalomacro
` (22 subsequent siblings)
26 siblings, 0 replies; 28+ messages in thread
From: uncomfyhalomacro @ 2022-05-02 6:11 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 228 bytes --]
New comment by uncomfyhalomacro on void-packages repository
https://github.com/void-linux/void-packages/pull/36947#issuecomment-1114528519
Comment:
> I think this is an update, not a new package
yeah my bad. all good now
^ permalink raw reply [flat|nested] 28+ messages in thread
* Re: leftwm: update to 0.3.0
2022-05-02 5:52 [PR PATCH] New package: leftwm-0.3.0 uncomfyhalomacro
` (3 preceding siblings ...)
2022-05-02 6:11 ` uncomfyhalomacro
@ 2022-05-02 6:12 ` uncomfyhalomacro
2022-05-02 6:18 ` 0323pin
` (21 subsequent siblings)
26 siblings, 0 replies; 28+ messages in thread
From: uncomfyhalomacro @ 2022-05-02 6:12 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 183 bytes --]
New comment by uncomfyhalomacro on void-packages repository
https://github.com/void-linux/void-packages/pull/36947#issuecomment-1114529590
Comment:
@0323pin updated to 0.3.0 now :)
^ permalink raw reply [flat|nested] 28+ messages in thread
* Re: leftwm: update to 0.3.0
2022-05-02 5:52 [PR PATCH] New package: leftwm-0.3.0 uncomfyhalomacro
` (4 preceding siblings ...)
2022-05-02 6:12 ` uncomfyhalomacro
@ 2022-05-02 6:18 ` 0323pin
2022-05-02 6:20 ` uncomfyhalomacro
` (20 subsequent siblings)
26 siblings, 0 replies; 28+ messages in thread
From: 0323pin @ 2022-05-02 6:18 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 324 bytes --]
New comment by 0323pin on void-packages repository
https://github.com/void-linux/void-packages/pull/36947#issuecomment-1114533224
Comment:
@uncomfyhalomacro Thanks! 0.3.0 is a big improvement and addresses a number of minor annoyances. Looking forward for it to build and have already updated my config files accordingly.
^ permalink raw reply [flat|nested] 28+ messages in thread
* Re: leftwm: update to 0.3.0
2022-05-02 5:52 [PR PATCH] New package: leftwm-0.3.0 uncomfyhalomacro
` (5 preceding siblings ...)
2022-05-02 6:18 ` 0323pin
@ 2022-05-02 6:20 ` uncomfyhalomacro
2022-05-02 6:24 ` 0323pin
` (19 subsequent siblings)
26 siblings, 0 replies; 28+ messages in thread
From: uncomfyhalomacro @ 2022-05-02 6:20 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 465 bytes --]
New comment by uncomfyhalomacro on void-packages repository
https://github.com/void-linux/void-packages/pull/36947#issuecomment-1114534808
Comment:
> @uncomfyhalomacro Thanks! 0.3.0 is a big improvement and addresses a number of minor annoyances. Looking forward for it to build and have already updated my config files accordingly.
it builds correctly without the patches. i just have to commit amend it since it is not supposed to be titled as a new package
^ permalink raw reply [flat|nested] 28+ messages in thread
* Re: leftwm: update to 0.3.0
2022-05-02 5:52 [PR PATCH] New package: leftwm-0.3.0 uncomfyhalomacro
` (6 preceding siblings ...)
2022-05-02 6:20 ` uncomfyhalomacro
@ 2022-05-02 6:24 ` 0323pin
2022-05-07 4:54 ` 0323pin
` (18 subsequent siblings)
26 siblings, 0 replies; 28+ messages in thread
From: 0323pin @ 2022-05-02 6:24 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 255 bytes --]
New comment by 0323pin on void-packages repository
https://github.com/void-linux/void-packages/pull/36947#issuecomment-1114537019
Comment:
@uncomfyhalomacro I'll wait for it, no worries. Appreciated!
On NetBSD, I'll keep running a build from git-HEAD.
^ permalink raw reply [flat|nested] 28+ messages in thread
* Re: leftwm: update to 0.3.0
2022-05-02 5:52 [PR PATCH] New package: leftwm-0.3.0 uncomfyhalomacro
` (7 preceding siblings ...)
2022-05-02 6:24 ` 0323pin
@ 2022-05-07 4:54 ` 0323pin
2022-05-07 5:07 ` uncomfyhalomacro
` (17 subsequent siblings)
26 siblings, 0 replies; 28+ messages in thread
From: 0323pin @ 2022-05-07 4:54 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 265 bytes --]
New comment by 0323pin on void-packages repository
https://github.com/void-linux/void-packages/pull/36947#issuecomment-1120134190
Comment:
Anything stopping the merge? This release solves quite a few bugs and drops `chrono` which is outdated and has a known CVE.
^ permalink raw reply [flat|nested] 28+ messages in thread
* Re: leftwm: update to 0.3.0
2022-05-02 5:52 [PR PATCH] New package: leftwm-0.3.0 uncomfyhalomacro
` (8 preceding siblings ...)
2022-05-07 4:54 ` 0323pin
@ 2022-05-07 5:07 ` uncomfyhalomacro
2022-05-07 5:21 ` 0323pin
` (16 subsequent siblings)
26 siblings, 0 replies; 28+ messages in thread
From: uncomfyhalomacro @ 2022-05-07 5:07 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 334 bytes --]
New comment by uncomfyhalomacro on void-packages repository
https://github.com/void-linux/void-packages/pull/36947#issuecomment-1120135780
Comment:
> Anything stopping the merge? This release solves quite a few bugs and drops `chrono` which is outdated and has a known CVE.
idk i guess. u can maybe contact the void maintainers.
^ permalink raw reply [flat|nested] 28+ messages in thread
* Re: leftwm: update to 0.3.0
2022-05-02 5:52 [PR PATCH] New package: leftwm-0.3.0 uncomfyhalomacro
` (9 preceding siblings ...)
2022-05-07 5:07 ` uncomfyhalomacro
@ 2022-05-07 5:21 ` 0323pin
2022-05-07 21:58 ` paper42
` (15 subsequent siblings)
26 siblings, 0 replies; 28+ messages in thread
From: 0323pin @ 2022-05-07 5:21 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 257 bytes --]
New comment by 0323pin on void-packages repository
https://github.com/void-linux/void-packages/pull/36947#issuecomment-1120137492
Comment:
> idk i guess. u can maybe contact the void maintainers.
Oh sorry, my question was intended to void maintainers.
^ permalink raw reply [flat|nested] 28+ messages in thread
* Re: leftwm: update to 0.3.0
2022-05-02 5:52 [PR PATCH] New package: leftwm-0.3.0 uncomfyhalomacro
` (10 preceding siblings ...)
2022-05-07 5:21 ` 0323pin
@ 2022-05-07 21:58 ` paper42
2022-05-08 6:14 ` 0323pin
` (14 subsequent siblings)
26 siblings, 0 replies; 28+ messages in thread
From: paper42 @ 2022-05-07 21:58 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 252 bytes --]
New comment by paper42 on void-packages repository
https://github.com/void-linux/void-packages/pull/36947#issuecomment-1120301672
Comment:
> Anything stopping the merge?
This update was not tested according to the PR description, otherwise, lgtm.
^ permalink raw reply [flat|nested] 28+ messages in thread
* Re: leftwm: update to 0.3.0
2022-05-02 5:52 [PR PATCH] New package: leftwm-0.3.0 uncomfyhalomacro
` (11 preceding siblings ...)
2022-05-07 21:58 ` paper42
@ 2022-05-08 6:14 ` 0323pin
2022-05-08 8:54 ` paper42
` (13 subsequent siblings)
26 siblings, 0 replies; 28+ messages in thread
From: 0323pin @ 2022-05-08 6:14 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 293 bytes --]
New comment by 0323pin on void-packages repository
https://github.com/void-linux/void-packages/pull/36947#issuecomment-1120358066
Comment:
> This update was not tested according to the PR description, otherwise, lgtm.
Does it mean it won't be merged until someone tests to build and run?
^ permalink raw reply [flat|nested] 28+ messages in thread
* Re: leftwm: update to 0.3.0
2022-05-02 5:52 [PR PATCH] New package: leftwm-0.3.0 uncomfyhalomacro
` (12 preceding siblings ...)
2022-05-08 6:14 ` 0323pin
@ 2022-05-08 8:54 ` paper42
2022-05-08 9:20 ` 0323pin
` (12 subsequent siblings)
26 siblings, 0 replies; 28+ messages in thread
From: paper42 @ 2022-05-08 8:54 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 413 bytes --]
New comment by paper42 on void-packages repository
https://github.com/void-linux/void-packages/pull/36947#issuecomment-1120377693
Comment:
> > This update was not tested according to the PR description, otherwise, lgtm.
>
> Does it mean it won't be merged until someone tests to build and run?
It was build tested by CI, now someone only needs to run test it. In 99% of cases, the PR author tests the update.
^ permalink raw reply [flat|nested] 28+ messages in thread
* Re: leftwm: update to 0.3.0
2022-05-02 5:52 [PR PATCH] New package: leftwm-0.3.0 uncomfyhalomacro
` (13 preceding siblings ...)
2022-05-08 8:54 ` paper42
@ 2022-05-08 9:20 ` 0323pin
2022-05-08 15:36 ` uncomfyhalomacro
` (11 subsequent siblings)
26 siblings, 0 replies; 28+ messages in thread
From: 0323pin @ 2022-05-08 9:20 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 542 bytes --]
New comment by 0323pin on void-packages repository
https://github.com/void-linux/void-packages/pull/36947#issuecomment-1120382152
Comment:
> > > This update was not tested according to the PR description, otherwise, lgtm.
> >
> >
> > Does it mean it won't be merged until someone tests to build and run?
>
> It was build tested by CI, now someone only needs to run test it. In 99% of cases, the PR author tests the update.
I'm rather short of time but, if no one else does it within a week or so, I'll kick a build on my laptop.
^ permalink raw reply [flat|nested] 28+ messages in thread
* Re: leftwm: update to 0.3.0
2022-05-02 5:52 [PR PATCH] New package: leftwm-0.3.0 uncomfyhalomacro
` (14 preceding siblings ...)
2022-05-08 9:20 ` 0323pin
@ 2022-05-08 15:36 ` uncomfyhalomacro
2022-05-08 16:46 ` 0323pin
` (10 subsequent siblings)
26 siblings, 0 replies; 28+ messages in thread
From: uncomfyhalomacro @ 2022-05-08 15:36 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 450 bytes --]
New comment by uncomfyhalomacro on void-packages repository
https://github.com/void-linux/void-packages/pull/36947#issuecomment-1120439840
Comment:
> > This update was not tested according to the PR description, otherwise, lgtm.
>
> Does it mean it won't be merged until someone tests to build and run?
i will test it in a day or so. but i have exams and i have to vote tomorrow. sorry. i will try the build it locally as early as possible.
^ permalink raw reply [flat|nested] 28+ messages in thread
* Re: leftwm: update to 0.3.0
2022-05-02 5:52 [PR PATCH] New package: leftwm-0.3.0 uncomfyhalomacro
` (15 preceding siblings ...)
2022-05-08 15:36 ` uncomfyhalomacro
@ 2022-05-08 16:46 ` 0323pin
2022-05-08 19:20 ` 0323pin
` (9 subsequent siblings)
26 siblings, 0 replies; 28+ messages in thread
From: 0323pin @ 2022-05-08 16:46 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 486 bytes --]
New comment by 0323pin on void-packages repository
https://github.com/void-linux/void-packages/pull/36947#issuecomment-1120450709
Comment:
> > > This update was not tested according to the PR description, otherwise, lgtm.
> >
> >
> > Does it mean it won't be merged until someone tests to build and run?
>
> i will test it in a day or so. but i have exams and i have to vote tomorrow. sorry. i will try the build it locally as early as possible.
No rush, I understand you.
^ permalink raw reply [flat|nested] 28+ messages in thread
* Re: leftwm: update to 0.3.0
2022-05-02 5:52 [PR PATCH] New package: leftwm-0.3.0 uncomfyhalomacro
` (16 preceding siblings ...)
2022-05-08 16:46 ` 0323pin
@ 2022-05-08 19:20 ` 0323pin
2022-05-08 19:26 ` 0323pin
` (8 subsequent siblings)
26 siblings, 0 replies; 28+ messages in thread
From: 0323pin @ 2022-05-08 19:20 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 447 bytes --]
New comment by 0323pin on void-packages repository
https://github.com/void-linux/void-packages/pull/36947#issuecomment-1120473000
Comment:
@uncomfyhalomacro No need to test the pkg, I've done it. Take care and thanks for the update.
@paper42 Built and running on musl x86_64

Can this merged now?
^ permalink raw reply [flat|nested] 28+ messages in thread
* Re: leftwm: update to 0.3.0
2022-05-02 5:52 [PR PATCH] New package: leftwm-0.3.0 uncomfyhalomacro
` (17 preceding siblings ...)
2022-05-08 19:20 ` 0323pin
@ 2022-05-08 19:26 ` 0323pin
2022-05-08 20:33 ` paper42
` (7 subsequent siblings)
26 siblings, 0 replies; 28+ messages in thread
From: 0323pin @ 2022-05-08 19:26 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 460 bytes --]
New comment by 0323pin on void-packages repository
https://github.com/void-linux/void-packages/pull/36947#issuecomment-1120473000
Comment:
@uncomfyhalomacro No need to test the pkg, I've done it. Take care and thanks for the update.
@paper42 Built natively and running on `musl` x86_64

Can this merged now?
^ permalink raw reply [flat|nested] 28+ messages in thread
* Re: leftwm: update to 0.3.0
2022-05-02 5:52 [PR PATCH] New package: leftwm-0.3.0 uncomfyhalomacro
` (18 preceding siblings ...)
2022-05-08 19:26 ` 0323pin
@ 2022-05-08 20:33 ` paper42
2022-05-08 20:33 ` [PR PATCH] [Merged]: " paper42
` (6 subsequent siblings)
26 siblings, 0 replies; 28+ messages in thread
From: paper42 @ 2022-05-08 20:33 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 326 bytes --]
New comment by paper42 on void-packages repository
https://github.com/void-linux/void-packages/pull/36947#issuecomment-1120482905
Comment:
> @uncomfyhalomacro No need to test the pkg, I've done it. Take care and thanks for the update.
> Can this merged now?
Sure, thank you for testing
@uncomfyhalomacro good luck!
^ permalink raw reply [flat|nested] 28+ messages in thread
* Re: [PR PATCH] [Merged]: leftwm: update to 0.3.0
2022-05-02 5:52 [PR PATCH] New package: leftwm-0.3.0 uncomfyhalomacro
` (19 preceding siblings ...)
2022-05-08 20:33 ` paper42
@ 2022-05-08 20:33 ` paper42
2022-05-08 20:59 ` 0323pin
` (5 subsequent siblings)
26 siblings, 0 replies; 28+ messages in thread
From: paper42 @ 2022-05-08 20:33 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 228 bytes --]
There's a merged pull request on the void-packages repository
leftwm: update to 0.3.0
https://github.com/void-linux/void-packages/pull/36947
Description:
#### Testing the changes
- I tested the changes in this PR: **NO**
^ permalink raw reply [flat|nested] 28+ messages in thread
* Re: leftwm: update to 0.3.0
2022-05-02 5:52 [PR PATCH] New package: leftwm-0.3.0 uncomfyhalomacro
` (20 preceding siblings ...)
2022-05-08 20:33 ` [PR PATCH] [Merged]: " paper42
@ 2022-05-08 20:59 ` 0323pin
2022-05-09 0:30 ` uncomfyhalomacro
` (4 subsequent siblings)
26 siblings, 0 replies; 28+ messages in thread
From: 0323pin @ 2022-05-08 20:59 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 158 bytes --]
New comment by 0323pin on void-packages repository
https://github.com/void-linux/void-packages/pull/36947#issuecomment-1120486122
Comment:
@paper42 thanks!
^ permalink raw reply [flat|nested] 28+ messages in thread
* Re: leftwm: update to 0.3.0
2022-05-02 5:52 [PR PATCH] New package: leftwm-0.3.0 uncomfyhalomacro
` (21 preceding siblings ...)
2022-05-08 20:59 ` 0323pin
@ 2022-05-09 0:30 ` uncomfyhalomacro
2022-10-02 16:33 ` 0323pin
` (3 subsequent siblings)
26 siblings, 0 replies; 28+ messages in thread
From: uncomfyhalomacro @ 2022-05-09 0:30 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 194 bytes --]
New comment by uncomfyhalomacro on void-packages repository
https://github.com/void-linux/void-packages/pull/36947#issuecomment-1120519589
Comment:
> @paper42 thanks!
oh thanks both of u.!
^ permalink raw reply [flat|nested] 28+ messages in thread
* Re: leftwm: update to 0.3.0
2022-05-02 5:52 [PR PATCH] New package: leftwm-0.3.0 uncomfyhalomacro
` (22 preceding siblings ...)
2022-05-09 0:30 ` uncomfyhalomacro
@ 2022-10-02 16:33 ` 0323pin
2022-10-02 16:34 ` 0323pin
` (2 subsequent siblings)
26 siblings, 0 replies; 28+ messages in thread
From: 0323pin @ 2022-10-02 16:33 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 413 bytes --]
New comment by 0323pin on void-packages repository
https://github.com/void-linux/void-packages/pull/36947#issuecomment-1264682888
Comment:
Any chance to bump this to 0.4.0?
There are major changes, including a built-in hotkey daemon (`lefthk`) and the use of `ron` instead of `toml` for configuration.
I've been running on it for a month or so on NetBSD.
I can test it if someone bumps the template. Thanks
^ permalink raw reply [flat|nested] 28+ messages in thread
* Re: leftwm: update to 0.3.0
2022-05-02 5:52 [PR PATCH] New package: leftwm-0.3.0 uncomfyhalomacro
` (23 preceding siblings ...)
2022-10-02 16:33 ` 0323pin
@ 2022-10-02 16:34 ` 0323pin
2022-10-03 3:34 ` uncomfyhalomacro
2022-10-03 7:01 ` 0323pin
26 siblings, 0 replies; 28+ messages in thread
From: 0323pin @ 2022-10-02 16:34 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 410 bytes --]
New comment by 0323pin on void-packages repository
https://github.com/void-linux/void-packages/pull/36947#issuecomment-1264682888
Comment:
Any chance to bump this to 0.4.0?
There are major changes, including a built-in hotkey daemon (`lefthk`) and the use of `ron` instead of `toml` for configuration.
I've been running it for a month or so on NetBSD.
I can test it if someone bumps the template. Thanks
^ permalink raw reply [flat|nested] 28+ messages in thread
* Re: leftwm: update to 0.3.0
2022-05-02 5:52 [PR PATCH] New package: leftwm-0.3.0 uncomfyhalomacro
` (24 preceding siblings ...)
2022-10-02 16:34 ` 0323pin
@ 2022-10-03 3:34 ` uncomfyhalomacro
2022-10-03 7:01 ` 0323pin
26 siblings, 0 replies; 28+ messages in thread
From: uncomfyhalomacro @ 2022-10-03 3:34 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 527 bytes --]
New comment by uncomfyhalomacro on void-packages repository
https://github.com/void-linux/void-packages/pull/36947#issuecomment-1264888997
Comment:
> Any chance to bump this to 0.4.0?
> There are major changes, including a built-in hotkey daemon (`lefthk`) and the use of `ron` instead of `toml` for configuration.
> I've been running it for a month or so on NetBSD.
> I can test it if someone bumps the template. Thanks
yes i will update this later tonight. im waiting for someone to ping me because im too busy huhu.
^ permalink raw reply [flat|nested] 28+ messages in thread
* Re: leftwm: update to 0.3.0
2022-05-02 5:52 [PR PATCH] New package: leftwm-0.3.0 uncomfyhalomacro
` (25 preceding siblings ...)
2022-10-03 3:34 ` uncomfyhalomacro
@ 2022-10-03 7:01 ` 0323pin
26 siblings, 0 replies; 28+ messages in thread
From: 0323pin @ 2022-10-03 7:01 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 892 bytes --]
New comment by 0323pin on void-packages repository
https://github.com/void-linux/void-packages/pull/36947#issuecomment-1265015585
Comment:
@uncomfyhalomacro Thanks, appreciated.
An heads-up, though.
I've [merged](http://mail-index.netbsd.org/pkgsrc-changes/2022/10/02/msg261412.html) 0.4.0 on NetBSD yesterday, and you need to build with the default features off. Default now includes logging using `journald-log`, which is a systemd-thing.
You will need to build with the equivalent of `cargo build --release --no-default-features --features=lefthk,sys-log`, which in NetBSD world translates into:
```
CARGO_NO_DEFAULT_FEATURES= YES
CARGO_FEATURES+= lefthk sys-log
```
So, use whatever is the Voids equivalent to that.
Once again, thanks! I maintain well over a hundred packages for NetBSD and have no time to contribute to Void as well. Even if I use it on another machine.
^ permalink raw reply [flat|nested] 28+ messages in thread
end of thread, other threads:[~2022-10-03 7:01 UTC | newest]
Thread overview: 28+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-02 5:52 [PR PATCH] New package: leftwm-0.3.0 uncomfyhalomacro
2022-05-02 5:59 ` classabbyamp
2022-05-02 6:10 ` [PR PATCH] [Updated] leftwm: update to 0.3.0 uncomfyhalomacro
2022-05-02 6:10 ` uncomfyhalomacro
2022-05-02 6:11 ` uncomfyhalomacro
2022-05-02 6:12 ` uncomfyhalomacro
2022-05-02 6:18 ` 0323pin
2022-05-02 6:20 ` uncomfyhalomacro
2022-05-02 6:24 ` 0323pin
2022-05-07 4:54 ` 0323pin
2022-05-07 5:07 ` uncomfyhalomacro
2022-05-07 5:21 ` 0323pin
2022-05-07 21:58 ` paper42
2022-05-08 6:14 ` 0323pin
2022-05-08 8:54 ` paper42
2022-05-08 9:20 ` 0323pin
2022-05-08 15:36 ` uncomfyhalomacro
2022-05-08 16:46 ` 0323pin
2022-05-08 19:20 ` 0323pin
2022-05-08 19:26 ` 0323pin
2022-05-08 20:33 ` paper42
2022-05-08 20:33 ` [PR PATCH] [Merged]: " paper42
2022-05-08 20:59 ` 0323pin
2022-05-09 0:30 ` uncomfyhalomacro
2022-10-02 16:33 ` 0323pin
2022-10-02 16:34 ` 0323pin
2022-10-03 3:34 ` uncomfyhalomacro
2022-10-03 7:01 ` 0323pin
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).