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

gEDA-cvs: CVS update: ChangeLog



  User: pcjc2   
  Date: 07/04/17 12:18:59

  Modified:    .        Tag: noscreen ChangeLog Makefile.am configure.ac
  Log:
  Sync with trunk
  
  
  
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.129.2.3 +41 -0     eda/geda/gaf/utils/ChangeLog
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ChangeLog
  ===================================================================
  RCS file: /home/cvspsrv/cvsroot/eda/geda/gaf/utils/ChangeLog,v
  retrieving revision 1.129.2.2
  retrieving revision 1.129.2.3
  diff -u -b -r1.129.2.2 -r1.129.2.3
  --- ChangeLog	23 Feb 2007 23:32:15 -0000	1.129.2.2
  +++ ChangeLog	17 Apr 2007 16:18:57 -0000	1.129.2.3
  @@ -1,3 +1,44 @@
  +2007-04-15 Stuart Brorson <sdb (AT) cloud9 (DOT) net>
  +	* refdes_renum: Made --gentle default behavior of refdes_renum.
  +	Modified test suite to account for this new behavior.
  +	
  +2007-04-14 Stuart Brorson <sdb (AT) cloud9 (DOT) net>
  +	* Added a bunch of regression tests to the suite for refdes_renum.
  +	
  +2007-04-14 Stuart Brorson <sdb (AT) cloud9 (DOT) net>
  +	* refdes_renum: modified refdes_renum to incorporate --gentle
  +	flag which won't overwrite refdeses already numbered.
  +
  +2007-04-13 23:18  Dan McMahill <danmc>
  +
  +	* Makefile.am, configure.ac, tests/Makefile.am,
  +	  tests/refdes_renum/Makefile.am, tests/refdes_renum/README.txt,
  +	  tests/refdes_renum/run_tests.sh, tests/refdes_renum/tests.list,
  +	  tests/refdes_renum/inputs/Makefile.am,
  +	  tests/refdes_renum/inputs/file1.sch,
  +	  tests/refdes_renum/inputs/file2.sch,
  +	  tests/refdes_renum/inputs/file3.sch,
  +	  tests/refdes_renum/inputs/more_than_10.sch,
  +	  tests/refdes_renum/outputs/Makefile.am,
  +	  tests/refdes_renum/outputs/multi_clear:file1.sch,
  +	  tests/refdes_renum/outputs/multi_clear:file2.sch,
  +	  tests/refdes_renum/outputs/multi_clear:file3.sch,
  +	  tests/refdes_renum/outputs/multi_pgskip1:file1.sch,
  +	  tests/refdes_renum/outputs/multi_pgskip1:file2.sch,
  +	  tests/refdes_renum/outputs/multi_pgskip1:file3.sch,
  +	  tests/refdes_renum/outputs/multi_pgskip2:file1.sch,
  +	  tests/refdes_renum/outputs/multi_pgskip2:file2.sch,
  +	  tests/refdes_renum/outputs/multi_pgskip2:file3.sch,
  +	  tests/refdes_renum/outputs/multi_renum:file1.sch,
  +	  tests/refdes_renum/outputs/multi_renum:file2.sch,
  +	  tests/refdes_renum/outputs/multi_renum:file3.sch,
  +	  tests/refdes_renum/outputs/single_clear:file1.sch,
  +	  tests/refdes_renum/outputs/single_pgskip1:file1.sch,
  +	  tests/refdes_renum/outputs/single_pgskip2:file1.sch,
  +	  tests/refdes_renum/outputs/single_pgskip3:more_than_10.sch,
  +	  tests/refdes_renum/outputs/single_renum:file1.sch: add
  +	  refdes_renum testsuite
  +
   2007-02-16 Ales Hvezda   <ahvezda@xxxxxxxxxxxxx>
   
   	* scripts/Makefile.am: Fix to get make distcheck to pass.
  
  
  
  1.18.6.1  +1 -1      eda/geda/gaf/utils/Makefile.am
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: Makefile.am
  ===================================================================
  RCS file: /home/cvspsrv/cvsroot/eda/geda/gaf/utils/Makefile.am,v
  retrieving revision 1.18
  retrieving revision 1.18.6.1
  diff -u -b -r1.18 -r1.18.6.1
  --- Makefile.am	16 Aug 2005 17:05:14 -0000	1.18
  +++ Makefile.am	17 Apr 2007 16:18:57 -0000	1.18.6.1
  @@ -1,5 +1,5 @@
   
  -SUBDIRS = src gschlas scripts lib include examples docs man
  +SUBDIRS = src gschlas scripts lib include examples docs man tests
   
   EXTRA_DIST = ChangeLog.tragesym ChangeLog.gsch2pcb autogen.sh
   
  
  
  
  1.31.2.3  +9 -1      eda/geda/gaf/utils/configure.ac
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: configure.ac
  ===================================================================
  RCS file: /home/cvspsrv/cvsroot/eda/geda/gaf/utils/configure.ac,v
  retrieving revision 1.31.2.2
  retrieving revision 1.31.2.3
  diff -u -b -r1.31.2.2 -r1.31.2.3
  --- configure.ac	11 Feb 2007 23:59:07 -0000	1.31.2.2
  +++ configure.ac	17 Apr 2007 16:18:57 -0000	1.31.2.3
  @@ -35,6 +35,9 @@
   AC_PROG_MAKE_SET
   AM_PROG_LEX
   
  +AC_PATH_PROG(PERL, perl, [notfound])
  +AM_CONDITIONAL(MISSING_PERL, test x$PERL = xnotfound)
  +
   ##############################################################3
   # Test for __func__
   #
  @@ -415,7 +418,12 @@
                    lib/Makefile 
                    lib/system-gschlasrc 
                    gschlas/Makefile 
  -                 src/Makefile ])
  +                 src/Makefile
  +                 tests/Makefile
  +                 tests/refdes_renum/Makefile
  +                 tests/refdes_renum/inputs/Makefile
  +                 tests/refdes_renum/outputs/Makefile
  +])
   
   AC_OUTPUT
   
  
  
  


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