Giter VIP home page Giter VIP logo

rubber-for-python3's Introduction

Rubber for Python 3

Since Python2 has been deprecated, we archived our previous fork of rubber for Python2. Now let us move to rubber with Python3, forking rubber on GitLab, with issues fixed for Mac OS X (passed for macOS Catalina).

Dependencies

GNU/Linux version of texinfo package: install by

  $ brew install texinfo

Note that you have to manually add its bin to PATH, since macOS also provides commandlines with the same names, like makeinfo, texi2pdf.

Installations

Firstly clone this project and go to the folder, simply run

  $ python3 setup.py install

This will first build rubber, then, by default (the paths depend on your Python setup),

  • copy the library files to your default site-packages (e.g., /usr/local/lib/python3.8/site-packages/);

  • install the executable files (rubber, rubber-info, rubber-pipe, rubber-lsmod) to /usr/local/bin;

  • install the man page to /usr/local/man and the info, html, pdf docs to /usr/local/share/doc/rubber/.

If you like to specify a path to install rubber, go and check the original readme.

If you only want to build it without default installation, run

  $ python3 setup.py build

If you have issues observed, clean the build files by

  $ python3 setup.py clean --all

Warning: there is another package called rubber available on PyPI.org, which is completely different. If you installed it before, please consider removing it or install our rubber in a different path from the default location of pip install; otherwise, these two packages will merge together and yield very strange errors.

Original README

This is Rubber.

Rubber is a building system for LaTeX documents. It is based on a routine that runs just as many compilations as necessary and runs companion programs like BibTeX and Makeindex when needed. The module system provides a great flexibility that virtually allows support for any package with no user intervention, as well as pre- and post-processing of the document. A good number of standard packages are supported, including graphics/graphicx with automatic conversion between various graphics formats and Metapost compilation. The associated tool "rubber-info" extracts information, such as dependency relations or post-compilation diagnostics.

Installation

Running Rubber just requires Python 3.5. Of course it won't be of much use without a working LaTeX environment (Rubber is known to work on TeXLive and VTeX on various flavors of Unix including Darwin and Cygwin, any feedback is welcome about other systems).

For compilation, you will need the Python Distutils, which are usually included in development packages (in Debian, this is the python3-dev package). To build the documentation, you need texinfo (Debian package: texinfo).

To compile and install Rubber, just follow the usual procedure:

$ python3 setup.py --help
$ python3 setup.py install
$ python3 setup.py clean --all

Some useful options to setup.py include:

Disabling info docs:

$ python3 setup.py build --info=False install

and similar for --html, --man, --pdf.

Changing the installation path for manpages:

$ python3 setup.py install --mandir=/path/to/man/pages

Installing to a staging directory instead of the root/prefix:

$ python3 setup.py install --root=/staging/directory

Note that if you need build and install to be two different steps (for example when building packages for distribution purposes), Python's distutils will forget about any 'build' options, and re-build with default options during the 'install' stage. This is worrysome if you'd like not to build some of the documentation. It is then best to make options permanent by putting them info a setup.cfg file. For example:

[build]
man = 1
html = 0
pdf = 0
info = 0
txt = 0
[install]
prefix  = /usr

Finally, invoke

$ python3 setup.py build
$ python3 setup.py install --root=/staging/directory

Usage

As civility requires, saying rubber --help' and rubber-info --help' provides a short description of the command line's syntax. The included manual pages (available in English and French) and Texinfo documentation contain more precise usage information.

Known Bugs

Rubber is generally working fine, though there are some known issues.

  1. Rubber tries to do too much. Rubber attempts to provide a one-stop solution to compiling a TeX document, and run a lot of related software as needed.

This approach is fragile for three reasons: a) It does so by parsing the .tex file itself, and all included files, and discovering any related input files. TeX is a hard language to parse correctly without embedding a full TeX interpreter, which rubber does not do. b) To do its work, Rubber needs to be taught about every version of every package in the TeX ecosystem in order to gauge its impact on the compilation of a TeX document. It needs to know the preferences of any TeX compiler with regards to image formats, search paths etc. All this information is hard to keep up to date. c) In some cases (like image conversion), it needs to outright guess what the user intends to do, and may in fact guess incorrectly.

In a future release, some of these features may be taken out in favor of more modern ways to accomplish the same thing, with to goal to render Rubber simpler and more robust. One might want to make use of the -recorder feature (.fls) for example instead of attempting to read the same information from the human-readable log file.

  1. The codebase has been cleaned up considerably, has been converted to Python3 and is generally in a sane state. Nevertheless, it has been written over a number of years, and some features would be implemented differently or skipped altogether if a rewrite were attempted (e.g. the onchange mechanism, modules, ...).

  2. In some cases, Rubber will trigger a recompile that is arguably unnecessary. Rubber tries to err on the side of caution here.

Author

Rubber was originally written by Emmanuel Beffara [email protected]. It is currently maintained by Florian Schmaus [email protected], Sebastian Kapfer [email protected] and Nicolas Boulenguez [email protected].

Its homepage can be found at https://gitlab.com/latex-rubber/rubber

Thanks to all those who provided testing, comments and suggestions, and re-thanks to those who wrote patches and bugfixes.

Any kind of feedback is appreciated, in order to make this program as useful and robust as possible.

License

Rubber is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see https://www.gnu.org/licenses/.

SPDX-License-Identifier: GPL-3.0-or-later

rubber-for-python3's People

Contributors

xunam avatar skapfer avatar asarhaddon avatar flowdalic avatar khaeru avatar oracleyue avatar brotchie avatar kosmikus avatar goldhoorn avatar

Watchers

James Cloos avatar  avatar

Forkers

antonio239mm

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.