Skip to content

Commit

Permalink
Merge pull request #600 from jkloetzke/install-fixes
Browse files Browse the repository at this point in the history
Install fixes
  • Loading branch information
jkloetzke authored Nov 11, 2024
2 parents 9a17f65 + a3af5aa commit 9444590
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
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

0 comments on commit 9444590

Please sign in to comment.