Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] connman: add build option "nftables"
@ 2021-07-14 13:42 jirutka
  2021-07-14 13:43 ` ericonr
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: jirutka @ 2021-07-14 13:42 UTC (permalink / raw)
  To: ml

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

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

https://github.com/jirutka/void-packages connman-nftables
https://github.com/void-linux/void-packages/pull/31957

connman: add build option "nftables"
Allow to build with support for nftables instead of iptables.

From ./configure --help:

  --with-firewall=TYPE    specify which firewall type is used iptables or
                          nftables [default=iptables]

<!-- Mark items with [x] where applicable -->

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] 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.)
- [ ] 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/31957.patch is attached

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

From b3ef2d50b047ec4750707ce7ea14f54be7dd0f4d Mon Sep 17 00:00:00 2001
From: Jakub Jirutka <jakub@jirutka.cz>
Date: Wed, 14 Jul 2021 15:26:52 +0200
Subject: [PATCH] connman: add build option "nftables"

Allow to build with support for nftables instead of iptables.

From ./configure --help:

  --with-firewall=TYPE    specify which firewall type is used iptables or
                          nftables [default=iptables]
---
 srcpkgs/connman/template | 11 ++++++++---
 1 file changed, 8 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/connman/template b/srcpkgs/connman/template
index f133b12d2967..cada2ba3aeba 100644
--- a/srcpkgs/connman/template
+++ b/srcpkgs/connman/template
@@ -6,10 +6,11 @@ build_style=gnu-configure
 configure_args="--enable-polkit --enable-client --enable-pie --enable-ethernet
  --enable-wifi --enable-bluetooth --enable-loopback --enable-nmcompat
  --enable-openvpn --with-openvpn=/usr/bin/openvpn --enable-openconnect
- --disable-tools --disable-wispr --with-openconnect=/usr/bin/openconnect"
+ --disable-tools --disable-wispr --with-openconnect=/usr/bin/openconnect
+ --with-firewall=$(vopt_if nftables nftables iptables)"
 hostmakedepends="automake iptables libtool pkg-config wpa_supplicant"
-makedepends="gnutls-devel iptables-devel libglib-devel libmnl-devel
- openconnect-devel readline-devel"
+makedepends="gnutls-devel libglib-devel libmnl-devel openconnect-devel
+ readline-devel $(vopt_if nftables libnftnl-devel iptables-devel)"
 depends="dbus wpa_supplicant"
 short_desc="Open Source CONNection MANager"
 maintainer="Orphaned <orphan@voidlinux.org>"
@@ -20,6 +21,10 @@ distfiles="${KERNEL_SITE}/network/${pkgname}/${pkgname}-${version}.tar.xz"
 checksum=1a57ae7ce234aa3a1744aac3be5c2121d98dce999440ef8ab9cc4edfd5edcb12
 lib32disabled=yes
 
+# Package build options
+build_options="nftables"
+desc_option_nftables="Build with nftables instead of iptables"
+
 pre_configure() {
 	case "$XBPS_TARGET_MACHINE" in
 	*-musl)

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

* Re: connman: add build option "nftables"
  2021-07-14 13:42 [PR PATCH] connman: add build option "nftables" jirutka
@ 2021-07-14 13:43 ` ericonr
  2021-07-14 13:48 ` jirutka
  2021-07-14 13:48 ` [PR PATCH] [Closed]: " jirutka
  2 siblings, 0 replies; 4+ messages in thread
From: ericonr @ 2021-07-14 13:43 UTC (permalink / raw)
  To: ml

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

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/31957#issuecomment-879904380

Comment:
Please merge PRs for a single package, otherwise review gets spread out and we rebuild things too much https://github.com/void-linux/void-packages/pull/31916

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

* Re: connman: add build option "nftables"
  2021-07-14 13:42 [PR PATCH] connman: add build option "nftables" jirutka
  2021-07-14 13:43 ` ericonr
@ 2021-07-14 13:48 ` jirutka
  2021-07-14 13:48 ` [PR PATCH] [Closed]: " jirutka
  2 siblings, 0 replies; 4+ messages in thread
From: jirutka @ 2021-07-14 13:48 UTC (permalink / raw)
  To: ml

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

New comment by jirutka on void-packages repository

https://github.com/void-linux/void-packages/pull/31957#issuecomment-879908633

Comment:
Okay, done.

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

* Re: [PR PATCH] [Closed]: connman: add build option "nftables"
  2021-07-14 13:42 [PR PATCH] connman: add build option "nftables" jirutka
  2021-07-14 13:43 ` ericonr
  2021-07-14 13:48 ` jirutka
@ 2021-07-14 13:48 ` jirutka
  2 siblings, 0 replies; 4+ messages in thread
From: jirutka @ 2021-07-14 13:48 UTC (permalink / raw)
  To: ml

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

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

connman: add build option "nftables"
https://github.com/void-linux/void-packages/pull/31957

Description:
Allow to build with support for nftables instead of iptables.

From ./configure --help:

    --with-firewall=TYPE    specify which firewall type is used iptables or
                            nftables [default=iptables]

<!-- Mark items with [x] where applicable -->

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] 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.)
- [ ] 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] 4+ messages in thread

end of thread, other threads:[~2021-07-14 13:48 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-14 13:42 [PR PATCH] connman: add build option "nftables" jirutka
2021-07-14 13:43 ` ericonr
2021-07-14 13:48 ` jirutka
2021-07-14 13:48 ` [PR PATCH] [Closed]: " jirutka

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