Skip to content

Commit 4ceff33

Browse files
authored
Merge pull request #315 from cppalliance/develop
Merge to master for v1.6.0
2 parents b77ac82 + 99cf7f7 commit 4ceff33

122 files changed

Lines changed: 6469 additions & 2061 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

build.jam

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,10 @@
66

77
require-b2 5.2 ;
88

9-
project /boost/int128
10-
: common-requirements
11-
<include>include
12-
;
9+
project /boost/int128 ;
1310

1411
explicit
15-
[ alias boost_int128 ]
12+
[ alias boost_int128 : : : : <include>include <library>$(boost_dependencies) ]
1613
[ alias all : boost_int128 test ]
1714
;
1815

doc/.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
/pdf/
22
/html/
3-
*.DS_Store
4-
*.html
3+
/build/
4+
/node_modules/

doc/Jamfile

Lines changed: 0 additions & 25 deletions
This file was deleted.

doc/Jamfile.v2

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Copyright 2026 Joaquin M Lopez Munoz
2+
# Distributed under the Boost Software License, Version 1.0. (See accompanying
3+
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
4+
5+
import path ;
6+
7+
make html_ : build_antora.sh : @run-script ;
8+
9+
actions run-script
10+
{
11+
bash $(>)
12+
}
13+
14+
path-constant DOC_DIR : . ;
15+
.node_modules = [ path.join $(DOC_DIR) node_modules ] ;
16+
17+
make cleanup_node_modules_ : html_ : @cleanup-node-modules ;
18+
19+
actions cleanup-node-modules
20+
{
21+
rm -rf $(.node_modules)
22+
}
23+
24+
###############################################################################
25+
alias boostdoc ;
26+
explicit boostdoc ;
27+
alias boostrelease : html_ cleanup_node_modules_ ;
28+
explicit boostrelease ;

doc/antora.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
name: ROOT
2+
version: ~
3+
title: Boost.int128
4+
nav:
5+
- modules/ROOT/nav.adoc
6+
start_page: overview.adoc

doc/build_antora.sh

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#!/bin/bash
2+
3+
set -ex
4+
5+
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
6+
cd "$SCRIPT_DIR"
7+
8+
npm ci
9+
npx antora int128-playbook.yml

doc/int128-playbook.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
site:
2+
title: Boost.int128
3+
start_page: ROOT::overview.adoc
4+
content:
5+
sources:
6+
- url: ..
7+
start_path: doc
8+
branches: HEAD
9+
output:
10+
dir: html
11+
ui:
12+
bundle:
13+
url: https://github.com/boostorg/website-v2-docs/releases/download/ui-develop/ui-bundle.zip
14+
output_dir: _
15+
antora:
16+
extensions:
17+
- require: '@cppalliance/antora-downloads-extension'
18+
- require: '@antora/lunr-extension'

doc/int128.adoc

Lines changed: 0 additions & 61 deletions
This file was deleted.

doc/int128/api_reference.adoc

Lines changed: 0 additions & 120 deletions
This file was deleted.

doc/int128/charconv.adoc

Lines changed: 0 additions & 64 deletions
This file was deleted.

0 commit comments

Comments
 (0)