2008-09-29 17:25:56 +00:00
|
|
|
|
pkgfs - Build packages from s(cratch|ource)
|
|
|
|
|
|
|
|
|
|
It is a simple package system manager that uses Xstow to allow packages
|
|
|
|
|
to be available at a master directory.
|
2008-09-29 18:05:13 +00:00
|
|
|
|
|
|
|
|
|
Multiple versions of a package can be installed, because they can be enabled
|
|
|
|
|
or disabled at the master directory anytime, to e.g allow testing different
|
|
|
|
|
versions of the same package by "stowning" or "unstowning" them.
|
|
|
|
|
|
|
|
|
|
------------------------------------------------------------------------------
|
|
|
|
|
HOW TO USE IT
|
|
|
|
|
------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
Once you download it, you should edit the configuration file located at the
|
|
|
|
|
pkgfs directory. By default it uses the pkgfs directory in your $HOME.
|
|
|
|
|
|
|
|
|
|
If PKGFS_CONFIG_FILE is not set or specified from the command line with the
|
|
|
|
|
-c flag, it will use the location "/usr/local/etc/pkgfs.conf".
|
|
|
|
|
|
|
|
|
|
Once that you read the "pkgfs.conf" file and configured it, you can start
|
|
|
|
|
installing packages by using the command:
|
|
|
|
|
|
2008-09-29 23:59:51 +00:00
|
|
|
|
$ pkgfs.sh -c pkgfs.conf install glib-2.18.1
|
|
|
|
|
|
|
|
|
|
Please note that it's assumed that PKGFS_TEMPLATESDIR is properly defined
|
|
|
|
|
and actually contains valid template files.
|
2008-09-29 18:05:13 +00:00
|
|
|
|
|
|
|
|
|
While installing your first package, if pkgfs couldn't find the Xstow program
|
|
|
|
|
specified at the configuration file with PKGFS_XSTOW_CMD, the Xstow package
|
|
|
|
|
will be installed and "stowned".
|
|
|
|
|
|
|
|
|
|
If the package is properly installed, it will be "stowned" automatically.
|
|
|
|
|
``stowned<65><64> means that this package is available in the master directory,
|
|
|
|
|
on which ``Xstow<6F><77> has created links from DESTDIR/<pkgname>.
|
|
|
|
|
|
|
|
|
|
To remove a currently installed (and stowned) package, you can use:
|
|
|
|
|
|
|
|
|
|
$ pkgfs.sh -c pkgfs.conf remove glib-2.18.1
|
|
|
|
|
|
|
|
|
|
Please note that when you remove it, the package will also be removed
|
|
|
|
|
from PKGFS_DESTDIR and previously "unstowned".
|
|
|
|
|
|
|
|
|
|
pkgfs uses some db(1) btree files, to record what packages are currently
|
|
|
|
|
"stowned". Once you install successfully or stown a package, the package
|
|
|
|
|
will be registered in PKGFS_DESTDIR/.pkgfs-registered-pkg.db.
|
|
|
|
|
|
|
|
|
|
While "unstowning" a package, it won't be available anymore in the master
|
|
|
|
|
directory and therefore it probably won't work if used from
|
|
|
|
|
PKGFS_DESTDIR/<pkgname>.
|
|
|
|
|
|
|
|
|
|
Summary, to stow an already installed package (into PKGFS_DESTDIR/<pkgname>):
|
|
|
|
|
|
|
|
|
|
$ pkgfs.sh -c pkgs.conf stow glib-2.18.1
|
|
|
|
|
|
|
|
|
|
and to unstow an already installed (stowned) package:
|
|
|
|
|
|
|
|
|
|
$ pkgfs.sh -c pkgfs.conf unstow glib-2.18.1
|
|
|
|
|
|
|
|
|
|
You can also print some stuff about any template, e.g:
|
|
|
|
|
|
2008-09-29 23:59:51 +00:00
|
|
|
|
$ pkgfs.sh info glib-2.18.1
|
2008-09-29 18:05:13 +00:00
|
|
|
|
|
2008-09-29 22:45:25 +00:00
|
|
|
|
To list installed (stowned) packages, use this:
|
|
|
|
|
|
|
|
|
|
$ pkgfs.sh -c pkgfs.conf list
|
|
|
|
|
|
|
|
|
|
That's all for now folks. I hope you find it useful, as I do.
|
2008-09-29 18:05:13 +00:00
|
|
|
|
|
|
|
|
|
------------------------------------------------------------------------------
|
2008-09-30 02:02:44 +00:00
|
|
|
|
PERFORMANCE
|
|
|
|
|
------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
pkgfs is really fast, trust me. That was one of my reasons to make my own
|
|
|
|
|
pkgsrc/ports alike system.
|
|
|
|
|
|
|
|
|
|
If you want benchmarks, here is one; building libX11 (all deps installed)
|
|
|
|
|
with pkgfs:
|
|
|
|
|
|
|
|
|
|
217.00s real 103.23s user 29.96s system
|
2008-09-29 18:05:13 +00:00
|
|
|
|
|
2008-09-30 02:02:44 +00:00
|
|
|
|
versus pkgsrc (make install clean):
|
|
|
|
|
|
|
|
|
|
229.22s real 112.75s user 54.79s system
|
|
|
|
|
|
|
|
|
|
The difference in this package might not be too big as I might think... but
|
|
|
|
|
anyway, 12 seconds faster is not that bad.
|
|
|
|
|
|
|
|
|
|
------------------------------------------------------------------------------
|
2008-09-29 18:05:13 +00:00
|
|
|
|
Juan Romero Pardines <xtraeme@gmail.com>
|