Slashdot Mirror


GoboLinux Compile -- A Scalable Portage?

LodeRunner writes "The GoboLinux team, featured about a year ago for creating a distro that does away with Unix paths such as /usr/bin and /lib and uses things like /System/Settings/X11 instead, just released a new release where they introduce their own alternative to Portage and similar systems: Compile. But is yet another source-based compilation system needed?" Read a bit more below on why the GoboLinux folks think so.

LodeRunner continues "We already have ebuilds, RPM .spec files, and whatnot. The argument for reinventing the wheel yet again was the observation that while developing apps to handle these files is easy, the task of maintaining the ever-growing database of compilation scripts is the real problem -- the huge package collection of Debian comes to mind. Compile took the extreme minimalistic approach, and its scripts ("recipes") are as small as can be: the script for a typical autoconf-based program takes two lines.

Knowledge for handling common situations is usually added to Compile itself instead of being coded in the script (for example, apps that need a separate build directory just add a needs_build_dir=yes line). The plan is to make Compile as smart as it can and the recipes as small as possible.

It remains to be seen whether this experiment of gauging differently the tradeoff between flexibility and simplicity will prove itself to be limiting or enlightening, but in the ~six months Compile has been in beta test by the people from the GoboLinux mailing list, over 500 recipes were written, ranging from Glibc and GCC up to KDE and the Linux kernel itself."

5 of 366 comments (clear)

  1. Re:Sounds like Mac OS X by HishamMuhammad · · Score: 4, Informative

    To be fair, this isn't even a new idea for Mac OS X. It came from NeXT.

  2. Re:Non-issue by HishamMuhammad · · Score: 5, Informative

    Every modern shell supports case-insensitive tab-completion. And in GoboLinux, this is enabled by default.

    Try it, you might like it: on bash, just add

    set-completion-ignore-case on

    on your ~/.inputrc.

  3. Re:Screw that by stevey · · Score: 4, Informative

    And that's exactly what scripts such as GNU Stow do.

    The 'foo' application is installed in '/usr/local/foo-v1.x', and symlinks are placed into /usr/local/bin so that it can be run.

    This makes installation and removing applications simple - and you can share your applications across NFS if you're so inclined.

  4. Re:Unix paths by sirReal.83. · · Score: 4, Informative

    And no, OSX is not LSB compliant - go figure.
    This might be nitpicking, but I think you didn't read what the first letter in 'LSB' stands for - Linux :)

  5. Re:The shorter the better by SmilingBoy · · Score: 4, Informative

    /usr used to stand for "user" in earlier Unix implementations - all "home" directories were under /usr, i.e /usr/joebloggs. A more detailed discussion can be found here.