Skip to content

Commit b1b7b7c

Browse files
committed
initial commit
1 parent db29b8e commit b1b7b7c

File tree

11,064 files changed

+1781785
-23
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

11,064 files changed

+1781785
-23
lines changed

.CondaPkg/env/bin/2to3

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
2to3-3.10

.CondaPkg/env/bin/2to3-3.10

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/Users/verzani/julia/SymPyCall/.CondaPkg/env/bin/python3.10
2+
import sys
3+
from lib2to3.main import main
4+
5+
sys.exit(main("lib2to3.fixes"))

.CondaPkg/env/bin/bunzip2

105 KB
Binary file not shown.

.CondaPkg/env/bin/bzcat

105 KB
Binary file not shown.

.CondaPkg/env/bin/bzcmp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
bzdiff

.CondaPkg/env/bin/bzdiff

Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
#!/bin/sh
2+
# sh is buggy on RS/6000 AIX 3.2. Replace above line with #!/bin/ksh
3+
4+
# Bzcmp/diff wrapped for bzip2,
5+
# adapted from zdiff by Philippe Troin <phil@fifi.org> for Debian GNU/Linux.
6+
7+
# Bzcmp and bzdiff are used to invoke the cmp or the diff pro-
8+
# gram on compressed files. All options specified are passed
9+
# directly to cmp or diff. If only 1 file is specified, then
10+
# the files compared are file1 and an uncompressed file1.gz.
11+
# If two files are specified, then they are uncompressed (if
12+
# necessary) and fed to cmp or diff. The exit status from cmp
13+
# or diff is preserved.
14+
15+
PATH="/usr/bin:/bin:$PATH"; export PATH
16+
prog=`echo $0 | sed 's|.*/||'`
17+
case "$prog" in
18+
*cmp) comp=${CMP-cmp} ;;
19+
*) comp=${DIFF-diff} ;;
20+
esac
21+
22+
OPTIONS=
23+
FILES=
24+
for ARG
25+
do
26+
case "$ARG" in
27+
-*) OPTIONS="$OPTIONS $ARG";;
28+
*) if test -f "$ARG"; then
29+
FILES="$FILES $ARG"
30+
else
31+
echo "${prog}: $ARG not found or not a regular file"
32+
exit 1
33+
fi ;;
34+
esac
35+
done
36+
if test -z "$FILES"; then
37+
echo "Usage: $prog [${comp}_options] file [file]"
38+
exit 1
39+
fi
40+
set $FILES
41+
if test $# -eq 1; then
42+
FILE=`echo "$1" | sed 's/.bz2$//'`
43+
bzip2 -cd "$FILE.bz2" | $comp $OPTIONS - "$FILE"
44+
STAT="$?"
45+
46+
elif test $# -eq 2; then
47+
case "$1" in
48+
*.bz2)
49+
case "$2" in
50+
*.bz2)
51+
F=`echo "$2" | sed 's|.*/||;s|.bz2$||'`
52+
tmp=`mktemp "${TMPDIR:-/tmp}"/bzdiff.XXXXXXXXXX` || {
53+
echo 'cannot create a temporary file' >&2
54+
exit 1
55+
}
56+
bzip2 -cdfq "$2" > "$tmp"
57+
bzip2 -cdfq "$1" | $comp $OPTIONS - "$tmp"
58+
STAT="$?"
59+
/bin/rm -f "$tmp";;
60+
61+
*) bzip2 -cdfq "$1" | $comp $OPTIONS - "$2"
62+
STAT="$?";;
63+
esac;;
64+
*) case "$2" in
65+
*.bz2)
66+
bzip2 -cdfq "$2" | $comp $OPTIONS "$1" -
67+
STAT="$?";;
68+
*) $comp $OPTIONS "$1" "$2"
69+
STAT="$?";;
70+
esac;;
71+
esac
72+
else
73+
echo "Usage: $prog [${comp}_options] file [file]"
74+
exit 1
75+
fi
76+
exit "$STAT"

.CondaPkg/env/bin/bzegrep

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
bzgrep

.CondaPkg/env/bin/bzfgrep

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
bzgrep

.CondaPkg/env/bin/bzgrep

Lines changed: 85 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
#!/bin/sh
2+
3+
# Bzgrep wrapped for bzip2,
4+
# adapted from zgrep by Philippe Troin <phil@fifi.org> for Debian GNU/Linux.
5+
## zgrep notice:
6+
## zgrep -- a wrapper around a grep program that decompresses files as needed
7+
## Adapted from a version sent by Charles Levert <charles@comm.polymtl.ca>
8+
9+
PATH="/usr/bin:$PATH"; export PATH
10+
11+
prog=`echo $0 | sed 's|.*/||'`
12+
case "$prog" in
13+
*egrep) grep=${EGREP-egrep} ;;
14+
*fgrep) grep=${FGREP-fgrep} ;;
15+
*) grep=${GREP-grep} ;;
16+
esac
17+
pat=""
18+
while test $# -ne 0; do
19+
case "$1" in
20+
-e | -f) opt="$opt $1"; shift; pat="$1"
21+
if test "$grep" = grep; then # grep is buggy with -e on SVR4
22+
grep=egrep
23+
fi;;
24+
-A | -B) opt="$opt $1 $2"; shift;;
25+
-*) opt="$opt $1";;
26+
*) if test -z "$pat"; then
27+
pat="$1"
28+
else
29+
break;
30+
fi;;
31+
esac
32+
shift
33+
done
34+
35+
if test -z "$pat"; then
36+
echo "grep through bzip2 files"
37+
echo "usage: $prog [grep_options] pattern [files]"
38+
exit 1
39+
fi
40+
41+
list=0
42+
silent=0
43+
op=`echo "$opt" | sed -e 's/ //g' -e 's/-//g'`
44+
case "$op" in
45+
*l*) list=1
46+
esac
47+
case "$op" in
48+
*h*) silent=1
49+
esac
50+
51+
if test $# -eq 0; then
52+
bzip2 -cdfq | $grep $opt "$pat"
53+
exit $?
54+
fi
55+
56+
res=0
57+
for i do
58+
if test -f "$i"; then :; else if test -f "$i.bz2"; then i="$i.bz2"; fi; fi
59+
if test $list -eq 1; then
60+
bzip2 -cdfq "$i" | $grep $opt "$pat" 2>&1 > /dev/null && echo $i
61+
r=$?
62+
elif test $# -eq 1 -o $silent -eq 1; then
63+
bzip2 -cdfq "$i" | $grep $opt "$pat"
64+
r=$?
65+
else
66+
j=$(echo "$i" | sed 's/\\/&&/g;s/|/\\&/g;s/&/\\&/g')
67+
j=`printf "%s" "$j" | tr '\n' ' '`
68+
# A trick adapted from
69+
# https://groups.google.com/forum/#!original/comp.unix.shell/x1345iu10eg/Nn1n-1r1uU0J
70+
# that has the same effect as the following bash code:
71+
# bzip2 -cdfq "$i" | $grep $opt "$pat" | sed "s|^|${j}:|"
72+
# r=${PIPESTATUS[1]}
73+
exec 3>&1
74+
eval `
75+
exec 4>&1 >&3 3>&-
76+
{
77+
bzip2 -cdfq "$i" 4>&-
78+
} | {
79+
$grep $opt "$pat" 4>&-; echo "r=$?;" >&4
80+
} | sed "s|^|${j}:|"
81+
`
82+
fi
83+
test "$r" -ne 0 && res="$r"
84+
done
85+
exit $res

.CondaPkg/env/bin/bzip2

105 KB
Binary file not shown.

0 commit comments

Comments
 (0)