All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH -perfbook 1/2] Remove empty .eps files under CodeSamples/SMPdesign/date/hps.2020.03.30a/
@ 2020-11-30 12:03 Akira Yokosawa
  2020-11-30 12:04 ` [PATCH -perfbook 2/2] Makefile: Extend wildcard pattern to catch .eps files under CodeSamples Akira Yokosawa
  0 siblings, 1 reply; 3+ messages in thread
From: Akira Yokosawa @ 2020-11-30 12:03 UTC (permalink / raw)
  To: Paul E. McKenney; +Cc: perfbook, Akira Yokosawa

From 029206953ee20a24908e0a29c2dd60a785aa9b99 Mon Sep 17 00:00:00 2001
From: Akira Yokosawa <akiyks@gmail.com>
Date: Mon, 30 Nov 2020 20:11:03 +0900
Subject: [PATCH -perfbook 1/2] Remove empty .eps files under CodeSamples/SMPdesign/date/hps.2020.03.30a/

These files cause errors if "eps to pdf" target list in Makefile is
extended.
As they are empty, they are safe to be removed.

Signed-off-by: Akira Yokosawa <akiyks@gmail.com>
---
 CodeSamples/SMPdesign/data/hps.2020.03.30a/CPUvsEnet.eps   | 0
 CodeSamples/SMPdesign/data/hps.2020.03.30a/clockfreq.eps   | 0
 CodeSamples/SMPdesign/data/hps.2020.03.30a/mipsperbuck.eps | 0
 3 files changed, 0 insertions(+), 0 deletions(-)
 delete mode 100644 CodeSamples/SMPdesign/data/hps.2020.03.30a/CPUvsEnet.eps
 delete mode 100644 CodeSamples/SMPdesign/data/hps.2020.03.30a/clockfreq.eps
 delete mode 100644 CodeSamples/SMPdesign/data/hps.2020.03.30a/mipsperbuck.eps

diff --git a/CodeSamples/SMPdesign/data/hps.2020.03.30a/CPUvsEnet.eps b/CodeSamples/SMPdesign/data/hps.2020.03.30a/CPUvsEnet.eps
deleted file mode 100644
index e69de29b..00000000
diff --git a/CodeSamples/SMPdesign/data/hps.2020.03.30a/clockfreq.eps b/CodeSamples/SMPdesign/data/hps.2020.03.30a/clockfreq.eps
deleted file mode 100644
index e69de29b..00000000
diff --git a/CodeSamples/SMPdesign/data/hps.2020.03.30a/mipsperbuck.eps b/CodeSamples/SMPdesign/data/hps.2020.03.30a/mipsperbuck.eps
deleted file mode 100644
index e69de29b..00000000
-- 
2.17.1


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

* [PATCH -perfbook 2/2] Makefile: Extend wildcard pattern to catch .eps files under CodeSamples
  2020-11-30 12:03 [PATCH -perfbook 1/2] Remove empty .eps files under CodeSamples/SMPdesign/date/hps.2020.03.30a/ Akira Yokosawa
@ 2020-11-30 12:04 ` Akira Yokosawa
  2020-11-30 16:23   ` Paul E. McKenney
  0 siblings, 1 reply; 3+ messages in thread
From: Akira Yokosawa @ 2020-11-30 12:04 UTC (permalink / raw)
  To: Paul E. McKenney; +Cc: perfbook, Akira Yokosawa

From 8306e360c789e4063f027c2862658764a2f531be Mon Sep 17 00:00:00 2001
From: Akira Yokosawa <akiyks@gmail.com>
Date: Mon, 30 Nov 2020 20:14:16 +0900
Subject: [PATCH -perfbook 2/2] Makefile: Extend wildcard pattern to catch .eps files under CodeSamples

Some of the files have not been bounding-box adjusted for some time.

Signed-off-by: Akira Yokosawa <akiyks@gmail.com>
---
 Makefile | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/Makefile b/Makefile
index 07c6616a..56ce62bf 100644
--- a/Makefile
+++ b/Makefile
@@ -55,6 +55,9 @@ OBSOLETE_FILES = extraction $(FAKE_EPS_FROM_SVG) CodeSamples/snippets.mk
 EPSSOURCES_DUP := \
 	$(wildcard */*.eps) \
 	$(wildcard */*/*.eps) \
+	$(wildcard */*/*/*.eps) \
+	$(wildcard */*/*/*/*.eps) \
+	$(wildcard */*/*/*/*/*.eps) \
 	$(EPSSOURCES_FROM_TEX) \
 	$(EPSSOURCES_FROM_DOT) \
 	$(EPSSOURCES_FROM_FIG)
-- 
2.17.1



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

* Re: [PATCH -perfbook 2/2] Makefile: Extend wildcard pattern to catch .eps files under CodeSamples
  2020-11-30 12:04 ` [PATCH -perfbook 2/2] Makefile: Extend wildcard pattern to catch .eps files under CodeSamples Akira Yokosawa
@ 2020-11-30 16:23   ` Paul E. McKenney
  0 siblings, 0 replies; 3+ messages in thread
From: Paul E. McKenney @ 2020-11-30 16:23 UTC (permalink / raw)
  To: Akira Yokosawa; +Cc: perfbook

On Mon, Nov 30, 2020 at 09:04:04PM +0900, Akira Yokosawa wrote:
> >From 8306e360c789e4063f027c2862658764a2f531be Mon Sep 17 00:00:00 2001
> From: Akira Yokosawa <akiyks@gmail.com>
> Date: Mon, 30 Nov 2020 20:14:16 +0900
> Subject: [PATCH -perfbook 2/2] Makefile: Extend wildcard pattern to catch .eps files under CodeSamples
> 
> Some of the files have not been bounding-box adjusted for some time.
> 
> Signed-off-by: Akira Yokosawa <akiyks@gmail.com>

Queued and pushed both, thank you!  I also queued another commit that
removes the explicit piping through gnuplotepsfix from the new plots.sh.
I knew that this was supposed to be converted implicitly somehow, but
took the easy way out.  ;-)

							Thanx, Paul

> ---
>  Makefile | 3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/Makefile b/Makefile
> index 07c6616a..56ce62bf 100644
> --- a/Makefile
> +++ b/Makefile
> @@ -55,6 +55,9 @@ OBSOLETE_FILES = extraction $(FAKE_EPS_FROM_SVG) CodeSamples/snippets.mk
>  EPSSOURCES_DUP := \
>  	$(wildcard */*.eps) \
>  	$(wildcard */*/*.eps) \
> +	$(wildcard */*/*/*.eps) \
> +	$(wildcard */*/*/*/*.eps) \
> +	$(wildcard */*/*/*/*/*.eps) \
>  	$(EPSSOURCES_FROM_TEX) \
>  	$(EPSSOURCES_FROM_DOT) \
>  	$(EPSSOURCES_FROM_FIG)
> -- 
> 2.17.1
> 
> 

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

end of thread, other threads:[~2020-11-30 16:24 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-30 12:03 [PATCH -perfbook 1/2] Remove empty .eps files under CodeSamples/SMPdesign/date/hps.2020.03.30a/ Akira Yokosawa
2020-11-30 12:04 ` [PATCH -perfbook 2/2] Makefile: Extend wildcard pattern to catch .eps files under CodeSamples Akira Yokosawa
2020-11-30 16:23   ` Paul E. McKenney

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.