From a5c0db938893d2c12cab12a1f7eb3e646ed80373 Mon Sep 17 00:00:00 2001 From: Ken Odegard Date: Thu, 18 Aug 2022 15:19:49 -0500 Subject: [PATCH] Remove old disclaimer blurb --- conda_build/__init__.py | 6 ------ conda_build/api.py | 6 ------ conda_build/cli/main_build.py | 7 ------- conda_build/cli/main_convert.py | 6 ------ conda_build/cli/main_debug.py | 5 ----- conda_build/cli/main_develop.py | 7 ------- conda_build/cli/main_inspect.py | 6 ------ conda_build/cli/main_metapackage.py | 7 ------- conda_build/cli/main_render.py | 7 ------- conda_build/cli/main_skeleton.py | 7 ------- conda_build/develop.py | 7 ------- conda_build/inspect_pkg.py | 7 ------- conda_build/render.py | 7 ------- docs/scrape_help.py | 6 ------ 14 files changed, 91 deletions(-) diff --git a/conda_build/__init__.py b/conda_build/__init__.py index 1187d4f2aa..9f97bfeef2 100644 --- a/conda_build/__init__.py +++ b/conda_build/__init__.py @@ -1,9 +1,3 @@ -# (c) Continuum Analytics, Inc. / http://continuum.io -# All Rights Reserved -# -# conda is distributed under the terms of the BSD 3-clause license. -# Consult LICENSE.txt or http://opensource.org/licenses/BSD-3-Clause. - from . import _version __version__ = _version.get_versions()['version'] diff --git a/conda_build/api.py b/conda_build/api.py index b0d576ef5d..0920fdb82c 100644 --- a/conda_build/api.py +++ b/conda_build/api.py @@ -1,9 +1,3 @@ -# (c) Continuum Analytics, Inc. / http://continuum.io -# All Rights Reserved -# -# conda is distributed under the terms of the BSD 3-clause license. -# Consult LICENSE.txt or http://opensource.org/licenses/BSD-3-Clause. - """ This file defines the public API for conda-build. Adding or removing functions, or Changing arguments to anything in here should also mean changing the major diff --git a/conda_build/cli/main_build.py b/conda_build/cli/main_build.py index 89ddb89075..43219e22d8 100644 --- a/conda_build/cli/main_build.py +++ b/conda_build/cli/main_build.py @@ -1,10 +1,3 @@ -# (c) Continuum Analytics, Inc. / http://continuum.io -# All Rights Reserved -# -# conda is distributed under the terms of the BSD 3-clause license. -# Consult LICENSE.txt or http://opensource.org/licenses/BSD-3-Clause. - - import argparse import warnings diff --git a/conda_build/cli/main_convert.py b/conda_build/cli/main_convert.py index cce60d791f..282676eb52 100644 --- a/conda_build/cli/main_convert.py +++ b/conda_build/cli/main_convert.py @@ -1,9 +1,3 @@ -# (c) Continuum Analytics, Inc. / http://continuum.io -# All Rights Reserved -# -# conda is distributed under the terms of the BSD 3-clause license. -# Consult LICENSE.txt or http://opensource.org/licenses/BSD-3-Clause. - from locale import getpreferredencoding import logging from os.path import abspath, expanduser diff --git a/conda_build/cli/main_debug.py b/conda_build/cli/main_debug.py index ab85f89b9e..14b6d461bf 100644 --- a/conda_build/cli/main_debug.py +++ b/conda_build/cli/main_debug.py @@ -1,8 +1,3 @@ -# (c) Continuum Analytics, Inc. / http://continuum.io -# All Rights Reserved -# -# conda is distributed under the terms of the BSD 3-clause license. -# Consult LICENSE.txt or http://opensource.org/licenses/BSD-3-Clause. import logging import sys from argparse import ArgumentParser diff --git a/conda_build/cli/main_develop.py b/conda_build/cli/main_develop.py index 1afd587f57..27129ecfee 100644 --- a/conda_build/cli/main_develop.py +++ b/conda_build/cli/main_develop.py @@ -1,10 +1,3 @@ -# (c) Continuum Analytics, Inc. / http://continuum.io -# All Rights Reserved -# -# conda is distributed under the terms of the BSD 3-clause license. -# Consult LICENSE.txt or http://opensource.org/licenses/BSD-3-Clause. - - import logging import sys diff --git a/conda_build/cli/main_inspect.py b/conda_build/cli/main_inspect.py index 08e67bcb3d..7555c69801 100644 --- a/conda_build/cli/main_inspect.py +++ b/conda_build/cli/main_inspect.py @@ -1,9 +1,3 @@ -# (c) Continuum Analytics, Inc. / http://continuum.io -# All Rights Reserved -# -# conda is distributed under the terms of the BSD 3-clause license. -# Consult LICENSE.txt or http://opensource.org/licenses/BSD-3-Clause. - import logging from os.path import expanduser from pprint import pprint diff --git a/conda_build/cli/main_metapackage.py b/conda_build/cli/main_metapackage.py index 3f1d2458a2..9eefc0506b 100644 --- a/conda_build/cli/main_metapackage.py +++ b/conda_build/cli/main_metapackage.py @@ -1,10 +1,3 @@ -# (c) Continuum Analytics, Inc. / http://continuum.io -# All Rights Reserved -# -# conda is distributed under the terms of the BSD 3-clause license. -# Consult LICENSE.txt or http://opensource.org/licenses/BSD-3-Clause. - - import argparse import logging import sys diff --git a/conda_build/cli/main_render.py b/conda_build/cli/main_render.py index d9c4d87d06..44098c81c0 100644 --- a/conda_build/cli/main_render.py +++ b/conda_build/cli/main_render.py @@ -1,10 +1,3 @@ -# (c) Continuum Analytics, Inc. / http://continuum.io -# All Rights Reserved -# -# conda is distributed under the terms of the BSD 3-clause license. -# Consult LICENSE.txt or http://opensource.org/licenses/BSD-3-Clause. - - import argparse import logging import sys diff --git a/conda_build/cli/main_skeleton.py b/conda_build/cli/main_skeleton.py index e5b4c0a811..570c7cf014 100644 --- a/conda_build/cli/main_skeleton.py +++ b/conda_build/cli/main_skeleton.py @@ -1,10 +1,3 @@ -# (c) Continuum Analytics, Inc. / http://continuum.io -# All Rights Reserved -# -# conda is distributed under the terms of the BSD 3-clause license. -# Consult LICENSE.txt or http://opensource.org/licenses/BSD-3-Clause. - - import importlib import logging import os diff --git a/conda_build/develop.py b/conda_build/develop.py index a9271d8b27..0d41bcd992 100644 --- a/conda_build/develop.py +++ b/conda_build/develop.py @@ -1,10 +1,3 @@ -# (c) Continuum Analytics, Inc. / http://continuum.io -# All Rights Reserved -# -# conda is distributed under the terms of the BSD 3-clause license. -# Consult LICENSE.txt or http://opensource.org/licenses/BSD-3-Clause. - - from os.path import join, isdir, abspath, expanduser, exists import shutil import sys diff --git a/conda_build/inspect_pkg.py b/conda_build/inspect_pkg.py index f7c96126c0..547588a221 100644 --- a/conda_build/inspect_pkg.py +++ b/conda_build/inspect_pkg.py @@ -1,10 +1,3 @@ -# (c) Continuum Analytics, Inc. / http://continuum.io -# All Rights Reserved -# -# conda is distributed under the terms of the BSD 3-clause license. -# Consult LICENSE.txt or http://opensource.org/licenses/BSD-3-Clause. - - from collections import defaultdict from itertools import groupby import json diff --git a/conda_build/render.py b/conda_build/render.py index 4a2497a623..a00c2484bb 100644 --- a/conda_build/render.py +++ b/conda_build/render.py @@ -1,10 +1,3 @@ -# (c) Continuum Analytics, Inc. / http://continuum.io -# All Rights Reserved -# -# conda is distributed under the terms of the BSD 3-clause license. -# Consult LICENSE.txt or http://opensource.org/licenses/BSD-3-Clause. - - from collections import OrderedDict, defaultdict from locale import getpreferredencoding import json diff --git a/docs/scrape_help.py b/docs/scrape_help.py index ed574eba7d..6966140650 100755 --- a/docs/scrape_help.py +++ b/docs/scrape_help.py @@ -1,10 +1,4 @@ #!/usr/bin/env python -# (c) 2012-2013 Anaconda, Inc. / http://continuum.io -# All Rights Reserved -# -# conda is distributed under the terms of the BSD 3-clause license. -# Consult LICENSE.txt or http://opensource.org/licenses/BSD-3-Clause. - from subprocess import check_output, PIPE, Popen, STDOUT from os.path import join, dirname, abspath, isdir from os import makedirs, pathsep