blob: e86739b6c9bccde949c1737f300121d39624b5e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
## vim:ft=zsh
echo "# setting up PKG_ROOT"
cd $test_proot
git clone ${1-git://git.tabularazor.org/~derf/pkg} core
cp core/include/pkglist pkglist
for repo in ra rb rc; (
mkdir $repo
cd $repo
git init
git config receive.denyCurrentBranch ignore
touch foo
mkdir bin
touch bin/$repo
mkdir -p man/2
echo "=head1 WASTED SPACE\n\nhuhu" > man/2/$repo
chmod 755 bin/$repo
echo 'touch ~/prereq_ok_'$repo > prereqs
git add .
git commit -m 'initial commit'
cd ..
mkdir ${repo}-bare
cd ${repo}-bare
git --bare init
cd ../$repo
git push ../${repo}-bare master
)
|