* [Buildroot] [Next v2] openresolv: new package
@ 2018-08-14 17:33 Matt Weber
2018-08-14 20:14 ` Thomas Petazzoni
0 siblings, 1 reply; 2+ messages in thread
From: Matt Weber @ 2018-08-14 17:33 UTC (permalink / raw)
To: buildroot
From: Paresh Chaudhary <paresh.chaudhary@rockwellcollins.com>
This patch added 'openresolv' package support. This tool
provides a dns management framework to track currently
available nameservers.
A key feature of this tool vs resolvconf is the ability to
manage multiple name server input configuration files and
generate the /etc/resolv.conf. This is handy when you have
multiple dynamic communication paths providing nameserver
information.
REF: https://github.com/rsmarples/openresolv
Signed-off-by: Paresh Chaudhary <paresh.chaudhary@rockwellcollins.com>
signed-off-by: Matt Weber <matthew.weber@rockwellcollins.com>
---
Changes
v1 -> v2
[Thomas
- Added DEVELOPERS file entry
- Removed bash dependency as our original testing was invalid and the
tool works fine with busybox as along as CONFIG_ASH_GETOPTS is
enabled which is the default in buildroot.
- Fixed pkg to build as a generic vs autotools (they tried to mimic
autotools and we missed it in the orignal patch)
---
DEVELOPERS | 1 +
package/Config.in | 1 +
package/openresolv/Config.in | 8 ++++++++
package/openresolv/openresolv.hash | 3 +++
package/openresolv/openresolv.mk | 25 +++++++++++++++++++++++++
5 files changed, 38 insertions(+)
create mode 100644 package/openresolv/Config.in
create mode 100644 package/openresolv/openresolv.hash
create mode 100644 package/openresolv/openresolv.mk
diff --git a/DEVELOPERS b/DEVELOPERS
index f530158c21..6e44d9825f 100644
--- a/DEVELOPERS
+++ b/DEVELOPERS
@@ -1353,6 +1353,7 @@ F: package/mtd/
F: package/mtools/
F: package/nginx-upload/
F: package/omniorb/
+F: package/openresolv/
F: package/paxtest/
F: package/picocom/
F: package/policycoreutils/
diff --git a/package/Config.in b/package/Config.in
index 7b4637900f..eda0f698dc 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -1866,6 +1866,7 @@ endif
source "package/open-plc-utils/Config.in"
source "package/openntpd/Config.in"
source "package/openobex/Config.in"
+ source "package/openresolv/Config.in"
source "package/openssh/Config.in"
source "package/openswan/Config.in"
source "package/openvpn/Config.in"
diff --git a/package/openresolv/Config.in b/package/openresolv/Config.in
new file mode 100644
index 0000000000..2a393c6bc4
--- /dev/null
+++ b/package/openresolv/Config.in
@@ -0,0 +1,8 @@
+config BR2_PACKAGE_OPENRESOLV
+ bool "openresolv"
+ help
+ openresolv is a resolvconf implementation which
+ manages resolv.conf. This tool provides a dns management
+ framework to track currently available nameservers.
+
+ https://github.com/rsmarples/openresolv
diff --git a/package/openresolv/openresolv.hash b/package/openresolv/openresolv.hash
new file mode 100644
index 0000000000..e1a1fb5468
--- /dev/null
+++ b/package/openresolv/openresolv.hash
@@ -0,0 +1,3 @@
+# Locally calculated
+sha256 96b3f84435a183426c622db7097a930fb0d48a99e82cd87ce83bd343b8c20574 openresolv-fe4e1ec4e2be2adfc1530ade94ebb30aa6f51540.tar.gz
+sha256 d1f9dcd2dac4e095b14caab517cfe791a6e0785346164b7d0cafc13c714f8aa5 LICENSE
diff --git a/package/openresolv/openresolv.mk b/package/openresolv/openresolv.mk
new file mode 100644
index 0000000000..6adf973527
--- /dev/null
+++ b/package/openresolv/openresolv.mk
@@ -0,0 +1,25 @@
+################################################################################
+#
+# openresolv
+#
+################################################################################
+
+OPENRESOLV_VERSION = fe4e1ec4e2be2adfc1530ade94ebb30aa6f51540
+OPENRESOLV_SITE = $(call github,rsmarples,openresolv,$(OPENRESOLV_VERSION))
+OPENRESOLV_LICENSE = BSD-2-Clause
+OPENRESOLV_LICENSE_FILES = LICENSE
+
+define OPENRESOLV_CONFIGURE_CMDS
+ cd $(@D) && $(TARGET_CONFIGURE_OPTS) ./configure --prefix=/usr \
+ --sysconfdir=/etc
+endef
+
+define OPENRESOLV_BUILD_CMDS
+ $(TARGET_MAKE_ENV) $(MAKE) -C $(@D)
+endef
+
+define OPENRESOLV_INSTALL_TARGET_CMDS
+ $(TARGET_MAKE_ENV) $(MAKE) -C $(@D) DESTDIR="$(TARGET_DIR)" install
+endef
+
+$(eval $(generic-package))
--
2.17.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [Buildroot] [Next v2] openresolv: new package
2018-08-14 17:33 [Buildroot] [Next v2] openresolv: new package Matt Weber
@ 2018-08-14 20:14 ` Thomas Petazzoni
0 siblings, 0 replies; 2+ messages in thread
From: Thomas Petazzoni @ 2018-08-14 20:14 UTC (permalink / raw)
To: buildroot
Hello,
On Tue, 14 Aug 2018 12:33:48 -0500, Matt Weber wrote:
> From: Paresh Chaudhary <paresh.chaudhary@rockwellcollins.com>
>
> This patch added 'openresolv' package support. This tool
> provides a dns management framework to track currently
> available nameservers.
>
> A key feature of this tool vs resolvconf is the ability to
> manage multiple name server input configuration files and
> generate the /etc/resolv.conf. This is handy when you have
> multiple dynamic communication paths providing nameserver
> information.
>
> REF: https://github.com/rsmarples/openresolv
>
> Signed-off-by: Paresh Chaudhary <paresh.chaudhary@rockwellcollins.com>
> signed-off-by: Matt Weber <matthew.weber@rockwellcollins.com>
>
> ---
> Changes
> v1 -> v2
> [Thomas
> - Added DEVELOPERS file entry
> - Removed bash dependency as our original testing was invalid and the
> tool works fine with busybox as along as CONFIG_ASH_GETOPTS is
> enabled which is the default in buildroot.
> - Fixed pkg to build as a generic vs autotools (they tried to mimic
> autotools and we missed it in the orignal patch)
> ---
> DEVELOPERS | 1 +
> package/Config.in | 1 +
> package/openresolv/Config.in | 8 ++++++++
> package/openresolv/openresolv.hash | 3 +++
> package/openresolv/openresolv.mk | 25 +++++++++++++++++++++++++
> 5 files changed, 38 insertions(+)
> create mode 100644 package/openresolv/Config.in
> create mode 100644 package/openresolv/openresolv.hash
> create mode 100644 package/openresolv/openresolv.mk
Applied to next, thanks.
Thomas
--
Thomas Petazzoni, CTO, Bootlin (formerly Free Electrons)
Embedded Linux and Kernel engineering
https://bootlin.com
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2018-08-14 20:14 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-08-14 17:33 [Buildroot] [Next v2] openresolv: new package Matt Weber
2018-08-14 20:14 ` Thomas Petazzoni
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.