Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
openfoam
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Development
openfoam
Commits
aad21d45
Commit
aad21d45
authored
17 years ago
by
Mark Olesen
Browse files
Options
Downloads
Patches
Plain Diff
removed junk files
parent
b5ee242d
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
bin/#foamPackBin#
+0
-98
0 additions, 98 deletions
bin/#foamPackBin#
bin/doxyClassPatch
+0
-103
0 additions, 103 deletions
bin/doxyClassPatch
with
0 additions
and
201 deletions
bin/#foamPackBin#
deleted
100755 → 0
+
0
−
98
View file @
b5ee242d
#!/bin/sh
#------------------------------------------------------------------------------
# ========= |
# \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
# \\ / O peration |
# \\ / A nd | Copyright (C) 1991-2007 OpenCFD Ltd.
# \\/ M anipulation |
#-------------------------------------------------------------------------------
# License
# This file is part of OpenFOAM.
#
# OpenFOAM 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 version.
#
# OpenFOAM 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 OpenFOAM; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#
# Script
# foamPackBin <arch> [outputDir]
#
# Description
# Packs and compresses binary version of OpenFOAM for release
#
#------------------------------------------------------------------------------
if
[
$#
=
0
]
then
echo
"Error: architecture type expected, exiting"
echo
echo
"Usage :
${
0
##*/
}
<arch> [outputDir]"
echo
exit
1
fi
arch
=
$1
timeStamp
=
$(
date
+%Y-%m-%d
)
packDir
=
$WM_PROJECT
-
$WM_PROJECT_VERSION
packFile
=
${
packDir
}
.
${
arch
}
_
${
timeStamp
}
.gtgz
# add optional output directory
if
[
-d
"
$2
"
]
then
packFile
=
"
$2
/
$packFile
"
fi
if
[
-f
$packFile
]
then
echo
"Error:
$packFile
already exists"
exit
1
fi
# check for essential directories
for
dir
in
$packDir
$packDir
/lib/
$arch
$packDir
/applications/bin/
$arch
do
if
[
!
-d
$dir
]
then
echo
"Error: directory
$dir
does not exist"
exit
1
fi
done
# get list of directories
dirList
=
$(
for
dir
in
\
$packDir
/lib/
$arch
\
$packDir
/applications/bin/
$arch
\
$packDir
/wmake/rules
\
$packDir
/src/
{
mico,mpich,lam,openmpi
}
-
*
/platforms/
$arch
\
$packDir
/src/
{
mico,mpich,lam,openmpi
}
-
*
/platforms/
$arch
\
;
do
[
-d
$dir
]
&&
echo
$dir
done
)
echo
echo
"Packing
$arch
port of
$packDir
into
$packFile
"
echo
tar
czpf
$packFile
$dirList
if
[
$?
=
0
]
then
echo
"Finished packing and compressing file
$packFile
"
else
echo
"Error: failure packing
$packFile
"
rm
-f
$packFile
2>/dev/null
fi
#------------------------------------------------------------------------------
This diff is collapsed.
Click to expand it.
bin/doxyClassPatch
deleted
100755 → 0
+
0
−
103
View file @
b5ee242d
#!/bin/sh
# -----------------------------------------------------------------------------
# ========= |
# \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
# \\ / O peration |
# \\ / A nd | Copyright (C) 1991-2007 OpenCFD Ltd.
# \\/ M anipulation |
# ------------------------------------------------------------------------------
# License
# This file is part of OpenFOAM.
#
# OpenFOAM 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 version.
#
# OpenFOAM 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 OpenFOAM; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#
# Script
# doxyClassPatch
#
# Description
# search for header files and fix up 'Class' section for doxygen
#
# change:
# |Class
# | className
# ->
# |Class
# | Foam::className
#
# change:
# |Class
# |
# ->
# |Class
# | Foam::(basename)
#
# leave untouched:
# |Class
# | Foam...
# and
# |Class
# | Namespace::className
#
#
# -----------------------------------------------------------------------------
backup
=
.unclassified
remove
=
no
for
search
do
for
file
in
$(
find
-H
$search
\
-type
f
-name
"*.H"
\
-exec
perl
-ne
\
'if (/^Class\s*$/) { $_ = <>; /(^\s*Foam|::)/ or print "$ARGV\n"; exit 0; }'
\
\{\}
\;
)
do
perl
-i
$backup
-x
$0
$file
if
[
-f
$file$backup
]
then
[
$file
-nt
$file$backup
]
&&
touch
-r
$file$backup
$file
[
"
$remove
"
=
yes
]
&&
/bin/rm
$file$backup
2>/dev/null
fi
done
done
exit
0
# ---------------------------------------------------------------- end-of-file
# embedded Perl program
#!/usr/bin/perl -wp
use strict
;
my
$namespace
=
"Foam::"
;
(
my
$class
=
$ARGV
)
=
~ s
{
^.
*
/|
\.
[
A-Za-z]
$}
{}
g
;
if
(
/^Class
\s
*
$/
)
{
print
;
$_
=
<
>
;
# provide a reasonable guess for empty classes
if
(
/^
\s
*
$/
)
{
$_
=
"
$namespace$class
\n
"
;
warn
"modified
$ARGV
\n
"
;
}
elsif
(
not /
(
^
\s
*
Foam|::
)
/
)
{
s
{
^
\s
+|
\s
*
$}
{}
g
;
$_
=
"
$namespace$_
\n
"
;
warn
"modified
$ARGV
\n
"
;
}
}
# ---------------------------------------------------------------- end-of-file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment