Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] idesk: update to 0.7.8.
@ 2022-09-30 18:50 mtboehlke
  2022-09-30 18:55 ` [PR PATCH] [Updated] " mtboehlke
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: mtboehlke @ 2022-09-30 18:50 UTC (permalink / raw)
  To: ml

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

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

https://github.com/mtboehlke/void-packages idesk
https://github.com/void-linux/void-packages/pull/39550

idesk: update to 0.7.8.
Switching upstream to maintained fork at [https://github.com/neagix/idesk](https://github.com/neagix/idesk).
This seems to be a good choice for upstream: had tagged release and ChangeLog is being kept up to date.

The re-added SVG support seems to work okay, so I have enabled it here.

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

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

<!--
#### 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/39550.patch is attached

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

From d368cdecf19c72571d1ebd972712dc048f7e48fc Mon Sep 17 00:00:00 2001
From: Mat Boehlke <mtboehlke@gmail.com>
Date: Fri, 30 Sep 2022 12:11:19 -0500
Subject: [PATCH] idesk: update to 0.7.8.

Switching upstream to maintained fork at
https://github.com/neagix/idesk

Also include upstream patch to use pkg-config instead of imlib2-config,
which has been removed from imlib2
---
 srcpkgs/idesk/patches/pkg-config.patch | 31 ++++++++++++++++++++++++++
 srcpkgs/idesk/template                 | 25 +++++++++------------
 2 files changed, 41 insertions(+), 15 deletions(-)
 create mode 100644 srcpkgs/idesk/patches/pkg-config.patch

diff --git a/srcpkgs/idesk/patches/pkg-config.patch b/srcpkgs/idesk/patches/pkg-config.patch
new file mode 100644
index 000000000000..718bef968f26
--- /dev/null
+++ b/srcpkgs/idesk/patches/pkg-config.patch
@@ -0,0 +1,31 @@
+Taken from https://github.com/neagix/idesk/commit/7ed7fae76d2896e02c115448b569d964dab895ee
+use pkg-config to find imlib2
+
+diff --git a/configure.in b/configure.in
+index 805585d..b7a1032 100644
+--- a/configure.in
++++ b/configure.in
+@@ -94,19 +94,10 @@ LIBS="$LIBS $Xext_lib"
+ 
+ dnl Imlib2 detection
+ 
+-AC_PATH_GENERIC(imlib2, , [
+-    AC_SUBST(IMLIB_LIBS)
+-   AC_SUBST(IMLIB_CXXFLAGS) ],
+-  AC_MSG_ERROR(Cannot find imlib2: Is imlib2-config in the path?
+-               You need Imlib2 to build Idesk.  Verify that you have Imlib2-dev))
+-
+-dnl the above doesn't work for some reason :/
+-IMLIB_LIBS=`imlib2-config --libs`
+-IMLIB_CFLAGS=`imlib2-config --cflags`
+-AC_SUBST(IMLIB_LIBS)
+-AC_SUBST(IMLIB_CXXFLAGS)
+-
+-CXXFLAGS="$CXXFLAGS $IMLIB_CXXFLAGS"
++PKG_PROG_PKG_CONFIG
++PKG_CHECK_MODULES([IMLIB], [imlib2 > 1.0])
++
++CXXFLAGS="$CXXFLAGS $IMLIB_CFLAGS"
+ LIBS="$LIBS $IMLIB_LIBS"
+ 
+ 
diff --git a/srcpkgs/idesk/template b/srcpkgs/idesk/template
index 19d6d4979b36..f3b85f5ffa27 100644
--- a/srcpkgs/idesk/template
+++ b/srcpkgs/idesk/template
@@ -1,27 +1,22 @@
 # Template file for 'idesk'
 pkgname=idesk
-version=0.7.5
-revision=2
+version=0.7.8
+revision=1
 build_style=gnu-configure
-hostmakedepends="pkg-config"
+configure_args="--enable-svg"
+hostmakedepends="pkg-config automake"
 makedepends="giflib-devel imlib2-devel libjpeg-turbo-devel
- libpng-devel libXft-devel libXpm-devel tiff-devel"
+	libpng-devel libXft-devel libXpm-devel tiff-devel librsvg-devel gdk-pixbuf-devel"
 short_desc="Gives users of minimal wm's icons on their desktop"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="BSD-3-Clause"
-homepage="http://idesk.sourceforge.net"
-distfiles="${SOURCEFORGE_SITE}/idesk/idesk-${version}.tar.bz2"
-checksum=d4b7ea5dcf6d49d83e2df9512d4c6388f11632a702b14f42a1bc6bffb617b3d3
+homepage="https://github.com/neagix/idesk"
+distfiles="https://github.com/neagix/idesk/archive/refs/tags/v${version}.tar.gz"
+changelog="https://raw.githubusercontent.com/neagix/idesk/master/ChangeLog"
+checksum=cb5ccc4e598d4d6de41a55512f0bff5afae16da499009b109322e43286c1c7bd
 
 pre_configure() {
-	sed -i -e '1,1i#include <unistd.h>' \
-		-e '1,1i#include <sys/stat.h>' \
-		-e '1,1i#include <sys/types.h>' \
-		src/DesktopConfig.cpp
-
-	sed -i 's#usr/local#usr#' examples/default.lnk
-	sed -i 's#IMLIB2_LIBS=.*#IMLIB2_LIBS=-lImlib2#g' configure
-	sed -i 's#IMLIB_LIBS=.*#IMLIB_LIBS="-L/usr/lib -Wl,-O1,--sort-common,--as-needed,-z,relro -ljpeg -ltiff -lgif -lpng -lz -lm -lXext -lXext -lX11 -lImlib2"#g' configure
+	autoreconf -fi
 }
 
 post_install() {

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

* Re: [PR PATCH] [Updated] idesk: update to 0.7.8.
  2022-09-30 18:50 [PR PATCH] idesk: update to 0.7.8 mtboehlke
@ 2022-09-30 18:55 ` mtboehlke
  2022-10-01  2:32 ` [PR REVIEW] " classabbyamp
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: mtboehlke @ 2022-09-30 18:55 UTC (permalink / raw)
  To: ml

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

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

https://github.com/mtboehlke/void-packages idesk
https://github.com/void-linux/void-packages/pull/39550

idesk: update to 0.7.8.
Switching upstream to maintained fork at [https://github.com/neagix/idesk](https://github.com/neagix/idesk).
This seems to be a good choice for upstream: had tagged release and ChangeLog is being kept up to date.

The re-added SVG support seems to work okay, so I have enabled it here.

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

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

<!--
#### 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/39550.patch is attached

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

From 70c6df46856c57607f0e57b4cf3bbd36bbace68f Mon Sep 17 00:00:00 2001
From: Mat Boehlke <mtboehlke@gmail.com>
Date: Fri, 30 Sep 2022 12:11:19 -0500
Subject: [PATCH] idesk: update to 0.7.8.

Switching upstream to maintained fork at
https://github.com/neagix/idesk

Also include upstream patch to use pkg-config instead of imlib2-config,
which has been removed from imlib2
---
 srcpkgs/idesk/patches/pkg-config.patch | 31 ++++++++++++++++++++++++++
 srcpkgs/idesk/template                 | 25 +++++++++------------
 2 files changed, 41 insertions(+), 15 deletions(-)
 create mode 100644 srcpkgs/idesk/patches/pkg-config.patch

diff --git a/srcpkgs/idesk/patches/pkg-config.patch b/srcpkgs/idesk/patches/pkg-config.patch
new file mode 100644
index 000000000000..718bef968f26
--- /dev/null
+++ b/srcpkgs/idesk/patches/pkg-config.patch
@@ -0,0 +1,31 @@
+Taken from https://github.com/neagix/idesk/commit/7ed7fae76d2896e02c115448b569d964dab895ee
+use pkg-config to find imlib2
+
+diff --git a/configure.in b/configure.in
+index 805585d..b7a1032 100644
+--- a/configure.in
++++ b/configure.in
+@@ -94,19 +94,10 @@ LIBS="$LIBS $Xext_lib"
+ 
+ dnl Imlib2 detection
+ 
+-AC_PATH_GENERIC(imlib2, , [
+-    AC_SUBST(IMLIB_LIBS)
+-   AC_SUBST(IMLIB_CXXFLAGS) ],
+-  AC_MSG_ERROR(Cannot find imlib2: Is imlib2-config in the path?
+-               You need Imlib2 to build Idesk.  Verify that you have Imlib2-dev))
+-
+-dnl the above doesn't work for some reason :/
+-IMLIB_LIBS=`imlib2-config --libs`
+-IMLIB_CFLAGS=`imlib2-config --cflags`
+-AC_SUBST(IMLIB_LIBS)
+-AC_SUBST(IMLIB_CXXFLAGS)
+-
+-CXXFLAGS="$CXXFLAGS $IMLIB_CXXFLAGS"
++PKG_PROG_PKG_CONFIG
++PKG_CHECK_MODULES([IMLIB], [imlib2 > 1.0])
++
++CXXFLAGS="$CXXFLAGS $IMLIB_CFLAGS"
+ LIBS="$LIBS $IMLIB_LIBS"
+ 
+ 
diff --git a/srcpkgs/idesk/template b/srcpkgs/idesk/template
index 19d6d4979b36..3cd3a94d102a 100644
--- a/srcpkgs/idesk/template
+++ b/srcpkgs/idesk/template
@@ -1,27 +1,22 @@
 # Template file for 'idesk'
 pkgname=idesk
-version=0.7.5
-revision=2
+version=0.7.8
+revision=1
 build_style=gnu-configure
-hostmakedepends="pkg-config"
+configure_args="--enable-svg"
+hostmakedepends="pkg-config automake"
 makedepends="giflib-devel imlib2-devel libjpeg-turbo-devel
- libpng-devel libXft-devel libXpm-devel tiff-devel"
+	libpng-devel libXft-devel libXpm-devel tiff-devel librsvg-devel gdk-pixbuf-devel"
 short_desc="Gives users of minimal wm's icons on their desktop"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="BSD-3-Clause"
-homepage="http://idesk.sourceforge.net"
-distfiles="${SOURCEFORGE_SITE}/idesk/idesk-${version}.tar.bz2"
-checksum=d4b7ea5dcf6d49d83e2df9512d4c6388f11632a702b14f42a1bc6bffb617b3d3
+homepage="https://github.com/neagix/idesk"
+changelog="https://raw.githubusercontent.com/neagix/idesk/master/ChangeLog"
+distfiles="https://github.com/neagix/idesk/archive/refs/tags/v${version}.tar.gz"
+checksum=cb5ccc4e598d4d6de41a55512f0bff5afae16da499009b109322e43286c1c7bd
 
 pre_configure() {
-	sed -i -e '1,1i#include <unistd.h>' \
-		-e '1,1i#include <sys/stat.h>' \
-		-e '1,1i#include <sys/types.h>' \
-		src/DesktopConfig.cpp
-
-	sed -i 's#usr/local#usr#' examples/default.lnk
-	sed -i 's#IMLIB2_LIBS=.*#IMLIB2_LIBS=-lImlib2#g' configure
-	sed -i 's#IMLIB_LIBS=.*#IMLIB_LIBS="-L/usr/lib -Wl,-O1,--sort-common,--as-needed,-z,relro -ljpeg -ltiff -lgif -lpng -lz -lm -lXext -lXext -lX11 -lImlib2"#g' configure
+	autoreconf -fi
 }
 
 post_install() {

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

* Re: [PR REVIEW] idesk: update to 0.7.8.
  2022-09-30 18:50 [PR PATCH] idesk: update to 0.7.8 mtboehlke
  2022-09-30 18:55 ` [PR PATCH] [Updated] " mtboehlke
@ 2022-10-01  2:32 ` classabbyamp
  2022-10-01  3:29 ` [PR PATCH] [Updated] " mtboehlke
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: classabbyamp @ 2022-10-01  2:32 UTC (permalink / raw)
  To: ml

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

New review comment by classabbyamp on void-packages repository

https://github.com/void-linux/void-packages/pull/39550#discussion_r985026229

Comment:
should be a single space indent here

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

* Re: [PR PATCH] [Updated] idesk: update to 0.7.8.
  2022-09-30 18:50 [PR PATCH] idesk: update to 0.7.8 mtboehlke
  2022-09-30 18:55 ` [PR PATCH] [Updated] " mtboehlke
  2022-10-01  2:32 ` [PR REVIEW] " classabbyamp
@ 2022-10-01  3:29 ` mtboehlke
  2022-10-01  3:30 ` [PR REVIEW] " mtboehlke
  2022-10-01  9:46 ` [PR PATCH] [Merged]: " classabbyamp
  4 siblings, 0 replies; 6+ messages in thread
From: mtboehlke @ 2022-10-01  3:29 UTC (permalink / raw)
  To: ml

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

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

https://github.com/mtboehlke/void-packages idesk
https://github.com/void-linux/void-packages/pull/39550

idesk: update to 0.7.8.
Switching upstream to maintained fork at [https://github.com/neagix/idesk](https://github.com/neagix/idesk).
This seems to be a good choice for upstream: has tagged release and ChangeLog is being kept up to date.

The re-added SVG support seems to work okay, so I have enabled it here.

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

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

<!--
#### 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/39550.patch is attached

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

From 2ceab1b5af71e761448ab159dabd798d81b23437 Mon Sep 17 00:00:00 2001
From: Mat Boehlke <mtboehlke@gmail.com>
Date: Fri, 30 Sep 2022 12:11:19 -0500
Subject: [PATCH] idesk: update to 0.7.8.

Switching upstream to maintained fork at
https://github.com/neagix/idesk

Also include upstream patch to use pkg-config instead of imlib2-config,
which has been removed from imlib2
---
 srcpkgs/idesk/patches/pkg-config.patch | 31 ++++++++++++++++++++++++++
 srcpkgs/idesk/template                 | 25 +++++++++------------
 2 files changed, 41 insertions(+), 15 deletions(-)
 create mode 100644 srcpkgs/idesk/patches/pkg-config.patch

diff --git a/srcpkgs/idesk/patches/pkg-config.patch b/srcpkgs/idesk/patches/pkg-config.patch
new file mode 100644
index 000000000000..718bef968f26
--- /dev/null
+++ b/srcpkgs/idesk/patches/pkg-config.patch
@@ -0,0 +1,31 @@
+Taken from https://github.com/neagix/idesk/commit/7ed7fae76d2896e02c115448b569d964dab895ee
+use pkg-config to find imlib2
+
+diff --git a/configure.in b/configure.in
+index 805585d..b7a1032 100644
+--- a/configure.in
++++ b/configure.in
+@@ -94,19 +94,10 @@ LIBS="$LIBS $Xext_lib"
+ 
+ dnl Imlib2 detection
+ 
+-AC_PATH_GENERIC(imlib2, , [
+-    AC_SUBST(IMLIB_LIBS)
+-   AC_SUBST(IMLIB_CXXFLAGS) ],
+-  AC_MSG_ERROR(Cannot find imlib2: Is imlib2-config in the path?
+-               You need Imlib2 to build Idesk.  Verify that you have Imlib2-dev))
+-
+-dnl the above doesn't work for some reason :/
+-IMLIB_LIBS=`imlib2-config --libs`
+-IMLIB_CFLAGS=`imlib2-config --cflags`
+-AC_SUBST(IMLIB_LIBS)
+-AC_SUBST(IMLIB_CXXFLAGS)
+-
+-CXXFLAGS="$CXXFLAGS $IMLIB_CXXFLAGS"
++PKG_PROG_PKG_CONFIG
++PKG_CHECK_MODULES([IMLIB], [imlib2 > 1.0])
++
++CXXFLAGS="$CXXFLAGS $IMLIB_CFLAGS"
+ LIBS="$LIBS $IMLIB_LIBS"
+ 
+ 
diff --git a/srcpkgs/idesk/template b/srcpkgs/idesk/template
index 19d6d4979b36..c94dfb538469 100644
--- a/srcpkgs/idesk/template
+++ b/srcpkgs/idesk/template
@@ -1,27 +1,22 @@
 # Template file for 'idesk'
 pkgname=idesk
-version=0.7.5
-revision=2
+version=0.7.8
+revision=1
 build_style=gnu-configure
-hostmakedepends="pkg-config"
+configure_args="--enable-svg"
+hostmakedepends="pkg-config automake"
 makedepends="giflib-devel imlib2-devel libjpeg-turbo-devel
- libpng-devel libXft-devel libXpm-devel tiff-devel"
+ libpng-devel libXft-devel libXpm-devel tiff-devel librsvg-devel gdk-pixbuf-devel"
 short_desc="Gives users of minimal wm's icons on their desktop"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="BSD-3-Clause"
-homepage="http://idesk.sourceforge.net"
-distfiles="${SOURCEFORGE_SITE}/idesk/idesk-${version}.tar.bz2"
-checksum=d4b7ea5dcf6d49d83e2df9512d4c6388f11632a702b14f42a1bc6bffb617b3d3
+homepage="https://github.com/neagix/idesk"
+changelog="https://raw.githubusercontent.com/neagix/idesk/master/ChangeLog"
+distfiles="https://github.com/neagix/idesk/archive/refs/tags/v${version}.tar.gz"
+checksum=cb5ccc4e598d4d6de41a55512f0bff5afae16da499009b109322e43286c1c7bd
 
 pre_configure() {
-	sed -i -e '1,1i#include <unistd.h>' \
-		-e '1,1i#include <sys/stat.h>' \
-		-e '1,1i#include <sys/types.h>' \
-		src/DesktopConfig.cpp
-
-	sed -i 's#usr/local#usr#' examples/default.lnk
-	sed -i 's#IMLIB2_LIBS=.*#IMLIB2_LIBS=-lImlib2#g' configure
-	sed -i 's#IMLIB_LIBS=.*#IMLIB_LIBS="-L/usr/lib -Wl,-O1,--sort-common,--as-needed,-z,relro -ljpeg -ltiff -lgif -lpng -lz -lm -lXext -lXext -lX11 -lImlib2"#g' configure
+	autoreconf -fi
 }
 
 post_install() {

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

* Re: [PR REVIEW] idesk: update to 0.7.8.
  2022-09-30 18:50 [PR PATCH] idesk: update to 0.7.8 mtboehlke
                   ` (2 preceding siblings ...)
  2022-10-01  3:29 ` [PR PATCH] [Updated] " mtboehlke
@ 2022-10-01  3:30 ` mtboehlke
  2022-10-01  9:46 ` [PR PATCH] [Merged]: " classabbyamp
  4 siblings, 0 replies; 6+ messages in thread
From: mtboehlke @ 2022-10-01  3:30 UTC (permalink / raw)
  To: ml

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

New review comment by mtboehlke on void-packages repository

https://github.com/void-linux/void-packages/pull/39550#discussion_r985036240

Comment:
Got it.

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

* Re: [PR PATCH] [Merged]: idesk: update to 0.7.8.
  2022-09-30 18:50 [PR PATCH] idesk: update to 0.7.8 mtboehlke
                   ` (3 preceding siblings ...)
  2022-10-01  3:30 ` [PR REVIEW] " mtboehlke
@ 2022-10-01  9:46 ` classabbyamp
  4 siblings, 0 replies; 6+ messages in thread
From: classabbyamp @ 2022-10-01  9:46 UTC (permalink / raw)
  To: ml

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

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

idesk: update to 0.7.8.
https://github.com/void-linux/void-packages/pull/39550

Description:
Switching upstream to maintained fork at [https://github.com/neagix/idesk](https://github.com/neagix/idesk).
This seems to be a good choice for upstream: has tagged release and ChangeLog is being kept up to date.

The re-added SVG support seems to work okay, so I have enabled it here.

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

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

<!--
#### 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
-->


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

end of thread, other threads:[~2022-10-01  9:46 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-30 18:50 [PR PATCH] idesk: update to 0.7.8 mtboehlke
2022-09-30 18:55 ` [PR PATCH] [Updated] " mtboehlke
2022-10-01  2:32 ` [PR REVIEW] " classabbyamp
2022-10-01  3:29 ` [PR PATCH] [Updated] " mtboehlke
2022-10-01  3:30 ` [PR REVIEW] " mtboehlke
2022-10-01  9:46 ` [PR PATCH] [Merged]: " classabbyamp

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