From 12d5882c56f28043652525e7d48660828c92341e0421ba8877a4a47035d530c9 Mon Sep 17 00:00:00 2001 From: Greg Freemyer Date: Thu, 12 Feb 2015 15:57:40 +0000 Subject: [PATCH] - remove buildall.sh file and spec file reference It is a remnant from a previous maintainer and is well out of date OBS-URL: https://build.opensuse.org/package/show/filesystems/ntfs-3g_ntfsprogs?expand=0&rev=25 --- buildall.sh | 48 --------------------------------------- ntfs-3g_ntfsprogs.changes | 6 +++++ ntfs-3g_ntfsprogs.spec | 1 - 3 files changed, 6 insertions(+), 49 deletions(-) delete mode 100644 buildall.sh diff --git a/buildall.sh b/buildall.sh deleted file mode 100644 index 9c66f1f..0000000 --- a/buildall.sh +++ /dev/null @@ -1,48 +0,0 @@ -# Script to build ntfs-3g for several distributions using osc, the opensuse -# buildservice client. Needs to be started from the checked-out directory -# of a project which provides needed packages, e.g. osc co home:benkai:ntfs/NTFS-3g -trap 2 exit -set -ex -#export BUILD_ROOT=/home/abuild/ntfs-3g-root -unset BUILD_DIST -export BUILD_ROOT=/dev/shm/ntfs-3g-root -while read platform arch; do - outdir=RPMS/$platform - if [ -d $outdir/$arch ]; then - echo "$outdir/$arch exist, next!" - continue - fi - echo $platform $arch - rm -rf $BUILD_ROOT - time osc build --no-verify --clean $platform $arch ntfs-3g.spec - mkdir -p $outdir/$arch-tmp - mv $BUILD_ROOT/usr/src/*/RPMS/*/*.rpm $outdir/$arch-tmp - mv $outdir/$arch-tmp $outdir/$arch -done <