Submitted by Anonymous on June 2, 2014 - 11:04am
Tigris lists the open source license that each project is using. The following chart shows the licenses used by projects on Tigris, and how many projects use each. Note that UNLIKE some other forges, variations of the GPL (and other licenses with multiple versions) are not differentiated by version, rather they are all lumped together.
Here is the SQL needed to generate the data set from the FLOSSmole database:
Submitted by Anonymous on June 2, 2014 - 10:56am
Objectweb allows each project to state what license it uses. Here is a chart showing these licenses for all the projects on Objectweb, as of June 2014.
Here is the SQL code to generate the data set:
SELECT description, count( * )
FROM `ow_project_licenses`
WHERE datasource_id =8081
GROUP BY 1
ORDER BY 2 DESC;
Submitted by Anonymous on June 2, 2014 - 10:19am
Each project on Rubyforge can list what license it uses. The following chart was generated in June 2014 (datasource_id=12987) to show the most common licenses (all those with more than 10 projects using it) and how many projects.
Here is the SQL code used to generate the data for this chart:
SELECT description, count( * )
FROM rf_project_licenses
WHERE datasource_id =[current datasource_id]
GROUP BY 1
ORDER BY 2 DESC;
Submitted by Anonymous on June 29, 2011 - 1:33pm
Description
This chart shows the top code licenses used by projects in Google Code. There were 23,810 projects that did not have a code license listed.
Visualization