mirror of
https://github.com/fmtlib/fmt.git
synced 2024-11-02 11:28:20 +00:00
63 lines
2.1 KiB
Python
Executable File
63 lines
2.1 KiB
Python
Executable File
#!/usr/bin/env python
|
|
|
|
import os, shutil, sys, tempfile
|
|
from subprocess import check_call
|
|
|
|
class Git:
|
|
def __init__(self, dir):
|
|
self.dir = dir
|
|
|
|
def call(self, method, args, **kwargs):
|
|
return check_call(['git', method] + list(args), **kwargs)
|
|
|
|
def clone(self, *args):
|
|
return self.call('clone', list(args) + [self.dir])
|
|
|
|
def checkout(self, *args):
|
|
return self.call('checkout', args, cwd=self.dir)
|
|
|
|
# Create build environment.
|
|
fmt_dir = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
|
|
sys.path.insert(0, os.path.join(fmt_dir, 'doc'))
|
|
import build
|
|
build.create_build_env()
|
|
|
|
fmt_repo = Git(tempfile.mkdtemp('fmt'))
|
|
try:
|
|
fmt_repo.clone('git@github.com:fmtlib/fmt')
|
|
doc_repo = Git('fmtlib.github.io')
|
|
doc_repo.clone('git@github.com:fmtlib/fmtlib.github.io')
|
|
|
|
versions = ['1.0.0']
|
|
for version in versions:
|
|
fmt_repo.checkout(version)
|
|
target_doc_dir = os.path.join(fmt_repo.dir, 'doc')
|
|
# Remove the old theme.
|
|
for entry in os.listdir(target_doc_dir):
|
|
path = os.path.join(target_doc_dir, entry)
|
|
if os.path.isdir(path):
|
|
shutil.rmtree(path)
|
|
# Copy the new theme.
|
|
for entry in ['_static', '_templates', 'basic-bootstrap', 'bootstrap', 'conf.py', 'fmt.less']:
|
|
src = os.path.join(fmt_dir, 'doc', entry)
|
|
dst = os.path.join(target_doc_dir, entry)
|
|
copy = shutil.copytree if os.path.isdir(src) else shutil.copyfile
|
|
copy(src, dst)
|
|
# Rename index to contents.
|
|
contents = os.path.join(target_doc_dir, 'contents.rst')
|
|
if not os.path.exists(contents):
|
|
os.rename(os.path.join(target_doc_dir, 'index.rst'), contents)
|
|
# Build the docs.
|
|
build.build_docs(version, doc_dir=target_doc_dir, include_dir=fmt_repo.dir)
|
|
# Create symlinks for older versions.
|
|
for link, target in {'index': 'contents', 'api': 'reference'}.items():
|
|
os.symlink(target + '.html', os.path.join('html', link) + '.html')
|
|
# Copy docs to the website.
|
|
version_doc_dir = os.path.join(doc_repo.dir, version)
|
|
shutil.rmtree(version_doc_dir)
|
|
shutil.copytree('html', version_doc_dir, symlinks=True)
|
|
# TODO: fix links
|
|
# TODO: remove doc repo
|
|
except:
|
|
shutil.rmtree(fmt_repo.dir)
|