Skip to content

Commit 852ef7f

Browse files
committed
Make the project compliant with the REUSE guidelines.
See https://reuse.software/ for details.
1 parent 09feac3 commit 852ef7f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+417
-1
lines changed

.bumpversion.cfg

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2015 Eric Larson
2+
#
3+
# SPDX-License-Identifier: Apache-2.0
4+
15
[bumpversion]
26
current_version = 0.12.6
37
files = setup.py cachecontrol/__init__.py docs/conf.py

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2015 Eric Larson
2+
#
3+
# SPDX-License-Identifier: Apache-2.0
4+
15
*.egg-info/*
26
*.pyc
37
*.pyo

.pre-commit-config.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2015 Eric Larson
2+
#
3+
# SPDX-License-Identifier: Apache-2.0
4+
15
repos:
26
- repo: https://github.com/pre-commit/pre-commit-hooks
37
rev: v2.3.0

.travis.yml

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2015 Eric Larson
2+
#
3+
# SPDX-License-Identifier: Apache-2.0
4+
15
language: python
26
sudo: false
37

CONTRIBUTORS.rst

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
..
2+
SPDX-FileCopyrightText: SPDX-FileCopyrightText: 2015 Eric Larson
3+
4+
SPDX-License-Identifier: Apache-2.0
5+
16
==============
27
Contributors
38
==============

LICENSES/Apache-2.0.txt

+208
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,208 @@
1+
Apache License
2+
3+
Version 2.0, January 2004
4+
5+
http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION,
6+
AND DISTRIBUTION
7+
8+
1. Definitions.
9+
10+
11+
12+
"License" shall mean the terms and conditions for use, reproduction, and distribution
13+
as defined by Sections 1 through 9 of this document.
14+
15+
16+
17+
"Licensor" shall mean the copyright owner or entity authorized by the copyright
18+
owner that is granting the License.
19+
20+
21+
22+
"Legal Entity" shall mean the union of the acting entity and all other entities
23+
that control, are controlled by, or are under common control with that entity.
24+
For the purposes of this definition, "control" means (i) the power, direct
25+
or indirect, to cause the direction or management of such entity, whether
26+
by contract or otherwise, or (ii) ownership of fifty percent (50%) or more
27+
of the outstanding shares, or (iii) beneficial ownership of such entity.
28+
29+
30+
31+
"You" (or "Your") shall mean an individual or Legal Entity exercising permissions
32+
granted by this License.
33+
34+
35+
36+
"Source" form shall mean the preferred form for making modifications, including
37+
but not limited to software source code, documentation source, and configuration
38+
files.
39+
40+
41+
42+
"Object" form shall mean any form resulting from mechanical transformation
43+
or translation of a Source form, including but not limited to compiled object
44+
code, generated documentation, and conversions to other media types.
45+
46+
47+
48+
"Work" shall mean the work of authorship, whether in Source or Object form,
49+
made available under the License, as indicated by a copyright notice that
50+
is included in or attached to the work (an example is provided in the Appendix
51+
below).
52+
53+
54+
55+
"Derivative Works" shall mean any work, whether in Source or Object form,
56+
that is based on (or derived from) the Work and for which the editorial revisions,
57+
annotations, elaborations, or other modifications represent, as a whole, an
58+
original work of authorship. For the purposes of this License, Derivative
59+
Works shall not include works that remain separable from, or merely link (or
60+
bind by name) to the interfaces of, the Work and Derivative Works thereof.
61+
62+
63+
64+
"Contribution" shall mean any work of authorship, including the original version
65+
of the Work and any modifications or additions to that Work or Derivative
66+
Works thereof, that is intentionally submitted to Licensor for inclusion in
67+
the Work by the copyright owner or by an individual or Legal Entity authorized
68+
to submit on behalf of the copyright owner. For the purposes of this definition,
69+
"submitted" means any form of electronic, verbal, or written communication
70+
sent to the Licensor or its representatives, including but not limited to
71+
communication on electronic mailing lists, source code control systems, and
72+
issue tracking systems that are managed by, or on behalf of, the Licensor
73+
for the purpose of discussing and improving the Work, but excluding communication
74+
that is conspicuously marked or otherwise designated in writing by the copyright
75+
owner as "Not a Contribution."
76+
77+
78+
79+
"Contributor" shall mean Licensor and any individual or Legal Entity on behalf
80+
of whom a Contribution has been received by Licensor and subsequently incorporated
81+
within the Work.
82+
83+
2. Grant of Copyright License. Subject to the terms and conditions of this
84+
License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive,
85+
no-charge, royalty-free, irrevocable copyright license to reproduce, prepare
86+
Derivative Works of, publicly display, publicly perform, sublicense, and distribute
87+
the Work and such Derivative Works in Source or Object form.
88+
89+
3. Grant of Patent License. Subject to the terms and conditions of this License,
90+
each Contributor hereby grants to You a perpetual, worldwide, non-exclusive,
91+
no-charge, royalty-free, irrevocable (except as stated in this section) patent
92+
license to make, have made, use, offer to sell, sell, import, and otherwise
93+
transfer the Work, where such license applies only to those patent claims
94+
licensable by such Contributor that are necessarily infringed by their Contribution(s)
95+
alone or by combination of their Contribution(s) with the Work to which such
96+
Contribution(s) was submitted. If You institute patent litigation against
97+
any entity (including a cross-claim or counterclaim in a lawsuit) alleging
98+
that the Work or a Contribution incorporated within the Work constitutes direct
99+
or contributory patent infringement, then any patent licenses granted to You
100+
under this License for that Work shall terminate as of the date such litigation
101+
is filed.
102+
103+
4. Redistribution. You may reproduce and distribute copies of the Work or
104+
Derivative Works thereof in any medium, with or without modifications, and
105+
in Source or Object form, provided that You meet the following conditions:
106+
107+
(a) You must give any other recipients of the Work or Derivative Works a copy
108+
of this License; and
109+
110+
(b) You must cause any modified files to carry prominent notices stating that
111+
You changed the files; and
112+
113+
(c) You must retain, in the Source form of any Derivative Works that You distribute,
114+
all copyright, patent, trademark, and attribution notices from the Source
115+
form of the Work, excluding those notices that do not pertain to any part
116+
of the Derivative Works; and
117+
118+
(d) If the Work includes a "NOTICE" text file as part of its distribution,
119+
then any Derivative Works that You distribute must include a readable copy
120+
of the attribution notices contained within such NOTICE file, excluding those
121+
notices that do not pertain to any part of the Derivative Works, in at least
122+
one of the following places: within a NOTICE text file distributed as part
123+
of the Derivative Works; within the Source form or documentation, if provided
124+
along with the Derivative Works; or, within a display generated by the Derivative
125+
Works, if and wherever such third-party notices normally appear. The contents
126+
of the NOTICE file are for informational purposes only and do not modify the
127+
License. You may add Your own attribution notices within Derivative Works
128+
that You distribute, alongside or as an addendum to the NOTICE text from the
129+
Work, provided that such additional attribution notices cannot be construed
130+
as modifying the License.
131+
132+
You may add Your own copyright statement to Your modifications and may provide
133+
additional or different license terms and conditions for use, reproduction,
134+
or distribution of Your modifications, or for any such Derivative Works as
135+
a whole, provided Your use, reproduction, and distribution of the Work otherwise
136+
complies with the conditions stated in this License.
137+
138+
5. Submission of Contributions. Unless You explicitly state otherwise, any
139+
Contribution intentionally submitted for inclusion in the Work by You to the
140+
Licensor shall be under the terms and conditions of this License, without
141+
any additional terms or conditions. Notwithstanding the above, nothing herein
142+
shall supersede or modify the terms of any separate license agreement you
143+
may have executed with Licensor regarding such Contributions.
144+
145+
6. Trademarks. This License does not grant permission to use the trade names,
146+
trademarks, service marks, or product names of the Licensor, except as required
147+
for reasonable and customary use in describing the origin of the Work and
148+
reproducing the content of the NOTICE file.
149+
150+
7. Disclaimer of Warranty. Unless required by applicable law or agreed to
151+
in writing, Licensor provides the Work (and each Contributor provides its
152+
Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
153+
KIND, either express or implied, including, without limitation, any warranties
154+
or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR
155+
A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness
156+
of using or redistributing the Work and assume any risks associated with Your
157+
exercise of permissions under this License.
158+
159+
8. Limitation of Liability. In no event and under no legal theory, whether
160+
in tort (including negligence), contract, or otherwise, unless required by
161+
applicable law (such as deliberate and grossly negligent acts) or agreed to
162+
in writing, shall any Contributor be liable to You for damages, including
163+
any direct, indirect, special, incidental, or consequential damages of any
164+
character arising as a result of this License or out of the use or inability
165+
to use the Work (including but not limited to damages for loss of goodwill,
166+
work stoppage, computer failure or malfunction, or any and all other commercial
167+
damages or losses), even if such Contributor has been advised of the possibility
168+
of such damages.
169+
170+
9. Accepting Warranty or Additional Liability. While redistributing the Work
171+
or Derivative Works thereof, You may choose to offer, and charge a fee for,
172+
acceptance of support, warranty, indemnity, or other liability obligations
173+
and/or rights consistent with this License. However, in accepting such obligations,
174+
You may act only on Your own behalf and on Your sole responsibility, not on
175+
behalf of any other Contributor, and only if You agree to indemnify, defend,
176+
and hold each Contributor harmless for any liability incurred by, or claims
177+
asserted against, such Contributor by reason of your accepting any such warranty
178+
or additional liability. END OF TERMS AND CONDITIONS
179+
180+
APPENDIX: How to apply the Apache License to your work.
181+
182+
To apply the Apache License to your work, attach the following boilerplate
183+
notice, with the fields enclosed by brackets "[]" replaced with your own identifying
184+
information. (Don't include the brackets!) The text should be enclosed in
185+
the appropriate comment syntax for the file format. We also recommend that
186+
a file or class name and description of purpose be included on the same "printed
187+
page" as the copyright notice for easier identification within third-party
188+
archives.
189+
190+
Copyright [yyyy] [name of copyright owner]
191+
192+
Licensed under the Apache License, Version 2.0 (the "License");
193+
194+
you may not use this file except in compliance with the License.
195+
196+
You may obtain a copy of the License at
197+
198+
http://www.apache.org/licenses/LICENSE-2.0
199+
200+
Unless required by applicable law or agreed to in writing, software
201+
202+
distributed under the License is distributed on an "AS IS" BASIS,
203+
204+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
205+
206+
See the License for the specific language governing permissions and
207+
208+
limitations under the License.

MANIFEST.in

-1
This file was deleted.

Makefile

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2015 Eric Larson
2+
#
3+
# SPDX-License-Identifier: Apache-2.0
4+
15
VENV=.venv
26
VENV_CMD=python3 -m venv
37
ACTIVATE = $(VENV)/bin/activate

README.rst

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
..
2+
SPDX-FileCopyrightText: SPDX-FileCopyrightText: 2015 Eric Larson
3+
4+
SPDX-License-Identifier: Apache-2.0
5+
16
==============
27
CacheControl
38
==============

cachecontrol/__init__.py

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2015 Eric Larson
2+
#
3+
# SPDX-License-Identifier: Apache-2.0
4+
15
"""CacheControl import Interface.
26
37
Make it easy to import from cachecontrol without long namespaces.

cachecontrol/_cmd.py

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2015 Eric Larson
2+
#
3+
# SPDX-License-Identifier: Apache-2.0
4+
15
import logging
26
from argparse import ArgumentParser
37

cachecontrol/adapter.py

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2015 Eric Larson
2+
#
3+
# SPDX-License-Identifier: Apache-2.0
4+
15
import functools
26
import types
37
import zlib

cachecontrol/cache.py

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2015 Eric Larson
2+
#
3+
# SPDX-License-Identifier: Apache-2.0
4+
15
"""
26
The cache object API for implementing caches. The default is a thread
37
safe in-memory dictionary.

cachecontrol/caches/__init__.py

+4
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
1+
# SPDX-FileCopyrightText: 2015 Eric Larson
2+
#
3+
# SPDX-License-Identifier: Apache-2.0
4+
15
from .file_cache import FileCache # noqa
26
from .redis_cache import RedisCache # noqa

cachecontrol/caches/file_cache.py

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2015 Eric Larson
2+
#
3+
# SPDX-License-Identifier: Apache-2.0
4+
15
import hashlib
26
import logging
37
import os

cachecontrol/caches/redis_cache.py

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2015 Eric Larson
2+
#
3+
# SPDX-License-Identifier: Apache-2.0
4+
15
from __future__ import division
26

37
from datetime import datetime

cachecontrol/compat.py

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2015 Eric Larson
2+
#
3+
# SPDX-License-Identifier: Apache-2.0
4+
15
# Handle the case where the requests module has been patched to not have
26
# urllib3 bundled as part of its source.
37
try:

cachecontrol/controller.py

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2015 Eric Larson
2+
#
3+
# SPDX-License-Identifier: Apache-2.0
4+
15
"""
26
The httplib2 algorithms ported for use with requests.
37
"""

cachecontrol/filewrapper.py

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2015 Eric Larson
2+
#
3+
# SPDX-License-Identifier: Apache-2.0
4+
15
from io import BytesIO
26

37

cachecontrol/heuristics.py

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2015 Eric Larson
2+
#
3+
# SPDX-License-Identifier: Apache-2.0
4+
15
import calendar
26
import time
37
from datetime import datetime, timedelta

cachecontrol/serialize.py

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2015 Eric Larson
2+
#
3+
# SPDX-License-Identifier: Apache-2.0
4+
15
import base64
26
import io
37
import json

cachecontrol/wrapper.py

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2015 Eric Larson
2+
#
3+
# SPDX-License-Identifier: Apache-2.0
4+
15
from .adapter import CacheControlAdapter
26
from .cache import DictCache
37

dev_requirements.txt

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2015 Eric Larson
2+
#
3+
# SPDX-License-Identifier: Apache-2.0
4+
15
-e .
26

37
black

docs/Makefile

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2015 Eric Larson
2+
#
3+
# SPDX-License-Identifier: Apache-2.0
4+
15
# Makefile for Sphinx documentation
26
#
37

docs/conf.py

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# -*- coding: utf-8 -*-
2+
3+
# SPDX-FileCopyrightText: 2015 Eric Larson
24
#
5+
# SPDX-License-Identifier: Apache-2.0
6+
37
# CacheControl documentation build configuration file, created by
48
# sphinx-quickstart on Mon Nov 4 15:01:23 2013.
59
#

0 commit comments

Comments
 (0)