ÿØÿà JFIF ÿÛ „ ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /proc/self/root/bin/ |
#!/bin/sh set -e case "${1}" in -h|--help) echo "Usage: ${0} [build.log | Koji-task-ID]" exit 0 ;; esac if [ ${#} -eq 0 ]; then cfg=$(basename $(readlink -f /etc/mock/default.cfg)) set "/var/lib/mock/${cfg%.cfg}/result/build.log" fi case "${1}" in [0-9][0-9][0-9][0-9][0-9][0-9][0-9]) cmd="curl -s" p="${1#???}" p="${p#0}" p="${p#0}" p="${p#0}" set "http://kojipkgs.fedoraproject.org/work/tasks/${p}/${1}/build.log" ;; *) if [ -f "${1}" ]; then cmd="cat" else echo "${0}: Unable to open file: ${1}" >&2 exit 1 fi ;; esac $cmd "${1}" \ | sed -n ' /^-----BEGIN MAVEN BUILD DEPENDENCIES-----$/ { :l n /^-----END MAVEN BUILD DEPENDENCIES-----$/ { s/.*// x s/\n//g p b } H bl }' \ | tail -1 \ | base64 -d \ | zcat \ | python /usr/share/java-utils/builddep.py /dev/stdin \ | sort -u \ | (echo maven-local && cat) \ | sed 's/./BuildRequires: &/' \