source: README.PACKAGE_MANAGEMENT@ c7c32a3

2.4 ablfs-more legacy trunk
Last change on this file since c7c32a3 was c7c32a3, checked in by Pierre Labastie <pierre@…>, 7 years ago

Update READMEs

  • Property mode set to 100644
File size: 4.1 KB
Line 
1TITLE : Package management in jhalfs
2BY : Pierre Labastie (work in progress)
3
41. INTRODUCTION:
5
6 There are several hints discussing package management for LFS, but
7 nothing under jhalfs. There used to be a patch for PACO that I cannot
8 find now. This is a modification ("DESTDIR install" automation), which
9 allows to use a package manager inside jhalfs. I hope it is flexible enough
10 to support several package managers, at least among those who use DESTDIR
11 install. My initial implementation used dpkg, from Debian, in a very
12 crude way (Debian has a sophisticated package management system, which
13 I have not tried to use here). There is also a port to Pacman from
14 Arch Linux (http://www.archlinux.org). I am sorry to say I have (almost)
15 no experience with rpm, so I cannot tell whether it would fit.
16
172. OVERVIEW OF THE SYSTEM:
18
19 Presently, package management is only available for LFS. I plan to
20 upgrade BLFS tools, but nothing usable right now. I have not attempted
21 to adapt this tool for the other flavours of LFS.
22
23 To use package management, you need to create the required files in
24 the pkgmngt directory (see below), and to select "package management" in
25 the build settings. Note that this is incompatible with creating an SBU
26 and usage report.
27
283. DETAILS OF OPERATION:
29
30 This system performs basically a "DESTDIR install" for all pages
31 in chapter 6, 7 and 8 of the book. The name of the DESTDIR directory is the
32 same as the one of the executed script. The path to this directory is
33 made available to the scriplets through the PKG_DEST variable.
34 The XSL stylesheet used for generating the scriptlets, automatically
35 adds DESTDIR install instructions when "package management" is selected.
36 Also all the paths beginning with " /" or ">/" (absolute paths) are prepended
37 with $PKG_DEST. This has the default that you might want to move
38 files to non existent directories. There is no simple way to automatically
39 create those directories, because you have sometimes to use the full path
40 (instructions of the form `cp file dir') and sometimes only the dirname
41 (instructions of the form `cp file1 file2'). So the XSL stylesheet
42 creates a reasonable subset of the FHS hierarchy into the destination
43 directory. Empty directories are then removed before packing the
44 binary package.
45 In order to use the package manager, it has to be installed at the end of
46 chapter 5 (temporary installation in /tools) and chapter 6 (final install).
47 Furthermore, the administrative files and directories have to be created
48 during the `Creating Directories' and `Creating Essential Files' stages.
49 For all this, the user has to supply a file in docbook XML format, with
50 the necessary instructions and enough information to download the tarball.
51 This file should reside in the `pkgmngt' directory and be named
52 `packageManager.xml'. A template named `packageManager.xml.template' is
53 provided in the `pkgmngt' subdirectory. There are also two XML files for
54 dpkg and pacman, respectively `packageManager.xml.dpkg' and
55 `packageManager.xml.pacman', that you can copy to `packageManager.xml'.
56 They are not updated often, so the versions used can be rather old.
57 The last thing to do is to tell how to use the package manager. When
58 the binary package is ready, the scriptlets call a shell function named
59 `packInstall', which should pack the binary package and install it on the
60 system. Note that nothing has been done to manage configuration files,
61 which are ususally treated specially by package managers: depending on
62 the book layout, it is sometimes possible to create those files afterwards,
63 and sometimes not, which means that you have to check them after each
64 upgrade. The user has to write his own `packInstall' function. The shell
65 function should be defined in a file named `packInstall.sh', residing in
66 the `pkgmngt' directory. A template is provided, as well as two example
67 scripts for dpkg and pacman. Note that, due to the way pacman checks the
68 available space on disk, the root directory in chroot must be a mount point,
69 otherwise the installation of packages fails.
Note: See TracBrowser for help on using the repository browser.