Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [RESEND PATCH] pulseview: new package
@ 2015-03-02 13:54 Bartosz Golaszewski
  2015-03-06 10:16 ` Bartosz Golaszewski
  0 siblings, 1 reply; 3+ messages in thread
From: Bartosz Golaszewski @ 2015-03-02 13:54 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
---
 package/Config.in              |  1 +
 package/pulseview/Config.in    | 28 ++++++++++++++++++++++++++++
 package/pulseview/pulseview.mk | 24 ++++++++++++++++++++++++
 3 files changed, 53 insertions(+)
 create mode 100644 package/pulseview/Config.in
 create mode 100644 package/pulseview/pulseview.mk

diff --git a/package/Config.in b/package/Config.in
index 3aa664a..c160f5f 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -362,6 +362,7 @@ endif
 	source "package/picocom/Config.in"
 	source "package/pifmrds/Config.in"
 	source "package/pps-tools/Config.in"
+	source "package/pulseview/Config.in"
 	source "package/read-edid/Config.in"
 	source "package/rng-tools/Config.in"
 	source "package/rpi-userland/Config.in"
diff --git a/package/pulseview/Config.in b/package/pulseview/Config.in
new file mode 100644
index 0000000..4428db7
--- /dev/null
+++ b/package/pulseview/Config.in
@@ -0,0 +1,28 @@
+config BR2_PACKAGE_PULSEVIEW
+	bool "pulseview"
+	select BR2_PACKAGE_LIBSERIALPORT
+	select BR2_PACKAGE_LIBSIGROK
+	select BR2_PACKAGE_LIBSIGROKCXX
+	depends on BR2_PACKAGE_QT5
+	select BR2_PACKAGE_QT5BASE_WIDGETS
+	select BR2_PACKAGE_QT5SVG
+	select BR2_PACKAGE_BOOST
+	select BR2_PACKAGE_BOOST_FILESYSTEM
+	select BR2_PACKAGE_BOOST_SYSTEM
+	select BR2_PACKAGE_BOOST_THREAD
+	# libsigrok->libglib2:
+	depends on BR2_USE_WCHAR
+	depends on BR2_TOOLCHAIN_HAS_THREADS
+	depends on BR2_USE_MMU
+	depends on BR2_TOOLCHAIN_BUILDROOT_CXX
+	help
+	  PulseView is a Qt based logic analyzer, oscilloscope
+	  and MSO GUI for sigrok.
+
+	  http://sigrok.org/wiki/PulseView
+
+comment "pulseview needs a toolchain w/ wchar, threads, C++"
+	depends on BR2_USE_MMU
+	depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
+	depends on !BR2_PACKAGE_QT5
+	depends on !BR2_TOOLCHAIN_BUILDROOT_CXX
diff --git a/package/pulseview/pulseview.mk b/package/pulseview/pulseview.mk
new file mode 100644
index 0000000..923459d
--- /dev/null
+++ b/package/pulseview/pulseview.mk
@@ -0,0 +1,24 @@
+################################################################################
+#
+# pulseview
+#
+################################################################################
+
+# TODO Pulseview can be built and linked against Qt4 as well.
+
+# No https access on upstream git
+PULSEVIEW_SITE = git://sigrok.org/pulseview
+PULSEVIEW_VERSION = 19be0af16af83ca10f7ce69cb64f0b0c6f6a0d81
+PULSEVIEW_LICENSE = GPLv3+
+PULSEVIEW_LICENSE_FILES = COPYING
+PULSEVIEW_DEPENDENCIES = libsigrok qt5base qt5svg boost
+PULSEVIEW_CONF_OPTS = -DDISABLE_WERROR=y
+
+ifeq ($(BR2_PACKAGE_LIBSIGROKDECODE),y)
+PULSEVIEW_CONF_OPTS += -DENABLE_DECODE=TRUE
+PULSEVIEW_DEPENDENCIES += libsigrokdecode
+else
+PULSEVIEW_CONF_OPTS += -DENABLE_DECODE=FALSE
+endif
+
+$(eval $(cmake-package))
-- 
2.1.4

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

* [Buildroot] [RESEND PATCH] pulseview: new package
  2015-03-02 13:54 [Buildroot] [RESEND PATCH] pulseview: new package Bartosz Golaszewski
@ 2015-03-06 10:16 ` Bartosz Golaszewski
  2015-03-06 11:09   ` Thomas Petazzoni
  0 siblings, 1 reply; 3+ messages in thread
From: Bartosz Golaszewski @ 2015-03-06 10:16 UTC (permalink / raw)
  To: buildroot

2015-03-02 14:54 GMT+01:00 Bartosz Golaszewski <bgolaszewski@baylibre.com>:
> Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
> ---
>  package/Config.in              |  1 +
>  package/pulseview/Config.in    | 28 ++++++++++++++++++++++++++++
>  package/pulseview/pulseview.mk | 24 ++++++++++++++++++++++++
>  3 files changed, 53 insertions(+)
>  create mode 100644 package/pulseview/Config.in
>  create mode 100644 package/pulseview/pulseview.mk
>
> diff --git a/package/Config.in b/package/Config.in
> index 3aa664a..c160f5f 100644
> --- a/package/Config.in
> +++ b/package/Config.in
> @@ -362,6 +362,7 @@ endif
>         source "package/picocom/Config.in"
>         source "package/pifmrds/Config.in"
>         source "package/pps-tools/Config.in"
> +       source "package/pulseview/Config.in"
>         source "package/read-edid/Config.in"
>         source "package/rng-tools/Config.in"
>         source "package/rpi-userland/Config.in"
> diff --git a/package/pulseview/Config.in b/package/pulseview/Config.in
> new file mode 100644
> index 0000000..4428db7
> --- /dev/null
> +++ b/package/pulseview/Config.in
> @@ -0,0 +1,28 @@
> +config BR2_PACKAGE_PULSEVIEW
> +       bool "pulseview"
> +       select BR2_PACKAGE_LIBSERIALPORT
> +       select BR2_PACKAGE_LIBSIGROK
> +       select BR2_PACKAGE_LIBSIGROKCXX
> +       depends on BR2_PACKAGE_QT5
> +       select BR2_PACKAGE_QT5BASE_WIDGETS
> +       select BR2_PACKAGE_QT5SVG
> +       select BR2_PACKAGE_BOOST
> +       select BR2_PACKAGE_BOOST_FILESYSTEM
> +       select BR2_PACKAGE_BOOST_SYSTEM
> +       select BR2_PACKAGE_BOOST_THREAD
> +       # libsigrok->libglib2:
> +       depends on BR2_USE_WCHAR
> +       depends on BR2_TOOLCHAIN_HAS_THREADS
> +       depends on BR2_USE_MMU
> +       depends on BR2_TOOLCHAIN_BUILDROOT_CXX
> +       help
> +         PulseView is a Qt based logic analyzer, oscilloscope
> +         and MSO GUI for sigrok.
> +
> +         http://sigrok.org/wiki/PulseView
> +
> +comment "pulseview needs a toolchain w/ wchar, threads, C++"
> +       depends on BR2_USE_MMU
> +       depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
> +       depends on !BR2_PACKAGE_QT5
> +       depends on !BR2_TOOLCHAIN_BUILDROOT_CXX
> diff --git a/package/pulseview/pulseview.mk b/package/pulseview/pulseview.mk
> new file mode 100644
> index 0000000..923459d
> --- /dev/null
> +++ b/package/pulseview/pulseview.mk
> @@ -0,0 +1,24 @@
> +################################################################################
> +#
> +# pulseview
> +#
> +################################################################################
> +
> +# TODO Pulseview can be built and linked against Qt4 as well.
> +
> +# No https access on upstream git
> +PULSEVIEW_SITE = git://sigrok.org/pulseview
> +PULSEVIEW_VERSION = 19be0af16af83ca10f7ce69cb64f0b0c6f6a0d81
> +PULSEVIEW_LICENSE = GPLv3+
> +PULSEVIEW_LICENSE_FILES = COPYING
> +PULSEVIEW_DEPENDENCIES = libsigrok qt5base qt5svg boost
> +PULSEVIEW_CONF_OPTS = -DDISABLE_WERROR=y
> +
> +ifeq ($(BR2_PACKAGE_LIBSIGROKDECODE),y)
> +PULSEVIEW_CONF_OPTS += -DENABLE_DECODE=TRUE
> +PULSEVIEW_DEPENDENCIES += libsigrokdecode
> +else
> +PULSEVIEW_CONF_OPTS += -DENABLE_DECODE=FALSE
> +endif
> +
> +$(eval $(cmake-package))
> --
> 2.1.4
>

Just a friendly ping as this patch seems to have been forgotten.

Best regards,
Bartosz Golaszewski

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

* [Buildroot] [RESEND PATCH] pulseview: new package
  2015-03-06 10:16 ` Bartosz Golaszewski
@ 2015-03-06 11:09   ` Thomas Petazzoni
  0 siblings, 0 replies; 3+ messages in thread
From: Thomas Petazzoni @ 2015-03-06 11:09 UTC (permalink / raw)
  To: buildroot

Dear Bartosz Golaszewski,

On Fri, 6 Mar 2015 11:16:31 +0100, Bartosz Golaszewski wrote:

> Just a friendly ping as this patch seems to have been forgotten.

No, it has not been forgotten at all, don't worry. We have a patch
tracker at http://patchwork.ozlabs.org/project/buildroot/list/, so we
cannot forget patches.

However, as you can see this list is huge: more than 300 patches are
currently waiting to be merged. And the reason is that not enough
people are testing/reviewing patches from other people. See my e-mail
at http://lists.busybox.net/pipermail/buildroot/2015-March/120873.html.

So in the end, if you want your patch to be merged faster, review
and test patches from others :-)

Thanks a lot!

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

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

end of thread, other threads:[~2015-03-06 11:09 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-03-02 13:54 [Buildroot] [RESEND PATCH] pulseview: new package Bartosz Golaszewski
2015-03-06 10:16 ` Bartosz Golaszewski
2015-03-06 11:09   ` Thomas Petazzoni

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox