Skip to content
Commits on Source (3)
......@@ -8,6 +8,7 @@ Build-Depends: debhelper (>= 12~),
python3,
python3-setuptools,
python3-pycosat,
python3-pexpect,
python3-requests,
python3-ruamel.yaml,
python3-responses,
......@@ -19,8 +20,13 @@ Homepage: https://conda.io/
Package: conda
Architecture: any
Depends: ${shlibs:Depends},
Depends: ${python3:Depends},
${misc:Depends}
python3-pycosat,
python3-pexpect,
python3-requests,
python3-ruamel.yaml,
python3-responses,
Description: OS-agnostic, system-level binary package manager and ecosystem
Conda is a cross-platform, language-agnostic binary package manager. It
is the package manager used by Anaconda installations, but it may be
......
Author: Andreas Tille <tille@debian.org>
Last-Update: Sun, 10 Mar 2019 09:33:50 +0100
Description: For some strange reason ruamel.yaml is named ruamel_yaml
No idea under what circumstances this can work but in unstable pbuilder
it does not and it is fixed hereby
--- a/tests/conda_env/test_env.py
+++ b/tests/conda_env/test_env.py
@@ -10,7 +10,7 @@ from conda.base.context import reset_con
from conda.common.io import env_vars
from conda.common.serialize import yaml_load
from conda.install import on_win
-import ruamel_yaml
+import ruamel.yaml
from . import support_file
from .utils import make_temp_envs_dir, Commands, run_command
do_not_use_git_in_configure.patch
skip_tests_needing_conda-build.patch
ruamel_yaml_name.patch
......@@ -28,8 +28,7 @@ override_dh_auto_configure:
echo $(DEB_VERSION_UPSTREAM) > conda/.version
dh_auto_configure
### When overriding auto_test make sure DEB_BUILD_OPTIONS will be respected
#override_dh_auto_test:
#ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
# do_stuff_for_testing
#endif
override_dh_auto_test:
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
CONDA_PKGS_DIRS=/tmp/pkgs dh_auto_test
endif