Skip to content

Commit

Permalink
Rename to c-arithmetic
Browse files Browse the repository at this point in the history
  • Loading branch information
chdemko committed Mar 11, 2023
1 parent 92c4f08 commit e8acb70
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 21 deletions.
22 changes: 11 additions & 11 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
c-test project
==============
c-arithmetic project
====================

|cmake| |Coveralls| |Documentation Status|

Expand All @@ -11,8 +11,8 @@ Use ``brew`` and not ``apt`` if you are on macos!
.. code:: bash
$ sudo apt install cmake gcc lcov cppcheck python-pip valgrind flawfinder doxygen dot
$ git clone https://github.com/chdemko/c-test.git
$ [sudo] pip install [--user] -r c-test/docs/requirements.txt
$ git clone https://github.com/chdemko/c-arithmetic.git
$ [sudo] pip install [--user] -r c-arithmetic/docs/requirements.txt
Usage
-----
Expand All @@ -24,7 +24,7 @@ Compilation
$ mkdir build
$ cd build
$ cmake ../c-test -DBUILD_COVERAGE=1 -DBUILD_HTML_COVERAGE=1 -DUSE_VALGRIND=1 -DRUN_CPPCHECK=1
$ cmake ../c-arithmetic -DBUILD_COVERAGE=1 -DBUILD_HTML_COVERAGE=1 -DUSE_VALGRIND=1 -DRUN_CPPCHECK=1
$ make
Run test and code coverage
Expand Down Expand Up @@ -72,9 +72,9 @@ Install package
$ make install
.. |cmake| image:: https://github.com/chdemko/c-test/actions/workflows/cmake.yml/badge.svg
:target: https://github.com/chdemko/c-test/actions
.. |Coveralls| image:: https://img.shields.io/coveralls/chdemko/c-test.svg
:target: https://coveralls.io/r/chdemko/c-test?branch=main
.. |Documentation Status| image:: https://img.shields.io/readthedocs/c-test.svg
:target: http://c-test.readthedocs.io/en/latest/?badge=latest
.. |cmake| image:: https://github.com/chdemko/c-arithmetic/actions/workflows/cmake.yml/badge.svg
:target: https://github.com/chdemko/c-arithmetic/actions
.. |Coveralls| image:: https://img.shields.io/coveralls/chdemko/c-arithmetic.svg
:target: https://coveralls.io/r/chdemko/c-arithmetic?branch=main
.. |Documentation Status| image:: https://img.shields.io/readthedocs/c-arithmetic.svg
:target: http://c-arithmetic.readthedocs.io/en/latest/?badge=latest
14 changes: 7 additions & 7 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# c-test documentation build configuration file, created by
# c-arithmetic documentation build configuration file, created by
# sphinx-quickstart on Mon Apr 10 11:17:08 2017.
#
# This file is execfile()d with the current directory set to its
Expand Down Expand Up @@ -59,7 +59,7 @@
master_doc = 'index'

# General information about the project.
project = 'c-test'
project = 'c-arithmetic'
copyright = '2017-2023, Christophe Demko'
author = 'Christophe Demko'

Expand Down Expand Up @@ -116,7 +116,7 @@
# -- Options for HTMLHelp output ------------------------------------------

# Output file base name for HTML help builder.
htmlhelp_basename = 'c-testdoc'
htmlhelp_basename = 'c-arithmeticdoc'


# -- Options for LaTeX output ---------------------------------------------
Expand All @@ -143,7 +143,7 @@
# (source start file, target name, title,
# author, documentclass [howto, manual, or own class]).
latex_documents = [
(master_doc, 'c-test.tex', 'c-test Documentation',
(master_doc, 'c-arithmetic.tex', 'c-arithmetic Documentation',
'Christophe Demko', 'manual'),
]

Expand All @@ -153,7 +153,7 @@
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
(master_doc, 'c-test', 'c-test Documentation',
(master_doc, 'c-arithmetic', 'c-arithmetic Documentation',
[author], 1)
]

Expand All @@ -164,8 +164,8 @@
# (source start file, target name, title, author,
# dir menu entry, description, category)
texinfo_documents = [
(master_doc, 'c-test', 'c-test Documentation',
author, 'c-test', 'One line description of project.',
(master_doc, 'c-arithmetic', 'c-arithmetic Documentation',
author, 'c-arithmetic', 'One line description of project.',
'Miscellaneous'),
]

Expand Down
6 changes: 3 additions & 3 deletions docs/index.rst
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
.. c-test documentation master file, created by
.. c-arithmetic documentation master file, created by
sphinx-quickstart on Tue Apr 11 16:03:53 2017.
You can adapt this file completely to your liking, but it should at least
contain the root `toctree` directive.
Welcome to c-test's documentation!
==================================
Welcome to c-arithmetic's documentation!
========================================

.. toctree::
:maxdepth: 2
Expand Down

0 comments on commit e8acb70

Please sign in to comment.