changeset 152:1dbe146bff03

Update license to gpl v3
author gedeone-octave <marcovass89@hotmail.it>
date Wed, 11 Sep 2013 09:26:22 +0200
parents 5fe2a157f4eb
children d82b09246f6c
files DESCRIPTION inst/BilinearForm.m inst/Constant.m inst/FunctionSpace.m inst/Functional.m inst/JacobianForm.m inst/LinearForm.m inst/ResidualForm.m inst/generate_fs.m inst/generate_fun.m inst/generate_lhs.m inst/generate_makefile.m inst/generate_rhs.m inst/import_ufl_BilinearForm.m inst/import_ufl_FunctionSpace.m inst/import_ufl_Functional.m inst/import_ufl_LinearForm.m inst/import_ufl_Problem.m
diffstat 18 files changed, 63 insertions(+), 62 deletions(-) [+]
line wrap: on
line diff
--- a/DESCRIPTION	Wed Sep 11 08:50:35 2013 +0200
+++ b/DESCRIPTION	Wed Sep 11 09:26:22 2013 +0200
@@ -1,12 +1,13 @@
 Name: fem-fenics
 Version: 0.0.0
 Date: 2013-11-09
-Author: Marco Vassalo
-Maintainer: Marco Vassallo
+Author: Marco Vassalo <gedeone-octave@users.sourceforge.net>
+Maintainer: Marco Vassallo <gedeone-octave@users.sourceforge.net>
 Title: fem-fenics
 Description: pkg for the resolution of partial differential equation based on fenics
-Depends: octave (>= 3.0)
-SystemRequirements: dolfin, ffc
+Depends: octave (>= 3.6.0)
+SystemRequirements: dolfin (>=1.2.0), ffc (>=1.2.0)
+BuildRequirements: dolfin (>=1.2.0), ffc (>=1.2.0)
 Autoload: no
-License: GPLv2+
+License: GPLv3+
 Url: http://octave.sf.net
--- a/inst/BilinearForm.m	Wed Sep 11 08:50:35 2013 +0200
+++ b/inst/BilinearForm.m	Wed Sep 11 09:26:22 2013 +0200
@@ -1,8 +1,8 @@
-## Copyright (C) 2013 Marco Vassallo
+## Copyright (C) 2013 Marco Vassallo <gedeone-octave@users.sourceforge.net>
 ##
 ## This program is free software; you can redistribute it and/or modify it under
 ## the terms of the GNU General Public License as published by the Free Software
-## Foundation; either version 2 of the License, or (at your option) any later
+## Foundation; either version 3 of the License, or (at your option) any later
 ## version.
 ##
 ## This program is distributed in the hope that it will be useful, but WITHOUT
--- a/inst/Constant.m	Wed Sep 11 08:50:35 2013 +0200
+++ b/inst/Constant.m	Wed Sep 11 09:26:22 2013 +0200
@@ -1,8 +1,8 @@
-## Copyright (C) 2013 Marco Vassallo
+## Copyright (C) 2013 Marco Vassallo <gedeone-octave@users.sourceforge.net>
 ##
 ## This program is free software; you can redistribute it and/or modify it under
 ## the terms of the GNU General Public License as published by the Free Software
-## Foundation; either version 2 of the License, or (at your option) any later
+## Foundation; either version 3 of the License, or (at your option) any later
 ## version.
 ##
 ## This program is distributed in the hope that it will be useful, but WITHOUT
--- a/inst/FunctionSpace.m	Wed Sep 11 08:50:35 2013 +0200
+++ b/inst/FunctionSpace.m	Wed Sep 11 09:26:22 2013 +0200
@@ -1,15 +1,15 @@
-## Copyright (C) 2013 Marco Vassallo
-
+## Copyright (C) 2013 Marco Vassallo <gedeone-octave@users.sourceforge.net>
+##
 ## This program is free software; you can redistribute it and/or modify it under
 ## the terms of the GNU General Public License as published by the Free Software
-## Foundation; either version 2 of the License, or (at your option) any later
+## Foundation; either version 3 of the License, or (at your option) any later
 ## version.
-
+##
 ## This program is distributed in the hope that it will be useful, but WITHOUT
 ## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 ## FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
 ## details.
-
+##
 ## You should have received a copy of the GNU General Public License along with
 ## this program; if not, see <http://www.gnu.org/licenses/>.
 
@@ -26,7 +26,7 @@
   if nargin != 2
     error ("FunctionSpace: wrong number of input parameters.");
   elseif ! ischar (name)
-    error ("Constant: second argument is not a valid string");
+    error ("FunctionSpace: second argument is not a valid string");
   endif
   program = sprintf ("%s_FunctionSpace(mesh)", name);
 
--- a/inst/Functional.m	Wed Sep 11 08:50:35 2013 +0200
+++ b/inst/Functional.m	Wed Sep 11 09:26:22 2013 +0200
@@ -1,8 +1,8 @@
-## Copyright (C) 2013 Marco Vassallo
+## Copyright (C) 2013 Marco Vassallo <gedeone-octave@users.sourceforge.net>
 ##
 ## This program is free software; you can redistribute it and/or modify it under
 ## the terms of the GNU General Public License as published by the Free Software
-## Foundation; either version 2 of the License, or (at your option) any later
+## Foundation; either version 3 of the License, or (at your option) any later
 ## version.
 ##
 ## This program is distributed in the hope that it will be useful, but WITHOUT
--- a/inst/JacobianForm.m	Wed Sep 11 08:50:35 2013 +0200
+++ b/inst/JacobianForm.m	Wed Sep 11 09:26:22 2013 +0200
@@ -1,8 +1,8 @@
-## Copyright (C) 2013 Marco Vassallo
+## Copyright (C) 2013 Marco Vassallo <gedeone-octave@users.sourceforge.net>
 ##
 ## This program is free software; you can redistribute it and/or modify it under
 ## the terms of the GNU General Public License as published by the Free Software
-## Foundation; either version 2 of the License, or (at your option) any later
+## Foundation; either version 3 of the License, or (at your option) any later
 ## version.
 ##
 ## This program is distributed in the hope that it will be useful, but WITHOUT
@@ -26,7 +26,7 @@
   if nargin < 2
     error ("JacobianForm: wrong number of input parameters.");
   elseif ! ischar (name)
-    error ("JacobianForm: second argument is not a valid string");
+    error ("JacobianForm: first argument is not a valid string");
   endif
 
   program = sprintf ("%s_BilinearForm(V", name);
--- a/inst/LinearForm.m	Wed Sep 11 08:50:35 2013 +0200
+++ b/inst/LinearForm.m	Wed Sep 11 09:26:22 2013 +0200
@@ -1,8 +1,8 @@
-## Copyright (C) 2013 Marco Vassallo
+## Copyright (C) 2013 Marco Vassallo <gedeone-octave@users.sourceforge.net>
 ##
 ## This program is free software; you can redistribute it and/or modify it under
 ## the terms of the GNU General Public License as published by the Free Software
-## Foundation; either version 2 of the License, or (at your option) any later
+## Foundation; either version 3 of the License, or (at your option) any later
 ## version.
 ##
 ## This program is distributed in the hope that it will be useful, but WITHOUT
@@ -26,7 +26,7 @@
   if nargin < 2
     error ("LinearForm: wrong number of input parameters.");
   elseif ! ischar (name)
-    error ("LinearForm: second argument is not a valid string");
+    error ("LinearForm: first argument is not a valid string");
   endif
 
   program = sprintf ("%s_LinearForm(V", name);
--- a/inst/ResidualForm.m	Wed Sep 11 08:50:35 2013 +0200
+++ b/inst/ResidualForm.m	Wed Sep 11 09:26:22 2013 +0200
@@ -1,8 +1,8 @@
-## Copyright (C) 2013 Marco Vassallo
+## Copyright (C) 2013 Marco Vassallo <gedeone-octave@users.sourceforge.net>
 ##
 ## This program is free software; you can redistribute it and/or modify it under
 ## the terms of the GNU General Public License as published by the Free Software
-## Foundation; either version 2 of the License, or (at your option) any later
+## Foundation; either version 3 of the License, or (at your option) any later
 ## version.
 ##
 ## This program is distributed in the hope that it will be useful, but WITHOUT
@@ -25,9 +25,9 @@
 function a = ResidualForm (name, V, varargin)
 
   if nargin < 2
-    error ("JacobianForm: wrong number of input parameters.");
+    error ("ResidualForm: wrong number of input parameters.");
   elseif ! ischar (name)
-    error ("JacobianForm: second argument is not a valid string");
+    error ("ResidualForm: first argument is not a valid string");
   endif
 
   program = sprintf ("%s_LinearForm(V", name);
--- a/inst/generate_fs.m	Wed Sep 11 08:50:35 2013 +0200
+++ b/inst/generate_fs.m	Wed Sep 11 09:26:22 2013 +0200
@@ -1,15 +1,15 @@
-## Copyright (C) 2013 Marco Vassallo
-
+## Copyright (C) 2013 Marco Vassallo <gedeone-octave@users.sourceforge.net>
+##
 ## This program is free software; you can redistribute it and/or modify it under
 ## the terms of the GNU General Public License as published by the Free Software
-## Foundation; either version 2 of the License, or (at your option) any later
+## Foundation; either version 3 of the License, or (at your option) any later
 ## version.
-
+##
 ## This program is distributed in the hope that it will be useful, but WITHOUT
 ## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 ## FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
 ## details.
-
+##
 ## You should have received a copy of the GNU General Public License along with
 ## this program; if not, see <http://www.gnu.org/licenses/>.
 
--- a/inst/generate_fun.m	Wed Sep 11 08:50:35 2013 +0200
+++ b/inst/generate_fun.m	Wed Sep 11 09:26:22 2013 +0200
@@ -1,15 +1,15 @@
-## Copyright (C) 2013 Marco Vassallo
-
+## Copyright (C) 2013 Marco Vassallo <gedeone-octave@users.sourceforge.net>
+##
 ## This program is free software; you can redistribute it and/or modify it under
 ## the terms of the GNU General Public License as published by the Free Software
-## Foundation; either version 2 of the License, or (at your option) any later
+## Foundation; either version 3 of the License, or (at your option) any later
 ## version.
-
+##
 ## This program is distributed in the hope that it will be useful, but WITHOUT
 ## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 ## FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
 ## details.
-
+##
 ## You should have received a copy of the GNU General Public License along with
 ## this program; if not, see <http://www.gnu.org/licenses/>.
 
--- a/inst/generate_lhs.m	Wed Sep 11 08:50:35 2013 +0200
+++ b/inst/generate_lhs.m	Wed Sep 11 09:26:22 2013 +0200
@@ -1,15 +1,15 @@
-## Copyright (C) 2013 Marco Vassallo
-
+## Copyright (C) 2013 Marco Vassallo <gedeone-octave@users.sourceforge.net>
+##
 ## This program is free software; you can redistribute it and/or modify it under
 ## the terms of the GNU General Public License as published by the Free Software
-## Foundation; either version 2 of the License, or (at your option) any later
+## Foundation; either version 3 of the License, or (at your option) any later
 ## version.
-
+##
 ## This program is distributed in the hope that it will be useful, but WITHOUT
 ## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 ## FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
 ## details.
-
+##
 ## You should have received a copy of the GNU General Public License along with
 ## this program; if not, see <http://www.gnu.org/licenses/>.
 
--- a/inst/generate_makefile.m	Wed Sep 11 08:50:35 2013 +0200
+++ b/inst/generate_makefile.m	Wed Sep 11 09:26:22 2013 +0200
@@ -1,15 +1,15 @@
-## Copyright (C) 2013 Marco Vassallo
-
+## Copyright (C) 2013 Marco Vassallo <gedeone-octave@users.sourceforge.net>
+##
 ## This program is free software; you can redistribute it and/or modify it under
 ## the terms of the GNU General Public License as published by the Free Software
-## Foundation; either version 2 of the License, or (at your option) any later
+## Foundation; either version 3 of the License, or (at your option) any later
 ## version.
-
+##
 ## This program is distributed in the hope that it will be useful, but WITHOUT
 ## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 ## FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
 ## details.
-
+##
 ## You should have received a copy of the GNU General Public License along with
 ## this program; if not, see <http://www.gnu.org/licenses/>.
 
--- a/inst/generate_rhs.m	Wed Sep 11 08:50:35 2013 +0200
+++ b/inst/generate_rhs.m	Wed Sep 11 09:26:22 2013 +0200
@@ -1,15 +1,15 @@
-## Copyright (C) 2013 Marco Vassallo
-
+## Copyright (C) 2013 Marco Vassallo <gedeone-octave@users.sourceforge.net>
+##
 ## This program is free software; you can redistribute it and/or modify it under
 ## the terms of the GNU General Public License as published by the Free Software
-## Foundation; either version 2 of the License, or (at your option) any later
+## Foundation; either version 3 of the License, or (at your option) any later
 ## version.
-
+##
 ## This program is distributed in the hope that it will be useful, but WITHOUT
 ## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 ## FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
 ## details.
-
+##
 ## You should have received a copy of the GNU General Public License along with
 ## this program; if not, see <http://www.gnu.org/licenses/>.
 
--- a/inst/import_ufl_BilinearForm.m	Wed Sep 11 08:50:35 2013 +0200
+++ b/inst/import_ufl_BilinearForm.m	Wed Sep 11 09:26:22 2013 +0200
@@ -1,8 +1,8 @@
-## Copyright (C) 2013 Marco Vassallo
+## Copyright (C) 2013 Marco Vassallo <gedeone-octave@users.sourceforge.net>
 ##
 ## This program is free software; you can redistribute it and/or modify it under
 ## the terms of the GNU General Public License as published by the Free Software
-## Foundation; either version 2 of the License, or (at your option) any later
+## Foundation; either version 3 of the License, or (at your option) any later
 ## version.
 ##
 ## This program is distributed in the hope that it will be useful, but WITHOUT
--- a/inst/import_ufl_FunctionSpace.m	Wed Sep 11 08:50:35 2013 +0200
+++ b/inst/import_ufl_FunctionSpace.m	Wed Sep 11 09:26:22 2013 +0200
@@ -1,8 +1,8 @@
-## Copyright (C) 2013 Marco Vassallo
+## Copyright (C) 2013 Marco Vassallo <gedeone-octave@users.sourceforge.net>
 ##
 ## This program is free software; you can redistribute it and/or modify it under
 ## the terms of the GNU General Public License as published by the Free Software
-## Foundation; either version 2 of the License, or (at your option) any later
+## Foundation; either version 3 of the License, or (at your option) any later
 ## version.
 ##
 ## This program is distributed in the hope that it will be useful, but WITHOUT
--- a/inst/import_ufl_Functional.m	Wed Sep 11 08:50:35 2013 +0200
+++ b/inst/import_ufl_Functional.m	Wed Sep 11 09:26:22 2013 +0200
@@ -1,8 +1,8 @@
-## Copyright (C) 2013 Marco Vassallo
+## Copyright (C) 2013 Marco Vassallo <gedeone-octave@users.sourceforge.net>
 ##
 ## This program is free software; you can redistribute it and/or modify it under
 ## the terms of the GNU General Public License as published by the Free Software
-## Foundation; either version 2 of the License, or (at your option) any later
+## Foundation; either version 3 of the License, or (at your option) any later
 ## version.
 ##
 ## This program is distributed in the hope that it will be useful, but WITHOUT
--- a/inst/import_ufl_LinearForm.m	Wed Sep 11 08:50:35 2013 +0200
+++ b/inst/import_ufl_LinearForm.m	Wed Sep 11 09:26:22 2013 +0200
@@ -1,8 +1,8 @@
-## Copyright (C) 2013 Marco Vassallo
+## Copyright (C) 2013 Marco Vassallo <gedeone-octave@users.sourceforge.net>
 ##
 ## This program is free software; you can redistribute it and/or modify it under
 ## the terms of the GNU General Public License as published by the Free Software
-## Foundation; either version 2 of the License, or (at your option) any later
+## Foundation; either version 3 of the License, or (at your option) any later
 ## version.
 ##
 ## This program is distributed in the hope that it will be useful, but WITHOUT
--- a/inst/import_ufl_Problem.m	Wed Sep 11 08:50:35 2013 +0200
+++ b/inst/import_ufl_Problem.m	Wed Sep 11 09:26:22 2013 +0200
@@ -1,8 +1,8 @@
-## Copyright (C) 2013 Marco Vassallo
+## Copyright (C) 2013 Marco Vassallo <gedeone-octave@users.sourceforge.net>
 ##
 ## This program is free software; you can redistribute it and/or modify it under
 ## the terms of the GNU General Public License as published by the Free Software
-## Foundation; either version 2 of the License, or (at your option) any later
+## Foundation; either version 3 of the License, or (at your option) any later
 ## version.
 ##
 ## This program is distributed in the hope that it will be useful, but WITHOUT