]> https://gitweb.dealii.org/ - dealii-svn.git/commitdiff
Remove now outdated files
authorbangerth <bangerth@0785d39b-7218-0410-832d-ea1e28bc413d>
Fri, 7 Sep 2007 00:20:33 +0000 (00:20 +0000)
committerbangerth <bangerth@0785d39b-7218-0410-832d-ea1e28bc413d>
Fri, 7 Sep 2007 00:20:33 +0000 (00:20 +0000)
git-svn-id: https://svn.dealii.org/branches/Branch-6-0@15147 0785d39b-7218-0410-832d-ea1e28bc413d

deal.II/common/scripts/cvs-create-branch [deleted file]
deal.II/common/scripts/update-branch [deleted file]

diff --git a/deal.II/common/scripts/cvs-create-branch b/deal.II/common/scripts/cvs-create-branch
deleted file mode 100755 (executable)
index cc525d5..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-#!/bin/sh
-
-if (test ! -r configure -a ! -d deal.II); then
-       echo Please call in deal.II home directory
-       exit 1
-fi
-
-if (test ! -d tests); then
-    echo Please checkout tests in order to tag consistently
-fi
-
-CVS='cvs'
-
-######################################################################
-# Create a branch for a new release.
-######################################################################
-# Invocation
-#  cvs-create-branch major minor
-#    where major and minor are the two leftmost release numbers
-######################################################################
-# 1. Create base tag
-######################################################################
-
-$CVS tag Base-$1-$2
-
-######################################################################
-# 2. Create branch tag
-######################################################################
-
-$CVS tag -r Base-$1-$2 -b Branch-$1-$2
-
-######################################################################
-# 3. Remove sensitive files and directories from branch
-######################################################################
-
-$CVS tag -d Branch-$1-$2 doc/RELEASE
diff --git a/deal.II/common/scripts/update-branch b/deal.II/common/scripts/update-branch
deleted file mode 100644 (file)
index 8183090..0000000
+++ /dev/null
@@ -1,46 +0,0 @@
-# This script checks all CVS/Entries recursively and extracts all
-# filenames (including path), where the file is part of the branch.
-
-# The branch is given as command line argument to the script.
-
-# The result is a shell script that, applied to a directory with the head
-# revision, moves all files found to the branch.
-
-# provide directory to check as argument.
-
-sub get_directory
-{
-    my $dir = shift(@_);
-    my $direntry;
-    local *DIR;
-#    printf STDERR "$dir\n";
-    # recursion
-    opendir DIR, ".";
-    while($direntry = readdir(DIR))
-    {
-       if (-d $direntry)
-       {
-           next if ($direntry eq '.' or $direntry eq '..' or $direntry eq 'CVS');
-           $newdir = $dir . '/' . $direntry;
-           chdir $direntry;
-           get_directory($newdir);
-           chdir '..';
-       }
-    }
-    closedir DIR;
-
-    # find Entries in branch
-
-    open ENTRIES, "CVS/Entries";
-    while(<ENTRIES>)
-    {
-       printf "cvs update -r $branch $dir/$1\n" if (m!^/([^/]+)/.*/T$branch!);
-    }
-    close ENTRIES;
-}
-
-$branch = @ARGV[0];
-
-printf STDERR "Retrieving branch: %s\n", $branch;
-
-get_directory(".");

In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.