forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
app-backup/rdiff-backup: manually install manpages
Using build/ generates errors when multiple python version are enabled Closes: https://bugs.gentoo.org/887261 Signed-off-by: Bernard Cafarelli <[email protected]>
- Loading branch information
Showing
2 changed files
with
44 additions
and
3 deletions.
There are no files selected for viewing
35 changes: 35 additions & 0 deletions
35
app-backup/rdiff-backup/files/rdiff-backup-2.2.0-no-manpages.patch
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
diff -Naur rdiff-backup-2.2.0.orig/setup.py rdiff-backup-2.2.0/setup.py | ||
--- rdiff-backup-2.2.0.orig/setup.py 2022-12-18 09:19:30.000000000 +0100 | ||
+++ rdiff-backup-2.2.0/setup.py 2022-12-19 22:00:43.289239007 +0100 | ||
@@ -283,10 +283,7 @@ | ||
), | ||
], | ||
data_files=[ | ||
- ("share/man/man1", ["build/rdiff-backup.1", | ||
- "build/rdiff-backup-old.1", | ||
- "build/rdiff-backup-delete.1", | ||
- "build/rdiff-backup-statistics.1"]), | ||
+ ("share/man/man1", ["build/rdiff-backup-old.1"]), | ||
( | ||
"share/doc/rdiff-backup", [ | ||
"CHANGELOG.adoc", | ||
@@ -311,19 +308,6 @@ | ||
("tools/rdiff-backup.spec.template-fedora", "build/rdiff-backup.fedora.spec"), | ||
("docs/rdiff-backup-old.1", "build/rdiff-backup-old.1"), | ||
]}, | ||
- "build_exec": {"commands": [ | ||
- ("asciidoctor -b manpage -a revdate=\"{date}\" " | ||
- "-a revnumber=\"{ver}\" -o {outfile} {infile}", | ||
- ("docs", "rdiff-backup.1.adoc"), ("build", "rdiff-backup.1")), | ||
- ("asciidoctor -b manpage -a revdate=\"{date}\" " | ||
- "-a revnumber=\"{ver}\" -o {outfile} {infile}", | ||
- ("docs", "rdiff-backup-statistics.1.adoc"), | ||
- ("build", "rdiff-backup-statistics.1")), | ||
- ("asciidoctor -b manpage -a revdate=\"{date}\" " | ||
- "-a revnumber=\"{ver}\" -o {outfile} {infile}", | ||
- ("docs", "rdiff-backup-delete.1.adoc"), | ||
- ("build", "rdiff-backup-delete.1")), | ||
- ]}, | ||
}, | ||
cmdclass={ | ||
'build_exec': build_exec, |
This file contains 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