os icon indicating copy to clipboard operation
os copied to clipboard

libmamba/2024.09.30 package update

Open octo-sts[bot] opened this issue 1 year ago • 3 comments

octo-sts[bot] avatar Oct 01 '24 01:10 octo-sts[bot]

Open AI suggestions to solve the build error:

The error message is: "ERROR: failed to build package. the build environment has been preserved:
INFO   workspace dir: /temp/melange-workspace-3517430425
INFO   guest dir: /temp/melange-guest-9809067
ERRO failed to build package: unable to run package libmamba pipeline: unable to run pipeline: unable to run pipeline: exit status 1
make[1]: *** [Makefile:111: packages/aarch64/libmamba-2024.09.30-r0.apk] Error 1
make[1]: Leaving directory '/github/home'
make: *** [Makefile:101: package/libmamba] Error 2
##[error]Process completed with exit code 2."

1. Verify dependencies for libmamba are installed.
2. Check the Makefile for correct paths and targets.
3. Ensure the build environment is correctly set up.
4. Review logs in /temp/melange-workspace-3517430425 for more details.
5. Re-run the build process.

octo-sts[bot] avatar Oct 01 '24 01:10 octo-sts[bot]

Open AI suggestions to solve the build error:

The error message is: "ERROR: failed to build package. the build environment has been preserved:
INFO   workspace dir: /temp/melange-workspace-4036894951
INFO   guest dir: /temp/melange-guest-2897079291
ERRO failed to build package: unable to run package libmamba pipeline: unable to run pipeline: unable to run pipeline: exit status 1
make[1]: *** [Makefile:111: packages/aarch64/libmamba-2024.09.30-r0.apk] Error 1
make[1]: Leaving directory '/github/home'
make: *** [Makefile:101: package/libmamba] Error 2
##[error]Process completed with exit code 2."

Suggestions:
1. Verify dependencies for libmamba are installed.
2. Check for errors in the Makefile at lines 101 and 111.
3. Ensure the build environment is correctly configured.
4. Review logs in /temp/melange-workspace-4036894951 for more details.

octo-sts[bot] avatar Oct 01 '24 02:10 octo-sts[bot]

I think the issue because of we don't have yaml-cpp-static package. I have tried to add a new subpackage but it provided empty package:

  - name: ${{package.name}}-static
    pipeline:
      - uses: split/static
    description: ${{package.name}} static

https://github.com/mamba-org/mamba/blob/215e5e522ae12415aee91360971ba906865ba832/libmamba/CMakeLists.txt#L451

Dentrax avatar Oct 13 '24 11:10 Dentrax

Based on the error message, the issue is related to yaml-cpp library type mismatch during CMake configuration. The error indicates that the build expects a static library but found a shared library instead. Here are some steps to fix this:

  1. First, modify your melange YAML to ensure yaml-cpp is built as a static library. Add or modify the yaml-cpp package dependency:
dependencies:
  build:
    - yaml-cpp-static
  1. If that package doesn't exist, you might need to add build flags to force static linking. Add these to your cmake configuration:
environment:
  CXXFLAGS: "-DYAML_CPP_STATIC_DEFINE"
pipeline:
  - uses: cmake/configure
    with:
      configure-args: |
        -DYAML_BUILD_SHARED_LIBS=OFF
        -DBUILD_SHARED_LIBS=OFF
  1. Alternatively, you could modify the build to accept shared libraries by adding:
pipeline:
  - uses: cmake/configure
    with:
      configure-args: |
        -DMAMBA_FORCE_DYNAMIC_LIBS=ON

rawlingsj avatar Nov 04 '24 16:11 rawlingsj

Changes summary: Total files changed: 300

Total changes: 15468 Total additions: 10550 Total deletions: 4918

Total commits: 330

  • Add envrionment cleaner test fixtures (#2973)

    Antoine Prouvost ([email protected]) @ 2023-11-14T07:50:28Z

  • Update dependencies on OSX (#2976)

    Antoine Prouvost ([email protected]) @ 2023-11-14T07:51:15Z

  • Simplify and correct development documention (#2975)

    Antoine Prouvost ([email protected]) @ 2023-11-14T10:59:44Z

  • Add install from source instructions (#2977)

    Antoine Prouvost ([email protected]) @ 2023-11-15T07:47:53Z

  • Channel initialization (#2953)

    Antoine Prouvost ([email protected]) @ 2023-11-15T14:52:59Z

  • update readme install link (#2980)

    artificial-agent ([email protected]) @ 2023-11-15T15:47:13Z

  • Add weakening_map (#2981)

    Antoine Prouvost ([email protected]) @ 2023-11-16T10:27:37Z

  • Fail fast except on debug runs (#2985)

    Antoine Prouvost ([email protected]) @ 2023-11-16T15:21:58Z

  • Refactor env directories (#2983)

    Antoine Prouvost ([email protected]) @ 2023-11-16T17:26:03Z

  • Enable new repodata parser by default (#2989)

    Antoine Prouvost ([email protected]) @ 2023-11-17T03:49:51Z

  • Allow overriding archspec (#2966)

    Isuru Fernando ([email protected]) @ 2023-11-17T09:06:36Z

  • Nu 0.87.0 (#2984)

    Casper van Elteren ([email protected]) @ 2023-11-17T14:33:25Z

  • Add Python-like set operations to flat_set (#2557)

    Antoine Prouvost ([email protected]) @ 2023-11-17T14:36:01Z

  • Migrate expand/shrink_home (#2990)

    Antoine Prouvost ([email protected]) @ 2023-11-17T18:45:30Z

  • Refactor env::which (#2997)

    Antoine Prouvost ([email protected]) @ 2023-11-20T14:13:22Z

  • Extend issue template (#2996)

    Jonas Haag ([email protected]) @ 2023-11-21T08:17:04Z

  • Migrate Channel::make_channel to resolve multi channels (#2986)

    Antoine Prouvost ([email protected]) @ 2023-11-21T11:07:19Z

  • Move core/channel > specs/channel (#3000)

    Antoine Prouvost ([email protected]) @ 2023-11-22T14:29:34Z

  • Remove ChannelContext ctor (#3002)

    Antoine Prouvost ([email protected]) @ 2023-11-22T17:45:43Z

  • Improve ChannelContext and Channel (#3003)

    Antoine Prouvost ([email protected]) @ 2023-11-23T18:14:35Z

  • fix config precedence for base env (#3009)

    Bela Stoyan ([email protected]) @ 2023-11-27T12:40:47Z

  • Move to Ruff (#3011)

    Antoine Prouvost ([email protected]) @ 2023-11-27T18:10:34Z

  • Update README.md, 404 dev link (#3012)

    twobitunicorn ([email protected]) @ 2023-11-28T07:53:12Z

  • Remove ChanelContext context capture (#3015)

    Antoine Prouvost ([email protected]) @ 2023-11-28T17:32:09Z

  • Bind Channel (#3001)

    Antoine Prouvost ([email protected]) @ 2023-11-28T19:50:51Z

  • Default to hide credentials (#3017)

    Antoine Prouvost ([email protected]) @ 2023-11-29T11:47:30Z

  • Validation QA (#3022)

    Antoine Prouvost ([email protected]) @ 2023-11-29T16:19:25Z

  • Refactor (some) OpenSSL functions (#3024)

    Antoine Prouvost ([email protected]) @ 2023-12-04T15:11:35Z

  • Use std::array<std::byte, ...> (#3037)

    Antoine Prouvost ([email protected]) @ 2023-12-05T15:58:10Z

  • Bind ChannelContext (#3034)

    Antoine Prouvost ([email protected]) @ 2023-12-05T16:52:13Z

  • Default to conda-forge channel (#3035)

    Antoine Prouvost ([email protected]) @ 2023-12-06T08:32:20Z

  • Conda canary on 1.x (#2950)

    Antoine Prouvost ([email protected]) @ 2023-12-06T11:56:57Z

  • Split validate.[ch]pp (#3041)

    Antoine Prouvost ([email protected]) @ 2023-12-06T18:34:19Z

  • Remove duplicate function (#3042)

    Antoine Prouvost ([email protected]) @ 2023-12-06T20:27:10Z

  • MatchSpec small improvements (#3043)

    Antoine Prouvost ([email protected]) @ 2023-12-07T08:20:58Z

  • Plug ChannelSpec in MatchSpec (#3046)

    Antoine Prouvost ([email protected]) @ 2023-12-07T12:45:56Z

  • Fix docs typo (#3026)

    Jonas Haag ([email protected]) @ 2023-12-07T15:00:23Z

  • Drop unneeded dependencies (#3016)

    Orion Poplawski ([email protected]) @ 2023-12-07T15:02:01Z

  • Change MatchSpec::parse to named constructor (#3048)

    Antoine Prouvost ([email protected]) @ 2023-12-07T15:06:02Z

  • Enforce space between definitions (#3049)

    Antoine Prouvost ([email protected]) @ 2023-12-07T22:00:25Z

  • restore use_default_signal_handler flag for libmambapy (#3028)

    Daniel Holth ([email protected]) @ 2023-12-07T22:33:23Z

  • Fix libmamba cmake version file (#3013)

    Orion Poplawski ([email protected]) @ 2023-12-07T22:33:39Z

  • Disabled failing test (#3062)

    Johan Mabille ([email protected]) @ 2023-12-14T09:54:59Z

  • Added mamba as dynamic build of micromamba (#3060)

    Johan Mabille ([email protected]) @ 2023-12-14T13:22:31Z

  • Reworked job names

    Johan Mabille ([email protected]) @ 2023-12-14T14:19:06Z

  • release libmamba 2.0.0alpha0, libmambapy 2.0.0alpha0, micromamba 2.0.0alpha0

    Johan Mabille ([email protected]) @ 2023-12-14T15:42:44Z

  • Fix 2.0 alpha (#3067)

    Antoine Prouvost ([email protected]) @ 2023-12-18T09:50:47Z

  • merge groups (#3068)

    Antoine Prouvost ([email protected]) @ 2023-12-18T09:51:39Z

  • release libmamba 2.0.0alpha1, libmambapy 2.0.0alpha1, micromamba 2.0.0alpha1

    Johan Mabille ([email protected]) @ 2023-12-18T10:50:36Z

  • Remove hard coded mamba (#3069)

    Antoine Prouvost ([email protected]) @ 2023-12-19T07:54:50Z

  • Support multiple env yaml specs (#2993)

    Josh Chorlton ([email protected]) @ 2023-12-19T07:56:59Z

  • Update shell hook comments (#3051)

    Jonas Haag ([email protected]) @ 2023-12-19T14:08:00Z

  • Duplicate reposerver to isolate micromamba tests (#3071)

    Antoine Prouvost ([email protected]) @ 2023-12-19T17:30:37Z

  • Fix URL enconding in repodata.json (#3076)

    Antoine Prouvost ([email protected]) @ 2023-12-21T12:54:34Z

  • Remove dead mamba.py doc (#3078)

    Antoine Prouvost ([email protected]) @ 2023-12-21T14:33:37Z

  • More specs bindings (#3080)

    Antoine Prouvost ([email protected]) @ 2023-12-22T07:54:02Z

  • Add VersionSpec::str (#3081)

    Antoine Prouvost ([email protected]) @ 2023-12-22T13:19:33Z

  • Document specs::Channel (#3077)

    Antoine Prouvost ([email protected]) @ 2023-12-22T14:51:14Z

  • Some future proofing MatchSpec (#3082)

    Antoine Prouvost ([email protected]) @ 2023-12-26T16:23:33Z

  • Reformat string (#3085)

    Antoine Prouvost ([email protected]) @ 2023-12-26T20:32:07Z

  • Fix --override-channels docs, closes #3073 (#3084)

    Jonas Haag ([email protected]) @ 2023-12-27T09:06:56Z

  • gracefully handle conflicting names in yaml specs (#3083)

    Josh Chorlton ([email protected]) @ 2023-12-27T09:08:43Z

  • Clean up url_manip (#3086)

    Antoine Prouvost ([email protected]) @ 2023-12-27T13:15:31Z

  • Fix VersionSpec free ranges (#3088)

    Antoine Prouvost ([email protected]) @ 2023-12-28T12:33:48Z

  • Add 2.0 changes draft (#3091)

    Antoine Prouvost ([email protected]) @ 2024-01-02T09:50:53Z

  • Add parsing utilities (#3090)

    Antoine Prouvost ([email protected]) @ 2024-01-02T09:52:44Z

  • Bump MAMBA libsolv file ABI (#3093)

    Antoine Prouvost ([email protected]) @ 2024-01-02T11:53:14Z

  • MatchSpec use VersionSpec (#3089)

    Antoine Prouvost ([email protected]) @ 2024-01-02T11:55:42Z

  • Add Breathe for API documentation (#3087)

    Antoine Prouvost ([email protected]) @ 2024-01-02T15:23:03Z

  • GlobSpec (#3094)

    Antoine Prouvost ([email protected]) @ 2024-01-03T08:17:17Z

  • Upper bound on Sphinx to be compatible with Breathe

    Johan Mabille ([email protected]) @ 2024-01-03T09:17:45Z

  • Add BuildNumberSpec (#3098)

    Antoine Prouvost ([email protected]) @ 2024-01-04T10:57:58Z

  • Refactor MatchSpec unlikey data (#3099)

    Antoine Prouvost ([email protected]) @ 2024-01-04T17:14:21Z

  • Remove micromamba shell init -p (#3092)

    Antoine Prouvost ([email protected]) @ 2024-01-05T13:07:11Z

  • Clean PackageInfo interface (#3103)

    Antoine Prouvost ([email protected]) @ 2024-01-05T17:26:51Z

  • NoArchType as standalone enum (#3108)

    Antoine Prouvost ([email protected]) @ 2024-01-08T13:26:42Z

  • Move PackageInfo in specs:: (#3109)

    Antoine Prouvost ([email protected]) @ 2024-01-08T15:06:22Z

  • Add instructions for gnu coreutils on OSX (#3111)

    Ben Moss ([email protected]) @ 2024-01-08T15:35:08Z

  • Change PackageInfo types (#3113)

    Antoine Prouvost ([email protected]) @ 2024-01-08T16:52:17Z

  • Add some PackageInfo tests" (#3115)

    Antoine Prouvost ([email protected]) @ 2024-01-09T08:38:01Z

  • Rename ChannelSpec > UndefinedChannel (#3117)

    Antoine Prouvost ([email protected]) @ 2024-01-09T12:52:23Z

  • Add Channel::contains_package (#3121)

    Antoine Prouvost ([email protected]) @ 2024-01-11T09:10:36Z

  • Warning around manual install and add ref to conda-libmamba (#3119)

    Antoine Prouvost ([email protected]) @ 2024-01-11T10:27:06Z

  • Pool channel match (#3122)

    Antoine Prouvost ([email protected]) @ 2024-01-11T14:07:54Z

  • Added mirrored channels (#3125)

    Johan Mabille ([email protected]) @ 2024-01-15T13:57:43Z

  • Move util_random.hpp > util/random.hpp (#3129)

    Antoine Prouvost ([email protected]) @ 2024-01-16T09:14:45Z

  • Add MacOS DNS issue logging (#3130)

    Antoine Prouvost ([email protected]) @ 2024-01-16T12:26:48Z

  • Fix info and debug logging (#3127)

    Ben Moss ([email protected]) @ 2024-01-16T14:38:44Z

  • Revert "Fix info and debug logging" (#3133)

    Antoine Prouvost ([email protected]) @ 2024-01-16T14:52:14Z

  • Refactor test_remove.py to use fixture (#3131)

    Antoine Prouvost ([email protected]) @ 2024-01-16T16:51:36Z

  • Fix verbose and strange prefix in Powershell (#3116)

    pwnfan ([email protected]) @ 2024-01-17T12:52:48Z

  • handle other deps in multiple env files (#3096)

    Josh Chorlton ([email protected]) @ 2024-01-17T14:28:48Z

  • Add expected caster to Union (#3135)

    Antoine Prouvost ([email protected]) @ 2024-01-17T15:44:21Z

  • MRepo refactor (#3118)

    Antoine Prouvost ([email protected]) @ 2024-01-17T15:44:47Z

  • Fix expected caster (#3136)

    Antoine Prouvost ([email protected]) @ 2024-01-17T15:54:59Z

  • No M (#3137)

    Antoine Prouvost ([email protected]) @ 2024-01-18T07:44:23Z

  • Explcit transaction duplicate code (#3138)

    Antoine Prouvost ([email protected]) @ 2024-01-18T10:03:38Z

  • Solver improvements (#3140)

    Antoine Prouvost ([email protected]) @ 2024-01-19T09:04:45Z

  • Sort transaction table entries (#3146)

    Antoine Prouvost ([email protected]) @ 2024-01-23T08:29:39Z

  • Solver Request (#3141)

    Antoine Prouvost ([email protected]) @ 2024-01-23T12:38:11Z

  • Improve Solution usage (#3148)

    Antoine Prouvost ([email protected]) @ 2024-01-25T14:23:15Z

  • Refactor solver flags (#3153)

    Antoine Prouvost ([email protected]) @ 2024-01-25T16:07:54Z

  • Moved download related files to dedicated folder (#3155)

    Johan Mabille ([email protected]) @ 2024-01-25T19:45:54Z

  • Remove outdated commented code snippet (#3160)

    Julien Jerphanion ([email protected]) @ 2024-01-30T12:23:54Z

  • Implemented support for mirrors (#3157)

    Johan Mabille ([email protected]) @ 2024-01-30T17:31:07Z

  • Split Solver and Unsolvable (#3156)

    Antoine Prouvost ([email protected]) @ 2024-01-30T21:20:36Z

  • Proper sorting of display actions (#3165)

    Antoine Prouvost ([email protected]) @ 2024-01-31T19:27:22Z

  • Solver sort deps (#3163)

    Antoine Prouvost ([email protected]) @ 2024-01-31T21:21:29Z

  • Bind solver::libsolv::UnSolvable (#3166)

    Antoine Prouvost ([email protected]) @ 2024-01-31T21:34:55Z

  • Improve Query API (#3167)

    Antoine Prouvost ([email protected]) @ 2024-02-01T15:21:41Z

  • add manually given .tar.bz2 / .conda packages to solver pool (#3164)

    Bela Stoyan ([email protected]) @ 2024-02-01T18:51:06Z

  • release libmamba 2.0.0alpha2, libmambapy 2.0.0alpha2, micromamba 2.0.0alpha2

    Hind Montassif ([email protected]) @ 2024-02-02T16:37:25Z

  • Rewrite Query with Pool functions (wrapping libsolv) (#3168)

    Antoine Prouvost ([email protected]) @ 2024-02-05T16:45:48Z

  • Clean libsolv use in Transaction (#3171)

    Antoine Prouvost ([email protected]) @ 2024-02-05T18:40:47Z

  • Simplify MPool Interface (#3177)

    Antoine Prouvost ([email protected]) @ 2024-02-07T14:25:37Z

  • Automate releases (CHANGELOG.md updating) (#3179)

    Hind-M ([email protected]) @ 2024-02-08T08:35:18Z

  • Rename MPool into solver::libsolv::Database (#3180)

    Antoine Prouvost ([email protected]) @ 2024-02-08T15:41:11Z

  • Make libsolv wrappers into standalone library (#3181)

    Antoine Prouvost ([email protected]) @ 2024-02-08T15:49:53Z

  • Simple logging fix (#3184)

    Antoine Prouvost ([email protected]) @ 2024-02-09T04:02:22Z

  • Add (some) solver Database tests (#3185)

    Antoine Prouvost ([email protected]) @ 2024-02-09T15:32:20Z

  • Add libsolv.Database Bindings and tests (#3186)

    Antoine Prouvost ([email protected]) @ 2024-02-12T13:47:53Z

  • Remove unmaintained and broken pytest-lazy-fixture (#3193)

    Antoine Prouvost ([email protected]) @ 2024-02-19T18:31:52Z

  • Finalized Solver bindings and add solver doc (#3195)

    Antoine Prouvost ([email protected]) @ 2024-02-21T16:27:35Z

  • Add more solver tests and other small features (#3198)

    Antoine Prouvost ([email protected]) @ 2024-02-22T16:33:54Z

  • Refactor ObjPool to use views in callbacks (#3199)

    Antoine Prouvost ([email protected]) @ 2024-02-23T15:38:44Z

  • Use expected for specs parsing (#3201)

    Antoine Prouvost ([email protected]) @ 2024-02-27T08:35:27Z

  • Added HTTP Mirrors (#3178)

    Johan Mabille ([email protected]) @ 2024-02-27T17:47:30Z

  • release libmamba 2.0.0alpha3, libmambapy 2.0.0alpha3, micromamba 2.0.0alpha3

    Johan Mabille ([email protected]) @ 2024-02-28T05:09:54Z

  • Refactor MatchSpec::parse (#3205)

    Antoine Prouvost ([email protected]) @ 2024-02-29T08:42:25Z

  • Expected in specs parse API (#3207)

    Antoine Prouvost ([email protected]) @ 2024-03-04T13:27:04Z

  • Add more MatchSpec tests (#3211)

    Antoine Prouvost ([email protected]) @ 2024-03-04T15:55:41Z

  • Fully bind MatchSpec (#3213)

    Antoine Prouvost ([email protected]) @ 2024-03-04T20:35:58Z

  • Subdir renaming (#3214)

    Antoine Prouvost ([email protected]) @ 2024-03-05T15:31:54Z

  • Add MatchSpec doc and fix errors (#3224)

    Antoine Prouvost ([email protected]) @ 2024-03-08T13:44:52Z

  • Refactor MatchSpec::str (#3215)

    Antoine Prouvost ([email protected]) @ 2024-03-08T16:09:22Z

  • [mamba content trust] Enable verifying packages signatures (#3192)

    Hind-M ([email protected]) @ 2024-03-08T19:37:18Z

  • Add MatchSpec::contains_except_channel" (#3231)

    Antoine Prouvost ([email protected]) @ 2024-03-13T15:37:25Z

  • fix(micromamba): anaconda private channels not working (#3220)

    s22chan ([email protected]) @ 2024-03-13T17:02:30Z

  • Make Taskfile.dist.yml Windows-compatible (#3219)

    carschandler ([email protected]) @ 2024-03-14T11:01:43Z

  • Mamba 2.0 name fixes (#3225)

    Antoine Prouvost ([email protected]) @ 2024-03-14T15:01:05Z

  • Typos in dev_environment.rst (#3235)

    James Foster ([email protected]) @ 2024-03-15T11:37:04Z

  • Fixed a spelling mistake in micromamba-installation.rst (#3236)

    Yash Malik ([email protected]) @ 2024-03-18T10:15:56Z

  • Custom resolve complex MatchSpec in Solver (#3233)

    Antoine Prouvost ([email protected]) @ 2024-03-19T18:52:56Z

  • Release libsolv memory before installation (#3238)

    Antoine Prouvost ([email protected]) @ 2024-03-19T18:59:42Z

  • [mamba-content-trust] Add integration test (#3234)

    Hind-M ([email protected]) @ 2024-03-20T09:58:29Z

  • Handle regex in build string (#3239)

    Antoine Prouvost ([email protected]) @ 2024-03-20T17:52:22Z

  • Passed url_path to request_generators (#3245)

    Johan Mabille ([email protected]) @ 2024-03-25T09:59:02Z

  • Use conda-forge feedstock for static builds (#3249)

    Antoine Prouvost ([email protected]) @ 2024-03-25T19:42:02Z

  • Implemented OCI mirrors (#3246)

    Johan Mabille ([email protected]) @ 2024-03-26T05:20:49Z

  • release libmamba 2.0.0alpha4, libmambapy 2.0.0alpha4, micromamba 2.0.0alpha4

    Johan Mabille ([email protected]) @ 2024-03-26T05:34:09Z

  • Refactor os utilities (#3248)

    Antoine Prouvost ([email protected]) @ 2024-03-28T13:08:35Z

  • Update pre-commit hooks" (#3252)

    Antoine Prouvost ([email protected]) @ 2024-03-28T15:18:19Z

  • Don't add duplicate .conda and .tar.bz2 packages (#3253)

    Antoine Prouvost ([email protected]) @ 2024-03-29T11:07:35Z

  • Small changelog additions (#3254)

    Antoine Prouvost ([email protected]) @ 2024-03-29T13:54:55Z

  • Bind VersionPredicate (#3255)

    Antoine Prouvost ([email protected]) @ 2024-03-29T17:00:02Z

  • Add missing pybind header (#3256)

    Antoine Prouvost ([email protected]) @ 2024-03-29T17:19:28Z

  • release libmamba 2.0.0beta0, libmambapy 2.0.0beta0, micromamba 2.0.0beta0

    Johan Mabille ([email protected]) @ 2024-04-04T07:29:13Z

  • Bind text_style and graphic params (#3266)

    Antoine Prouvost ([email protected]) @ 2024-04-08T14:39:38Z

  • Fix pin repr in solver error messages (#3268)

    Antoine Prouvost ([email protected]) @ 2024-04-09T15:15:37Z

  • Fix VersionSpec equal and glob (#3269)

    Antoine Prouvost ([email protected]) @ 2024-04-10T08:22:02Z

  • Fix typos in comments (#3272)

    Ryan Carsten Schmidt ([email protected]) @ 2024-04-17T12:17:14Z

  • Test with xtensor-python instead of unmaintained xframe (#3286)

    Johan Mabille ([email protected]) @ 2024-05-03T16:02:33Z

  • Hotfix to allow Ctrl+C in python scipts (#3285)

    Klaim (Joël Lamotte) ([email protected]) @ 2024-05-03T19:33:49Z

  • release libmamba 2.0.0beta0, libmambapy 2.0.0beta0, micromamba 2.0.0beta0

    Johan Mabille ([email protected]) @ 2024-05-03T21:06:07Z

  • release libmamba 2.0.0beta1, libmambapy 2.0.0beta1, micromamba 2.0.0beta1

    Johan Mabille ([email protected]) @ 2024-05-04T15:16:21Z

  • Add checking typos to pre-commit (#3278)

    Hind-M ([email protected]) @ 2024-05-27T07:16:14Z

  • Fix OCIMirror use (#3296)

    Hind-M ([email protected]) @ 2024-05-27T12:11:41Z

  • [CEP-15] Support base_url with repodata_version: 2 using mamba parser (#3282)

    Hind-M ([email protected]) @ 2024-05-28T07:48:33Z

  • [OCI Registry] Handle compressed repodata (#3300)

    Hind-M ([email protected]) @ 2024-05-28T07:50:58Z

  • release libmamba 2.0.0beta2, libmambapy 2.0.0beta2, micromamba 2.0.0beta2

    Hind Montassif ([email protected]) @ 2024-05-29T09:01:16Z

  • Fix osx version test (#3308)

    Hind-M ([email protected]) @ 2024-06-07T08:27:55Z

  • docs: Add note about ccache (#3305)

    Julien Jerphanion ([email protected]) @ 2024-06-07T08:30:57Z

  • Fix release scripts (#3306)

    Hind-M ([email protected]) @ 2024-06-07T11:59:02Z

  • Fix CI failure on win-64 (#3315)

    Hind-M ([email protected]) @ 2024-06-11T09:54:41Z

  • Fix test_no_python_pinning (#3319)

    Hind-M ([email protected]) @ 2024-06-12T12:29:16Z

  • [OCI - Mirrors] Add tests and doc (#3307)

    Hind-M ([email protected]) @ 2024-06-12T14:36:31Z

  • OCI/Conda mapping (#3310)

    Hind-M ([email protected]) @ 2024-06-13T07:38:24Z

  • maint: Remove PrefixData::load (#3318)

    Julien Jerphanion ([email protected]) @ 2024-06-13T14:16:52Z

  • maint: Remove some warnings (#3320)

    Julien Jerphanion ([email protected]) @ 2024-06-13T14:56:17Z

  • libmambapy: use Context explicitly (#3309)

    Klaim (Joël Lamotte) ([email protected]) @ 2024-06-14T07:50:58Z

  • release libmamba 2.0.0beta3, libmambapy 2.0.0beta3, micromamba 2.0.0beta3

    Johan Mabille ([email protected]) @ 2024-06-14T09:34:27Z

  • Temporarily disabled no_python_pinning test on Windows (#3322)

    Johan Mabille ([email protected]) @ 2024-06-14T09:42:35Z

  • maint: Remove declaration of PrefixData::load (#3325)

    Julien Jerphanion ([email protected]) @ 2024-06-14T13:09:22Z

  • Splitt ContextOptions::enable_logging_and_signal_handling into 2 different options (#3329)

    Klaim (Joël Lamotte) ([email protected]) @ 2024-06-19T14:29:47Z

  • Fixed restoring the previous signal handler for example in python case (Windows only for now) (#3297)

    Klaim (Joël Lamotte) ([email protected]) @ 2024-07-01T14:54:15Z

  • Fix test_no_python_pinning (#3321)

    Hind-M ([email protected]) @ 2024-07-02T09:14:57Z

  • Attempt to fix test_proxy_install (#3324)

    Hind-M ([email protected]) @ 2024-07-02T09:15:30Z

  • release libmamba 2.0.0rc0, libmambapy 2.0.0rc0, micromamba 2.0.0rc0

    Johan Mabille ([email protected]) @ 2024-07-08T07:32:53Z

  • Fix repo usage after removal (#3340)

    Hind-M ([email protected]) @ 2024-07-15T13:20:42Z

  • fix: micromamba run when cwd does not exist (#3336)

    Paul Brit ([email protected]) @ 2024-07-15T15:30:32Z

  • doc(more_concepts.rst): improve clarity (#3357)

    Cornelius Roemer ([email protected]) @ 2024-07-19T12:03:13Z

  • Allow spaces in version after operator (#3358)

    Hind-M ([email protected]) @ 2024-07-23T11:28:12Z

  • Remove logs for every package (#3335)

    Hind-M ([email protected]) @ 2024-07-23T11:32:55Z

  • Allow leading lowercase letter in version (#3361)

    Hind-M ([email protected]) @ 2024-07-25T07:23:39Z

  • Update mamba.xsh: support xonsh >= 0.18.0 (#3355)

    Andy Kipp ([email protected]) @ 2024-07-25T08:44:52Z

  • chore(ci): bump github action versions (#3350)

    Cornelius Roemer ([email protected]) @ 2024-07-25T11:15:24Z

  • release libmamba 2.0.0rc1, libmambapy 2.0.0rc1, micromamba 2.0.0rc1

    Johan Mabille ([email protected]) @ 2024-07-26T23:08:20Z

  • Replace Context with Context::platform where possible (#3364)

    Julien Jerphanion ([email protected]) @ 2024-07-29T08:59:27Z

  • Make more classes hashable and comparable (#3363)

    Julien Jerphanion ([email protected]) @ 2024-07-29T09:06:45Z

  • build: Support fmt 11 (#3368)

    Julien Jerphanion ([email protected]) @ 2024-07-29T14:28:56Z

  • Restore previous behavior of MAMBA_ROOT_PREFIX (#3365)

    Hind-M ([email protected]) @ 2024-07-30T08:57:23Z

  • build: Support fmt 11 (follow-up) (#3371)

    Julien Jerphanion ([email protected]) @ 2024-07-30T13:57:15Z

  • test: Comparability and hashability of PackageInfo and MatchSpec (#3369)

    Julien Jerphanion ([email protected]) @ 2024-07-30T15:35:50Z

  • test: Adapt test_explicit_export_topologically_sorted (#3377)

    Julien Jerphanion ([email protected]) @ 2024-07-31T16:39:50Z

  • ci: Unpin libcxx <18 (#3375)

    Julien Jerphanion ([email protected]) @ 2024-08-01T07:16:30Z

  • Unpin cryptography, python, and add make to environment-dev.yml (#3352)

    jaimergp ([email protected]) @ 2024-08-01T12:27:42Z

  • Add missing header (#3389)

    Hind-M ([email protected]) @ 2024-08-02T12:52:17Z

  • Reset the prompt back to default (#3392)

    Casper van Elteren ([email protected]) @ 2024-08-06T08:54:34Z

  • [micromamba] Fix behavior of env update (to mimick conda) (#3396)

    Hind-M ([email protected]) @ 2024-08-08T10:00:45Z

  • [win-64] Add constraint on fmt (#3400)

    Hind-M ([email protected]) @ 2024-08-12T15:02:23Z

  • [win-64] Remove workaround (#3398)

    Hind-M ([email protected]) @ 2024-08-12T16:02:08Z

  • release libmamba 2.0.0rc2, libmambapy 2.0.0rc2, micromamba 2.0.0rc2

    Hind Montassif ([email protected]) @ 2024-08-19T07:16:57Z

  • docs: Adapt "Solving Package Environments" section (#3326)

    Julien Jerphanion ([email protected]) @ 2024-08-21T09:14:20Z

  • Replaces instances of -p with --root-prefix in documentation (#3411)

    Sylvain Corlay ([email protected]) @ 2024-08-23T08:45:23Z

  • Add posix to supported shells (#3412)

    Julien Jerphanion ([email protected]) @ 2024-08-23T08:46:02Z

  • Define etc/profile.d/mamba.sh and install it (#3413)

    Julien Jerphanion ([email protected]) @ 2024-08-26T12:14:55Z

  • release libmamba 2.0.0rc3, libmambapy 2.0.0rc3, micromamba 2.0.0rc3

    Hind Montassif ([email protected]) @ 2024-08-26T13:44:46Z

  • fix: Reduce logging system overhead (#3416)

    Julien Jerphanion ([email protected]) @ 2024-08-29T12:03:18Z

  • test: Adapt test_remove_orphaned unlinks (#3417)

    Julien Jerphanion ([email protected]) @ 2024-08-29T12:22:35Z

  • release libmamba 2.0.0rc4, libmambapy 2.0.0rc4, micromamba 2.0.0rc4

    Hind Montassif ([email protected]) @ 2024-08-29T13:35:30Z

  • Execute remove action before install actions (#3424)

    Sylvain Corlay ([email protected]) @ 2024-08-30T22:30:24Z

  • Update mamba.sh.in script (#3422)

    Sylvain Corlay ([email protected]) @ 2024-08-30T22:31:20Z

  • Fix output (#3428)

    Hind-M ([email protected]) @ 2024-09-02T12:25:20Z

  • fix: PyPI support for env update (#3419)

    Julien Jerphanion ([email protected]) @ 2024-09-05T13:41:39Z

  • Fixed micromamba static build after cctools and ld64 upgrade on conda… (#3436)

    Johan Mabille ([email protected]) @ 2024-09-09T14:53:28Z

  • Fix x86_64 to use underscore instead of dash (#3433)

    Silvio Traversaro ([email protected]) @ 2024-09-10T08:39:25Z

  • docs: Specify CMAKE_INSTALL_PREFIX (#3438)

    Julien Jerphanion ([email protected]) @ 2024-09-10T11:51:42Z

  • Add fallback to root prefix (#3435)

    Hind-M ([email protected]) @ 2024-09-10T13:10:21Z

  • fix: add warning when using defaults (#3434)

    Wolf Vollprecht ([email protected]) @ 2024-09-12T17:28:40Z

  • Remove cctools patch from feedstock in CI (#3442)

    Johan Mabille ([email protected]) @ 2024-09-12T19:26:43Z

  • release libmamba 2.0.0rc5, libmambapy 2.0.0rc5, micromamba 2.0.0rc5

    Hind Montassif ([email protected]) @ 2024-09-13T08:55:58Z

  • Fix test in osx (#3448)

    Hind-M ([email protected]) @ 2024-09-17T11:40:38Z

  • Remove cctools patch removal in CI (#3451)

    Hind-M ([email protected]) @ 2024-09-17T13:08:00Z

  • fix: Environment removal confirmation (#3450)

    Julien Jerphanion ([email protected]) @ 2024-09-17T15:38:06Z

  • Fix wrong version of miniforge in doc (#3462)

    Hind-M ([email protected]) @ 2024-09-19T09:27:10Z

  • Fix test_env_update_pypi_with_conda_forge (#3459)

    Hind-M ([email protected]) @ 2024-09-19T09:43:05Z

  • Support CONDA_DEFAULT_ENV (#3445)

    Sylvain Corlay ([email protected]) @ 2024-09-19T14:40:00Z

  • fix: Handle extra white-space in MatchSpec (#3456)

    Julien Jerphanion ([email protected]) @ 2024-09-19T14:54:58Z

  • Compute root prefix as mamba install path (#3447)

    Hind-M ([email protected]) @ 2024-09-20T12:36:17Z

  • test: MatchSpec edges cases (#3458)

    Julien Jerphanion ([email protected]) @ 2024-09-20T12:49:54Z

  • release libmamba 2.0.0rc6, libmambapy 2.0.0rc6, micromamba 2.0.0rc6

    Hind Montassif ([email protected]) @ 2024-09-20T13:58:06Z

  • release libmamba 2.0.0, libmambapy 2.0.0, micromamba 2.0.0

    Johan Mabille ([email protected]) @ 2024-09-25T09:31:42Z

  • GHA issue workaround (#3476)

    Johan Mabille ([email protected]) @ 2024-09-27T19:35:20Z

  • doc: add github links to documentation (#3471)

    Tim Hoffmann ([email protected]) @ 2024-09-28T02:54:50Z

  • Added --copy flag to create and install commands (#3474)

    Johan Mabille ([email protected]) @ 2024-09-28T05:07:11Z

  • Fix micromamba activate on Windows (#3484)

    Johan Mabille ([email protected]) @ 2024-09-30T14:06:13Z

  • fix: Support for PEP 440 "Compatible Releases" (operator ~= for MatchSpec) (#3483)

    Julien Jerphanion ([email protected]) @ 2024-09-30T14:41:49Z

  • --full-name option for list (#3485)

    Johan Mabille ([email protected]) @ 2024-09-30T17:28:04Z

  • Fixed channel output in umamba list (#3486)

    Johan Mabille ([email protected]) @ 2024-09-30T19:49:44Z

  • release libmamba 2.0.1, libmambapy 2.0.1, micromamba 2.0.1

    Johan Mabille ([email protected]) @ 2024-09-30T20:05:50Z

GitHub compare URL: https://github.com/mamba-org/mamba/compare/25cdc05ae56f96734d3e1b3cbd104405dedbddcd...9fc7b99ea32daaf3019416e0a42141b23923fd82

philroche avatar Nov 05 '24 12:11 philroche

I have been unable to get this to build for main and all sub packages.

The closest is by using build options forcing shared libraries which will successfully build the main package but then subpackage py3-libmambapy and micromamba fail to build. micromamba assumes static libraries as noted @ https://github.com/mamba-org/mamba/blob/c511d5c9f71165c0af75d916b46355a980e292f8/CMakeLists.txt#L70 but wolfi does not have static libs for yaml-cpp or reproc as it expects. py3-libmambapy fails as it can't find libmamba dependencies.

Build of previous version before this version bump is successful.

  - uses: cmake/configure
    with:
      opts: |
        -DBUILD_LIBMAMBA="ON" \
        -DBUILD_SHARED="ON" \
        -DBUILD_STATIC="OFF" \
        -DBUILD_LIBMAMBAPY="ON" \
        -DBUILD_MAMBA="ON" \
        -DBUILD_MICROMAMBA="OFF" \
        -DBUILD_MICROMAMBA_SERVER="OFF" \
        -DBUILD_MAMBA_PACKAGE="ON" \
        -DCMAKE_BUILD_TYPE=Release \
        -DCMAKE_CXX_FLAGS="-fPIC" \

philroche avatar Nov 06 '24 13:11 philroche

Gen AI suggestions to solve the build error:

Based on the error message shown, it appears the main issue is with authentication:

Error: rpc error: code = NotFound desc = federate identity: rpc error: code = NotFound desc = no identity found for (https://accounts.google.com, 109346087047205543085)
Error running `chainctl auth token`: exit status 1

Here are a few suggestions to resolve this:

  1. Local Testing:

    • Run melange build with --local flag to bypass authentication requirements
    • Use --signing-key flag to specify a local signing key
  2. Authentication Fix:

    • Ensure you're properly authenticated to the CI system
    • Check if your Google Cloud credentials are properly configured
    • Verify chainctl is properly configured with valid credentials
  3. Interactive Debugging:

    • Use melange build --interactive libmamba.yaml to debug in a shell
    • Once in the shell, you can manually run the build steps to identify any other potential issues

The core package definition looks correct - the error is related to the build environment authentication rather than the package configuration itself.

Would you like me to elaborate on any of these suggestions?

octo-sts[bot] avatar Nov 06 '24 16:11 octo-sts[bot]

I've spent some time on this and explored two paths...

  1. building the static library dependencies
  2. patching libmamba to use shared libraries

I've pretty much got the first one working so may push a PR up for that in a bit, still not sure that's the best out of the two options mind.

rawlingsj avatar Nov 07 '24 10:11 rawlingsj

ok, the shared library approach (option 1 from above) was becoming toilsome so I went with option 2, patched the project to use shared libs.

Also needed a few extra deps and changes to get a successful build.

Package tests are passing too.

rawlingsj avatar Nov 07 '24 23:11 rawlingsj

Package libmamba: Click to expand/collapse

Package libmamba: Added: /usr/etc/profile.d/mamba.sh Modified: /usr/lib/libmamba.so.2.0.0

Package py3-libmambapy: Click to expand/collapse

Package py3-libmambapy: Added: /usr/lib/python3.12/site-packages/libmambapy/pycache/specs.cpython-312.pyc Added: /usr/lib/python3.12/site-packages/libmambapy/pycache/utils.cpython-312.pyc Added: /usr/lib/python3.12/site-packages/libmambapy/pycache/version.cpython-312.pyc Added: /usr/lib/python3.12/site-packages/libmambapy/py.typed Added: /usr/lib/python3.12/site-packages/libmambapy/solver/init.py Added: /usr/lib/python3.12/site-packages/libmambapy/solver/pycache/init.cpython-312.pyc Added: /usr/lib/python3.12/site-packages/libmambapy/solver/pycache/libsolv.cpython-312.pyc Added: /usr/lib/python3.12/site-packages/libmambapy/solver/libsolv.py Added: /usr/lib/python3.12/site-packages/libmambapy/specs.py Added: /usr/lib/python3.12/site-packages/libmambapy/utils.py Added: /usr/lib/python3.12/site-packages/libmambapy/version.py Added: /usr/lib/python3.12/site-packages/libmambapy-2.0.1.dist-info/INSTALLER Added: /usr/lib/python3.12/site-packages/libmambapy-2.0.1.dist-info/LICENSE Added: /usr/lib/python3.12/site-packages/libmambapy-2.0.1.dist-info/METADATA Added: /usr/lib/python3.12/site-packages/libmambapy-2.0.1.dist-info/RECORD Added: /usr/lib/python3.12/site-packages/libmambapy-2.0.1.dist-info/REQUESTED Added: /usr/lib/python3.12/site-packages/libmambapy-2.0.1.dist-info/WHEEL Added: /usr/lib/python3.12/site-packages/libmambapy-2.0.1.dist-info/direct_url.json Added: /usr/lib/python3.12/site-packages/libmambapy-2.0.1.dist-info/top_level.txt Modified: /usr/lib/python3.12/site-packages/libmambapy/init.py Modified: /usr/lib/python3.12/site-packages/libmambapy/init.pyi Modified: /usr/lib/python3.12/site-packages/libmambapy/pycache/init.cpython-312.pyc Modified: /usr/lib/python3.12/site-packages/libmambapy/bindings.cpython-312-x86_64-linux-gnu.so Deleted: /usr/lib/python3.12/site-packages/libmambapy/pycache/_version.cpython-312.pyc Deleted: /usr/lib/python3.12/site-packages/libmambapy/_version.py Deleted: /usr/lib/python3.12/site-packages/libmambapy-1.5.9.dist-info/INSTALLER Deleted: /usr/lib/python3.12/site-packages/libmambapy-1.5.9.dist-info/LICENSE Deleted: /usr/lib/python3.12/site-packages/libmambapy-1.5.9.dist-info/METADATA Deleted: /usr/lib/python3.12/site-packages/libmambapy-1.5.9.dist-info/RECORD Deleted: /usr/lib/python3.12/site-packages/libmambapy-1.5.9.dist-info/REQUESTED Deleted: /usr/lib/python3.12/site-packages/libmambapy-1.5.9.dist-info/WHEEL Deleted: /usr/lib/python3.12/site-packages/libmambapy-1.5.9.dist-info/direct_url.json Deleted: /usr/lib/python3.12/site-packages/libmambapy-1.5.9.dist-info/top_level.txt

Package libmamba-dev: Click to expand/collapse

Package libmamba-dev: Added: /usr/include/mamba/core/channel_context.hpp Added: /usr/include/mamba/core/download_progress_bar.hpp Added: /usr/include/mamba/core/mirror.hpp Added: /usr/include/mamba/core/package_database_loader.hpp Added: /usr/include/mamba/core/package_fetcher.hpp Added: /usr/include/mamba/core/repo_checker_store.hpp Added: /usr/include/mamba/download/downloader.hpp Added: /usr/include/mamba/download/mirror.hpp Added: /usr/include/mamba/download/mirror_map.hpp Added: /usr/include/mamba/download/request.hpp Added: /usr/include/mamba/fs/filesystem.hpp Added: /usr/include/mamba/solver/libsolv/database.hpp Added: /usr/include/mamba/solver/libsolv/parameters.hpp Added: /usr/include/mamba/solver/libsolv/repo_info.hpp Added: /usr/include/mamba/solver/libsolv/solver.hpp Added: /usr/include/mamba/solver/libsolv/unsolvable.hpp Added: /usr/include/mamba/solver/problems_graph.hpp Added: /usr/include/mamba/solver/request.hpp Added: /usr/include/mamba/solver/solution.hpp Added: /usr/include/mamba/specs/authentication_info.hpp Added: /usr/include/mamba/specs/build_number_spec.hpp Added: /usr/include/mamba/specs/channel.hpp Added: /usr/include/mamba/specs/chimera_string_spec.hpp Added: /usr/include/mamba/specs/conda_url.hpp Added: /usr/include/mamba/specs/error.hpp Added: /usr/include/mamba/specs/glob_spec.hpp Added: /usr/include/mamba/specs/match_spec.hpp Added: /usr/include/mamba/specs/package_info.hpp Added: /usr/include/mamba/specs/regex_spec.hpp Added: /usr/include/mamba/specs/unresolved_channel.hpp Added: /usr/include/mamba/util/cfile.hpp Added: /usr/include/mamba/util/conditional.hpp Added: /usr/include/mamba/util/cryptography.hpp Added: /usr/include/mamba/util/encoding.hpp Added: /usr/include/mamba/util/environment.hpp Added: /usr/include/mamba/util/heap_optional.hpp Added: /usr/include/mamba/util/json.hpp Added: /usr/include/mamba/util/os.hpp Added: /usr/include/mamba/util/os_linux.hpp Added: /usr/include/mamba/util/os_osx.hpp Added: /usr/include/mamba/util/os_unix.hpp Added: /usr/include/mamba/util/os_win.hpp Added: /usr/include/mamba/util/parsers.hpp Added: /usr/include/mamba/util/random.hpp Added: /usr/include/mamba/util/tuple_hash.hpp Added: /usr/include/mamba/util/variant_cmp.hpp Added: /usr/include/mamba/util/weakening_map.hpp Added: /usr/include/mamba/validation/errors.hpp Added: /usr/include/mamba/validation/keys.hpp Added: /usr/include/mamba/validation/repo_checker.hpp Added: /usr/include/mamba/validation/tools.hpp Added: /usr/include/mamba/validation/update_framework.hpp Added: /usr/include/mamba/validation/update_framework_v0_6.hpp Added: /usr/include/mamba/validation/update_framework_v1.hpp Added: /usr/lib/libmamba.a Modified: /usr/include/mamba/api/c_api.h Modified: /usr/include/mamba/api/channel_loader.hpp Modified: /usr/include/mamba/api/clean.hpp Modified: /usr/include/mamba/api/config.hpp Modified: /usr/include/mamba/api/configuration.hpp Modified: /usr/include/mamba/api/configuration_impl.hpp Modified: /usr/include/mamba/api/create.hpp Modified: /usr/include/mamba/api/info.hpp Modified: /usr/include/mamba/api/install.hpp Modified: /usr/include/mamba/api/list.hpp Modified: /usr/include/mamba/api/remove.hpp Modified: /usr/include/mamba/api/repoquery.hpp Modified: /usr/include/mamba/api/shell.hpp Modified: /usr/include/mamba/api/update.hpp Modified: /usr/include/mamba/core/activation.hpp Modified: /usr/include/mamba/core/context.hpp Modified: /usr/include/mamba/core/env_lockfile.hpp Modified: /usr/include/mamba/core/environments_manager.hpp Modified: /usr/include/mamba/core/error_handling.hpp Modified: /usr/include/mamba/core/execution.hpp Modified: /usr/include/mamba/core/fsutil.hpp Modified: /usr/include/mamba/core/history.hpp Modified: /usr/include/mamba/core/link.hpp Modified: /usr/include/mamba/core/menuinst.hpp Modified: /usr/include/mamba/core/output.hpp Modified: /usr/include/mamba/core/package_cache.hpp Modified: /usr/include/mamba/core/package_handling.hpp Modified: /usr/include/mamba/core/palette.hpp Modified: /usr/include/mamba/core/pinning.hpp Modified: /usr/include/mamba/core/prefix_data.hpp Modified: /usr/include/mamba/core/progress_bar.hpp Modified: /usr/include/mamba/core/query.hpp Modified: /usr/include/mamba/core/run.hpp Modified: /usr/include/mamba/core/shell_init.hpp Modified: /usr/include/mamba/core/subdirdata.hpp Modified: /usr/include/mamba/core/tasksync.hpp Modified: /usr/include/mamba/core/thread_utils.hpp Modified: /usr/include/mamba/core/transaction.hpp Modified: /usr/include/mamba/core/transaction_context.hpp Modified: /usr/include/mamba/core/util.hpp Modified: /usr/include/mamba/core/util_os.hpp Modified: /usr/include/mamba/core/util_scope.hpp Modified: /usr/include/mamba/core/virtual_packages.hpp Modified: /usr/include/mamba/specs/archive.hpp Modified: /usr/include/mamba/specs/platform.hpp Modified: /usr/include/mamba/specs/repo_data.hpp Modified: /usr/include/mamba/specs/version.hpp Modified: /usr/include/mamba/specs/version_spec.hpp Modified: /usr/include/mamba/util/flat_binary_tree.hpp Modified: /usr/include/mamba/util/flat_bool_expr_tree.hpp Modified: /usr/include/mamba/util/flat_set.hpp Modified: /usr/include/mamba/util/graph.hpp Modified: /usr/include/mamba/util/iterator.hpp Modified: /usr/include/mamba/util/path_manip.hpp Modified: /usr/include/mamba/util/string.hpp Modified: /usr/include/mamba/util/type_traits.hpp Modified: /usr/include/mamba/util/url.hpp Modified: /usr/include/mamba/util/url_manip.hpp Modified: /usr/include/mamba/version.hpp Modified: /usr/lib/cmake/libmamba/libmambaConfig.cmake Modified: /usr/lib/cmake/libmamba/libmambaConfigVersion.cmake Modified: /usr/lib/cmake/libmamba/libmambaTargets-release.cmake Modified: /usr/lib/cmake/libmamba/libmambaTargets.cmake Deleted: /usr/include/mamba/core/channel.hpp Deleted: /usr/include/mamba/core/download.hpp Deleted: /usr/include/mamba/core/environment.hpp Deleted: /usr/include/mamba/core/fetch.hpp Deleted: /usr/include/mamba/core/mamba_fs.hpp Deleted: /usr/include/mamba/core/match_spec.hpp Deleted: /usr/include/mamba/core/package_download.hpp Deleted: /usr/include/mamba/core/package_info.hpp Deleted: /usr/include/mamba/core/pool.hpp Deleted: /usr/include/mamba/core/repo.hpp Deleted: /usr/include/mamba/core/satisfiability_error.hpp Deleted: /usr/include/mamba/core/solution.hpp Deleted: /usr/include/mamba/core/solver.hpp Deleted: /usr/include/mamba/core/util_random.hpp Deleted: /usr/include/mamba/core/validate.hpp

Package micromamba: Click to expand/collapse

Package micromamba: Modified: /usr/bin/micromamba

Package mamba-package: Click to expand/collapse

Package mamba-package: Modified: /usr/bin/mamba-package

github-actions[bot] avatar Nov 07 '24 23:11 github-actions[bot]