Metadata-Version: 2.1
Name: swh.loader.svn
Version: 1.7.0
Summary: Software Heritage Loader SVN
Home-page: https://forge.softwareheritage.org/diffusion/DLDSVN
Author: Software Heritage developers
Author-email: swh-devel@inria.fr
Project-URL: Bug Reports, https://forge.softwareheritage.org/maniphest
Project-URL: Funding, https://www.softwareheritage.org/donate
Project-URL: Source, https://forge.softwareheritage.org/source/swh-loader-svn
Project-URL: Documentation, https://docs.softwareheritage.org/devel/swh-loader-svn/
Classifier: Programming Language :: Python :: 3
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 5 - Production/Stable
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Provides-Extra: testing
License-File: LICENSE
License-File: AUTHORS

# swh-loader-svn [![Build Status](https://jenkins.softwareheritage.org/job/DLDSVN/job/master/badge/icon)](https://jenkins.softwareheritage.org/job/DLDSVN/job/master/)

The Software Heritage Subversion loader is a tool and a library to walk a remote svn
repository and inject into the Software Heritage archive all contained files, directories
and commits that weren't known before.

The main entry points are

- `swh.loader.svn.loader.SvnLoader` for the main svn loader which ingests content out of
  a remote svn repository

- `swh.loader.svn.loader.SvnLoaderFromDumpArchive` which mounts a repository out of a
  svn dump prior to ingest it.

- `swh.loader.svn.loader.SvnLoaderFromRemoteDump` which mounts a repository with
  svnrdump prior to ingest its content.

## CLI run

With the configuration:

/tmp/loader_svn.yml:
```yml
storage:
  cls: remote
  args:
    url: http://localhost:5002/
```

Run:

```shell
$ swh loader --config-file /tmp/loader_svn.yml run svn <svn-repository-url>
```
