blob: b14927205d6c053e923560d44356c8157bcd46b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
.. _CHANGE:Roadmap:
Meta
############
* Python snippet for Sphinx's `conf.py` to extract the current version number from Git (latest tag name).
* :ghdlsharp:`200`, :ghdlsharp:`221`
* Reference :samp:`genindex.html` from the navigation bar.
* :ghdlsharp:`200`
* Create "parts" (LaTeX terminology / chapter headlines) in navigation bar.
* :ghdlsharp:`200`
* Intersphinx files
* :ghdlsharp:`200`
* To decompress the inventory file: `curl -s http://ghdl.readthedocs.io/en/latest/objects.inv | tail -n+5 | openssl zlib -d`. From `how-to-uncompress-zlib-data-in-unix <http://unix.stackexchange.com/questions/22834/how-to-uncompress-zlib-data-in-unix>`_.
* External ref and link to section::
:ref:`GHDL Roadmap <ghdl:CHANGE:Roadmap>`
* External ref to option (no link)::
:ghdl:option:`--ieee`
:option:`ghdl:--ieee`
* Ubuntu uses `dash` instead of `bash` when a shell script is run. As a result, some functionalities, such as arrays like :samp:`array[1]`, are not supported. Therefore, build scripts in `dist/linux` should not use those functionalities unless they are sourced in a `bash` shell. That is, :file:`tavis-ci.sh` uses arrays, since it is sourced in the Travis CI machine. But :file:`docker-buildtest.sh` and :file:`buildtest.sh` do not use any. The same applies to the scripts in `testsuite`.
|