Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] pekwm: update to 0.1.18
@ 2021-01-09 18:57 biopsin
  2021-01-10 10:42 ` [PR PATCH] [Updated] " biopsin
                   ` (10 more replies)
  0 siblings, 11 replies; 12+ messages in thread
From: biopsin @ 2021-01-09 18:57 UTC (permalink / raw)
  To: ml

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

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

https://github.com/biopsin/void-packages patch-1
https://github.com/void-linux/void-packages/pull/27788

pekwm: update to 0.1.18
Switched to cmake (notified about depricated issue https://github.com/pekdon/pekwm/issues/28)
Switched distfiles to pekdon@github
Become maintainer
Heads up : jpeg support will be dropped in next release
Tested : armv7l, i686, x86_84/-musl


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

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

From addf734b938fdf795eedfa9094ac9d1be68c23f6 Mon Sep 17 00:00:00 2001
From: biopsin <60029989+biopsin@users.noreply.github.com>
Date: Sat, 9 Jan 2021 19:44:39 +0100
Subject: [PATCH] pekwm: update to 0.1.18

Switched to cmake (notified about depricated issue https://github.com/pekdon/pekwm/issues/28)
Switched distfiles to pekdon@github
Become maintainer
Heads up : jpeg support will be dropped in next release
Tested : armv7l, i686, x86_84/-musl
---
 srcpkgs/pekwm/template | 41 +++++++++++++----------------------------
 1 file changed, 13 insertions(+), 28 deletions(-)

diff --git a/srcpkgs/pekwm/template b/srcpkgs/pekwm/template
index 13859b65f0a..aa69d771252 100644
--- a/srcpkgs/pekwm/template
+++ b/srcpkgs/pekwm/template
@@ -1,33 +1,18 @@
 # Template file for 'pekwm'
 pkgname=pekwm
-version=0.1.17
-revision=4
-build_style=gnu-configure
-configure_args="--with-pkg-exec-prefix=/usr
- ac_cv_lib_X11_XOpenDisplay=yes ac_cv_lib_Xft_XftFontOpen=yes
- ac_cv_lib_Xrender_XRenderCreatePicture=yes ac_cv_lib_Xpm_XpmReadFileToPixmap=yes
- ac_cv_lib_Xinerama_XineramaQueryScreens=yes ac_cv_lib_Xext_XShapeCombineShape=yes
- ac_cv_lib_Xrandr_XRRQueryExtension=yes ac_cv_lib_fribidi_fribidi_version_info=yes"
+version=0.1.18
+revision=1
+build_style=cmake
+makedepends="libjpeg-turbo-devel libpng-devel libXinerama-devel libSM-devel
+ libXft-devel libXrender-devel fontconfig-devel libXpm-devel libXrandr-devel"
 short_desc="Window manager based on aewm++"
-maintainer="Orphaned <orphan@voidlinux.org>"
-license="GPL-2"
+maintainer="biopsin <biopsin@teknik.io>"
+license="GPL-2.0-or-later"
 homepage="https://www.pekwm.org/projects/pekwm"
-distfiles="${DEBIAN_SITE}/main/p/pekwm/pekwm_${version}.orig.tar.bz2"
-checksum=8a1fd3bf9f38e8c7bb2b2864c090f986b60cec2281ecf1bba462d120fb327d00
+distfiles="https://github.com/pekdon/pekwm/releases/download/release-${version}/pekwm-${version}.tar.gz"
+checksum=7becc43b79eab0ff754572852e385435222420385107c881a93ac4dc4ae96065
+
+post_extract() {
+    vsed -i 's| etc| /etc|' data/CMakeLists.txt
+}
 
-hostmakedepends="pkg-config"
-makedepends="libjpeg-turbo-devel libpng-devel libXinerama-devel
- libSM-devel libXft-devel libXrender-devel fontconfig-devel libXpm-devel libXrandr-devel"
-conf_files="
-	/etc/pekwm/vars
-	/etc/pekwm/mouse
-	/etc/pekwm/menu
-	/etc/pekwm/start
-	/etc/pekwm/keys
-	/etc/pekwm/autoproperties_typerules
-	/etc/pekwm/config
-	/etc/pekwm/autoproperties
-	/etc/pekwm/mouse_system
-	/etc/pekwm/mouse_sloppy
-	/etc/pekwm/mouse_click
-	/etc/pekwm/config_system"

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

* Re: [PR PATCH] [Updated] pekwm: update to 0.1.18
  2021-01-09 18:57 [PR PATCH] pekwm: update to 0.1.18 biopsin
@ 2021-01-10 10:42 ` biopsin
  2021-01-10 11:51 ` biopsin
                   ` (9 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: biopsin @ 2021-01-10 10:42 UTC (permalink / raw)
  To: ml

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

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

https://github.com/biopsin/void-packages patch-1
https://github.com/void-linux/void-packages/pull/27788

pekwm: update to 0.1.18
Switched to cmake (notified about depricated issue https://github.com/pekdon/pekwm/issues/28)
Switched distfiles to pekdon@github
Become maintainer
Heads up : jpeg support will be dropped in next release
Tested : armv7l, i686, x86_84/-musl


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

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

From addf734b938fdf795eedfa9094ac9d1be68c23f6 Mon Sep 17 00:00:00 2001
From: biopsin <60029989+biopsin@users.noreply.github.com>
Date: Sat, 9 Jan 2021 19:44:39 +0100
Subject: [PATCH 1/2] pekwm: update to 0.1.18

Switched to cmake (notified about depricated issue https://github.com/pekdon/pekwm/issues/28)
Switched distfiles to pekdon@github
Become maintainer
Heads up : jpeg support will be dropped in next release
Tested : armv7l, i686, x86_84/-musl
---
 srcpkgs/pekwm/template | 41 +++++++++++++----------------------------
 1 file changed, 13 insertions(+), 28 deletions(-)

diff --git a/srcpkgs/pekwm/template b/srcpkgs/pekwm/template
index 13859b65f0a..aa69d771252 100644
--- a/srcpkgs/pekwm/template
+++ b/srcpkgs/pekwm/template
@@ -1,33 +1,18 @@
 # Template file for 'pekwm'
 pkgname=pekwm
-version=0.1.17
-revision=4
-build_style=gnu-configure
-configure_args="--with-pkg-exec-prefix=/usr
- ac_cv_lib_X11_XOpenDisplay=yes ac_cv_lib_Xft_XftFontOpen=yes
- ac_cv_lib_Xrender_XRenderCreatePicture=yes ac_cv_lib_Xpm_XpmReadFileToPixmap=yes
- ac_cv_lib_Xinerama_XineramaQueryScreens=yes ac_cv_lib_Xext_XShapeCombineShape=yes
- ac_cv_lib_Xrandr_XRRQueryExtension=yes ac_cv_lib_fribidi_fribidi_version_info=yes"
+version=0.1.18
+revision=1
+build_style=cmake
+makedepends="libjpeg-turbo-devel libpng-devel libXinerama-devel libSM-devel
+ libXft-devel libXrender-devel fontconfig-devel libXpm-devel libXrandr-devel"
 short_desc="Window manager based on aewm++"
-maintainer="Orphaned <orphan@voidlinux.org>"
-license="GPL-2"
+maintainer="biopsin <biopsin@teknik.io>"
+license="GPL-2.0-or-later"
 homepage="https://www.pekwm.org/projects/pekwm"
-distfiles="${DEBIAN_SITE}/main/p/pekwm/pekwm_${version}.orig.tar.bz2"
-checksum=8a1fd3bf9f38e8c7bb2b2864c090f986b60cec2281ecf1bba462d120fb327d00
+distfiles="https://github.com/pekdon/pekwm/releases/download/release-${version}/pekwm-${version}.tar.gz"
+checksum=7becc43b79eab0ff754572852e385435222420385107c881a93ac4dc4ae96065
+
+post_extract() {
+    vsed -i 's| etc| /etc|' data/CMakeLists.txt
+}
 
-hostmakedepends="pkg-config"
-makedepends="libjpeg-turbo-devel libpng-devel libXinerama-devel
- libSM-devel libXft-devel libXrender-devel fontconfig-devel libXpm-devel libXrandr-devel"
-conf_files="
-	/etc/pekwm/vars
-	/etc/pekwm/mouse
-	/etc/pekwm/menu
-	/etc/pekwm/start
-	/etc/pekwm/keys
-	/etc/pekwm/autoproperties_typerules
-	/etc/pekwm/config
-	/etc/pekwm/autoproperties
-	/etc/pekwm/mouse_system
-	/etc/pekwm/mouse_sloppy
-	/etc/pekwm/mouse_click
-	/etc/pekwm/config_system"

From 8f635f5c2b99bd3fdb40c51ebcac089834d89c8f Mon Sep 17 00:00:00 2001
From: biopsin <biopsin@teknik.io>
Date: Sun, 10 Jan 2021 10:39:57 +0000
Subject: [PATCH 2/2] Fix xlint

---
 srcpkgs/pekwm/template | 1 -
 1 file changed, 1 deletion(-)

diff --git a/srcpkgs/pekwm/template b/srcpkgs/pekwm/template
index aa69d771252..c25295012a3 100644
--- a/srcpkgs/pekwm/template
+++ b/srcpkgs/pekwm/template
@@ -15,4 +15,3 @@ checksum=7becc43b79eab0ff754572852e385435222420385107c881a93ac4dc4ae96065
 post_extract() {
     vsed -i 's| etc| /etc|' data/CMakeLists.txt
 }
-

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

* Re: [PR PATCH] [Updated] pekwm: update to 0.1.18
  2021-01-09 18:57 [PR PATCH] pekwm: update to 0.1.18 biopsin
  2021-01-10 10:42 ` [PR PATCH] [Updated] " biopsin
@ 2021-01-10 11:51 ` biopsin
  2021-01-12  3:45 ` [PR REVIEW] " ericonr
                   ` (8 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: biopsin @ 2021-01-10 11:51 UTC (permalink / raw)
  To: ml

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

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

https://github.com/biopsin/void-packages patch-1
https://github.com/void-linux/void-packages/pull/27788

pekwm: update to 0.1.18
Switched to cmake (notified about depricated issue https://github.com/pekdon/pekwm/issues/28)
Switched distfiles to pekdon@github
Become maintainer
Heads up : jpeg support will be dropped in next release
Tested : armv7l, i686, x86_84/-musl


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

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

From 3d6b69de7d0982485e71049a8a6d59e075a1b392 Mon Sep 17 00:00:00 2001
From: biopsin <60029989+biopsin@users.noreply.github.com>
Date: Sat, 9 Jan 2021 19:44:39 +0100
Subject: [PATCH] pekwm: update to 0.1.18

Switched to cmake (notified about depricated issue https://github.com/pekdon/pekwm/issues/28)
Switched distfiles to pekdon@github
Become maintainer
Heads up : jpeg support will be dropped in next release
Tested : armv7l, i686, x86_84/-musl
---
 srcpkgs/pekwm/template | 40 ++++++++++++----------------------------
 1 file changed, 12 insertions(+), 28 deletions(-)

diff --git a/srcpkgs/pekwm/template b/srcpkgs/pekwm/template
index 13859b65f0a..1ed33c5f2cf 100644
--- a/srcpkgs/pekwm/template
+++ b/srcpkgs/pekwm/template
@@ -1,33 +1,17 @@
 # Template file for 'pekwm'
 pkgname=pekwm
-version=0.1.17
-revision=4
-build_style=gnu-configure
-configure_args="--with-pkg-exec-prefix=/usr
- ac_cv_lib_X11_XOpenDisplay=yes ac_cv_lib_Xft_XftFontOpen=yes
- ac_cv_lib_Xrender_XRenderCreatePicture=yes ac_cv_lib_Xpm_XpmReadFileToPixmap=yes
- ac_cv_lib_Xinerama_XineramaQueryScreens=yes ac_cv_lib_Xext_XShapeCombineShape=yes
- ac_cv_lib_Xrandr_XRRQueryExtension=yes ac_cv_lib_fribidi_fribidi_version_info=yes"
+version=0.1.18
+revision=1
+build_style=cmake
+makedepends="libjpeg-turbo-devel libpng-devel libXinerama-devel libSM-devel
+ libXft-devel libXrender-devel fontconfig-devel libXpm-devel libXrandr-devel"
 short_desc="Window manager based on aewm++"
-maintainer="Orphaned <orphan@voidlinux.org>"
-license="GPL-2"
+maintainer="biopsin <biopsin@teknik.io>"
+license="GPL-2.0-or-later"
 homepage="https://www.pekwm.org/projects/pekwm"
-distfiles="${DEBIAN_SITE}/main/p/pekwm/pekwm_${version}.orig.tar.bz2"
-checksum=8a1fd3bf9f38e8c7bb2b2864c090f986b60cec2281ecf1bba462d120fb327d00
+distfiles="https://github.com/pekdon/pekwm/releases/download/release-${version}/pekwm-${version}.tar.gz"
+checksum=7becc43b79eab0ff754572852e385435222420385107c881a93ac4dc4ae96065
 
-hostmakedepends="pkg-config"
-makedepends="libjpeg-turbo-devel libpng-devel libXinerama-devel
- libSM-devel libXft-devel libXrender-devel fontconfig-devel libXpm-devel libXrandr-devel"
-conf_files="
-	/etc/pekwm/vars
-	/etc/pekwm/mouse
-	/etc/pekwm/menu
-	/etc/pekwm/start
-	/etc/pekwm/keys
-	/etc/pekwm/autoproperties_typerules
-	/etc/pekwm/config
-	/etc/pekwm/autoproperties
-	/etc/pekwm/mouse_system
-	/etc/pekwm/mouse_sloppy
-	/etc/pekwm/mouse_click
-	/etc/pekwm/config_system"
+post_extract() {
+	vsed -i 's| etc| /etc|' data/CMakeLists.txt
+}

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

* Re: [PR REVIEW] pekwm: update to 0.1.18
  2021-01-09 18:57 [PR PATCH] pekwm: update to 0.1.18 biopsin
  2021-01-10 10:42 ` [PR PATCH] [Updated] " biopsin
  2021-01-10 11:51 ` biopsin
@ 2021-01-12  3:45 ` ericonr
  2021-01-12  5:37 ` biopsin
                   ` (7 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: ericonr @ 2021-01-12  3:45 UTC (permalink / raw)
  To: ml

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

New review comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/27788#discussion_r555493094

Comment:
Did it stop using these files?

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

* Re: [PR REVIEW] pekwm: update to 0.1.18
  2021-01-09 18:57 [PR PATCH] pekwm: update to 0.1.18 biopsin
                   ` (2 preceding siblings ...)
  2021-01-12  3:45 ` [PR REVIEW] " ericonr
@ 2021-01-12  5:37 ` biopsin
  2021-01-12  5:47 ` [PR PATCH] [Updated] " biopsin
                   ` (6 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: biopsin @ 2021-01-12  5:37 UTC (permalink / raw)
  To: ml

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

New review comment by biopsin on void-packages repository

https://github.com/void-linux/void-packages/pull/27788#discussion_r555524851

Comment:
No they are still in use. 
Hm, ok I see what the conf_files purpose is (pkg ownership),
I shall correct my blunder in a short while.


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

* Re: [PR PATCH] [Updated] pekwm: update to 0.1.18
  2021-01-09 18:57 [PR PATCH] pekwm: update to 0.1.18 biopsin
                   ` (3 preceding siblings ...)
  2021-01-12  5:37 ` biopsin
@ 2021-01-12  5:47 ` biopsin
  2021-01-12  6:06 ` biopsin
                   ` (5 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: biopsin @ 2021-01-12  5:47 UTC (permalink / raw)
  To: ml

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

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

https://github.com/biopsin/void-packages patch-1
https://github.com/void-linux/void-packages/pull/27788

pekwm: update to 0.1.18
Switched to cmake (notified about depricated issue https://github.com/pekdon/pekwm/issues/28)
Switched distfiles to pekdon@github
Become maintainer
Heads up : jpeg support will be dropped in next release
Tested : armv7l, i686, x86_84/-musl


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

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

From 3d6b69de7d0982485e71049a8a6d59e075a1b392 Mon Sep 17 00:00:00 2001
From: biopsin <60029989+biopsin@users.noreply.github.com>
Date: Sat, 9 Jan 2021 19:44:39 +0100
Subject: [PATCH 1/2] pekwm: update to 0.1.18

Switched to cmake (notified about depricated issue https://github.com/pekdon/pekwm/issues/28)
Switched distfiles to pekdon@github
Become maintainer
Heads up : jpeg support will be dropped in next release
Tested : armv7l, i686, x86_84/-musl
---
 srcpkgs/pekwm/template | 40 ++++++++++++----------------------------
 1 file changed, 12 insertions(+), 28 deletions(-)

diff --git a/srcpkgs/pekwm/template b/srcpkgs/pekwm/template
index 13859b65f0a..1ed33c5f2cf 100644
--- a/srcpkgs/pekwm/template
+++ b/srcpkgs/pekwm/template
@@ -1,33 +1,17 @@
 # Template file for 'pekwm'
 pkgname=pekwm
-version=0.1.17
-revision=4
-build_style=gnu-configure
-configure_args="--with-pkg-exec-prefix=/usr
- ac_cv_lib_X11_XOpenDisplay=yes ac_cv_lib_Xft_XftFontOpen=yes
- ac_cv_lib_Xrender_XRenderCreatePicture=yes ac_cv_lib_Xpm_XpmReadFileToPixmap=yes
- ac_cv_lib_Xinerama_XineramaQueryScreens=yes ac_cv_lib_Xext_XShapeCombineShape=yes
- ac_cv_lib_Xrandr_XRRQueryExtension=yes ac_cv_lib_fribidi_fribidi_version_info=yes"
+version=0.1.18
+revision=1
+build_style=cmake
+makedepends="libjpeg-turbo-devel libpng-devel libXinerama-devel libSM-devel
+ libXft-devel libXrender-devel fontconfig-devel libXpm-devel libXrandr-devel"
 short_desc="Window manager based on aewm++"
-maintainer="Orphaned <orphan@voidlinux.org>"
-license="GPL-2"
+maintainer="biopsin <biopsin@teknik.io>"
+license="GPL-2.0-or-later"
 homepage="https://www.pekwm.org/projects/pekwm"
-distfiles="${DEBIAN_SITE}/main/p/pekwm/pekwm_${version}.orig.tar.bz2"
-checksum=8a1fd3bf9f38e8c7bb2b2864c090f986b60cec2281ecf1bba462d120fb327d00
+distfiles="https://github.com/pekdon/pekwm/releases/download/release-${version}/pekwm-${version}.tar.gz"
+checksum=7becc43b79eab0ff754572852e385435222420385107c881a93ac4dc4ae96065
 
-hostmakedepends="pkg-config"
-makedepends="libjpeg-turbo-devel libpng-devel libXinerama-devel
- libSM-devel libXft-devel libXrender-devel fontconfig-devel libXpm-devel libXrandr-devel"
-conf_files="
-	/etc/pekwm/vars
-	/etc/pekwm/mouse
-	/etc/pekwm/menu
-	/etc/pekwm/start
-	/etc/pekwm/keys
-	/etc/pekwm/autoproperties_typerules
-	/etc/pekwm/config
-	/etc/pekwm/autoproperties
-	/etc/pekwm/mouse_system
-	/etc/pekwm/mouse_sloppy
-	/etc/pekwm/mouse_click
-	/etc/pekwm/config_system"
+post_extract() {
+	vsed -i 's| etc| /etc|' data/CMakeLists.txt
+}

From fe1efaf759ed6c7c8a862a961b4cdf68e9e9081d Mon Sep 17 00:00:00 2001
From: biopsin <biopsin@teknik.io>
Date: Tue, 12 Jan 2021 05:49:05 +0000
Subject: [PATCH 2/2] fix conf_files

---
 srcpkgs/pekwm/template | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/srcpkgs/pekwm/template b/srcpkgs/pekwm/template
index 1ed33c5f2cf..6c24bd73b2a 100644
--- a/srcpkgs/pekwm/template
+++ b/srcpkgs/pekwm/template
@@ -3,6 +3,19 @@ pkgname=pekwm
 version=0.1.18
 revision=1
 build_style=cmake
+conf_files="
+	/etc/pekwm/vars
+	/etc/pekwm/mouse
+	/etc/pekwm/mouse
+	/etc/pekwm/menu
+	/etc/pekwm/start
+	/etc/pekwm/keys
+	/etc/pekwm/autoproperties_typerules
+	/etc/pekwm/config
+	/etc/pekwm/autoproperties
+	/etc/pekwm/mouse_system
+	/etc/pekwm/mouse_sloppy
+	/etc/pekwm/mouse_click"
 makedepends="libjpeg-turbo-devel libpng-devel libXinerama-devel libSM-devel
  libXft-devel libXrender-devel fontconfig-devel libXpm-devel libXrandr-devel"
 short_desc="Window manager based on aewm++"

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

* Re: [PR PATCH] [Updated] pekwm: update to 0.1.18
  2021-01-09 18:57 [PR PATCH] pekwm: update to 0.1.18 biopsin
                   ` (4 preceding siblings ...)
  2021-01-12  5:47 ` [PR PATCH] [Updated] " biopsin
@ 2021-01-12  6:06 ` biopsin
  2021-01-20  1:05 ` ericonr
                   ` (4 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: biopsin @ 2021-01-12  6:06 UTC (permalink / raw)
  To: ml

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

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

https://github.com/biopsin/void-packages patch-1
https://github.com/void-linux/void-packages/pull/27788

pekwm: update to 0.1.18
Switched to cmake (notified about depricated issue https://github.com/pekdon/pekwm/issues/28)
Switched distfiles to pekdon@github
Become maintainer
Heads up : jpeg support will be dropped in next release
Tested : armv7l, i686, x86_84/-musl


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

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

From b759946e31b08d384b7f13dba0dc32e1f30f9161 Mon Sep 17 00:00:00 2001
From: biopsin <60029989+biopsin@users.noreply.github.com>
Date: Sat, 9 Jan 2021 19:44:39 +0100
Subject: [PATCH] pekwm: update to 0.1.18

Switched to cmake
distfiles to pekdon@github
Become maintainer
Heads up : jpeg support will be dropped in next release
Tested : armv7l, i686, x86_84/-musl

fix conf_files
---
 srcpkgs/pekwm/template | 37 +++++++++++++++++--------------------
 1 file changed, 17 insertions(+), 20 deletions(-)

diff --git a/srcpkgs/pekwm/template b/srcpkgs/pekwm/template
index 13859b65f0a..6c24bd73b2a 100644
--- a/srcpkgs/pekwm/template
+++ b/srcpkgs/pekwm/template
@@ -1,26 +1,12 @@
 # Template file for 'pekwm'
 pkgname=pekwm
-version=0.1.17
-revision=4
-build_style=gnu-configure
-configure_args="--with-pkg-exec-prefix=/usr
- ac_cv_lib_X11_XOpenDisplay=yes ac_cv_lib_Xft_XftFontOpen=yes
- ac_cv_lib_Xrender_XRenderCreatePicture=yes ac_cv_lib_Xpm_XpmReadFileToPixmap=yes
- ac_cv_lib_Xinerama_XineramaQueryScreens=yes ac_cv_lib_Xext_XShapeCombineShape=yes
- ac_cv_lib_Xrandr_XRRQueryExtension=yes ac_cv_lib_fribidi_fribidi_version_info=yes"
-short_desc="Window manager based on aewm++"
-maintainer="Orphaned <orphan@voidlinux.org>"
-license="GPL-2"
-homepage="https://www.pekwm.org/projects/pekwm"
-distfiles="${DEBIAN_SITE}/main/p/pekwm/pekwm_${version}.orig.tar.bz2"
-checksum=8a1fd3bf9f38e8c7bb2b2864c090f986b60cec2281ecf1bba462d120fb327d00
-
-hostmakedepends="pkg-config"
-makedepends="libjpeg-turbo-devel libpng-devel libXinerama-devel
- libSM-devel libXft-devel libXrender-devel fontconfig-devel libXpm-devel libXrandr-devel"
+version=0.1.18
+revision=1
+build_style=cmake
 conf_files="
 	/etc/pekwm/vars
 	/etc/pekwm/mouse
+	/etc/pekwm/mouse
 	/etc/pekwm/menu
 	/etc/pekwm/start
 	/etc/pekwm/keys
@@ -29,5 +15,16 @@ conf_files="
 	/etc/pekwm/autoproperties
 	/etc/pekwm/mouse_system
 	/etc/pekwm/mouse_sloppy
-	/etc/pekwm/mouse_click
-	/etc/pekwm/config_system"
+	/etc/pekwm/mouse_click"
+makedepends="libjpeg-turbo-devel libpng-devel libXinerama-devel libSM-devel
+ libXft-devel libXrender-devel fontconfig-devel libXpm-devel libXrandr-devel"
+short_desc="Window manager based on aewm++"
+maintainer="biopsin <biopsin@teknik.io>"
+license="GPL-2.0-or-later"
+homepage="https://www.pekwm.org/projects/pekwm"
+distfiles="https://github.com/pekdon/pekwm/releases/download/release-${version}/pekwm-${version}.tar.gz"
+checksum=7becc43b79eab0ff754572852e385435222420385107c881a93ac4dc4ae96065
+
+post_extract() {
+	vsed -i 's| etc| /etc|' data/CMakeLists.txt
+}

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

* Re: pekwm: update to 0.1.18
  2021-01-09 18:57 [PR PATCH] pekwm: update to 0.1.18 biopsin
                   ` (5 preceding siblings ...)
  2021-01-12  6:06 ` biopsin
@ 2021-01-20  1:05 ` ericonr
  2021-01-20  7:50 ` [PR PATCH] [Updated] " biopsin
                   ` (3 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: ericonr @ 2021-01-20  1:05 UTC (permalink / raw)
  To: ml

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

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/27788#issuecomment-763252693

Comment:
Could you please rebase this?

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

* Re: [PR PATCH] [Updated] pekwm: update to 0.1.18
  2021-01-09 18:57 [PR PATCH] pekwm: update to 0.1.18 biopsin
                   ` (6 preceding siblings ...)
  2021-01-20  1:05 ` ericonr
@ 2021-01-20  7:50 ` biopsin
  2021-01-20  7:51 ` biopsin
                   ` (2 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: biopsin @ 2021-01-20  7:50 UTC (permalink / raw)
  To: ml

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

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

https://github.com/biopsin/void-packages patch-1
https://github.com/void-linux/void-packages/pull/27788

pekwm: update to 0.1.18
Switched to cmake (notified about depricated issue https://github.com/pekdon/pekwm/issues/28)
Switched distfiles to pekdon@github
Become maintainer
Heads up : jpeg support will be dropped in next release
Tested : armv7l, i686, x86_84/-musl


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

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

From 72374347e6d10f9db6de96b65a5d172cd4cd4986 Mon Sep 17 00:00:00 2001
From: biopsin <60029989+biopsin@users.noreply.github.com>
Date: Sat, 9 Jan 2021 19:44:39 +0100
Subject: [PATCH] pekwm: update to 0.1.18

Switched to cmake
distfiles to pekdon@github
Become maintainer
Heads up : jpeg support will be dropped in next release
Tested : armv7l, i686, x86_84/-musl

fix conf_files
rebase
---
 srcpkgs/pekwm/template | 53 ++++++++++++++++++++----------------------
 1 file changed, 25 insertions(+), 28 deletions(-)

diff --git a/srcpkgs/pekwm/template b/srcpkgs/pekwm/template
index 19fdb952d03..9888bac9ba5 100644
--- a/srcpkgs/pekwm/template
+++ b/srcpkgs/pekwm/template
@@ -1,35 +1,32 @@
 # Template file for 'pekwm'
 pkgname=pekwm
-version=0.1.17
-revision=4
-build_style=gnu-configure
-configure_args="--with-pkg-exec-prefix=/usr
- ac_cv_lib_X11_XOpenDisplay=yes ac_cv_lib_Xft_XftFontOpen=yes
- ac_cv_lib_Xrender_XRenderCreatePicture=yes ac_cv_lib_Xpm_XpmReadFileToPixmap=yes
- ac_cv_lib_Xinerama_XineramaQueryScreens=yes ac_cv_lib_Xext_XShapeCombineShape=yes
- ac_cv_lib_Xrandr_XRRQueryExtension=yes ac_cv_lib_fribidi_fribidi_version_info=yes"
-hostmakedepends="pkg-config"
-makedepends="libjpeg-turbo-devel libpng-devel libXinerama-devel
- libSM-devel libXft-devel libXrender-devel fontconfig-devel libXpm-devel libXrandr-devel"
-short_desc="Window manager based on aewm++"
-maintainer="Orphaned <orphan@voidlinux.org>"
-license="GPL-2.0-or-later"
-homepage="https://www.pekwm.org/projects/pekwm"
-distfiles="${DEBIAN_SITE}/main/p/pekwm/pekwm_${version}.orig.tar.bz2"
-checksum=8a1fd3bf9f38e8c7bb2b2864c090f986b60cec2281ecf1bba462d120fb327d00
-
+version=0.1.18
+revision=1
+build_style=cmake
 conf_files="
-	/etc/pekwm/vars
-	/etc/pekwm/mouse
-	/etc/pekwm/menu
-	/etc/pekwm/start
-	/etc/pekwm/keys
+	/etc/pekwm/autoproperties
 	/etc/pekwm/autoproperties_typerules
 	/etc/pekwm/config
-	/etc/pekwm/autoproperties
-	/etc/pekwm/mouse_system
-	/etc/pekwm/mouse_sloppy
+	/etc/pekwm/config_system
+	/etc/pekwm/keys
+	/etc/pekwm/menu
+	/etc/pekwm/config
+	/etc/pekwm/mouse
 	/etc/pekwm/mouse_click
-	/etc/pekwm/config_system"
+	/etc/pekwm/mouse_sloppy
+	/etc/pekwm/mouse_system
+	/etc/pekwm/start
+	/etc/pekwm/vars"
+makedepends="libXrender-devel libXft-devel fontconfig-devel"
+short_desc="Window manager based on aewm++"
+maintainer="biopsin <biopsin@teknik.io>"
+license="GPL-2.0-or-later"
+homepage="https://www.pekwm.org/projects/pekwm"
+distfiles="https://github.com/pekdon/pekwm/releases/download/release-${version}/${pkgname}-${version}.tar.gz"
+checksum=7becc43b79eab0ff754572852e385435222420385107c881a93ac4dc4ae96065
+
+post_extract() {
+	vsed 's| etc| /etc|' -i data/CMakeLists.txt
+}
 
-CXXFLAGS="-Wno-narrowing"
+CXXFLAGS="-Wno-narrowing"
\ No newline at end of file

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

* Re: pekwm: update to 0.1.18
  2021-01-09 18:57 [PR PATCH] pekwm: update to 0.1.18 biopsin
                   ` (7 preceding siblings ...)
  2021-01-20  7:50 ` [PR PATCH] [Updated] " biopsin
@ 2021-01-20  7:51 ` biopsin
  2021-02-06 11:04 ` biopsin
  2021-02-06 11:04 ` [PR PATCH] [Closed]: " biopsin
  10 siblings, 0 replies; 12+ messages in thread
From: biopsin @ 2021-01-20  7:51 UTC (permalink / raw)
  To: ml

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

New comment by biopsin on void-packages repository

https://github.com/void-linux/void-packages/pull/27788#issuecomment-763408913

Comment:
oh crap..

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

* Re: pekwm: update to 0.1.18
  2021-01-09 18:57 [PR PATCH] pekwm: update to 0.1.18 biopsin
                   ` (8 preceding siblings ...)
  2021-01-20  7:51 ` biopsin
@ 2021-02-06 11:04 ` biopsin
  2021-02-06 11:04 ` [PR PATCH] [Closed]: " biopsin
  10 siblings, 0 replies; 12+ messages in thread
From: biopsin @ 2021-02-06 11:04 UTC (permalink / raw)
  To: ml

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

New comment by biopsin on void-packages repository

https://github.com/void-linux/void-packages/pull/27788#issuecomment-774450187

Comment:
Ok, I'm closing this PR as I have made a complete mess out of my branch.
Also noticed makefile -DSYSCONFDIR points to /usr/etc/pekwm and not /etc/pekwm
it fails initializing on startup.

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

* Re: [PR PATCH] [Closed]: pekwm: update to 0.1.18
  2021-01-09 18:57 [PR PATCH] pekwm: update to 0.1.18 biopsin
                   ` (9 preceding siblings ...)
  2021-02-06 11:04 ` biopsin
@ 2021-02-06 11:04 ` biopsin
  10 siblings, 0 replies; 12+ messages in thread
From: biopsin @ 2021-02-06 11:04 UTC (permalink / raw)
  To: ml

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

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

pekwm: update to 0.1.18
https://github.com/void-linux/void-packages/pull/27788

Description:
Switched to cmake (notified about depricated issue https://github.com/pekdon/pekwm/issues/28)
Switched distfiles to pekdon@github
Become maintainer
Heads up : jpeg support will be dropped in next release
Tested : armv7l, i686, x86_84/-musl


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

end of thread, other threads:[~2021-02-06 11:04 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-01-09 18:57 [PR PATCH] pekwm: update to 0.1.18 biopsin
2021-01-10 10:42 ` [PR PATCH] [Updated] " biopsin
2021-01-10 11:51 ` biopsin
2021-01-12  3:45 ` [PR REVIEW] " ericonr
2021-01-12  5:37 ` biopsin
2021-01-12  5:47 ` [PR PATCH] [Updated] " biopsin
2021-01-12  6:06 ` biopsin
2021-01-20  1:05 ` ericonr
2021-01-20  7:50 ` [PR PATCH] [Updated] " biopsin
2021-01-20  7:51 ` biopsin
2021-02-06 11:04 ` biopsin
2021-02-06 11:04 ` [PR PATCH] [Closed]: " biopsin

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