rpms/ngspice/EL-5 import.log, 1.3, 1.4 ngspice-xcircuit_bridge.patch, 1.2, 1.3 ngspice.spec, 1.10, 1.11

Chitlesh GOORAH chitlesh at fedoraproject.org
Tue Dec 8 00:33:43 UTC 2009


Author: chitlesh

Update of /cvs/pkgs/rpms/ngspice/EL-5
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23109/EL-5

Modified Files:
	import.log ngspice-xcircuit_bridge.patch ngspice.spec 
Log Message:
improve tcl bridge for xcircuit


Index: import.log
===================================================================
RCS file: /cvs/pkgs/rpms/ngspice/EL-5/import.log,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -p -r1.3 -r1.4
--- import.log	4 Dec 2009 07:09:57 -0000	1.3
+++ import.log	8 Dec 2009 00:33:42 -0000	1.4
@@ -1,3 +1,4 @@
 ngspice-18-1_fc10:EL-5:ngspice-18-1.fc10.src.rpm:1231713953
 ngspice-19-1_fc11:EL-5:ngspice-19-1.fc11.src.rpm:1249833383
 ngspice-20-1_fc12:EL-5:ngspice-20-1.fc12.src.rpm:1259910513
+ngspice-20-2_fc12:EL-5:ngspice-20-2.fc12.src.rpm:1260232344

ngspice-xcircuit_bridge.patch:
 main.c |   43 ++++++++++++++++++++++++++++++++++++++-----
 1 file changed, 38 insertions(+), 5 deletions(-)

Index: ngspice-xcircuit_bridge.patch
===================================================================
RCS file: /cvs/pkgs/rpms/ngspice/EL-5/ngspice-xcircuit_bridge.patch,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -p -r1.2 -r1.3
--- ngspice-xcircuit_bridge.patch	4 Dec 2009 07:09:57 -0000	1.2
+++ ngspice-xcircuit_bridge.patch	8 Dec 2009 00:33:42 -0000	1.3
@@ -1,14 +1,76 @@
 --- src/main.c	2009-10-24 08:28:09.000000000 +0200
-+++ main.c	2009-11-16 15:05:57.196403105 +0100
-@@ -553,6 +553,7 @@
++++ main.c	2009-12-07 22:42:09.000000000 +0100
+@@ -5,7 +5,7 @@
+    Author: 1985 Wayne A. Christopher
+ 
+    The main routine for ngspice
+-   $Id$
++   $Id$
+ */
+ 
+ #include "ngspice.h"
+@@ -53,6 +53,7 @@
+ #include "frontend/variable.h"
+ #include "frontend/display.h"  /* added by SDB to pick up Input() fcn */
+ #include "frontend/signal_handler.h"
++#include "compatmode.h"
+ 
+ /* saj xspice headers */
+ #ifdef XSPICE
+@@ -188,9 +189,14 @@
+ extern struct comm spcp_coms[ ];
+ struct comm *cp_coms = spcp_coms;
+ 
+-extern int OUTpBeginPlot(), OUTpData(), OUTwBeginPlot(), OUTwReference();
+-extern int OUTwData(), OUTwEnd(), OUTendPlot(), OUTbeginDomain();
+-extern int OUTendDomain(), OUTstopnow(), OUTerror(), OUTattributes();
++extern int OUTpBeginPlot(void *,void *,IFuid,IFuid,int,int,IFuid *,int,void **); 
++extern int OUTpData(void *,IFvalue *,IFvalue *); 
++extern int OUTwBeginPlot(void *,void *,IFuid,IFuid,int,int,IFuid *,int,void **); 
++extern int OUTwReference(void *,IFvalue *,void **);
++extern int OUTwData(void *,int,IFvalue *,void *), OUTwEnd(void *), OUTendPlot(void *); 
++extern int OUTbeginDomain(void *,IFuid,int,IFvalue *);
++extern int OUTendDomain(void *), OUTstopnow(void), OUTerror(int,char *,IFuid *); 
++extern int OUTattributes(void *,IFuid *,int,IFvalue *);
+ 
+ IFfrontEnd nutmeginfo = {
+     IFnewUid,
+@@ -347,6 +353,26 @@
+ int DEVmaxnum = 0;
+ 
+ /* -------------------------------------------------------------------------- */
++/* Set a compatibility flag.
++   Currently available are flags for:
++   ngspice (standard)
++   HSPICE
++   Spice3
++*/
++COMPATMODE_T ngspice_compat_mode(void)
++{
++   char behaviour[80] ;
++
++   if( cp_getvar("ngbehavior", VT_STRING, behaviour)){
++      if (strcasecmp(behaviour,"hspice")==0)
++         return( COMPATMODE_HSPICE ) ;
++      if (strcasecmp(behaviour,"spice3")==0)
++         return( COMPATMODE_SPICE3 ) ;         
++   }
++   return(COMPATMODE_NATIVE) ;
++} /* end ngspice_compat_mode() */
++
++/* -------------------------------------------------------------------------- */
+ int
+ SIMinit(IFfrontEnd *frontEnd, IFsimulator **simulator)
+ {
+@@ -553,6 +579,7 @@
         "  -i, --interactive         run in interactive mode\n"
         "  -n, --no-spiceinit        don't load the local or user's config file\n"
         "  -o, --output=FILE         set the outputfile\n"
-+       "  -p, --pipe                run in I/O pipe mode\n"       
++       "  -p, --pipe		            run in I/O pipe mode\n"
         "  -q, --completion          activate command completion\n"
         "  -r, --rawfile=FILE        set the rawfile output\n"
         "  -s, --server              run spice as a server process\n"
-@@ -759,6 +760,7 @@
+@@ -759,6 +786,7 @@
              {"interactive", 0, 0, 'i'},
              {"no-spiceinit", 0, 0, 'n'},
              {"output", 1, 0, 'o'},
@@ -16,7 +78,7 @@
              {"completion", 0, 0, 'q'},
              {"rawfile", 1, 0, 'r'},
              {"server", 0, 0, 's'},
-@@ -766,7 +768,7 @@
+@@ -766,7 +794,7 @@
              {0, 0, 0, 0}
          };
  
@@ -25,3 +87,15 @@
               long_options, &option_index);
          if (c == -1)
              break;
+@@ -826,6 +854,11 @@
+               }
+               break;
+ 
++            case 'p':       /* Run in pipe mode */
++              iflag = TRUE;
++              istty = TRUE;
++              break;
++
+             case 'q':       /* Command completion */
+               qflag = TRUE;
+               break;


Index: ngspice.spec
===================================================================
RCS file: /cvs/pkgs/rpms/ngspice/EL-5/ngspice.spec,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -p -r1.10 -r1.11
--- ngspice.spec	4 Dec 2009 07:09:57 -0000	1.10
+++ ngspice.spec	8 Dec 2009 00:33:42 -0000	1.11
@@ -1,6 +1,6 @@
 Name:              ngspice
 Version:           20
-Release:           1%{?dist}
+Release:           2%{?dist}
 Summary:           A mixed level/signal circuit simulator
 
 License:           BSD
@@ -223,6 +223,9 @@ chmod +x %{buildroot}%{_libdir}/tclspice
 
 
 %changelog
+* Tue Dec 8 2009  Chitlesh Goorah <chitlesh [AT] fedoraproject DOT org> 20-2
+- Improved interoperobability with xcircuit
+
 * Mon Nov 16 2009 Chitlesh Goorah <chitlesh [AT] fedoraproject DOT org> 20-1
 - new upstream release
 




More information about the fedora-extras-commits mailing list