diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2021-03-31 07:37:43 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2021-03-31 07:37:43 +0000 |
commit | 759ea409fe884c184d51f81c73523015a468a1eb (patch) | |
tree | df4ba82f4118a4ac46c34a262f87f8ec26fdd240 /.copr/Makefile | |
parent | Adding upstream version 2.5.0+debian. (diff) | |
download | dnsperf-759ea409fe884c184d51f81c73523015a468a1eb.tar.xz dnsperf-759ea409fe884c184d51f81c73523015a468a1eb.zip |
Adding upstream version 2.5.2.upstream/2.5.2
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | .copr/Makefile | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/.copr/Makefile b/.copr/Makefile deleted file mode 100644 index 29ed0bc..0000000 --- a/.copr/Makefile +++ /dev/null @@ -1,23 +0,0 @@ -top=.. - -all: srpm - -prereq: $(top)/rpmbuild - rpm -q git rpm-build >/dev/null || dnf -y install git rpm-build - -update-dist-tools: $(top)/dist-tools - ( cd "$(top)/dist-tools" && git pull ) - -$(top)/dist-tools: - git clone https://github.com/jelu/dist-tools.git "$(top)/dist-tools" - -$(top)/rpmbuild: - mkdir -p "$(top)"/rpmbuild/{BUILD,RPMS,SOURCES,SPECS,SRPMS} - -srpm: prereq update-dist-tools - test -f .gitmodules && git submodule update --init || true - echo "$(spec)" | grep -q "develop.spec" && auto_build_number=`date --utc +%s` message="Auto build `date --utc --iso-8601=seconds`" "$(top)/dist-tools/spec-new-changelog-entry" || true - overwrite=yes nosign=yes "$(top)/dist-tools/create-source-packages" rpm - cp ../*.orig.tar.gz "$(top)/rpmbuild/SOURCES/" - echo "$(spec)" | grep -q "develop.spec" && rpmbuild -bs --define "%_topdir $(top)/rpmbuild" --undefine=dist rpm/*.spec || rpmbuild -bs --define "%_topdir $(top)/rpmbuild" --undefine=dist "$(spec)" - cp "$(top)"/rpmbuild/SRPMS/*.src.rpm "$(outdir)" |