All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] lksctp-tools: Add new recipe for lksctp tools: library and utilities
@ 2014-12-15 18:10 Sam Nelson
  2014-12-15 19:15 ` Denys Dmytriyenko
  0 siblings, 1 reply; 3+ messages in thread
From: Sam Nelson @ 2014-12-15 18:10 UTC (permalink / raw)
  To: meta-arago

- Stream Control Transmission Protocol (SCTP) is a reliable, message-oriented,
  multihomed transport protocol. Developed by the IETF SIGTRAN working group
  to transport SS7 over IP, it is now the third general-purpose transport developed
  by the IETF.

Signed-off-by: Sam Nelson <sam.nelson@ti.com>
---
 .../lksctp-tools/lksctp-tools_1.0.16.bb            |   44 ++++++++++++++++++++
 1 file changed, 44 insertions(+)
 create mode 100755 meta-arago-extras/recipes-connectivity/lksctp-tools/lksctp-tools_1.0.16.bb

diff --git a/meta-arago-extras/recipes-connectivity/lksctp-tools/lksctp-tools_1.0.16.bb b/meta-arago-extras/recipes-connectivity/lksctp-tools/lksctp-tools_1.0.16.bb
new file mode 100755
index 0000000..3765715
--- /dev/null
+++ b/meta-arago-extras/recipes-connectivity/lksctp-tools/lksctp-tools_1.0.16.bb
@@ -0,0 +1,44 @@
+DESCRIPTION = "The Linux Kernel Stream Control Transmission Protocol (lksctp) project"
+SECTION = "libs"
+PRIORITY = "optional"
+LICENSE = "LGPLv2"
+LIC_FILES_CHKSUM = "file://COPYING;md5=0c56db0143f4f80c369ee3af7425af6e"
+
+PR = "r0"
+
+SRC_URI = "${SOURCEFORGE_MIRROR}/lksctp/lksctp-tools-${PV}.tar.gz"
+
+SRC_URI[md5sum] = "708bb0b5a6806ad6e8d13c55b067518e"
+SRC_URI[sha256sum] = "0903dd526b7f30a89d5031aa2c82757612becc38ed7bc6e4f972f8deae351f26"
+
+BBCLASSEXTEND = "native"
+
+inherit autotools pkgconfig binconfig
+
+RREPLACES_${PN} = "lksctp"
+
+PACKAGES =+ "${PN}-utils"
+
+FILES_${PN} = "${libexecdir}/* ${libdir}/lib*${SOLIBS} \
+            ${sysconfdir} ${sharedstatedir} ${localstatedir} \
+            ${base_libdir}/*${SOLIBS}"
+
+FILES_${PN}-dev += " \
+  ${datadir}/lksctp-tools/checksctp.c \
+  ${datadir}/lksctp-tools/sctp_socket.c \
+  ${datadir}/lksctp-tools/sctp_bind.c \
+  ${datadir}/lksctp-tools/sctp_darn.c \
+  ${datadir}/lksctp-tools/sctp_load_libs.c \
+  ${datadir}/lksctp-tools/sctp_sockopt.c \
+  ${datadir}/lksctp-tools/sctp_socket.h \
+  ${datadir}/lksctp-tools/sctp_test.c \
+  ${datadir}/lksctp-tools/sctp_darn.h \
+  ${datadir}/lksctp-tools/sctp_status.c \
+  ${libdir}/lksctp-tools/lib*.so"
+
+FILES_${PN}-utils = " \
+  ${bindir}/sctp_test \
+  ${bindir}/sctp_darn \
+  ${bindir}/checksctp \
+  ${bindir}/withsctp \
+  ${bindir}/sctp_status"
-- 
1.7.9.5



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

* Re: [PATCH] lksctp-tools: Add new recipe for lksctp tools: library and utilities
  2014-12-15 18:10 [PATCH] lksctp-tools: Add new recipe for lksctp tools: library and utilities Sam Nelson
@ 2014-12-15 19:15 ` Denys Dmytriyenko
  2014-12-16 15:40   ` Nelson, Sam
  0 siblings, 1 reply; 3+ messages in thread
From: Denys Dmytriyenko @ 2014-12-15 19:15 UTC (permalink / raw)
  To: Sam Nelson; +Cc: meta-arago

On Mon, Dec 15, 2014 at 01:10:57PM -0500, Sam Nelson wrote:
> - Stream Control Transmission Protocol (SCTP) is a reliable, message-oriented,
>   multihomed transport protocol. Developed by the IETF SIGTRAN working group
>   to transport SS7 over IP, it is now the third general-purpose transport developed
>   by the IETF.

Looks fine to me. Please see below for 1 small question.


> Signed-off-by: Sam Nelson <sam.nelson@ti.com>
> ---
>  .../lksctp-tools/lksctp-tools_1.0.16.bb            |   44 ++++++++++++++++++++
>  1 file changed, 44 insertions(+)
>  create mode 100755 meta-arago-extras/recipes-connectivity/lksctp-tools/lksctp-tools_1.0.16.bb
> 
> diff --git a/meta-arago-extras/recipes-connectivity/lksctp-tools/lksctp-tools_1.0.16.bb b/meta-arago-extras/recipes-connectivity/lksctp-tools/lksctp-tools_1.0.16.bb
> new file mode 100755
> index 0000000..3765715
> --- /dev/null
> +++ b/meta-arago-extras/recipes-connectivity/lksctp-tools/lksctp-tools_1.0.16.bb
> @@ -0,0 +1,44 @@
> +DESCRIPTION = "The Linux Kernel Stream Control Transmission Protocol (lksctp) project"
> +SECTION = "libs"
> +PRIORITY = "optional"
> +LICENSE = "LGPLv2"
> +LIC_FILES_CHKSUM = "file://COPYING;md5=0c56db0143f4f80c369ee3af7425af6e"
> +
> +PR = "r0"
> +
> +SRC_URI = "${SOURCEFORGE_MIRROR}/lksctp/lksctp-tools-${PV}.tar.gz"
> +
> +SRC_URI[md5sum] = "708bb0b5a6806ad6e8d13c55b067518e"
> +SRC_URI[sha256sum] = "0903dd526b7f30a89d5031aa2c82757612becc38ed7bc6e4f972f8deae351f26"
> +
> +BBCLASSEXTEND = "native"
> +
> +inherit autotools pkgconfig binconfig
> +
> +RREPLACES_${PN} = "lksctp"
> +
> +PACKAGES =+ "${PN}-utils"
> +
> +FILES_${PN} = "${libexecdir}/* ${libdir}/lib*${SOLIBS} \
> +            ${sysconfdir} ${sharedstatedir} ${localstatedir} \
> +            ${base_libdir}/*${SOLIBS}"
> +
> +FILES_${PN}-dev += " \
> +  ${datadir}/lksctp-tools/checksctp.c \
> +  ${datadir}/lksctp-tools/sctp_socket.c \
> +  ${datadir}/lksctp-tools/sctp_bind.c \
> +  ${datadir}/lksctp-tools/sctp_darn.c \
> +  ${datadir}/lksctp-tools/sctp_load_libs.c \
> +  ${datadir}/lksctp-tools/sctp_sockopt.c \
> +  ${datadir}/lksctp-tools/sctp_socket.h \
> +  ${datadir}/lksctp-tools/sctp_test.c \
> +  ${datadir}/lksctp-tools/sctp_darn.h \
> +  ${datadir}/lksctp-tools/sctp_status.c \
> +  ${libdir}/lksctp-tools/lib*.so"

The last line above lists all lib*.so in lksctp-tools off of libdir - are 
those real libraries and do you need to list them in the main package too?


> +
> +FILES_${PN}-utils = " \
> +  ${bindir}/sctp_test \
> +  ${bindir}/sctp_darn \
> +  ${bindir}/checksctp \
> +  ${bindir}/withsctp \
> +  ${bindir}/sctp_status"
> -- 
> 1.7.9.5
> 
> _______________________________________________
> meta-arago mailing list
> meta-arago@arago-project.org
> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago


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

* Re: [PATCH] lksctp-tools: Add new recipe for lksctp tools: library and utilities
  2014-12-15 19:15 ` Denys Dmytriyenko
@ 2014-12-16 15:40   ` Nelson, Sam
  0 siblings, 0 replies; 3+ messages in thread
From: Nelson, Sam @ 2014-12-16 15:40 UTC (permalink / raw)
  To: Dmytriyenko, Denys; +Cc: meta-arago@arago-project.org



> -----Original Message-----
> From: Dmytriyenko, Denys
> Sent: Monday, December 15, 2014 2:15 PM
> To: Nelson, Sam
> Cc: meta-arago@arago-project.org
> Subject: Re: [meta-arago] [PATCH] lksctp-tools: Add new recipe for lksctp
> tools: library and utilities
> 
> On Mon, Dec 15, 2014 at 01:10:57PM -0500, Sam Nelson wrote:
> > - Stream Control Transmission Protocol (SCTP) is a reliable, message-
> oriented,
> >   multihomed transport protocol. Developed by the IETF SIGTRAN working
> group
> >   to transport SS7 over IP, it is now the third general-purpose transport
> developed
> >   by the IETF.
> 
> Looks fine to me. Please see below for 1 small question.
> 
> 
> > Signed-off-by: Sam Nelson <sam.nelson@ti.com>
> > ---
> >  .../lksctp-tools/lksctp-tools_1.0.16.bb            |   44 ++++++++++++++++++++
> >  1 file changed, 44 insertions(+)
> >  create mode 100755 meta-arago-extras/recipes-connectivity/lksctp-
> tools/lksctp-tools_1.0.16.bb
> >
> > diff --git a/meta-arago-extras/recipes-connectivity/lksctp-tools/lksctp-
> tools_1.0.16.bb b/meta-arago-extras/recipes-connectivity/lksctp-
> tools/lksctp-tools_1.0.16.bb
> > new file mode 100755
> > index 0000000..3765715
> > --- /dev/null
> > +++ b/meta-arago-extras/recipes-connectivity/lksctp-tools/lksctp-
> tools_1.0.16.bb
> > @@ -0,0 +1,44 @@
> > +DESCRIPTION = "The Linux Kernel Stream Control Transmission Protocol
> (lksctp) project"
> > +SECTION = "libs"
> > +PRIORITY = "optional"
> > +LICENSE = "LGPLv2"
> > +LIC_FILES_CHKSUM =
> "file://COPYING;md5=0c56db0143f4f80c369ee3af7425af6e"
> > +
> > +PR = "r0"
> > +
> > +SRC_URI = "${SOURCEFORGE_MIRROR}/lksctp/lksctp-tools-${PV}.tar.gz"
> > +
> > +SRC_URI[md5sum] = "708bb0b5a6806ad6e8d13c55b067518e"
> > +SRC_URI[sha256sum] =
> "0903dd526b7f30a89d5031aa2c82757612becc38ed7bc6e4f972f8deae351f2
> 6"
> > +
> > +BBCLASSEXTEND = "native"
> > +
> > +inherit autotools pkgconfig binconfig
> > +
> > +RREPLACES_${PN} = "lksctp"
> > +
> > +PACKAGES =+ "${PN}-utils"
> > +
> > +FILES_${PN} = "${libexecdir}/* ${libdir}/lib*${SOLIBS} \
> > +            ${sysconfdir} ${sharedstatedir} ${localstatedir} \
> > +            ${base_libdir}/*${SOLIBS}"
> > +
> > +FILES_${PN}-dev += " \
> > +  ${datadir}/lksctp-tools/checksctp.c \
> > +  ${datadir}/lksctp-tools/sctp_socket.c \
> > +  ${datadir}/lksctp-tools/sctp_bind.c \
> > +  ${datadir}/lksctp-tools/sctp_darn.c \
> > +  ${datadir}/lksctp-tools/sctp_load_libs.c \
> > +  ${datadir}/lksctp-tools/sctp_sockopt.c \
> > +  ${datadir}/lksctp-tools/sctp_socket.h \
> > +  ${datadir}/lksctp-tools/sctp_test.c \
> > +  ${datadir}/lksctp-tools/sctp_darn.h \
> > +  ${datadir}/lksctp-tools/sctp_status.c \
> > +  ${libdir}/lksctp-tools/lib*.so"
> 
> The last line above lists all lib*.so in lksctp-tools off of libdir - are
> those real libraries and do you need to list them in the main package too?
> 
[Sam] Yes they are real libraries.  Looking more into the details looks like it makes sense to include in separate package. I will send updated patch.
> 
> > +
> > +FILES_${PN}-utils = " \
> > +  ${bindir}/sctp_test \
> > +  ${bindir}/sctp_darn \
> > +  ${bindir}/checksctp \
> > +  ${bindir}/withsctp \
> > +  ${bindir}/sctp_status"
> > --
> > 1.7.9.5
> >
> > _______________________________________________
> > meta-arago mailing list
> > meta-arago@arago-project.org
> > http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago


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

end of thread, other threads:[~2014-12-16 15:40 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-12-15 18:10 [PATCH] lksctp-tools: Add new recipe for lksctp tools: library and utilities Sam Nelson
2014-12-15 19:15 ` Denys Dmytriyenko
2014-12-16 15:40   ` Nelson, Sam

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.