Skip to content

Commit a692302

Browse files
committed
Update test code/files.
Signed-off-by: Chin Yeung Li <[email protected]>
1 parent 0e89738 commit a692302

File tree

8 files changed

+33
-27
lines changed

8 files changed

+33
-27
lines changed

tests/test_model.py

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -584,8 +584,8 @@ def test_About_dumps_does_not_transform_strings_in_lists(self):
584584
description: AboutCode is a tool to process ABOUT files. An ABOUT file is a file.
585585
home_url: http://dejacode.org
586586
notes:
587-
license: apache-2.0 public-domain
588-
license_expression:
587+
license: apache-2.0
588+
license_expression: apache-2.0
589589
license_name:
590590
license_file: apache-2.0.LICENSE
591591
license_url:
@@ -731,6 +731,7 @@ def test_About_dumps(self):
731731
An ABOUT file is a file.
732732
home_url: http://dejacode.org
733733
license: apache-2.0
734+
license_expression: apache-2.0
734735
license_file: apache-2.0.LICENSE
735736
copyright: Copyright (c) 2013-2014 nexB Inc.
736737
notice_file: NOTICE
@@ -839,6 +840,7 @@ def test_About_as_dict_with_empty(self):
839840
'copyright': u'Copyright (c) 2013-2014 nexB Inc.',
840841
'description': u'AboutCode is a tool\nfor files.',
841842
'license': u'apache-2.0',
843+
'license_expression': u'apache-2.0',
842844
'name': u'AboutCode',
843845
'owner': u'nexB Inc.'}
844846
result = a.as_dict(with_paths=False,
@@ -866,7 +868,7 @@ def test_About_as_dict_with_present(self):
866868
'download_url': u'',
867869
'home_url': u'',
868870
'license': u'apache-2.0',
869-
'license_expression': u'',
871+
'license_expression': u'apache-2.0',
870872
'license_file': u'',
871873
'license_name': u'',
872874
'license_url': u'',
@@ -904,6 +906,7 @@ def test_About_as_dict_with_nothing(self):
904906
'copyright': u'Copyright (c) 2013-2014 nexB Inc.',
905907
'description': u'AboutCode is a tool\nfor files.',
906908
'license': u'apache-2.0',
909+
'license_expression': u'apache-2.0',
907910
'name': u'AboutCode',
908911
'owner': u'nexB Inc.'}
909912
result = a.as_dict(with_paths=False,
@@ -982,15 +985,15 @@ def test_as_dict_load_dict_is_idempotent(self):
982985
u'custom1': u'some custom',
983986
u'custom_empty': u'',
984987
'description': u'AboutCode is a tool\nfor files.',
985-
'license': u'apache-2.0',
988+
'license_expression': u'apache-2.0',
986989
'name': u'AboutCode',
987990
'owner': u'nexB Inc.'}
988991

989992
expected = {'about_resource': u'.',
990993
'author': u'',
991994
'copyright': u'Copyright (c) 2013-2014 nexB Inc.',
992995
'description': u'AboutCode is a tool\nfor files.',
993-
'license': u'apache-2.0',
996+
'license_expression': u'apache-2.0',
994997
'name': u'AboutCode',
995998
'owner': u'nexB Inc.'}
996999

@@ -1010,7 +1013,7 @@ def test_load_dict_handles_field_validation_correctly(self):
10101013
u'copyright': u'Copyright (c) 2013-2014 nexB Inc.',
10111014
u'description': u'AboutCode is a tool to process ABOUT files. An ABOUT file is a file.',
10121015
u'home_url': u'http://dejacode.org',
1013-
u'license': u'apache-2.0 public-domain',
1016+
u'license_expression': u'apache-2.0',
10141017
u'license_file': u'apache-2.0.LICENSE',
10151018
u'name': u'AboutCode',
10161019
u'notice_file': u'NOTICE',

tests/testdata/as_dict/about.ABOUT

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ description: |
77
AboutCode is a tool
88
for files.
99
license: apache-2.0
10+
license_expression: apache-2.0
1011
copyright: Copyright (c) 2013-2014 nexB Inc.
1112
custom1: some custom
1213
custom_empty:

tests/testdata/dumps/complete2/about.ABOUT

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ description: AboutCode is a tool to process ABOUT files.
1818
An ABOUT file is a file.
1919

2020
license: apache-2.0
21-
public-domain
21+
license_expression: apache-2.0
2222
license_file: apache-2.0.LICENSE
2323
copyright: Copyright (c) 2013-2014 nexB Inc.
2424

tests/testdata/gen/inv.csv

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
about_file_path,about_resource,name,version,download_url,description,home_url,notes,license,license_name,license_file,license_url,copyright,notice_file,notice_url,redistribute,attribute,track_change,modified,changelog_file,owner,owner_url,contact,author,vcs_tool,vcs_repository,vcs_path,vcs_tag,vcs_branch,vcs_revision,checksum,spec_version,custom1
1+
about_file_path,about_resource,name,version,download_url,description,home_url,notes,license_name,license_file,license_url,copyright,notice_file,notice_url,redistribute,attribute,track_change,modified,changelog_file,owner,owner_url,contact,author,vcs_tool,vcs_repository,vcs_path,vcs_tag,vcs_branch,vcs_revision,checksum,spec_version,custom1
22
inv/this.ABOUT,.,AboutCode,0.11.0,,"multi
3-
line",,,,,,,,,,,,,,,,,,,,,,,,,,,"multi
3+
line",,,,,,,,,,,,,,,,,,,,,,,,,,"multi
44
line"

tests/testdata/inventory/basic/about/about.ABOUT

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ description: AboutCode is a tool
1616
An ABOUT file is a file.
1717

1818
license: apache-2.0
19+
license_expression: apache-2.0
1920
license_file: apache-2.0.LICENSE
2021
copyright: Copyright (c) 2013-2014 nexB Inc.
2122

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
about_file_path,about_resource_path,about_resource,name,version,download_url,description,home_url,notes,license,license_expression,license_name,license_file,license_url,copyright,notice_file,notice_url,redistribute,attribute,track_change,modified,changelog_file,owner,owner_url,contact,author,vcs_tool,vcs_repository,vcs_path,vcs_tag,vcs_branch,vcs_revision,checksum,spec_version
2-
/about/about.ABOUT,.,.,AboutCode,0.11.0,,AboutCode is a tool to process ABOUT files. An ABOUT file is a file.,http://dejacode.org,,apache-2.0,,,apache-2.0.LICENSE,,Copyright (c) 2013-2014 nexB Inc.,NOTICE,,,,,,,nexB Inc.,,,"Jillian Daguil, Chin Yeung Li, Philippe Ombredanne, Thomas Druez",git,https://github.com/dejacode/about-code-tool.git,,,,,,
2+
/about/about.ABOUT,.,.,AboutCode,0.11.0,,AboutCode is a tool to process ABOUT files. An ABOUT file is a file.,http://dejacode.org,,apache-2.0,apache-2.0,,apache-2.0.LICENSE,,Copyright (c) 2013-2014 nexB Inc.,NOTICE,,,,,,,nexB Inc.,,,"Jillian Daguil, Chin Yeung Li, Philippe Ombredanne, Thomas Druez",git,https://github.com/dejacode/about-code-tool.git,,,,,,
Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
1-
about_file_path,about_resource_path,about_resource,name,version,download_url,description,home_url,notes,license,license_name,license_file,license_url,copyright,notice_file,notice_url,redistribute,attribute,track_change,modified,changelog_file,owner,owner_url,contact,author,vcs_tool,vcs_repository,vcs_path,vcs_tag,vcs_branch,vcs_revision,checksum,spec_version,author_file,dje_license,keywords,license_text_file
1+
about_file_path,about_resource_path,about_resource,name,version,download_url,description,home_url,notes,license,license_expression,license_name,license_file,license_url,copyright,notice_file,notice_url,redistribute,attribute,track_change,modified,changelog_file,owner,owner_url,contact,author,vcs_tool,vcs_repository,vcs_path,vcs_tag,vcs_branch,vcs_revision,checksum,spec_version,author_file,dje_license,keywords,license_text_file
22
/about/about.ABOUT,/about/,.,AboutCode,0.11.0,,"AboutCode is a tool
33
to process ABOUT files.
4-
An ABOUT file is a file.",http://dejacode.org,,apache-2.0,,apache-2.0.LICENSE,,Copyright (c) 2013-2014 nexB Inc.,NOTICE,,,,,,,nexB Inc.,,,"Jillian Daguil, Chin Yeung Li, Philippe Ombredanne, Thomas Druez",git,https://github.com/dejacode/about-code-tool.git,,,,,,,,,,
5-
/about/certifi.ABOUT,/about/certifi-14.05.14-py2.py3-none-any.whl,certifi-14.05.14-py2.py3-none-any.whl,certifi,14.05.14,,Python package for providing Mozilla's CA Bundle.,http://python-requests.org,,,,,,,,,,,,,,Kenneth Reitz,,[email protected],,,,,,,,,,,mpl-2.0,,
4+
An ABOUT file is a file.",http://dejacode.org,,apache-2.0,apache-2.0,,apache-2.0.LICENSE,,Copyright (c) 2013-2014 nexB Inc.,NOTICE,,,,,,,nexB Inc.,,,"Jillian Daguil, Chin Yeung Li, Philippe Ombredanne, Thomas Druez",git,https://github.com/dejacode/about-code-tool.git,,,,,,,,,,
5+
/about/certifi.ABOUT,/about/certifi-14.05.14-py2.py3-none-any.whl,certifi-14.05.14-py2.py3-none-any.whl,certifi,14.05.14,,Python package for providing Mozilla's CA Bundle.,http://python-requests.org,,,,,,,,,,,,,,,Kenneth Reitz,,[email protected],,,,,,,,,,,mpl-2.0,,
66
/about/click.ABOUT,/about/click-3.2-py2.py3-none-any.whl,click-3.2-py2.py3-none-any.whl,click,3.2,https://pypi.python.org/packages/2.7/c/click/click-3.2-py2.py3-none-any.whl#md5=7d0bf0ca4e8ce6056e35cc8135d21abd,"A simple wrapper around optparse for
77
powerful command line utilities.",http://click.pocoo.org/,"Click uses parts of optparse written by Gregory P. Ward and maintained
88
by the Python software foundation. This is limited to code in the parser.py
9-
module and is under the same license as clikc itself.",,,,,,,,,,,,,Armin Ronacher,,[email protected],,git,https://github.com/mitsuhiko/click.git,,,,,,,,bsd-new,,click.LICENSE
10-
/about/colorama.ABOUT,/about/colorama-0.3.1-py2-none-any.whl,colorama-0.3.1-py2-none-any.whl,colorama,0.3.1,https://pypi.python.org/packages/source/c/colorama/colorama-0.3.1.tar.gz#md5=95ce8bf32f5c25adea14b809db3509cb,Cross-platform colored terminal text.,https://pypi.python.org/pypi/colorama,,,,,,,,,,,,,,Jonathan Hartley,,[email protected],,,,,,,,,,,bds-new,color colour terminal text ansi windows crossplatform xplatform,colorama.LICENSE
11-
/about/Jinja2.ABOUT,/about/Jinja2-2.7.3-py2-none-any.whl,Jinja2-2.7.3-py2-none-any.whl,Jinja2,2.7.3,https://pypi.python.org/packages/source/J/Jinja2/Jinja2-2.7.3.tar.gz#md5=b9dffd2f3b43d673802fe857c8445b1a,,http://jinja.pocoo.org/,,,,,,Copyright (c) 2009 by the Jinja Team,,,,,,,,Armin Ronacher,,,,git,https://github.com/mitsuhiko/jinja2.git,,,,,,,,bsd-new,,Jinja2.LICENSE
12-
/about/MarkupSafe.ABOUT,/about/MarkupSafe-0.23-py2-none-any.whl,MarkupSafe-0.23-py2-none-any.whl,MarkupSafe,0.23,https://pypi.python.org/packages/source/m/MarkupSafe/MarkupSafe-0.23.tar.gz,,https://github.com/mitsuhiko/markupsafe,,,,,,Copyright (c) 2010 by Armin Ronacher and contributors.,,,,,,,,Armin Ronacher,,,,git,https://github.com/mitsuhiko/jinja2.git,,,,,,,,bsd-new,,MarkupSafe.LICENSE
13-
/about/pip.ABOUT,/about/pip-1.5.6-py2.py3-none-any.whl,pip-1.5.6-py2.py3-none-any.whl,pip,1.5.6,https://pypi.python.org/packages/source/p/pip/pip-1.5.6.tar.gz#md5=01026f87978932060cc86c1dc527903e,,http://www.pip-installer.org,,,,,,,,,,,,,,The pip developers,,[email protected],,git,https://github.com/pypa/pip.git,,,,,,,pip.AUTHORS,"mit, lgpl-2.1",,pip.LICENSE
14-
/about/py.ABOUT,/about/py-1.4.23-py2-none-any.whl,py-1.4.23-py2-none-any.whl,py,1.4.23,https://pypi.python.org/packages/source/p/py/py-1.4.23.tar.gz#md5=b40aea711eeb8adba0c44f0b750a3205,"library with cross-python path, ini-parsing, io, code, log facilities",http://pylib.readthedocs.org/,,,,,,"Holger Krekel and others, 2004-2014",,,,,,,,"holger krekel, Ronny Pfannschmidt, Benjamin Peterson and others",,[email protected],,,,,,,,,,,mit,,py.LICENSE
15-
/about/pytest.ABOUT,/about/pytest-2.6.1-py2.py3-none-any.whl,pytest-2.6.1-py2.py3-none-any.whl,pytest,2.6.1,https://pypi.python.org/packages/source/p/pytest/pytest-2.6.1.tar.gz#md5=bb353f6cf6d9ff83ff7f2dfbeaca47a3,pytest - simple powerful testing with Python,http://pytest.org,,,,,,"Copyright Holger Krekel and others, 2004-2014",,,,,,,,"Holger Krekel, Benjamin Peterson, Ronny Pfannschmidt, Floris Bruynooghe and others",,holger at merlinux.eu,,,,,,,,,,,mit,,pytest.LICENSE
16-
/about/schematics.ABOUT,/about/schematics-0.9_5-py2-none-any.whl,schematics-0.9_5-py2-none-any.whl,schematics,0.9-5,https://pypi.python.org/packages/source/s/schematics/schematics-0.9-5.tar.gz#md5=82ba0d67aa2600421877edcd9e7500f7,,https://github.com/schematics/schematics,,,,,,"Copyright (c) 2013, J2 Labs LLC.",,,,,,,,J2 Labs LLC.,,,,,,,,,,,,,bsd-new,,schematics.LICENSE
17-
/about/setuptools.ABOUT,/about/setuptools-5.6-py2.py3-none-any.whl,setuptools-5.6-py2.py3-none-any.whl,setuptools,5.6,https://pypi.python.org/packages/3.4/s/setuptools/setuptools-5.6-py2.py3-none-any.whl#md5=4503e42d67edc51e293ba9be4af799a5,,https://pypi.python.org/pypi/setuptools,,,,,,,,,,,,,,Python Packaging Authority,,,,,,,,,,,,,psf,,PSF.LICENSE
18-
/about/unicodecsv.ABOUT,/about/unicodecsv-0.9.4-py2-none-any.whl,unicodecsv-0.9.4-py2-none-any.whl,unicodecsv,0.9.4,https://pypi.python.org/packages/source/u/unicodecsv/unicodecsv-0.9.4.tar.gz#md5=344fa55f299ba198cb73db48546002fd,,https://github.com/jdunck/python-unicodecsv,,,,,,,,,,,,,,Jeremy Dunck,,,,git,https://github.com/jdunck/python-unicodecsv.git,,,,,,,,bsd-new,,unicodecsv.LICENSE
19-
/about/virtualenv.ABOUT,/about/virtualenv-1.11.6-py2.py3-none-any.whl,virtualenv-1.11.6-py2.py3-none-any.whl,virtualenv,1.11.6,https://raw.githubusercontent.com/pypa/virtualenv/1.11.6/virtualenv.py,,http://virtualenv.org/,,,,,https://raw.github.com/pypa/virtualenv/develop/LICENSE.txt,"Copyright (c) 2007 Ian Bicking and Contributors
9+
module and is under the same license as clikc itself.",,,,,,,,,,,,,,Armin Ronacher,,[email protected],,git,https://github.com/mitsuhiko/click.git,,,,,,,,bsd-new,,click.LICENSE
10+
/about/colorama.ABOUT,/about/colorama-0.3.1-py2-none-any.whl,colorama-0.3.1-py2-none-any.whl,colorama,0.3.1,https://pypi.python.org/packages/source/c/colorama/colorama-0.3.1.tar.gz#md5=95ce8bf32f5c25adea14b809db3509cb,Cross-platform colored terminal text.,https://pypi.python.org/pypi/colorama,,,,,,,,,,,,,,,Jonathan Hartley,,[email protected],,,,,,,,,,,bds-new,color colour terminal text ansi windows crossplatform xplatform,colorama.LICENSE
11+
/about/Jinja2.ABOUT,/about/Jinja2-2.7.3-py2-none-any.whl,Jinja2-2.7.3-py2-none-any.whl,Jinja2,2.7.3,https://pypi.python.org/packages/source/J/Jinja2/Jinja2-2.7.3.tar.gz#md5=b9dffd2f3b43d673802fe857c8445b1a,,http://jinja.pocoo.org/,,,,,,,Copyright (c) 2009 by the Jinja Team,,,,,,,,Armin Ronacher,,,,git,https://github.com/mitsuhiko/jinja2.git,,,,,,,,bsd-new,,Jinja2.LICENSE
12+
/about/MarkupSafe.ABOUT,/about/MarkupSafe-0.23-py2-none-any.whl,MarkupSafe-0.23-py2-none-any.whl,MarkupSafe,0.23,https://pypi.python.org/packages/source/m/MarkupSafe/MarkupSafe-0.23.tar.gz,,https://github.com/mitsuhiko/markupsafe,,,,,,,Copyright (c) 2010 by Armin Ronacher and contributors.,,,,,,,,Armin Ronacher,,,,git,https://github.com/mitsuhiko/jinja2.git,,,,,,,,bsd-new,,MarkupSafe.LICENSE
13+
/about/pip.ABOUT,/about/pip-1.5.6-py2.py3-none-any.whl,pip-1.5.6-py2.py3-none-any.whl,pip,1.5.6,https://pypi.python.org/packages/source/p/pip/pip-1.5.6.tar.gz#md5=01026f87978932060cc86c1dc527903e,,http://www.pip-installer.org,,,,,,,,,,,,,,,The pip developers,,[email protected],,git,https://github.com/pypa/pip.git,,,,,,,pip.AUTHORS,"mit, lgpl-2.1",,pip.LICENSE
14+
/about/py.ABOUT,/about/py-1.4.23-py2-none-any.whl,py-1.4.23-py2-none-any.whl,py,1.4.23,https://pypi.python.org/packages/source/p/py/py-1.4.23.tar.gz#md5=b40aea711eeb8adba0c44f0b750a3205,"library with cross-python path, ini-parsing, io, code, log facilities",http://pylib.readthedocs.org/,,,,,,,"Holger Krekel and others, 2004-2014",,,,,,,,"holger krekel, Ronny Pfannschmidt, Benjamin Peterson and others",,[email protected],,,,,,,,,,,mit,,py.LICENSE
15+
/about/pytest.ABOUT,/about/pytest-2.6.1-py2.py3-none-any.whl,pytest-2.6.1-py2.py3-none-any.whl,pytest,2.6.1,https://pypi.python.org/packages/source/p/pytest/pytest-2.6.1.tar.gz#md5=bb353f6cf6d9ff83ff7f2dfbeaca47a3,pytest - simple powerful testing with Python,http://pytest.org,,,,,,,"Copyright Holger Krekel and others, 2004-2014",,,,,,,,"Holger Krekel, Benjamin Peterson, Ronny Pfannschmidt, Floris Bruynooghe and others",,holger at merlinux.eu,,,,,,,,,,,mit,,pytest.LICENSE
16+
/about/schematics.ABOUT,/about/schematics-0.9_5-py2-none-any.whl,schematics-0.9_5-py2-none-any.whl,schematics,0.9-5,https://pypi.python.org/packages/source/s/schematics/schematics-0.9-5.tar.gz#md5=82ba0d67aa2600421877edcd9e7500f7,,https://github.com/schematics/schematics,,,,,,,"Copyright (c) 2013, J2 Labs LLC.",,,,,,,,J2 Labs LLC.,,,,,,,,,,,,,bsd-new,,schematics.LICENSE
17+
/about/setuptools.ABOUT,/about/setuptools-5.6-py2.py3-none-any.whl,setuptools-5.6-py2.py3-none-any.whl,setuptools,5.6,https://pypi.python.org/packages/3.4/s/setuptools/setuptools-5.6-py2.py3-none-any.whl#md5=4503e42d67edc51e293ba9be4af799a5,,https://pypi.python.org/pypi/setuptools,,,,,,,,,,,,,,,Python Packaging Authority,,,,,,,,,,,,,psf,,PSF.LICENSE
18+
/about/unicodecsv.ABOUT,/about/unicodecsv-0.9.4-py2-none-any.whl,unicodecsv-0.9.4-py2-none-any.whl,unicodecsv,0.9.4,https://pypi.python.org/packages/source/u/unicodecsv/unicodecsv-0.9.4.tar.gz#md5=344fa55f299ba198cb73db48546002fd,,https://github.com/jdunck/python-unicodecsv,,,,,,,,,,,,,,,Jeremy Dunck,,,,git,https://github.com/jdunck/python-unicodecsv.git,,,,,,,,bsd-new,,unicodecsv.LICENSE
19+
/about/virtualenv.ABOUT,/about/virtualenv-1.11.6-py2.py3-none-any.whl,virtualenv-1.11.6-py2.py3-none-any.whl,virtualenv,1.11.6,https://raw.githubusercontent.com/pypa/virtualenv/1.11.6/virtualenv.py,,http://virtualenv.org/,,,,,,https://raw.github.com/pypa/virtualenv/develop/LICENSE.txt,"Copyright (c) 2007 Ian Bicking and Contributors
2020
Copyright (c) 2009 Ian Bicking, The Open Planning Project
2121
Copyright (c) 2011-2014 The virtualenv developers",,,,,,,,The virtualenv developers,,,,git,https://github.com/pypa/virtualenv.git,,,,,,,,mit,,virtualenv.LICENSE
22-
/about/virtualenv.py.ABOUT,/about/virtualenv.py,virtualenv.py,virtualenv,1.11.6,https://raw.githubusercontent.com/pypa/virtualenv/1.11.6/virtualenv.py,,http://virtualenv.org/,,,,,https://raw.github.com/pypa/virtualenv/develop/LICENSE.txt,"Copyright (c) 2007 Ian Bicking and Contributors
22+
/about/virtualenv.py.ABOUT,/about/virtualenv.py,virtualenv.py,virtualenv,1.11.6,https://raw.githubusercontent.com/pypa/virtualenv/1.11.6/virtualenv.py,,http://virtualenv.org/,,,,,,https://raw.github.com/pypa/virtualenv/develop/LICENSE.txt,"Copyright (c) 2007 Ian Bicking and Contributors
2323
Copyright (c) 2009 Ian Bicking, The Open Planning Project
2424
Copyright (c) 2011-2014 The virtualenv developers",,,,,,,,The virtualenv developers,,,,git,https://github.com/pypa/virtualenv.git,,,,,,,,mit,,virtualenv.LICENSE
25-
/about/wheel.ABOUT,/about/wheel-0.24.0-py2.py3-none-any.whl,wheel-0.24.0-py2.py3-none-any.whl,wheel,0.24.0,https://pypi.python.org/packages/py2.py3/w/wheel/wheel-0.24.0-py2.py3-none-any.whl#md5=4c24453cda2177fd42c5d62d6434679a,,https://bitbucket.org/pypa/wheel,,,,,,"copyright (c) 2012-2014 Daniel Holth <[email protected]> and
25+
/about/wheel.ABOUT,/about/wheel-0.24.0-py2.py3-none-any.whl,wheel-0.24.0-py2.py3-none-any.whl,wheel,0.24.0,https://pypi.python.org/packages/py2.py3/w/wheel/wheel-0.24.0-py2.py3-none-any.whl#md5=4c24453cda2177fd42c5d62d6434679a,,https://bitbucket.org/pypa/wheel,,,,,,,"copyright (c) 2012-2014 Daniel Holth <[email protected]> and
2626
contributors.",,,,,,,,,,,,hg,https://bitbucket.org/pypa/wheel,,,,,,,,mit,,wheel.LICENSE
27-
/about/wincertstore.ABOUT,/about/wincertstore-0.2-py2.py3-none-any.whl,wincertstore-0.2-py2.py3-none-any.whl,wincertstore,0.2,https://pypi.python.org/packages/source/w/wincertstore/wincertstore-0.2.zip,Python module to extract CA and CRL certs from Windows' cert store (ctypes based).,https://bitbucket.org/tiran/wincertstore,,,,,,,,,,,,,,Christian Heimes,,[email protected],,,,,,,,,,,psf,,wincertstore.LICENSE
27+
/about/wincertstore.ABOUT,/about/wincertstore-0.2-py2.py3-none-any.whl,wincertstore-0.2-py2.py3-none-any.whl,wincertstore,0.2,https://pypi.python.org/packages/source/w/wincertstore/wincertstore-0.2.zip,Python module to extract CA and CRL certs from Windows' cert store (ctypes based).,https://bitbucket.org/tiran/wincertstore,,,,,,,,,,,,,,,Christian Heimes,,[email protected],,,,,,,,,,,psf,,wincertstore.LICENSE

tests/testdata/parse/complete/about.ABOUT

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ description: |
1717
An ABOUT file is a file.
1818

1919
license: apache-2.0
20+
license_expression: apache-2.0
2021
license_file: apache-2.0.LICENSE
2122
copyright: Copyright (c) 2013-2014 nexB Inc.
2223

0 commit comments

Comments
 (0)