DeveloperWiki:TheBigIdeaPage
The Big Idea Page
This page is for generating a collection of ideas that would improve Arch Linux. It will allow us to assess areas in which we can improve and whether we need more "staff" to move forward.
Move to better Bug Tracker
Moving the bug tracker to Bugzilla or Roundup would have many advantages (see also FS#24999):
- It is more well maintained upstream than Flyspray
- Bugs could be handled via email
- ...
Florian has a script that will convert our bug database into Bugzilla format. Currently no-one is interested in maintaining the install.
Signing database files
Our package security would be improved by signing repository databases. This requires working with upstream GPG developers to allow signing of files over ssh.
Auto rebuild script
Simplfing package rebuilds.
rebuildpkg pkg1 pkg2 pkg3
More packaging automation
Not a very big idea but very much related to "auto rebuild script". Yet another wrapper or a full-blown "packaging shell", this time abstracting away the underlying independent build tools (svn, devtools, etc.), providing auto-completion of package names, committing to the correct repo, building on remote build server if wanted, rebuilding single packages or a package dependency list (with bumps and auto push to a staging or testing repo; there is no need to test successful rebuilds locally; also send e-mails to maintainers of failed builds), getting packages and signing them if built remotely, starting up a container or a VM with the newly built package and all dependencies to allow real, live testing (especially for graphical stuff). Will allow anyone to build, release and push depending on permissions to a repo (all users by default have permission to custom repos); this is defined in a file. Does packaging and does it well. Very distro-specific, will have zero compatibility with other pacman distros. Will look stupid at first. Will be useful in the long-run. Will become obsolete if systemd solves the whole Linux packaging problem.
Orphan packages
There are LOTS of these. Any common themes that would be worth recruiting a new packager for?
Datacenter software
Maintain software used in datacenters in the repo for easier installation? (ceph, puppet, nagios, ...)
Delta packages in repos
Pacman supported delta packages in the past, but repo scripts did not generate the necessary delta files FS#18590.
The UseDelta
option has been removed from pacman due to a severe vulnerability (CVE-2019-18183).
Encourage people to contribute to Arch projects
Github and the like encourage contributions by making the source obvious and easy to navigate. We currently lack this with Arch projects (and possibly packages). I think slapping our projects onto Github or an in-house Gitlab would increase contributions. The cgit + mailing list thing seems archaic nowadays where developers grow up with pull requests. Perhaps we should adapt where it makes sense? This might in fact alleviate some of our staff trouble as we allow others to more easily help us out.
Better namcap errors for version bumps
namcap should emit errors for packages when their updated version would break other apps due to soname bumps. Sadly, this cannot work just by dependencies alone because our packages do not list all the dependencies directly. This is currently done on pkgbuild.com using sogrep and some manual note keeping which seems backward. sogrep is not readily available in devtools because it requires having a full mirror on the local drive. Since a full mirror is still less than 20 GiB, I do not believe this is a big problem and sogrep should be packaged in devtools to allow namcap to have some new features. Failing that, either a generated database for sonames should be generated by our tools (basically ldd over all dynamically linked objects) or an API for sogrep-like operations should be provided.
When such a tool is available, namcap could be improved to have this feature and henceforth version bumping would require less manual effort upfront and would be less error prone.
Listing all direct dependencies
As a follow up to this, the fact that Arch packages only list "first level" dependencies has long been a source of maintenance burden. I can see two reasons for why people (Judd?) decided this:
- It makes it easier for new packagers to contribute.
- It prevents overly verbose output of "pacman -Qi".
The newbie friendliness can be kept if we continue to allow "first level only" packages in the AUR. However, I think official repositories should list every library dependency in the depends array. This will require a pkgrel bump of every package, but we only need to do it once. For those who still want short "pacman -Qi" output, we can introduce a new switch to pacman which will automatically trim second level deps. This is much faster than doing the opposite and trying to run namcap each time.
One should not have to use separate tools to generate a rebuild list. The "Required by" field of a pacman query should be enough. As it stands, this field is useless because rebuilds do not care about "Required at the first level by". A short-lived alternative proposal was to achieve this with hooks. However, as discussed, it is very ugly to expose the .PKGINFO file and let scripts alter dependencies as packages are installed.
Multiple kernel support
Our current way of managing kernel should be improved:
- Updating a kernel need an immediate reboot
Kernel modules of the current running kennel is removed and replaced by another kernel module. So you cannot load modules anymore. In servers environment, it's difficult to restart your server everytime a stable release is out. - We cannot have more than one version of the kernel (see FS#16702).
If the last update cause an issue, you cannot select an older one in your favoring boot loader. You need an USB rescue key, if the server is not close to you, Houston, we have had a problem.
Possible solution: A simple solution would be to put the kernel name inside the package name and use a meta package to pull the last version. Letting for example 3 kernels generations (3.17.x, 3.16.x, 3.15.x) before removing them (by conflicts).