Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New package: direwolf-1.6
@ 2022-05-16  6:29 classabbyamp
  2022-05-17 17:05 ` [PR PATCH] [Updated] " classabbyamp
                   ` (7 more replies)
  0 siblings, 8 replies; 10+ messages in thread
From: classabbyamp @ 2022-05-16  6:29 UTC (permalink / raw)
  To: ml

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

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

https://github.com/classabbyamp/void-packages new/direwolf
https://github.com/void-linux/void-packages/pull/37147

New package: direwolf-1.6
<!-- Uncomment relevant sections and delete options which are not applicable -->

closes #33142

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

<!--
#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-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/37147.patch is attached

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

From a0ce019273562d9ef80c1ca3ed81412c7ea2e11d Mon Sep 17 00:00:00 2001
From: classabbyamp <dev@placeviolette.net>
Date: Mon, 16 May 2022 02:28:19 -0400
Subject: [PATCH] New package: direwolf-1.6

---
 srcpkgs/direwolf/patches/fix_desktop.patch    | 20 +++++++++++
 srcpkgs/direwolf/patches/fix_musl.patch       | 26 ++++++++++++++
 .../patches/fix_scripts_install.patch         | 36 +++++++++++++++++++
 .../direwolf/patches/fix_udev_install.patch   | 13 +++++++
 srcpkgs/direwolf/template                     | 15 ++++++++
 5 files changed, 110 insertions(+)
 create mode 100644 srcpkgs/direwolf/patches/fix_desktop.patch
 create mode 100644 srcpkgs/direwolf/patches/fix_musl.patch
 create mode 100644 srcpkgs/direwolf/patches/fix_scripts_install.patch
 create mode 100644 srcpkgs/direwolf/patches/fix_udev_install.patch
 create mode 100644 srcpkgs/direwolf/template

diff --git a/srcpkgs/direwolf/patches/fix_desktop.patch b/srcpkgs/direwolf/patches/fix_desktop.patch
new file mode 100644
index 000000000000..3f851c4c44f1
--- /dev/null
+++ b/srcpkgs/direwolf/patches/fix_desktop.patch
@@ -0,0 +1,20 @@
+fix issues in the desktop file (no icon, hardcodes xterm)
+
+upstreamed in wb2osz/direwolf#393
+
+--- a/cmake/cpack/direwolf.desktop.in
++++ b/cmake/cpack/direwolf.desktop.in
+@@ -2,9 +2,9 @@
+ Name=@APPLICATION_NAME@
+ Comment=APRS Soundcard TNC
+-Exec=@APPLICATION_DESKTOP_EXEC@
++Exec=@CMAKE_PROJECT_NAME@
+-Icon=@CMAKE_PROJECT_NAME@_icon.png
++Icon=@CMAKE_PROJECT_NAME@_icon
+ StartupNotify=true
+-Terminal=false
++Terminal=true
+ Type=Application
+ Categories=HamRadio
+ Keywords=Ham Radio;APRS;Soundcard TNC;KISS;AGWPE;AX.25
+ 
diff --git a/srcpkgs/direwolf/patches/fix_musl.patch b/srcpkgs/direwolf/patches/fix_musl.patch
new file mode 100644
index 000000000000..29d91d7f569c
--- /dev/null
+++ b/srcpkgs/direwolf/patches/fix_musl.patch
@@ -0,0 +1,26 @@
+fixes compilation on musl
+
+upstreamed in wb2osz/direwolf#394
+
+--- a/src/direwolf.h
++++ b/src/direwolf.h
+@@ -282,7 +282,7 @@
+ char *strcasestr(const char *S, const char *FIND);
+ 
+ 
+-#if defined(__OpenBSD__) || defined(__FreeBSD__) || defined(__APPLE__)
++#if ! defined(__GLIBC__) || defined(__OpenBSD__) || defined(__FreeBSD__) || defined(__APPLE__)
+ 
+ // strlcpy and strlcat should be in string.h and the C library.
+ 
+--- a/src/decode_aprs.c
++++ b/src/decode_aprs.c
+@@ -3930,7 +3930,7 @@
+  * models before getting to the more generic APY.
+  */
+ 
+-#if defined(__WIN32__) || defined(__OpenBSD__) || defined(__FreeBSD__) || defined(__APPLE__)
++#if ! defined(__GLIBC__) || defined(__OpenBSD__) || defined(__FreeBSD__) || defined(__APPLE__)
+ 	    qsort (tocalls, num_tocalls, sizeof(struct tocalls_s), tocall_cmp);
+ #else
+ 	    qsort (tocalls, num_tocalls, sizeof(struct tocalls_s), (__compar_fn_t)tocall_cmp);
diff --git a/srcpkgs/direwolf/patches/fix_scripts_install.patch b/srcpkgs/direwolf/patches/fix_scripts_install.patch
new file mode 100644
index 000000000000..21bd7d699064
--- /dev/null
+++ b/srcpkgs/direwolf/patches/fix_scripts_install.patch
@@ -0,0 +1,36 @@
+these scripts should probably not be put in /usr/bin, but instead with the rest of the scripts
+
+--- a/scripts/CMakeLists.txt
++++ b/scripts/CMakeLists.txt
+@@ -1,6 +1,6 @@
+ 
+ if(NOT (WIN32 OR CYGWIN))
+-  install(PROGRAMS "${CUSTOM_SCRIPTS_DIR}/dwespeak.sh" DESTINATION ${INSTALL_BIN_DIR})
++  install(PROGRAMS "${CUSTOM_SCRIPTS_DIR}/dwespeak.sh" DESTINATION ${INSTALL_SCRIPTS_DIR})
+   install(PROGRAMS "${CUSTOM_SCRIPTS_DIR}/dw-start.sh" DESTINATION ${INSTALL_SCRIPTS_DIR})
+   add_subdirectory(telemetry-toolkit)
+ endif()
+--- a/scripts/telemetry-toolkit/CMakeLists.txt
++++ b/scripts/telemetry-toolkit/CMakeLists.txt
+@@ -1,12 +1,12 @@
+-install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-balloon.pl" DESTINATION ${INSTALL_BIN_DIR})
+-install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-bits.pl" DESTINATION ${INSTALL_BIN_DIR})
+-install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-data.pl" DESTINATION ${INSTALL_BIN_DIR})
+-install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-data91.pl" DESTINATION ${INSTALL_BIN_DIR})
+-install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-eqns.pl" DESTINATION ${INSTALL_BIN_DIR})
+-install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-parm.pl" DESTINATION ${INSTALL_BIN_DIR})
+-install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-seq.sh" DESTINATION ${INSTALL_BIN_DIR})
+-install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-unit.pl" DESTINATION ${INSTALL_BIN_DIR})
+-install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-volts.py" DESTINATION ${INSTALL_BIN_DIR})
++install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-balloon.pl" DESTINATION ${INSTALL_SCRIPTS_DIR})
++install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-bits.pl" DESTINATION ${INSTALL_SCRIPTS_DIR})
++install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-data.pl" DESTINATION ${INSTALL_SCRIPTS_DIR})
++install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-data91.pl" DESTINATION ${INSTALL_SCRIPTS_DIR})
++install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-eqns.pl" DESTINATION ${INSTALL_SCRIPTS_DIR})
++install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-parm.pl" DESTINATION ${INSTALL_SCRIPTS_DIR})
++install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-seq.sh" DESTINATION ${INSTALL_SCRIPTS_DIR})
++install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-unit.pl" DESTINATION ${INSTALL_SCRIPTS_DIR})
++install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-volts.py" DESTINATION ${INSTALL_SCRIPTS_DIR})
+ 
+ install(FILES "${CUSTOM_TELEMETRY_DIR}/telem-m0xer-3.txt" DESTINATION ${INSTALL_CONF_DIR})
+ install(FILES "${CUSTOM_TELEMETRY_DIR}/telem-balloon.conf" DESTINATION ${INSTALL_CONF_DIR})
diff --git a/srcpkgs/direwolf/patches/fix_udev_install.patch b/srcpkgs/direwolf/patches/fix_udev_install.patch
new file mode 100644
index 000000000000..e4285a414b20
--- /dev/null
+++ b/srcpkgs/direwolf/patches/fix_udev_install.patch
@@ -0,0 +1,13 @@
+install udev rules in the proper place
+
+--- a/conf/CMakeLists.txt
++++ b/conf/CMakeLists.txt
+@@ -26,7 +26,7 @@
+ 
+ # install udev rules for CM108
+ if(LINUX)
+-  install(FILES "${CUSTOM_CONF_DIR}/99-direwolf-cmedia.rules" DESTINATION /etc/udev/rules.d/)
++  install(FILES "${CUSTOM_CONF_DIR}/99-direwolf-cmedia.rules" DESTINATION /usr/lib/udev/rules.d/)
+ endif()
+ 
+ install(FILES "${CMAKE_BINARY_DIR}/direwolf.conf" DESTINATION ${INSTALL_CONF_DIR})
diff --git a/srcpkgs/direwolf/template b/srcpkgs/direwolf/template
new file mode 100644
index 000000000000..c3e8b206b7b7
--- /dev/null
+++ b/srcpkgs/direwolf/template
@@ -0,0 +1,15 @@
+# Template file for 'direwolf'
+pkgname=direwolf
+version=1.6
+revision=1
+build_style=cmake
+configure_args="-DFORCE_SSE=1 -DRUN_NEON=advanced"
+makedepends="alsa-lib-devel hamlib-devel eudev-libudev-devel"
+short_desc="AX.25 packet modem/TNC and APRS encoder/decoder"
+maintainer="classabbyamp <void@placeviolette.net>"
+license="GPL-2.0-or-later"
+homepage="https://github.com/wb2osz/direwolf"
+changelog="https://raw.githubusercontent.com/wb2osz/direwolf/master/CHANGES.md"
+distfiles="https://github.com/wb2osz/direwolf/archive/refs/tags/${version}.tar.gz"
+checksum=208b0563c9b339cbeb0e1feb52dc18ae38295c40c0009d6381fc4acb68fdf660
+python_version=3

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

* Re: [PR PATCH] [Updated] New package: direwolf-1.6
  2022-05-16  6:29 [PR PATCH] New package: direwolf-1.6 classabbyamp
@ 2022-05-17 17:05 ` classabbyamp
  2022-05-24  0:56 ` classabbyamp
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 10+ messages in thread
From: classabbyamp @ 2022-05-17 17:05 UTC (permalink / raw)
  To: ml

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

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

https://github.com/classabbyamp/void-packages new/direwolf
https://github.com/void-linux/void-packages/pull/37147

New package: direwolf-1.6
<!-- Uncomment relevant sections and delete options which are not applicable -->
saw the recently-closed #27510, was interested in it, brought it back to life and cleaned it up a bit more.

closes #33142

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

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

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

From a27e4326baa1da2a7e2ed442db359b68b5d11116 Mon Sep 17 00:00:00 2001
From: classabbyamp <dev@placeviolette.net>
Date: Mon, 16 May 2022 02:28:19 -0400
Subject: [PATCH] New package: direwolf-1.6

---
 srcpkgs/direwolf/patches/fix_desktop.patch    | 20 +++++++++++
 srcpkgs/direwolf/patches/fix_musl.patch       | 26 ++++++++++++++
 .../patches/fix_scripts_install.patch         | 36 +++++++++++++++++++
 .../direwolf/patches/fix_udev_install.patch   | 13 +++++++
 srcpkgs/direwolf/template                     | 15 ++++++++
 5 files changed, 110 insertions(+)
 create mode 100644 srcpkgs/direwolf/patches/fix_desktop.patch
 create mode 100644 srcpkgs/direwolf/patches/fix_musl.patch
 create mode 100644 srcpkgs/direwolf/patches/fix_scripts_install.patch
 create mode 100644 srcpkgs/direwolf/patches/fix_udev_install.patch
 create mode 100644 srcpkgs/direwolf/template

diff --git a/srcpkgs/direwolf/patches/fix_desktop.patch b/srcpkgs/direwolf/patches/fix_desktop.patch
new file mode 100644
index 000000000000..3f851c4c44f1
--- /dev/null
+++ b/srcpkgs/direwolf/patches/fix_desktop.patch
@@ -0,0 +1,20 @@
+fix issues in the desktop file (no icon, hardcodes xterm)
+
+upstreamed in wb2osz/direwolf#393
+
+--- a/cmake/cpack/direwolf.desktop.in
++++ b/cmake/cpack/direwolf.desktop.in
+@@ -2,9 +2,9 @@
+ Name=@APPLICATION_NAME@
+ Comment=APRS Soundcard TNC
+-Exec=@APPLICATION_DESKTOP_EXEC@
++Exec=@CMAKE_PROJECT_NAME@
+-Icon=@CMAKE_PROJECT_NAME@_icon.png
++Icon=@CMAKE_PROJECT_NAME@_icon
+ StartupNotify=true
+-Terminal=false
++Terminal=true
+ Type=Application
+ Categories=HamRadio
+ Keywords=Ham Radio;APRS;Soundcard TNC;KISS;AGWPE;AX.25
+ 
diff --git a/srcpkgs/direwolf/patches/fix_musl.patch b/srcpkgs/direwolf/patches/fix_musl.patch
new file mode 100644
index 000000000000..29d91d7f569c
--- /dev/null
+++ b/srcpkgs/direwolf/patches/fix_musl.patch
@@ -0,0 +1,26 @@
+fixes compilation on musl
+
+upstreamed in wb2osz/direwolf#394
+
+--- a/src/direwolf.h
++++ b/src/direwolf.h
+@@ -282,7 +282,7 @@
+ char *strcasestr(const char *S, const char *FIND);
+ 
+ 
+-#if defined(__OpenBSD__) || defined(__FreeBSD__) || defined(__APPLE__)
++#if ! defined(__GLIBC__) || defined(__OpenBSD__) || defined(__FreeBSD__) || defined(__APPLE__)
+ 
+ // strlcpy and strlcat should be in string.h and the C library.
+ 
+--- a/src/decode_aprs.c
++++ b/src/decode_aprs.c
+@@ -3930,7 +3930,7 @@
+  * models before getting to the more generic APY.
+  */
+ 
+-#if defined(__WIN32__) || defined(__OpenBSD__) || defined(__FreeBSD__) || defined(__APPLE__)
++#if ! defined(__GLIBC__) || defined(__OpenBSD__) || defined(__FreeBSD__) || defined(__APPLE__)
+ 	    qsort (tocalls, num_tocalls, sizeof(struct tocalls_s), tocall_cmp);
+ #else
+ 	    qsort (tocalls, num_tocalls, sizeof(struct tocalls_s), (__compar_fn_t)tocall_cmp);
diff --git a/srcpkgs/direwolf/patches/fix_scripts_install.patch b/srcpkgs/direwolf/patches/fix_scripts_install.patch
new file mode 100644
index 000000000000..21bd7d699064
--- /dev/null
+++ b/srcpkgs/direwolf/patches/fix_scripts_install.patch
@@ -0,0 +1,36 @@
+these scripts should probably not be put in /usr/bin, but instead with the rest of the scripts
+
+--- a/scripts/CMakeLists.txt
++++ b/scripts/CMakeLists.txt
+@@ -1,6 +1,6 @@
+ 
+ if(NOT (WIN32 OR CYGWIN))
+-  install(PROGRAMS "${CUSTOM_SCRIPTS_DIR}/dwespeak.sh" DESTINATION ${INSTALL_BIN_DIR})
++  install(PROGRAMS "${CUSTOM_SCRIPTS_DIR}/dwespeak.sh" DESTINATION ${INSTALL_SCRIPTS_DIR})
+   install(PROGRAMS "${CUSTOM_SCRIPTS_DIR}/dw-start.sh" DESTINATION ${INSTALL_SCRIPTS_DIR})
+   add_subdirectory(telemetry-toolkit)
+ endif()
+--- a/scripts/telemetry-toolkit/CMakeLists.txt
++++ b/scripts/telemetry-toolkit/CMakeLists.txt
+@@ -1,12 +1,12 @@
+-install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-balloon.pl" DESTINATION ${INSTALL_BIN_DIR})
+-install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-bits.pl" DESTINATION ${INSTALL_BIN_DIR})
+-install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-data.pl" DESTINATION ${INSTALL_BIN_DIR})
+-install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-data91.pl" DESTINATION ${INSTALL_BIN_DIR})
+-install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-eqns.pl" DESTINATION ${INSTALL_BIN_DIR})
+-install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-parm.pl" DESTINATION ${INSTALL_BIN_DIR})
+-install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-seq.sh" DESTINATION ${INSTALL_BIN_DIR})
+-install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-unit.pl" DESTINATION ${INSTALL_BIN_DIR})
+-install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-volts.py" DESTINATION ${INSTALL_BIN_DIR})
++install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-balloon.pl" DESTINATION ${INSTALL_SCRIPTS_DIR})
++install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-bits.pl" DESTINATION ${INSTALL_SCRIPTS_DIR})
++install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-data.pl" DESTINATION ${INSTALL_SCRIPTS_DIR})
++install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-data91.pl" DESTINATION ${INSTALL_SCRIPTS_DIR})
++install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-eqns.pl" DESTINATION ${INSTALL_SCRIPTS_DIR})
++install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-parm.pl" DESTINATION ${INSTALL_SCRIPTS_DIR})
++install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-seq.sh" DESTINATION ${INSTALL_SCRIPTS_DIR})
++install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-unit.pl" DESTINATION ${INSTALL_SCRIPTS_DIR})
++install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-volts.py" DESTINATION ${INSTALL_SCRIPTS_DIR})
+ 
+ install(FILES "${CUSTOM_TELEMETRY_DIR}/telem-m0xer-3.txt" DESTINATION ${INSTALL_CONF_DIR})
+ install(FILES "${CUSTOM_TELEMETRY_DIR}/telem-balloon.conf" DESTINATION ${INSTALL_CONF_DIR})
diff --git a/srcpkgs/direwolf/patches/fix_udev_install.patch b/srcpkgs/direwolf/patches/fix_udev_install.patch
new file mode 100644
index 000000000000..e4285a414b20
--- /dev/null
+++ b/srcpkgs/direwolf/patches/fix_udev_install.patch
@@ -0,0 +1,13 @@
+install udev rules in the proper place
+
+--- a/conf/CMakeLists.txt
++++ b/conf/CMakeLists.txt
+@@ -26,7 +26,7 @@
+ 
+ # install udev rules for CM108
+ if(LINUX)
+-  install(FILES "${CUSTOM_CONF_DIR}/99-direwolf-cmedia.rules" DESTINATION /etc/udev/rules.d/)
++  install(FILES "${CUSTOM_CONF_DIR}/99-direwolf-cmedia.rules" DESTINATION /usr/lib/udev/rules.d/)
+ endif()
+ 
+ install(FILES "${CMAKE_BINARY_DIR}/direwolf.conf" DESTINATION ${INSTALL_CONF_DIR})
diff --git a/srcpkgs/direwolf/template b/srcpkgs/direwolf/template
new file mode 100644
index 000000000000..c3e8b206b7b7
--- /dev/null
+++ b/srcpkgs/direwolf/template
@@ -0,0 +1,15 @@
+# Template file for 'direwolf'
+pkgname=direwolf
+version=1.6
+revision=1
+build_style=cmake
+configure_args="-DFORCE_SSE=1 -DRUN_NEON=advanced"
+makedepends="alsa-lib-devel hamlib-devel eudev-libudev-devel"
+short_desc="AX.25 packet modem/TNC and APRS encoder/decoder"
+maintainer="classabbyamp <void@placeviolette.net>"
+license="GPL-2.0-or-later"
+homepage="https://github.com/wb2osz/direwolf"
+changelog="https://raw.githubusercontent.com/wb2osz/direwolf/master/CHANGES.md"
+distfiles="https://github.com/wb2osz/direwolf/archive/refs/tags/${version}.tar.gz"
+checksum=208b0563c9b339cbeb0e1feb52dc18ae38295c40c0009d6381fc4acb68fdf660
+python_version=3

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

* Re: [PR PATCH] [Updated] New package: direwolf-1.6
  2022-05-16  6:29 [PR PATCH] New package: direwolf-1.6 classabbyamp
  2022-05-17 17:05 ` [PR PATCH] [Updated] " classabbyamp
@ 2022-05-24  0:56 ` classabbyamp
  2022-05-24  1:16 ` classabbyamp
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 10+ messages in thread
From: classabbyamp @ 2022-05-24  0:56 UTC (permalink / raw)
  To: ml

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

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

https://github.com/classabbyamp/void-packages new/direwolf
https://github.com/void-linux/void-packages/pull/37147

New package: direwolf-1.6
<!-- Uncomment relevant sections and delete options which are not applicable -->
saw the recently-closed #27510, was interested in it, brought it back to life and cleaned it up a bit more.

closes #33142

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

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

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

From 7a1371a25700e8d59db1b8ea34f7ace2739d843d Mon Sep 17 00:00:00 2001
From: classabbyamp <dev@placeviolette.net>
Date: Mon, 16 May 2022 02:28:19 -0400
Subject: [PATCH] New package: direwolf-1.6

---
 srcpkgs/direwolf/patches/fix_desktop.patch    | 20 ++++++++
 srcpkgs/direwolf/patches/fix_musl.patch       | 46 +++++++++++++++++++
 .../patches/fix_scripts_install.patch         | 36 +++++++++++++++
 .../direwolf/patches/fix_udev_install.patch   | 13 ++++++
 srcpkgs/direwolf/template                     | 15 ++++++
 5 files changed, 130 insertions(+)
 create mode 100644 srcpkgs/direwolf/patches/fix_desktop.patch
 create mode 100644 srcpkgs/direwolf/patches/fix_musl.patch
 create mode 100644 srcpkgs/direwolf/patches/fix_scripts_install.patch
 create mode 100644 srcpkgs/direwolf/patches/fix_udev_install.patch
 create mode 100644 srcpkgs/direwolf/template

diff --git a/srcpkgs/direwolf/patches/fix_desktop.patch b/srcpkgs/direwolf/patches/fix_desktop.patch
new file mode 100644
index 000000000000..3f851c4c44f1
--- /dev/null
+++ b/srcpkgs/direwolf/patches/fix_desktop.patch
@@ -0,0 +1,20 @@
+fix issues in the desktop file (no icon, hardcodes xterm)
+
+upstreamed in wb2osz/direwolf#393
+
+--- a/cmake/cpack/direwolf.desktop.in
++++ b/cmake/cpack/direwolf.desktop.in
+@@ -2,9 +2,9 @@
+ Name=@APPLICATION_NAME@
+ Comment=APRS Soundcard TNC
+-Exec=@APPLICATION_DESKTOP_EXEC@
++Exec=@CMAKE_PROJECT_NAME@
+-Icon=@CMAKE_PROJECT_NAME@_icon.png
++Icon=@CMAKE_PROJECT_NAME@_icon
+ StartupNotify=true
+-Terminal=false
++Terminal=true
+ Type=Application
+ Categories=HamRadio
+ Keywords=Ham Radio;APRS;Soundcard TNC;KISS;AGWPE;AX.25
+ 
diff --git a/srcpkgs/direwolf/patches/fix_musl.patch b/srcpkgs/direwolf/patches/fix_musl.patch
new file mode 100644
index 000000000000..12a0bc09bb2f
--- /dev/null
+++ b/srcpkgs/direwolf/patches/fix_musl.patch
@@ -0,0 +1,46 @@
+upstreamed in wb2osz/direwolf#394
+
+From 81f2f53675b3a965baa4dad13ee913eec26ce9d1 Mon Sep 17 00:00:00 2001
+From: classabbyamp <dev@placeviolette.net>
+Date: Mon, 16 May 2022 02:23:26 -0400
+Subject: [PATCH] fix compilation on musl
+
+this should allow for compilation on musl libc
+
+possibly fixes #150
+---
+ src/decode_aprs.c | 4 ----
+ src/direwolf.h    | 2 +-
+ 2 files changed, 1 insertion(+), 5 deletions(-)
+
+diff --git a/src/decode_aprs.c b/src/decode_aprs.c
+index 3afa377..f25c33d 100644
+--- a/src/decode_aprs.c
++++ b/src/decode_aprs.c
+@@ -3930,11 +3930,7 @@ static void decode_tocall (decode_aprs_t *A, char *dest)
+  * models before getting to the more generic APY.
+  */
+ 
+-#if defined(__WIN32__) || defined(__OpenBSD__) || defined(__FreeBSD__) || defined(__APPLE__)
+ 	   qsort (tocalls, num_tocalls, sizeof(struct tocalls_s), tocall_cmp);
+-#else
+-	   qsort (tocalls, num_tocalls, sizeof(struct tocalls_s), (__compar_fn_t)tocall_cmp);
+-#endif
+ 	 }
+ 	 else {
+ 	   if ( ! A->g_quiet) {
+diff --git a/src/direwolf.h b/src/direwolf.h
+index efc329b..ca12266 100644
+--- a/src/direwolf.h
++++ b/src/direwolf.h
+@@ -282,7 +282,7 @@ char *strtok_r(char *str, const char *delim, char **saveptr);
+ char *strcasestr(const char *S, const char *FIND);
+ 
+ 
+-#if defined(__OpenBSD__) || defined(__FreeBSD__) || defined(__APPLE__)
++#if ! defined(__GLIBC__) || defined(__OpenBSD__) || defined(__FreeBSD__) || defined(__APPLE__)
+ 
+ // strlcpy and strlcat should be in string.h and the C library.
+ 
+-- 
+2.36.1
diff --git a/srcpkgs/direwolf/patches/fix_scripts_install.patch b/srcpkgs/direwolf/patches/fix_scripts_install.patch
new file mode 100644
index 000000000000..21bd7d699064
--- /dev/null
+++ b/srcpkgs/direwolf/patches/fix_scripts_install.patch
@@ -0,0 +1,36 @@
+these scripts should probably not be put in /usr/bin, but instead with the rest of the scripts
+
+--- a/scripts/CMakeLists.txt
++++ b/scripts/CMakeLists.txt
+@@ -1,6 +1,6 @@
+ 
+ if(NOT (WIN32 OR CYGWIN))
+-  install(PROGRAMS "${CUSTOM_SCRIPTS_DIR}/dwespeak.sh" DESTINATION ${INSTALL_BIN_DIR})
++  install(PROGRAMS "${CUSTOM_SCRIPTS_DIR}/dwespeak.sh" DESTINATION ${INSTALL_SCRIPTS_DIR})
+   install(PROGRAMS "${CUSTOM_SCRIPTS_DIR}/dw-start.sh" DESTINATION ${INSTALL_SCRIPTS_DIR})
+   add_subdirectory(telemetry-toolkit)
+ endif()
+--- a/scripts/telemetry-toolkit/CMakeLists.txt
++++ b/scripts/telemetry-toolkit/CMakeLists.txt
+@@ -1,12 +1,12 @@
+-install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-balloon.pl" DESTINATION ${INSTALL_BIN_DIR})
+-install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-bits.pl" DESTINATION ${INSTALL_BIN_DIR})
+-install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-data.pl" DESTINATION ${INSTALL_BIN_DIR})
+-install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-data91.pl" DESTINATION ${INSTALL_BIN_DIR})
+-install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-eqns.pl" DESTINATION ${INSTALL_BIN_DIR})
+-install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-parm.pl" DESTINATION ${INSTALL_BIN_DIR})
+-install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-seq.sh" DESTINATION ${INSTALL_BIN_DIR})
+-install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-unit.pl" DESTINATION ${INSTALL_BIN_DIR})
+-install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-volts.py" DESTINATION ${INSTALL_BIN_DIR})
++install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-balloon.pl" DESTINATION ${INSTALL_SCRIPTS_DIR})
++install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-bits.pl" DESTINATION ${INSTALL_SCRIPTS_DIR})
++install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-data.pl" DESTINATION ${INSTALL_SCRIPTS_DIR})
++install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-data91.pl" DESTINATION ${INSTALL_SCRIPTS_DIR})
++install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-eqns.pl" DESTINATION ${INSTALL_SCRIPTS_DIR})
++install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-parm.pl" DESTINATION ${INSTALL_SCRIPTS_DIR})
++install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-seq.sh" DESTINATION ${INSTALL_SCRIPTS_DIR})
++install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-unit.pl" DESTINATION ${INSTALL_SCRIPTS_DIR})
++install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-volts.py" DESTINATION ${INSTALL_SCRIPTS_DIR})
+ 
+ install(FILES "${CUSTOM_TELEMETRY_DIR}/telem-m0xer-3.txt" DESTINATION ${INSTALL_CONF_DIR})
+ install(FILES "${CUSTOM_TELEMETRY_DIR}/telem-balloon.conf" DESTINATION ${INSTALL_CONF_DIR})
diff --git a/srcpkgs/direwolf/patches/fix_udev_install.patch b/srcpkgs/direwolf/patches/fix_udev_install.patch
new file mode 100644
index 000000000000..e4285a414b20
--- /dev/null
+++ b/srcpkgs/direwolf/patches/fix_udev_install.patch
@@ -0,0 +1,13 @@
+install udev rules in the proper place
+
+--- a/conf/CMakeLists.txt
++++ b/conf/CMakeLists.txt
+@@ -26,7 +26,7 @@
+ 
+ # install udev rules for CM108
+ if(LINUX)
+-  install(FILES "${CUSTOM_CONF_DIR}/99-direwolf-cmedia.rules" DESTINATION /etc/udev/rules.d/)
++  install(FILES "${CUSTOM_CONF_DIR}/99-direwolf-cmedia.rules" DESTINATION /usr/lib/udev/rules.d/)
+ endif()
+ 
+ install(FILES "${CMAKE_BINARY_DIR}/direwolf.conf" DESTINATION ${INSTALL_CONF_DIR})
diff --git a/srcpkgs/direwolf/template b/srcpkgs/direwolf/template
new file mode 100644
index 000000000000..c3e8b206b7b7
--- /dev/null
+++ b/srcpkgs/direwolf/template
@@ -0,0 +1,15 @@
+# Template file for 'direwolf'
+pkgname=direwolf
+version=1.6
+revision=1
+build_style=cmake
+configure_args="-DFORCE_SSE=1 -DRUN_NEON=advanced"
+makedepends="alsa-lib-devel hamlib-devel eudev-libudev-devel"
+short_desc="AX.25 packet modem/TNC and APRS encoder/decoder"
+maintainer="classabbyamp <void@placeviolette.net>"
+license="GPL-2.0-or-later"
+homepage="https://github.com/wb2osz/direwolf"
+changelog="https://raw.githubusercontent.com/wb2osz/direwolf/master/CHANGES.md"
+distfiles="https://github.com/wb2osz/direwolf/archive/refs/tags/${version}.tar.gz"
+checksum=208b0563c9b339cbeb0e1feb52dc18ae38295c40c0009d6381fc4acb68fdf660
+python_version=3

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

* Re: [PR PATCH] [Updated] New package: direwolf-1.6
  2022-05-16  6:29 [PR PATCH] New package: direwolf-1.6 classabbyamp
  2022-05-17 17:05 ` [PR PATCH] [Updated] " classabbyamp
  2022-05-24  0:56 ` classabbyamp
@ 2022-05-24  1:16 ` classabbyamp
  2022-05-28  6:55 ` classabbyamp
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 10+ messages in thread
From: classabbyamp @ 2022-05-24  1:16 UTC (permalink / raw)
  To: ml

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

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

https://github.com/classabbyamp/void-packages new/direwolf
https://github.com/void-linux/void-packages/pull/37147

New package: direwolf-1.6
<!-- Uncomment relevant sections and delete options which are not applicable -->
saw the recently-closed #27510, was interested in it, brought it back to life and cleaned it up a bit more.

closes #33142

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

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

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

From 9b023ca9b31a449b7a32b59932d52f0f1dda445b Mon Sep 17 00:00:00 2001
From: classabbyamp <dev@placeviolette.net>
Date: Mon, 16 May 2022 02:28:19 -0400
Subject: [PATCH] New package: direwolf-1.6

---
 srcpkgs/direwolf/patches/fix_desktop.patch    | 20 +++++++++
 srcpkgs/direwolf/patches/fix_musl.patch       | 44 +++++++++++++++++++
 .../patches/fix_scripts_install.patch         | 36 +++++++++++++++
 .../direwolf/patches/fix_udev_install.patch   | 13 ++++++
 srcpkgs/direwolf/template                     | 15 +++++++
 5 files changed, 128 insertions(+)
 create mode 100644 srcpkgs/direwolf/patches/fix_desktop.patch
 create mode 100644 srcpkgs/direwolf/patches/fix_musl.patch
 create mode 100644 srcpkgs/direwolf/patches/fix_scripts_install.patch
 create mode 100644 srcpkgs/direwolf/patches/fix_udev_install.patch
 create mode 100644 srcpkgs/direwolf/template

diff --git a/srcpkgs/direwolf/patches/fix_desktop.patch b/srcpkgs/direwolf/patches/fix_desktop.patch
new file mode 100644
index 000000000000..3f851c4c44f1
--- /dev/null
+++ b/srcpkgs/direwolf/patches/fix_desktop.patch
@@ -0,0 +1,20 @@
+fix issues in the desktop file (no icon, hardcodes xterm)
+
+upstreamed in wb2osz/direwolf#393
+
+--- a/cmake/cpack/direwolf.desktop.in
++++ b/cmake/cpack/direwolf.desktop.in
+@@ -2,9 +2,9 @@
+ Name=@APPLICATION_NAME@
+ Comment=APRS Soundcard TNC
+-Exec=@APPLICATION_DESKTOP_EXEC@
++Exec=@CMAKE_PROJECT_NAME@
+-Icon=@CMAKE_PROJECT_NAME@_icon.png
++Icon=@CMAKE_PROJECT_NAME@_icon
+ StartupNotify=true
+-Terminal=false
++Terminal=true
+ Type=Application
+ Categories=HamRadio
+ Keywords=Ham Radio;APRS;Soundcard TNC;KISS;AGWPE;AX.25
+ 
diff --git a/srcpkgs/direwolf/patches/fix_musl.patch b/srcpkgs/direwolf/patches/fix_musl.patch
new file mode 100644
index 000000000000..0b755ea53da7
--- /dev/null
+++ b/srcpkgs/direwolf/patches/fix_musl.patch
@@ -0,0 +1,44 @@
+upstreamed in wb2osz/direwolf#394
+
+From 81f2f53675b3a965baa4dad13ee913eec26ce9d1 Mon Sep 17 00:00:00 2001
+From: classabbyamp <dev@placeviolette.net>
+Date: Mon, 16 May 2022 02:23:26 -0400
+Subject: [PATCH] fix compilation on musl
+
+this should allow for compilation on musl libc
+
+possibly fixes #150
+---
+ src/decode_aprs.c | 4 ----
+ src/direwolf.h    | 2 +-
+ 2 files changed, 1 insertion(+), 5 deletions(-)
+
+diff --git a/src/direwolf.h b/src/direwolf.h
+index efc329b..ca12266 100644
+--- a/src/direwolf.h
++++ b/src/direwolf.h
+@@ -282,7 +282,7 @@ char *strtok_r(char *str, const char *delim, char **saveptr);
+ char *strcasestr(const char *S, const char *FIND);
+ 
+ 
+-#if defined(__OpenBSD__) || defined(__FreeBSD__) || defined(__APPLE__)
++#if ! defined(__GLIBC__) || defined(__OpenBSD__) || defined(__FreeBSD__) || defined(__APPLE__)
+ 
+ // strlcpy and strlcat should be in string.h and the C library.
+ 
+-- 
+2.36.1
+--- a/src/decode_aprs.c
++++ b/src/decode_aprs.c
+@@ -3930,11 +3930,7 @@
+  * models before getting to the more generic APY.
+  */
+ 
+-#if defined(__WIN32__) || defined(__OpenBSD__) || defined(__FreeBSD__) || defined(__APPLE__)
+ 	    qsort (tocalls, num_tocalls, sizeof(struct tocalls_s), tocall_cmp);
+-#else
+-	    qsort (tocalls, num_tocalls, sizeof(struct tocalls_s), (__compar_fn_t)tocall_cmp);
+-#endif
+ 	  }
+ 	  else {
+ 	    if ( ! A->g_quiet) {
diff --git a/srcpkgs/direwolf/patches/fix_scripts_install.patch b/srcpkgs/direwolf/patches/fix_scripts_install.patch
new file mode 100644
index 000000000000..21bd7d699064
--- /dev/null
+++ b/srcpkgs/direwolf/patches/fix_scripts_install.patch
@@ -0,0 +1,36 @@
+these scripts should probably not be put in /usr/bin, but instead with the rest of the scripts
+
+--- a/scripts/CMakeLists.txt
++++ b/scripts/CMakeLists.txt
+@@ -1,6 +1,6 @@
+ 
+ if(NOT (WIN32 OR CYGWIN))
+-  install(PROGRAMS "${CUSTOM_SCRIPTS_DIR}/dwespeak.sh" DESTINATION ${INSTALL_BIN_DIR})
++  install(PROGRAMS "${CUSTOM_SCRIPTS_DIR}/dwespeak.sh" DESTINATION ${INSTALL_SCRIPTS_DIR})
+   install(PROGRAMS "${CUSTOM_SCRIPTS_DIR}/dw-start.sh" DESTINATION ${INSTALL_SCRIPTS_DIR})
+   add_subdirectory(telemetry-toolkit)
+ endif()
+--- a/scripts/telemetry-toolkit/CMakeLists.txt
++++ b/scripts/telemetry-toolkit/CMakeLists.txt
+@@ -1,12 +1,12 @@
+-install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-balloon.pl" DESTINATION ${INSTALL_BIN_DIR})
+-install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-bits.pl" DESTINATION ${INSTALL_BIN_DIR})
+-install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-data.pl" DESTINATION ${INSTALL_BIN_DIR})
+-install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-data91.pl" DESTINATION ${INSTALL_BIN_DIR})
+-install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-eqns.pl" DESTINATION ${INSTALL_BIN_DIR})
+-install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-parm.pl" DESTINATION ${INSTALL_BIN_DIR})
+-install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-seq.sh" DESTINATION ${INSTALL_BIN_DIR})
+-install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-unit.pl" DESTINATION ${INSTALL_BIN_DIR})
+-install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-volts.py" DESTINATION ${INSTALL_BIN_DIR})
++install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-balloon.pl" DESTINATION ${INSTALL_SCRIPTS_DIR})
++install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-bits.pl" DESTINATION ${INSTALL_SCRIPTS_DIR})
++install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-data.pl" DESTINATION ${INSTALL_SCRIPTS_DIR})
++install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-data91.pl" DESTINATION ${INSTALL_SCRIPTS_DIR})
++install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-eqns.pl" DESTINATION ${INSTALL_SCRIPTS_DIR})
++install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-parm.pl" DESTINATION ${INSTALL_SCRIPTS_DIR})
++install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-seq.sh" DESTINATION ${INSTALL_SCRIPTS_DIR})
++install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-unit.pl" DESTINATION ${INSTALL_SCRIPTS_DIR})
++install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-volts.py" DESTINATION ${INSTALL_SCRIPTS_DIR})
+ 
+ install(FILES "${CUSTOM_TELEMETRY_DIR}/telem-m0xer-3.txt" DESTINATION ${INSTALL_CONF_DIR})
+ install(FILES "${CUSTOM_TELEMETRY_DIR}/telem-balloon.conf" DESTINATION ${INSTALL_CONF_DIR})
diff --git a/srcpkgs/direwolf/patches/fix_udev_install.patch b/srcpkgs/direwolf/patches/fix_udev_install.patch
new file mode 100644
index 000000000000..e4285a414b20
--- /dev/null
+++ b/srcpkgs/direwolf/patches/fix_udev_install.patch
@@ -0,0 +1,13 @@
+install udev rules in the proper place
+
+--- a/conf/CMakeLists.txt
++++ b/conf/CMakeLists.txt
+@@ -26,7 +26,7 @@
+ 
+ # install udev rules for CM108
+ if(LINUX)
+-  install(FILES "${CUSTOM_CONF_DIR}/99-direwolf-cmedia.rules" DESTINATION /etc/udev/rules.d/)
++  install(FILES "${CUSTOM_CONF_DIR}/99-direwolf-cmedia.rules" DESTINATION /usr/lib/udev/rules.d/)
+ endif()
+ 
+ install(FILES "${CMAKE_BINARY_DIR}/direwolf.conf" DESTINATION ${INSTALL_CONF_DIR})
diff --git a/srcpkgs/direwolf/template b/srcpkgs/direwolf/template
new file mode 100644
index 000000000000..c3e8b206b7b7
--- /dev/null
+++ b/srcpkgs/direwolf/template
@@ -0,0 +1,15 @@
+# Template file for 'direwolf'
+pkgname=direwolf
+version=1.6
+revision=1
+build_style=cmake
+configure_args="-DFORCE_SSE=1 -DRUN_NEON=advanced"
+makedepends="alsa-lib-devel hamlib-devel eudev-libudev-devel"
+short_desc="AX.25 packet modem/TNC and APRS encoder/decoder"
+maintainer="classabbyamp <void@placeviolette.net>"
+license="GPL-2.0-or-later"
+homepage="https://github.com/wb2osz/direwolf"
+changelog="https://raw.githubusercontent.com/wb2osz/direwolf/master/CHANGES.md"
+distfiles="https://github.com/wb2osz/direwolf/archive/refs/tags/${version}.tar.gz"
+checksum=208b0563c9b339cbeb0e1feb52dc18ae38295c40c0009d6381fc4acb68fdf660
+python_version=3

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

* Re: [PR PATCH] [Updated] New package: direwolf-1.6
  2022-05-16  6:29 [PR PATCH] New package: direwolf-1.6 classabbyamp
                   ` (2 preceding siblings ...)
  2022-05-24  1:16 ` classabbyamp
@ 2022-05-28  6:55 ` classabbyamp
  2022-07-31  7:39 ` classabbyamp
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 10+ messages in thread
From: classabbyamp @ 2022-05-28  6:55 UTC (permalink / raw)
  To: ml

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

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

https://github.com/classabbyamp/void-packages new/direwolf
https://github.com/void-linux/void-packages/pull/37147

New package: direwolf-1.6
<!-- Uncomment relevant sections and delete options which are not applicable -->
saw the recently-closed #27510, was interested in it, brought it back to life and cleaned it up a bit more.

closes #33142

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

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

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

From 93c071107f9b8c90687e2e89f4e96a99e427fa31 Mon Sep 17 00:00:00 2001
From: classabbyamp <dev@placeviolette.net>
Date: Mon, 16 May 2022 02:28:19 -0400
Subject: [PATCH] New package: direwolf-1.6

---
 srcpkgs/direwolf/patches/fix_desktop.patch    | 20 +++++++++
 srcpkgs/direwolf/patches/fix_musl.patch       | 44 +++++++++++++++++++
 .../patches/fix_scripts_install.patch         | 36 +++++++++++++++
 .../direwolf/patches/fix_udev_install.patch   | 13 ++++++
 srcpkgs/direwolf/template                     | 15 +++++++
 5 files changed, 128 insertions(+)
 create mode 100644 srcpkgs/direwolf/patches/fix_desktop.patch
 create mode 100644 srcpkgs/direwolf/patches/fix_musl.patch
 create mode 100644 srcpkgs/direwolf/patches/fix_scripts_install.patch
 create mode 100644 srcpkgs/direwolf/patches/fix_udev_install.patch
 create mode 100644 srcpkgs/direwolf/template

diff --git a/srcpkgs/direwolf/patches/fix_desktop.patch b/srcpkgs/direwolf/patches/fix_desktop.patch
new file mode 100644
index 000000000000..3f851c4c44f1
--- /dev/null
+++ b/srcpkgs/direwolf/patches/fix_desktop.patch
@@ -0,0 +1,20 @@
+fix issues in the desktop file (no icon, hardcodes xterm)
+
+upstreamed in wb2osz/direwolf#393
+
+--- a/cmake/cpack/direwolf.desktop.in
++++ b/cmake/cpack/direwolf.desktop.in
+@@ -2,9 +2,9 @@
+ Name=@APPLICATION_NAME@
+ Comment=APRS Soundcard TNC
+-Exec=@APPLICATION_DESKTOP_EXEC@
++Exec=@CMAKE_PROJECT_NAME@
+-Icon=@CMAKE_PROJECT_NAME@_icon.png
++Icon=@CMAKE_PROJECT_NAME@_icon
+ StartupNotify=true
+-Terminal=false
++Terminal=true
+ Type=Application
+ Categories=HamRadio
+ Keywords=Ham Radio;APRS;Soundcard TNC;KISS;AGWPE;AX.25
+ 
diff --git a/srcpkgs/direwolf/patches/fix_musl.patch b/srcpkgs/direwolf/patches/fix_musl.patch
new file mode 100644
index 000000000000..0b755ea53da7
--- /dev/null
+++ b/srcpkgs/direwolf/patches/fix_musl.patch
@@ -0,0 +1,44 @@
+upstreamed in wb2osz/direwolf#394
+
+From 81f2f53675b3a965baa4dad13ee913eec26ce9d1 Mon Sep 17 00:00:00 2001
+From: classabbyamp <dev@placeviolette.net>
+Date: Mon, 16 May 2022 02:23:26 -0400
+Subject: [PATCH] fix compilation on musl
+
+this should allow for compilation on musl libc
+
+possibly fixes #150
+---
+ src/decode_aprs.c | 4 ----
+ src/direwolf.h    | 2 +-
+ 2 files changed, 1 insertion(+), 5 deletions(-)
+
+diff --git a/src/direwolf.h b/src/direwolf.h
+index efc329b..ca12266 100644
+--- a/src/direwolf.h
++++ b/src/direwolf.h
+@@ -282,7 +282,7 @@ char *strtok_r(char *str, const char *delim, char **saveptr);
+ char *strcasestr(const char *S, const char *FIND);
+ 
+ 
+-#if defined(__OpenBSD__) || defined(__FreeBSD__) || defined(__APPLE__)
++#if ! defined(__GLIBC__) || defined(__OpenBSD__) || defined(__FreeBSD__) || defined(__APPLE__)
+ 
+ // strlcpy and strlcat should be in string.h and the C library.
+ 
+-- 
+2.36.1
+--- a/src/decode_aprs.c
++++ b/src/decode_aprs.c
+@@ -3930,11 +3930,7 @@
+  * models before getting to the more generic APY.
+  */
+ 
+-#if defined(__WIN32__) || defined(__OpenBSD__) || defined(__FreeBSD__) || defined(__APPLE__)
+ 	    qsort (tocalls, num_tocalls, sizeof(struct tocalls_s), tocall_cmp);
+-#else
+-	    qsort (tocalls, num_tocalls, sizeof(struct tocalls_s), (__compar_fn_t)tocall_cmp);
+-#endif
+ 	  }
+ 	  else {
+ 	    if ( ! A->g_quiet) {
diff --git a/srcpkgs/direwolf/patches/fix_scripts_install.patch b/srcpkgs/direwolf/patches/fix_scripts_install.patch
new file mode 100644
index 000000000000..21bd7d699064
--- /dev/null
+++ b/srcpkgs/direwolf/patches/fix_scripts_install.patch
@@ -0,0 +1,36 @@
+these scripts should probably not be put in /usr/bin, but instead with the rest of the scripts
+
+--- a/scripts/CMakeLists.txt
++++ b/scripts/CMakeLists.txt
+@@ -1,6 +1,6 @@
+ 
+ if(NOT (WIN32 OR CYGWIN))
+-  install(PROGRAMS "${CUSTOM_SCRIPTS_DIR}/dwespeak.sh" DESTINATION ${INSTALL_BIN_DIR})
++  install(PROGRAMS "${CUSTOM_SCRIPTS_DIR}/dwespeak.sh" DESTINATION ${INSTALL_SCRIPTS_DIR})
+   install(PROGRAMS "${CUSTOM_SCRIPTS_DIR}/dw-start.sh" DESTINATION ${INSTALL_SCRIPTS_DIR})
+   add_subdirectory(telemetry-toolkit)
+ endif()
+--- a/scripts/telemetry-toolkit/CMakeLists.txt
++++ b/scripts/telemetry-toolkit/CMakeLists.txt
+@@ -1,12 +1,12 @@
+-install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-balloon.pl" DESTINATION ${INSTALL_BIN_DIR})
+-install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-bits.pl" DESTINATION ${INSTALL_BIN_DIR})
+-install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-data.pl" DESTINATION ${INSTALL_BIN_DIR})
+-install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-data91.pl" DESTINATION ${INSTALL_BIN_DIR})
+-install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-eqns.pl" DESTINATION ${INSTALL_BIN_DIR})
+-install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-parm.pl" DESTINATION ${INSTALL_BIN_DIR})
+-install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-seq.sh" DESTINATION ${INSTALL_BIN_DIR})
+-install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-unit.pl" DESTINATION ${INSTALL_BIN_DIR})
+-install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-volts.py" DESTINATION ${INSTALL_BIN_DIR})
++install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-balloon.pl" DESTINATION ${INSTALL_SCRIPTS_DIR})
++install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-bits.pl" DESTINATION ${INSTALL_SCRIPTS_DIR})
++install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-data.pl" DESTINATION ${INSTALL_SCRIPTS_DIR})
++install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-data91.pl" DESTINATION ${INSTALL_SCRIPTS_DIR})
++install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-eqns.pl" DESTINATION ${INSTALL_SCRIPTS_DIR})
++install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-parm.pl" DESTINATION ${INSTALL_SCRIPTS_DIR})
++install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-seq.sh" DESTINATION ${INSTALL_SCRIPTS_DIR})
++install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-unit.pl" DESTINATION ${INSTALL_SCRIPTS_DIR})
++install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-volts.py" DESTINATION ${INSTALL_SCRIPTS_DIR})
+ 
+ install(FILES "${CUSTOM_TELEMETRY_DIR}/telem-m0xer-3.txt" DESTINATION ${INSTALL_CONF_DIR})
+ install(FILES "${CUSTOM_TELEMETRY_DIR}/telem-balloon.conf" DESTINATION ${INSTALL_CONF_DIR})
diff --git a/srcpkgs/direwolf/patches/fix_udev_install.patch b/srcpkgs/direwolf/patches/fix_udev_install.patch
new file mode 100644
index 000000000000..e4285a414b20
--- /dev/null
+++ b/srcpkgs/direwolf/patches/fix_udev_install.patch
@@ -0,0 +1,13 @@
+install udev rules in the proper place
+
+--- a/conf/CMakeLists.txt
++++ b/conf/CMakeLists.txt
+@@ -26,7 +26,7 @@
+ 
+ # install udev rules for CM108
+ if(LINUX)
+-  install(FILES "${CUSTOM_CONF_DIR}/99-direwolf-cmedia.rules" DESTINATION /etc/udev/rules.d/)
++  install(FILES "${CUSTOM_CONF_DIR}/99-direwolf-cmedia.rules" DESTINATION /usr/lib/udev/rules.d/)
+ endif()
+ 
+ install(FILES "${CMAKE_BINARY_DIR}/direwolf.conf" DESTINATION ${INSTALL_CONF_DIR})
diff --git a/srcpkgs/direwolf/template b/srcpkgs/direwolf/template
new file mode 100644
index 000000000000..c3e8b206b7b7
--- /dev/null
+++ b/srcpkgs/direwolf/template
@@ -0,0 +1,15 @@
+# Template file for 'direwolf'
+pkgname=direwolf
+version=1.6
+revision=1
+build_style=cmake
+configure_args="-DFORCE_SSE=1 -DRUN_NEON=advanced"
+makedepends="alsa-lib-devel hamlib-devel eudev-libudev-devel"
+short_desc="AX.25 packet modem/TNC and APRS encoder/decoder"
+maintainer="classabbyamp <void@placeviolette.net>"
+license="GPL-2.0-or-later"
+homepage="https://github.com/wb2osz/direwolf"
+changelog="https://raw.githubusercontent.com/wb2osz/direwolf/master/CHANGES.md"
+distfiles="https://github.com/wb2osz/direwolf/archive/refs/tags/${version}.tar.gz"
+checksum=208b0563c9b339cbeb0e1feb52dc18ae38295c40c0009d6381fc4acb68fdf660
+python_version=3

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

* Re: [PR PATCH] [Updated] New package: direwolf-1.6
  2022-05-16  6:29 [PR PATCH] New package: direwolf-1.6 classabbyamp
                   ` (3 preceding siblings ...)
  2022-05-28  6:55 ` classabbyamp
@ 2022-07-31  7:39 ` classabbyamp
  2022-10-30  2:14 ` github-actions
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 10+ messages in thread
From: classabbyamp @ 2022-07-31  7:39 UTC (permalink / raw)
  To: ml

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

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

https://github.com/classabbyamp/void-packages new/direwolf
https://github.com/void-linux/void-packages/pull/37147

New package: direwolf-1.6
<!-- Uncomment relevant sections and delete options which are not applicable -->
saw the recently-closed #27510, was interested in it, brought it back to life and cleaned it up a bit more.

closes #33142

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

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

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

From aeff70cb1f5184a4dd0876c93cd903ba3fd897d5 Mon Sep 17 00:00:00 2001
From: classabbyamp <dev@placeviolette.net>
Date: Mon, 16 May 2022 02:28:19 -0400
Subject: [PATCH] New package: direwolf-1.6

---
 srcpkgs/direwolf/patches/fix_desktop.patch    | 20 +++++++++
 srcpkgs/direwolf/patches/fix_musl.patch       | 44 +++++++++++++++++++
 .../patches/fix_scripts_install.patch         | 36 +++++++++++++++
 .../direwolf/patches/fix_udev_install.patch   | 13 ++++++
 srcpkgs/direwolf/template                     | 15 +++++++
 5 files changed, 128 insertions(+)
 create mode 100644 srcpkgs/direwolf/patches/fix_desktop.patch
 create mode 100644 srcpkgs/direwolf/patches/fix_musl.patch
 create mode 100644 srcpkgs/direwolf/patches/fix_scripts_install.patch
 create mode 100644 srcpkgs/direwolf/patches/fix_udev_install.patch
 create mode 100644 srcpkgs/direwolf/template

diff --git a/srcpkgs/direwolf/patches/fix_desktop.patch b/srcpkgs/direwolf/patches/fix_desktop.patch
new file mode 100644
index 000000000000..3f851c4c44f1
--- /dev/null
+++ b/srcpkgs/direwolf/patches/fix_desktop.patch
@@ -0,0 +1,20 @@
+fix issues in the desktop file (no icon, hardcodes xterm)
+
+upstreamed in wb2osz/direwolf#393
+
+--- a/cmake/cpack/direwolf.desktop.in
++++ b/cmake/cpack/direwolf.desktop.in
+@@ -2,9 +2,9 @@
+ Name=@APPLICATION_NAME@
+ Comment=APRS Soundcard TNC
+-Exec=@APPLICATION_DESKTOP_EXEC@
++Exec=@CMAKE_PROJECT_NAME@
+-Icon=@CMAKE_PROJECT_NAME@_icon.png
++Icon=@CMAKE_PROJECT_NAME@_icon
+ StartupNotify=true
+-Terminal=false
++Terminal=true
+ Type=Application
+ Categories=HamRadio
+ Keywords=Ham Radio;APRS;Soundcard TNC;KISS;AGWPE;AX.25
+ 
diff --git a/srcpkgs/direwolf/patches/fix_musl.patch b/srcpkgs/direwolf/patches/fix_musl.patch
new file mode 100644
index 000000000000..0b755ea53da7
--- /dev/null
+++ b/srcpkgs/direwolf/patches/fix_musl.patch
@@ -0,0 +1,44 @@
+upstreamed in wb2osz/direwolf#394
+
+From 81f2f53675b3a965baa4dad13ee913eec26ce9d1 Mon Sep 17 00:00:00 2001
+From: classabbyamp <dev@placeviolette.net>
+Date: Mon, 16 May 2022 02:23:26 -0400
+Subject: [PATCH] fix compilation on musl
+
+this should allow for compilation on musl libc
+
+possibly fixes #150
+---
+ src/decode_aprs.c | 4 ----
+ src/direwolf.h    | 2 +-
+ 2 files changed, 1 insertion(+), 5 deletions(-)
+
+diff --git a/src/direwolf.h b/src/direwolf.h
+index efc329b..ca12266 100644
+--- a/src/direwolf.h
++++ b/src/direwolf.h
+@@ -282,7 +282,7 @@ char *strtok_r(char *str, const char *delim, char **saveptr);
+ char *strcasestr(const char *S, const char *FIND);
+ 
+ 
+-#if defined(__OpenBSD__) || defined(__FreeBSD__) || defined(__APPLE__)
++#if ! defined(__GLIBC__) || defined(__OpenBSD__) || defined(__FreeBSD__) || defined(__APPLE__)
+ 
+ // strlcpy and strlcat should be in string.h and the C library.
+ 
+-- 
+2.36.1
+--- a/src/decode_aprs.c
++++ b/src/decode_aprs.c
+@@ -3930,11 +3930,7 @@
+  * models before getting to the more generic APY.
+  */
+ 
+-#if defined(__WIN32__) || defined(__OpenBSD__) || defined(__FreeBSD__) || defined(__APPLE__)
+ 	    qsort (tocalls, num_tocalls, sizeof(struct tocalls_s), tocall_cmp);
+-#else
+-	    qsort (tocalls, num_tocalls, sizeof(struct tocalls_s), (__compar_fn_t)tocall_cmp);
+-#endif
+ 	  }
+ 	  else {
+ 	    if ( ! A->g_quiet) {
diff --git a/srcpkgs/direwolf/patches/fix_scripts_install.patch b/srcpkgs/direwolf/patches/fix_scripts_install.patch
new file mode 100644
index 000000000000..21bd7d699064
--- /dev/null
+++ b/srcpkgs/direwolf/patches/fix_scripts_install.patch
@@ -0,0 +1,36 @@
+these scripts should probably not be put in /usr/bin, but instead with the rest of the scripts
+
+--- a/scripts/CMakeLists.txt
++++ b/scripts/CMakeLists.txt
+@@ -1,6 +1,6 @@
+ 
+ if(NOT (WIN32 OR CYGWIN))
+-  install(PROGRAMS "${CUSTOM_SCRIPTS_DIR}/dwespeak.sh" DESTINATION ${INSTALL_BIN_DIR})
++  install(PROGRAMS "${CUSTOM_SCRIPTS_DIR}/dwespeak.sh" DESTINATION ${INSTALL_SCRIPTS_DIR})
+   install(PROGRAMS "${CUSTOM_SCRIPTS_DIR}/dw-start.sh" DESTINATION ${INSTALL_SCRIPTS_DIR})
+   add_subdirectory(telemetry-toolkit)
+ endif()
+--- a/scripts/telemetry-toolkit/CMakeLists.txt
++++ b/scripts/telemetry-toolkit/CMakeLists.txt
+@@ -1,12 +1,12 @@
+-install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-balloon.pl" DESTINATION ${INSTALL_BIN_DIR})
+-install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-bits.pl" DESTINATION ${INSTALL_BIN_DIR})
+-install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-data.pl" DESTINATION ${INSTALL_BIN_DIR})
+-install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-data91.pl" DESTINATION ${INSTALL_BIN_DIR})
+-install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-eqns.pl" DESTINATION ${INSTALL_BIN_DIR})
+-install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-parm.pl" DESTINATION ${INSTALL_BIN_DIR})
+-install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-seq.sh" DESTINATION ${INSTALL_BIN_DIR})
+-install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-unit.pl" DESTINATION ${INSTALL_BIN_DIR})
+-install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-volts.py" DESTINATION ${INSTALL_BIN_DIR})
++install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-balloon.pl" DESTINATION ${INSTALL_SCRIPTS_DIR})
++install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-bits.pl" DESTINATION ${INSTALL_SCRIPTS_DIR})
++install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-data.pl" DESTINATION ${INSTALL_SCRIPTS_DIR})
++install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-data91.pl" DESTINATION ${INSTALL_SCRIPTS_DIR})
++install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-eqns.pl" DESTINATION ${INSTALL_SCRIPTS_DIR})
++install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-parm.pl" DESTINATION ${INSTALL_SCRIPTS_DIR})
++install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-seq.sh" DESTINATION ${INSTALL_SCRIPTS_DIR})
++install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-unit.pl" DESTINATION ${INSTALL_SCRIPTS_DIR})
++install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-volts.py" DESTINATION ${INSTALL_SCRIPTS_DIR})
+ 
+ install(FILES "${CUSTOM_TELEMETRY_DIR}/telem-m0xer-3.txt" DESTINATION ${INSTALL_CONF_DIR})
+ install(FILES "${CUSTOM_TELEMETRY_DIR}/telem-balloon.conf" DESTINATION ${INSTALL_CONF_DIR})
diff --git a/srcpkgs/direwolf/patches/fix_udev_install.patch b/srcpkgs/direwolf/patches/fix_udev_install.patch
new file mode 100644
index 000000000000..e4285a414b20
--- /dev/null
+++ b/srcpkgs/direwolf/patches/fix_udev_install.patch
@@ -0,0 +1,13 @@
+install udev rules in the proper place
+
+--- a/conf/CMakeLists.txt
++++ b/conf/CMakeLists.txt
+@@ -26,7 +26,7 @@
+ 
+ # install udev rules for CM108
+ if(LINUX)
+-  install(FILES "${CUSTOM_CONF_DIR}/99-direwolf-cmedia.rules" DESTINATION /etc/udev/rules.d/)
++  install(FILES "${CUSTOM_CONF_DIR}/99-direwolf-cmedia.rules" DESTINATION /usr/lib/udev/rules.d/)
+ endif()
+ 
+ install(FILES "${CMAKE_BINARY_DIR}/direwolf.conf" DESTINATION ${INSTALL_CONF_DIR})
diff --git a/srcpkgs/direwolf/template b/srcpkgs/direwolf/template
new file mode 100644
index 000000000000..c3e8b206b7b7
--- /dev/null
+++ b/srcpkgs/direwolf/template
@@ -0,0 +1,15 @@
+# Template file for 'direwolf'
+pkgname=direwolf
+version=1.6
+revision=1
+build_style=cmake
+configure_args="-DFORCE_SSE=1 -DRUN_NEON=advanced"
+makedepends="alsa-lib-devel hamlib-devel eudev-libudev-devel"
+short_desc="AX.25 packet modem/TNC and APRS encoder/decoder"
+maintainer="classabbyamp <void@placeviolette.net>"
+license="GPL-2.0-or-later"
+homepage="https://github.com/wb2osz/direwolf"
+changelog="https://raw.githubusercontent.com/wb2osz/direwolf/master/CHANGES.md"
+distfiles="https://github.com/wb2osz/direwolf/archive/refs/tags/${version}.tar.gz"
+checksum=208b0563c9b339cbeb0e1feb52dc18ae38295c40c0009d6381fc4acb68fdf660
+python_version=3

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

* Re: New package: direwolf-1.6
  2022-05-16  6:29 [PR PATCH] New package: direwolf-1.6 classabbyamp
                   ` (4 preceding siblings ...)
  2022-07-31  7:39 ` classabbyamp
@ 2022-10-30  2:14 ` github-actions
  2022-11-01 15:05 ` [PR PATCH] [Updated] " classabbyamp
  2022-11-01 16:36 ` [PR PATCH] [Merged]: " classabbyamp
  7 siblings, 0 replies; 10+ messages in thread
From: github-actions @ 2022-10-30  2:14 UTC (permalink / raw)
  To: ml

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

New comment by github-actions[bot] on void-packages repository

https://github.com/void-linux/void-packages/pull/37147#issuecomment-1296065857

Comment:
Pull Requests become stale 90 days after last activity and are closed 14 days after that.  If this pull request is still relevant bump it or assign it.

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

* Re: [PR PATCH] [Updated] New package: direwolf-1.6
  2022-05-16  6:29 [PR PATCH] New package: direwolf-1.6 classabbyamp
                   ` (5 preceding siblings ...)
  2022-10-30  2:14 ` github-actions
@ 2022-11-01 15:05 ` classabbyamp
  2022-11-01 16:36 ` [PR PATCH] [Merged]: " classabbyamp
  7 siblings, 0 replies; 10+ messages in thread
From: classabbyamp @ 2022-11-01 15:05 UTC (permalink / raw)
  To: ml

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

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

https://github.com/classabbyamp/void-packages new/direwolf
https://github.com/void-linux/void-packages/pull/37147

New package: direwolf-1.6
<!-- Uncomment relevant sections and delete options which are not applicable -->
saw the recently-closed #27510, was interested in it, brought it back to life and cleaned it up a bit more.

closes #33142

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

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

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

From 4d572108458679eb37eb02d67a54ddab396e9d66 Mon Sep 17 00:00:00 2001
From: classabbyamp <dev@placeviolette.net>
Date: Mon, 16 May 2022 02:28:19 -0400
Subject: [PATCH] New package: direwolf-1.6

---
 srcpkgs/direwolf/patches/fix_desktop.patch    | 20 +++++++++
 srcpkgs/direwolf/patches/fix_musl.patch       | 44 +++++++++++++++++++
 .../patches/fix_scripts_install.patch         | 36 +++++++++++++++
 .../direwolf/patches/fix_udev_install.patch   | 13 ++++++
 srcpkgs/direwolf/template                     | 15 +++++++
 5 files changed, 128 insertions(+)
 create mode 100644 srcpkgs/direwolf/patches/fix_desktop.patch
 create mode 100644 srcpkgs/direwolf/patches/fix_musl.patch
 create mode 100644 srcpkgs/direwolf/patches/fix_scripts_install.patch
 create mode 100644 srcpkgs/direwolf/patches/fix_udev_install.patch
 create mode 100644 srcpkgs/direwolf/template

diff --git a/srcpkgs/direwolf/patches/fix_desktop.patch b/srcpkgs/direwolf/patches/fix_desktop.patch
new file mode 100644
index 000000000000..3f851c4c44f1
--- /dev/null
+++ b/srcpkgs/direwolf/patches/fix_desktop.patch
@@ -0,0 +1,20 @@
+fix issues in the desktop file (no icon, hardcodes xterm)
+
+upstreamed in wb2osz/direwolf#393
+
+--- a/cmake/cpack/direwolf.desktop.in
++++ b/cmake/cpack/direwolf.desktop.in
+@@ -2,9 +2,9 @@
+ Name=@APPLICATION_NAME@
+ Comment=APRS Soundcard TNC
+-Exec=@APPLICATION_DESKTOP_EXEC@
++Exec=@CMAKE_PROJECT_NAME@
+-Icon=@CMAKE_PROJECT_NAME@_icon.png
++Icon=@CMAKE_PROJECT_NAME@_icon
+ StartupNotify=true
+-Terminal=false
++Terminal=true
+ Type=Application
+ Categories=HamRadio
+ Keywords=Ham Radio;APRS;Soundcard TNC;KISS;AGWPE;AX.25
+ 
diff --git a/srcpkgs/direwolf/patches/fix_musl.patch b/srcpkgs/direwolf/patches/fix_musl.patch
new file mode 100644
index 000000000000..0b755ea53da7
--- /dev/null
+++ b/srcpkgs/direwolf/patches/fix_musl.patch
@@ -0,0 +1,44 @@
+upstreamed in wb2osz/direwolf#394
+
+From 81f2f53675b3a965baa4dad13ee913eec26ce9d1 Mon Sep 17 00:00:00 2001
+From: classabbyamp <dev@placeviolette.net>
+Date: Mon, 16 May 2022 02:23:26 -0400
+Subject: [PATCH] fix compilation on musl
+
+this should allow for compilation on musl libc
+
+possibly fixes #150
+---
+ src/decode_aprs.c | 4 ----
+ src/direwolf.h    | 2 +-
+ 2 files changed, 1 insertion(+), 5 deletions(-)
+
+diff --git a/src/direwolf.h b/src/direwolf.h
+index efc329b..ca12266 100644
+--- a/src/direwolf.h
++++ b/src/direwolf.h
+@@ -282,7 +282,7 @@ char *strtok_r(char *str, const char *delim, char **saveptr);
+ char *strcasestr(const char *S, const char *FIND);
+ 
+ 
+-#if defined(__OpenBSD__) || defined(__FreeBSD__) || defined(__APPLE__)
++#if ! defined(__GLIBC__) || defined(__OpenBSD__) || defined(__FreeBSD__) || defined(__APPLE__)
+ 
+ // strlcpy and strlcat should be in string.h and the C library.
+ 
+-- 
+2.36.1
+--- a/src/decode_aprs.c
++++ b/src/decode_aprs.c
+@@ -3930,11 +3930,7 @@
+  * models before getting to the more generic APY.
+  */
+ 
+-#if defined(__WIN32__) || defined(__OpenBSD__) || defined(__FreeBSD__) || defined(__APPLE__)
+ 	    qsort (tocalls, num_tocalls, sizeof(struct tocalls_s), tocall_cmp);
+-#else
+-	    qsort (tocalls, num_tocalls, sizeof(struct tocalls_s), (__compar_fn_t)tocall_cmp);
+-#endif
+ 	  }
+ 	  else {
+ 	    if ( ! A->g_quiet) {
diff --git a/srcpkgs/direwolf/patches/fix_scripts_install.patch b/srcpkgs/direwolf/patches/fix_scripts_install.patch
new file mode 100644
index 000000000000..21bd7d699064
--- /dev/null
+++ b/srcpkgs/direwolf/patches/fix_scripts_install.patch
@@ -0,0 +1,36 @@
+these scripts should probably not be put in /usr/bin, but instead with the rest of the scripts
+
+--- a/scripts/CMakeLists.txt
++++ b/scripts/CMakeLists.txt
+@@ -1,6 +1,6 @@
+ 
+ if(NOT (WIN32 OR CYGWIN))
+-  install(PROGRAMS "${CUSTOM_SCRIPTS_DIR}/dwespeak.sh" DESTINATION ${INSTALL_BIN_DIR})
++  install(PROGRAMS "${CUSTOM_SCRIPTS_DIR}/dwespeak.sh" DESTINATION ${INSTALL_SCRIPTS_DIR})
+   install(PROGRAMS "${CUSTOM_SCRIPTS_DIR}/dw-start.sh" DESTINATION ${INSTALL_SCRIPTS_DIR})
+   add_subdirectory(telemetry-toolkit)
+ endif()
+--- a/scripts/telemetry-toolkit/CMakeLists.txt
++++ b/scripts/telemetry-toolkit/CMakeLists.txt
+@@ -1,12 +1,12 @@
+-install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-balloon.pl" DESTINATION ${INSTALL_BIN_DIR})
+-install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-bits.pl" DESTINATION ${INSTALL_BIN_DIR})
+-install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-data.pl" DESTINATION ${INSTALL_BIN_DIR})
+-install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-data91.pl" DESTINATION ${INSTALL_BIN_DIR})
+-install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-eqns.pl" DESTINATION ${INSTALL_BIN_DIR})
+-install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-parm.pl" DESTINATION ${INSTALL_BIN_DIR})
+-install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-seq.sh" DESTINATION ${INSTALL_BIN_DIR})
+-install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-unit.pl" DESTINATION ${INSTALL_BIN_DIR})
+-install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-volts.py" DESTINATION ${INSTALL_BIN_DIR})
++install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-balloon.pl" DESTINATION ${INSTALL_SCRIPTS_DIR})
++install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-bits.pl" DESTINATION ${INSTALL_SCRIPTS_DIR})
++install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-data.pl" DESTINATION ${INSTALL_SCRIPTS_DIR})
++install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-data91.pl" DESTINATION ${INSTALL_SCRIPTS_DIR})
++install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-eqns.pl" DESTINATION ${INSTALL_SCRIPTS_DIR})
++install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-parm.pl" DESTINATION ${INSTALL_SCRIPTS_DIR})
++install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-seq.sh" DESTINATION ${INSTALL_SCRIPTS_DIR})
++install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-unit.pl" DESTINATION ${INSTALL_SCRIPTS_DIR})
++install(PROGRAMS "${CUSTOM_TELEMETRY_DIR}/telem-volts.py" DESTINATION ${INSTALL_SCRIPTS_DIR})
+ 
+ install(FILES "${CUSTOM_TELEMETRY_DIR}/telem-m0xer-3.txt" DESTINATION ${INSTALL_CONF_DIR})
+ install(FILES "${CUSTOM_TELEMETRY_DIR}/telem-balloon.conf" DESTINATION ${INSTALL_CONF_DIR})
diff --git a/srcpkgs/direwolf/patches/fix_udev_install.patch b/srcpkgs/direwolf/patches/fix_udev_install.patch
new file mode 100644
index 000000000000..e4285a414b20
--- /dev/null
+++ b/srcpkgs/direwolf/patches/fix_udev_install.patch
@@ -0,0 +1,13 @@
+install udev rules in the proper place
+
+--- a/conf/CMakeLists.txt
++++ b/conf/CMakeLists.txt
+@@ -26,7 +26,7 @@
+ 
+ # install udev rules for CM108
+ if(LINUX)
+-  install(FILES "${CUSTOM_CONF_DIR}/99-direwolf-cmedia.rules" DESTINATION /etc/udev/rules.d/)
++  install(FILES "${CUSTOM_CONF_DIR}/99-direwolf-cmedia.rules" DESTINATION /usr/lib/udev/rules.d/)
+ endif()
+ 
+ install(FILES "${CMAKE_BINARY_DIR}/direwolf.conf" DESTINATION ${INSTALL_CONF_DIR})
diff --git a/srcpkgs/direwolf/template b/srcpkgs/direwolf/template
new file mode 100644
index 000000000000..c3e8b206b7b7
--- /dev/null
+++ b/srcpkgs/direwolf/template
@@ -0,0 +1,15 @@
+# Template file for 'direwolf'
+pkgname=direwolf
+version=1.6
+revision=1
+build_style=cmake
+configure_args="-DFORCE_SSE=1 -DRUN_NEON=advanced"
+makedepends="alsa-lib-devel hamlib-devel eudev-libudev-devel"
+short_desc="AX.25 packet modem/TNC and APRS encoder/decoder"
+maintainer="classabbyamp <void@placeviolette.net>"
+license="GPL-2.0-or-later"
+homepage="https://github.com/wb2osz/direwolf"
+changelog="https://raw.githubusercontent.com/wb2osz/direwolf/master/CHANGES.md"
+distfiles="https://github.com/wb2osz/direwolf/archive/refs/tags/${version}.tar.gz"
+checksum=208b0563c9b339cbeb0e1feb52dc18ae38295c40c0009d6381fc4acb68fdf660
+python_version=3

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

* Re: [PR PATCH] [Merged]: New package: direwolf-1.6
  2022-05-16  6:29 [PR PATCH] New package: direwolf-1.6 classabbyamp
                   ` (6 preceding siblings ...)
  2022-11-01 15:05 ` [PR PATCH] [Updated] " classabbyamp
@ 2022-11-01 16:36 ` classabbyamp
  7 siblings, 0 replies; 10+ messages in thread
From: classabbyamp @ 2022-11-01 16:36 UTC (permalink / raw)
  To: ml

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

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

New package: direwolf-1.6
https://github.com/void-linux/void-packages/pull/37147

Description:
<!-- Uncomment relevant sections and delete options which are not applicable -->
saw the recently-closed #27510, was interested in it, brought it back to life and cleaned it up a bit more.

closes #33142

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

#### 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.
-->
<!--
#### 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] 10+ messages in thread

* [PR PATCH] New package: direwolf-1.6
@ 2021-09-27  0:05 ElPresidentePoole
  0 siblings, 0 replies; 10+ messages in thread
From: ElPresidentePoole @ 2021-09-27  0:05 UTC (permalink / raw)
  To: ml

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

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

https://github.com/ElPresidentePoole/void-packages master
https://github.com/void-linux/void-packages/pull/33142

New package: direwolf-1.6
<!-- Mark items with [x] where applicable -->

#### General
- [x] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [ ] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [x] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [x] 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/33142.patch is attached

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

From 6fb9cf262ee15e7a68c107d32c97c8c71cbb9af8 Mon Sep 17 00:00:00 2001
From: Gordon Poole <gpoole@posteo.net>
Date: Sun, 26 Sep 2021 20:01:14 -0400
Subject: [PATCH] New package: direwolf-1.6

---
 srcpkgs/direwolf/patches/cmakeconf.diff | 11 +++++++++++
 srcpkgs/direwolf/template               | 13 +++++++++++++
 2 files changed, 24 insertions(+)
 create mode 100644 srcpkgs/direwolf/patches/cmakeconf.diff
 create mode 100644 srcpkgs/direwolf/template

diff --git a/srcpkgs/direwolf/patches/cmakeconf.diff b/srcpkgs/direwolf/patches/cmakeconf.diff
new file mode 100644
index 000000000000..a05447d2a25e
--- /dev/null
+++ b/srcpkgs/direwolf/patches/cmakeconf.diff
@@ -0,0 +1,11 @@
+--- a/conf/CMakeLists.txt	2021-09-26 18:44:49.217261850 -0400
++++ b/conf/CMakeLists.txt	2021-09-26 18:47:39.769193251 -0400
+@@ -26,7 +26,7 @@
+ 
+ # install udev rules for CM108
+ if(LINUX)
+-  install(FILES "${CUSTOM_CONF_DIR}/99-direwolf-cmedia.rules" DESTINATION /etc/udev/rules.d/)
++  install(FILES "${CUSTOM_CONF_DIR}/99-direwolf-cmedia.rules" DESTINATION /usr/lib/udev/rules.d/)
+ endif()
+ 
+ install(FILES "${CMAKE_BINARY_DIR}/direwolf.conf" DESTINATION ${INSTALL_CONF_DIR})
diff --git a/srcpkgs/direwolf/template b/srcpkgs/direwolf/template
new file mode 100644
index 000000000000..e969abdb4336
--- /dev/null
+++ b/srcpkgs/direwolf/template
@@ -0,0 +1,13 @@
+# Template file for 'direwolf'
+pkgname=direwolf
+version=1.6
+revision=1
+build_style=cmake
+makedepends="alsa-lib-devel eudev-libudev-devel"
+short_desc="Decoded Information from Radio Emissions"
+maintainer="Gordon Poole <gpoole@posteo.net>"
+license="GPL-3.0-or-later"
+homepage="https://github.com/wb2osz/direwolf/"
+distfiles="https://github.com/wb2osz/direwolf/archive/refs/tags/${version}.tar.gz"
+checksum=208b0563c9b339cbeb0e1feb52dc18ae38295c40c0009d6381fc4acb68fdf660
+python_version=2

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

end of thread, other threads:[~2022-11-01 16:36 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-16  6:29 [PR PATCH] New package: direwolf-1.6 classabbyamp
2022-05-17 17:05 ` [PR PATCH] [Updated] " classabbyamp
2022-05-24  0:56 ` classabbyamp
2022-05-24  1:16 ` classabbyamp
2022-05-28  6:55 ` classabbyamp
2022-07-31  7:39 ` classabbyamp
2022-10-30  2:14 ` github-actions
2022-11-01 15:05 ` [PR PATCH] [Updated] " classabbyamp
2022-11-01 16:36 ` [PR PATCH] [Merged]: " classabbyamp
  -- strict thread matches above, loose matches on Subject: below --
2021-09-27  0:05 [PR PATCH] " ElPresidentePoole

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