diff mbox series

pimd: new package

Message ID 1512228242-23822-1-git-send-email-sergio.prado@e-labworks.com
State Changes Requested
Headers show
Series pimd: new package | expand

Commit Message

Sergio Prado Dec. 2, 2017, 3:24 p.m. UTC
pimd is a lightweight stand-alone PIM-SM v2 multicast routing daemon.

Signed-off-by: Sergio Prado <sergio.prado@e-labworks.com>
---
 DEVELOPERS             |  1 +
 package/Config.in      |  1 +
 package/pimd/Config.in |  8 ++++++++
 package/pimd/pimd.hash |  3 +++
 package/pimd/pimd.mk   | 20 ++++++++++++++++++++
 5 files changed, 33 insertions(+)
 create mode 100644 package/pimd/Config.in
 create mode 100644 package/pimd/pimd.hash
 create mode 100644 package/pimd/pimd.mk

Comments

Marcus Folkesson Dec. 2, 2017, 4:15 p.m. UTC | #1
Hi,

On Sat, Dec 02, 2017 at 01:24:02PM -0200, Sergio Prado wrote:
> pimd is a lightweight stand-alone PIM-SM v2 multicast routing daemon.
> diff --git a/package/pimd/pimd.mk b/package/pimd/pimd.mk
> new file mode 100644
> index 000000000000..cd9427094a61
> --- /dev/null
> +++ b/package/pimd/pimd.mk
> @@ -0,0 +1,20 @@
> +################################################################################
> +#
> +# pimd
> +#
> +################################################################################
> +
> +PIMD_VERSION = 2.3.2
> +PIMD_SOURCE = pimd-$(PIMD_VERSION).tar.gz
> +PIMD_SITE = https://github.com/troglobit/pimd/releases/download/$(PIMD_VERSION)
> +
> +PIMD_LICENSE = BSD-3-Clause
> +PIMD_LICENSE_FILES = LICENSE

LICENSE.mrouted Should also be listed in PIMD_LICENSE_FILES.

From LICENSE:
Part of this program has been derived from mrouted.
The mrouted program is covered by the license in the accompanying file
named "LICENSE.mrouted".

> +
> +PIMD_MAKE_OPTS = CROSS=$(TARGET_CROSS) CC=$(TARGET_CC)
> +
> +ifeq ($(BR2_TOOLCHAIN_USES_UCLIBC)$(BR2_TOOLCHAIN_USES_MUSL),y)
> +PIMD_CONF_OPTS = --embedded-libc
> +endif
> +
> +$(eval $(autotools-package))
> -- 
> 1.9.1
> 
> _______________________________________________
> buildroot mailing list
> buildroot@busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot


Best regards
Marcus Folkesson
Thomas Petazzoni Dec. 2, 2017, 11:19 p.m. UTC | #2
Hello,

On Sat,  2 Dec 2017 13:24:02 -0200, Sergio Prado wrote:

> diff --git a/package/pimd/pimd.mk b/package/pimd/pimd.mk
> new file mode 100644
> index 000000000000..cd9427094a61
> --- /dev/null
> +++ b/package/pimd/pimd.mk
> @@ -0,0 +1,20 @@
> +################################################################################
> +#
> +# pimd
> +#
> +################################################################################
> +
> +PIMD_VERSION = 2.3.2
> +PIMD_SOURCE = pimd-$(PIMD_VERSION).tar.gz
> +PIMD_SITE = https://github.com/troglobit/pimd/releases/download/$(PIMD_VERSION)
> +
> +PIMD_LICENSE = BSD-3-Clause
> +PIMD_LICENSE_FILES = LICENSE
> +
> +PIMD_MAKE_OPTS = CROSS=$(TARGET_CROSS) CC=$(TARGET_CC)
> +
> +ifeq ($(BR2_TOOLCHAIN_USES_UCLIBC)$(BR2_TOOLCHAIN_USES_MUSL),y)
> +PIMD_CONF_OPTS = --embedded-libc
> +endif
> +
> +$(eval $(autotools-package))

I was a bit confused at first, because when I looked at the code in
http://troglobit.com/project/pimd/, it was using a traditional
configure.ac and Makefile.am, which surely shouldn't require passing
CROSS and CC at build time, and which also doesn't have any
--embedded-libc option.

The reason is that 2.3.2, which was released in March 2016, predates
the introduction of autotools as the build system.

Therefore, I see two possibilities here:

 - You stick with 2.3.2. In this case, you should use generic-package
   and not autotools-package, because at 2.3.2, pimd is clearly not an
   autotools-package. It's not because it works by chance with the
   current autotools-package infrastructure that a future subtle change
   in the autotools-package infrastructure, which is valid for real
   autotools package, will break this non-autotools package.

 - You move to the latest Git commit, which really uses an autotools
   based build system.

Thanks!

Thomas
Sergio Prado Dec. 4, 2017, 10:15 a.m. UTC | #3
Hi Marcus,

> LICENSE.mrouted Should also be listed in PIMD_LICENSE_FILES.
>
> From LICENSE:
> Part of this program has been derived from mrouted.
> The mrouted program is covered by the license in the accompanying file
> named "LICENSE.mrouted".

Thanks for noticing that. I'll change and send V2.

Best regards,

Sergio Prado
Embedded Labworks
<div dir="ltr"><div>Hi Marcus,</div><div><br></div>&gt; LICENSE.mrouted Should also be listed in PIMD_LICENSE_FILES.<br>&gt;<br>&gt; From LICENSE:<br>&gt; Part of this program has been derived from mrouted.<br>&gt; The mrouted program is covered by the license in the accompanying file<br>&gt; named &quot;LICENSE.mrouted&quot;.<div><br></div><div>Thanks for noticing that. I&#39;ll change and send V2.</div><div><br>Best regards,</div><div><br></div><div>Sergio Prado</div><div>Embedded Labworks</div></div>
Sergio Prado Dec. 4, 2017, 10:18 a.m. UTC | #4
Hi Thomas,

> I was a bit confused at first, because when I looked at the code in
> http://troglobit.com/project/pimd/, it was using a traditional
> configure.ac and Makefile.am, which surely shouldn't require passing
> CROSS and CC at build time, and which also doesn't have any
> --embedded-libc option.
>
> The reason is that 2.3.2, which was released in March 2016, predates
> the introduction of autotools as the build system.
>
> Therefore, I see two possibilities here:
>
>  - You stick with 2.3.2. In this case, you should use generic-package
>    and not autotools-package, because at 2.3.2, pimd is clearly not an
>    autotools-package. It's not because it works by chance with the
>    current autotools-package infrastructure that a future subtle change
>    in the autotools-package infrastructure, which is valid for real
>    autotools package, will break this non-autotools package.
>
>  - You move to the latest Git commit, which really uses an autotools
>    based build system.

OK. I'll change to the generic-package infrastructure.

Best regards,

Sergio Prado
Embedded Labworks
https:/e-labworks.com/en

>
> Thanks!
>
> Thomas
> --
> Thomas Petazzoni, CTO, Free Electrons
> Embedded Linux and Kernel engineering
> http://free-electrons.com
<div dir="ltr">Hi Thomas,<div><br></div><div>&gt; I was a bit confused at first, because when I looked at the code in<br>&gt; <a href="http://troglobit.com/project/pimd/">http://troglobit.com/project/pimd/</a>, it was using a traditional<br>&gt; <a href="http://configure.ac">configure.ac</a> and Makefile.am, which surely shouldn&#39;t require passing<br>&gt; CROSS and CC at build time, and which also doesn&#39;t have any<br>&gt; --embedded-libc option.<br>&gt;<br>&gt; The reason is that 2.3.2, which was released in March 2016, predates<br>&gt; the introduction of autotools as the build system.<br>&gt;<br>&gt; Therefore, I see two possibilities here:<br>&gt;<br>&gt;  - You stick with 2.3.2. In this case, you should use generic-package<br>&gt;    and not autotools-package, because at 2.3.2, pimd is clearly not an<br>&gt;    autotools-package. It&#39;s not because it works by chance with the<br>&gt;    current autotools-package infrastructure that a future subtle change<br>&gt;    in the autotools-package infrastructure, which is valid for real<br>&gt;    autotools package, will break this non-autotools package.<br>&gt;<br>&gt;  - You move to the latest Git commit, which really uses an autotools<br>&gt;    based build system.</div><div><br></div><div>OK. I&#39;ll change to the generic-package infrastructure.</div><div><br></div><div>Best regards,</div><div><br></div><div>Sergio Prado</div><div>Embedded Labworks</div><div>https:/<a href="http://e-labworks.com/en">e-labworks.com/en</a></div><div><br>&gt;<br>&gt; Thanks!<br>&gt;<br>&gt; Thomas<br>&gt; --<br>&gt; Thomas Petazzoni, CTO, Free Electrons<br>&gt; Embedded Linux and Kernel engineering<br>&gt; <a href="http://free-electrons.com">http://free-electrons.com</a></div></div>
Marcus Folkesson Dec. 4, 2017, 10:21 a.m. UTC | #5
Hi,

On Mon, Dec 04, 2017 at 08:15:58AM -0200, Sergio Prado wrote:
> Hi Marcus,
> 
> > LICENSE.mrouted Should also be listed in PIMD_LICENSE_FILES.
> >
> > From LICENSE:
> > Part of this program has been derived from mrouted.
> > The mrouted program is covered by the license in the accompanying file
> > named "LICENSE.mrouted".
> 
> Thanks for noticing that. I'll change and send V2.

Just remember to calculate hash for LICENSE.mrouted as well :-)

Best regards
Marcus Folkesson
diff mbox series

Patch

diff --git a/DEVELOPERS b/DEVELOPERS
index 27b22f4f0fed..1a998f3dfc12 100644
--- a/DEVELOPERS
+++ b/DEVELOPERS
@@ -1518,6 +1518,7 @@  F:	configs/linksprite_pcduino_defconfig
 N:	Sergio Prado <sergio.prado@e-labworks.com>
 F:	package/libgdiplus/
 F:	package/mongodb/
+F:	package/pimd/
 F:	package/stella/
 F:	package/tunctl/
 F:	package/ubus/
diff --git a/package/Config.in b/package/Config.in
index aa111e48e6fb..104859fcd1c1 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -1410,6 +1410,7 @@  menu "Networking"
 	source "package/openzwave/Config.in"
 	source "package/ortp/Config.in"
 	source "package/paho-mqtt-c/Config.in"
+	source "package/pimd/Config.in"
 	source "package/qdecoder/Config.in"
 	source "package/qpid-proton/Config.in"
 	source "package/rabbitmq-c/Config.in"
diff --git a/package/pimd/Config.in b/package/pimd/Config.in
new file mode 100644
index 000000000000..d6a579bda258
--- /dev/null
+++ b/package/pimd/Config.in
@@ -0,0 +1,8 @@ 
+config BR2_PACKAGE_PIMD
+	bool "pimd"
+	depends on BR2_USE_MMU # fork()
+	help
+	  pimd is a lightweight stand-alone PIM-SM v2 multicast routing
+	  daemon.
+
+	  http://troglobit.com/project/pimd/
diff --git a/package/pimd/pimd.hash b/package/pimd/pimd.hash
new file mode 100644
index 000000000000..20252a6d4ed7
--- /dev/null
+++ b/package/pimd/pimd.hash
@@ -0,0 +1,3 @@ 
+# Locally computed:
+sha256 c77a9812751f114490a28a6839b16aac8b020c8d9fd6aa22bf3880c054e19f1d  pimd-2.3.2.tar.gz
+sha256 3379436c16caccdef9b40a49fbdfdbb45aad8ecb05870834490b8fb080126009  LICENSE
diff --git a/package/pimd/pimd.mk b/package/pimd/pimd.mk
new file mode 100644
index 000000000000..cd9427094a61
--- /dev/null
+++ b/package/pimd/pimd.mk
@@ -0,0 +1,20 @@ 
+################################################################################
+#
+# pimd
+#
+################################################################################
+
+PIMD_VERSION = 2.3.2
+PIMD_SOURCE = pimd-$(PIMD_VERSION).tar.gz
+PIMD_SITE = https://github.com/troglobit/pimd/releases/download/$(PIMD_VERSION)
+
+PIMD_LICENSE = BSD-3-Clause
+PIMD_LICENSE_FILES = LICENSE
+
+PIMD_MAKE_OPTS = CROSS=$(TARGET_CROSS) CC=$(TARGET_CC)
+
+ifeq ($(BR2_TOOLCHAIN_USES_UCLIBC)$(BR2_TOOLCHAIN_USES_MUSL),y)
+PIMD_CONF_OPTS = --embedded-libc
+endif
+
+$(eval $(autotools-package))