diff options
author | Carlos Corbacho <carlos@strangeworlds.co.uk> | 2010-05-11 22:22:46 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-11 22:22:46 +0200 |
commit | 813c5003a8bd689dc4c78d6f98f2100b83de19ec (patch) | |
tree | 292043094ec2579078469fec3f058f8f91c1a2af /development/stgit | |
parent | f44e9d9541e28b6468c1779d78d10e32a474d021 (diff) |
development/stgit: Updated for version 0.14.3
Diffstat (limited to 'development/stgit')
-rw-r--r-- | development/stgit/README | 3 | ||||
-rw-r--r-- | development/stgit/stgit.SlackBuild | 45 | ||||
-rw-r--r-- | development/stgit/stgit.info | 6 |
3 files changed, 10 insertions, 44 deletions
diff --git a/development/stgit/README b/development/stgit/README index 0f2a404f9237..888d8142fc8a 100644 --- a/development/stgit/README +++ b/development/stgit/README @@ -3,6 +3,3 @@ Quilt (i.e. pushing/popping patches to/from a stack) on top of GIT. These operations are performed using GIT commands and the patches are stored as GIT commit objects, allowing easy merging of the StGIT patches into other repositories using standard GIT functionality. - -If you are building this on Slamd64, execute the build script as follows: - DISTRO=slamd64 ./stgit.SlackBuild
\ No newline at end of file diff --git a/development/stgit/stgit.SlackBuild b/development/stgit/stgit.SlackBuild index ce5ce000c713..6b8a24c90a51 100644 --- a/development/stgit/stgit.SlackBuild +++ b/development/stgit/stgit.SlackBuild @@ -23,30 +23,22 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PKGNAM=stgit -VERSION=${VERSION:-0.14.1} +VERSION=${VERSION:-0.14.3} ARCH=noarch BUILD=${BUILD:-1} TAG=${TAG:-_SBo} CWD=$(pwd) TMP=${TMP:-/tmp/SBo} -PKG=$TMP/package-$PRGNAM +PKG=$TMP/package-$PKGNAM OUTPUT=${OUTPUT:-/tmp} -DISTRO=${DISTRO:-slackware} - -if [ $DISTRO = slackware ]; then - PKGARCH=$ARCH -else - PKGARCH=${ARCH}_${DISTRO} -fi - rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT -cd $TMP +cd $TMP || exit 1 rm -rf $PKGNAM-$VERSION tar xvf $CWD/$PKGNAM-$VERSION.tar.gz || exit 1 -cd $PKGNAM-$VERSION +cd $PKGNAM-$VERSION || exit 1 chown -R root:root . find . \ \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ @@ -57,42 +49,19 @@ find . \ python setup.py \ install \ --prefix=/usr \ - --root="$PKG" + --root="$PKG" \ + || exit 1 rm -rf $PKG/usr/share/doc - mkdir -p $PKG/usr/doc/$PKGNAM-$VERSION cp -a AUTHORS COPYING ChangeLog README $PKG/usr/doc/$PKGNAM-$VERSION chmod 0644 $PKG/usr/doc/$PKGNAM-$VERSION/* -# Compress and link manpages, if any: -if [ -d $PKG/usr/man ]; then - ( cd $PKG/usr/man - for manpagedir in $(find . -type d -name "man*") ; do - ( cd $manpagedir - for eachpage in $( find . -type l -maxdepth 1) ; do - ln -s $( readlink $eachpage ).gz $eachpage.gz - rm $eachpage - done - gzip -9 *.? - ) - done - ) -fi - -# Compress info files, if any: -if [ -d $PKG/usr/info ]; then - ( cd $PKG/usr/info - rm -f dir - gzip -9 * - ) -fi - mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc cd $PKG -/sbin/makepkg -l y -c n $OUTPUT/$PKGNAM-$VERSION-$PKGARCH-$BUILD$TAG.tgz +/sbin/makepkg -l y -c n $OUTPUT/$PKGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz # Clean up the extra stuff: if [ "$1" = "--cleanup" ]; then diff --git a/development/stgit/stgit.info b/development/stgit/stgit.info index e118d23ad086..45625135e75e 100644 --- a/development/stgit/stgit.info +++ b/development/stgit/stgit.info @@ -1,8 +1,8 @@ PRGNAM="stgit" -VERSION="0.14.1" +VERSION="0.14.3" HOMEPAGE="http://procode.org/stgit/" -DOWNLOAD="http://homepage.ntlworld.com/cmarinas/stgit/stgit-0.14.1.tar.gz" -MD5SUM="e95e5ccf5e8372a5e1c4e4d09b1171cf" +DOWNLOAD="http://homepage.ntlworld.com/cmarinas/stgit/stgit-0.14.3.tar.gz" +MD5SUM="84447155c0a86fae795928a581dc22bd" MAINTAINER="Carlos Corbacho" EMAIL="carlos@strangeworlds.co.uk" APPROVED="rworkman" |