diff options
author | Alex Xu (Hello71) <alex_y_xu@yahoo.ca> | 2024-10-01 15:14:13 -0400 |
---|---|---|
committer | Alex Xu (Hello71) <alex_y_xu@yahoo.ca> | 2024-10-01 15:14:13 -0400 |
commit | 6cdf3f05bf00d4c61757eca004ac24ea9767ff88 (patch) | |
tree | 955231680345d09e1f18d8b218eb5861fee8e119 /app-text/zathura/files/zathura-docutils.patch | |
parent | 552e7282232777e70e8dc20a647e5a6f0ec748b6 (diff) | |
download | gentoo-overlay-6cdf3f05bf00d4c61757eca004ac24ea9767ff88.tar.xz gentoo-overlay-6cdf3f05bf00d4c61757eca004ac24ea9767ff88.zip |
app-text/zathura: remove
Diffstat (limited to 'app-text/zathura/files/zathura-docutils.patch')
-rw-r--r-- | app-text/zathura/files/zathura-docutils.patch | 119 |
1 files changed, 0 insertions, 119 deletions
diff --git a/app-text/zathura/files/zathura-docutils.patch b/app-text/zathura/files/zathura-docutils.patch deleted file mode 100644 index 7d313f6..0000000 --- a/app-text/zathura/files/zathura-docutils.patch +++ /dev/null @@ -1,119 +0,0 @@ -diff --git a/doc/man/conf.py b/doc/man/conf.py -deleted file mode 100644 -index 2aad25f..0000000 ---- a/doc/man/conf.py -+++ /dev/null -@@ -1,36 +0,0 @@ --# -*- coding: utf-8 -*- --# --# SPDX-License-Identifier: Zlib -- --import os.path --import glob --import time -- --dirname = os.path.dirname(__file__) --files = glob.glob(os.path.join(dirname, '*.rst')) -- --maxdate = 0 --for path in files: -- s = os.stat(path) -- maxdate = max(maxdate, s.st_mtime) -- --# -- General configuration ------------------------------------------------ -- --source_suffix = '.rst' --master_doc = 'zathura.1' --templates_path = ['_templates'] --today = time.strftime('%Y-%m-%d', time.gmtime(maxdate)) -- --# -- Project configuration ------------------------------------------------ -- --project = 'zathura' --copyright = '2009-2018, pwmt.org' --version = '0.2.7' --release = '0.2.7' -- --# -- Options for manual page output --------------------------------------- -- --man_pages = [ -- ('zathura.1', 'zathura', 'a document viewer', ['pwmt.org'], 1), -- ('zathurarc.5', 'zathurarc', 'zathura configuration file', ['pwmt.org'], 5) --] -diff --git a/doc/man/zathura.1.rst b/doc/man/zathura.1.rst -index 089dbf7..19cc44c 100644 ---- a/doc/man/zathura.1.rst -+++ b/doc/man/zathura.1.rst -@@ -1,5 +1,14 @@ --Manpage - ======= -+zathura -+======= -+ -+----------------- -+a document viewer -+----------------- -+ -+:Author: pwmt.org -+:Copyright: 2009-2018, pwmt.org -+:Manual section: 1 - - Synopsis - -------- -diff --git a/doc/man/zathurarc.5.rst b/doc/man/zathurarc.5.rst -index bf519ae..1ec6462 100644 ---- a/doc/man/zathurarc.5.rst -+++ b/doc/man/zathurarc.5.rst -@@ -2,6 +2,14 @@ - zathurarc - ********* - -+-------------------------- -+zathura configuration file -+-------------------------- -+ -+:Author: pwmt.org -+:Copyright: 2009-2018, pwmt.org -+:Manual section: 5 -+ - SYNOPSIS - ======== - -diff --git a/doc/meson.build b/doc/meson.build -index b67c8ab..a02116b 100644 ---- a/doc/meson.build -+++ b/doc/meson.build -@@ -1,24 +1,10 @@ --sphinx = find_program('sphinx-build', required: get_option('manpages')) --if sphinx.found() -- custom_target('man pages', -- command: [ -- sphinx, -- '-b', 'man', -- '-D', 'version=' + version, -- '-D', 'release=' + version, -- join_paths(meson.current_source_dir(), 'man'), -- meson.current_build_dir()], -- output: ['zathura.1', 'zathurarc.5'], -- input: [ -- 'man/conf.py', -- 'man/zathurarc.5.rst', -- 'man/zathura.1.rst' -- ], -- build_by_default: true, -- install: true, -- install_dir: [ -- join_paths(get_option('mandir'), 'man1'), -- join_paths(get_option('mandir'), 'man5') -- ] -- ) -+rst2man = find_program('rst2man', 'rst2man.py', required: get_option('manpages')) -+ -+if rst2man.found() -+ custom_target('zathura.1', input: [ 'man/zathura.1.rst' ], output: [ 'zathura.1' ], -+ command: [rst2man, '@INPUT@', '@OUTPUT@'], install: true, -+ install_dir: join_paths(get_option('mandir'), 'man1')) -+ custom_target('zathurarc.5', input: [ 'man/zathurarc.5.rst' ], output: [ 'zathurarc.5' ], -+ command: [rst2man, '@INPUT@', '@OUTPUT@'], install: true, -+ install_dir: join_paths(get_option('mandir'), 'man5')) - endif |