Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/4] taskd: move to Miscellaneous menu
@ 2016-03-13 23:00 Arnout Vandecappelle
  2016-03-13 23:00 ` [Buildroot] [PATCH 2/4] taskd: needs C++ Arnout Vandecappelle
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Arnout Vandecappelle @ 2016-03-13 23:00 UTC (permalink / raw)
  To: buildroot

It's not really a networking tool (if everything that does something on
the network would be called a networking tool, we wouldn't have much
else).

Since we don't really have an appropriate menu for it, put it in
Miscellaneous.

Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
---
 package/Config.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/Config.in b/package/Config.in
index 35a24ba..99ee0c2 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -1315,6 +1315,7 @@ menu "Miscellaneous"
 	source "package/qpdf/Config.in"
 	source "package/shared-mime-info/Config.in"
 	source "package/snowball-init/Config.in"
+	source "package/taskd/Config.in"
 	source "package/wine/Config.in"
 	source "package/xutil_util-macros/Config.in"
 endmenu
@@ -1489,7 +1490,6 @@ endif
 	source "package/sshpass/Config.in"
 	source "package/strongswan/Config.in"
 	source "package/stunnel/Config.in"
-	source "package/taskd/Config.in"
 	source "package/tcpdump/Config.in"
 	source "package/tcping/Config.in"
 	source "package/tcpreplay/Config.in"
-- 
2.7.0

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

* [Buildroot] [PATCH 2/4] taskd: needs C++
  2016-03-13 23:00 [Buildroot] [PATCH 1/4] taskd: move to Miscellaneous menu Arnout Vandecappelle
@ 2016-03-13 23:00 ` Arnout Vandecappelle
  2016-03-13 23:00 ` [Buildroot] [PATCH 3/4] taskd: remove redundant _SOURCE definition Arnout Vandecappelle
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Arnout Vandecappelle @ 2016-03-13 23:00 UTC (permalink / raw)
  To: buildroot

It's all C++ code... C++11 even, but it turns out to compile fine even
with gcc-4.5 (Arago toolchain).

Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
---
 package/taskd/Config.in | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/package/taskd/Config.in b/package/taskd/Config.in
index 2836161..7a9a136 100644
--- a/package/taskd/Config.in
+++ b/package/taskd/Config.in
@@ -2,6 +2,7 @@ config BR2_PACKAGE_TASKD
 	bool "taskd"
 	depends on BR2_USE_WCHAR # gnutls, util-linux
 	depends on BR2_USE_MMU # fork()
+	depends on BR2_INSTALL_LIBSTDCPP
 	select BR2_PACKAGE_GNUTLS
 	select BR2_PACKAGE_UTIL_LINUX
 	select BR2_PACKAGE_UTIL_LINUX_LIBUUID
@@ -10,6 +11,6 @@ config BR2_PACKAGE_TASKD
 
 	  http://taskwarrior.org/
 
-comment "taskd needs a toolchain w/ wchar"
+comment "taskd needs a toolchain w/ C++, wchar"
 	depends on BR2_USE_MMU
-	depends on !BR2_USE_WCHAR
+	depends on !BR2_USE_WCHAR || !BR2_INSTALL_LIBSTDCPP
-- 
2.7.0

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

* [Buildroot] [PATCH 3/4] taskd: remove redundant _SOURCE definition
  2016-03-13 23:00 [Buildroot] [PATCH 1/4] taskd: move to Miscellaneous menu Arnout Vandecappelle
  2016-03-13 23:00 ` [Buildroot] [PATCH 2/4] taskd: needs C++ Arnout Vandecappelle
@ 2016-03-13 23:00 ` Arnout Vandecappelle
  2016-03-13 23:00 ` [Buildroot] [PATCH 4/4] taskd: include only one license file Arnout Vandecappelle
  2016-03-14 22:45 ` [Buildroot] [PATCH 1/4] taskd: move to Miscellaneous menu Thomas Petazzoni
  3 siblings, 0 replies; 5+ messages in thread
From: Arnout Vandecappelle @ 2016-03-13 23:00 UTC (permalink / raw)
  To: buildroot

.tar.gz is the default.

Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
---
 package/taskd/taskd.mk | 1 -
 1 file changed, 1 deletion(-)

diff --git a/package/taskd/taskd.mk b/package/taskd/taskd.mk
index 0bdf81d..65713d2 100644
--- a/package/taskd/taskd.mk
+++ b/package/taskd/taskd.mk
@@ -5,7 +5,6 @@
 ################################################################################
 
 TASKD_VERSION = 1.1.0
-TASKD_SOURCE = taskd-$(TASKD_VERSION).tar.gz
 TASKD_SITE = http://taskwarrior.org/download
 TASKD_LICENSE = MIT
 TASKD_LICENSE_FILES = COPYING LICENSE
-- 
2.7.0

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

* [Buildroot] [PATCH 4/4] taskd: include only one license file
  2016-03-13 23:00 [Buildroot] [PATCH 1/4] taskd: move to Miscellaneous menu Arnout Vandecappelle
  2016-03-13 23:00 ` [Buildroot] [PATCH 2/4] taskd: needs C++ Arnout Vandecappelle
  2016-03-13 23:00 ` [Buildroot] [PATCH 3/4] taskd: remove redundant _SOURCE definition Arnout Vandecappelle
@ 2016-03-13 23:00 ` Arnout Vandecappelle
  2016-03-14 22:45 ` [Buildroot] [PATCH 1/4] taskd: move to Miscellaneous menu Thomas Petazzoni
  3 siblings, 0 replies; 5+ messages in thread
From: Arnout Vandecappelle @ 2016-03-13 23:00 UTC (permalink / raw)
  To: buildroot

COPYING and LICENSE are identical, so no point including them both.

Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
---
 package/taskd/taskd.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/taskd/taskd.mk b/package/taskd/taskd.mk
index 65713d2..34a260e 100644
--- a/package/taskd/taskd.mk
+++ b/package/taskd/taskd.mk
@@ -7,7 +7,7 @@
 TASKD_VERSION = 1.1.0
 TASKD_SITE = http://taskwarrior.org/download
 TASKD_LICENSE = MIT
-TASKD_LICENSE_FILES = COPYING LICENSE
+TASKD_LICENSE_FILES = COPYING
 TASKD_DEPENDENCIES = gnutls util-linux
 
 $(eval $(cmake-package))
-- 
2.7.0

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

* [Buildroot] [PATCH 1/4] taskd: move to Miscellaneous menu
  2016-03-13 23:00 [Buildroot] [PATCH 1/4] taskd: move to Miscellaneous menu Arnout Vandecappelle
                   ` (2 preceding siblings ...)
  2016-03-13 23:00 ` [Buildroot] [PATCH 4/4] taskd: include only one license file Arnout Vandecappelle
@ 2016-03-14 22:45 ` Thomas Petazzoni
  3 siblings, 0 replies; 5+ messages in thread
From: Thomas Petazzoni @ 2016-03-14 22:45 UTC (permalink / raw)
  To: buildroot

Dear Arnout Vandecappelle (Essensium/Mind),

On Mon, 14 Mar 2016 00:00:05 +0100, Arnout Vandecappelle
(Essensium/Mind) wrote:
> It's not really a networking tool (if everything that does something on
> the network would be called a networking tool, we wouldn't have much
> else).
> 
> Since we don't really have an appropriate menu for it, put it in
> Miscellaneous.
> 
> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
> ---
>  package/Config.in | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

All four patches applied to master, thanks.

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

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

end of thread, other threads:[~2016-03-14 22:45 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-03-13 23:00 [Buildroot] [PATCH 1/4] taskd: move to Miscellaneous menu Arnout Vandecappelle
2016-03-13 23:00 ` [Buildroot] [PATCH 2/4] taskd: needs C++ Arnout Vandecappelle
2016-03-13 23:00 ` [Buildroot] [PATCH 3/4] taskd: remove redundant _SOURCE definition Arnout Vandecappelle
2016-03-13 23:00 ` [Buildroot] [PATCH 4/4] taskd: include only one license file Arnout Vandecappelle
2016-03-14 22:45 ` [Buildroot] [PATCH 1/4] taskd: move to Miscellaneous menu Thomas Petazzoni

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