Differences between revisions 1 and 9 (spanning 8 versions)
Revision 1 as of 2005-12-06 17:54:00
Size: 3798
Editor: PeMac
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:
Introduction ## page was renamed from Unofficial_debian_package
#language en
== Introduction ==
Line 4: Line 6:
If you just wanted to search for existing packages, hop over to the Unofficial APT repositories.
First things first: setting the maintainer email
If you just wanted to search for existing packages, hop over to the [[DebianRepository/Unofficial|unofficial APT repositories]].
Line 7: Line 8:
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. 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.
 {{{
Line 10: Line 11:
}}}
Line 14: Line 15:
 {{{
Line 20: Line 21:
}}}
Line 24: Line 25:
 {{{
Line 30: Line 31:
}}}
Line 31: Line 33:
Package version == Package version ==
 
Line 37: Line 39:
 {{{
Line 39: Line 42:
}}}
Line 40: Line 44:
Package description == Package description ==
Line 49: Line 53:
Bug reports == Bug reports ==
Line 51: Line 55:
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: 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:
Line 59: Line 63:
 {{{
Line 60: Line 65:
}}}
Line 61: Line 67:
Making it apt-get'able == Making it apt-get'able ==
Line 65: Line 71:
 {{{
Line 66: Line 73:
}}}
Line 67: Line 75:
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. Now edit [[SourcesList|/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.
Line 69: Line 77:
 {{{
Line 76: Line 85:
}}}
----
CategoryDeveloper

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