Totally normal workflow:

I work on documenting #Jinja syntax used in #CondaForge recipes.

https://github.com/conda-forge/conda-forge.github.io/pull/2782

I decide that the snippets would use Jinja syntax highlighting. However, #Prism doesn't have one. But Internets suggest Twig would work instead.

https://github.com/PrismJS/prism/issues/759

So I try Twig. Except that Twig highlighter crashes in #Docusaurus. But there's a workaround.

https://github.com/facebook/docusaurus/issues/8065

So I copy the code over to the project, fix it and while at it, rename it to "jinja" and adjust a bit.

But then, highlighting Jinja expressions alone looks pretty bleak, so let's combine it with YAML… Hmm, that actually doesn't work that well, needs some more adjustments. And before you know it, I have a pretty new Jinja highlighter, and a recipe highlighter that combines Jinja expressions, YAML, v0 recipe selectors, v1 if:/skip: conditions, and also highlighting shell / cmd variables for a good measure.

https://github.com/conda-forge/conda-forge.github.io/pull/2790

Diátaxis: Jinja templating by mgorny · Pull Request #2782 · conda-forge/conda-forge.github.io

PR Checklist: note any issues closed by this PR with closing keywords if you are adding a new page under docs/ or community/, you have added it to the sidebar in the corresponding _sidebar.json ...

GitHub

"Building From Source Shouldn't Be This Hard"

That's our motto, read our latest blogpost to understand what we're building and how Pixi already helps you with today!

🗞️ Read it here: https://prefix.dev/blog/building-from-source-not-hard

#pacakgemanagement #pixi #ROS #condaforge

Building From Source Shouldn't Be This Hard

Pixi-build is being designed to make package building easy, reproducible and maybe even fun!

prefix.dev

I'm looking at Repology, and I think most of the distributions and other downstreams have rightfully boycotted #Python #chardet #copywashing. Of course, there's the possibility that some of them are simply out-of-date, though.

So far chardet-7 is distributed by #Chromebrew, #CondaForge (not on Repology), #Homebrew, #KaOS, #OpenIndiana, #openmamba, #Ravenports, #Spack and #T2 SDE. Shame on you!

https://repology.org/project/chardet/versions
https://repology.org/project/python%3Achardet/versions

chardet package versions - Repology

List of package versions for project chardet in all repositories

Another post on #Quansight PBC blog: "BLAS/LAPACK #packaging"

https://labs.quansight.org/blog/blas-lapack-packaging

"""
#BLAS and #LAPACK are the standard libraries for linear algebra. The original implementation, often called Netlib LAPACK, developed since the 1980s, nowadays serves primarily as the origin of the standard interface, the reference implementation and a conformance test suite. The end users usually use optimized implementations of the same interfaces. The choice ranges from generically tuned libraries such as OpenBLAS and BLIS, through libraries focused on specific hardware such as Intel® oneMKL, Arm Performance Libraries or the Accelerate framework on macOS, to ATLAS that aims to automatically optimize for a specific system.

The diversity of available libraries, developed in parallel with the standard interfaces, along with vendor-specific extensions and further downstream changes, adds quite a bit of complexity around using these libraries in software, and distributing such software afterwards. This problem entangles implementation authors, consumer software authors, build system maintainers and distribution maintainers. Software authors generally wish to distribute their packages built against a generically optimized BLAS/LAPACK implementation. Advanced users often wish to be able to use a different implementation, more suited to their particular needs. Distributions wish to be able to consistently build software against their system libraries, and ideally provide users the ability to switch between different implementations. Then, build systems need to provide the scaffolding for all of that.

I have recently taken up the work to provide such a scaffolding for the Meson build system; to add support for BLAS and LAPACK dependencies to Meson. While working on it, I had to learn a lot about BLAS/LAPACK packaging: not only how the different implementations differ from one another, but also what is changed by their respective downstream packaging. In this blog post, I would like to organize and share what I have learned.
"""

#CondaForge #Debian #Fedora #Gentoo

BLAS/LAPACK packaging

An overview of differences between BLAS / LAPACK implementations and their packaging.

Well dammit. The X.h header is missing from the #conda #condaforge packages.
If you include #xorg Xlib it’ll bork when it can’t find X.h

Naturally #wayland isn’t an option because many required libraries don’t have packages to provide it.

#linux is extremely annoying to develop graphical apps.

Did a lot of work on conda-forge this week handling various packages for exotic architectures. Includes some Rust CLI tools I got to build on ppc4le (for fun), and CUDA-dependent libs I wanted to enable on Grace Hopper systems using aarch64.

Previously I've relied mostly on the migrator bot, which tends to default to emulation on QEMU apparently, but found out at https://github.com/conda-forge/cargo-auditable-feedstock/pull/4#issuecomment-3291674939 that cross-compilation 1) works and 2) is faster. It's documented at https://conda-forge.org/docs/maintainer/knowledge_base/#how-to-enable-cross-compilation, but it only 'clicked' in my brain recently.

Level of difficulty/pain: 🐍 Python+CUDA/C++ > Rust 🦀

#condaforge #packaging #rustlang #conda #cuda #python

Build for ppc64le by weiji14 · Pull Request #4 · conda-forge/cargo-auditable-feedstock

Xref https://conda-forge.org/docs/maintainer/conda_forge_yml/#build-platform. Had to switch away from pixi to workaround conda-forge/conda-smithy#2350. Also switched to native build for aarch64 Edi...

GitHub
Naprawdę cenię w #CondaForge to, że kiedy pracuję nad potwornie paskudnym projektem, który ma mnóstwo zależności, ale wspiera wyłącznie stare wersje tych zależności, to #Conda zazwyczaj potrafi wykombinować jakieś rozwiązanie, dopasować odpowiednie paczki binarne i oszczędzić mi sporo czasu.
One thing I really love about #CondaForge is that if you're working on a very, very bad project, and it has a lot of dependencies, but builds only against outdated versions of them, #Conda can generally figure out a way to come up with a solution, provide a consistent environment using binary packages and save you lots of time.
🔄 Update: I’ve just expanded my #Miniforge migration guide with a dedicated troubleshooting section. It now covers common issues I’ve encountered over the past years — including #SSL certificate errors, channel configuration for conda-forge-only environments, and a workaround for situations where #mamba isn’t available in the base environment. If you have further tips, feel free to comment here or on the blog post. #conda #CondaForge

After recent license changes at #Anaconda, Inc., #Miniforge has become the recommended, fully open solution for institutional #Python environments. Now bundling both #conda and #mamba, it replaces #Miniconda/ #Mambaforge, ensuring high performance and broad package access via #CondaForge. Here I summarized the key changes and migration steps:

🌍 https://www.fabriziomusacchio.com/blog/2025-07-03-miniforge/

#Python #DataScience #OpenSource