Is there a FOSS only repo like Debain's main? I couldn't see anywhere in The official repos if core allows non-free repos.
Is there a FOSS only repo like Debain's main? I couldn't see anywhere in The official repos if core allows non-free repos.
10 Comments
randy@lemmy.ca · 6 pts · 266d
You might be interested in Parabola, an Arch-based FOSS-only distribution. If you don't want to switch to a whole new distribution, maybe you can use its repos from Arch (not that I've heard of anyone trying that).
E_coli42@lemmy.world · 1 pts · 258d
It seems like there is not enough maintenance going on there. Looks like I'll try Debian...
comradegodzilla@lemmy.dbzer0.com · 1 pts · 242d
Debian is great and so is arch. Parabola is still updated. I’ll try it if you care about pure FOSS. Debian has non open source drivers in installation (i think). Happened after bookworm. The GNU website has distro a that are purely FOSS.
bitfucker@programming.dev · 5 pts · 266d
Arch does not have official FOSS only repo. And IIRC, that is by design
E_coli42@lemmy.world · 1 pts · 251d
Do you know why? Would not be hard to simply filter by license.
bitfucker@programming.dev · 1 pts · 245d
Well, because Arch tries to be simple and pragmatic. The way the official repo is organized speaks volumes about its philosophy.
Just read their FAQsMy bad, not FAQs, but their explanation page
E_coli42@lemmy.world · 1 pts · 241d
I didn't see anything in that wiki that suggests why a simple check when installing a piece of software on whether it's license conflicts with a license you don't want to install isn't simple and pragmatic. Other distros like Gentoo do this.
bitfucker@programming.dev · 1 pts · 241d
Because it adds something that is not essential, so it is not "simple". If package A depends on package B with an incompatible license then it needs to provide a means to specify alternate packages. Arch follows upstream with best effort possible, so changing dependency could be seen as breaking that. However, pacman already supports choosing alternate packages during installation so technically they could add it, but how many percentage of users are needing that convenience? Not to mention the arch team will need to maintain said list of alternatives for every dependencies. If you want, you can add it yourself via pacman hook to prevent you from accidentally installing non free software, or write a wrapper for pacman, or use other distro like Parabola.
E_coli42@lemmy.world · 1 pts · 237d
I don't think this requires any maintenance or swapping out alternatives. Just do a quick license check (I'm pretty sure that already part of package metadata) and put a little warning symbol if it is non-Free.
So if I do something like "pacman -Ss browser" it'll put little flags against non-Free options so I know to be extra careful to install them.
bitfucker@programming.dev · 2 pts · 236d
Yes, that is called a pacman hook. As you expect, it is easy enough to add. You're welcome to discuss your pull request to the arch maintainer.