Why are circular dependencies even a thing?

This page summarizes the projects mentioned and recommended in the original post on /r/linuxquestions

Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
  • harfbuzz

    HarfBuzz text shaping engine

  • harfbuzz is text sharpening library, freetype is a font engine...and right now they have a circular dependency problem. Harfbuzz uses some parts of freetype and needs to link against freetype...and in the normal case freetype makes use of harfbuzz for better looking fonts. Only way to solve this right now is doing a freetype build without harfbuzz support, then building harfbuzz...then rebuilding freetype again, this time with harfbuzz support.

  • html5lib

    Standards-compliant library for parsing and serializing HTML documents and fragments in Python

  • Easier example...sphinx is a document generator for python programs (creating docs for the API of programs from source-code comments for example). Spinx depends on html5lib which itself again depends on six...want to make a guess what six uses to generate its API docs? ;) So if you want the api docs of six you will have to first install it without to be able to get a working sphinx install then redo the six on including the building of the API docs.

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
  • six

    Python 2 and 3 compatibility library

  • Easier example...sphinx is a document generator for python programs (creating docs for the API of programs from source-code comments for example). Spinx depends on html5lib which itself again depends on six...want to make a guess what six uses to generate its API docs? ;) So if you want the api docs of six you will have to first install it without to be able to get a working sphinx install then redo the six on including the building of the API docs.

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts