mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-12 11:10:07 +00:00
22 lines
524 B
Bash
Executable file
22 lines
524 B
Bash
Executable file
#!/usr/local/plan9/bin/rc
|
|
|
|
cd /scratch/rsc/plan9
|
|
cvs up -dAP
|
|
cd dist; ./mkfilelist >filelist
|
|
cp filelist /usr/local/plan9/dist
|
|
cd /usr/local/plan9/dist/debian
|
|
|
|
rm -rf dists pool
|
|
mkdir -p dists pool
|
|
./mkpkg all
|
|
mkdir other
|
|
cp other/*.deb pool
|
|
d=dists/testing/main/binary-i386
|
|
mkdir -p $d
|
|
apt-ftparchive packages pool |tee $d/Packages |gzip >$d/Packages.gz
|
|
cp Release.testing $d/Release
|
|
{
|
|
cat Release.top
|
|
apt-ftparchive release dists/testing
|
|
} >dists/testing/Release
|
|
echo rsync -r dists pool swtch.com:www/swtch.com/debian
|