12 questions
1
vote
0
answers
27
views
What is the logical operator between the elements of array licenses?
CycloneDX v1.6 specification provides two alternatives to specify multiple licenses for a component (in the components list):
SPDX License Expression
A list of SPDX licenses and/or named licenses
In ...
0
votes
0
answers
119
views
Manual SBOM SPDX Entries? (for undiscoverable packages)
I may be completely misunderstanding this as I am new to the generation of a Software Bill of Materials (SBOM). But I am presently using Microsoft's SBOM tool, and while it handles 99% of all related ...
0
votes
1
answer
234
views
SPDX RDF Format conversion of Spec 1.2 to 2.3
I have an SPDX file in spec version 1.2 and want to convert it to spec 2.3.
The SPDX online tools (https://github.com/spdx/tools-python/blob/main/README.md) and the python tools offer conversion ...
1
vote
1
answer
198
views
How to generate REUSE/SPDX info for a git repo
Intro
The REUSE tool from the REUSE project by the Free Software Foundation Europe
allows to add, maintain and extract detailed copyright and licensing info on a fine-grained scale,
and it does that ...
0
votes
1
answer
41
views
license-eye: Confusion on Pattern Replacements
I am trying to rewrite the license headers of a project I am working on so that it just has the copyright, the year, and the author of the project, and a reference to the SPDX of the license in ...
0
votes
0
answers
566
views
Add year of creation in the copyright header of each file with reuse
A git repository has many files and each file should get a SPDX license header.
The license header should be created by reuse and use the year of creation as year in the copyright.
example of what I ...
0
votes
1
answer
1k
views
How do I add <SPDX-License> as a comment in my code?
pragma solidity >=0.6.0 <0.9.0;
contract SimpleStorage {
//this will get initialized to 0!
uint256 favoriteNumber;
function store(uint256 _favoriteNumber) public {
...
0
votes
1
answer
309
views
getting spdx warning even after providing spdx license
enter image description here
python is unable to find "spdx" license I have written on the top, attachment is there, plz help me to find out what is wrong with this code
0
votes
1
answer
185
views
How can I add SPDX licensing info to an SVG file [closed]
Regarding SPDX.
Though doing it with an HTML comment works:
<?xml version="1.0" encoding="UTF-8"?>
<!--
SPDX-FileCopyrightText: 2021 John Doe <[email protected]>
...
60
votes
1
answer
72k
views
Warning: SPDX license identifier not provided in source file
I created a new solidity contract. The contract is up and running but giving me this warning.
Warning: SPDX license identifier not provided in source file. Before publishing, consider adding a comment ...
238
votes
4
answers
168k
views
What should I put in the license field of package.json if my code is only for use by the company I work for?
NPM 2.11.3
I'm building a library in Node. This library is only for use by the company I am currently working for. I think this means that the license is "None". But when I npm init it wants ...
238
votes
4
answers
123k
views
"All Rights Reserved" license in package.json
I have a small node.js project that is company-internal and will not be released publicly or shared with third parties. It certainly will not be contributed to any public package repositories.
But ...