[SCM] FreeFem++ packaging branch, master, updated. debian/3.13.1-1-6-ga29ab44

Sylvestre Ledru sylvestre.ledru at scilab.org
Mon Jun 13 18:20:14 UTC 2011


The following commit has been merged in the master branch:
commit a7f8dae111fa928644d9dd27df9046075322234a
Author: Sylvestre Ledru <sylvestre.ledru at scilab.org>
Date:   Mon Jun 13 19:28:45 2011 +0200

    Temporary files removed

diff --git a/.pc/.quilt_patches b/.pc/.quilt_patches
deleted file mode 100644
index 6857a8d..0000000
--- a/.pc/.quilt_patches
+++ /dev/null
@@ -1 +0,0 @@
-debian/patches
diff --git a/.pc/.quilt_series b/.pc/.quilt_series
deleted file mode 100644
index c206706..0000000
--- a/.pc/.quilt_series
+++ /dev/null
@@ -1 +0,0 @@
-series
diff --git a/.pc/.version b/.pc/.version
deleted file mode 100644
index 0cfbf08..0000000
--- a/.pc/.version
+++ /dev/null
@@ -1 +0,0 @@
-2
diff --git a/.pc/applied-patches b/.pc/applied-patches
deleted file mode 100644
index 467e73a..0000000
--- a/.pc/applied-patches
+++ /dev/null
@@ -1,2 +0,0 @@
-examples-bamg-test-dotest-pl.patch
-examples-load-WHERE-LIBRARY.patch
diff --git a/.pc/examples-bamg-test-dotest-pl.patch/.timestamp b/.pc/examples-bamg-test-dotest-pl.patch/.timestamp
deleted file mode 100644
index e69de29..0000000
diff --git a/.pc/examples-bamg-test-dotest-pl.patch/examples-bamg/test/dotest.pl b/.pc/examples-bamg-test-dotest-pl.patch/examples-bamg/test/dotest.pl
deleted file mode 100755
index 3c307b0..0000000
--- a/.pc/examples-bamg-test-dotest-pl.patch/examples-bamg/test/dotest.pl
+++ /dev/null
@@ -1,168 +0,0 @@
-#!/usr/local/bin/perl
-# -----  clean ---
-unlink <*.mesh>;
-unlink <*.am_fmt>;
-unlink <*.mtr>;
-unlink <*.bb>;
-unlink <*.BB>;
-unlink <YG_trace*>;
-unlink 'PLOT';
-
-##$f="10 +  1/(1+ 100**(sin(x*3)-y)) ";
-#$f1 = "(10*x*x*x+y*y*y) + 10/(1+10**(10*((sin(5*x)-2*y)))) ";
-$f1=" sin(3*x)*cos(5*y)+ atan2(0.001,x**2 + y**2 - 0.5 )";
-#$f1=" 8*(x-y)**2 + (x+y)**2";
-
-$err=0.1;
-$errg=0.01;
-$nbiteration=10;
-$bamg=$ENV{'bamg'};
-$quadoption="";
-$bamgoption=" -AbsError -NbJacobi 2  -NbSmooth 5 -anisomax 5 -hmax 0.5   -ratio 2  -nbv 100000 ";
-#$bamgoption=" -AbsError -NbJacobi 3  -ratio 2 -anisomax 30";
-#$quadoption=" -2q -thetaquad 30 -coef 2";
-
-# ---  change x in $x and y in $y 
-$_=$f1;
-s/x/\$x/g;
-s/y/\$y/g;
-$f1="$_;";
-
-print "The function = f1(x,y) = $f1 \n";
-
-#--------------------------
-$suffixe=".mesh";
-$iteration=0;
-$GH="Gh$suffixe";
-$TH="Th$iteration$suffixe";
-$, = ' ';               # set output field separator
-$\ = "\n";              # set output record separator
-##  -------------------------------------------------------------
-##  --- construction the Geometry file Gh.mesh 
-
-##    8 points on circle of radius r 
-open(GH,">$GH")  || die "Can't redirect stdout";
-$Pi = 3.14159265358979;
-
-$i8 = 8;
-$r = 1;
-$c0x = 0;
-$c0y = 0;
-print GH 'Dimension', 2;
-print GH 'MaximalAngleOfCorner 46';
-
-print GH 'Vertices';
-print GH   $i8;
-
-# vertex on circle  (counter clock wise)
-for ($i = 0; $i < $i8; $i++) {
-    $t = $i * $Pi * 2 / $i8;
-    print GH $c0x + $r * (cos($t)), $c0y + $r * sin($t), 5;
-}
-
-print GH 'Edges',  $i8+1;
-
-print GH 1,5,10;
-# edge on circle 
-$k =  1;
-$j = $i8 - 1;
-# previous points
-for ($i = 0; $i < $i8; $j = $i++) {
-    print GH $k + $j, $k + $i, 5;
-}
-# previous, current vertex
-
-#   one subdomain, region on left side of the wing
-#   because clock wise sens.
-print GH 'SubDomain', 2;
-print GH 2, 1, 1, 0;
-print GH 2, 1, -1, 1;
-close GH;
-##  -------------- END construct of the geom 
-## 
-
-# -- make the DATA file for the mesh to also  save the arguments 
-open(BAMG,">DATA_bamg")  || die "Can't open  DATA_bamg";
-print BAMG "$quadoption $bamgoption  -g $GH -o $TH  -v 9 -oam_fmt $TH.am_fmt";
-close(BAMG);
-
-## constructio the inital  mesh 
-!system($bamg) || die "Error in bamg construction of initial  mesh $Th";
-
-##  the adpatation loop 
-while ($iteration<$nbiteration) {
-
-    
-
-    $BB="$iteration.BB";   
-    $ERRBB="err$iteration.bb";   
-
-    
-##  construction of the solution  
-    $errsol=0;
-    open (TH,"<$TH") ||  die "Can't open  $TH";
-    open (BB,">$BB") ||  die "Can't open  $BB";
-    open (ERRBB,">$ERRBB") ||  die "Can't open  $ERRBB";
-
-
-    while (<TH>) {
-	if(/^Vertices$/) {
-	    $nbv=<TH>;
-	    chop($nbv);
-	    print BB "2 1 1 $nbv 2";
-
-	    for ($i=1;$i<=$nbv;$i++) {
-		($x,$y,$ref)=split(/[\ \t\n]+/, <TH>);
-		$f1xy=eval $f1;
-
-		$xx[$i]=$x;
-		$yy[$i]=$y;
-		$ff[$i]=$f1xy;
-
-
-		print BB $f1xy ;
-
-	    };
-	};
-	if(/^Triangles$/) {
-	    $nbt=<TH>;
-	    chop($nbt);
-	    print " Nb of Triangles = $nbt \n";
-	    print ERRBB "2 1 $nbt 1";
-	    for ($i=1;$i<=$nbt;$i++) {
-		($i0,$i1,$i2,$ref)=split(/[\ \t\n]+/, <TH>);
-
-		$x   = ($xx[$i0]+$xx[$i1]+$xx[$i2])/3;
-		$y   = ($yy[$i0]+$yy[$i1]+$yy[$i2])/3;
-		$fm  = ($ff[$i0]+$ff[$i1]+$ff[$i2])/3;
-		$fxy = eval $f1;
-		$vv=($fm-$fxy);
-		$vv= ($vv<0)?-$vv:$vv;
-		print ERRBB $vv;
-		$errsol = ($errsol>$vv) ? $errsol : $vv;
-	    };
-	};
-
-    };
-    close TH;
-    close BB;
-    close ERRBB;
-    print " ---------------------------------------------\n";
-    print "\n\n Iteration $iteration\n Erreur L_infini = $errsol \n\n";
-    print " ---------------------------------------------\n";
-
-##  -----------------------
-    
-    $MTR="M$iteration.mtr";
-
-    $iteration++;
-    $BTH=$TH;
-    $TH="Th$iteration$suffixe";
-
-    open(BAMG,">DATA_bamg")  || die "Can't open  DATA_bamg";
-    print BAMG "$quadoption  $bamgoption  -MBB $BB -errg $errg -err $err   -b $BTH -o $TH  -v 9 -oM $MTR -oam_fmt $TH.am_fmt -wBB /tmp/tyty ";
-    close(BAMG);
-    !system($bamg) ||    die "Error in bamg construction of adapted $iteration  mesh $Th";
-}
-
-print "Normal End\n";
diff --git a/.pc/examples-bamg-test-dotest-pl.patch/examples-load-WHERE-LIBRARY.patch b/.pc/examples-bamg-test-dotest-pl.patch/examples-load-WHERE-LIBRARY.patch
deleted file mode 100644
index e69de29..0000000
diff --git a/.pc/examples-load-WHERE-LIBRARY.patch/.timestamp b/.pc/examples-load-WHERE-LIBRARY.patch/.timestamp
deleted file mode 100644
index e69de29..0000000
diff --git a/.pc/examples-load-WHERE-LIBRARY.patch/examples++-load/WHERE_LIBRARY b/.pc/examples-load-WHERE-LIBRARY.patch/examples++-load/WHERE_LIBRARY
deleted file mode 100644
index e69de29..0000000
diff --git a/debian/.directory b/debian/.directory
deleted file mode 100644
index 81a6a70..0000000
--- a/debian/.directory
+++ /dev/null
@@ -1,3 +0,0 @@
-[Dolphin]
-Timestamp=2011,4,25,0,35,54
-Version=2
diff --git a/debian/.pc/.quilt_patches b/debian/.pc/.quilt_patches
deleted file mode 100644
index 4baccb8..0000000
--- a/debian/.pc/.quilt_patches
+++ /dev/null
@@ -1 +0,0 @@
-patches
diff --git a/debian/.pc/.quilt_series b/debian/.pc/.quilt_series
deleted file mode 100644
index c206706..0000000
--- a/debian/.pc/.quilt_series
+++ /dev/null
@@ -1 +0,0 @@
-series
diff --git a/debian/.pc/.version b/debian/.pc/.version
deleted file mode 100644
index 0cfbf08..0000000
--- a/debian/.pc/.version
+++ /dev/null
@@ -1 +0,0 @@
-2
diff --git a/debian/.pc/applied-patches b/debian/.pc/applied-patches
deleted file mode 100644
index 253bc59..0000000
--- a/debian/.pc/applied-patches
+++ /dev/null
@@ -1 +0,0 @@
-examples-load-WHERE-LIBRARY.patch
diff --git a/debian/.pc/examples-load-WHERE-LIBRARY.patch/.timestamp b/debian/.pc/examples-load-WHERE-LIBRARY.patch/.timestamp
deleted file mode 100644
index e69de29..0000000
diff --git a/debian/.pc/examples-load-WHERE-LIBRARY.patch/examples++-load/WHERE_LIBRARY b/debian/.pc/examples-load-WHERE-LIBRARY.patch/examples++-load/WHERE_LIBRARY
deleted file mode 100644
index e69de29..0000000

-- 
FreeFem++ packaging



More information about the debian-science-commits mailing list