btrfs-progs: docs: add config file for readthedocs.io
There's another config required for building the RTD documentation, https://docs.readthedocs.io/en/stable/config-file/ . [ci skip] Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
parent
cc2e3ab03d
commit
8b9684f965
|
@ -73,6 +73,7 @@
|
||||||
.*
|
.*
|
||||||
!.editorconfig
|
!.editorconfig
|
||||||
!.github
|
!.github
|
||||||
|
!.readthedocs.yaml
|
||||||
|
|
||||||
/ci/images/*/devel.tar.gz
|
/ci/images/*/devel.tar.gz
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,10 @@
|
||||||
|
version: 2
|
||||||
|
build:
|
||||||
|
os: ubuntu-22.04
|
||||||
|
tools:
|
||||||
|
python: "3.12"
|
||||||
|
sphinx:
|
||||||
|
configuration: Documentation/conf.py
|
||||||
|
python:
|
||||||
|
install:
|
||||||
|
- requirements: Documentation/requirements.txt
|
|
@ -71,3 +71,5 @@ man_pages = [
|
||||||
('mkfs.btrfs', 'mkfs.btrfs', 'create a btrfs filesystem', '', 8),
|
('mkfs.btrfs', 'mkfs.btrfs', 'create a btrfs filesystem', '', 8),
|
||||||
('btrfs-man5', 'btrfs', 'topics about the BTRFS filesystem (mount options, supported file attributes and other)', '', 5),
|
('btrfs-man5', 'btrfs', 'topics about the BTRFS filesystem (mount options, supported file attributes and other)', '', 5),
|
||||||
]
|
]
|
||||||
|
|
||||||
|
extensions = [ 'sphinx_rtd_theme' ]
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
sphinx_rtd_theme
|
Loading…
Reference in New Issue