* [PATCH 9/9] Update libusb1 from 1.0.19 to 1.0.20
@ 2015-10-01 18:07 Jens Rehsack
2015-10-01 18:18 ` Martin Jansa
0 siblings, 1 reply; 2+ messages in thread
From: Jens Rehsack @ 2015-10-01 18:07 UTC (permalink / raw)
To: poky
2015-09-13: v1.0.20
* Add Haiku support
* Fix multiple memory and resource leaks (#16, #52, #76, #81)
* Fix possible deadlock when executing transfer callback
* New libusb_free_pollfds() API
* Darwin: Fix devices not being detected on OS X 10.8 (#48)
* Linux: Allow larger isochronous transfer submission (#23)
* Windows: Fix broken builds Cygwin/MinGW builds and compiler warnings
* Windows: Fix broken bus number lookup
* Windows: Improve submission of control requests for composite devices
* Examples: Add two-stage load support to fxload (#12)
* Correctly report cancellations due to timeouts
* Improve efficiency of event handling
* Improve speed of transfer submission in multi-threaded environments
* Various other bug fixes and improvements
The (#xx) numbers are libusb issue numbers, see ie:
https://github.com/libusb/libusb/issues/16
Signed-off-by: Jens Rehsack <sno@netbsd.org>
---
meta/recipes-support/libusb/libusb1_1.0.19.bb | 34 ---------------------------
meta/recipes-support/libusb/libusb1_1.0.20.bb | 34 +++++++++++++++++++++++++++
2 files changed, 34 insertions(+), 34 deletions(-)
delete mode 100644 meta/recipes-support/libusb/libusb1_1.0.19.bb
create mode 100644 meta/recipes-support/libusb/libusb1_1.0.20.bb
diff --git a/meta/recipes-support/libusb/libusb1_1.0.19.bb b/meta/recipes-support/libusb/libusb1_1.0.19.bb
deleted file mode 100644
index a20e1fc..0000000
--- a/meta/recipes-support/libusb/libusb1_1.0.19.bb
+++ /dev/null
@@ -1,34 +0,0 @@
-SUMMARY = "Userspace library to access USB (version 1.0)"
-HOMEPAGE = "http://libusb.sf.net"
-BUGTRACKER = "http://www.libusb.org/report"
-SECTION = "libs"
-
-LICENSE = "LGPLv2.1+"
-LIC_FILES_CHKSUM = "file://COPYING;md5=fbc093901857fcd118f065f900982c24"
-
-BBCLASSEXTEND = "native nativesdk"
-
-SRC_URI = "${SOURCEFORGE_MIRROR}/libusb/libusb-${PV}.tar.bz2 \
- "
-
-SRC_URI[md5sum] = "f9e2bb5879968467e5ca756cb4e1fa7e"
-SRC_URI[sha256sum] = "6c502c816002f90d4f76050a6429c3a7e0d84204222cbff2dce95dd773ba6840"
-
-S = "${WORKDIR}/libusb-${PV}"
-
-inherit autotools pkgconfig
-
-# Don't configure udev by default since it will cause a circular
-# dependecy with udev package, which depends on libusb
-EXTRA_OECONF = "--libdir=${base_libdir} --disable-udev"
-
-do_install_append() {
- install -d ${D}${libdir}
- if [ ! ${D}${libdir} -ef ${D}${base_libdir} ]; then
- mv ${D}${base_libdir}/pkgconfig ${D}${libdir}
- fi
-}
-
-FILES_${PN} += "${base_libdir}/*.so.*"
-
-FILES_${PN}-dev += "${base_libdir}/*.so ${base_libdir}/*.la"
diff --git a/meta/recipes-support/libusb/libusb1_1.0.20.bb b/meta/recipes-support/libusb/libusb1_1.0.20.bb
new file mode 100644
index 0000000..21b8b45
--- /dev/null
+++ b/meta/recipes-support/libusb/libusb1_1.0.20.bb
@@ -0,0 +1,34 @@
+SUMMARY = "Userspace library to access USB (version 1.0)"
+HOMEPAGE = "http://libusb.sf.net"
+BUGTRACKER = "http://www.libusb.org/report"
+SECTION = "libs"
+
+LICENSE = "LGPLv2.1+"
+LIC_FILES_CHKSUM = "file://COPYING;md5=fbc093901857fcd118f065f900982c24"
+
+BBCLASSEXTEND = "native nativesdk"
+
+SRC_URI = "${SOURCEFORGE_MIRROR}/libusb/libusb-${PV}.tar.bz2 \
+ "
+
+SRC_URI[md5sum] = "1d4eb194eaaa2bcfbba28102768c7dbf"
+SRC_URI[sha256sum] = "cb057190ba0a961768224e4dc6883104c6f945b2bf2ef90d7da39e7c1834f7ff"
+
+S = "${WORKDIR}/libusb-${PV}"
+
+inherit autotools pkgconfig
+
+# Don't configure udev by default since it will cause a circular
+# dependecy with udev package, which depends on libusb
+EXTRA_OECONF = "--libdir=${base_libdir} --disable-udev"
+
+do_install_append() {
+ install -d ${D}${libdir}
+ if [ ! ${D}${libdir} -ef ${D}${base_libdir} ]; then
+ mv ${D}${base_libdir}/pkgconfig ${D}${libdir}
+ fi
+}
+
+FILES_${PN} += "${base_libdir}/*.so.*"
+
+FILES_${PN}-dev += "${base_libdir}/*.so ${base_libdir}/*.la"
--
1.9.1
--
Jens Rehsack - rehsack@gmail.com
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH 9/9] Update libusb1 from 1.0.19 to 1.0.20
2015-10-01 18:07 [PATCH 9/9] Update libusb1 from 1.0.19 to 1.0.20 Jens Rehsack
@ 2015-10-01 18:18 ` Martin Jansa
0 siblings, 0 replies; 2+ messages in thread
From: Martin Jansa @ 2015-10-01 18:18 UTC (permalink / raw)
To: Jens Rehsack; +Cc: poky
[-- Attachment #1: Type: text/plain, Size: 4951 bytes --]
On Thu, Oct 01, 2015 at 08:07:40PM +0200, Jens Rehsack wrote:
>
> 2015-09-13: v1.0.20
> * Add Haiku support
> * Fix multiple memory and resource leaks (#16, #52, #76, #81)
> * Fix possible deadlock when executing transfer callback
> * New libusb_free_pollfds() API
> * Darwin: Fix devices not being detected on OS X 10.8 (#48)
> * Linux: Allow larger isochronous transfer submission (#23)
> * Windows: Fix broken builds Cygwin/MinGW builds and compiler warnings
> * Windows: Fix broken bus number lookup
> * Windows: Improve submission of control requests for composite devices
> * Examples: Add two-stage load support to fxload (#12)
> * Correctly report cancellations due to timeouts
> * Improve efficiency of event handling
> * Improve speed of transfer submission in multi-threaded environments
> * Various other bug fixes and improvements
> The (#xx) numbers are libusb issue numbers, see ie:
> https://github.com/libusb/libusb/issues/16
This does apply for all 9 commits you sent
1) commit summary should start with changed component (usually recipe
name), see
http://www.openembedded.org/wiki/Commit_Patch_Message_Guidelines
2) commits changing oe-core should go to
openembedded-core@lists.openembedded.org
commits changing bitbake should go to
bitbake-devel@lists.openembedded.org
not to poky.
3) you should use -M in git send-email or git format-patch so that
changes like this last one are easier to review.
Regards,
>
> Signed-off-by: Jens Rehsack <sno@netbsd.org>
> ---
> meta/recipes-support/libusb/libusb1_1.0.19.bb | 34 ---------------------------
> meta/recipes-support/libusb/libusb1_1.0.20.bb | 34 +++++++++++++++++++++++++++
> 2 files changed, 34 insertions(+), 34 deletions(-)
> delete mode 100644 meta/recipes-support/libusb/libusb1_1.0.19.bb
> create mode 100644 meta/recipes-support/libusb/libusb1_1.0.20.bb
>
> diff --git a/meta/recipes-support/libusb/libusb1_1.0.19.bb b/meta/recipes-support/libusb/libusb1_1.0.19.bb
> deleted file mode 100644
> index a20e1fc..0000000
> --- a/meta/recipes-support/libusb/libusb1_1.0.19.bb
> +++ /dev/null
> @@ -1,34 +0,0 @@
> -SUMMARY = "Userspace library to access USB (version 1.0)"
> -HOMEPAGE = "http://libusb.sf.net"
> -BUGTRACKER = "http://www.libusb.org/report"
> -SECTION = "libs"
> -
> -LICENSE = "LGPLv2.1+"
> -LIC_FILES_CHKSUM = "file://COPYING;md5=fbc093901857fcd118f065f900982c24"
> -
> -BBCLASSEXTEND = "native nativesdk"
> -
> -SRC_URI = "${SOURCEFORGE_MIRROR}/libusb/libusb-${PV}.tar.bz2 \
> - "
> -
> -SRC_URI[md5sum] = "f9e2bb5879968467e5ca756cb4e1fa7e"
> -SRC_URI[sha256sum] = "6c502c816002f90d4f76050a6429c3a7e0d84204222cbff2dce95dd773ba6840"
> -
> -S = "${WORKDIR}/libusb-${PV}"
> -
> -inherit autotools pkgconfig
> -
> -# Don't configure udev by default since it will cause a circular
> -# dependecy with udev package, which depends on libusb
> -EXTRA_OECONF = "--libdir=${base_libdir} --disable-udev"
> -
> -do_install_append() {
> - install -d ${D}${libdir}
> - if [ ! ${D}${libdir} -ef ${D}${base_libdir} ]; then
> - mv ${D}${base_libdir}/pkgconfig ${D}${libdir}
> - fi
> -}
> -
> -FILES_${PN} += "${base_libdir}/*.so.*"
> -
> -FILES_${PN}-dev += "${base_libdir}/*.so ${base_libdir}/*.la"
> diff --git a/meta/recipes-support/libusb/libusb1_1.0.20.bb b/meta/recipes-support/libusb/libusb1_1.0.20.bb
> new file mode 100644
> index 0000000..21b8b45
> --- /dev/null
> +++ b/meta/recipes-support/libusb/libusb1_1.0.20.bb
> @@ -0,0 +1,34 @@
> +SUMMARY = "Userspace library to access USB (version 1.0)"
> +HOMEPAGE = "http://libusb.sf.net"
> +BUGTRACKER = "http://www.libusb.org/report"
> +SECTION = "libs"
> +
> +LICENSE = "LGPLv2.1+"
> +LIC_FILES_CHKSUM = "file://COPYING;md5=fbc093901857fcd118f065f900982c24"
> +
> +BBCLASSEXTEND = "native nativesdk"
> +
> +SRC_URI = "${SOURCEFORGE_MIRROR}/libusb/libusb-${PV}.tar.bz2 \
> + "
> +
> +SRC_URI[md5sum] = "1d4eb194eaaa2bcfbba28102768c7dbf"
> +SRC_URI[sha256sum] = "cb057190ba0a961768224e4dc6883104c6f945b2bf2ef90d7da39e7c1834f7ff"
> +
> +S = "${WORKDIR}/libusb-${PV}"
> +
> +inherit autotools pkgconfig
> +
> +# Don't configure udev by default since it will cause a circular
> +# dependecy with udev package, which depends on libusb
> +EXTRA_OECONF = "--libdir=${base_libdir} --disable-udev"
> +
> +do_install_append() {
> + install -d ${D}${libdir}
> + if [ ! ${D}${libdir} -ef ${D}${base_libdir} ]; then
> + mv ${D}${base_libdir}/pkgconfig ${D}${libdir}
> + fi
> +}
> +
> +FILES_${PN} += "${base_libdir}/*.so.*"
> +
> +FILES_${PN}-dev += "${base_libdir}/*.so ${base_libdir}/*.la"
> --
> 1.9.1
>
> --
> Jens Rehsack - rehsack@gmail.com
>
> --
> _______________________________________________
> poky mailing list
> poky@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/poky
--
Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 188 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2015-10-01 18:17 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-10-01 18:07 [PATCH 9/9] Update libusb1 from 1.0.19 to 1.0.20 Jens Rehsack
2015-10-01 18:18 ` Martin Jansa
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.