Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
D
Development documentation
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Antoine R. Dumont
Development documentation
Commits
27fe8dec
Commit
27fe8dec
authored
1 year ago
by
David Douard
Browse files
Options
Downloads
Patches
Plain Diff
devel: Update the Add New Package tutorial for copier-based template
parent
883854d3
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
docs/devel/tutorials/add-new-package.rst
+21
-45
21 additions, 45 deletions
docs/devel/tutorials/add-new-package.rst
with
21 additions
and
45 deletions
docs/devel/tutorials/add-new-package.rst
+
21
−
45
View file @
27fe8dec
...
...
@@ -15,65 +15,28 @@ project to the documentation.
Create a project
----------------
Creating the project should be done using the ``gitlab`` command-line tool
provided by the `python-gitlab <https://python-gitlab.readthedocs.io/>`_ module.
Make sure to have the configuration working and an access token with ``api`` as
scope.
To create the project:
.. code:: bash
PROJECT_NAME=swh-foo
DESCRIPTION="Software Heritage Foo management library"
NAMESPACE_ID="$(gitlab --output json namespace get --id 'swh/devel' | jq .id)"
gitlab project create \
--name "$PROJECT_NAME" \
--path "$PROJECT_NAME" \
--namespace "$NAMESPACE_ID" \
--description "$DESCRIPTION" \
--issues-access-level enabled \
--auto-devops-enabled false \
--wiki-access-level disabled \
--requirements-access-level disabled \
--pages-access-level disabled \
--operations-access-level disabled \
--container-registry-access-level disabled \
--visibility public
Initialize the repository with our template
-------------------------------------------
Creating the project from swh-py-template_ can be done using the
``bin/init-py-repo`` tool. This script uses the ``gitlab`` command-line tool
provided by the `python-gitlab <https://python-gitlab.readthedocs.io/>`_
module. Before running ``init-py-repo``, please make sure that the ``gitlab``
command is working and configured with an access token of scope ``api``.
The following commands need to run from the base directory
``swh-environment``.
1. Clone the new repository:
.. code:: bash
git clone https://gitlab.softwareheritage.org/swh/devel/swh-foo.git
2. Use ``bin/init-py-repo`` to initialize the repository with a project template:
1. Use ``bin/init-py-repo`` to initialize the repository with a project
template and create the corresponding gitlab project:
.. code:: bash
bin/init-py-repo swh-foo
3
. Install the pre-commit hook:
2
. Install the pre-commit hook:
.. code:: bash
pre-commit install
Customize the template
----------------------
Now look for the string ``foo`` in all files and file names and replace it with
the name of the new package. Push these commits directly to the repository as
initial content.
For an example, you can see `what was done for swh-counters <https://gitlab.softwareheritage.org/swh/devel/swh-counters/-/commit/142fff84305b>`__.
Add the repo on the swh-environment project
-------------------------------------------
...
...
@@ -99,6 +62,18 @@ Install CI jobs
``swh-jenkins-jobs`` repository. See `Jenkins documentation <ci_jenkins>`_
for details.
Hack hack hack
--------------
The generated project should have everything needed to start hacking in. You
should typically start with:
- fill the README file
- write some code in ``swh/foo``
- write tests in ``swh/foo/tests``
- add yourself in ``CONTRIBUTORS`` if needed
- add some sphinx documentation in ``docs``
Make an initial release
-----------------------
...
...
@@ -143,5 +118,6 @@ To add a new module to the documentation:
.. _`Continuous Integration (CI)`: https://jenkins.softwareheritage.org
.. _swh-py-template: https://gitlab.softwareheritage.org/swh/devel/swh-py-template
.. _swh-jenkins-jobs: https://gitlab.softwareheritage.org/swh/infra/ci-cd/swh-jenkins-jobs
.. _swh-docs: https://gitlab.softwareheritage.org/swh/devel/swh-docs
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment