Nilesh Patra pushed to branch master at Debian Med / conda-package-handling
Commits: 2a4c043b by Nilesh Patra at 2023-01-01T09:46:55+05:30 Add patch to fix FTBFS on 32 bit archs - - - - - 835d1396 by Nilesh Patra at 2023-01-01T09:53:45+05:30 Stop mentioning removed files from d/copyright - - - - - 5ac8086e by Nilesh Patra at 2023-01-01T09:53:45+05:30 Upload to unstable - - - - - 4 changed files: - debian/changelog - debian/copyright - + debian/patches/32-bit.patch - debian/patches/series Changes: ===================================== debian/changelog ===================================== @@ -1,3 +1,11 @@ +conda-package-handling (2.0.1-2) unstable; urgency=medium + + * Team Upload. + * Add patch to fix FTBFS on 32 bit archs + * Stop mentioning removed files from d/copyright + + -- Nilesh Patra <[email protected]> Sun, 01 Jan 2023 09:47:00 +0530 + conda-package-handling (2.0.1-1) unstable; urgency=medium [ Andreas Tille ] ===================================== debian/copyright ===================================== @@ -6,42 +6,6 @@ Files: * Copyright: 2019 Conda License: BSD-3-Clause -Files: tests/data/mock-2.0.0-py37_1000/info/* -Copyright: 2003-2013, Michael Foord & the mock team -License: BSD-2-Clause: - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - . - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - . - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - . - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -Files: versioneer.py -Copyright: Brian Warner -License: CC0-1.0 - To make Versioneer easier to embed, all its code is dedicated to the public - domain. The `_version.py` that it creates is also in the public domain. - Specifically, both are released under the Creative Commons "Public Domain - Dedication" license (CC0-1.0), as described in - https://creativecommons.org/publicdomain/zero/1.0/ . - Files: debian/* Copyright: 2019 Andreas Tille <[email protected]> License: BSD-3-Clause ===================================== debian/patches/32-bit.patch ===================================== @@ -0,0 +1,18 @@ +Description: Set ZSTD_COMPRESS_LEVEL to 21 as zst compression consumes a lot of mem in 32 bit +Author: Nilesh Patra <[email protected]> +Last-Update: 2023-01-01 +--- a/src/conda_package_handling/conda_fmt.py ++++ b/src/conda_package_handling/conda_fmt.py +@@ -19,10 +19,10 @@ + from .streaming import _extract + + CONDA_PACKAGE_FORMAT_VERSION = 2 +-DEFAULT_COMPRESSION_TUPLE = (".tar.zst", "zstd", "zstd:compression-level=22") ++DEFAULT_COMPRESSION_TUPLE = (".tar.zst", "zstd", "zstd:compression-level=21") + + # increase to reduce speed and increase compression (22 = conda's default) +-ZSTD_COMPRESS_LEVEL = 22 ++ZSTD_COMPRESS_LEVEL = 21 + # increase to reduce compression (slightly) and increase speed + ZSTD_COMPRESS_THREADS = 1 + ===================================== debian/patches/series ===================================== @@ -1,3 +1,4 @@ #fix_linking.patch fix_test.patch skip-test-timeline.patch +32-bit.patch View it on GitLab: https://salsa.debian.org/med-team/conda-package-handling/-/compare/2dd1febf3f52f17e80ed419923122b0d5eb95f8f...5ac8086e47ae74e4c6e08795ce2f54abfade1158 -- View it on GitLab: https://salsa.debian.org/med-team/conda-package-handling/-/compare/2dd1febf3f52f17e80ed419923122b0d5eb95f8f...5ac8086e47ae74e4c6e08795ce2f54abfade1158 You're receiving this email because of your account on salsa.debian.org.
_______________________________________________ debian-med-commit mailing list [email protected] https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/debian-med-commit
