Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] cni: update to 1.0.1; cni-plugins: update to 1.1.1; New package: cni-plugin-dnsname-1.3.1
@ 2022-04-15 21:20 Idesmi
  2022-04-15 21:22 ` [PR PATCH] [Updated] " Idesmi
                   ` (7 more replies)
  0 siblings, 8 replies; 9+ messages in thread
From: Idesmi @ 2022-04-15 21:20 UTC (permalink / raw)
  To: ml

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

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

https://github.com/Idesmi/void-packages cni
https://github.com/void-linux/void-packages/pull/36714

cni: update to 1.0.1; cni-plugins: update to 1.1.1; New package: cni-plugin-dnsname-1.3.1
<!-- Uncomment relevant sections and delete options which are not applicable -->

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

For cni-plugin-dnsname:
```
podman network create foo
podman run -dt --name web --network foo docker.io/nginx
podman run -it --name client --network foo docker.io/nginx curl http://web.dns.podman
```

#### New package
- This new package (`cni-plugin-dnsname`) conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**

#### Local build testing
- I built this PR locally for my native architecture, x86_64
- I crossbuilt this PR locally for these architectures :
  - aarch64-musl


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

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

From 3935c8c189a36b047b095813d45769da03c55fed Mon Sep 17 00:00:00 2001
From: Enrico Belleri <idesmi@protonmail.com>
Date: Fri, 15 Apr 2022 19:18:08 +0200
Subject: [PATCH 1/3] cni: update to 1.0.1.

---
 srcpkgs/cni/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/cni/template b/srcpkgs/cni/template
index a921f5ecd99b..85e011c19d45 100644
--- a/srcpkgs/cni/template
+++ b/srcpkgs/cni/template
@@ -1,6 +1,6 @@
 # Template file for 'cni'
 pkgname=cni
-version=0.8.0
+version=1.0.1
 revision=1
 build_style=go
 go_import_path="github.com/containernetworking/cni"
@@ -10,4 +10,4 @@ maintainer="Cameron Nemo <cnemo@tutanota.com>"
 license="Apache-2.0"
 homepage="https://github.com/containernetworking/cni"
 distfiles="https://github.com/containernetworking/cni/archive/v${version}.tar.gz"
-checksum=df8afe3eeae3296ba33ca267041c42f13135c3a067bf2d932761bb02998247a6
+checksum=0e5376f70fb36c26935ddfb90b0da69736592ba8b577fbfb904750034c053d3b

From 2c0b22efca8ae86f63bef0e90ea411ad2ddd947d Mon Sep 17 00:00:00 2001
From: Enrico Belleri <idesmi@protonmail.com>
Date: Fri, 15 Apr 2022 19:34:28 +0200
Subject: [PATCH 2/3] cni-plugins: update to 1.1.1.

---
 srcpkgs/cni-plugins/template | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/cni-plugins/template b/srcpkgs/cni-plugins/template
index 897bd1d1b0dd..f494e5e0e0fd 100644
--- a/srcpkgs/cni-plugins/template
+++ b/srcpkgs/cni-plugins/template
@@ -1,16 +1,17 @@
 # Template file for 'cni-plugins'
 pkgname=cni-plugins
-version=1.0.1
+version=1.1.1
 revision=1
 wrksrc="plugins-${version}"
 build_style=go
+depends="cni>=1.0.0"
 go_import_path="github.com/containernetworking/plugins"
 short_desc="Container Network Interface (plugins)"
 maintainer="Cameron Nemo <cnemo@tutanota.com>"
 license="Apache-2.0"
 homepage="https://github.com/containernetworking/plugins"
 distfiles="https://github.com/containernetworking/plugins/archive/v${version}.tar.gz"
-checksum=2ba3cd9f341a7190885b60d363f6f23c6d20d975a7a0ab579dd516f8c6117619
+checksum=c86c44877c47f69cd23611e22029ab26b613f620195b76b3ec20f589367a7962
 
 do_build() {
 	./build_linux.sh

From 877774dd4a8ed34a17cc7f62c004e8ad56c584a4 Mon Sep 17 00:00:00 2001
From: Enrico Belleri <idesmi@protonmail.com>
Date: Fri, 15 Apr 2022 21:45:19 +0200
Subject: [PATCH 3/3] New package: cni-plugin-dnsname-1.3.1

---
 srcpkgs/cni-plugin-dnsname/template | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)
 create mode 100644 srcpkgs/cni-plugin-dnsname/template

diff --git a/srcpkgs/cni-plugin-dnsname/template b/srcpkgs/cni-plugin-dnsname/template
new file mode 100644
index 000000000000..f5da87d7e6b0
--- /dev/null
+++ b/srcpkgs/cni-plugin-dnsname/template
@@ -0,0 +1,25 @@
+# Template file for 'cni-plugin-dnsname'
+pkgname=cni-plugin-dnsname
+version=1.3.1
+revision=1
+wrksrc="dnsname-${version}"
+build_style=go
+depends="cni dnsmasq"
+go_import_path="github.com/containers/dnsname"
+go_package="${go_import_path}/plugins/meta/dnsname"
+short_desc="Name resolution for containers"
+maintainer="Enrico Belleri <idesmi@protonmail.com>"
+license="Apache-2.0"
+homepage="https://github.com/containers/dnsname"
+changelog="https://github.com/containers/dnsname/blob/main/RELEASE_NOTES.md"
+distfiles="https://github.com/containers/dnsname/archive/v${version}.tar.gz"
+checksum=a9319a1829e242b4769697650f7df63a635eda7369ba659618d49056b78bf3ce
+
+do_install() {
+	vmkdir usr/libexec/cni
+	for f in ${GOPATH}/bin/* ${GOPATH}/bin/**/*; do
+		if [ -f "$f" ] && [ -x "$f" ]; then
+			vcopy "$f" usr/libexec/cni
+		fi
+	done
+}

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

* Re: [PR PATCH] [Updated] cni: update to 1.0.1; cni-plugins: update to 1.1.1; New package: cni-plugin-dnsname-1.3.1
  2022-04-15 21:20 [PR PATCH] cni: update to 1.0.1; cni-plugins: update to 1.1.1; New package: cni-plugin-dnsname-1.3.1 Idesmi
@ 2022-04-15 21:22 ` Idesmi
  2022-04-15 21:24 ` Idesmi
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Idesmi @ 2022-04-15 21:22 UTC (permalink / raw)
  To: ml

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

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

https://github.com/Idesmi/void-packages cni
https://github.com/void-linux/void-packages/pull/36714

cni: update to 1.0.1; cni-plugins: update to 1.1.1; New package: cni-plugin-dnsname-1.3.1
<!-- Uncomment relevant sections and delete options which are not applicable -->

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

For cni-plugin-dnsname:
```
podman network create foo
podman run -dt --name web --network foo docker.io/nginx
podman run -it --name client --network foo docker.io/nginx curl http://web.dns.podman
```

#### New package
- This new package (`cni-plugin-dnsname`) conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**

#### Local build testing
- I built this PR locally for my native architecture, x86_64
- I crossbuilt this PR locally for these architectures :
  - aarch64-musl


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

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

From 3935c8c189a36b047b095813d45769da03c55fed Mon Sep 17 00:00:00 2001
From: Enrico Belleri <idesmi@protonmail.com>
Date: Fri, 15 Apr 2022 19:18:08 +0200
Subject: [PATCH 1/3] cni: update to 1.0.1.

---
 srcpkgs/cni/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/cni/template b/srcpkgs/cni/template
index a921f5ecd99b..85e011c19d45 100644
--- a/srcpkgs/cni/template
+++ b/srcpkgs/cni/template
@@ -1,6 +1,6 @@
 # Template file for 'cni'
 pkgname=cni
-version=0.8.0
+version=1.0.1
 revision=1
 build_style=go
 go_import_path="github.com/containernetworking/cni"
@@ -10,4 +10,4 @@ maintainer="Cameron Nemo <cnemo@tutanota.com>"
 license="Apache-2.0"
 homepage="https://github.com/containernetworking/cni"
 distfiles="https://github.com/containernetworking/cni/archive/v${version}.tar.gz"
-checksum=df8afe3eeae3296ba33ca267041c42f13135c3a067bf2d932761bb02998247a6
+checksum=0e5376f70fb36c26935ddfb90b0da69736592ba8b577fbfb904750034c053d3b

From 2c0b22efca8ae86f63bef0e90ea411ad2ddd947d Mon Sep 17 00:00:00 2001
From: Enrico Belleri <idesmi@protonmail.com>
Date: Fri, 15 Apr 2022 19:34:28 +0200
Subject: [PATCH 2/3] cni-plugins: update to 1.1.1.

---
 srcpkgs/cni-plugins/template | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/cni-plugins/template b/srcpkgs/cni-plugins/template
index 897bd1d1b0dd..f494e5e0e0fd 100644
--- a/srcpkgs/cni-plugins/template
+++ b/srcpkgs/cni-plugins/template
@@ -1,16 +1,17 @@
 # Template file for 'cni-plugins'
 pkgname=cni-plugins
-version=1.0.1
+version=1.1.1
 revision=1
 wrksrc="plugins-${version}"
 build_style=go
+depends="cni>=1.0.0"
 go_import_path="github.com/containernetworking/plugins"
 short_desc="Container Network Interface (plugins)"
 maintainer="Cameron Nemo <cnemo@tutanota.com>"
 license="Apache-2.0"
 homepage="https://github.com/containernetworking/plugins"
 distfiles="https://github.com/containernetworking/plugins/archive/v${version}.tar.gz"
-checksum=2ba3cd9f341a7190885b60d363f6f23c6d20d975a7a0ab579dd516f8c6117619
+checksum=c86c44877c47f69cd23611e22029ab26b613f620195b76b3ec20f589367a7962
 
 do_build() {
 	./build_linux.sh

From 62cf6ce4b84e14ac45f2b43f296cbefb4cfebcc8 Mon Sep 17 00:00:00 2001
From: Enrico Belleri <idesmi@protonmail.com>
Date: Fri, 15 Apr 2022 21:45:19 +0200
Subject: [PATCH 3/3] New package: cni-plugin-dnsname-1.3.1

---
 srcpkgs/cni-plugin-dnsname/template | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)
 create mode 100644 srcpkgs/cni-plugin-dnsname/template

diff --git a/srcpkgs/cni-plugin-dnsname/template b/srcpkgs/cni-plugin-dnsname/template
new file mode 100644
index 000000000000..5fc7fd1b2e9b
--- /dev/null
+++ b/srcpkgs/cni-plugin-dnsname/template
@@ -0,0 +1,25 @@
+# Template file for 'cni-plugin-dnsname'
+pkgname=cni-plugin-dnsname
+version=1.3.1
+revision=1
+wrksrc="dnsname-${version}"
+build_style=go
+go_import_path="github.com/containers/dnsname"
+go_package="${go_import_path}/plugins/meta/dnsname"
+depends="cni dnsmasq"
+short_desc="Name resolution for containers"
+maintainer="Enrico Belleri <idesmi@protonmail.com>"
+license="Apache-2.0"
+homepage="https://github.com/containers/dnsname"
+changelog="https://github.com/containers/dnsname/blob/main/RELEASE_NOTES.md"
+distfiles="https://github.com/containers/dnsname/archive/v${version}.tar.gz"
+checksum=a9319a1829e242b4769697650f7df63a635eda7369ba659618d49056b78bf3ce
+
+do_install() {
+	vmkdir usr/libexec/cni
+	for f in ${GOPATH}/bin/* ${GOPATH}/bin/**/*; do
+		if [ -f "$f" ] && [ -x "$f" ]; then
+			vcopy "$f" usr/libexec/cni
+		fi
+	done
+}

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

* Re: [PR PATCH] [Updated] cni: update to 1.0.1; cni-plugins: update to 1.1.1; New package: cni-plugin-dnsname-1.3.1
  2022-04-15 21:20 [PR PATCH] cni: update to 1.0.1; cni-plugins: update to 1.1.1; New package: cni-plugin-dnsname-1.3.1 Idesmi
  2022-04-15 21:22 ` [PR PATCH] [Updated] " Idesmi
@ 2022-04-15 21:24 ` Idesmi
  2022-05-08 20:29 ` CameronNemo
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Idesmi @ 2022-04-15 21:24 UTC (permalink / raw)
  To: ml

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

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

https://github.com/Idesmi/void-packages cni
https://github.com/void-linux/void-packages/pull/36714

cni: update to 1.0.1; cni-plugins: update to 1.1.1; New package: cni-plugin-dnsname-1.3.1
<!-- Uncomment relevant sections and delete options which are not applicable -->

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

For cni-plugin-dnsname:
```
podman network create foo
podman run -dt --name web --network foo docker.io/nginx
podman run -it --name client --network foo docker.io/nginx curl http://web.dns.podman
```

#### New package
- This new package (`cni-plugin-dnsname`) conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**

#### Local build testing
- I built this PR locally for my native architecture, x86_64
- I crossbuilt this PR locally for these architectures :
  - aarch64-musl


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

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

From 3935c8c189a36b047b095813d45769da03c55fed Mon Sep 17 00:00:00 2001
From: Enrico Belleri <idesmi@protonmail.com>
Date: Fri, 15 Apr 2022 19:18:08 +0200
Subject: [PATCH 1/3] cni: update to 1.0.1.

---
 srcpkgs/cni/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/cni/template b/srcpkgs/cni/template
index a921f5ecd99b..85e011c19d45 100644
--- a/srcpkgs/cni/template
+++ b/srcpkgs/cni/template
@@ -1,6 +1,6 @@
 # Template file for 'cni'
 pkgname=cni
-version=0.8.0
+version=1.0.1
 revision=1
 build_style=go
 go_import_path="github.com/containernetworking/cni"
@@ -10,4 +10,4 @@ maintainer="Cameron Nemo <cnemo@tutanota.com>"
 license="Apache-2.0"
 homepage="https://github.com/containernetworking/cni"
 distfiles="https://github.com/containernetworking/cni/archive/v${version}.tar.gz"
-checksum=df8afe3eeae3296ba33ca267041c42f13135c3a067bf2d932761bb02998247a6
+checksum=0e5376f70fb36c26935ddfb90b0da69736592ba8b577fbfb904750034c053d3b

From a4e9866dacdf1c1fb4e25522d4dabc41159b24a8 Mon Sep 17 00:00:00 2001
From: Enrico Belleri <idesmi@protonmail.com>
Date: Fri, 15 Apr 2022 19:34:28 +0200
Subject: [PATCH 2/3] cni-plugins: update to 1.1.1.

---
 srcpkgs/cni-plugins/template | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/cni-plugins/template b/srcpkgs/cni-plugins/template
index 897bd1d1b0dd..510d6ed97596 100644
--- a/srcpkgs/cni-plugins/template
+++ b/srcpkgs/cni-plugins/template
@@ -1,16 +1,17 @@
 # Template file for 'cni-plugins'
 pkgname=cni-plugins
-version=1.0.1
+version=1.1.1
 revision=1
 wrksrc="plugins-${version}"
 build_style=go
 go_import_path="github.com/containernetworking/plugins"
+depends="cni>=1.0.0"
 short_desc="Container Network Interface (plugins)"
 maintainer="Cameron Nemo <cnemo@tutanota.com>"
 license="Apache-2.0"
 homepage="https://github.com/containernetworking/plugins"
 distfiles="https://github.com/containernetworking/plugins/archive/v${version}.tar.gz"
-checksum=2ba3cd9f341a7190885b60d363f6f23c6d20d975a7a0ab579dd516f8c6117619
+checksum=c86c44877c47f69cd23611e22029ab26b613f620195b76b3ec20f589367a7962
 
 do_build() {
 	./build_linux.sh

From 5860aad52d75b9d161b957a169de88aa0d5951b4 Mon Sep 17 00:00:00 2001
From: Enrico Belleri <idesmi@protonmail.com>
Date: Fri, 15 Apr 2022 21:45:19 +0200
Subject: [PATCH 3/3] New package: cni-plugin-dnsname-1.3.1

---
 srcpkgs/cni-plugin-dnsname/template | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)
 create mode 100644 srcpkgs/cni-plugin-dnsname/template

diff --git a/srcpkgs/cni-plugin-dnsname/template b/srcpkgs/cni-plugin-dnsname/template
new file mode 100644
index 000000000000..5fc7fd1b2e9b
--- /dev/null
+++ b/srcpkgs/cni-plugin-dnsname/template
@@ -0,0 +1,25 @@
+# Template file for 'cni-plugin-dnsname'
+pkgname=cni-plugin-dnsname
+version=1.3.1
+revision=1
+wrksrc="dnsname-${version}"
+build_style=go
+go_import_path="github.com/containers/dnsname"
+go_package="${go_import_path}/plugins/meta/dnsname"
+depends="cni dnsmasq"
+short_desc="Name resolution for containers"
+maintainer="Enrico Belleri <idesmi@protonmail.com>"
+license="Apache-2.0"
+homepage="https://github.com/containers/dnsname"
+changelog="https://github.com/containers/dnsname/blob/main/RELEASE_NOTES.md"
+distfiles="https://github.com/containers/dnsname/archive/v${version}.tar.gz"
+checksum=a9319a1829e242b4769697650f7df63a635eda7369ba659618d49056b78bf3ce
+
+do_install() {
+	vmkdir usr/libexec/cni
+	for f in ${GOPATH}/bin/* ${GOPATH}/bin/**/*; do
+		if [ -f "$f" ] && [ -x "$f" ]; then
+			vcopy "$f" usr/libexec/cni
+		fi
+	done
+}

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

* Re: cni: update to 1.0.1; cni-plugins: update to 1.1.1; New package: cni-plugin-dnsname-1.3.1
  2022-04-15 21:20 [PR PATCH] cni: update to 1.0.1; cni-plugins: update to 1.1.1; New package: cni-plugin-dnsname-1.3.1 Idesmi
  2022-04-15 21:22 ` [PR PATCH] [Updated] " Idesmi
  2022-04-15 21:24 ` Idesmi
@ 2022-05-08 20:29 ` CameronNemo
  2022-05-08 20:29 ` [PR REVIEW] " CameronNemo
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: CameronNemo @ 2022-05-08 20:29 UTC (permalink / raw)
  To: ml

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

New comment by CameronNemo on void-packages repository

https://github.com/void-linux/void-packages/pull/36714#issuecomment-1120482426

Comment:
LGTM

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

* Re: [PR REVIEW] cni: update to 1.0.1; cni-plugins: update to 1.1.1; New package: cni-plugin-dnsname-1.3.1
  2022-04-15 21:20 [PR PATCH] cni: update to 1.0.1; cni-plugins: update to 1.1.1; New package: cni-plugin-dnsname-1.3.1 Idesmi
                   ` (2 preceding siblings ...)
  2022-05-08 20:29 ` CameronNemo
@ 2022-05-08 20:29 ` CameronNemo
  2022-05-08 20:32 ` CameronNemo
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: CameronNemo @ 2022-05-08 20:29 UTC (permalink / raw)
  To: ml

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

New review comment by CameronNemo on void-packages repository

https://github.com/void-linux/void-packages/pull/36714#discussion_r867538547

Comment:
wait, are you sure this dependency is needed? I thought the plugins were self-contained...

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

* Re: [PR REVIEW] cni: update to 1.0.1; cni-plugins: update to 1.1.1; New package: cni-plugin-dnsname-1.3.1
  2022-04-15 21:20 [PR PATCH] cni: update to 1.0.1; cni-plugins: update to 1.1.1; New package: cni-plugin-dnsname-1.3.1 Idesmi
                   ` (3 preceding siblings ...)
  2022-05-08 20:29 ` [PR REVIEW] " CameronNemo
@ 2022-05-08 20:32 ` CameronNemo
  2022-05-08 20:33 ` CameronNemo
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: CameronNemo @ 2022-05-08 20:32 UTC (permalink / raw)
  To: ml

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

New review comment by CameronNemo on void-packages repository

https://github.com/void-linux/void-packages/pull/36714#discussion_r867538893

Comment:
You could also just let the go build style do it's thing, then:

```
vmkdir usr/libexec/cni
mv "${DESTDIR}/usr/bin/dnsname" "${DESTDIR}/usr/libexec/cni/dnsname"
```

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

* Re: [PR REVIEW] cni: update to 1.0.1; cni-plugins: update to 1.1.1; New package: cni-plugin-dnsname-1.3.1
  2022-04-15 21:20 [PR PATCH] cni: update to 1.0.1; cni-plugins: update to 1.1.1; New package: cni-plugin-dnsname-1.3.1 Idesmi
                   ` (4 preceding siblings ...)
  2022-05-08 20:32 ` CameronNemo
@ 2022-05-08 20:33 ` CameronNemo
  2022-05-18  7:32 ` [PR PATCH] [Closed]: " Idesmi
  2022-05-18  7:32 ` Idesmi
  7 siblings, 0 replies; 9+ messages in thread
From: CameronNemo @ 2022-05-08 20:33 UTC (permalink / raw)
  To: ml

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

New review comment by CameronNemo on void-packages repository

https://github.com/void-linux/void-packages/pull/36714#discussion_r867538893

Comment:
You could also just let the go build style do it's thing, then add this in post_install:

```
vmkdir usr/libexec/cni
mv "${DESTDIR}/usr/bin/dnsname" "${DESTDIR}/usr/libexec/cni/dnsname"
```

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

* Re: cni: update to 1.0.1; cni-plugins: update to 1.1.1; New package: cni-plugin-dnsname-1.3.1
  2022-04-15 21:20 [PR PATCH] cni: update to 1.0.1; cni-plugins: update to 1.1.1; New package: cni-plugin-dnsname-1.3.1 Idesmi
                   ` (6 preceding siblings ...)
  2022-05-18  7:32 ` [PR PATCH] [Closed]: " Idesmi
@ 2022-05-18  7:32 ` Idesmi
  7 siblings, 0 replies; 9+ messages in thread
From: Idesmi @ 2022-05-18  7:32 UTC (permalink / raw)
  To: ml

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

New comment by Idesmi on void-packages repository

https://github.com/void-linux/void-packages/pull/36714#issuecomment-1129671539

Comment:
New request with changes: https://github.com/void-linux/void-packages/pull/37160

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

* Re: [PR PATCH] [Closed]: cni: update to 1.0.1; cni-plugins: update to 1.1.1; New package: cni-plugin-dnsname-1.3.1
  2022-04-15 21:20 [PR PATCH] cni: update to 1.0.1; cni-plugins: update to 1.1.1; New package: cni-plugin-dnsname-1.3.1 Idesmi
                   ` (5 preceding siblings ...)
  2022-05-08 20:33 ` CameronNemo
@ 2022-05-18  7:32 ` Idesmi
  2022-05-18  7:32 ` Idesmi
  7 siblings, 0 replies; 9+ messages in thread
From: Idesmi @ 2022-05-18  7:32 UTC (permalink / raw)
  To: ml

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

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

cni: update to 1.0.1; cni-plugins: update to 1.1.1; New package: cni-plugin-dnsname-1.3.1
https://github.com/void-linux/void-packages/pull/36714

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

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

For cni-plugin-dnsname:
```
podman network create foo
podman run -dt --name web --network foo docker.io/nginx
podman run -it --name client --network foo docker.io/nginx curl http://web.dns.podman
```

#### New package
- This new package (`cni-plugin-dnsname`) conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**

#### Local build testing
- I built this PR locally for my native architecture, x86_64
- I crossbuilt this PR locally for these architectures :
  - aarch64-musl


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

end of thread, other threads:[~2022-05-18  7:32 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-15 21:20 [PR PATCH] cni: update to 1.0.1; cni-plugins: update to 1.1.1; New package: cni-plugin-dnsname-1.3.1 Idesmi
2022-04-15 21:22 ` [PR PATCH] [Updated] " Idesmi
2022-04-15 21:24 ` Idesmi
2022-05-08 20:29 ` CameronNemo
2022-05-08 20:29 ` [PR REVIEW] " CameronNemo
2022-05-08 20:32 ` CameronNemo
2022-05-08 20:33 ` CameronNemo
2022-05-18  7:32 ` [PR PATCH] [Closed]: " Idesmi
2022-05-18  7:32 ` Idesmi

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