AcademySoftwareFoundation / openexr

The OpenEXR project provides the specification and reference implementation of the EXR file format, the professional-grade image storage format of the motion picture industry.
http://www.openexr.com/
BSD 3-Clause "New" or "Revised" License
1.62k stars 614 forks source link

Make use of SPDX-FileCopyrightText #1082

Open Vertexwahn opened 3 years ago

Vertexwahn commented 3 years ago

Currently, all files include copyright and license information similar this way:

//
// SPDX-License-Identifier: BSD-3-Clause
// Copyright (c) Contributors to the OpenEXR Project.
//

I propose to change it this way:

//
// SPDX-FileCopyrightText: Contributors to the OpenEXR Project
// SPDX-License-Identifier: BSD-3-Clause
//

OpenEXR uses already the SPDX-License-Identifier. Why not using also SPDX-FileCopyrightText. This way automatic extraction of Copyright and License information would be easier. Thee also here

Opinions?

lgritz commented 3 years ago

The way we currently do it is precisely as dictated by ASWF/LF request. We know that the periodic license scans that they run on our projects do recognize it the way we are doing it. This is something that would need to be put on the agenda for the ASWF TAC and see if LF admin and legal are ok with it; it's not something we mess with at the project level.