Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Install fixes #600

Merged
merged 4 commits into from
Nov 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def __getattr__(cls, name):

# General information about the project.
project = 'Bob'
copyright = '2016-2020, The BobBuildTool Contributors'
copyright = '2016-2024, The BobBuildTool Contributors'

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
Expand Down
8 changes: 5 additions & 3 deletions doc/manpages/bob.rst
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ Options
User commands
-------------

The user commands are intended for interactive usage. Unless otherwise noticed
The user commands are intended for interactive usage. Unless otherwise noticed,
their output is subject to improvements in future versions and usually not
intended to be parsed by scripts.

Expand All @@ -86,7 +86,7 @@ intended to be parsed by scripts.
:ref:`manpage-build`
Build (sub-)packages in release mode
:ref:`manpage-clean`
Delete unused src/build/dist paths of release builds
Delete unused src/build/dist paths
:ref:`manpage-dev`
Build (sub-)packages in development mode
:ref:`manpage-graph`
Expand All @@ -97,10 +97,12 @@ bob-help
Initialize build tree
:ref:`manpage-bob-jenkins`
Configure Jenkins server
:ref:`manpage-layers`
Update or show status of managed layers
:ref:`manpage-bob-ls`
List package hierarchy. The output is suitable to be used in non-interactive scripts.
:ref:`manpage-bob-project`
Create project files
Create IDE project files
:ref:`manpage-show`
Show properties of a package
:ref:`manpage-bob-status`
Expand Down
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[build-system]
requires = ["setuptools >= 40.0", "Sphinx"]
build-backend = "setuptools.build_meta"
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,12 +77,14 @@ class build(build_orig):
if sys.platform != 'win32':
data_files.extend([
('share/man/man1', [
'doc/_build/man/bob.1',
'doc/_build/man/bob-archive.1',
'doc/_build/man/bob-build.1',
'doc/_build/man/bob-clean.1',
'doc/_build/man/bob-dev.1',
'doc/_build/man/bob-graph.1',
'doc/_build/man/bob-jenkins.1',
'doc/_build/man/bob-layers.1',
'doc/_build/man/bob-ls.1',
'doc/_build/man/bob-project.1',
'doc/_build/man/bob-query-meta.1',
Expand Down