Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New packages: netavark-1.5.0, aardvark-dns-1.5.0
@ 2023-03-24 16:57 daniel-eys
  2023-03-24 17:41 ` [PR PATCH] [Updated] " daniel-eys
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: daniel-eys @ 2023-03-24 16:57 UTC (permalink / raw)
  To: ml

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

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

https://github.com/daniel-eys/void-packages netavark
https://github.com/void-linux/void-packages/pull/42976

New packages: netavark-1.5.0, aardvark-dns-1.5.0
podman 4.0's new network stack.
Some more information if anybody is interested: https://www.redhat.com/sysadmin/podman-new-network-stack

https://github.com/containers/netavark
https://github.com/containers/aardvark-dns

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

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

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

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

From 43d9526850abfaa430339ea1f4e79bf6b964710b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Daniel=20Ey=C3=9Fer?= <daniel.eysser@gmail.com>
Date: Wed, 1 Mar 2023 23:18:45 +0100
Subject: [PATCH 1/2] New package: netavark-1.5.0

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

diff --git a/srcpkgs/netavark/template b/srcpkgs/netavark/template
new file mode 100644
index 000000000000..dd7322059167
--- /dev/null
+++ b/srcpkgs/netavark/template
@@ -0,0 +1,20 @@
+# Template file for 'netavark'
+pkgname=netavark
+version=1.5.0
+revision=1
+build_style=cargo
+hostmakedepends="mandown protobuf"
+short_desc="Container network stack"
+maintainer="Daniel Eyßer <daniel.eysser@gmail.com>"
+license="Apache-2.0"
+homepage="https://github.com/containers/netavark"
+changelog="https://raw.githubusercontent.com/containers/netavark/main/RELEASE_NOTES.md"
+distfiles="https://github.com/containers/netavark/archive/refs/tags/v${version}.tar.gz"
+checksum=303fbcf3fc645b0e8e8fc1759626c92082f85f49b9d07672918aebd496a24d34
+
+post_install() {
+	vmkdir usr/libexec/podman
+	ln -sf ../../bin/netavark "${DESTDIR}/usr/libexec/podman"
+	mandown docs/netavark.1.md > netavark.1
+	vman netavark.1
+}

From b9dc635003607b8c92cb9345ba6c6c1f0736e37f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Daniel=20Ey=C3=9Fer?= <daniel.eysser@gmail.com>
Date: Wed, 1 Mar 2023 23:29:23 +0100
Subject: [PATCH 2/2] New package: aardvark-dns-1.5.0

---
 srcpkgs/aardvark-dns/template | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)
 create mode 100644 srcpkgs/aardvark-dns/template

diff --git a/srcpkgs/aardvark-dns/template b/srcpkgs/aardvark-dns/template
new file mode 100644
index 000000000000..483751a16068
--- /dev/null
+++ b/srcpkgs/aardvark-dns/template
@@ -0,0 +1,17 @@
+# Template file for 'aardvark-dns'
+pkgname=aardvark-dns
+version=1.5.0
+revision=1
+build_style=cargo
+short_desc="Authoritative dns server for A/AAAA container records"
+maintainer="Daniel Eyßer <daniel.eysser@gmail.com>"
+license="Apache-2.0"
+homepage="https://github.com/containers/aardvark-dns"
+changelog="https://raw.githubusercontent.com/containers/aardvark-dns/main/RELEASE_NOTES.md"
+distfiles="https://github.com/containers/aardvark-dns/archive/refs/tags/v${version}.tar.gz"
+checksum=b7e7ca1b94c1a62c8800f49befb803ec37cc5caf7656352537343a8fb654e4a6
+
+post_install() {
+	vmkdir usr/libexec/podman
+	ln -sf ../../bin/aardvark-dns "${DESTDIR}/usr/libexec/podman"
+}

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

* Re: [PR PATCH] [Updated] New packages: netavark-1.5.0, aardvark-dns-1.5.0
  2023-03-24 16:57 [PR PATCH] New packages: netavark-1.5.0, aardvark-dns-1.5.0 daniel-eys
@ 2023-03-24 17:41 ` daniel-eys
  2023-03-26 14:55 ` daniel-eys
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: daniel-eys @ 2023-03-24 17:41 UTC (permalink / raw)
  To: ml

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

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

https://github.com/daniel-eys/void-packages netavark
https://github.com/void-linux/void-packages/pull/42976

New packages: netavark-1.5.0, aardvark-dns-1.5.0
podman 4.0's new network stack.
Some more information if anybody is interested: https://www.redhat.com/sysadmin/podman-new-network-stack

https://github.com/containers/netavark
https://github.com/containers/aardvark-dns

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

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

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

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

From dd49c9af1c4b8943072c8024518ec48bc52f20ab Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Daniel=20Ey=C3=9Fer?= <daniel.eysser@gmail.com>
Date: Wed, 1 Mar 2023 23:18:45 +0100
Subject: [PATCH 1/2] New package: netavark-1.5.0

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

diff --git a/srcpkgs/netavark/template b/srcpkgs/netavark/template
new file mode 100644
index 000000000000..a9ed13aa188e
--- /dev/null
+++ b/srcpkgs/netavark/template
@@ -0,0 +1,22 @@
+# Template file for 'netavark'
+pkgname=netavark
+version=1.5.0
+revision=1
+build_style=cargo
+hostmakedepends="mandown protobuf"
+short_desc="Container network stack"
+maintainer="Daniel Eyßer <daniel.eysser@gmail.com>"
+license="Apache-2.0"
+homepage="https://github.com/containers/netavark"
+changelog="https://raw.githubusercontent.com/containers/netavark/main/RELEASE_NOTES.md"
+distfiles="https://github.com/containers/netavark/archive/refs/tags/v${version}.tar.gz"
+checksum=303fbcf3fc645b0e8e8fc1759626c92082f85f49b9d07672918aebd496a24d34
+# needs unshare which cannot be used in CI
+make_check=ci-skip
+
+post_install() {
+	vmkdir usr/libexec/podman
+	ln -sf ../../bin/netavark "${DESTDIR}/usr/libexec/podman"
+	mandown docs/netavark.1.md > netavark.1
+	vman netavark.1
+}

From f1316623c9c2e9060ee8a204471cb846e16983b4 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Daniel=20Ey=C3=9Fer?= <daniel.eysser@gmail.com>
Date: Wed, 1 Mar 2023 23:29:23 +0100
Subject: [PATCH 2/2] New package: aardvark-dns-1.5.0

---
 srcpkgs/aardvark-dns/template | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)
 create mode 100644 srcpkgs/aardvark-dns/template

diff --git a/srcpkgs/aardvark-dns/template b/srcpkgs/aardvark-dns/template
new file mode 100644
index 000000000000..483751a16068
--- /dev/null
+++ b/srcpkgs/aardvark-dns/template
@@ -0,0 +1,17 @@
+# Template file for 'aardvark-dns'
+pkgname=aardvark-dns
+version=1.5.0
+revision=1
+build_style=cargo
+short_desc="Authoritative dns server for A/AAAA container records"
+maintainer="Daniel Eyßer <daniel.eysser@gmail.com>"
+license="Apache-2.0"
+homepage="https://github.com/containers/aardvark-dns"
+changelog="https://raw.githubusercontent.com/containers/aardvark-dns/main/RELEASE_NOTES.md"
+distfiles="https://github.com/containers/aardvark-dns/archive/refs/tags/v${version}.tar.gz"
+checksum=b7e7ca1b94c1a62c8800f49befb803ec37cc5caf7656352537343a8fb654e4a6
+
+post_install() {
+	vmkdir usr/libexec/podman
+	ln -sf ../../bin/aardvark-dns "${DESTDIR}/usr/libexec/podman"
+}

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

* Re: [PR PATCH] [Updated] New packages: netavark-1.5.0, aardvark-dns-1.5.0
  2023-03-24 16:57 [PR PATCH] New packages: netavark-1.5.0, aardvark-dns-1.5.0 daniel-eys
  2023-03-24 17:41 ` [PR PATCH] [Updated] " daniel-eys
@ 2023-03-26 14:55 ` daniel-eys
  2023-04-15 14:38 ` daniel-eys
  2023-06-25 18:48 ` [PR PATCH] [Merged]: New packages: netavark-1.6.0, aardvark-dns-1.6.0 Duncaen
  3 siblings, 0 replies; 5+ messages in thread
From: daniel-eys @ 2023-03-26 14:55 UTC (permalink / raw)
  To: ml

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

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

https://github.com/daniel-eys/void-packages netavark
https://github.com/void-linux/void-packages/pull/42976

New packages: netavark-1.5.0, aardvark-dns-1.5.0
podman 4.0's new network stack.
Some more information if anybody is interested: https://www.redhat.com/sysadmin/podman-new-network-stack

https://github.com/containers/netavark
https://github.com/containers/aardvark-dns

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

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

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

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

From a258d38e2bb2dace8098ff8ed483eecfd4914ad7 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Daniel=20Ey=C3=9Fer?= <daniel.eysser@gmail.com>
Date: Wed, 1 Mar 2023 23:18:45 +0100
Subject: [PATCH 1/2] New package: netavark-1.5.0

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

diff --git a/srcpkgs/netavark/template b/srcpkgs/netavark/template
new file mode 100644
index 000000000000..9107fbe820cf
--- /dev/null
+++ b/srcpkgs/netavark/template
@@ -0,0 +1,26 @@
+# Template file for 'netavark'
+pkgname=netavark
+version=1.5.0
+revision=1
+build_style=cargo
+hostmakedepends="mandown protobuf"
+short_desc="Container network stack"
+maintainer="Daniel Eyßer <daniel.eysser@gmail.com>"
+license="Apache-2.0"
+homepage="https://github.com/containers/netavark"
+changelog="https://raw.githubusercontent.com/containers/netavark/main/RELEASE_NOTES.md"
+distfiles="https://github.com/containers/netavark/archive/refs/tags/v${version}.tar.gz"
+checksum=303fbcf3fc645b0e8e8fc1759626c92082f85f49b9d07672918aebd496a24d34
+# needs unshare which cannot be used in CI
+make_check=ci-skip
+
+if [ "$XBPS_TARGET_WORDSIZE" = 32 ]; then
+	broken="will be fixed with the next upstream release"
+fi
+
+post_install() {
+	vmkdir usr/libexec/podman
+	ln -sf ../../bin/netavark "${DESTDIR}/usr/libexec/podman"
+	mandown docs/netavark.1.md > netavark.1
+	vman netavark.1
+}

From d3827f15819eb5e693f3905fb209cca128067623 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Daniel=20Ey=C3=9Fer?= <daniel.eysser@gmail.com>
Date: Wed, 1 Mar 2023 23:29:23 +0100
Subject: [PATCH 2/2] New package: aardvark-dns-1.5.0

---
 srcpkgs/aardvark-dns/template | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)
 create mode 100644 srcpkgs/aardvark-dns/template

diff --git a/srcpkgs/aardvark-dns/template b/srcpkgs/aardvark-dns/template
new file mode 100644
index 000000000000..483751a16068
--- /dev/null
+++ b/srcpkgs/aardvark-dns/template
@@ -0,0 +1,17 @@
+# Template file for 'aardvark-dns'
+pkgname=aardvark-dns
+version=1.5.0
+revision=1
+build_style=cargo
+short_desc="Authoritative dns server for A/AAAA container records"
+maintainer="Daniel Eyßer <daniel.eysser@gmail.com>"
+license="Apache-2.0"
+homepage="https://github.com/containers/aardvark-dns"
+changelog="https://raw.githubusercontent.com/containers/aardvark-dns/main/RELEASE_NOTES.md"
+distfiles="https://github.com/containers/aardvark-dns/archive/refs/tags/v${version}.tar.gz"
+checksum=b7e7ca1b94c1a62c8800f49befb803ec37cc5caf7656352537343a8fb654e4a6
+
+post_install() {
+	vmkdir usr/libexec/podman
+	ln -sf ../../bin/aardvark-dns "${DESTDIR}/usr/libexec/podman"
+}

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

* Re: [PR PATCH] [Updated] New packages: netavark-1.5.0, aardvark-dns-1.5.0
  2023-03-24 16:57 [PR PATCH] New packages: netavark-1.5.0, aardvark-dns-1.5.0 daniel-eys
  2023-03-24 17:41 ` [PR PATCH] [Updated] " daniel-eys
  2023-03-26 14:55 ` daniel-eys
@ 2023-04-15 14:38 ` daniel-eys
  2023-06-25 18:48 ` [PR PATCH] [Merged]: New packages: netavark-1.6.0, aardvark-dns-1.6.0 Duncaen
  3 siblings, 0 replies; 5+ messages in thread
From: daniel-eys @ 2023-04-15 14:38 UTC (permalink / raw)
  To: ml

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

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

https://github.com/daniel-eys/void-packages netavark
https://github.com/void-linux/void-packages/pull/42976

New packages: netavark-1.5.0, aardvark-dns-1.5.0
podman 4.0's new network stack.
Some more information if anybody is interested: https://www.redhat.com/sysadmin/podman-new-network-stack

https://github.com/containers/netavark
https://github.com/containers/aardvark-dns

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

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

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

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

From d6d2cb0f2d884dc638f379f9b440e315b8029b3c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Daniel=20Ey=C3=9Fer?= <daniel.eysser@gmail.com>
Date: Wed, 1 Mar 2023 23:18:45 +0100
Subject: [PATCH 1/2] New package: netavark-1.6.0

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

diff --git a/srcpkgs/netavark/template b/srcpkgs/netavark/template
new file mode 100644
index 000000000000..4bc741f29a5f
--- /dev/null
+++ b/srcpkgs/netavark/template
@@ -0,0 +1,23 @@
+# Template file for 'netavark'
+pkgname=netavark
+version=1.6.0
+revision=1
+build_style=cargo
+hostmakedepends="mandown protobuf"
+short_desc="Container network stack"
+maintainer="Daniel Eyßer <daniel.eysser@gmail.com>"
+license="Apache-2.0"
+homepage="https://github.com/containers/netavark"
+changelog="https://raw.githubusercontent.com/containers/netavark/main/RELEASE_NOTES.md"
+distfiles="https://github.com/containers/netavark/archive/refs/tags/v${version}.tar.gz"
+checksum=3bec9e9b0f3f8f857370900010fb2125ead462d43998ad8f43e4387a5b06f9d6
+# needs unshare which cannot be used in CI
+make_check=ci-skip
+
+post_install() {
+	vmkdir usr/libexec/podman
+	ln -sf ../../bin/netavark "${DESTDIR}/usr/libexec/podman"
+	ln -sf ../../bin/netavark-dhcp-proxy-client "${DESTDIR}/usr/libexec/podman"
+	mandown docs/netavark.1.md > netavark.1
+	vman netavark.1
+}

From 0e59dfeba950313f7f408e77fd59e32545c3a07b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Daniel=20Ey=C3=9Fer?= <daniel.eysser@gmail.com>
Date: Wed, 1 Mar 2023 23:29:23 +0100
Subject: [PATCH 2/2] New package: aardvark-dns-1.6.0

---
 srcpkgs/aardvark-dns/template | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)
 create mode 100644 srcpkgs/aardvark-dns/template

diff --git a/srcpkgs/aardvark-dns/template b/srcpkgs/aardvark-dns/template
new file mode 100644
index 000000000000..c4a47746f1f3
--- /dev/null
+++ b/srcpkgs/aardvark-dns/template
@@ -0,0 +1,17 @@
+# Template file for 'aardvark-dns'
+pkgname=aardvark-dns
+version=1.6.0
+revision=1
+build_style=cargo
+short_desc="Authoritative dns server for A/AAAA container records"
+maintainer="Daniel Eyßer <daniel.eysser@gmail.com>"
+license="Apache-2.0"
+homepage="https://github.com/containers/aardvark-dns"
+changelog="https://raw.githubusercontent.com/containers/aardvark-dns/main/RELEASE_NOTES.md"
+distfiles="https://github.com/containers/aardvark-dns/archive/refs/tags/v${version}.tar.gz"
+checksum=f3a2ff2d7baf07d8bf2785b6f1c9618db8aa188bd738b7f5cf1b0a31848232f5
+
+post_install() {
+	vmkdir usr/libexec/podman
+	ln -sf ../../bin/aardvark-dns "${DESTDIR}/usr/libexec/podman"
+}

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

* Re: [PR PATCH] [Merged]: New packages: netavark-1.6.0, aardvark-dns-1.6.0
  2023-03-24 16:57 [PR PATCH] New packages: netavark-1.5.0, aardvark-dns-1.5.0 daniel-eys
                   ` (2 preceding siblings ...)
  2023-04-15 14:38 ` daniel-eys
@ 2023-06-25 18:48 ` Duncaen
  3 siblings, 0 replies; 5+ messages in thread
From: Duncaen @ 2023-06-25 18:48 UTC (permalink / raw)
  To: ml

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

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

New packages: netavark-1.6.0, aardvark-dns-1.6.0
https://github.com/void-linux/void-packages/pull/42976

Description:
podman 4.0's new network stack.
Some more information if anybody is interested: https://www.redhat.com/sysadmin/podman-new-network-stack

https://github.com/containers/netavark
https://github.com/containers/aardvark-dns

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

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

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

end of thread, other threads:[~2023-06-25 18:48 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-03-24 16:57 [PR PATCH] New packages: netavark-1.5.0, aardvark-dns-1.5.0 daniel-eys
2023-03-24 17:41 ` [PR PATCH] [Updated] " daniel-eys
2023-03-26 14:55 ` daniel-eys
2023-04-15 14:38 ` daniel-eys
2023-06-25 18:48 ` [PR PATCH] [Merged]: New packages: netavark-1.6.0, aardvark-dns-1.6.0 Duncaen

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