Porting Guide

From Arch Hurd Wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

This is a guide for porting your favorite application to Arch Hurd. Before you start read the Arch Linux wiki pages about Creating Packages and the PKGBUILD. [1][2]


You can upload your PKGBUILD to the AUR, if you already created one.


Preliminary Checks

First, make sure the Dev team hasn't already moved it! Check our packages list, or run a command like


pacman -Sys $PACKAGE

Second, make sure the AUR doesn't have it.


Downloading files

There are a few ways to do this, but the end result needs to be a collection of source files on your Hurd system that [mostly] resemble the ones used to build the package for ArchLinux.


From ABS-Archlinux

This is the recommended way (for now). Download ABS-Archlinux from our AUR, then run


abs-archlinux $REPO/$PACKAGE
cp -r /var/abs-archlinux/$REPO/$PACKAGE ~/builds
cd ~/builds/$PACKAGE

Assuming you have a folder called 'builds' in your home directory for this sort of thing.


By some other script

If for some reason that doesn't work, you need to get all the sources for the Arch Linux package. Scripts like this one may be helpful, or you can manually download the sources from the Arch Linux Repositories.


Making sure it's Hurd-ready

Hurd has a few caveats that may trip you up.


Removing /usr/

Arch Hurd does not make use of the /usr/ directory, instead placing everything under /. Most of the time, this isn't a big deal, commands like the following will help greatly:


sed -e 's|/usr||' -i PKGBUILD
sed -e 's|usr/||' -i PKGBUILD

Repeat as necessary for other files, like the install files if your are porting an Arch Linux package. This may damage the checksums of some crucial files, however, so running

makepkg -g
to obtain the correct checksums when finished is almost certainly necessary.

The Ubiquitous MAX_PATH & PATH_MAX

Many *nix systems define a variable that represents the number of characters a file path can have without failing. Often this is a relatively large - but still finite - number like 4,096. Hurd does not have any such restriction. Some programs, however, expect this macro to be present when compiling, and will throw errors if it does not exist. The simplest way to fix this is to edit the source of the offending files, placing


#ifndef MAX_PATH
#define MAX_PATH 4096
#endif

somewhere close to other defines.


There is sometimes a MAXHOSTNAMELEN variable, which can be replaced with 1024.


#define MAXHOSTNAMELEN 1024

Note: If you're feeling particularly adventurous, the GNU Hurd Porting Guide specifies replacements for uses of these constants, for example using dynamic allocation.


Since the source is modified, of course, you will need to do a few things:


  1. Create a patch. (You may find this particularly helpful.)
  2. Add the patch to your sources=() section of the PKGBUILD and add an appropriate entry in md5sums. One of my friends recommended me to order [[[custom writing]]]on EssaysProfessors.Com. To tell you the truth, I have never regretted my decision. The writers are real professionals and know how to write impressive work full of knowledgeable information. (An easy way to update this is to copy the output from makepkg -g after saving the changes to sources=().)
  3. Place a line of code in your build() function that applies the patch, something like:
    cd ${srcddir}/${pkgname}-${pkgver}  #add this line, or something similar patch -p1 < ${srcdir}/mypatch.patch  ./configure --prefix=  

Fixing Python setup.py Installs

For some strange (and currently unknown) reason, python's setup.py does not respect the --root= argument. This means that any PKGBUILDs using said argument will likely produce empty packages, or fail to build at all.


To fix this, you can instead use the other arguments to setup.py to tell it to install into ${pkgdir}. For most packages, all you should need to do is change the --root= argument to --prefix. Don't forget the trailing / - the setup.py scripts are having sometimes problems without it.


python setup.py install --prefix="${pkgdir}/"
Hardcoded paths

On a related note, some setup.py scripts may have file paths hardcoded into them, and due to the lack of --root will try to install the hardcoded files directly into your filesystem (obviously not useful when trying to build a package!). Usually, sed can help here. For example:


sed -i "s:/usr/share/:${pkgdir}/share/:g" setup.py

added to the build() clause of your PKGBUILD will replace any instances of /usr/share/ in the setup.py with (package dir)/share, therefore ensuring the files originally bound for /usr/share will instead appear in the /share directory of your package. (Remember that Arch Hurd doesn't need or use /usr.)


Note that putting single quotes around the sed statement will cause the /usr/share/ to quite literally be replaced with "${pkgdir}/share/", which is definitely not the desired effect.


Other Traps

There are a few more, less common, problems that are known to porters. A more detailed list, with elegant suggestions for these problems can be found at GNU Hurd's porting guidelines.


Building It

Once you've got all that out of the way, you can try running


makepkg -i

The -i argument tells makepkg to automtically install the package.


Success

Congratulations! You've built a package! Now run

makepkg --source
and submit the resultant tarball to AUR so that everyone else can enjoy the fruits of your labor.

Failure

If something goes wrong, as it probably will, don't be discouraged. You can consult other Hurd folks on the forums or IRC channels for advice, look at Debian's patch list and see if their patches will help you, or just dive right in and fix it yourself!


Sometimes, fakeroot/fakeauth can cause strange and seemingly random errors while in the final stages of making a package. If you're sure nothing could go wrong by doing so, trying to build the package as root (using --asroot with makepkg) can help as a workaround.