mirror of
https://github.com/curl/curl.git
synced 2025-02-17 14:59:45 +08:00
reuse/dep5: adjusted to parse better
... adjusted a few files to contain copyright and license info. Closes #9006
This commit is contained in:
parent
10f8fe3683
commit
2b7f7d04f7
11
.reuse/dep5
11
.reuse/dep5
@ -4,7 +4,7 @@ Upstream-Contact: Daniel Stenberg <daniel@haxx.se>
|
||||
Source: https://curl.se
|
||||
|
||||
# Tests
|
||||
Files: tests/*
|
||||
Files: tests/data/test* tests/certs/* tests/stunnel.pem tests/valgrind.supp
|
||||
Copyright: 2000 - 2022 Daniel Stenberg, <daniel@haxx.se>, et al.
|
||||
License: curl
|
||||
|
||||
@ -14,7 +14,7 @@ Copyright: 2000 - 2022 Daniel Stenberg, <daniel@haxx.se>, et al.
|
||||
License: curl
|
||||
|
||||
# Docs in docs/
|
||||
Files: docs/FAQ docs/INSTALL docs/INSTALL.cmake docs/KNOWN_BUGS docs/MAIL-ETIQUETTE docs/THANKS docs/TODO docs/cmdline-opts/page-footer docs/examples/.checksrc docs/libcurl/curl_multi_socket_all.3 docs/libcurl/curl_strnequal.3 docs/libcurl/symbols-in-versions docs/options-in-versions
|
||||
Files: docs/FAQ docs/INSTALL docs/INSTALL.cmake docs/KNOWN_BUGS docs/MAIL-ETIQUETTE docs/THANKS docs/TODO docs/cmdline-opts/page-footer docs/libcurl/curl_multi_socket_all.3 docs/libcurl/curl_strnequal.3 docs/libcurl/symbols-in-versions docs/options-in-versions
|
||||
Copyright: 2000 - 2022 Daniel Stenberg, <daniel@haxx.se>, et al.
|
||||
License: curl
|
||||
|
||||
@ -36,7 +36,8 @@ Files: RELEASE-NOTES
|
||||
Copyright: 2003 - 2022 Daniel Stenberg, <daniel@haxx.se>, et al.
|
||||
License: curl
|
||||
|
||||
Files: lib/.checksrc
|
||||
# checksrc control files
|
||||
Files: lib/.checksrc docs/examples/.checksrc tests/libtest/.checksrc
|
||||
Copyright: 2021 - 2022 Daniel Stenberg, <daniel@haxx.se>, et al.
|
||||
License: curl
|
||||
|
||||
@ -96,10 +97,10 @@ Files: README
|
||||
Copyright: 1999 - 2021 Daniel Stenberg, <daniel@haxx.se>, et al.
|
||||
License: curl
|
||||
|
||||
FILES: .github/ISSUE_TEMPLATE/bug_report.md
|
||||
Files: .github/ISSUE_TEMPLATE/bug_report.md
|
||||
Copyright: 2020 - 2022 Daniel Stenberg, <daniel@haxx.se>, et al.
|
||||
License: curl
|
||||
|
||||
FILES: .mailmap
|
||||
Files: .mailmap
|
||||
Copyright: 2017 - 2022 Daniel Stenberg, <daniel@haxx.se>, et al.
|
||||
License: curl
|
||||
|
@ -1,3 +1,9 @@
|
||||
<!--
|
||||
Copyright (C) 1998 - 2022 Daniel Stenberg, <daniel@haxx.se>, et al.
|
||||
|
||||
SPDX-License-Identifier: curl
|
||||
-->
|
||||
|
||||
# libcurl examples
|
||||
|
||||
This directory is for libcurl programming examples. They are meant to show
|
||||
|
@ -1,3 +1,9 @@
|
||||
<!--
|
||||
Copyright (C) 1998 - 2022 Daniel Stenberg, <daniel@haxx.se>, et al.
|
||||
|
||||
SPDX-License-Identifier: curl
|
||||
-->
|
||||
|
||||
ABI - Application Binary Interface
|
||||
==================================
|
||||
|
||||
|
@ -1,3 +1,9 @@
|
||||
<!--
|
||||
Copyright (C) 1998 - 2022 Daniel Stenberg, <daniel@haxx.se>, et al.
|
||||
|
||||
SPDX-License-Identifier: curl
|
||||
-->
|
||||
|
||||
# Continuous Integration for curl
|
||||
|
||||
Curl runs in many different environments, so every change is run against a large
|
||||
|
@ -1,3 +1,9 @@
|
||||
<!--
|
||||
Copyright (C) 1998 - 2022 Daniel Stenberg, <daniel@haxx.se>, et al.
|
||||
|
||||
SPDX-License-Identifier: curl
|
||||
-->
|
||||
|
||||
# curl test suite file format
|
||||
|
||||
The curl test suite's file format is very simple and extensible, closely
|
||||
|
@ -1,3 +1,9 @@
|
||||
<!--
|
||||
Copyright (C) 1998 - 2022 Daniel Stenberg, <daniel@haxx.se>, et al.
|
||||
|
||||
SPDX-License-Identifier: curl
|
||||
-->
|
||||
|
||||
# The curl Test Suite
|
||||
|
||||
# Running
|
||||
|
@ -1,3 +1,27 @@
|
||||
#***************************************************************************
|
||||
# _ _ ____ _
|
||||
# Project ___| | | | _ \| |
|
||||
# / __| | | | |_) | |
|
||||
# | (__| |_| | _ <| |___
|
||||
# \___|\___/|_| \_\_____|
|
||||
#
|
||||
# Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
|
||||
#
|
||||
# This software is licensed as described in the file COPYING, which
|
||||
# you should have received as part of this distribution. The terms
|
||||
# are also available at https://curl.se/docs/copyright.html.
|
||||
#
|
||||
# You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
||||
# copies of the Software, and permit persons to whom the Software is
|
||||
# furnished to do so, under the terms of the COPYING file.
|
||||
#
|
||||
# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
||||
# KIND, either express or implied.
|
||||
#
|
||||
# SPDX-License-Identifier: curl
|
||||
#
|
||||
###########################################################################
|
||||
#
|
||||
# This file can be used to specify test cases that should not run when all
|
||||
# test cases are run by runtests.pl. Just add the plain test case numbers, one
|
||||
# per line.
|
||||
|
@ -1,3 +1,9 @@
|
||||
<!--
|
||||
Copyright (C) 1998 - 2022 Daniel Stenberg, <daniel@haxx.se>, et al.
|
||||
|
||||
SPDX-License-Identifier: curl
|
||||
-->
|
||||
|
||||
Fuzz tests
|
||||
==========
|
||||
|
@ -1,3 +1,9 @@
|
||||
<!--
|
||||
Copyright (C) 1998 - 2022 Daniel Stenberg, <daniel@haxx.se>, et al.
|
||||
|
||||
SPDX-License-Identifier: curl
|
||||
-->
|
||||
|
||||
# Unit tests
|
||||
|
||||
The goal is to add tests for *all* functions in libcurl. If functions are too
|
||||
|
Loading…
Reference in New Issue
Block a user