User Tools

Site Tools


releases:3.2.0:developersguide:testingpkgsrc

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

releases:3.2.0:developersguide:testingpkgsrc [2014/11/11 14:52] (current)
Line 1: Line 1:
 +===== Testing pkgsrc on Minix =====
 +
 +==== About this page ====
 +This page describes how to build packages with pkgsrc. It is intended for people who would like to help port packages and develop pkgsrc further. If you just want to install binary packages, you should read [[.:​..:​usersguide:​installingbinarypackages|Installing Binary Packages]]. While this page also describes basic usage, more information can be found at [[http://​www.netbsd.org/​docs/​pkgsrc|pkgsrc guide]].
 +
 +==== Prerequisites ====
 +=== Regular way ===
 +You need a minix system installed with a post-pkgsrc .iso (a 3.1.8 development version), see [[http://​www.minix3.org/​download/​|the download page]]. This comes with pkgsrc support in the base system, and pkgin (the binary package manager) pre-installed. This is necessary to bootstrap pkgsrc functionality (e.g. building packages).
 +
 +pkgsrc is self-hosting,​ i.e. you should need no packages from packman in order to compile or install pkgsrc packages. Instructions for checking out and building Minix trunk can be found on the [[.:​trackingcurrent|Tracking Current]] wiki page.
 +
 +=== Bootstrapping binary packages after source-upgrading older systems ===
 +If you have source-upgraded,​ i.e. have pkg_add, etc., installed, you can bootstrap your system to install binary packages by installing pkgin as a binary like so:
 +
 +<​code>​
 +# pkg_add ftp://​ftp.minix3.org/​pub/​minix/​packages/​3.1.9/​i386/​All/​pkgin-0.3.3.1nb1.tgz
 +</​code>​
 +==== Setting up pkgsrc on Minix ====
 +This section is about the /usr/pkgsrc source tree, needed if you want to compile or contribute packages, or patches. If you just want binary packages, see later sections.
 +
 +Required for this step: git. Install it with
 +
 +<​code>​
 +# pkgin in scmgit-base
 +</​code>​
 +To set up the pkgsrc tree:
 +
 +<​code>​
 +# cd /usr
 +# make pkgsrc-create
 +</​code>​
 +Note: this takes more than 400Mb of hard disk space (as of January 7th, 2011)
 +
 +To update the pkgsrc tree in the future:
 +
 +<​code>​
 +# cd /usr
 +# make pkgsrc-update
 +</​code>​
 +==== Compiling a package ====
 +All pkgsrc operations should be done with bmake.
 +
 +To build a package (misc/​figlet in this example) you need to cd to that directory and do a make install
 +
 +<​code>​
 +# cd /​usr/​pkgsrc/​misc/​figlet
 +# bmake install
 +</​code>​
 +This installs figlet in /usr/pkg
 +
 +==== Working with binary packages ====
 +=== pkgin ===
 +This is the recommended binary package UI. See [[.:​..:​usersguide:​installingbinarypackages|Installing Binary Packages]] for more info.
 +
 +Newer 3.1.8 cdrom images include pkgin pre-installed. Do a 'pkgin up' (for update) to get started.
 +
 +=== pkgsrc binary installing interface ===
 +There is a small number of binary packages that have been uploaded and can be installed with the rudimentary pkgsrc interface. From a package dir, type 'make bin-install,'​ like so:
 +
 +<​code>​
 +# cd /​usr/​pkgsrc/​misc/​figlet
 +# bmake bin-install
 +===> Binary install for figlet-2.2.2nb1
 +=> Installing figlet-2.2.2nb1 from /​usr/​pkgsrc/​packages/​All;​ftp://​ftp.minix3.org/​pub/​minix/​packages/​3.1.8/​i386/​All
 +figlet-2.2.2nb1:​ rebuilding run-time library search paths database
 +figlet-2.2.2nb1 successfully installed.
 +</​code>​
 +To see which binary packages are available, see [[ftp://​ftp.minix3.org/​pub/​minix/​packages/​3.1.8/​i386/​|the Minix binary package repository for 3.1.8/​i386]].
 +
 +==== Packages that currently compile on Minix ====
 +
 +Over 150 packages currently compile on Minix. ​ The most complete and up to date list can be found in [[http://​git.minix3.org/?​p=pkgsrc.git;​a=blob;​f=minix/​limited_list.pbulk;​hb=refs/​heads/​minix-master|/​usr/​pkgsrc/​minix/​limited_list.pbulk]].
 +
 +==== Porting other packages ====
 +Quite a few packages that compile on Minix do not build within pkgsrc as Minix specific patches are missing. We will use devel/​ncurses as an example to illustrate the process of creating patches in pkgsrc format
 +
 +We need to first install pkgdiff which contains the tools required to make patches in pkgsrc format.
 +
 +**Note 1:** devel/​ncurses has already been worked on.
 +
 +**Note 2:** Compiling pkgdiff, will compile perl and gzip as dependencies,​ If you want to avoid this, install perl and gzip from packman
 +
 +<​code>​
 +# cd pkgtools/​pkgdiff
 +# bmake install
 +</​code>​
 +Now extract and apply existing patches to the source
 +
 +<​code>​
 +# cd /​usr/​pkgsrc/​devel/​ncurses
 +# bmake patch
 +</​code>​
 +Packages are extracted and built by default in /​usr/​tmp/​work.
 +
 +<​code>​
 +# cd /​usr/​tmp/​work/​devel/​ncurses/​work
 +# ls
 +...
 +ncurses-5.7
 +...
 +</​code>​
 +Here you will find the extracted and patched version of ncurses. Now apply any minix specfic changes to the source code. Minix specific changes for several packages can be found in the [[http://​gforge.cs.vu.nl/​gf/​project/​minix/​scmsvn/?​action=browse&​path=/​trunk/​bigports/​|bigports]] repository.
 +
 +<!> **Before changing a file, backup the original version with an added .orig suffix. If you use pkgvi (part of  pkgdiff) to edit the file, this gets done automatically. If you don't backup with the right suffix, mkpatches ​ below doesn'​t work.** <!>
 +
 +Now build the package
 +
 +<​code>​
 +# cd /​usr/​pkgsrc/​devel/​ncurses
 +# bmake
 +</​code>​
 +Since packages found in pkgsrc are generally newer than the ones in bigports, you might need to make a few more changes.
 +
 +Once the package builds successfully,​ it's time to make patches:
 +
 +<​code>​
 +# cd /​usr/​pkgsrc/​devel/​ncurses
 +# mkpatches -d patches
 +# rm patches/​*.orig
 +# bmake mdi
 +</​code>​
 +the new patches are now installed in /​usr/​pkgsrc/​devel/​ncurses/​patches. See man mkpatches for details. It is a good idea to manually inspect them.
 +
 +bmake mdi updates the distinfo file. If you don't run make mdi the command "​make"​ doesn'​t recognize the new patches.
 +
 +**Note**: pkgsrc modifies gnu configure scripts and makefiles. So when you do mkpatches, it  is likely that the created patches have these changes, these need to be removed.
 +
 +Make sure everything works fine with the new set of patches:
 +
 +<​code>​
 +# bmake clean
 +# bmake
 +</​code>​
 +==== Submitting changes and reporting bugs ====
 +Currently you just mail them to me [gautam (at) minix3 (dot) org].
 +
 +===== Pkgsrc TODO items =====
 +==== Packages we have from pkgsrc but that need to pass testsuites too ====
 +  * Gcc
 +  * Binutils
 +  * Git
 +  * Subversion
 +
 +==== Packages we need but don't have yet ====
 +  * clang+llvm
 +  * python
 +  * zsh
 +  * nvi
 +  * wget
 +  * GNU coreutils
 +  * emacs
 +  * e2fsprogs
 +  * OSS
 +
 +===== Volunteer Pkgsrc =====
 +
 +A secondary pkgsrc repository has been created to allow volunteers to contribute to pkgsrc directly. It is currently experimental as its relationship to the primary pkgsrc repository has yet to be determined.
 +
 +To read more, please see [[.:​volunteerpkgsrc|Volunteer Pkgsrc]].
  
releases/3.2.0/developersguide/testingpkgsrc.txt · Last modified: 2014/11/11 14:52 (external edit)