X-Git-Url: http://lists.indexdata.dk/cgi-bin?a=blobdiff_plain;f=id-rpm-build%2Fupload-rpms.sh;h=7ef5b3dff67ebda127c66149cd5dd63acd6fe4f5;hb=ad25ca528498711ea7a9a597079c6ea008818557;hp=7b6c2092674af56c6bfdc7b3a8b476a46a22c416;hpb=5d930dcd5740d96078007ce010a0d475582f5ea7;p=git-tools-moved-to-github.git diff --git a/id-rpm-build/upload-rpms.sh b/id-rpm-build/upload-rpms.sh index 7b6c209..7ef5b3d 100755 --- a/id-rpm-build/upload-rpms.sh +++ b/id-rpm-build/upload-rpms.sh @@ -1,9 +1,9 @@ +#!/bin/sh PWD=`pwd` UPLOAD_PATH=${UPLOAD_PATH:=/home/ftp/pub} -UPLOAD_HOST=${UPLOAD_HOST:=kebab} -DISTRO=${DISTRO:="centos/5.5"} +UPLOAD_HOST=${UPLOAD_HOST:=ftp.indexdata.dk} specfile=$1 -if test ! -f ${specfile}; then +if test ! -f "${specfile}"; then echo "Missing .spec file argument." exit 1 fi @@ -11,9 +11,20 @@ if test ! -x /bin/rpm; then echo "$0: /bin/rpm missing. Install rpm" exit 1 fi +if test ! -f /etc/redhat-release; then + echo "/etc/redhat-release missing" + exit 1 +fi +if test -z "$DISTRO"; then + if grep 'release 6' /etc/redhat-release >/dev/null; then + DISTRO="centos/6" + else + DISTRO="centos/5.5" + fi +fi topdir=`rpm --eval "%{_topdir}"` BUILD_DIR=${BUILD_DIR:=${topdir}} -pkg_names=`rpm -q --specfile ${specfile}` +pkg_names=`rpm -q --specfile ${specfile} --queryformat "%{NAME}-%{VERSION}-%{RELEASE}\n"` pkg_short=`rpm -q --specfile ${specfile} --queryformat "%{NAME};" | cut -d ";" -f1` UPLOAD_DIR=${UPLOAD_DIR:=${pkg_short}} @@ -32,20 +43,22 @@ fi for pkg in ${pkg_names}; do if $inc_src; then - if test ! -f ${BUILD_DIR}/SRPMS/${pkg}.src.rpm; then - echo "No SRPM for ${pkg}" - else + if test -f ${BUILD_DIR}/SRPMS/${pkg}.src.rpm; then scp ${BUILD_DIR}/SRPMS/${pkg}.src.rpm ${UPLOAD_URI}/redhat/${DISTRO}/SRPMS/ - fi - fi + fi + fi if $inc_bin; then + copy=false for dir in ${BUILD_DIR}/RPMS/*; do arch=`basename ${dir}` if test -f ${dir}/${pkg}.${arch}.rpm; then + copy=true scp ${dir}/${pkg}.${arch}.rpm ${UPLOAD_URI}/redhat/${DISTRO}/RPMS/${arch}/ - else - echo "No ${pkg} in arch ${arch}" fi done + if ! $copy; then + echo "FAILED: No RPM copied for: ${pkg}" + exit 1 + fi fi done