https://github.com/SoftwareHeritage/swh-model
Revision 7dead5df36cf445f7b03e1ed8743d9d9d461f301 authored by Valentin Lorentz on 23 February 2021, 10:19:21 UTC, committed by Valentin Lorentz on 23 February 2021, 12:48:39 UTC
* Quote/unquote path
* Fix line parsing and serializing to properly handle None
* Fix error raised by check_visit/check_anchor
1 parent 172eadb
Raw File
Tip revision: 7dead5df36cf445f7b03e1ed8743d9d9d461f301 authored by Valentin Lorentz on 23 February 2021, 10:19:21 UTC
Fix qualifier parsing and add tests
Tip revision: 7dead5d
README.md
swh-model
=========

Implementation of the Data model of the Software Heritage project, used to
archive source code artifacts.

This module defines the notion of SoftWare Heritage persistent IDentifiers
(SWHIDs) and provides tools to compute them:

```sh
   $ swh-identify fork.c kmod.c sched/deadline.c
   swh:1:cnt:2e391c754ae730bd2d8520c2ab497c403220c6e3    fork.c
   swh:1:cnt:0277d1216f80ae1adeed84a686ed34c9b2931fc2    kmod.c
   swh:1:cnt:57b939c81bce5d06fa587df8915f05affbe22b82    sched/deadline.c

   $ swh-identify --no-filename /usr/src/linux/kernel/
   swh:1:dir:f9f858a48d663b3809c9e2f336412717496202ab
```
back to top