All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/4] flot: bump to version 0.8
@ 2013-04-12 12:15 Gustavo Zacarias
  2013-04-12 12:15 ` [Buildroot] [PATCH 2/4] jquery-sparkline: bump to version 2.1.1 Gustavo Zacarias
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Gustavo Zacarias @ 2013-04-12 12:15 UTC (permalink / raw)
  To: buildroot

Also change upstream website and download URL and add new Canvas option.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/flot/Config.in | 7 ++++++-
 package/flot/flot.mk   | 7 +++++--
 2 files changed, 11 insertions(+), 3 deletions(-)

diff --git a/package/flot/Config.in b/package/flot/Config.in
index 0bd6b14..90a4278 100644
--- a/package/flot/Config.in
+++ b/package/flot/Config.in
@@ -14,12 +14,17 @@ config BR2_PACKAGE_FLOT
 	  Safari 3.0+, Opera 9.5+ and Konqueror 4.x+ with the HTML
 	  canvas tag.
 
-	  https://code.google.com/p/flot/
+	  http://www.flotcharts.org/
 
 if BR2_PACKAGE_FLOT
 
 comment "flot plugins"
 
+config BR2_PACKAGE_FLOT_CANVAS
+	bool "canvas"
+	help
+	  Flot plugin to render axis tick labels directly to the canvas
+
 config BR2_PACKAGE_FLOT_FILLBETWEEN
 	bool "fillbetween"
 	help
diff --git a/package/flot/flot.mk b/package/flot/flot.mk
index 41f5a42..97110bc 100644
--- a/package/flot/flot.mk
+++ b/package/flot/flot.mk
@@ -1,6 +1,9 @@
-FLOT_VERSION = 0.7
-FLOT_SITE = http://flot.googlecode.com/files
+FLOT_VERSION = 0.8.0
+FLOT_SITE = http://www.flotcharts.org/downloads
+FLOT_LICENSE = MIT
+FLOT_LICENSE_FILES = LICENSE.txt
 FLOT_FILES = jquery.flot $(addprefix jquery.flot.,\
+	$(if $(BR2_PACKAGE_FLOT_CANVAS),canvas) \
 	$(if $(BR2_PACKAGE_FLOT_FILLBETWEEN),fillbetween) \
 	$(if $(BR2_PACKAGE_FLOT_NAVIGATE),navigate) \
 	$(if $(BR2_PACKAGE_FLOT_PIE),pie) \
-- 
1.8.1.5

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

* [Buildroot] [PATCH 2/4] jquery-sparkline: bump to version 2.1.1
  2013-04-12 12:15 [Buildroot] [PATCH 1/4] flot: bump to version 0.8 Gustavo Zacarias
@ 2013-04-12 12:15 ` Gustavo Zacarias
  2013-04-12 12:15 ` [Buildroot] [PATCH 3/4] jquery-validation: bump to version 1.11.1 Gustavo Zacarias
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Gustavo Zacarias @ 2013-04-12 12:15 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/jquery-sparkline/jquery-sparkline.mk | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/package/jquery-sparkline/jquery-sparkline.mk b/package/jquery-sparkline/jquery-sparkline.mk
index 76adad6..aa6395c 100644
--- a/package/jquery-sparkline/jquery-sparkline.mk
+++ b/package/jquery-sparkline/jquery-sparkline.mk
@@ -1,6 +1,7 @@
-JQUERY_SPARKLINE_VERSION = 2.1
+JQUERY_SPARKLINE_VERSION = 2.1.1
 JQUERY_SPARKLINE_SITE = http://www.omnipotent.net/jquery.sparkline/$(JQUERY_SPARKLINE_VERSION)
 JQUERY_SPARKLINE_SOURCE = jquery.sparkline.min.js
+JQUERY_SPARKLINE_LICENSE = BSD-3c
 
 define JQUERY_SPARKLINE_EXTRACT_CMDS
 	cp $(DL_DIR)/$(JQUERY_SPARKLINE_SOURCE) $(@D)
-- 
1.8.1.5

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

* [Buildroot] [PATCH 3/4] jquery-validation: bump to version 1.11.1
  2013-04-12 12:15 [Buildroot] [PATCH 1/4] flot: bump to version 0.8 Gustavo Zacarias
  2013-04-12 12:15 ` [Buildroot] [PATCH 2/4] jquery-sparkline: bump to version 2.1.1 Gustavo Zacarias
@ 2013-04-12 12:15 ` Gustavo Zacarias
  2013-04-12 12:15 ` [Buildroot] [PATCH 4/4] jquery: bump to version 1.9.1 Gustavo Zacarias
  2013-04-12 12:38 ` [Buildroot] [PATCH 1/4] flot: bump to version 0.8 Peter Korsgaard
  3 siblings, 0 replies; 5+ messages in thread
From: Gustavo Zacarias @ 2013-04-12 12:15 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/jquery-validation/jquery-validation.mk | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/package/jquery-validation/jquery-validation.mk b/package/jquery-validation/jquery-validation.mk
index 746b534..423d7f1 100644
--- a/package/jquery-validation/jquery-validation.mk
+++ b/package/jquery-validation/jquery-validation.mk
@@ -1,6 +1,7 @@
-JQUERY_VALIDATION_VERSION = 1.10.0
+JQUERY_VALIDATION_VERSION = 1.11.1
 JQUERY_VALIDATION_SITE = http://jquery.bassistance.de/validate
 JQUERY_VALIDATION_SOURCE = jquery-validation-$(JQUERY_VALIDATION_VERSION).zip
+JQUERY_VALIDATION_LICENSE = MIT
 
 define JQUERY_VALIDATION_EXTRACT_CMDS
 	unzip -d $(@D) $(DL_DIR)/$(JQUERY_VALIDATION_SOURCE)
-- 
1.8.1.5

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

* [Buildroot] [PATCH 4/4] jquery: bump to version 1.9.1
  2013-04-12 12:15 [Buildroot] [PATCH 1/4] flot: bump to version 0.8 Gustavo Zacarias
  2013-04-12 12:15 ` [Buildroot] [PATCH 2/4] jquery-sparkline: bump to version 2.1.1 Gustavo Zacarias
  2013-04-12 12:15 ` [Buildroot] [PATCH 3/4] jquery-validation: bump to version 1.11.1 Gustavo Zacarias
@ 2013-04-12 12:15 ` Gustavo Zacarias
  2013-04-12 12:38 ` [Buildroot] [PATCH 1/4] flot: bump to version 0.8 Peter Korsgaard
  3 siblings, 0 replies; 5+ messages in thread
From: Gustavo Zacarias @ 2013-04-12 12:15 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/jquery/jquery.mk | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/package/jquery/jquery.mk b/package/jquery/jquery.mk
index 871f7a0..4df2801 100644
--- a/package/jquery/jquery.mk
+++ b/package/jquery/jquery.mk
@@ -1,6 +1,7 @@
-JQUERY_VERSION = 1.8.3
+JQUERY_VERSION = 1.9.1
 JQUERY_SITE = http://code.jquery.com
 JQUERY_SOURCE = jquery-$(JQUERY_VERSION).min.js
+JQUERY_LICENSE = MIT
 
 define JQUERY_EXTRACT_CMDS
 	cp $(DL_DIR)/$(JQUERY_SOURCE) $(@D)
-- 
1.8.1.5

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

* [Buildroot] [PATCH 1/4] flot: bump to version 0.8
  2013-04-12 12:15 [Buildroot] [PATCH 1/4] flot: bump to version 0.8 Gustavo Zacarias
                   ` (2 preceding siblings ...)
  2013-04-12 12:15 ` [Buildroot] [PATCH 4/4] jquery: bump to version 1.9.1 Gustavo Zacarias
@ 2013-04-12 12:38 ` Peter Korsgaard
  3 siblings, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2013-04-12 12:38 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 Gustavo> Also change upstream website and download URL and add new
 Gustavo> Canvas option.

Committed series, thanks.

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2013-04-12 12:38 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-04-12 12:15 [Buildroot] [PATCH 1/4] flot: bump to version 0.8 Gustavo Zacarias
2013-04-12 12:15 ` [Buildroot] [PATCH 2/4] jquery-sparkline: bump to version 2.1.1 Gustavo Zacarias
2013-04-12 12:15 ` [Buildroot] [PATCH 3/4] jquery-validation: bump to version 1.11.1 Gustavo Zacarias
2013-04-12 12:15 ` [Buildroot] [PATCH 4/4] jquery: bump to version 1.9.1 Gustavo Zacarias
2013-04-12 12:38 ` [Buildroot] [PATCH 1/4] flot: bump to version 0.8 Peter Korsgaard

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.