Skip to content
Snippets Groups Projects

Add Apertis theme and make a few adjustments to the homepage and linked information

Merged Martyn Welch requested to merge wip/martyn/T4981-Update-Homepage into master
All threads resolved!
4 files
+ 146
111
Compare changes
  • Side-by-side
  • Inline
Files
4
  • af5fd687
    Rework licensing documentation · af5fd687
    Martyn Welch authored
    The licensing documentation is linked from the home page, but is a bit of a
    mess, with guidance on documenting licensing and information about the Apertis
    licensing scanning infrastructure mixed with Apertis licensing policies.
    
    Split out the license scanning documentation into a separate architecture
    document. Move the small amount of policy documentation from the applying
    licensing document and move to guides.
    
    Signed-off-by: default avatarMartyn Welch <martyn.welch@collabora.com>
+ 89
0
+++
title = "License Scanning"
weight = 100
date = "2021-07-06"
+++
The license is an important element in open source projects as the license
define acceptable use cases, user rights, and contribution guidelines. There
are different ways to identify the license from the project source code such
as SPDX headers, the LICENSE file, and the COPYING file. However an open source
project may contain files from other projects and may use different licenses
for different files.
Apertis has certain
[licensing expectations]({{< ref "license-expectations.md" >}}). In order to
improve the accuracy of the licensing information, Apertis performs license
scanning as part of it's continuous integration process
# Ensuring continuous maintenance of open source licence documentation
Maintaining the open source licenses documentation is an incremental process:
When Apertis is rebased on a new version of Debian or new packages are added,
the licensing is checked for all packages involved. From a project
perspective, Apertis teams tries to do a full scan on all projects at each
release cycle.
During development, updates are monitored. The integration of a new
project in Apertis and the update of source code are the operations that can
result in the update of a license. New projects can be integrated at any time
in Apertis. If new sources for a project already in Apertis are received: the
licensing of the project can change, or the licensing for some distributables
within this project can differ from the prevalent license.
Open source software shipped with devices that users buy adds significant
licensing constraints to the software stack of preview and product releases.
These constraints do not affect development releases, and it is possible to
save some work on those releases.
Regular checks of the whole archive have been integrated into Apertis CI
pipelines to provide early detection of any change to the licensing status of
each package. A copyright report is generated and kept updated using
[scan-copyrights]( {{< ref "#scan-copyrights" >}} ), helping
[Apertis maintainers]({{< ref "contributions.md#the-role-of-maintainers" >}})
to detect problematic licenses or missing information which may require a
manual check.
# Source code scanning with scan-copyrights
In order to validate the licensing of a package, the entire package source tree
needs to be scanned to detect and find copyright holders and known licenses for
each file. In order to achieve that, the `scan-copyrights` tool has been
integrated to Apertis CI pipeline, rescanning and updating a copyright report
for each package on every commit.
Written in Perl, `scan-copyrights` tool from
[libconfig-model-dpkg-perl](https://salsa.debian.org/perl-team/modules/packages/libconfig-model-dpkg-perl/)
uses [licensecheck](https://salsa.debian.org/perl-team/modules/packages/licensecheck)
to parse the source files, detect known licenses and copyright statements,
outputting the result in plain text or a Debian copyright file format.
Apertis packages keep an exhaustive copyright report in
`debian/apertis/copyright`, containing information for **every** file in the
source tree. During this process, missing information and *unacceptable*
licenses are reported, which may require manual review from developers to
complete the package copyright report. Two files are used for this purpose:
* `debian/apertis/copyright.yml`: Contains a *mapping* YAML structure, where the
key is a Perl pattern used to match a path, to manually provide the correct
copyright information. See
[Filling_the_blanks](https://manpages.debian.org/buster/libconfig-model-dpkg-perl/Dpkg::Copyright::Scanner.3pm.en.html#Filling_the_blanks).
* `debian/apertis/copyright.whitelist`: Using *git ignore* format, lists files
that will be ignored if reported with a missing/unacceptable license. Note that
CI pipeline updates the copyright report with information for **every** file and
will fail reporting on those problematic entries that weren't whitelisted.
# Future improvements
FOSSology is a license reporting tool. It is being
[integrated into Apertis]({{< ref "automated-license-compliance.md" >}}) as a
replacement for `scan-copyrights` as part of an effort to enable end-to-end
tracking of licensing information. Although [scan-copyrights]( {{< ref
"#scan-copyrights" >}} ) has helped a lot on automating the process, the
approach using FOSSology will result in a finer grained and more reliable
license identification through to the identification of the licensing
applicable to each binary package.
Loading