[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

gEDA-cvs: pcb.git: branch: master updated (f7ecf831467068f0ba288a0c136f05768893a826)



The branch, master has been updated
       via  f7ecf831467068f0ba288a0c136f05768893a826 (commit)
      from  02a720280796e439015fb0e8257635319ddfaddf (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.


=========
 Summary
=========

 doc/pcb.texi                          |    8 +++-----
 src/hid/bom/bom.c                     |    4 ----
 tests/golden/hid_bom1/bom_general.bom |    1 -
 tests/golden/hid_bom1/bom_general.xy  |    1 -
 tests/golden/hid_bom2/bom_general.xy  |    1 -
 tests/golden/hid_bom2/test.bom        |    1 -
 tests/golden/hid_bom3/bom_general.bom |    1 -
 tests/golden/hid_bom3/test.xy         |    1 -
 tests/golden/hid_bom4/bom_general.bom |    1 -
 tests/golden/hid_bom4/bom_general.xy  |    1 -
 10 files changed, 3 insertions(+), 17 deletions(-)


=================
 Commit Messages
=================

commit f7ecf831467068f0ba288a0c136f05768893a826
Author: Peter Clifton <pcjc2@xxxxxxxxx>
Commit: Peter Clifton <pcjc2@xxxxxxxxx>

    Remove $Id$ lines from bom exporter .xy and .bom output
    
    Modern version control systems don't use this kind of expansion,
    so these lines don't serve much purpose.

:100644 100644 db214a2... 0640fe9... M	doc/pcb.texi
:100644 100644 e67450a... 1835439... M	src/hid/bom/bom.c
:100644 100644 e069ea1... ee15f7b... M	tests/golden/hid_bom1/bom_general.bom
:100644 100644 dfcd7de... c391ac2... M	tests/golden/hid_bom1/bom_general.xy
:100644 100644 c2c9ea2... 56bf534... M	tests/golden/hid_bom2/bom_general.xy
:100644 100644 c2677f5... 895ee5b... M	tests/golden/hid_bom2/test.bom
:100644 100644 c2677f5... 895ee5b... M	tests/golden/hid_bom3/bom_general.bom
:100644 100644 c2c9ea2... 56bf534... M	tests/golden/hid_bom3/test.xy
:100644 100644 bb246f5... b3cc77f... M	tests/golden/hid_bom4/bom_general.bom
:100644 100644 fb1350e... 2933983... M	tests/golden/hid_bom4/bom_general.xy

=========
 Changes
=========

commit f7ecf831467068f0ba288a0c136f05768893a826
Author: Peter Clifton <pcjc2@xxxxxxxxx>
Commit: Peter Clifton <pcjc2@xxxxxxxxx>

    Remove $Id$ lines from bom exporter .xy and .bom output
    
    Modern version control systems don't use this kind of expansion,
    so these lines don't serve much purpose.

diff --git a/doc/pcb.texi b/doc/pcb.texi
index db214a2..0640fe9 100644
--- a/doc/pcb.texi
+++ b/doc/pcb.texi
@@ -5713,16 +5713,14 @@ R34, but not D34
 @section File Format
 The centroid output file is in a standard comma seperated values (CSV)
 format.  Comment lines begin with a ``#''.  The output file contains a
-header with an RCS Id tag (useful for those who will check the file
-into a version control system), a version number for the file format,
-some comments containing the author and title of the board, and a
-comment describing the remainder of the file format.
+header with a version number for the file format, some comments
+containing the author and title of the board, and a comment describing
+the remainder of the file format.
 
 An example centroid file is shown below.
 
 @example
 
-# @verb{ $ }Id@verb{ $ }
 # PcbXY Version 1.0
 # Date: Fri Jul 22 03:40:08 2005 UTC
 # Author: PCB User
diff --git a/src/hid/bom/bom.c b/src/hid/bom/bom.c
index e67450a..1835439 100644
--- a/src/hid/bom/bom.c
+++ b/src/hid/bom/bom.c
@@ -333,8 +333,6 @@ PrintBOM (void)
     const char *fmt = "%c UTC";
     strftime (utcTime, sizeof (utcTime), fmt, gmtime (&currenttime));
   }
-  fprintf (fp, "# $Id");
-  fprintf (fp, "$\n");
   fprintf (fp, "# PcbXY Version 1.0\n");
   fprintf (fp, "# Date: %s\n", utcTime);
   fprintf (fp, "# Author: %s\n", pcb_author ());
@@ -500,8 +498,6 @@ PrintBOM (void)
       return 1;
     }
 
-  fprintf (fp, "# $Id");
-  fprintf (fp, "$\n");
   fprintf (fp, "# PcbBOM Version 1.0\n");
   fprintf (fp, "# Date: %s\n", utcTime);
   fprintf (fp, "# Author: %s\n", pcb_author ());
diff --git a/tests/golden/hid_bom1/bom_general.bom b/tests/golden/hid_bom1/bom_general.bom
index e069ea1..ee15f7b 100644
--- a/tests/golden/hid_bom1/bom_general.bom
+++ b/tests/golden/hid_bom1/bom_general.bom
@@ -1,4 +1,3 @@
-# $Id$
 # PcbBOM Version 1.0
 # Date: Wed Jun 24 21:42:21 2009 UTC
 # Author: Dan McMahill
diff --git a/tests/golden/hid_bom1/bom_general.xy b/tests/golden/hid_bom1/bom_general.xy
index dfcd7de..c391ac2 100644
--- a/tests/golden/hid_bom1/bom_general.xy
+++ b/tests/golden/hid_bom1/bom_general.xy
@@ -1,4 +1,3 @@
-# $Id$
 # PcbXY Version 1.0
 # Date: Wed Jun 24 21:42:21 2009 UTC
 # Author: Dan McMahill
diff --git a/tests/golden/hid_bom2/bom_general.xy b/tests/golden/hid_bom2/bom_general.xy
index c2c9ea2..56bf534 100644
--- a/tests/golden/hid_bom2/bom_general.xy
+++ b/tests/golden/hid_bom2/bom_general.xy
@@ -1,4 +1,3 @@
-# $Id$
 # PcbXY Version 1.0
 # Date: Wed Jun 24 21:42:22 2009 UTC
 # Author: Dan McMahill
diff --git a/tests/golden/hid_bom2/test.bom b/tests/golden/hid_bom2/test.bom
index c2677f5..895ee5b 100644
--- a/tests/golden/hid_bom2/test.bom
+++ b/tests/golden/hid_bom2/test.bom
@@ -1,4 +1,3 @@
-# $Id$
 # PcbBOM Version 1.0
 # Date: Wed Jun 24 21:42:22 2009 UTC
 # Author: Dan McMahill
diff --git a/tests/golden/hid_bom3/bom_general.bom b/tests/golden/hid_bom3/bom_general.bom
index c2677f5..895ee5b 100644
--- a/tests/golden/hid_bom3/bom_general.bom
+++ b/tests/golden/hid_bom3/bom_general.bom
@@ -1,4 +1,3 @@
-# $Id$
 # PcbBOM Version 1.0
 # Date: Wed Jun 24 21:42:22 2009 UTC
 # Author: Dan McMahill
diff --git a/tests/golden/hid_bom3/test.xy b/tests/golden/hid_bom3/test.xy
index c2c9ea2..56bf534 100644
--- a/tests/golden/hid_bom3/test.xy
+++ b/tests/golden/hid_bom3/test.xy
@@ -1,4 +1,3 @@
-# $Id$
 # PcbXY Version 1.0
 # Date: Wed Jun 24 21:42:22 2009 UTC
 # Author: Dan McMahill
diff --git a/tests/golden/hid_bom4/bom_general.bom b/tests/golden/hid_bom4/bom_general.bom
index bb246f5..b3cc77f 100644
--- a/tests/golden/hid_bom4/bom_general.bom
+++ b/tests/golden/hid_bom4/bom_general.bom
@@ -1,4 +1,3 @@
-# $Id$
 # PcbBOM Version 1.0
 # Date: Wed Jun 24 21:42:23 2009 UTC
 # Author: Dan McMahill
diff --git a/tests/golden/hid_bom4/bom_general.xy b/tests/golden/hid_bom4/bom_general.xy
index fb1350e..2933983 100644
--- a/tests/golden/hid_bom4/bom_general.xy
+++ b/tests/golden/hid_bom4/bom_general.xy
@@ -1,4 +1,3 @@
-# $Id$
 # PcbXY Version 1.0
 # Date: Wed Jun 24 21:42:23 2009 UTC
 # Author: Dan McMahill




_______________________________________________
geda-cvs mailing list
geda-cvs@xxxxxxxxxxxxxx
http://www.seul.org/cgi-bin/mailman/listinfo/geda-cvs