Add COPR integration Makefile
authorJonathan Lebon <jonathan@jlebon.com>
Thu, 3 Feb 2022 18:25:07 +0000 (13:25 -0500)
committerJonathan Lebon <jonathan@jlebon.com>
Thu, 3 Feb 2022 18:34:20 +0000 (13:34 -0500)
I'd like to enable auto-builds of this repo to
https://copr.fedorainfracloud.org/coprs/g/CoreOS/continuous/ so it could
eventually feed into
https://github.com/coreos/fedora-coreos-tracker/issues/910.

.copr/Makefile [new file with mode: 0644]

diff --git a/.copr/Makefile b/.copr/Makefile
new file mode 100644 (file)
index 0000000..81a0221
--- /dev/null
@@ -0,0 +1,8 @@
+srpm:
+       dnf install -y git
+       ci/make-git-snapshot.sh
+       curl -LO https://src.fedoraproject.org/rpms/ostree/raw/rawhide/f/ostree.spec
+       sed -ie "s,^Version:.*,Version: $$(git describe --always --tags | sed -e 's,-,\.,g' -e 's,^v,,')," ostree.spec
+       sed -ie 's/^Patch/# Patch/g' ostree.spec  # we don't want any downstream patches
+       rpmbuild -bs --define "_sourcedir ${PWD}" --define "_specdir ${PWD}" --define "_builddir ${PWD}" --define "_srcrpmdir ${PWD}" --define "_rpmdir ${PWD}" --define "_buildrootdir ${PWD}/.build" ostree.spec
+       mv *.src.rpm $$outdir