Skip to content

Commit 5d9cf01

Browse files
davide125facebook-github-bot
authored andcommittedMar 5, 2021
fiosynth: fix more license stuff
Summary: Should be the last round of cleanups Reviewed By: nikitakoshikov Differential Revision: D26781515 fbshipit-source-id: af25161359ca76caab00eb2fb805e96348dd02b5
1 parent 67905b1 commit 5d9cf01

File tree

6 files changed

+2
-23
lines changed

6 files changed

+2
-23
lines changed
 

‎MANIFEST.in

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
include CODE_OF_CONDUCT.md
22
include CONTRIBUTING.md
33
include LICENSE
4-
include PATENTS
54
include README-READHAMMER.txt
65
include Release_Notes.txt
76
include smartAll.sh

‎README.md

-8
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# Copyright (c) Facebook, Inc. and its affiliates.
21
# fiosynth
32
FB fio Synthetic Benchmark Suite for Flash ver 3.5.41
43

@@ -235,14 +234,7 @@ To run in client/server mode, ensure that the following requirements are met:
235234
devserver.
236235

237236

238-
## Full documentation
239-
...
240-
241237
## Join the fiosynth community
242-
* Website:
243-
* Facebook page:
244-
* Mailing list
245-
* irc:
246238
See the CONTRIBUTING file for how to help out.
247239

248240
## License

‎setup.cfg

-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
# Copyright (c) 2017-present, Facebook, Inc.
22
# All rights reserved.
3-
#
4-
# This source code is licensed under the BSD-style license found in the
5-
# LICENSE file in the root directory of this source tree. An additional grant
6-
# of patent rights can be found in the PATENTS file in the same directory.
73

84
[nosetests]
95
detailed-errors = 1

‎setup.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ def get_data_files():
2020
(base_dir, ['CODE_OF_CONDUCT.md']),
2121
(base_dir, ['CONTRIBUTING.md']),
2222
(base_dir, ['LICENSE']),
23-
(base_dir, ['PATENTS']),
2423
(base_dir, ['README.md']),
2524
(base_dir, ['README-READHAMMER.txt']),
2625
(base_dir, ['Release_Notes.txt']),
@@ -40,7 +39,7 @@ def get_data_files():
4039
author_email='darryleg@fb.com',
4140
packages=find_packages(exclude=['jobfiles', 'wkldsuites', 'tests']),
4241
data_files=get_data_files(),
43-
license='BSD+PATENTS',
42+
license='MIT',
4443
scripts=['fiosynth.py'],
4544
entry_points={
4645
'console_scripts': [

‎test-requirements.txt

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
# Copyright (c) 2017-present, Facebook, Inc.
22
# All rights reserved.
3-
#
4-
# This source code is licensed under the BSD-style license found in the
5-
# LICENSE file in the root directory of this source tree. An additional grant
6-
# of patent rights can be found in the PATENTS file in the same directory.
3+
74
nose>=1.3
85
flake8>=2.1.0

‎tox.ini

-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
# Copyright (c) 2017-present, Facebook, Inc.
22
# All rights reserved.
3-
#
4-
# This source code is licensed under the BSD-style license found in the
5-
# LICENSE file in the root directory of this source tree. An additional grant
6-
# of patent rights can be found in the PATENTS file in the same directory.
73

84
[tox]
95
skipsdist = True

0 commit comments

Comments
 (0)
Please sign in to comment.