Skip to content

Commit 7827da0

Browse files
phlogistonjohnmergify[bot]
authored andcommitted
MANIFEST.in: fix package data files missing from rpm
I am certain that the .varlink and .proto files were being added to the source tarballs and wheels. However, when testing the container image I found that they were missing from the RPM. After mostly fruitless web searches and some pretty nonsense LLM responses I closely read the output being generated by the rpm python tools and revisited the docs and it managed to loosen something up to revisit MANIFEST.in and... it worked. Signed-off-by: John Mulligan <[email protected]>
1 parent 7fea3f1 commit 7827da0

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

MANIFEST.in

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
# Include example files
22
recursive-include examples *
33
recursive-include sambacc/schema *.json *.yaml
4+
# embedded data files for grpc
5+
recursive-include sambacc/grpc/protobufs *.proto
6+
# embedded data files for varlink
7+
recursive-include sambacc/varlink/interfaces *.varlink

0 commit comments

Comments
 (0)