[PATCH] D65762: lit: Use a License classifier that pypi will accept

Tom Stellard via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Aug 5 11:29:33 PDT 2019


tstellar created this revision.
tstellar added reviewers: chandlerc, ddunbar.
Herald added a subscriber: delcypher.
Herald added a project: LLVM.

'OSI Approved :: Apache-2.0 with LLVM exception' is not a valid
classifier and neither is 'OSI Approved :: Apache-2.0', so change
it to 'Freely Distributable'.

The classifiers seem to only be used for searching on the pypi website,
so this does not actually change the license of the code.
We still pass 'Apache-2.0 with LLVM exception' as the license to setup().


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D65762

Files:
  llvm/utils/lit/lit/__init__.py
  llvm/utils/lit/setup.py


Index: llvm/utils/lit/setup.py
===================================================================
--- llvm/utils/lit/setup.py
+++ llvm/utils/lit/setup.py
@@ -60,7 +60,7 @@
         'Development Status :: 3 - Alpha',
         'Environment :: Console',
         'Intended Audience :: Developers',
-        'License :: OSI Approved :: Apache-2.0 with LLVM exception',
+        'License :: Freely Distributable',
         'Natural Language :: English',
         'Operating System :: OS Independent',
         'Programming Language :: Python',
Index: llvm/utils/lit/lit/__init__.py
===================================================================
--- llvm/utils/lit/lit/__init__.py
+++ llvm/utils/lit/lit/__init__.py
@@ -2,8 +2,8 @@
 
 __author__ = 'Daniel Dunbar'
 __email__ = 'daniel at minormatter.com'
-__versioninfo__ = (0, 8, 0)
-__version__ = '.'.join(str(v) for v in __versioninfo__) + 'dev'
+__versioninfo__ = (0, 9, 0)
+__version__ = '.'.join(str(v) for v in __versioninfo__) + 'rc1'
 
 __all__ = []
 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D65762.213416.patch
Type: text/x-patch
Size: 1008 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190805/802c6ed2/attachment.bin>


More information about the llvm-commits mailing list