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

gEDA-cvs: CVS update: ChangeLog



  User: ahvezda 
  Date: 06/08/21 22:56:11

  Modified:    .        ChangeLog Makefile.am README configure.ac
  Log:
  First checkin of the wiki snapshot, prep work for new version of gEDA/gaf
  
  
  
  
  Revision  Changes    Path
  1.77      +13 -0     eda/geda/gaf/docs/ChangeLog
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ChangeLog
  ===================================================================
  RCS file: /home/cvspsrv/cvsroot/eda/geda/gaf/docs/ChangeLog,v
  retrieving revision 1.76
  retrieving revision 1.77
  diff -u -b -r1.76 -r1.77
  --- ChangeLog	15 Aug 2006 03:20:42 -0000	1.76
  +++ ChangeLog	22 Aug 2006 02:56:11 -0000	1.77
  @@ -1,3 +1,16 @@
  +2006-08-21 Ales Hvezda   <ahvezda@xxxxxxxxxxxxx>
  +
  +	* README: Updated the README a little to be ready for the next
  +	release.
  +
  +	* configure.ac, Makefile.am, wiki/Makefile.am: Checked in first
  +	snapshot of the wiki documentation.
  +
  +2006-08-19 Ales Hvezda   <ahvezda@xxxxxxxxxxxxx>
  +
  +	* configure.ac: Bumped version number to 20060821 in prep for the
  +	next gEDA/gaf release.
  +
   2006-08-14 Ales Hvezda   <ahvezda@xxxxxxxxxxxxx>
   	
   	* scripts/*, configure.ac, Makefile.am: Added scripts that
  
  
  
  1.15      +1 -4      eda/geda/gaf/docs/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/docs/Makefile.am,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -b -r1.14 -r1.15
  --- Makefile.am	15 Aug 2006 03:20:42 -0000	1.14
  +++ Makefile.am	22 Aug 2006 02:56:11 -0000	1.15
  @@ -1,8 +1,5 @@
   
  -SUBDIRS = attributes symbols fileformats hooks keymapping netattrib \
  -	  gschem gnetlist switcap spice-sdb toplevel templates \
  -	  pads_backannotate cascade tragesym_tutorial gsch2pcb_tutorial \
  -	  scripts
  +SUBDIRS = toplevel wiki gsch2pcb_tutorial scripts
   
   EXTRA_DIST = autogen.sh
   
  
  
  
  1.13      +5 -27     eda/geda/gaf/docs/README
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: README
  ===================================================================
  RCS file: /home/cvspsrv/cvsroot/eda/geda/gaf/docs/README,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -b -r1.12 -r1.13
  --- README	22 Jan 2006 13:55:25 -0000	1.12
  +++ README	22 Aug 2006 02:56:11 -0000	1.13
  @@ -4,7 +4,7 @@
   GPL Electronic Design Automation
   ------------------------------------------------------------------------------
   
  -README for docs version 2006* 
  +README for docs 
   
   
   This directory contains documentation related to the gEDA project.
  @@ -27,33 +27,11 @@
   
   - gEDA Internet resources
   
  -	Homepage: http://www.geda.seul.org
  +        Homepage: http://geda.seul.org
   
  -	Mailing list:
  -		To subscribe send an email to: majordomo@xxxxxxxxxxxxx  
  -	 	with   subscribe geda-user   in the body.
  +        Mailing lists: http://geda.seul.org/mailinglist
   		
  -		To unsubscribe send an email to: majordomo@xxxxxxxxxxxxx
  -	 	with   unsubscribe geda-user   in the body.
  +        For any questions related to gEDA/gaf, please subscribe and post 
  +        to the "geda-user" mailing list.
   
  -		To send email to the list use the address:
  -
  -			geda-user@xxxxxxxxxxxxx
  -
  -		Remember, geda-user@xxxxxxxxxxxxx is for the actual traffic.  
  -		For administrative commands, use majordomo@xxxxxxxxxxxxxx
  -
  -		The mailing list archive is at:
  -
  -			http://www.geda.seul.org/mailinglist 
  -
  -	Many thanks to the SEUL project for hosting gEDA!
  -
  -
  -
  -- Contact information  
  -
  -	Ales Hvezda 
  -	E-mail: ahvezda@xxxxxxxxxxxxx
  -	Web: http://www.geda.seul.org/
   
  
  
  
  1.21      +19 -17    eda/geda/gaf/docs/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/docs/configure.ac,v
  retrieving revision 1.20
  retrieving revision 1.21
  diff -u -b -r1.20 -r1.21
  --- configure.ac	15 Aug 2006 03:20:42 -0000	1.20
  +++ configure.ac	22 Aug 2006 02:56:11 -0000	1.21
  @@ -1,7 +1,7 @@
   # Process this file with autoconf to produce a configure script.
   AC_INIT
   
  -VERSION=20060123
  +VERSION=20060821
   PACKAGE=geda-docs
   echo Configuring $PACKAGE version $VERSION
   
  @@ -73,25 +73,27 @@
   GEDADOCDIR=$expandgedadocdir
   AC_SUBST(GEDADOCDIR)
   
  +
  +AC_DEFUN([GEDA_DECLARE_DOCS],
  + [
  +        data$1=`find $srcdir/$1 -name \* -print | sed "s%\./wiki/%%" \
  +				 | sed "s%\./wiki%%" \
  +				 | grep -v Makefile | grep -v ChangeLog \
  +                                 | grep -v CVS | grep -v "\\.cvsignore" \
  +                                 | grep -v README \
  +                                 | grep -v "\\~" | grep -v "\\.orig"`
  +        data$1=`echo $data$1`
  +        AC_SUBST(data$1)
  + ])
  +
  +GEDA_DECLARE_DOCS(wiki)
  +
   AC_CONFIG_FILES([Makefile 
  -	         attributes/Makefile 
  -		 symbols/Makefile 
  -	         fileformats/Makefile 
  -                 hooks/Makefile 
  -                 keymapping/Makefile 
  -                 netattrib/Makefile 
  -                 pads_backannotate/Makefile 
  -                 cascade/Makefile 
  -		 gschem/Makefile 
  -		 gnetlist/Makefile 
  -		 switcap/Makefile 
  -		 spice-sdb/Makefile 
  -		 tragesym_tutorial/Makefile 
  -		 gsch2pcb_tutorial/Makefile 
  -		 gsch2pcb_tutorial/images/Makefile 
   		 toplevel/Makefile 
   		 toplevel/gedadocs.html 
  -                 templates/Makefile 
  +                 gsch2pcb_tutorial/Makefile 
  +		 gsch2pcb_tutorial/images/Makefile
  +                 wiki/Makefile 
                    scripts/Makefile ])
   AC_OUTPUT
   
  
  
  


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