diff options
| author | François Andriot <albator78@libertysurf.fr> | 2022-05-18 21:29:06 +0200 |
|---|---|---|
| committer | François Andriot <albator78@libertysurf.fr> | 2022-05-20 09:47:49 +0200 |
| commit | 8ce6a8a0d41af3f4b0f28a196d70426e787d4cda (patch) | |
| tree | 5d253d308d00af2b36d4d261382fbc43675aec7e /redhat/build/get_source_files.sh | |
| parent | 2cf0d83f758ab912896d358640b1ccaf6dd39949 (diff) | |
| download | tde-packaging-8ce6a8a0.tar.gz tde-packaging-8ce6a8a0.zip | |
RPM: update build scripts
Signed-off-by: François Andriot <albator78@libertysurf.fr>
Diffstat (limited to 'redhat/build/get_source_files.sh')
| -rwxr-xr-x | redhat/build/get_source_files.sh | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/redhat/build/get_source_files.sh b/redhat/build/get_source_files.sh index d262fccf3..5a7a49ac0 100755 --- a/redhat/build/get_source_files.sh +++ b/redhat/build/get_source_files.sh @@ -8,13 +8,12 @@ DIST="$3" SPECFILE=$(get_specfile.sh ${PKGNAME} ${TDE_VERSION}) SPECDIR="${SPECFILE%/*}" RPMPKGNAME="$(get_rpm_package_name.sh ${PKGNAME})" - [ ! -r "${SPECFILE}" ] && exit 2 while read var val; do case "${var}" in Version:*) VERSION="${val}";; - Source[0-9]*:|Source:|Patch[0-9]*:) + Source*:|Source:|Patch[0-9]*:) FILE="${SPECDIR}/${val##*/}" if [ "${DIST}" = "any" ] && [ "${var//%\{?dist\}/}" = "${var}" ]; then FILES="${FILE//%\{?dist\}/.}"* @@ -23,12 +22,15 @@ while read var val; do fi for FILE in $FILES; do - file=$(rpm --define "tde_pkg ${PKGNAME}" \ - --define "tde_version ${TDE_VERSION}" \ - --define "name ${RPMPKGNAME}" \ - --define "version ${VERSION}" \ - --define "dist ${DIST:-$(rpm -E %dist)}" \ - -E "${FILE}") + for name in ${RPMPKGNAME} ${PKGNAME} trinity-${PKGNAME}; do + file=$(rpm --define "tde_pkg ${PKGNAME}" \ + --define "tde_version ${TDE_VERSION}" \ + --define "name ${name}" \ + --define "version ${VERSION}" \ + --define "dist ${DIST:-$(rpm -E %dist)}" \ + -E "${FILE}") + [ -r "${file}" ] && break + done [ -r "${file}" ] && echo "${file}" done ;; |
