Differences between revisions 8 and 9
Revision 8 as of 2017-03-31 09:29:06
Size: 3987
Comment:
Revision 9 as of 2017-03-31 09:34:07
Size: 4039
Comment: Reorganization of Repository related pages
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
## page was renamed from Unofficial_debian_package

Introduction

This page offers some tips and tricks on how to build and maintain an unofficial Debian package repository. Before using this information, you should have read the Debian packaging paragraph of the Developers Reference. If you just wanted to search for existing packages, hop over to the unofficial APT repositories.

First things first: setting the maintainer email. You can set the DEBEMAIL environment variable if you like to have a different email address for Debian packaging. This address will be used in the package metadata information.

  • $ export DEBEMAIL=joe@joesdomain.org

Setting up the package directory

Generate a separate directory where all the package data will be put in. Download and extract the dh_make templates and the package build Makefile. Installing mini-dinstall and dput finishes up the preparation.

  • $ mkdir $HOME/packages
    $ cd $HOME/packages
    $ wget http://people.debian.org/~calvin/unofficial/package.tar.gz
    $ tar xzvf package.tar.gz
    $ sudo apt-get install dput mini-dinstall

Adding a source package

Now it is time to download a source package, let's call it mypackage-1.0.tar.gz, and extract it. After that, dh_make is run within the extracted source directory. A few questions will pop up which should be answered accordingly. Now you are ready to edit the files in the debian/ directory which the next paragraphs will describe.

  • $ wget http://somesite.bla/mypackage-1.0.tar.gz
    $ tar xzvf mypackage-1.0.tar.gz
    $ cd mypackage-1.0 && \
      dh_make --templates $HOME/packages/dhtemplates -f ../mypackage-1.0.tar.gz; \
      cd ..

Package version

The Debian package version number is parsed from the top entry of debian/changelog, eg. mypackage (1.0-0joe1) unstable; urgency=low. The -0joe1' is the debian release number. Subsequent releases have release numbers -0joe2', `-0joe3', etc. If there is already an official package, for example with version 1.0-4', then use 1.0-4joe1'. You can compare versions with dpkg, see the dpkg(8) manpage for more info.

  • $ dpkg --compare-versions "1.0-4.1" gt "1.0-4joe5" && \
      echo "NMU version -4.1 greater than -4joe5"

Package description

The package description in debian/control should note that this is not an official Debian package. Note that there is a single space at the beginning of each line below the Description: line.

Description: this is mypackage

Bug reports

The standard tool for reporting bugs is reportbug. See /usr/share/doc/reportbug/README.developers for more info. Your package should have the file /usr/share/bug/mypackage/control installed with the following content:

Send-To: joe@joesdomain.org

Building the package

Now add the mypackage target to the Makefile. There is already an example there, just adjust it. The package should be signed with your GPG key (run gpg --gen-key to generate one). Adjust the GPGKEY variable to hold your GPG key id. After that, build the package:

  • $ make mypackage

Making it apt-get'able

Copy the mini-dinstall configuration into $HOME/.mini-dinstall.conf and adjust it to your needs. Do the same with the dput configuration, putting it in $HOME/.dput.cf After that, run dput to install the package into the repository.

  • $ dput local mypackage_1.0-0joe1.changes

Now edit /etc/apt/sources.list and add the deb and deb-src lines. By putting the files onto a web server, others can also access it with the http:// protocol.

  • # /etc/apt/sources.list
    # local repository
    deb file:/home/joe/public_html/debian unstable/
    deb-src file:/home/joe/public_html/debian unstable/
    # http repository
    deb http://www.joesdomain.org/~joe/debian unstable/
    deb-src http://www.joesdomain.org/~joe/debian unstable/


CategoryDeveloper