Github messages for voidlinux
 help / color / mirror / Atom feed
* [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

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