From: Arnout Vandecappelle <arnout@mind.be>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH] lksctp-tools: new package
Date: Fri, 26 Feb 2016 22:40:54 +0100 [thread overview]
Message-ID: <56D0C666.6090900@mind.be> (raw)
In-Reply-To: <1456478677-11687-1-git-send-email-yegorslists@googlemail.com>
On 02/26/16 10:24, yegorslists at googlemail.com wrote:
> From: Yegor Yefremov <yegorslists@googlemail.com>
>
> Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
> ---
> package/Config.in | 1 +
> package/lksctp-tools/Config.in | 17 +++++++++++++++++
> package/lksctp-tools/lksctp-tools.hash | 2 ++
> package/lksctp-tools/lksctp-tools.mk | 21 +++++++++++++++++++++
> 4 files changed, 41 insertions(+)
> create mode 100644 package/lksctp-tools/Config.in
> create mode 100644 package/lksctp-tools/lksctp-tools.hash
> create mode 100644 package/lksctp-tools/lksctp-tools.mk
>
> diff --git a/package/Config.in b/package/Config.in
> index 67a2514..b01d3c9 100644
> --- a/package/Config.in
> +++ b/package/Config.in
> @@ -1401,6 +1401,7 @@ endif
> source "package/links/Config.in"
> source "package/linphone/Config.in"
> source "package/linux-zigbee/Config.in"
> + source "package/lksctp-tools/Config.in"
> source "package/lldpd/Config.in"
> source "package/lrzsz/Config.in"
> source "package/macchanger/Config.in"
> diff --git a/package/lksctp-tools/Config.in b/package/lksctp-tools/Config.in
> new file mode 100644
> index 0000000..79c89f7
> --- /dev/null
> +++ b/package/lksctp-tools/Config.in
> @@ -0,0 +1,17 @@
> +config BR2_PACKAGE_LKSCTP_TOOLS
> + bool "lksctp-tools"
> + depends on BR2_TOOLCHAIN_HAS_THREADS
> + depends on BR2_USE_MMU # fork()
> + help
> + This is the lksctp-tools package for Linux Kernel SCTP Reference
> + Implementation.
> +
> + This package is intended to supplement the Linux Kernel SCTP
> + Reference Implementation now available in the Linux kernel source
> + tree in versions 2.5.36 and following.
This description isn't so great. The part about 2.5.36 isn't very useful. How
about:
Libraries and command-line tools for the Linux kernel SCTP
implementation. SCTP (Stream Control Transmission Protocol) is a
message oriented, reliable transport protocol, with congestion
control, support for transparent multi-homing, and multiple ordered
streams of messages. RFC 2960 defines the core protocol.
> +
> + https://github.com/sctp/lksctp-tools
Isn't http://lksctp.sourceforge.net/ a more appropriate home page?
> +
> +comment "lksctp-tools package needs a toolchain w/ threads"
> + depends on BR2_USE_MMU
> + depends on !BR2_TOOLCHAIN_HAS_THREADS
> diff --git a/package/lksctp-tools/lksctp-tools.hash b/package/lksctp-tools/lksctp-tools.hash
> new file mode 100644
> index 0000000..f0b2852
> --- /dev/null
> +++ b/package/lksctp-tools/lksctp-tools.hash
> @@ -0,0 +1,2 @@
> +# Locally computed
> +sha256 0903dd526b7f30a89d5031aa2c82757612becc38ed7bc6e4f972f8deae351f26 lksctp-tools-1.0.16.tar.gz
> diff --git a/package/lksctp-tools/lksctp-tools.mk b/package/lksctp-tools/lksctp-tools.mk
> new file mode 100644
> index 0000000..115c4d8
> --- /dev/null
> +++ b/package/lksctp-tools/lksctp-tools.mk
> @@ -0,0 +1,21 @@
> +################################################################################
> +#
> +# lksctp-tools
> +#
> +################################################################################
> +
> +LKSCTP_TOOLS_VERSION = 1.0.16
> +LKSCTP_TOOLS_SITE = http://downloads.sourceforge.net/project/lksctp/lksctp-tools
> +LKSCTP_TOOLS_LICENSE = GPLv2+ (tools), LGPLv2+ (library)
The source and header files of the library specify LGPLv2.1.
Otherwise looks good.
Regards,
Arnout
> +LKSCTP_TOOLS_LICENSE_FILES = COPYING COPYING.lib
> +LKSCTP_TOOLS_INSTALL_STAGING = YES
> +
> +# release archive doesn't provide configure script
> +LKSCTP_TOOLS_AUTORECONF = YES
> +
> +define LKSCTP_TOOLS_FIX_AUTORECONF
> + mkdir -p $(@D)/m4
> +endef
> +LKSCTP_TOOLS_POST_PATCH_HOOKS += LKSCTP_TOOLS_FIX_AUTORECONF
> +
> +$(eval $(autotools-package))
>
--
Arnout Vandecappelle arnout at mind be
Senior Embedded Software Architect +32-16-286500
Essensium/Mind http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint: 7493 020B C7E3 8618 8DEC 222C 82EB F404 F9AC 0DDF
next prev parent reply other threads:[~2016-02-26 21:40 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-02-26 9:24 [Buildroot] [PATCH] lksctp-tools: new package yegorslists at googlemail.com
2016-02-26 21:40 ` Arnout Vandecappelle [this message]
-- strict thread matches above, loose matches on Subject: below --
2016-03-02 21:07 Gustavo Zacarias
2016-03-02 21:26 ` Thomas Petazzoni
2016-03-02 21:37 ` Gustavo Zacarias
2016-03-02 21:39 ` Thomas Petazzoni
2016-03-02 21:50 ` Yegor Yefremov
2016-03-02 21:56 ` Gustavo Zacarias
2016-03-02 22:16 ` Yegor Yefremov
2016-03-02 22:22 ` Thomas Petazzoni
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=56D0C666.6090900@mind.be \
--to=arnout@mind.be \
--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.