Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH/next 1/2] trace-cmd: fix site
@ 2018-11-10 17:48 Fabrice Fontaine
  2018-11-10 17:48 ` [Buildroot] [PATCH/next 2/2] trace-cmd: bump to version 2.7 Fabrice Fontaine
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Fabrice Fontaine @ 2018-11-10 17:48 UTC (permalink / raw)
  To: buildroot

Replace $(BR2_KERNEL_MIRROR) by https://git.kernel.org/pub

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/trace-cmd/trace-cmd.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/trace-cmd/trace-cmd.mk b/package/trace-cmd/trace-cmd.mk
index 0dc145674f..578e9f124f 100644
--- a/package/trace-cmd/trace-cmd.mk
+++ b/package/trace-cmd/trace-cmd.mk
@@ -5,7 +5,7 @@
 ################################################################################
 
 TRACE_CMD_VERSION = trace-cmd-v2.6.1
-TRACE_CMD_SITE = $(BR2_KERNEL_MIRROR)/scm/linux/kernel/git/rostedt/trace-cmd.git
+TRACE_CMD_SITE = https://git.kernel.org/pub/scm/linux/kernel/git/rostedt/trace-cmd.git
 TRACE_CMD_SITE_METHOD = git
 TRACE_CMD_INSTALL_STAGING = YES
 TRACE_CMD_LICENSE = GPL-2.0, LGPL-2.1
-- 
2.17.1

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

* [Buildroot] [PATCH/next 2/2] trace-cmd: bump to version 2.7
  2018-11-10 17:48 [Buildroot] [PATCH/next 1/2] trace-cmd: fix site Fabrice Fontaine
@ 2018-11-10 17:48 ` Fabrice Fontaine
  2018-11-11 20:22   ` Thomas Petazzoni
  2018-11-11 20:21 ` [Buildroot] [PATCH/next 1/2] trace-cmd: fix site Thomas Petazzoni
  2018-11-25 22:20 ` Peter Korsgaard
  2 siblings, 1 reply; 5+ messages in thread
From: Fabrice Fontaine @ 2018-11-10 17:48 UTC (permalink / raw)
  To: buildroot

Add hash for license files

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/trace-cmd/trace-cmd.hash | 4 +++-
 package/trace-cmd/trace-cmd.mk   | 2 +-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/package/trace-cmd/trace-cmd.hash b/package/trace-cmd/trace-cmd.hash
index 5bf4154bd0..c6447f34d4 100644
--- a/package/trace-cmd/trace-cmd.hash
+++ b/package/trace-cmd/trace-cmd.hash
@@ -1,2 +1,4 @@
 # Locally computed
-sha256 f088534808274f6233fe15130791238fb14ce9bf6e7234f9b3fe6b5a42a1245d  trace-cmd-trace-cmd-v2.6.1.tar.gz
+sha256 3b3f564cc6ee30341051ccb7589b42f3abe4e676a21c029c7c127c7edf5bdcf0  trace-cmd-trace-cmd-v2.7.tar.gz
+sha256 ab15fd526bd8dd18a9e77ebc139656bf4d33e97fc7238cd11bf60e2b9b8666c6  COPYING
+sha256 70f297763149e72306919c924e164f83041d5e512868d4c8c1826c171b3e49f9  COPYING.LIB
diff --git a/package/trace-cmd/trace-cmd.mk b/package/trace-cmd/trace-cmd.mk
index 578e9f124f..dfca6a170d 100644
--- a/package/trace-cmd/trace-cmd.mk
+++ b/package/trace-cmd/trace-cmd.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-TRACE_CMD_VERSION = trace-cmd-v2.6.1
+TRACE_CMD_VERSION = trace-cmd-v2.7
 TRACE_CMD_SITE = https://git.kernel.org/pub/scm/linux/kernel/git/rostedt/trace-cmd.git
 TRACE_CMD_SITE_METHOD = git
 TRACE_CMD_INSTALL_STAGING = YES
-- 
2.17.1

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

* [Buildroot] [PATCH/next 1/2] trace-cmd: fix site
  2018-11-10 17:48 [Buildroot] [PATCH/next 1/2] trace-cmd: fix site Fabrice Fontaine
  2018-11-10 17:48 ` [Buildroot] [PATCH/next 2/2] trace-cmd: bump to version 2.7 Fabrice Fontaine
@ 2018-11-11 20:21 ` Thomas Petazzoni
  2018-11-25 22:20 ` Peter Korsgaard
  2 siblings, 0 replies; 5+ messages in thread
From: Thomas Petazzoni @ 2018-11-11 20:21 UTC (permalink / raw)
  To: buildroot

Hello,

On Sat, 10 Nov 2018 18:48:46 +0100, Fabrice Fontaine wrote:
> Replace $(BR2_KERNEL_MIRROR) by https://git.kernel.org/pub
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
>  package/trace-cmd/trace-cmd.mk | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

You targeted this patch for the next branch, but it fixes an actual
problem affecting the master branch, so I've applied to master instead.
Thanks!

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

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

* [Buildroot] [PATCH/next 2/2] trace-cmd: bump to version 2.7
  2018-11-10 17:48 ` [Buildroot] [PATCH/next 2/2] trace-cmd: bump to version 2.7 Fabrice Fontaine
@ 2018-11-11 20:22   ` Thomas Petazzoni
  0 siblings, 0 replies; 5+ messages in thread
From: Thomas Petazzoni @ 2018-11-11 20:22 UTC (permalink / raw)
  To: buildroot

Hello,

On Sat, 10 Nov 2018 18:48:47 +0100, Fabrice Fontaine wrote:
> Add hash for license files
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
>  package/trace-cmd/trace-cmd.hash | 4 +++-
>  package/trace-cmd/trace-cmd.mk   | 2 +-
>  2 files changed, 4 insertions(+), 2 deletions(-)

Applied to next, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

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

* [Buildroot] [PATCH/next 1/2] trace-cmd: fix site
  2018-11-10 17:48 [Buildroot] [PATCH/next 1/2] trace-cmd: fix site Fabrice Fontaine
  2018-11-10 17:48 ` [Buildroot] [PATCH/next 2/2] trace-cmd: bump to version 2.7 Fabrice Fontaine
  2018-11-11 20:21 ` [Buildroot] [PATCH/next 1/2] trace-cmd: fix site Thomas Petazzoni
@ 2018-11-25 22:20 ` Peter Korsgaard
  2 siblings, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2018-11-25 22:20 UTC (permalink / raw)
  To: buildroot

>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:

 > Replace $(BR2_KERNEL_MIRROR) by https://git.kernel.org/pub
 > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Committed to 2018.02.x and 2018.08.x, thanks.

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2018-11-25 22:20 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-11-10 17:48 [Buildroot] [PATCH/next 1/2] trace-cmd: fix site Fabrice Fontaine
2018-11-10 17:48 ` [Buildroot] [PATCH/next 2/2] trace-cmd: bump to version 2.7 Fabrice Fontaine
2018-11-11 20:22   ` Thomas Petazzoni
2018-11-11 20:21 ` [Buildroot] [PATCH/next 1/2] trace-cmd: fix site Thomas Petazzoni
2018-11-25 22:20 ` Peter Korsgaard

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