gsrc-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gsrc-commit] trunk r4406: update gnucap to 20160724


From: Carl Hansen
Subject: [Gsrc-commit] trunk r4406: update gnucap to 20160724
Date: Fri, 31 Mar 2017 23:42:50 -0400 (EDT)
User-agent: Bazaar (2.7.0dev1)

------------------------------------------------------------
revno: 4406
revision-id: address@hidden
parent: address@hidden
committer: address@hidden
branch nick: trunk
timestamp: Fri 2017-03-31 20:42:29 -0700
message:
  update gnucap to 20160724
removed:
  pkg/gnu/gnucap/files/          files-20160617014725-uokjfnggs70iry9h-788
  pkg/gnu/gnucap/files/gnucap-0.35-fix-build.diff 
gnucap0.35fixbuild.d-20160617014725-uokjfnggs70iry9h-2129
modified:
  pkg/gnu/gnucap/Makefile        makefile-20160617014725-uokjfnggs70iry9h-787
  pkg/gnu/gnucap/config.mk       config.mk-20160617015730-bm55lz2q0fo9d26b-1
  pkg/gnu/gnucap/sha256sums      sha256sums-20160617014725-uokjfnggs70iry9h-789
=== modified file 'pkg/gnu/gnucap/Makefile'
--- a/pkg/gnu/gnucap/Makefile   2016-06-17 19:08:15 +0000
+++ b/pkg/gnu/gnucap/Makefile   2017-04-01 03:42:29 +0000
@@ -1,4 +1,4 @@
-# Copyright © 2013 Brandon Invergo <address@hidden>
+# Copyright © 2013, 2017 Brandon Invergo <address@hidden>
 #
 # This file is part of GSRC.
 #
@@ -17,23 +17,26 @@
 
 NAME = Gnucap
 GARNAME = gnucap
-GARVERSION = 0.35
+GARVERSION =  20160724
 HOME_URL = http://www.gnu.org/software/gnucap
-DESCRIPTION = Mixed analog and digital circuit simulator
+DESCRIPTION = Circuit analysis package, mixed analog and digital circuit 
simulator
 define BLURB
 GNUcap is a circuit analysis package.  It offers a general purpose
 circuit simulator and can perform DC and transient analyses, fourier
 analysis and AC analysis.  The engine is designed to do true
-mixed-mode simulation.
+mixed-mode simulation.  See also 
+https://git.savannah.gnu.org/cgit/gnucap/ for add-ons.
 endef
 
 ######################################################################
+# https://git.savannah.gnu.org/cgit/gnucap.git/snapshot/gnucap-20160724.tar.gz
 
-MASTER_SITES = http://www.gnucap.org/
-MASTER_SUBDIR = archive/
+#MASTER_SITES = http://www.gnucap.org/  out of date version but has wiki
+MASTER_SITES = https://git.savannah.gnu.org/cgit/
+MASTER_SUBDIR = gnucap.git/snapshot/
 DISTFILES = $(DISTNAME).tar.gz
 SIGFILES = 
-PATCHFILES = $(DISTNAME)-fix-build.diff
+#PATCHFILES = $(DISTNAME)-fix-build.diff
 
 BUILDDEPS = 
 LIBDEPS = 

=== modified file 'pkg/gnu/gnucap/config.mk'
--- a/pkg/gnu/gnucap/config.mk  2016-06-17 19:08:15 +0000
+++ b/pkg/gnu/gnucap/config.mk  2017-04-01 03:42:29 +0000
@@ -1,4 +1,4 @@
 ## Configuration options for gnucap ##
 
 CONFIGURE_OPTS ?= 
-BUILD_OPTS ?=
+BUILD_OPTS ?=  

=== removed directory 'pkg/gnu/gnucap/files'
=== removed file 'pkg/gnu/gnucap/files/gnucap-0.35-fix-build.diff'
--- a/pkg/gnu/gnucap/files/gnucap-0.35-fix-build.diff   2016-06-17 19:08:15 
+0000
+++ b/pkg/gnu/gnucap/files/gnucap-0.35-fix-build.diff   1970-01-01 00:00:00 
+0000
@@ -1,103 +0,0 @@
-This patch accounts for several compilation failures due to not explicitly 
-including the <cstring> header.
-
-Binary files tmp/gnucap-0.35/man/gnucap-man.pdf and 
work/gnucap-0.35/man/gnucap-man.pdf differ
-diff -x config.log -x config.status -ru work/gnucap-0.35/modelgen/ap.h 
work/gnucap-0.35/modelgen/ap.h
---- work/gnucap-0.35/modelgen/ap.h     2006-08-28 08:15:43.000000000 +0200
-+++ work/gnucap-0.35/modelgen/ap.h     2013-03-19 00:01:08.674239783 +0100
-@@ -25,6 +25,7 @@
- #ifndef AP_H
- #define AP_H
- #include "md.h"
-+#include <cstring>
- /*--------------------------------------------------------------------------*/
- enum AP_MOD{
-   mNONE,      /* nothing special */
-diff -x config.log -x config.status -ru work/gnucap-0.35/src/ap.h 
work/gnucap-0.35/src/ap.h
---- work/gnucap-0.35/src/ap.h  2006-08-28 08:15:43.000000000 +0200
-+++ work/gnucap-0.35/src/ap.h  2013-03-19 00:02:52.137578847 +0100
-@@ -25,6 +25,7 @@
- #ifndef AP_H
- #define AP_H
- #include "md.h"
-+#include <cstring>
- /*--------------------------------------------------------------------------*/
- enum AP_MOD{
-   mNONE,      /* nothing special */
-diff -x config.log -x config.status -ru work/gnucap-0.35/src/e_base.h 
work/gnucap-0.35/src/e_base.h
---- work/gnucap-0.35/src/e_base.h      2006-08-28 08:15:43.000000000 +0200
-+++ work/gnucap-0.35/src/e_base.h      2013-03-19 00:03:31.267581016 +0100
-@@ -28,6 +28,7 @@
- #include "u_opt.h"
- #include "u_status.h"
- #include "m_matrix.h"
-+#include <cstring>
- /*--------------------------------------------------------------------------*/
- // this file
- class CKT_BASE;
-diff -x config.log -x config.status -ru work/gnucap-0.35/src/io_findf.cc 
work/gnucap-0.35/src/io_findf.cc
---- work/gnucap-0.35/src/io_findf.cc   2006-08-28 08:15:43.000000000 +0200
-+++ work/gnucap-0.35/src/io_findf.cc   2013-03-19 00:05:01.130919322 +0100
-@@ -33,6 +33,7 @@
-  */
- //testing=script,sparse 2006.07.17
- #include "l_lib.h"
-+#include <cstring>
- /*--------------------------------------------------------------------------*/
- std::string findfile(const std::string& filename, const std::string& path,
-                    int mode)
-diff -x config.log -x config.status -ru work/gnucap-0.35/src/io_getln.cc 
work/gnucap-0.35/src/io_getln.cc
---- work/gnucap-0.35/src/io_getln.cc   2006-08-28 08:15:43.000000000 +0200
-+++ work/gnucap-0.35/src/io_getln.cc   2013-03-19 00:05:19.867587037 +0100
-@@ -28,6 +28,7 @@
-  */
- //testing=script 2006.07.17
- #include "l_lib.h"
-+#include <cstring>
- /*--------------------------------------------------------------------------*/
- std::string getlines(FILE *fileptr)
- {
-diff -x config.log -x config.status -ru work/gnucap-0.35/src/io_out.cc 
work/gnucap-0.35/src/io_out.cc
---- work/gnucap-0.35/src/io_out.cc     2006-08-28 08:15:43.000000000 +0200
-+++ work/gnucap-0.35/src/io_out.cc     2013-03-19 00:05:32.847587754 +0100
-@@ -32,6 +32,7 @@
-  */
- //testing=script,sparse 2006.07.17
- #include "u_opt.h"
-+#include <cstring>
- /*--------------------------------------------------------------------------*/
-       const char* octal(int x);
- //    OMSTREAM & OMSTREAM::tab(int count)
-diff -x config.log -x config.status -ru work/gnucap-0.35/src/l_ftos.cc 
work/gnucap-0.35/src/l_ftos.cc
---- work/gnucap-0.35/src/l_ftos.cc     2006-08-28 08:15:43.000000000 +0200
-+++ work/gnucap-0.35/src/l_ftos.cc     2013-03-19 00:05:45.147588436 +0100
-@@ -39,6 +39,7 @@
- //testing=script 2005.10.11
- #include "l_lib.h"
- #include "constant.h"
-+#include <cstring>
- /*--------------------------------------------------------------------------*/
-       char*   ftos(double,int,int,int);
- /*--------------------------------------------------------------------------*/
-diff -x config.log -x config.status -ru work/gnucap-0.35/src/l_timer.cc 
work/gnucap-0.35/src/l_timer.cc
---- work/gnucap-0.35/src/l_timer.cc    2006-08-28 08:15:43.000000000 +0200
-+++ work/gnucap-0.35/src/l_timer.cc    2013-03-19 00:05:57.440922452 +0100
-@@ -23,6 +23,7 @@
-  */
- //testing=script,sparse 2006.07.13
- #include "l_timer.h"
-+#include <cstring>
- /*--------------------------------------------------------------------------*/
- //            TIMER::TIMER();
- //            TIMER::TIMER(const char*);
-diff -x config.log -x config.status -ru work/gnucap-0.35/src/main.cc 
work/gnucap-0.35/src/main.cc
---- work/gnucap-0.35/src/main.cc       2006-09-20 19:18:52.000000000 +0200
-+++ work/gnucap-0.35/src/main.cc       2013-03-19 00:04:14.770916764 +0100
-@@ -28,6 +28,7 @@
- #include "declare.h"  /* lots */
- #include "u_opt.h"
- #include "l_jmpbuf.h"
-+#include <cstring>
- /*--------------------------------------------------------------------------*/
-       int     main(int,const char*[]);
- static        void    sign_on(void);

=== modified file 'pkg/gnu/gnucap/sha256sums'
--- a/pkg/gnu/gnucap/sha256sums 2016-06-17 19:08:15 +0000
+++ b/pkg/gnu/gnucap/sha256sums 2017-04-01 03:42:29 +0000
@@ -1,2 +1,1 @@
-820bd9e32be5b1a4422744c19b371616ace70f48f00768b8afe373f9ded1516b  
download/gnucap-0.35.tar.gz
-0a6aa82b643401f3971050461d933ebbc9954e467061ed8f930dc346d88844c6  
download/gnucap-0.35-fix-build.diff
+2948facddbcb4f3e783d6909ddea2bdc5c5c8dfa912f6333882d38fdd10d4815  
download/gnucap-20160724.tar.gz


reply via email to

[Prev in Thread] Current Thread [Next in Thread]