RPM build without tarball #52
Labels
No labels
bug
documentation
duplicate
enhancement
help wanted
invalid
maintenance
obsolete
question
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
yestax/setup#52
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
#31 introduces the use of a submodule to vendor sources.
Building a tarball is manual for now and can be tricky without git archive (prefix, ...)
Try to use rpmbuild --build-in-place option to build directly after a git clone --recuse-submodules. That would allow much more simple builds.
On fedora minimal inside podman
$ mkdir /build && cd /build
$ git clone --recurse-submodules https://git.zeromaximum.com/yestax/setup.git
$ rpmbuild --build-in-place --define "_topdir /build/setup" -bb rpm/setup.spec
works fine and build rpms inside the git without archiving
Need:
will be implemented in #55