Skip to content

Commit

Permalink
Add .ABOUT, .NOTICE files #101
Browse files Browse the repository at this point in the history
Reference: #101

Signed-off-by: John M. Horan <[email protected]>
  • Loading branch information
johnmhoran committed Mar 8, 2023
1 parent 48dc602 commit 1e56074
Show file tree
Hide file tree
Showing 10 changed files with 105 additions and 0 deletions.
Empty file added src/univers/conan/__init__.py
Empty file.
6 changes: 6 additions & 0 deletions src/univers/conan/errors.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
#
# Copyright (c) 2019 JFrog LTD
# SPDX-License-Identifier: MIT
#
# Visit https://aboutcode.org and https://github.com/nexB/univers for support and download.

"""
Exceptions raised and handled in Conan
These exceptions are mapped between server (as an HTTP response) and client
Expand Down
8 changes: 8 additions & 0 deletions src/univers/conan/errors.py.ABOUT
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
about_resource: errors.py
package_url: pkg:pypi/[email protected]
copyright: |
Copyright (c) 2019 JFrog LTD
download_url: https://github.com/conan-io/conan/blob/release/2.0/conans/errors.py
license_expression: MIT
homepage_url: https://github.com/conan-io/conan
notice_file: errors.py.NOTICE
21 changes: 21 additions & 0 deletions src/univers/conan/errors.py.NOTICE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
The MIT License (MIT)

Copyright (c) 2019 JFrog LTD

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
6 changes: 6 additions & 0 deletions src/univers/conan/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
#
# Copyright (c) 2019 JFrog LTD
# SPDX-License-Identifier: MIT
#
# Visit https://aboutcode.org and https://github.com/nexB/univers for support and download.

from functools import total_ordering

from univers.conan.errors import ConanException
Expand Down
8 changes: 8 additions & 0 deletions src/univers/conan/version.py.ABOUT
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
about_resource: version.py
package_url: pkg:pypi/[email protected]
copyright: |
Copyright (c) 2019 JFrog LTD
download_url: https://github.com/conan-io/conan/blob/release/2.0/conans/model/version.py
license_expression: MIT
homepage_url: https://github.com/conan-io/conan
notice_file: version.py.NOTICE
21 changes: 21 additions & 0 deletions src/univers/conan/version.py.NOTICE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
The MIT License (MIT)

Copyright (c) 2019 JFrog LTD

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
6 changes: 6 additions & 0 deletions src/univers/conan/version_range.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
#
# Copyright (c) 2019 JFrog LTD
# SPDX-License-Identifier: MIT
#
# Visit https://aboutcode.org and https://github.com/nexB/univers for support and download.

from collections import namedtuple

from univers.conan.errors import ConanException
Expand Down
8 changes: 8 additions & 0 deletions src/univers/conan/version_range.py.ABOUT
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
about_resource: version_range.py
package_url: pkg:pypi/[email protected]
copyright: |
Copyright (c) 2019 JFrog LTD
download_url: https://github.com/conan-io/conan/blob/release/2.0/conans/model/version_range.py
license_expression: MIT
homepage_url: https://github.com/conan-io/conan
notice_file: version_range.py.NOTICE
21 changes: 21 additions & 0 deletions src/univers/conan/version_range.py.NOTICE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
The MIT License (MIT)

Copyright (c) 2019 JFrog LTD

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

0 comments on commit 1e56074

Please sign in to comment.