Differences between revisions 4 and 7 (spanning 3 versions)
Revision 4 as of 2016-06-25 17:10:41
Size: 2172
Editor: PaulWise
Comment: FOSSology & DEP5
Revision 7 as of 2017-01-12 01:52:42
Size: 2220
Editor: PaulWise
Comment: less pessimism
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
Reviewing upstream packages to write debian/copyright files is tedious manual work. It tends not to get done again after initial packaging, especially not on every release (when something may have changed). Reviewing upstream packages to write debian/copyright files is tedious manual work. It is done during initial packaging and after every new upstream release.
Line 7: Line 7:
`licensecheck` from DebianPackage:devscripts can scan source code and report found copyright holders and known licenses. `licensecheck` from DebianPackage:licensecheck (and older versions of DebianPackage:devscripts) can scan source code and report found copyright holders and known licenses.
Line 32: Line 32:
`decopy` generates debian/copyright files.

Reviewing upstream packages to write debian/copyright files is tedious manual work. It is done during initial packaging and after every new upstream release.

Making initial copyright file construction, and subsequent review/update easier will improve Debian's software quality.

Stretch (Debian 9) has significantly improved tools over previous releases.

licensecheck from licensecheck (and older versions of devscripts) can scan source code and report found copyright holders and known licenses.

scan-copyrights from libconfig-model-dpkg-perl can update an existing copyright file from rescanning the source. It can also create one from scratch. It uses licensecheck.

Config::Model can update Debian copyright files using the cme command (from cme or libconfig-model-dpkg-perl less than 2.063):

cme update dpkg-copyright

A script from cdbs can generate a copyright file using licensecheck:

licensecheck --copyright -r `find * -type f` | \
  /usr/lib/cdbs/licensecheck2dep5 > debian/copyright.auto

license-reconcile compares the existing copyright with the source code and reports discrepancies.

debmake -k also compares the existing copyright with the source code and reports discrepancies.

debmake -cc generates a new copyright file from the source code.

licensee from ruby-licensee checks LICENSE files and returns known license names.

decopy generates debian/copyright files.

FOSSology is a open source license compliance software system and toolkit that can (in version 3.1) generate DEP5 copyright files.

Some of the above are run by check-all-the-things -f copyright.

See also