Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] [WIP] New Package: Direwolf
@ 2020-12-28 22:41 DavidKaep
  2020-12-28 22:59 ` [PR REVIEW] " ericonr
                   ` (14 more replies)
  0 siblings, 15 replies; 16+ messages in thread
From: DavidKaep @ 2020-12-28 22:41 UTC (permalink / raw)
  To: ml

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

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

https://github.com/DavidKaep/void-packages direwolf
https://github.com/void-linux/void-packages/pull/27510

[WIP] New Package: Direwolf
This is a template for Direwolf, a ham radio ax.25 software tnc.

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

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

From 0537e6aef92a0f9e8406eec8571220a60738a95d Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?David=20K=C3=A4ppeler?= <d.kaeppeler@gmx.de>
Date: Mon, 28 Dec 2020 23:35:12 +0100
Subject: [PATCH] New Package: Direwolf

---
 srcpkgs/direwolf/template | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)
 create mode 100644 srcpkgs/direwolf/template

diff --git a/srcpkgs/direwolf/template b/srcpkgs/direwolf/template
new file mode 100644
index 00000000000..30fb1a3da07
--- /dev/null
+++ b/srcpkgs/direwolf/template
@@ -0,0 +1,23 @@
+# Template file for 'direwolf'
+pkgname=direwolf
+version=1.6
+revision=1
+build_style=cmake
+configure_args="-Wno-dev"
+hostmakedepends="gcc make hamlib"
+makedepends="alsa-lib-devel libudev-devel hamlib-devel"
+depends="hamlib"
+short_desc="Software AX.25 TNC"
+maintainer="David Käppeler <d.kaeppeler@gmx.de>"
+license="GPL-3.0-or-later"
+homepage="https://github.com/wb2osz/direwolf"
+distfiles="https://github.com/wb2osz/direwolf/archive/${version}.tar.gz"
+checksum=208b0563c9b339cbeb0e1feb52dc18ae38295c40c0009d6381fc4acb68fdf660
+python_version=3
+
+pre_configure() {
+	if [ "$CROSS_BUILD" ]; then
+		vsed -i CMakeLists.txt  -e '10aset(RUN_NEON "advanced")'
+	fi
+	vsed -i conf/CMakeLists.txt -e 's/\/etc\/udev\/rules.d\//\/usr\/lib\/udev\/rules.d/g'
+}

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

* Re: [PR REVIEW] [WIP] New Package: Direwolf
  2020-12-28 22:41 [PR PATCH] [WIP] New Package: Direwolf DavidKaep
@ 2020-12-28 22:59 ` ericonr
  2020-12-28 23:01 ` ericonr
                   ` (13 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: ericonr @ 2020-12-28 22:59 UTC (permalink / raw)
  To: ml

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

New review comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/27510#discussion_r549512171

Comment:
It's easier to use a separator other than `/` here... something like `s,things,things,`

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

* Re: [WIP] New Package: Direwolf
  2020-12-28 22:41 [PR PATCH] [WIP] New Package: Direwolf DavidKaep
  2020-12-28 22:59 ` [PR REVIEW] " ericonr
@ 2020-12-28 23:01 ` ericonr
  2020-12-28 23:04 ` [PR PATCH] [Updated] " DavidKaep
                   ` (12 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: ericonr @ 2020-12-28 23:01 UTC (permalink / raw)
  To: ml

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

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/27510#issuecomment-751889866

Comment:
```
[  1%] Building C object external/geotranz/CMakeFiles/geotranz.dir/error_string.c.o
/builddir/direwolf-1.6/src/direwolf.h:302:56: error: expected declaration specifiers or '...' before string constant
  302 | #define strlcat(dst,src,siz) strlcat_debug(dst,src,siz,__FILE__,__func__,__LINE__)
      |                                                        ^~~~~~~~
```

musl actually provides `strlcat` and `strlcpy`...

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

* Re: [PR PATCH] [Updated] [WIP] New Package: Direwolf
  2020-12-28 22:41 [PR PATCH] [WIP] New Package: Direwolf DavidKaep
  2020-12-28 22:59 ` [PR REVIEW] " ericonr
  2020-12-28 23:01 ` ericonr
@ 2020-12-28 23:04 ` DavidKaep
  2020-12-28 23:10 ` [PR REVIEW] " ericonr
                   ` (11 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: DavidKaep @ 2020-12-28 23:04 UTC (permalink / raw)
  To: ml

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

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

https://github.com/DavidKaep/void-packages direwolf
https://github.com/void-linux/void-packages/pull/27510

[WIP] New Package: Direwolf
This is a template for Direwolf, a ham radio ax.25 software tnc.

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

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

From 96bf42b7100b00fe25da9ff404a8beb328abdadc Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?David=20K=C3=A4ppeler?= <d.kaeppeler@gmx.de>
Date: Mon, 28 Dec 2020 23:35:12 +0100
Subject: [PATCH] New Package: Direwolf

---
 srcpkgs/direwolf/template | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)
 create mode 100644 srcpkgs/direwolf/template

diff --git a/srcpkgs/direwolf/template b/srcpkgs/direwolf/template
new file mode 100644
index 00000000000..98b79389c0e
--- /dev/null
+++ b/srcpkgs/direwolf/template
@@ -0,0 +1,23 @@
+# Template file for 'direwolf'
+pkgname=direwolf
+version=1.6
+revision=1
+build_style=cmake
+archs="~*-musl"
+hostmakedepends="gcc make hamlib"
+makedepends="alsa-lib-devel libudev-devel hamlib-devel"
+depends="hamlib"
+short_desc="Software AX.25 TNC"
+maintainer="David Käppeler <d.kaeppeler@gmx.de>"
+license="GPL-3.0-or-later"
+homepage="https://github.com/wb2osz/direwolf"
+distfiles="https://github.com/wb2osz/direwolf/archive/${version}.tar.gz"
+checksum=208b0563c9b339cbeb0e1feb52dc18ae38295c40c0009d6381fc4acb68fdf660
+python_version=3
+
+pre_configure() {
+	if [ "$CROSS_BUILD" ]; then
+		vsed -i CMakeLists.txt  -e '10aset(RUN_NEON "advanced")'
+	fi
+	vsed -i conf/CMakeLists.txt -e 's/\/etc\/udev\/rules.d\//\/usr\/lib\/udev\/rules.d/g'
+}

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

* Re: [PR REVIEW] [WIP] New Package: Direwolf
  2020-12-28 22:41 [PR PATCH] [WIP] New Package: Direwolf DavidKaep
                   ` (2 preceding siblings ...)
  2020-12-28 23:04 ` [PR PATCH] [Updated] " DavidKaep
@ 2020-12-28 23:10 ` ericonr
  2020-12-28 23:47 ` DavidKaep
                   ` (10 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: ericonr @ 2020-12-28 23:10 UTC (permalink / raw)
  To: ml

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

New review comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/27510#discussion_r549514114

Comment:
Not really an option, this is simple enough to fix.

If you want to do it easily, just patch https://github.com/wb2osz/direwolf/blob/8ac14f86f5ee43176423fbdb07fe65aa18fcdb81/src/direwolf.h#L285 to `#if ! defined(__GLIBC__) || defined(__OpenBSD__) || defined(__FreeBSD__) || defined(__APPLE__)`

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

* Re: [PR REVIEW] [WIP] New Package: Direwolf
  2020-12-28 22:41 [PR PATCH] [WIP] New Package: Direwolf DavidKaep
                   ` (3 preceding siblings ...)
  2020-12-28 23:10 ` [PR REVIEW] " ericonr
@ 2020-12-28 23:47 ` DavidKaep
  2020-12-29  9:46 ` [PR PATCH] [Updated] " DavidKaep
                   ` (9 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: DavidKaep @ 2020-12-28 23:47 UTC (permalink / raw)
  To: ml

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

New review comment by DavidKaep on void-packages repository

https://github.com/void-linux/void-packages/pull/27510#discussion_r549520475

Comment:
Oops sorry i already pushed before i read your comments. Anyway thanks for the fast replys i will try that.

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

* Re: [PR PATCH] [Updated] [WIP] New Package: Direwolf
  2020-12-28 22:41 [PR PATCH] [WIP] New Package: Direwolf DavidKaep
                   ` (4 preceding siblings ...)
  2020-12-28 23:47 ` DavidKaep
@ 2020-12-29  9:46 ` DavidKaep
  2020-12-29  9:52 ` DavidKaep
                   ` (8 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: DavidKaep @ 2020-12-29  9:46 UTC (permalink / raw)
  To: ml

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

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

https://github.com/DavidKaep/void-packages direwolf
https://github.com/void-linux/void-packages/pull/27510

[WIP] New Package: Direwolf
This is a template for Direwolf, a ham radio ax.25 software tnc.

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

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

From 7a72f5e8651a3cd451ae20f5efe91d7bd17b6f94 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?David=20K=C3=A4ppeler?= <d.kaeppeler@gmx.de>
Date: Mon, 28 Dec 2020 23:35:12 +0100
Subject: [PATCH] New Package: Direwolf

---
 srcpkgs/direwolf/patches/10-Fix-cross.patch | 13 ++++++++
 srcpkgs/direwolf/patches/20-Fix-musl.patch  | 37 +++++++++++++++++++++
 srcpkgs/direwolf/template                   | 15 +++++++++
 3 files changed, 65 insertions(+)
 create mode 100644 srcpkgs/direwolf/patches/10-Fix-cross.patch
 create mode 100644 srcpkgs/direwolf/patches/20-Fix-musl.patch
 create mode 100644 srcpkgs/direwolf/template

diff --git a/srcpkgs/direwolf/patches/10-Fix-cross.patch b/srcpkgs/direwolf/patches/10-Fix-cross.patch
new file mode 100644
index 00000000000..fdf8d2f2db0
--- /dev/null
+++ b/srcpkgs/direwolf/patches/10-Fix-cross.patch
@@ -0,0 +1,13 @@
+Reason: Set RUN_NEON for cross compiling with arm architectures
+
+diff -ru CMakeLists.txt CMakeLists.txt
+--- CMakeLists.txt	2020-10-28 01:45:30.000000000 +0100
++++ d/CMakeLists.txt	2020-12-29 09:49:49.006446795 +0100
+@@ -8,6 +8,7 @@
+ set(direwolf_VERSION_PATCH "0")
+ set(direwolf_VERSION_SUFFIX "")
+ 
++set(RUN_NEON "advanced")
+ # options
+ option(FORCE_SSE "Compile with SSE instruction only" OFF)
+ option(FORCE_SSSE3 "Compile with SSSE3 instruction only" OFF)
diff --git a/srcpkgs/direwolf/patches/20-Fix-musl.patch b/srcpkgs/direwolf/patches/20-Fix-musl.patch
new file mode 100644
index 00000000000..4a6c2066912
--- /dev/null
+++ b/srcpkgs/direwolf/patches/20-Fix-musl.patch
@@ -0,0 +1,37 @@
+Reason: Fixes local declarations when using musl
+
+diff -ru conf/CMakeLists.txt conf/CMakeLists.txt
+--- conf/CMakeLists.txt	2020-10-28 01:45:30.000000000 +0100
++++ conf/CMakeLists.txt	2020-12-29 09:49:13.435238905 +0100
+@@ -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 -ru src/decode_aprs.c src/decode_aprs.c
+--- src/decode_aprs.c	2020-10-28 01:45:30.000000000 +0100
++++ src/decode_aprs.c	2020-12-29 09:53:24.021103609 +0100
+@@ -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 -ru src/direwolf.h src/direwolf.h
+--- src/direwolf.h	2020-10-28 01:45:30.000000000 +0100
++++ src/direwolf.h	2020-12-29 09:50:44.182848501 +0100
+@@ -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.
diff --git a/srcpkgs/direwolf/template b/srcpkgs/direwolf/template
new file mode 100644
index 00000000000..d1046766766
--- /dev/null
+++ b/srcpkgs/direwolf/template
@@ -0,0 +1,15 @@
+# Template file for 'direwolf'
+pkgname=direwolf
+version=1.6
+revision=1
+build_style=cmake
+hostmakedepends="gcc make hamlib"
+makedepends="alsa-lib-devel libudev-devel hamlib-devel"
+depends="hamlib"
+short_desc="Software AX.25/APRS TNC"
+maintainer="David Käppeler <d.kaeppeler@gmx.de>"
+license="GPL-3.0-or-later"
+homepage="https://github.com/wb2osz/direwolf"
+distfiles="https://github.com/wb2osz/direwolf/archive/${version}.tar.gz"
+checksum=208b0563c9b339cbeb0e1feb52dc18ae38295c40c0009d6381fc4acb68fdf660
+python_version=3

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

* Re: [WIP] New Package: Direwolf
  2020-12-28 22:41 [PR PATCH] [WIP] New Package: Direwolf DavidKaep
                   ` (5 preceding siblings ...)
  2020-12-29  9:46 ` [PR PATCH] [Updated] " DavidKaep
@ 2020-12-29  9:52 ` DavidKaep
  2021-01-06 12:02 ` [PR REVIEW] " sgn
                   ` (7 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: DavidKaep @ 2020-12-29  9:52 UTC (permalink / raw)
  To: ml

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

New comment by DavidKaep on void-packages repository

https://github.com/void-linux/void-packages/pull/27510#issuecomment-752016776

Comment:
Your suggestioin worked perfectly I moved everything into patches and now it works on musl as well.

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

* Re: [PR REVIEW] New Package: Direwolf
  2020-12-28 22:41 [PR PATCH] [WIP] New Package: Direwolf DavidKaep
                   ` (6 preceding siblings ...)
  2020-12-29  9:52 ` DavidKaep
@ 2021-01-06 12:02 ` sgn
  2021-01-06 14:51 ` ericonr
                   ` (6 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: sgn @ 2021-01-06 12:02 UTC (permalink / raw)
  To: ml

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

New review comment by sgn on void-packages repository

https://github.com/void-linux/void-packages/pull/27510#discussion_r552537780

Comment:
My 2 cents:
I would use:
```c
#if (defined(__linux__) && !defined(__GLIBC__)) || defined(__OpenBSD__) || defined(__FreeBSD__) || defined(__APPLE__)defined(__APPLE__)
```

With this form, we can submit to upstream.

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

* Re: [PR REVIEW] New Package: Direwolf
  2020-12-28 22:41 [PR PATCH] [WIP] New Package: Direwolf DavidKaep
                   ` (7 preceding siblings ...)
  2021-01-06 12:02 ` [PR REVIEW] " sgn
@ 2021-01-06 14:51 ` ericonr
  2021-04-18  4:47 ` ericonr
                   ` (5 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: ericonr @ 2021-01-06 14:51 UTC (permalink / raw)
  To: ml

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

New review comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/27510#discussion_r552683047

Comment:
@sgn that one is still encoding stuff that it doesn't need. They use CMake, they can see if the function exists at configure time. I just made the minimal patch that'd work for us :P 

See https://github.com/wb2osz/direwolf/commit/1d67b446694e122552b4e7387850e4e9a23d48d3 for the version in the dev branch. If @DavidKaep could test this out, it'd be great.

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

* Re: [PR REVIEW] New Package: Direwolf
  2020-12-28 22:41 [PR PATCH] [WIP] New Package: Direwolf DavidKaep
                   ` (8 preceding siblings ...)
  2021-01-06 14:51 ` ericonr
@ 2021-04-18  4:47 ` ericonr
  2021-04-18  4:47 ` ericonr
                   ` (4 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: ericonr @ 2021-04-18  4:47 UTC (permalink / raw)
  To: ml

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

New review comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/27510#discussion_r615340958

Comment:
Is `configure_args+=" -DRUN_NEON=advanced"` enough?

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

* Re: [PR REVIEW] New Package: Direwolf
  2020-12-28 22:41 [PR PATCH] [WIP] New Package: Direwolf DavidKaep
                   ` (11 preceding siblings ...)
  2021-04-18  4:47 ` ericonr
@ 2021-04-18  4:47 ` ericonr
  2022-05-01  2:14 ` github-actions
  2022-05-16  2:07 ` [PR PATCH] [Closed]: " github-actions
  14 siblings, 0 replies; 16+ messages in thread
From: ericonr @ 2021-04-18  4:47 UTC (permalink / raw)
  To: ml

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

New review comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/27510#discussion_r615341025

Comment:
```
=> direwolf-1.6_1: running pre-pkg hook: 04-generate-runtime-deps ...
   SONAME: libhamlib.so.2 <-> hamlib>=3.3_1
   SONAME: libasound.so.2 <-> alsa-lib>=1.0.20_1
   SONAME: libudev.so.1 <-> eudev-libudev>=1.6_1
   SONAME: libc.so <-> musl>=1.1.21_1
```

The `depends` line isn't necessary because it's detected automatically by our build system.

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

* Re: [PR REVIEW] New Package: Direwolf
  2020-12-28 22:41 [PR PATCH] [WIP] New Package: Direwolf DavidKaep
                   ` (10 preceding siblings ...)
  2021-04-18  4:47 ` ericonr
@ 2021-04-18  4:47 ` ericonr
  2021-04-18  4:47 ` ericonr
                   ` (2 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: ericonr @ 2021-04-18  4:47 UTC (permalink / raw)
  To: ml

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

New review comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/27510#discussion_r615340906

Comment:
Please include this in a separate patch, otherwise it can be removed accidentally if upstream reports that musl compat has been fixed.

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

* Re: [PR REVIEW] New Package: Direwolf
  2020-12-28 22:41 [PR PATCH] [WIP] New Package: Direwolf DavidKaep
                   ` (9 preceding siblings ...)
  2021-04-18  4:47 ` ericonr
@ 2021-04-18  4:47 ` ericonr
  2021-04-18  4:47 ` ericonr
                   ` (3 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: ericonr @ 2021-04-18  4:47 UTC (permalink / raw)
  To: ml

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

New review comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/27510#discussion_r615341080

Comment:
```suggestion
hostmakedepends="hamlib"
```

gcc and make are available by default.

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

* Re: New Package: Direwolf
  2020-12-28 22:41 [PR PATCH] [WIP] New Package: Direwolf DavidKaep
                   ` (12 preceding siblings ...)
  2021-04-18  4:47 ` ericonr
@ 2022-05-01  2:14 ` github-actions
  2022-05-16  2:07 ` [PR PATCH] [Closed]: " github-actions
  14 siblings, 0 replies; 16+ messages in thread
From: github-actions @ 2022-05-01  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/27510#issuecomment-1114104838

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] 16+ messages in thread

* Re: [PR PATCH] [Closed]: New Package: Direwolf
  2020-12-28 22:41 [PR PATCH] [WIP] New Package: Direwolf DavidKaep
                   ` (13 preceding siblings ...)
  2022-05-01  2:14 ` github-actions
@ 2022-05-16  2:07 ` github-actions
  14 siblings, 0 replies; 16+ messages in thread
From: github-actions @ 2022-05-16  2:07 UTC (permalink / raw)
  To: ml

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

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

New Package: Direwolf
https://github.com/void-linux/void-packages/pull/27510

Description:
This is a template for Direwolf, a ham radio ax.25 software tnc.

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

end of thread, other threads:[~2022-05-16  2:07 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-12-28 22:41 [PR PATCH] [WIP] New Package: Direwolf DavidKaep
2020-12-28 22:59 ` [PR REVIEW] " ericonr
2020-12-28 23:01 ` ericonr
2020-12-28 23:04 ` [PR PATCH] [Updated] " DavidKaep
2020-12-28 23:10 ` [PR REVIEW] " ericonr
2020-12-28 23:47 ` DavidKaep
2020-12-29  9:46 ` [PR PATCH] [Updated] " DavidKaep
2020-12-29  9:52 ` DavidKaep
2021-01-06 12:02 ` [PR REVIEW] " sgn
2021-01-06 14:51 ` ericonr
2021-04-18  4:47 ` ericonr
2021-04-18  4:47 ` ericonr
2021-04-18  4:47 ` ericonr
2021-04-18  4:47 ` ericonr
2022-05-01  2:14 ` github-actions
2022-05-16  2:07 ` [PR PATCH] [Closed]: " github-actions

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