ceph/build_upload_debian_packages.sh

21 lines
473 B
Bash
Raw Normal View History

#!/bin/sh
2009-02-24 22:21:25 +00:00
vers=`grep AM_INIT_AUTOMAKE configure.ac | head -1 | cut '-d ' -f 2 | sed 's/)//'`
echo vers $vers
repo=$1
2009-02-24 22:13:37 +00:00
arch=$2
2009-02-24 22:21:25 +00:00
rm -r ceph-$vers
make dist
tar zxvf ceph-*.tar.gz
2009-02-24 22:21:25 +00:00
cd ceph-$vers
./autogen.sh
dpkg-buildpackage -rfakeroot
cd ..
2009-02-24 22:13:37 +00:00
rsync -v --progress *$arch.{deb,changes} ceph.newdream.net:debian/dists/$repo/main/binary-$arch
rsync -v --progress ceph_* ceph.newdream.net:debian/dists/$repo/main/source
# rebuild index
ssh ceph.newdream.net build_debian_repo.sh