* Fixes lksctp recipe
@ 2010-06-30 0:41 Joao H. Freitas
2010-06-30 0:41 ` [PATCH 1/4] Add lksctp tools Joao H. Freitas
` (4 more replies)
0 siblings, 5 replies; 6+ messages in thread
From: Joao H. Freitas @ 2010-06-30 0:41 UTC (permalink / raw)
To: openembedded-devel
[PATCH 1/4] Add lksctp tools
[PATCH 2/4] Remove mistake configs
[PATCH 3/4] fix missing packages
[PATCH 4/4] rename libsctp package
Thanks
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH 1/4] Add lksctp tools
2010-06-30 0:41 Fixes lksctp recipe Joao H. Freitas
@ 2010-06-30 0:41 ` Joao H. Freitas
2010-06-30 0:41 ` [PATCH 2/4] Remove mistake configs Joao H. Freitas
` (3 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: Joao H. Freitas @ 2010-06-30 0:41 UTC (permalink / raw)
To: openembedded-devel
---
recipes/lksctp-tools/lksctp-tools.inc | 29 ++++++++++++++++++++++++++++
recipes/lksctp-tools/lksctp-tools_1.0.7.bb | 11 ++++++++++
2 files changed, 40 insertions(+), 0 deletions(-)
create mode 100644 recipes/lksctp-tools/lksctp-tools.inc
create mode 100644 recipes/lksctp-tools/lksctp-tools_1.0.7.bb
diff --git a/recipes/lksctp-tools/lksctp-tools.inc b/recipes/lksctp-tools/lksctp-tools.inc
new file mode 100644
index 0000000..678531e
--- /dev/null
+++ b/recipes/lksctp-tools/lksctp-tools.inc
@@ -0,0 +1,29 @@
+DESCRIPTION = "The Linux Kernel Stream Control Transmission Protocol (lksctp) project"
+SECTION = "libs"
+PRIORITY = "optional"
+LICENSE = "GPLv2"
+#DEPENDS_virtclass-native = "python-native"
+
+S = "${WORKDIR}/${BPN}-${PV}"
+
+INC_PR = "r0"
+
+BBCLASSEXTEND = "native"
+
+inherit autotools pkgconfig binconfig
+
+export LDFLAGS += "-ldl"
+
+do_install_append_virtclass-native() {
+ :
+}
+
+DEBIANNAME_${PN} = "lksctp"
+
+PACKAGES =+ "${PN}-tools"
+FILES_${PN} = "${libexecdir}/* ${libdir}/lib*${SOLIBS} \
+ ${sysconfdir} ${sharedstatedir} ${localstatedir} \
+ ${base_libdir}/*${SOLIBS}"
+
+FILES_${PN}-dev += "${bindir}/*-config"
+FILES_${PN}-utils = ""
diff --git a/recipes/lksctp-tools/lksctp-tools_1.0.7.bb b/recipes/lksctp-tools/lksctp-tools_1.0.7.bb
new file mode 100644
index 0000000..34c2ce5
--- /dev/null
+++ b/recipes/lksctp-tools/lksctp-tools_1.0.7.bb
@@ -0,0 +1,11 @@
+require lksctp-tools.inc
+PR = "${INC_PR}.0"
+
+SRC_URI = "${SOURCEFORGE_MIRROR}/lksctp/lksctp-tools-${PV}.tar.gz"
+
+PARALLEL_MAKE = ""
+CCACHE = ""
+
+
+SRC_URI[md5sum] = "047562b40537eb3be5d5ec3ae0a2198b"
+SRC_URI[sha256sum] = "e920e89d110cff9847f1d86a1d7a23a156a8abcc9e65a35655d687fd08377595"
--
1.7.0.2
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH 2/4] Remove mistake configs
2010-06-30 0:41 Fixes lksctp recipe Joao H. Freitas
2010-06-30 0:41 ` [PATCH 1/4] Add lksctp tools Joao H. Freitas
@ 2010-06-30 0:41 ` Joao H. Freitas
2010-06-30 0:41 ` [PATCH 3/4] fix missing packages Joao H. Freitas
` (2 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: Joao H. Freitas @ 2010-06-30 0:41 UTC (permalink / raw)
To: openembedded-devel
---
recipes/lksctp-tools/lksctp-tools.inc | 3 +--
recipes/lksctp-tools/lksctp-tools_1.0.7.bb | 4 ----
2 files changed, 1 insertions(+), 6 deletions(-)
diff --git a/recipes/lksctp-tools/lksctp-tools.inc b/recipes/lksctp-tools/lksctp-tools.inc
index 678531e..02ec988 100644
--- a/recipes/lksctp-tools/lksctp-tools.inc
+++ b/recipes/lksctp-tools/lksctp-tools.inc
@@ -1,8 +1,7 @@
DESCRIPTION = "The Linux Kernel Stream Control Transmission Protocol (lksctp) project"
SECTION = "libs"
PRIORITY = "optional"
-LICENSE = "GPLv2"
-#DEPENDS_virtclass-native = "python-native"
+LICENSE = "LGPLv2"
S = "${WORKDIR}/${BPN}-${PV}"
diff --git a/recipes/lksctp-tools/lksctp-tools_1.0.7.bb b/recipes/lksctp-tools/lksctp-tools_1.0.7.bb
index 34c2ce5..1d4faa3 100644
--- a/recipes/lksctp-tools/lksctp-tools_1.0.7.bb
+++ b/recipes/lksctp-tools/lksctp-tools_1.0.7.bb
@@ -3,9 +3,5 @@ PR = "${INC_PR}.0"
SRC_URI = "${SOURCEFORGE_MIRROR}/lksctp/lksctp-tools-${PV}.tar.gz"
-PARALLEL_MAKE = ""
-CCACHE = ""
-
-
SRC_URI[md5sum] = "047562b40537eb3be5d5ec3ae0a2198b"
SRC_URI[sha256sum] = "e920e89d110cff9847f1d86a1d7a23a156a8abcc9e65a35655d687fd08377595"
--
1.7.0.2
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH 3/4] fix missing packages
2010-06-30 0:41 Fixes lksctp recipe Joao H. Freitas
2010-06-30 0:41 ` [PATCH 1/4] Add lksctp tools Joao H. Freitas
2010-06-30 0:41 ` [PATCH 2/4] Remove mistake configs Joao H. Freitas
@ 2010-06-30 0:41 ` Joao H. Freitas
2010-06-30 0:41 ` [PATCH 4/4] rename libsctp package Joao H. Freitas
2010-06-30 8:25 ` Fixes lksctp recipe Henning Heinold
4 siblings, 0 replies; 6+ messages in thread
From: Joao H. Freitas @ 2010-06-30 0:41 UTC (permalink / raw)
To: openembedded-devel
---
recipes/lksctp-tools/lksctp-tools.inc | 24 +++++++++++++++++++++---
1 files changed, 21 insertions(+), 3 deletions(-)
diff --git a/recipes/lksctp-tools/lksctp-tools.inc b/recipes/lksctp-tools/lksctp-tools.inc
index 02ec988..9832dc9 100644
--- a/recipes/lksctp-tools/lksctp-tools.inc
+++ b/recipes/lksctp-tools/lksctp-tools.inc
@@ -19,10 +19,28 @@ do_install_append_virtclass-native() {
DEBIANNAME_${PN} = "lksctp"
-PACKAGES =+ "${PN}-tools"
+PACKAGES =+ "${PN}-withsctp ${PN}-utils"
+
FILES_${PN} = "${libexecdir}/* ${libdir}/lib*${SOLIBS} \
${sysconfdir} ${sharedstatedir} ${localstatedir} \
${base_libdir}/*${SOLIBS}"
-FILES_${PN}-dev += "${bindir}/*-config"
-FILES_${PN}-utils = ""
+FILES_${PN}-withsctp = " \
+ ${libdir}/lksctp-tools/lib*"
+
+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"
+
+FILES_${PN}-utils = " \
+ ${bindir}/sctp_test \
+ ${bindir}/sctp_darn \
+ ${bindir}/checksctp \
+ ${bindir}/withsctp"
--
1.7.0.2
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH 4/4] rename libsctp package
2010-06-30 0:41 Fixes lksctp recipe Joao H. Freitas
` (2 preceding siblings ...)
2010-06-30 0:41 ` [PATCH 3/4] fix missing packages Joao H. Freitas
@ 2010-06-30 0:41 ` Joao H. Freitas
2010-06-30 8:25 ` Fixes lksctp recipe Henning Heinold
4 siblings, 0 replies; 6+ messages in thread
From: Joao H. Freitas @ 2010-06-30 0:41 UTC (permalink / raw)
To: openembedded-devel
---
recipes/lksctp-tools/lksctp-tools.inc | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/recipes/lksctp-tools/lksctp-tools.inc b/recipes/lksctp-tools/lksctp-tools.inc
index 9832dc9..9cbc963 100644
--- a/recipes/lksctp-tools/lksctp-tools.inc
+++ b/recipes/lksctp-tools/lksctp-tools.inc
@@ -5,19 +5,19 @@ LICENSE = "LGPLv2"
S = "${WORKDIR}/${BPN}-${PV}"
-INC_PR = "r0"
+INC_PR = "r1"
BBCLASSEXTEND = "native"
inherit autotools pkgconfig binconfig
-export LDFLAGS += "-ldl"
-
do_install_append_virtclass-native() {
:
}
-DEBIANNAME_${PN} = "lksctp"
+RREPLACES = "lksctp"
+
+LEAD_SONAME = "libsctp.so"
PACKAGES =+ "${PN}-withsctp ${PN}-utils"
--
1.7.0.2
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: Fixes lksctp recipe
2010-06-30 0:41 Fixes lksctp recipe Joao H. Freitas
` (3 preceding siblings ...)
2010-06-30 0:41 ` [PATCH 4/4] rename libsctp package Joao H. Freitas
@ 2010-06-30 8:25 ` Henning Heinold
4 siblings, 0 replies; 6+ messages in thread
From: Henning Heinold @ 2010-06-30 8:25 UTC (permalink / raw)
To: openembedded-devel
On Tue, Jun 29, 2010 at 09:41:39PM -0300, Joao H. Freitas wrote:
> [PATCH 1/4] Add lksctp tools
> [PATCH 2/4] Remove mistake configs
> [PATCH 3/4] fix missing packages
> [PATCH 4/4] rename libsctp package
>
> Thanks
Please use the git rebase -i and squash function.
We don't need the whole history how you envolved the package.
Thanks and bye Henning
--
IBM Certified Specialist - eserver i5 iSeries Technical Solutions Designer V5R3
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2010-06-30 8:30 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-06-30 0:41 Fixes lksctp recipe Joao H. Freitas
2010-06-30 0:41 ` [PATCH 1/4] Add lksctp tools Joao H. Freitas
2010-06-30 0:41 ` [PATCH 2/4] Remove mistake configs Joao H. Freitas
2010-06-30 0:41 ` [PATCH 3/4] fix missing packages Joao H. Freitas
2010-06-30 0:41 ` [PATCH 4/4] rename libsctp package Joao H. Freitas
2010-06-30 8:25 ` Fixes lksctp recipe Henning Heinold
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.