From: heiko.thiery at gmail.com <heiko.thiery@gmail.com>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH v2 0/9] Add netopeer2 package (and dependencies)
Date: Wed, 9 Oct 2019 13:26:47 +0200 [thread overview]
Message-ID: <20191009112656.21232-1-heiko.thiery@gmail.com> (raw)
From: Heiko Thiery <heiko.thiery@kontron.com>
This patchset contains the netopeer2 package and the required
dependencies. Netopeer2 is a set of tools implementing network
configuration tools based on the NETCONF Protocol.
This includes the packages for libavl, libyang, libnetconf2, sysrepo,
netopeer2-server, netopeer2-cli, netopeer2-keystored.
Also add the host target support for libev and libssh. This is needed
for the install steps of sysrepo and netopeer2-server and
netopeer2-keystored.
Signed-off-by: Heiko Thiery <heiko.thiery@kontron.com>
---
Changes v1 -> v2:
- replace libredblack with libavl because this is also supported by
debian.
- changes all over the place to integrate review comments.
Heiko Thiery (8):
package/libev: use host-autotools-package macro
package/libssh: use host-autotools-package macro
package/libyang: add package
package/libnetconf2: add package
package/sysrepo: add package
package/netopeer2-keystored: add package
package/netopeer2-server: add package
package/netopeer2-cli: add package
Michael Walle (1):
package/libavl: add package
DEVELOPERS | 8 +++
package/Config.in | 7 ++
package/libavl/0001-fix-makefile.patch | 49 ++++++++++++++
package/libavl/Config.in | 13 ++++
package/libavl/libavl.hash | 5 ++
package/libavl/libavl.mk | 43 ++++++++++++
package/libev/libev.mk | 1 +
.../0001-Add-support-for-musl-libc.patch | 65 +++++++++++++++++++
package/libnetconf2/Config.in | 37 +++++++++++
package/libnetconf2/libnetconf2.hash | 2 +
package/libnetconf2/libnetconf2.mk | 52 +++++++++++++++
package/libssh/libssh.mk | 1 +
package/libyang/Config.in | 13 ++++
package/libyang/libyang.hash | 2 +
package/libyang/libyang.mk | 25 +++++++
package/netopeer2-cli/Config.in | 17 +++++
package/netopeer2-cli/netopeer2-cli.hash | 2 +
package/netopeer2-cli/netopeer2-cli.mk | 16 +++++
package/netopeer2-keystored/Config.in | 15 +++++
.../netopeer2-keystored.hash | 2 +
.../netopeer2-keystored.mk | 29 +++++++++
package/netopeer2-server/Config.in | 18 +++++
.../netopeer2-server/netopeer2-server.hash | 2 +
package/netopeer2-server/netopeer2-server.mk | 26 ++++++++
package/sysrepo/Config.in | 27 ++++++++
package/sysrepo/sysrepo.hash | 2 +
package/sysrepo/sysrepo.mk | 37 +++++++++++
27 files changed, 516 insertions(+)
create mode 100644 package/libavl/0001-fix-makefile.patch
create mode 100644 package/libavl/Config.in
create mode 100644 package/libavl/libavl.hash
create mode 100644 package/libavl/libavl.mk
create mode 100644 package/libnetconf2/0001-Add-support-for-musl-libc.patch
create mode 100644 package/libnetconf2/Config.in
create mode 100644 package/libnetconf2/libnetconf2.hash
create mode 100644 package/libnetconf2/libnetconf2.mk
create mode 100644 package/libyang/Config.in
create mode 100644 package/libyang/libyang.hash
create mode 100644 package/libyang/libyang.mk
create mode 100644 package/netopeer2-cli/Config.in
create mode 100644 package/netopeer2-cli/netopeer2-cli.hash
create mode 100644 package/netopeer2-cli/netopeer2-cli.mk
create mode 100644 package/netopeer2-keystored/Config.in
create mode 100644 package/netopeer2-keystored/netopeer2-keystored.hash
create mode 100644 package/netopeer2-keystored/netopeer2-keystored.mk
create mode 100644 package/netopeer2-server/Config.in
create mode 100644 package/netopeer2-server/netopeer2-server.hash
create mode 100644 package/netopeer2-server/netopeer2-server.mk
create mode 100644 package/sysrepo/Config.in
create mode 100644 package/sysrepo/sysrepo.hash
create mode 100644 package/sysrepo/sysrepo.mk
--
2.20.1
next reply other threads:[~2019-10-09 11:26 UTC|newest]
Thread overview: 32+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-10-09 11:26 heiko.thiery at gmail.com [this message]
2019-10-09 11:26 ` [Buildroot] [PATCH v2 1/9] package/libev: use host-autotools-package macro heiko.thiery at gmail.com
2019-10-09 11:26 ` [Buildroot] [PATCH v2 2/9] package/libssh: " heiko.thiery at gmail.com
2019-10-09 11:26 ` [Buildroot] [PATCH v2 3/9] package/libavl: add package heiko.thiery at gmail.com
2019-10-09 12:25 ` Thomas Petazzoni
2019-10-09 16:04 ` Michael Walle
2019-10-09 19:27 ` Thomas Petazzoni
2019-10-10 8:20 ` Michael Walle
2019-10-10 8:25 ` Thomas Petazzoni
2019-10-09 11:26 ` [Buildroot] [PATCH v2 4/9] package/libyang: " heiko.thiery at gmail.com
2019-10-09 11:26 ` [Buildroot] [PATCH v2 5/9] package/libnetconf2: " heiko.thiery at gmail.com
2019-10-09 12:15 ` Thomas Petazzoni
2019-10-09 12:54 ` Heiko Thiery
2019-10-09 12:59 ` Thomas Petazzoni
2019-10-09 11:26 ` [Buildroot] [PATCH v2 6/9] package/sysrepo: " heiko.thiery at gmail.com
2019-10-09 11:26 ` [Buildroot] [PATCH v2 7/9] package/netopeer2-keystored: " heiko.thiery at gmail.com
2019-10-09 12:12 ` Thomas Petazzoni
2019-10-09 13:14 ` Heiko Thiery
2019-10-09 13:34 ` Thomas Petazzoni
2019-10-09 13:43 ` Peter Korsgaard
2019-10-09 15:53 ` Yann E. MORIN
2019-10-09 17:03 ` Heiko Thiery
2019-10-09 17:08 ` Heiko Thiery
2019-10-09 18:15 ` Yann E. MORIN
2019-10-09 19:14 ` Arnout Vandecappelle
2019-10-09 19:45 ` Heiko Thiery
2019-10-09 19:57 ` Heiko Thiery
2019-10-09 11:26 ` [Buildroot] [PATCH v2 8/9] package/netopeer2-server: " heiko.thiery at gmail.com
2019-10-09 11:26 ` [Buildroot] [PATCH v2 9/9] package/netopeer2-cli: " heiko.thiery at gmail.com
2019-10-09 12:30 ` Thomas Petazzoni
2019-10-09 15:57 ` [Buildroot] [PATCH v2 0/9] Add netopeer2 package (and dependencies) Michael Walle
2019-10-23 11:07 ` Heiko Thiery
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20191009112656.21232-1-heiko.thiery@gmail.com \
--to=heiko.thiery@gmail.com \
--cc=buildroot@busybox.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.