- created OBS-URL: https://build.opensuse.org/request/show/635821 OBS-URL: https://build.opensuse.org/package/show/science/python-pcl?expand=0&rev=1
16 lines
357 B
Bash
16 lines
357 B
Bash
#! /bin/bash
|
|
|
|
NAME=python-pcl
|
|
git clone --depth 1 https://github.com/strawlab/$NAME/ ${NAME}
|
|
osc rm $NAME-*.tar.bz2
|
|
pushd ${NAME}
|
|
date=`date +"%Y%m%d"`
|
|
VER="0.3.1_$date"
|
|
ARC=$NAME-$VER.tar.bz2
|
|
git archive master --prefix "$NAME-$VER/" | bzip2 >../$ARC
|
|
popd
|
|
echo "New revision $VER"
|
|
sed -i "s/\(Version: \+\).\+/\1$VER/" $NAME.spec
|
|
rm -rf $NAME
|
|
osc add $ARC
|