Scripts: deb64 upload

git-svn-id: svn://ultimatepp.org/upp/trunk@1100 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2009-04-26 16:34:44 +00:00
parent d60e6b538c
commit 830c76aeef
2 changed files with 57 additions and 52 deletions

View file

@ -1,6 +1,10 @@
file
win,
www,
deb64,
idebuild,
uppdeb,
uppnighty2deb,
src,
all,
GCCMK.bm,

View file

@ -1,52 +1,53 @@
#!/bin/bash
# dostable
# quick go to create deb package from my stable repo
#
#################################################################
# REPLACE VALUES WITH YOUR OWN #
# SVN repository full path
NIGHTY_PATH="~/upp.tmp/u"
#
# Destination path for generated debian
DEST_PATH="~/upload"
#
# Mantainer name and email
export MAINTAINER="Massimo Del Fedele"
#
export EMAIL="max@veneto.com"
#################################################################
#
# checks if nighty repo and destination path are ok
if [ ! -d $NIGHTY_PATH/uppsrc ]
then
echo "ERROR - UPP path not found in '$NIGHTY_PATH'"
echo "Please modify current script to fit your Upp development path"
exit 1
fi
if [ ! -d $DEST_PATH ]
then
echo "ERROR - Invalid destinatio path '$DEST_PATH'"
echo "Please modify current script to fit your destination path"
exit 1
fi
#locates 'uppnighty2deb' script - first try on path
uppnighty2deb="`which uppnighty2deb`"
if [ x$uppnighty2deb = x ]
then
# couldn't find it on path, just try on this script's path
LSOF=$(lsof -p $$ 2>/dev/null | grep -E "/"$(basename $0)"$")
uppnighty2deb=$(echo $LSOF | sed -r s/'^([^\/]+)\/'/'\/'/1 2>/dev/null)
uppnighty2deb=$(dirname $uppnighty2deb)/uppnighty2deb
fi
if [ ! -f $uppnighty2deb ]
then
echo "ERROR - Could not find 'uppnighty2deb' script"
echo "Please check if it's on current path"
exit 1
fi
#just run uppnighty2deb with my params
$uppnighty2deb $NIGHTY_PATH $DEST_PATH
#!/bin/bash
# dostable
# quick go to create deb package from my stable repo
#
#################################################################
# REPLACE VALUES WITH YOUR OWN #
# SVN repository full path
NIGHTY_PATH="~/upp.tmp/u"
#
# Destination path for generated debian
DEST_PATH="~/upload"
#
# Mantainer name and email
export MAINTAINER="Massimo Del Fedele"
#
export EMAIL="max@veneto.com"
#################################################################
#
# checks if nighty repo and destination path are ok
if [ ! -d $NIGHTY_PATH/uppsrc ]
then
echo "ERROR - UPP path not found in '$NIGHTY_PATH'"
echo "Please modify current script to fit your Upp development path"
exit 1
fi
if [ ! -d $DEST_PATH ]
then
echo "ERROR - Invalid destinatio path '$DEST_PATH'"
echo "Please modify current script to fit your destination path"
exit 1
fi
#locates 'uppnighty2deb' script - first try on path
uppnighty2deb="`which uppnighty2deb`"
if [ x$uppnighty2deb = x ]
then
# couldn't find it on path, just try on this script's path
LSOF=$(lsof -p $$ 2>/dev/null | grep -E "/"$(basename $0)"$")
uppnighty2deb=$(echo $LSOF | sed -r s/'^([^\/]+)\/'/'\/'/1 2>/dev/null)
uppnighty2deb=$(dirname $uppnighty2deb)/uppnighty2deb
fi
if [ ! -f $uppnighty2deb ]
then
echo "ERROR - Could not find 'uppnighty2deb' script"
echo "Please check if it's on current path"
exit 1
fi
#just run uppnighty2deb with my params
$uppnighty2deb $NIGHTY_PATH $DEST_PATH
~/bin/upload