This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/python3 | |
import time | |
from glob import glob | |
from specfile import Specfile | |
OK_MACRO_DEPS = [ | |
'__make', | |
'__perl', | |
] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/sh | |
# logrotate-friendly-log-pipe <output-log-file> | |
# | |
# Pipe logs to the <output-log-file>. Reopen the file upon the SIGHUP signal. | |
# | |
# This is especially useful when a multi-process Lighttpd server is used (with | |
# the 'server.max-workers = N' option), and use of Cronolog is not desirable: | |
# https://redmine.lighttpd.net/projects/1/wiki/Server_max-workerDetails | |
# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/sh | |
# GPLv3+ | |
images=' | |
centos/postgresql-95-centos7:9.5 | |
centos/postgresql-94-centos7:9.4 | |
' | |
wait_for= |