mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
* [ptxdist] [PATCH 0/2] update CAN related programs
@ 2012-11-06 21:17 Marc Kleine-Budde
  2012-11-06 21:17 ` [ptxdist] [PATCH 1/2] libsocketcan: version bump to 0.0.9 Marc Kleine-Budde
  2012-11-06 21:17 ` [ptxdist] [PATCH 2/2] canutils: hardcode version 4.0.6 Marc Kleine-Budde
  0 siblings, 2 replies; 3+ messages in thread
From: Marc Kleine-Budde @ 2012-11-06 21:17 UTC (permalink / raw)
  To: ptxdist

Hello,

I've just released libsocketcan-0.0.9, so bump the lib's version in ptxdist
accordingly. The second patch removes the configuable version form canutils.
The v3.x version of canutils is for pre mainline socketcan, so remove it and
reduce complexity.

regards, Marc


-- 
ptxdist mailing list
ptxdist@pengutronix.de

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

* [ptxdist] [PATCH 1/2] libsocketcan: version bump to 0.0.9
  2012-11-06 21:17 [ptxdist] [PATCH 0/2] update CAN related programs Marc Kleine-Budde
@ 2012-11-06 21:17 ` Marc Kleine-Budde
  2012-11-06 21:17 ` [ptxdist] [PATCH 2/2] canutils: hardcode version 4.0.6 Marc Kleine-Budde
  1 sibling, 0 replies; 3+ messages in thread
From: Marc Kleine-Budde @ 2012-11-06 21:17 UTC (permalink / raw)
  To: ptxdist; +Cc: Marc Kleine-Budde

Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
---
 rules/libsocketcan.make |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/rules/libsocketcan.make b/rules/libsocketcan.make
index ed5f20b..45d5bb9 100644
--- a/rules/libsocketcan.make
+++ b/rules/libsocketcan.make
@@ -16,8 +16,8 @@ PACKAGES-$(PTXCONF_LIBSOCKETCAN) += libsocketcan
 #
 # Paths and names
 #
-LIBSOCKETCAN_VERSION	:= 0.0.8
-LIBSOCKETCAN_MD5	:= 7fa608d46553c1e33b6b34cab0a83c00
+LIBSOCKETCAN_VERSION	:= 0.0.9
+LIBSOCKETCAN_MD5	:= cd92766be40d98b5cb08366b71ea4663
 LIBSOCKETCAN		:= libsocketcan-$(LIBSOCKETCAN_VERSION)
 LIBSOCKETCAN_SUFFIX	:= tar.bz2
 LIBSOCKETCAN_URL	:= http://www.pengutronix.de/software/libsocketcan/download/$(LIBSOCKETCAN).$(LIBSOCKETCAN_SUFFIX)
-- 
1.7.10


-- 
ptxdist mailing list
ptxdist@pengutronix.de

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

* [ptxdist] [PATCH 2/2] canutils: hardcode version 4.0.6
  2012-11-06 21:17 [ptxdist] [PATCH 0/2] update CAN related programs Marc Kleine-Budde
  2012-11-06 21:17 ` [ptxdist] [PATCH 1/2] libsocketcan: version bump to 0.0.9 Marc Kleine-Budde
@ 2012-11-06 21:17 ` Marc Kleine-Budde
  1 sibling, 0 replies; 3+ messages in thread
From: Marc Kleine-Budde @ 2012-11-06 21:17 UTC (permalink / raw)
  To: ptxdist; +Cc: Marc Kleine-Budde

Version 3.x is pre mainline socketcan, so drop it and remove complexity.

Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
---
 rules/canutils.in   |   18 +-----------------
 rules/canutils.make |    4 ++--
 2 files changed, 3 insertions(+), 19 deletions(-)

diff --git a/rules/canutils.in b/rules/canutils.in
index b420532..a1b350d 100644
--- a/rules/canutils.in
+++ b/rules/canutils.in
@@ -4,29 +4,13 @@ menuconfig CANUTILS
 	tristate
 	prompt "canutils                      "
 	select KERNEL_HEADER
-	select LIBSOCKETCAN	if CANUTILS_4
+	select LIBSOCKETCAN
 	help
 	  The canutils package contains tools to configure
 	  and test the Socket CAN framework.
 
 if CANUTILS
 
-config CANUTILS_VERSION
-	prompt "Version"
-	string
-	default "4.0.6"
-
-config CANUTILS_MD5
-	prompt "canutils source md5sum"
-	string
-
-config CANUTILS_4
-	bool "canutils version >= 4.0"
-	help
-	  Select this if you're using a canutils version >= 4.0
-
-	  This will enable extra an extra dependency to libsocketcan.
-
 config CANUTILS_CANCONFIG
 	bool
 	prompt "canconfig"
diff --git a/rules/canutils.make b/rules/canutils.make
index 640eaf4..8a112f9 100644
--- a/rules/canutils.make
+++ b/rules/canutils.make
@@ -17,8 +17,8 @@ PACKAGES-$(PTXCONF_CANUTILS) += canutils
 #
 # Paths and names
 #
-CANUTILS_VERSION	:= $(CANUTILS_VERSION)
-CANUTILS_MD5		:= $(call remove_quotes,$(PTXCONF_CANUTILS_MD5))
+CANUTILS_VERSION	:= 4.0.6
+CANUTILS_MD5		:= e9af32bc41da85517b7bfe7de3bb9481
 CANUTILS		:= canutils-$(CANUTILS_VERSION)
 CANUTILS_SUFFIX		:= tar.bz2
 CANUTILS_URL		:= http://www.pengutronix.de/software/socket-can/download/canutils/v$(CANUTILS_VERSION_MAJOR).$(CANUTILS_VERSION_MINOR)/$(CANUTILS).$(CANUTILS_SUFFIX)
-- 
1.7.10


-- 
ptxdist mailing list
ptxdist@pengutronix.de

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

end of thread, other threads:[~2012-11-06 21:17 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-11-06 21:17 [ptxdist] [PATCH 0/2] update CAN related programs Marc Kleine-Budde
2012-11-06 21:17 ` [ptxdist] [PATCH 1/2] libsocketcan: version bump to 0.0.9 Marc Kleine-Budde
2012-11-06 21:17 ` [ptxdist] [PATCH 2/2] canutils: hardcode version 4.0.6 Marc Kleine-Budde

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