aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormerakor <cem@ckyln.com>2021-03-21 15:47:58 +0000
committermerakor <cem@ckyln.com>2021-03-21 15:47:58 +0000
commit6af61ad5be42526d3aa21da8f5e55d007793683c (patch)
treef964f4e137a1a1dc4181a0093ab67aedef78c399
parent7b2bd92e341d93365434ce07850fb3acf21a4e30 (diff)
downloadcpt-6af61ad5be42526d3aa21da8f5e55d007793683c.tar.gz
docs: update
FossilOrigin-Name: 18ff380ba47e141139cd4dfb589c87e70d97514d925dc638659c42e68fff7c03
-rw-r--r--docs/Makefile4
-rw-r--r--docs/cpt.org457
-rw-r--r--docs/cpt.texi529
-rw-r--r--docs/cpt.txt488
4 files changed, 638 insertions, 840 deletions
diff --git a/docs/Makefile b/docs/Makefile
index 92b2c76..344bd70 100644
--- a/docs/Makefile
+++ b/docs/Makefile
@@ -7,14 +7,14 @@ all: cpt.txt cpt.texi cpt.info
.SUFFIXES: .info .texi .org .txt
.org.texi:
rm -f $@
- ${EMACS} $< --batch --eval "(require 'vc)" -f org-texinfo-export-to-texinfo
+ ${EMACS} $< --batch -f org-texinfo-export-to-texinfo
.texi.info:
${MAKEINFO} $< -o $@
.org.txt:
rm -f $@
- ${EMACS} $< --batch --eval "(require 'vc)" -f org-ascii-export-to-ascii
+ ${EMACS} $< --batch -f org-ascii-export-to-ascii
clean:
rm -f cpt.info
diff --git a/docs/cpt.org b/docs/cpt.org
index aeefe1e..7f0982e 100644
--- a/docs/cpt.org
+++ b/docs/cpt.org
@@ -11,53 +11,12 @@
This is a reference document containing both the user-guide and the development
manual for *Carbs Packaging Tools*. For development logs see [[https://git.carbslinux.org/cpt][the git repository]].
-* Table of Contents :TOC:noexport:
-- [[#copying][Copying]]
-- [[#preface][Preface]]
-- [[#usage][Usage]]
- - [[#cpt-alternatives][cpt-alternatives]]
- - [[#cpt-build][cpt-build]]
- - [[#cpt-checksum][cpt-checksum]]
- - [[#cpt-download][cpt-download]]
- - [[#cpt-install][cpt-install]]
- - [[#cpt-list][cpt-list]]
- - [[#cpt-remove][cpt-remove]]
- - [[#cpt-search][cpt-search]]
- - [[#cpt-update][cpt-update]]
- - [[#global-flags][Global Flags]]
-- [[#environment-variables][Environment Variables]]
- - [[#cpt_path][=CPT_PATH=]]
- - [[#cpt_compress][=CPT_COMPRESS=]]
- - [[#cpt_force][=CPT_FORCE=]]
- - [[#cpt_pid][=CPT_PID=]]
-- [[#hooks][Hooks]]
- - [[#editing-the-build-file-during-pre-build][Editing the =build= file during pre-build]]
-- [[#packaging-system][Packaging System]]
- - [[#build][=build=]]
- - [[#sources][=sources=]]
- - [[#checksums][=checksums=]]
- - [[#version][=version=]]
- - [[#depends][=depends=]]
- - [[#post-install][=post-install=]]
- - [[#message][=message=]]
- - [[#test][=test=]]
-- [[#rsync-repositories][Rsync Repositories]]
- - [[#setting-up-an-rsync-repository][Setting up an Rsync repository]]
-- [[#cpt-library][CPT Library]]
- - [[#calling-the-library][Calling the library]]
- - [[#option-parsing][Option parsing]]
- - [[#message-functions][Message functions]]
- - [[#text-functions][Text functions]]
- - [[#portability-functions][Portability functions]]
- - [[#system-functions][System Functions]]
- - [[#package-functions][Package Functions]]
-
* Copying
:PROPERTIES:
:COPYING: t
:END:
-Copyright \copy 2020 Cem Keylan
+Copyright \copy 2020-2021 Cem Keylan
#+begin_quote
Permission is granted to copy, distribute and/or modify this document under the
@@ -131,180 +90,103 @@ system:
-> update Check for updates
#+END_EXAMPLE
-** cpt-alternatives
-:PROPERTIES:
-:DESCRIPTION: List and swap to alternatives
-:END:
-
-You can list and swap to alternatives using =cpt-alternatives=, or
-=cpt a= for short. When run without alternatives, it will list
-alternatives. It can read from standard input if =-= is given as an
-argument.
-
-*Examples*
-
-1. List alternatives.
-
-#+BEGIN_EXAMPLE
- $ cpt-alternatives
- ncurses /usr/bin/clear
- ncurses /usr/bin/reset
-#+END_EXAMPLE
-
-2. Swap to =clear= from =ncurses=.
-
-#+BEGIN_EXAMPLE
- $ cpt-alternatives ncurses /usr/bin/clear
- -> Swapping '/usr/bin/clear' from 'busybox' to 'ncurses'
-#+END_EXAMPLE
-
-3. Swap in bulk (all of =sbase=).
-
-#+BEGIN_EXAMPLE
- $ cpt a | grep ^sbase | cpt a -
-#+END_EXAMPLE
-
-** cpt-build
-:PROPERTIES:
-:DESCRIPTION: Build a package
-:END:
-
-=cpt-build= will build given packages and their dependencies. If multiple
-packages are specified, it will ask to install the packages as well.
-
-| Flags | Explanation |
-|----------------+--------------|
-| =-t=, =--test= | Run tests |
-
-** cpt-checksum
-:PROPERTIES:
-:DESCRIPTION: Generate checksums
-:END:
-
-=cpt-checksum= will generate a =checksums= file from the package's sources.
-
-** cpt-download
-:PROPERTIES:
-:DESCRIPTION: Download sources for the given package
-:END:
-
-=cpt-download= will download the sources of a package.
-
-** cpt-install
-:PROPERTIES:
-:DESCRIPTION: Install a package
-:END:
-
-=cpt-install= will install given packages.
-
-** cpt-list
-:PROPERTIES:
-:DESCRIPTION: List installed packages
-:END:
-
-When called without arguments, =cpt-list= will print all installed
-packages. You can add package names as arguments to check whether they are
-installed or not. In success, =cpt-list= will exit with status 0 if all
-given packages are installed, it will return 1 if any of the given packages
-aren't installed.
-
-| Flags | Explanation |
-|-------------------+----------------------------------------|
-| =-c=, =--current= | Use the current directory as a package |
-
-** cpt-remove
-:PROPERTIES:
-:DESCRIPTION: Remove a package
-:END:
-
-=cpt-remove= will remove given packages.
-
-** cpt-search
-:PROPERTIES:
-:DESCRIPTION: Search for a package
-:END:
-
-=cpt-search= will search for packages, it accepts regular expressions as well.
-
-| Flags | Explanation |
-|------------------+-------------------------------------------|
-| =-s=, =--single= | Only show the first instance of a package |
-
-
-#+BEGIN_EXAMPLE
- $ cpt-search 'alsa-*'
- /var/db/cpt/repo/extra/alsa-lib
- /var/db/cpt/repo/extra/alsa-utils
- /var/db/cpt/installed/alsa-lib
- /var/db/cpt/installed/alsa-utils
-
- $ cpt-search emacs
- /home/cem/repos/main/community/emacs
- /home/cem/repos/kiss-community/community/emacs
- /var/db/cpt/installed/emacs
-
- $ cpt-search --single emacs
- /home/cem/repos/main/community/emacs
-#+END_EXAMPLE
-
-** cpt-update
-:PROPERTIES:
-:DESCRIPTION: Check for updates
-:END:
-
-=cpt-update= will update the packages on your system. It fetches remote
-repositories, and builds, and installs packages that have versions different
-from the ones installed on the system. It doesn't check if the version string
-is actually higher, it only checks whether they differ.
-
-| Flags | Explanation |
-|----------------------+--------------------------------------|
-| =-d=, =--download= | Only download updatable packages |
-| =-n=, =--no-fetch= | Do not update remote repositories |
-| =-o=, =--only-fetch= | Only fetch the repositories and exit |
-
-** Global Flags
-:PROPERTIES:
-:DESCRIPTION: Flags that work globally on some cpt utilities
-:END:
+The documentation of =cpt= aims to keep tool flags and related usage information
+on concise manual pages, while moving the rest of the information to this User
+Manual to avoid unwarranted duplication. To learn more on a specific usage of a
+tool, use the ~man~ program:
-| Flags | Explanation |
-|---------------------+----------------------------------|
-| =-f=, =--force= | Force operation, [[=CPT_FORCE=][See =CPT_FORCE=]] |
-| =-y=, =--no-prompt= | Do not prompt for confirmation |
-| =-root CPT_ROOT= | Use an alternate root directory |
-| =-h=, =--help= | Show this help message |
-| =-v=, =--version= | Print version information |
+#+begin_src sh
+man cpt-build
+#+end_src
-* Environment Variables
+* Configuration
+:PROPERTIES:
+:DESCRIPTION: Configuring the package manager
+:END:
+
+The package manager does *NOT* have a configuration file, but there are a
+variety of ways in order to interact with and configure the package manager.
+
+** CPT Base
+:PROPERTIES:
+:DESCRIPTION: Defining base packages
+:END:
+
+An =/etc/cpt-base= file can be used in order to define the base to the package
+manager. Base packages are the packages that receive special treatment by
+utilities such as =cpt-reset=, and =cpt-orphans=.
+
+#+begin_example
+# This file defines the base packages of the system. You can add or remove
+# package names in order to redefine the base. This file will be used by
+# cpt-orphans and cpt-reset. If this file doesn't exist on /etc/cpt-base, both
+# of the tools will assume that there is no defined base, so use with caution.
+baselayout
+binutils
+byacc
+busybox
+bzip2
+ca-certificates
+curl
+flex
+gcc
+git
+rsync
+gzip
+cpt
+bearssl
+linux-headers
+m4
+make
+musl
+pkgconf
+xz
+zlib
+#+end_example
+
+** Environment Variables
:PROPERTIES:
:DESCRIPTION: Change the behaviour of cpt through environment configuration
:END:
-Since there is no configuration file for cpt, the package manager is configured
-through environment variables. These can be set per operation, or be set to your
-shell configuration or =~/.profile=. Here are the environment variables that
-alter the behaviour of =cpt=:
-
-| ENVIRONMENT VARIABLE | Effects |
-|----------------------+-------------------------------------------------------------------------------|
-| =CPT_PATH= | Set the locations of your repositories. It is similar to the =PATH= variable. |
-| =XDG_CACHE_HOME= | Unless this is set, the =~/.cache= directory will be used instead. |
-| =CPT_CACHE= | The cache directory for =cpt=. Default: =$XDG_CACHE_HOME/cpt= |
-| =CPT_CHOICE= | If this is set to 0, a package installation will be aborted on conflicts. |
-| =CPT_COMPRESS= | Program used to compress package tarballs. |
-| =CPT_DEBUG= | If set to 1, temporary directories will not be removed after the operation. |
-| =CPT_FETCH= | If set to 0, =cpt-update= will not fetch repositories. |
-| =CPT_FORCE= | Force operation. |
-| =CPT_HOOK= | Location for the hook file. |
-| =CPT_KEEPLOG= | If set to 1, cpt will keep logs regardless of operation success. |
-| =CPT_PID= | Set the temporary build directory name. |
-| =CPT_PROMPT= | If set to 0, =cpt= will not prompt you for anything. |
-| =CPT_ROOT= | If this variable is set, =cpt= will assume this as the system root. |
-| =CPT_TEST= | If set to 1, =cpt-build= will run tests whenever available. |
-| =CPT_TMPDIR= | The directory to create the temporary directories. |
-
-** =CPT_PATH=
+Since there is no configuration file for =cpt=, the package manager is
+configured through environment variables. These can be set per operation, or be
+set to your shell configuration or =~/.profile=. Here are the environment
+variables that alter the behaviour of =cpt=, some of them have separate sections
+to provide detailed information.
+
+- ~CPT_PATH~ ::
+ Set the locations of your repositories. It is similar to the ~PATH~ variable.
+- ~CPT_CACHE~ ::
+ The cache directory for =cpt=. Default: ~$XDG_CACHE_HOME/cpt~.
+- ~CPT_CHOICE~ ::
+ If this is set to 0, a package installation will be aborted on conflicts.
+- ~CPT_COLOR~ ::
+ If this is set to 1, =cpt= tools will be forced to display coloured output. If
+ set to 0, they will be forced to display them without colours. Otherwise,
+ =cpt= will output colour as long as it is outputting to a terminal.
+- ~CPT_DEBUG~ ::
+ If set to 1, temporary directories will not be removed after the operation.
+- ~CPT_FETCH~ ::
+ If set to 0, ~cpt-update~ will not fetch repositories.
+- ~CPT_FORCE~ ::
+ If set to 1, =cpt= tools will force operation.
+- ~CPT_HOOK~ ::
+ Absolute path to the package manager hook file.
+- ~CPT_KEEPLOG~ ::
+ If set to 1, =cpt= will keep logs regardless of operation success.
+- ~CPT_PID~ ::
+ Set the temporary build directory name.
+- ~CPT_PROMPT~ ::
+ If set to 0, =cpt= will not prompt you for anything.
+- ~CPT_ROOT~ ::
+ If this variable is set, =cpt= will assume the given path as the system root.
+- ~CPT_TEST~ ::
+ If set to 1, ~cpt-build~ will run tests whenever available.
+- ~CPT_TMPDIR~ ::
+ The directory to create the temporary directories.
+
+*** =CPT_PATH=
:PROPERTIES:
:DESCRIPTION: Set the locations of your repositories
:END:
@@ -326,7 +208,7 @@ for something a little more complex.
This example brings us to the next section of this document.
-*** Repository preferences
+**** Repository preferences
:PROPERTIES:
:DESCRIPTION: Prioritise package repositories
:END:
@@ -344,7 +226,7 @@ personal repository is listed before the =extra= repository.
CPT_PATH=$HOME/repos/personal:$HOME/repos/carbs/extra
#+end_src
-*** Setting the =CPT_PATH=
+**** Setting the =CPT_PATH=
:PROPERTIES:
:DESCRIPTION: Set the value of CPT_PATH on your shell configuration
:END:
@@ -364,7 +246,7 @@ repository comes first:
export CPT_PATH
#+end_src
-** =CPT_COMPRESS=
+*** =CPT_COMPRESS=
:PROPERTIES:
:DESCRIPTION: Compression tool to use in cpt
:END:
@@ -376,10 +258,11 @@ suffixes for the program. Available values are:
- =zst=
- =bz2=
- =xz=
+- =lz=
Defaults to =gz=.
-** =CPT_FORCE=
+*** =CPT_FORCE=
:PROPERTIES:
:DESCRIPTION: Force operations on cpt
:END:
@@ -394,7 +277,7 @@ errors or skip certain checks. Here are some examples:
Defaults to 0.
-** =CPT_PID=
+*** =CPT_PID=
:PROPERTIES:
:DESCRIPTION: Set reproducible temporary directories
:END:
@@ -412,7 +295,7 @@ time. So the best way to use this variable is during one-time =cpt= calls.
By running the above, you will know that the created build directories will end
with the =*-mesa= suffix.
-* Hooks
+** Hooks
:PROPERTIES:
:DESCRIPTION: Use hooks to customize the package manager operations
:END:
@@ -445,7 +328,7 @@ The hook is given 3 variables when it is executed. Those are:
| =$PKG= | The package that =cpt= is currently working on. Can be null. |
| =$DEST= | The destination of the operation. Can be null. |
-** Editing the =build= file during pre-build
+** Editing the build file during pre-build
:PROPERTIES:
:DESCRIPTION: Modify a package build with your hooks
:END:
@@ -457,27 +340,27 @@ file will be placed to the package database named as =build.diff=. Here is an
example =build= file manipulation during the pre-build hook.
#+BEGIN_SRC sh
- cat <<EOF> .build.cpt
- #!/bin/sh -e
+cat <<EOF> .build.cpt
+#!/bin/sh -e
- for patch in bash50-0??; do
- patch -p0 < "\$patch"
- done
+for patch in bash50-0??; do
+ patch -p0 < "\$patch"
+done
- export LDFLAGS=-static
+export LDFLAGS=-static
- ./configure \
- --prefix=/usr \
- --without-bash-malloc \
- --disable-nls
+./configure \
+ --prefix=/usr \
+ --without-bash-malloc \
+ --disable-nls
- export MAKEFLAGS="TERMCAP_LIB=/usr/lib/libncursesw.a $MAKEFLAGS"
+export MAKEFLAGS="TERMCAP_LIB=/usr/lib/libncursesw.a $MAKEFLAGS"
- make
- make DESTDIR="\$1" install
+make
+make DESTDIR="\$1" install
- ln -s bash "\$1/usr/bin/sh"
- EOF
+ln -s bash "\$1/usr/bin/sh"
+EOF
#+END_SRC
* Packaging System
@@ -485,23 +368,16 @@ example =build= file manipulation during the pre-build hook.
:DESCRIPTION: More detail on creating packages
:END:
-A package is formed of several files, these are:
-
-- [[=build=]]
-- [[=sources=]]
-- [[=checksums=]]
-- [[=version=]]
-- [[=depends=]]
-- [[=post-install=]]
-- [[=message=]]
-- [[=test=]]
+A package is formed of several files, from these files, only ~build~,
+~checksums~, and ~version~ files are mandatory.
-Any other file can be added to the package directory at the discretion of the
-package maintainer. Everything in the package directory will also be added to the
-package database that is located on =/var/db/cpt/installed=. These can be
-patches, configuration files, etc.
+This section talks about files that are interpreted specially by the package
+manager. Any other file can be added to the package directory at the discretion
+of the package maintainer. Everything in the package directory will also be
+added to the package database that is located on =/var/db/cpt/installed=. These
+can be patches, configuration files, etc.
-** =build=
+** build
:PROPERTIES:
:DESCRIPTION: The build script
:END:
@@ -524,7 +400,7 @@ Build is run with three arguments (=$#=)
- Package version
- System architecture
-** =sources=
+** sources
:PROPERTIES:
:DESCRIPTION: The file containing package sources
:END:
@@ -562,17 +438,17 @@ history pointer, git will checkout the relevant revision. So,
Other files are assumed to be residing in the package directory. They should be
added with their paths relative to the package directory.
-** =checksums=
+** checksums
:PROPERTIES:
:DESCRIPTION: The file containing sha256sum of the sources
:END:
-checksums file is generated by the =cpt c pkg= command. It is generated
+=checksums= file is generated by the ~cpt c pkg~ command. It is generated
according to the order of the sources file. That's why you shouldn't be editing
it manually. The checksums file is created with the digests of the files using
the sha256 algorithm.
-** =version=
+** version
:PROPERTIES:
:DESCRIPTION: The file containing the version and the release numbers of a package
:END:
@@ -585,7 +461,7 @@ like below.
1.3.2 1
#+END_EXAMPLE
-** =depends=
+** depends
:PROPERTIES:
:DESCRIPTION: The file containing the dependencies of a package
:END:
@@ -604,7 +480,7 @@ the following =depends= file:
zlib
#+END_EXAMPLE
-** =post-install=
+** post-install
:PROPERTIES:
:DESCRIPTION: The post-installation script
:END:
@@ -613,7 +489,7 @@ the following =depends= file:
will be run after the package is installed as root (or as the user if the user
has write permissions on =CPT_ROOT=).
-** =message=
+** message
:PROPERTIES:
:DESCRIPTION: The post-installation message to be displayed
:END:
@@ -621,7 +497,7 @@ has write permissions on =CPT_ROOT=).
This plaintext file will be outputted with =cat= after every package is
installed.
-** =test=
+** test
:PROPERTIES:
:DESCRIPTION: The test script for a package
:END:
@@ -732,6 +608,52 @@ Create a service file at =/etc/sv/rsync/run= (runit):
exec rsync --daemon --no-detach
#+END_SRC
+* Comparison Between CPT and KISS
+
+Lots of things have changed since ~cpt~ was forked from ~kiss~ in terms of
+functionalities and ideals. This section aims to describe the similarities and
+differences of both package managers as neutral as possible. Keep in mind that
+this is the ~cpt~ documentation, so it may be biased regardless.
+
+- Package Manager ::
+
+ While ~kiss~ aims to be a simple single file package manager, ~cpt~ aims to be
+ an extendable package manager library. ~kiss~ has all of its features
+ built-in, while ~cpt~ has all of its features separated into small tools.
+ These tools can be called from the main ~cpt~ tool (in order to keep
+ ~kiss~-like usage) or with their names directly (e.g ~cpt-build~).
+
+- Configuration ::
+
+ Neither ~kiss~ nor ~cpt~ use configuration files. Instead, they are configured
+ through environment variables. Additionally, all ~cpt~ tools can receive flags
+ that alter their functionality. ~kiss~ does not accept flags.
+
+- Package Repositories ::
+
+ In addition to git repositories, ~cpt~ also makes use of [[Rsync Repositories][rsync repositories]].
+
+- Package Sources ::
+
+ In addition to git repositories for sources, ~cpt~ also supports mercurial
+ repositories.
+
+- Post-Installation Messages ::
+
+ ~kiss~ and ~cpt~ interact with =post-install= messages differently. ~kiss~
+ does not differentiate between post-installation scripts and post-installation
+ messages, and will save the output of all scripts named =post-install= to be
+ printed after the installation of all packages are complete. ~cpt~ on the
+ other hand, separates these with the =message= file. ~cpt~ runs =post-install=
+ without saving the output to be printed a second time. It instead prints all
+ =message= files after the installation is over.
+
+- Portability ::
+
+ ~kiss~ aims to be as portable as possible. ~cpt~ aims to be portable, but
+ favours performance. ~cpt~ depends on ~rsync~ for package installation, while
+ ~kiss~ has removed the dependency in favour of portability.
+
* CPT Library
:PROPERTIES:
:DESCRIPTION: Documentation of the Library
@@ -763,8 +685,8 @@ variables that are used inside the package manager.
:END:
=cpt-lib= includes a POSIX-shell option parser inside named =getoptions=. You
-can see its own [[https://github.com/ko1nksm/getoptions/blob/v2.0.1/README.md][documentation]] for writing an option parser. The built-in version
-of the =getoptions= library is 2.0.1 and there are no plans for updating it
+can see its own [[https://github.com/ko1nksm/getoptions/blob/v2.5.0/README.md][documentation]] for writing an option parser. The built-in version
+of the =getoptions= library is 2.5.0 and there are no plans for updating it
apart from bug fixes.
*** Defining a parser
@@ -785,8 +707,8 @@ inside. Here is the proper way of doing it.
parser_definition() {
# The rest arguments MUST be defined as 'REST'
- setup REST help:usage -- "usage: ${0##*/} [options] [pkg...]"
- msg -- '' 'Options:'
+ setup REST help:usage -- "usage: ${0##*/} [options] [pkg...]"
+ msg -- '' 'Options:'
flag CPT_TEST -t export:1 init:@export -- "Enable tests"
global_options
@@ -803,13 +725,13 @@ inside. Here is the proper way of doing it.
The =global_options()= function is a simple convenience call to include flags
that can be used inside most =cpt= tools. It defines the following flags:
-| Flag | Long Option | Calls |
-|------+-------------+--------------|
-| -f | --force | =CPT_FORCE= |
-| -y | --no-prompt | =CPT_PROMPT= |
-| | --root | =CPT_ROOT= |
-| -h | --help | =usage()= |
-| -v | --version | =version()= |
+| Flag | Long Option | Calls |
+|------+---------------+--------------|
+| ~-f~ | ~--force~ | =CPT_FORCE= |
+| ~-y~ | ~--no-prompt~ | =CPT_PROMPT= |
+| | ~--root~ | =CPT_ROOT= |
+| ~-h~ | ~--help~ | =usage()= |
+| ~-v~ | ~--version~ | =version()= |
** Message functions
:PROPERTIES:
@@ -1070,6 +992,9 @@ if it fails.
pkg_find cpt
#+end_src
+*** TODO =pkg_get_base()=
+
+This function returns the base packages as defined in =/etc/cpt-base=.
*** TODO =pkg_gentree=
:PROPERTIES:
diff --git a/docs/cpt.texi b/docs/cpt.texi
index 2dcbf8a..af309d2 100644
--- a/docs/cpt.texi
+++ b/docs/cpt.texi
@@ -7,7 +7,7 @@
@c %**end of header
@copying
-Copyright @copyright{} 2020 Cem Keylan
+Copyright @copyright{} 2020-2021 Cem Keylan
@quotation
Permission is granted to copy, distribute and/or modify this document under the
@@ -47,27 +47,21 @@ manual for @strong{Carbs Packaging Tools}. For development logs see @uref{https:
@menu
* Preface:: Introduction to Carbs Packaging Tools
* Usage:: Basic usage of Carbs Packaging Tools
-* Environment Variables:: Change the behaviour of cpt through environment configuration
-* Hooks:: Use hooks to customize the package manager operations
+* Configuration:: Configuring the package manager
* Packaging System:: More detail on creating packages
* Rsync Repositories:: Information on using or creating rsync repositories
+* Comparison Between CPT and KISS::
* CPT Library:: Documentation of the Library
@detailmenu
--- The Detailed Node Listing ---
-Usage
+Configuration
-* cpt-alternatives:: List and swap to alternatives
-* cpt-build:: Build a package
-* cpt-checksum:: Generate checksums
-* cpt-download:: Download sources for the given package
-* cpt-install:: Install a package
-* cpt-list:: List installed packages
-* cpt-remove:: Remove a package
-* cpt-search:: Search for a package
-* cpt-update:: Check for updates
-* Global Flags:: Flags that work globally on some cpt utilities
+* CPT Base:: Defining base packages
+* Environment Variables:: Change the behaviour of cpt through environment configuration
+* Hooks:: Use hooks to customize the package manager operations
+* Editing the build file during pre-build:: Modify a package build with your hooks
Environment Variables
@@ -76,25 +70,16 @@ Environment Variables
* @samp{CPT_FORCE}:: Force operations on cpt
* @samp{CPT_PID}:: Set reproducible temporary directories
-@samp{CPT_PATH}
-
-* Repository preferences:: Prioritise package repositories
-* Setting the @samp{CPT_PATH}:: Set the value of CPT_PATH on your shell configuration
-
-Hooks
-
-* Editing the @samp{build} file during pre-build:: Modify a package build with your hooks
-
Packaging System
-* @samp{build}:: The build script
-* @samp{sources}:: The file containing package sources
-* @samp{checksums}:: The file containing sha256sum of the sources
-* @samp{version}:: The file containing the version and the release numbers of a package
-* @samp{depends}:: The file containing the dependencies of a package
-* @samp{post-install}:: The post-installation script
-* @samp{message}:: The post-installation message to be displayed
-* @samp{test}:: The test script for a package
+* build:: The build script
+* sources:: The file containing package sources
+* checksums:: The file containing sha256sum of the sources
+* version:: The file containing the version and the release numbers of a package
+* depends:: The file containing the dependencies of a package
+* post-install:: The post-installation script
+* message:: The post-installation message to be displayed
+* test:: The test script for a package
Rsync Repositories
@@ -146,6 +131,7 @@ Package Functions
* @samp{pkg_isbuilt()}:: Check whether the given package is built
* @samp{pkg_lint()}:: Check whether a package directory fits the standards
* @samp{pkg_find()}:: Query package locations
+* @samp{pkg_get_base()}::
* @samp{pkg_gentree}:: Generate a dependency tree for the given package
@end detailmenu
@@ -211,216 +197,104 @@ system:
-> update Check for updates
@end example
-@menu
-* cpt-alternatives:: List and swap to alternatives
-* cpt-build:: Build a package
-* cpt-checksum:: Generate checksums
-* cpt-download:: Download sources for the given package
-* cpt-install:: Install a package
-* cpt-list:: List installed packages
-* cpt-remove:: Remove a package
-* cpt-search:: Search for a package
-* cpt-update:: Check for updates
-* Global Flags:: Flags that work globally on some cpt utilities
-@end menu
-
-@node cpt-alternatives
-@section cpt-alternatives
-
-You can list and swap to alternatives using @samp{cpt-alternatives}, or
-@samp{cpt a} for short. When run without alternatives, it will list
-alternatives. It can read from standard input if @samp{-} is given as an
-argument.
-
-@strong{Examples}
-
-@enumerate
-@item
-List alternatives.
-@end enumerate
+The documentation of @samp{cpt} aims to keep tool flags and related usage information
+on concise manual pages, while moving the rest of the information to this User
+Manual to avoid unwarranted duplication. To learn more on a specific usage of a
+tool, use the @code{man} program:
@example
-$ cpt-alternatives
-ncurses /usr/bin/clear
-ncurses /usr/bin/reset
+man cpt-build
@end example
-@enumerate
-@item
-Swap to @samp{clear} from @samp{ncurses}.
-@end enumerate
+@node Configuration
+@chapter Configuration
-@example
-$ cpt-alternatives ncurses /usr/bin/clear
--> Swapping '/usr/bin/clear' from 'busybox' to 'ncurses'
-@end example
+The package manager does @strong{NOT} have a configuration file, but there are a
+variety of ways in order to interact with and configure the package manager.
-@enumerate
-@item
-Swap in bulk (all of @samp{sbase}).
-@end enumerate
-
-@example
-$ cpt a | grep ^sbase | cpt a -
-@end example
-
-@node cpt-build
-@section cpt-build
-
-@samp{cpt-build} will build given packages and their dependencies. If multiple
-packages are specified, it will ask to install the packages as well.
-
-@multitable {aaaaaaaaaaaaaa} {aaaaaaaaaaa}
-@headitem Flags
-@tab Explanation
-@item @samp{-t}, @samp{--test}
-@tab Run tests
-@end multitable
-
-@node cpt-checksum
-@section cpt-checksum
-
-@samp{cpt-checksum} will generate a @samp{checksums} file from the package's sources.
-
-@node cpt-download
-@section cpt-download
-
-@samp{cpt-download} will download the sources of a package.
-
-@node cpt-install
-@section cpt-install
-
-@samp{cpt-install} will install given packages.
-
-@node cpt-list
-@section cpt-list
-
-When called without arguments, @samp{cpt-list} will print all installed
-packages. You can add package names as arguments to check whether they are
-installed or not. In success, @samp{cpt-list} will exit with status 0 if all
-given packages are installed, it will return 1 if any of the given packages
-aren't installed.
-
-@multitable {aaaaaaaaaaaaaaaaa} {aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa}
-@headitem Flags
-@tab Explanation
-@item @samp{-c}, @samp{--current}
-@tab Use the current directory as a package
-@end multitable
-
-@node cpt-remove
-@section cpt-remove
-
-@samp{cpt-remove} will remove given packages.
-
-@node cpt-search
-@section cpt-search
-
-@samp{cpt-search} will search for packages, it accepts regular expressions as well.
+@menu
+* CPT Base:: Defining base packages
+* Environment Variables:: Change the behaviour of cpt through environment configuration
+* Hooks:: Use hooks to customize the package manager operations
+* Editing the build file during pre-build:: Modify a package build with your hooks
+@end menu
-@multitable {aaaaaaaaaaaaaaaa} {aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa}
-@headitem Flags
-@tab Explanation
-@item @samp{-s}, @samp{--single}
-@tab Only show the first instance of a package
-@end multitable
+@node CPT Base
+@section CPT Base
+An @samp{/etc/cpt-base} file can be used in order to define the base to the package
+manager. Base packages are the packages that receive special treatment by
+utilities such as @samp{cpt-reset}, and @samp{cpt-orphans}.
@example
-$ cpt-search 'alsa-*'
-/var/db/cpt/repo/extra/alsa-lib
-/var/db/cpt/repo/extra/alsa-utils
-/var/db/cpt/installed/alsa-lib
-/var/db/cpt/installed/alsa-utils
-
-$ cpt-search emacs
-/home/cem/repos/main/community/emacs
-/home/cem/repos/kiss-community/community/emacs
-/var/db/cpt/installed/emacs
-
-$ cpt-search --single emacs
-/home/cem/repos/main/community/emacs
+# This file defines the base packages of the system. You can add or remove
+# package names in order to redefine the base. This file will be used by
+# cpt-orphans and cpt-reset. If this file doesn't exist on /etc/cpt-base, both
+# of the tools will assume that there is no defined base, so use with caution.
+baselayout
+binutils
+byacc
+busybox
+bzip2
+ca-certificates
+curl
+flex
+gcc
+git
+rsync
+gzip
+cpt
+bearssl
+linux-headers
+m4
+make
+musl
+pkgconf
+xz
+zlib
@end example
-@node cpt-update
-@section cpt-update
-
-@samp{cpt-update} will update the packages on your system. It fetches remote
-repositories, and builds, and installs packages that have versions different
-from the ones installed on the system. It doesn't check if the version string
-is actually higher, it only checks whether they differ.
-
-@multitable {aaaaaaaaaaaaaaaaaaaa} {aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa}
-@headitem Flags
-@tab Explanation
-@item @samp{-d}, @samp{--download}
-@tab Only download updatable packages
-@item @samp{-n}, @samp{--no-fetch}
-@tab Do not update remote repositories
-@item @samp{-o}, @samp{--only-fetch}
-@tab Only fetch the repositories and exit
-@end multitable
-
-@node Global Flags
-@section Global Flags
+@node Environment Variables
+@section Environment Variables
-@multitable {aaaaaaaaaaaaaaaaaaa} {aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa}
-@headitem Flags
-@tab Explanation
-@item @samp{-f}, @samp{--force}
-@tab Force operation, @ref{@samp{CPT_FORCE}, , See @samp{CPT_FORCE}}
-@item @samp{-y}, @samp{--no-prompt}
-@tab Do not prompt for confirmation
-@item @samp{-root CPT_ROOT}
-@tab Use an alternate root directory
-@item @samp{-h}, @samp{--help}
-@tab Show this help message
-@item @samp{-v}, @samp{--version}
-@tab Print version information
-@end multitable
+Since there is no configuration file for @samp{cpt}, the package manager is
+configured through environment variables. These can be set per operation, or be
+set to your shell configuration or @samp{~/.profile}. Here are the environment
+variables that alter the behaviour of @samp{cpt}, some of them have separate sections
+to provide detailed information.
-@node Environment Variables
-@chapter Environment Variables
-
-Since there is no configuration file for cpt, the package manager is configured
-through environment variables. These can be set per operation, or be set to your
-shell configuration or @samp{~/.profile}. Here are the environment variables that
-alter the behaviour of @samp{cpt}:
-
-@multitable {aaaaaaaaaaaaaaaaaaaa} {aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa}
-@headitem ENVIRONMENT VARIABLE
-@tab Effects
-@item @samp{CPT_PATH}
-@tab Set the locations of your repositories. It is similar to the @samp{PATH} variable.
-@item @samp{XDG_CACHE_HOME}
-@tab Unless this is set, the @samp{~/.cache} directory will be used instead.
-@item @samp{CPT_CACHE}
-@tab The cache directory for @samp{cpt}. Default: @samp{$XDG_CACHE_HOME/cpt}
-@item @samp{CPT_CHOICE}
-@tab If this is set to 0, a package installation will be aborted on conflicts.
-@item @samp{CPT_COMPRESS}
-@tab Program used to compress package tarballs.
-@item @samp{CPT_DEBUG}
-@tab If set to 1, temporary directories will not be removed after the operation.
-@item @samp{CPT_FETCH}
-@tab If set to 0, @samp{cpt-update} will not fetch repositories.
-@item @samp{CPT_FORCE}
-@tab Force operation.
-@item @samp{CPT_HOOK}
-@tab Location for the hook file.
-@item @samp{CPT_KEEPLOG}
-@tab If set to 1, cpt will keep logs regardless of operation success.
-@item @samp{CPT_PID}
-@tab Set the temporary build directory name.
-@item @samp{CPT_PROMPT}
-@tab If set to 0, @samp{cpt} will not prompt you for anything.
-@item @samp{CPT_ROOT}
-@tab If this variable is set, @samp{cpt} will assume this as the system root.
-@item @samp{CPT_TEST}
-@tab If set to 1, @samp{cpt-build} will run tests whenever available.
-@item @samp{CPT_TMPDIR}
-@tab The directory to create the temporary directories.
-@end multitable
+@table @asis
+@item @code{CPT_PATH}
+Set the locations of your repositories. It is similar to the @code{PATH} variable.
+@item @code{CPT_CACHE}
+The cache directory for @samp{cpt}. Default: @code{$XDG_CACHE_HOME/cpt}.
+@item @code{CPT_CHOICE}
+If this is set to 0, a package installation will be aborted on conflicts.
+@item @code{CPT_COLOR}
+If this is set to 1, @samp{cpt} tools will be forced to display coloured output. If
+set to 0, they will be forced to display them without colours. Otherwise,
+@samp{cpt} will output colour as long as it is outputting to a terminal.
+@item @code{CPT_DEBUG}
+If set to 1, temporary directories will not be removed after the operation.
+@item @code{CPT_FETCH}
+If set to 0, @code{cpt-update} will not fetch repositories.
+@item @code{CPT_FORCE}
+If set to 1, @samp{cpt} tools will force operation.
+@item @code{CPT_HOOK}
+Absolute path to the package manager hook file.
+@item @code{CPT_KEEPLOG}
+If set to 1, @samp{cpt} will keep logs regardless of operation success.
+@item @code{CPT_PID}
+Set the temporary build directory name.
+@item @code{CPT_PROMPT}
+If set to 0, @samp{cpt} will not prompt you for anything.
+@item @code{CPT_ROOT}
+If this variable is set, @samp{cpt} will assume the given path as the system root.
+@item @code{CPT_TEST}
+If set to 1, @code{cpt-build} will run tests whenever available.
+@item @code{CPT_TMPDIR}
+The directory to create the temporary directories.
+@end table
@menu
* @samp{CPT_PATH}:: Set the locations of your repositories
@@ -430,7 +304,7 @@ alter the behaviour of @samp{cpt}:
@end menu
@node @samp{CPT_PATH}
-@section @samp{CPT_PATH}
+@subsection @samp{CPT_PATH}
Similar to the @samp{PATH} variable, @samp{cpt} find repositories from the @samp{CPT_PATH}
variable. Here is an example:
@@ -449,13 +323,10 @@ CPT_PATH=$HOME/repos/overrides:/var/db/cpt/repo/core:/var/db/cpt/repo/extra:$HOM
This example brings us to the next section of this document.
-@menu
-* Repository preferences:: Prioritise package repositories
-* Setting the @samp{CPT_PATH}:: Set the value of CPT_PATH on your shell configuration
-@end menu
+@enumerate
+@item
+Repository preferences
-@node Repository preferences
-@subsection Repository preferences
When you are using multiple repositories from multiple vendors, you will find
out that some repositories have the same packages. @samp{cpt} doesn't care about
@@ -470,8 +341,9 @@ personal repository is listed before the @samp{extra} repository.
CPT_PATH=$HOME/repos/personal:$HOME/repos/carbs/extra
@end example
-@node Setting the @samp{CPT_PATH}
-@subsection Setting the @samp{CPT_PATH}
+@item
+Setting the @samp{CPT_PATH}
+
You can set the @samp{CPT_PATH} variable on your shell configuration or your
@samp{.profile} file in a way that is easy to read.
@@ -487,9 +359,10 @@ CPT_PATH=$CPT_PATH:$HOME/repos/carbs/xorg
CPT_PATH=$CPT_PATH:$HOME/repos/personal
export CPT_PATH
@end example
+@end enumerate
@node @samp{CPT_COMPRESS}
-@section @samp{CPT_COMPRESS}
+@subsection @samp{CPT_COMPRESS}
When setting the @samp{CPT_COMPRESS} value, you should set the name of the default
suffixes for the program. Available values are:
@@ -503,12 +376,14 @@ suffixes for the program. Available values are:
@samp{bz2}
@item
@samp{xz}
+@item
+@samp{lz}
@end itemize
Defaults to @samp{gz}.
@node @samp{CPT_FORCE}
-@section @samp{CPT_FORCE}
+@subsection @samp{CPT_FORCE}
If this is set to 1, some of the @samp{cpt} tools will continue regardless of
errors or skip certain checks. Here are some examples:
@@ -526,7 +401,7 @@ depend on the current package.
Defaults to 0.
@node @samp{CPT_PID}
-@section @samp{CPT_PID}
+@subsection @samp{CPT_PID}
If this variable is set, the temporary files will be created with this variable
as the suffix, instead of the PID of the @samp{cpt} process. The advantage is that
@@ -542,7 +417,7 @@ By running the above, you will know that the created build directories will end
with the @samp{*-mesa} suffix.
@node Hooks
-@chapter Hooks
+@section Hooks
Hooks can be used in order to change the runtime behaviour of the package manager.
There are a variety of package hooks, mostly self explanatory:
@@ -591,12 +466,8 @@ The hook is given 3 variables when it is executed. Those are:
@tab The destination of the operation. Can be null.
@end multitable
-@menu
-* Editing the @samp{build} file during pre-build:: Modify a package build with your hooks
-@end menu
-
-@node Editing the @samp{build} file during pre-build
-@section Editing the @samp{build} file during pre-build
+@node Editing the build file during pre-build
+@section Editing the build file during pre-build
You can edit the @samp{build} file during pre-build. The file is copied from the
repository to the build directory named as @samp{.build.cpt}. You can use @samp{sed} or
@@ -631,45 +502,28 @@ EOF
@node Packaging System
@chapter Packaging System
-A package is formed of several files, these are:
-
-@itemize
-@item
-@ref{@samp{build}}
-@item
-@ref{@samp{sources}}
-@item
-@ref{@samp{checksums}}
-@item
-@ref{@samp{version}}
-@item
-@ref{@samp{depends}}
-@item
-@ref{@samp{post-install}}
-@item
-@ref{@samp{message}}
-@item
-@ref{@samp{test}}
-@end itemize
+A package is formed of several files, from these files, only @code{build},
+@code{checksums}, and @code{version} files are mandatory.
-Any other file can be added to the package directory at the discretion of the
-package maintainer. Everything in the package directory will also be added to the
-package database that is located on @samp{/var/db/cpt/installed}. These can be
-patches, configuration files, etc.
+This section talks about files that are interpreted specially by the package
+manager. Any other file can be added to the package directory at the discretion
+of the package maintainer. Everything in the package directory will also be
+added to the package database that is located on @samp{/var/db/cpt/installed}. These
+can be patches, configuration files, etc.
@menu
-* @samp{build}:: The build script
-* @samp{sources}:: The file containing package sources
-* @samp{checksums}:: The file containing sha256sum of the sources
-* @samp{version}:: The file containing the version and the release numbers of a package
-* @samp{depends}:: The file containing the dependencies of a package
-* @samp{post-install}:: The post-installation script
-* @samp{message}:: The post-installation message to be displayed
-* @samp{test}:: The test script for a package
+* build:: The build script
+* sources:: The file containing package sources
+* checksums:: The file containing sha256sum of the sources
+* version:: The file containing the version and the release numbers of a package
+* depends:: The file containing the dependencies of a package
+* post-install:: The post-installation script
+* message:: The post-installation message to be displayed
+* test:: The test script for a package
@end menu
-@node @samp{build}
-@section @samp{build}
+@node build
+@section build
Typically @samp{build} files are shell scripts that run commands to prepare the source
code to be installed on the target system. Even though we will be assuming that
@@ -694,8 +548,8 @@ Package version
System architecture
@end itemize
-@node @samp{sources}
-@section @samp{sources}
+@node sources
+@section sources
@samp{sources} file is a list of files and sources that will be put to the build
directory during the build process. Those can be remote sources (such as tarballs),
@@ -735,16 +589,16 @@ will checkout the commit named "1a314s87"
Other files are assumed to be residing in the package directory. They should be
added with their paths relative to the package directory.
-@node @samp{checksums}
-@section @samp{checksums}
+@node checksums
+@section checksums
-checksums file is generated by the @samp{cpt c pkg} command. It is generated
+@samp{checksums} file is generated by the @code{cpt c pkg} command. It is generated
according to the order of the sources file. That's why you shouldn't be editing
it manually. The checksums file is created with the digests of the files using
the sha256 algorithm.
-@node @samp{version}
-@section @samp{version}
+@node version
+@section version
The version file includes the version of the software and the release number of
of the package on a space seperated format. The contents of the file should look
@@ -754,8 +608,8 @@ like below.
1.3.2 1
@end example
-@node @samp{depends}
-@section @samp{depends}
+@node depends
+@section depends
This is a list of dependencies that must be installed before a package build. You
can append "make" after a dependency to mark a package is only required during
@@ -771,21 +625,21 @@ python test
zlib
@end example
-@node @samp{post-install}
-@section @samp{post-install}
+@node post-install
+@section post-install
@samp{post-install} files have the same requirements as the build script. They
will be run after the package is installed as root (or as the user if the user
has write permissions on @samp{CPT_ROOT}).
-@node @samp{message}
-@section @samp{message}
+@node message
+@section message
This plaintext file will be outputted with @samp{cat} after every package is
installed.
-@node @samp{test}
-@section @samp{test}
+@node test
+@section test
Test files are mainly for the repository maintainer to test the packages, and
will only run if the user has the @samp{CPT_TEST} variable set, or the build is
@@ -893,6 +747,49 @@ Create a service file at @samp{/etc/sv/rsync/run} (runit):
exec rsync --daemon --no-detach
@end example
+@node Comparison Between CPT and KISS
+@chapter Comparison Between CPT and KISS
+
+Lots of things have changed since @code{cpt} was forked from @code{kiss} in terms of
+functionalities and ideals. This section aims to describe the similarities and
+differences of both package managers as neutral as possible. Keep in mind that
+this is the @code{cpt} documentation, so it may be biased regardless.
+
+@table @asis
+@item Package Manager
+While @code{kiss} aims to be a simple single file package manager, @code{cpt} aims to be
+an extendable package manager library. @code{kiss} has all of its features
+built-in, while @code{cpt} has all of its features separated into small tools.
+These tools can be called from the main @code{cpt} tool (in order to keep
+@code{kiss}-like usage) or with their names directly (e.g @code{cpt-build}).
+
+@item Configuration
+Neither @code{kiss} nor @code{cpt} use configuration files. Instead, they are configured
+through environment variables. Additionally, all @code{cpt} tools can receive flags
+that alter their functionality. @code{kiss} does not accept flags.
+
+@item Package Repositories
+In addition to git repositories, @code{cpt} also makes use of @ref{Rsync Repositories, , rsync repositories}.
+
+@item Package Sources
+In addition to git repositories for sources, @code{cpt} also supports mercurial
+repositories.
+
+@item Post-Installation Messages
+@code{kiss} and @code{cpt} interact with @samp{post-install} messages differently. @code{kiss}
+does not differentiate between post-installation scripts and post-installation
+messages, and will save the output of all scripts named @samp{post-install} to be
+printed after the installation of all packages are complete. @code{cpt} on the
+other hand, separates these with the @samp{message} file. @code{cpt} runs @samp{post-install}
+without saving the output to be printed a second time. It instead prints all
+@samp{message} files after the installation is over.
+
+@item Portability
+@code{kiss} aims to be as portable as possible. @code{cpt} aims to be portable, but
+favours performance. @code{cpt} depends on @code{rsync} for package installation, while
+@code{kiss} has removed the dependency in favour of portability.
+@end table
+
@node CPT Library
@chapter CPT Library
@@ -928,8 +825,8 @@ variables that are used inside the package manager.
@section Option parsing
@samp{cpt-lib} includes a POSIX-shell option parser inside named @samp{getoptions}. You
-can see its own @uref{https://github.com/ko1nksm/getoptions/blob/v2.0.1/README.md, documentation} for writing an option parser. The built-in version
-of the @samp{getoptions} library is 2.0.1 and there are no plans for updating it
+can see its own @uref{https://github.com/ko1nksm/getoptions/blob/v2.5.0/README.md, documentation} for writing an option parser. The built-in version
+of the @samp{getoptions} library is 2.5.0 and there are no plans for updating it
apart from bug fixes.
@menu
@@ -953,8 +850,8 @@ inside. Here is the proper way of doing it.
parser_definition() @{
# The rest arguments MUST be defined as 'REST'
- setup REST help:usage -- "usage: $@{0##*/@} [options] [pkg...]"
- msg -- '' 'Options:'
+ setup REST help:usage -- "usage: $@{0##*/@} [options] [pkg...]"
+ msg -- '' 'Options:'
flag CPT_TEST -t export:1 init:@@export -- "Enable tests"
global_options
@@ -969,24 +866,24 @@ parser_definition() @{
The @samp{global_options()} function is a simple convenience call to include flags
that can be used inside most @samp{cpt} tools. It defines the following flags:
-@multitable {aaaa} {aaaaaaaaaaa} {aaaaaaaaaaaa}
+@multitable {aaaa} {aaaaaaaaaaaaa} {aaaaaaaaaaaa}
@headitem Flag
@tab Long Option
@tab Calls
-@item -f
-@tab --force
+@item @code{-f}
+@tab @code{--force}
@tab @samp{CPT_FORCE}
-@item -y
-@tab --no-prompt
+@item @code{-y}
+@tab @code{--no-prompt}
@tab @samp{CPT_PROMPT}
@item
-@tab --root
+@tab @code{--root}
@tab @samp{CPT_ROOT}
-@item -h
-@tab --help
+@item @code{-h}
+@tab @code{--help}
@tab @samp{usage()}
-@item -v
-@tab --version
+@item @code{-v}
+@tab @code{--version}
@tab @samp{version()}
@end multitable
@@ -1165,7 +1062,7 @@ This function was taken from @uref{https://github.com/ko1nksm/readlinkf, POSIX s
symbolic links until it reaches the actual file.
@node System Functions
-@section @strong{TODO} System Functions
+@section System Functions
@itemize
@item
@@ -1196,7 +1093,7 @@ following order:
@end enumerate
@node Package Functions
-@section @strong{TODO} Package Functions
+@section Package Functions
Obviously, package functions are the most important ones for @samp{cpt-lib}, those
are the ones you will use to build, to query, to manipulate, or to otherwise
@@ -1207,6 +1104,7 @@ interact with packages.
* @samp{pkg_isbuilt()}:: Check whether the given package is built
* @samp{pkg_lint()}:: Check whether a package directory fits the standards
* @samp{pkg_find()}:: Query package locations
+* @samp{pkg_get_base()}::
* @samp{pkg_gentree}:: Generate a dependency tree for the given package
@end menu
@@ -1243,7 +1141,7 @@ specification. This function @strong{does not return with failure, it exits outr
if it fails.
@node @samp{pkg_find()}
-@subsection @strong{TODO} @samp{pkg_find()}
+@subsection @samp{pkg_find()}
@samp{pkg_find()} is the tool for searching packages. It accepts up to 3 arguments.
@@ -1264,8 +1162,13 @@ this argument is given, it defaults to @samp{-d}, which tests for directories.
pkg_find cpt
@end example
+@node @samp{pkg_get_base()}
+@subsection @samp{pkg_get_base()}
+
+This function returns the base packages as defined in @samp{/etc/cpt-base}.
+
@node @samp{pkg_gentree}
-@subsection @strong{TODO} @samp{pkg_gentree}
+@subsection @samp{pkg_gentree}
Keep in mind /etc/cpt-base
diff --git a/docs/cpt.txt b/docs/cpt.txt
index 48c954d..aec19d1 100644
--- a/docs/cpt.txt
+++ b/docs/cpt.txt
@@ -7,45 +7,33 @@
_______________________
- February 04, 2021
-
-
Table of Contents
_________________
1. Copying
2. Preface
3. Usage
-.. 1. cpt-alternatives
-.. 2. cpt-build
-.. 3. cpt-checksum
-.. 4. cpt-download
-.. 5. cpt-install
-.. 6. cpt-list
-.. 7. cpt-remove
-.. 8. cpt-search
-.. 9. cpt-update
-.. 10. Global Flags
-4. Environment Variables
-.. 1. `CPT_PATH'
-..... 1. Repository preferences
-..... 2. Setting the `CPT_PATH'
-.. 2. `CPT_COMPRESS'
-.. 3. `CPT_FORCE'
-.. 4. `CPT_PID'
-5. Hooks
-.. 1. Editing the `build' file during pre-build
-6. Packaging System
-.. 1. `build'
-.. 2. `sources'
-.. 3. `checksums'
-.. 4. `version'
-.. 5. `depends'
-.. 6. `post-install'
-.. 7. `message'
-.. 8. `test'
-7. Rsync Repositories
+4. Configuration
+.. 1. CPT Base
+.. 2. Environment Variables
+..... 1. `CPT_PATH'
+..... 2. `CPT_COMPRESS'
+..... 3. `CPT_FORCE'
+..... 4. `CPT_PID'
+.. 3. Hooks
+.. 4. Editing the build file during pre-build
+5. Packaging System
+.. 1. build
+.. 2. sources
+.. 3. checksums
+.. 4. version
+.. 5. depends
+.. 6. post-install
+.. 7. message
+.. 8. test
+6. Rsync Repositories
.. 1. Setting up an Rsync repository
+7. Comparison Between CPT and KISS
8. CPT Library
.. 1. Calling the library
.. 2. Option parsing
@@ -66,14 +54,15 @@ _________________
..... 1. `_seq()'
..... 2. `_stat()'
..... 3. `_readlinkf()'
-.. 6. TODO System Functions
+.. 6. System Functions
..... 1. `as_root()'
-.. 7. TODO Package Functions
+.. 7. Package Functions
..... 1. `pkg_owner()'
..... 2. `pkg_isbuilt()'
..... 3. `pkg_lint()'
-..... 4. TODO `pkg_find()'
-..... 5. TODO `pkg_gentree'
+..... 4. `pkg_find()'
+..... 5. `pkg_get_base()'
+..... 6. `pkg_gentree'
This is a reference document containing both the user-guide and the
@@ -87,7 +76,7 @@ development manual for *Carbs Packaging Tools*. For development logs see
1 Copying
=========
- Copyright (c) 2020 Cem Keylan
+ Copyright (c) 2020-2021 Cem Keylan
Permission is granted to copy, distribute and/or modify
this document under the terms of the GNU Free
@@ -163,178 +152,109 @@ development manual for *Carbs Packaging Tools*. For development logs see
| -> update Check for updates
`----
-
-3.1 cpt-alternatives
-~~~~~~~~~~~~~~~~~~~~
-
- You can list and swap to alternatives using `cpt-alternatives', or
- `cpt a' for short. When run without alternatives, it will list
- alternatives. It can read from standard input if `-' is given as an
- argument.
-
- *Examples*
-
- 1. List alternatives.
-
- ,----
- | $ cpt-alternatives
- | ncurses /usr/bin/clear
- | ncurses /usr/bin/reset
- `----
-
- 1. Swap to `clear' from `ncurses'.
+ The documentation of `cpt' aims to keep tool flags and related usage
+ information on concise manual pages, while moving the rest of the
+ information to this User Manual to avoid unwarranted duplication. To
+ learn more on a specific usage of a tool, use the `man' program:
,----
- | $ cpt-alternatives ncurses /usr/bin/clear
- | -> Swapping '/usr/bin/clear' from 'busybox' to 'ncurses'
+ | man cpt-build
`----
- 1. Swap in bulk (all of `sbase').
-
- ,----
- | $ cpt a | grep ^sbase | cpt a -
- `----
-
-
-3.2 cpt-build
-~~~~~~~~~~~~~
-
- `cpt-build' will build given packages and their dependencies. If
- multiple packages are specified, it will ask to install the packages
- as well.
-
- Flags Explanation
- -----------------------------
- `-t', `--test' Run tests
-
-
-3.3 cpt-checksum
-~~~~~~~~~~~~~~~~
-
- `cpt-checksum' will generate a `checksums' file from the package's
- sources.
+4 Configuration
+===============
-3.4 cpt-download
-~~~~~~~~~~~~~~~~
-
- `cpt-download' will download the sources of a package.
-
+ The package manager does *NOT* have a configuration file, but there
+ are a variety of ways in order to interact with and configure the
+ package manager.
-3.5 cpt-install
-~~~~~~~~~~~~~~~
- `cpt-install' will install given packages.
-
-
-3.6 cpt-list
+4.1 CPT Base
~~~~~~~~~~~~
- When called without arguments, `cpt-list' will print all installed
- packages. You can add package names as arguments to check whether they
- are installed or not. In success, `cpt-list' will exit with status 0
- if all given packages are installed, it will return 1 if any of the
- given packages aren't installed.
-
- Flags Explanation
- -----------------------------------------------------------
- `-c', `--current' Use the current directory as a package
-
-
-3.7 cpt-remove
-~~~~~~~~~~~~~~
-
- `cpt-remove' will remove given packages.
-
-
-3.8 cpt-search
-~~~~~~~~~~~~~~
-
- `cpt-search' will search for packages, it accepts regular expressions
- as well.
-
- Flags Explanation
- -------------------------------------------------------------
- `-s', `--single' Only show the first instance of a package
-
+ An `/etc/cpt-base' file can be used in order to define the base to the
+ package manager. Base packages are the packages that receive special
+ treatment by utilities such as `cpt-reset', and `cpt-orphans'.
,----
- | $ cpt-search 'alsa-*'
- | /var/db/cpt/repo/extra/alsa-lib
- | /var/db/cpt/repo/extra/alsa-utils
- | /var/db/cpt/installed/alsa-lib
- | /var/db/cpt/installed/alsa-utils
- |
- | $ cpt-search emacs
- | /home/cem/repos/main/community/emacs
- | /home/cem/repos/kiss-community/community/emacs
- | /var/db/cpt/installed/emacs
- |
- | $ cpt-search --single emacs
- | /home/cem/repos/main/community/emacs
+ | # This file defines the base packages of the system. You can add or remove
+ | # package names in order to redefine the base. This file will be used by
+ | # cpt-orphans and cpt-reset. If this file doesn't exist on /etc/cpt-base, both
+ | # of the tools will assume that there is no defined base, so use with caution.
+ | baselayout
+ | binutils
+ | byacc
+ | busybox
+ | bzip2
+ | ca-certificates
+ | curl
+ | flex
+ | gcc
+ | git
+ | rsync
+ | gzip
+ | cpt
+ | bearssl
+ | linux-headers
+ | m4
+ | make
+ | musl
+ | pkgconf
+ | xz
+ | zlib
`----
-3.9 cpt-update
-~~~~~~~~~~~~~~
-
- `cpt-update' will update the packages on your system. It fetches
- remote repositories, and builds, and installs packages that have
- versions different from the ones installed on the system. It doesn't
- check if the version string is actually higher, it only checks whether
- they differ.
-
- Flags Explanation
- ------------------------------------------------------------
- `-d', `--download' Only download updatable packages
- `-n', `--no-fetch' Do not update remote repositories
- `-o', `--only-fetch' Only fetch the repositories and exit
-
-
-3.10 Global Flags
-~~~~~~~~~~~~~~~~~
-
- Flags Explanation
- ---------------------------------------------------------
- `-f', `--force' Force operation, [See `CPT_FORCE']
- `-y', `--no-prompt' Do not prompt for confirmation
- `-root CPT_ROOT' Use an alternate root directory
- `-h', `--help' Show this help message
- `-v', `--version' Print version information
-
-
-[See `CPT_FORCE'] See section 4.3
-
-
-4 Environment Variables
-=======================
+4.2 Environment Variables
+~~~~~~~~~~~~~~~~~~~~~~~~~
- Since there is no configuration file for cpt, the package manager is
+ Since there is no configuration file for `cpt', the package manager is
configured through environment variables. These can be set per
operation, or be set to your shell configuration or `~/.profile'. Here
- are the environment variables that alter the behaviour of `cpt':
-
- ENVIRONMENT VARIABLE Effects
- -----------------------------------------------------------------------------------------------------
- `CPT_PATH' Set the locations of your repositories. It is similar to the `PATH' variable.
- `XDG_CACHE_HOME' Unless this is set, the `~/.cache' directory will be used instead.
- `CPT_CACHE' The cache directory for `cpt'. Default: `$XDG_CACHE_HOME/cpt'
- `CPT_CHOICE' If this is set to 0, a package installation will be aborted on conflicts.
- `CPT_COMPRESS' Program used to compress package tarballs.
- `CPT_DEBUG' If set to 1, temporary directories will not be removed after the operation.
- `CPT_FETCH' If set to 0, `cpt-update' will not fetch repositories.
- `CPT_FORCE' Force operation.
- `CPT_HOOK' Location for the hook file.
- `CPT_KEEPLOG' If set to 1, cpt will keep logs regardless of operation success.
- `CPT_PID' Set the temporary build directory name.
- `CPT_PROMPT' If set to 0, `cpt' will not prompt you for anything.
- `CPT_ROOT' If this variable is set, `cpt' will assume this as the system root.
- `CPT_TEST' If set to 1, `cpt-build' will run tests whenever available.
- `CPT_TMPDIR' The directory to create the temporary directories.
-
-
-4.1 `CPT_PATH'
-~~~~~~~~~~~~~~
+ are the environment variables that alter the behaviour of `cpt', some
+ of them have separate sections to provide detailed information.
+
+ `CPT_PATH'
+ Set the locations of your repositories. It is similar to the
+ `PATH' variable.
+ `CPT_CACHE'
+ The cache directory for `cpt'. Default: `$XDG_CACHE_HOME/cpt'.
+ `CPT_CHOICE'
+ If this is set to 0, a package installation will be aborted on
+ conflicts.
+ `CPT_COLOR'
+ If this is set to 1, `cpt' tools will be forced to display
+ coloured output. If set to 0, they will be forced to display
+ them without colours. Otherwise, `cpt' will output colour as
+ long as it is outputting to a terminal.
+ `CPT_DEBUG'
+ If set to 1, temporary directories will not be removed after the
+ operation.
+ `CPT_FETCH'
+ If set to 0, `cpt-update' will not fetch repositories.
+ `CPT_FORCE'
+ If set to 1, `cpt' tools will force operation.
+ `CPT_HOOK'
+ Absolute path to the package manager hook file.
+ `CPT_KEEPLOG'
+ If set to 1, `cpt' will keep logs regardless of operation
+ success.
+ `CPT_PID'
+ Set the temporary build directory name.
+ `CPT_PROMPT'
+ If set to 0, `cpt' will not prompt you for anything.
+ `CPT_ROOT'
+ If this variable is set, `cpt' will assume the given path as the
+ system root.
+ `CPT_TEST'
+ If set to 1, `cpt-build' will run tests whenever available.
+ `CPT_TMPDIR'
+ The directory to create the temporary directories.
+
+
+4.2.1 `CPT_PATH'
+----------------
Similar to the `PATH' variable, `cpt' find repositories from the
`CPT_PATH' variable. Here is an example:
@@ -354,8 +274,7 @@ development manual for *Carbs Packaging Tools*. For development logs see
This example brings us to the next section of this document.
-4.1.1 Repository preferences
-----------------------------
+* 4.2.1.1 Repository preferences
When you are using multiple repositories from multiple vendors, you
will find out that some repositories have the same packages. `cpt'
@@ -372,8 +291,7 @@ development manual for *Carbs Packaging Tools*. For development logs see
`----
-4.1.2 Setting the `CPT_PATH'
-----------------------------
+* 4.2.1.2 Setting the `CPT_PATH'
You can set the `CPT_PATH' variable on your shell configuration or
your `.profile' file in a way that is easy to read.
@@ -391,8 +309,8 @@ development manual for *Carbs Packaging Tools*. For development logs see
`----
-4.2 `CPT_COMPRESS'
-~~~~~~~~~~~~~~~~~~
+4.2.2 `CPT_COMPRESS'
+--------------------
When setting the `CPT_COMPRESS' value, you should set the name of the
default suffixes for the program. Available values are:
@@ -401,12 +319,13 @@ development manual for *Carbs Packaging Tools*. For development logs see
- `zst'
- `bz2'
- `xz'
+ - `lz'
Defaults to `gz'.
-4.3 `CPT_FORCE'
-~~~~~~~~~~~~~~~
+4.2.3 `CPT_FORCE'
+-----------------
If this is set to 1, some of the `cpt' tools will continue regardless
of errors or skip certain checks. Here are some examples:
@@ -420,8 +339,8 @@ development manual for *Carbs Packaging Tools*. For development logs see
Defaults to 0.
-4.4 `CPT_PID'
-~~~~~~~~~~~~~
+4.2.4 `CPT_PID'
+---------------
If this variable is set, the temporary files will be created with this
variable as the suffix, instead of the PID of the `cpt' process. The
@@ -438,8 +357,8 @@ development manual for *Carbs Packaging Tools*. For development logs see
will end with the `*-mesa' suffix.
-5 Hooks
-=======
+4.3 Hooks
+~~~~~~~~~
Hooks can be used in order to change the runtime behaviour of the
package manager. There are a variety of package hooks, mostly self
@@ -471,8 +390,8 @@ development manual for *Carbs Packaging Tools*. For development logs see
`$DEST' The destination of the operation. Can be null.
-5.1 Editing the `build' file during pre-build
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+4.4 Editing the build file during pre-build
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
You can edit the `build' file during pre-build. The file is copied
from the repository to the build directory named as `.build.cpt'. You
@@ -506,29 +425,22 @@ development manual for *Carbs Packaging Tools*. For development logs see
`----
-6 Packaging System
+5 Packaging System
==================
- A package is formed of several files, these are:
-
- - 6.1
- - 6.2
- - 6.3
- - 6.4
- - 6.5
- - 6.6
- - 6.7
- - 6.8
-
- Any other file can be added to the package directory at the discretion
- of the package maintainer. Everything in the package directory will
- also be added to the package database that is located on
- `/var/db/cpt/installed'. These can be patches, configuration files,
+ A package is formed of several files, from these files, only `build',
+ `checksums', and `version' files are mandatory.
+
+ This section talks about files that are interpreted specially by the
+ package manager. Any other file can be added to the package directory
+ at the discretion of the package maintainer. Everything in the package
+ directory will also be added to the package database that is located
+ on `/var/db/cpt/installed'. These can be patches, configuration files,
etc.
-6.1 `build'
-~~~~~~~~~~~
+5.1 build
+~~~~~~~~~
Typically `build' files are shell scripts that run commands to prepare
the source code to be installed on the target system. Even though we
@@ -550,8 +462,8 @@ development manual for *Carbs Packaging Tools*. For development logs see
- System architecture
-6.2 `sources'
-~~~~~~~~~~~~~
+5.2 sources
+~~~~~~~~~~~
`sources' file is a list of files and sources that will be put to the
build directory during the build process. Those can be remote sources
@@ -593,17 +505,17 @@ development manual for *Carbs Packaging Tools*. For development logs see
should be added with their paths relative to the package directory.
-6.3 `checksums'
-~~~~~~~~~~~~~~~
+5.3 checksums
+~~~~~~~~~~~~~
- checksums file is generated by the `cpt c pkg' command. It is
+ `checksums' file is generated by the `cpt c pkg' command. It is
generated according to the order of the sources file. That's why you
shouldn't be editing it manually. The checksums file is created with
the digests of the files using the sha256 algorithm.
-6.4 `version'
-~~~~~~~~~~~~~
+5.4 version
+~~~~~~~~~~~
The version file includes the version of the software and the release
number of of the package on a space seperated format. The contents of
@@ -614,8 +526,8 @@ development manual for *Carbs Packaging Tools*. For development logs see
`----
-6.5 `depends'
-~~~~~~~~~~~~~
+5.5 depends
+~~~~~~~~~~~
This is a list of dependencies that must be installed before a package
build. You can append "make" after a dependency to mark a package is
@@ -633,23 +545,23 @@ development manual for *Carbs Packaging Tools*. For development logs see
`----
-6.6 `post-install'
-~~~~~~~~~~~~~~~~~~
+5.6 post-install
+~~~~~~~~~~~~~~~~
`post-install' files have the same requirements as the build
script. They will be run after the package is installed as root (or as
the user if the user has write permissions on `CPT_ROOT').
-6.7 `message'
-~~~~~~~~~~~~~
+5.7 message
+~~~~~~~~~~~
This plaintext file will be outputted with `cat' after every package
is installed.
-6.8 `test'
-~~~~~~~~~~
+5.8 test
+~~~~~~~~
Test files are mainly for the repository maintainer to test the
packages, and will only run if the user has the `CPT_TEST' variable
@@ -658,7 +570,7 @@ development manual for *Carbs Packaging Tools*. For development logs see
script is finished.
-7 Rsync Repositories
+6 Rsync Repositories
====================
Rsync repositories are simple to serve and simple to use. In the
@@ -708,7 +620,7 @@ development manual for *Carbs Packaging Tools*. For development logs see
fetch accordingly.
-7.1 Setting up an Rsync repository
+6.1 Setting up an Rsync repository
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Carbs Linux repositories automatically sync from the git repostitories
@@ -762,6 +674,58 @@ development manual for *Carbs Packaging Tools*. For development logs see
`----
+7 Comparison Between CPT and KISS
+=================================
+
+ Lots of things have changed since `cpt' was forked from `kiss' in
+ terms of functionalities and ideals. This section aims to describe the
+ similarities and differences of both package managers as neutral as
+ possible. Keep in mind that this is the `cpt' documentation, so it may
+ be biased regardless.
+
+ Package Manager
+ While `kiss' aims to be a simple single file package manager,
+ `cpt' aims to be an extendable package manager library. `kiss'
+ has all of its features built-in, while `cpt' has all of its
+ features separated into small tools. These tools can be called
+ from the main `cpt' tool (in order to keep `kiss'-like usage) or
+ with their names directly (e.g `cpt-build').
+
+ Configuration
+ Neither `kiss' nor `cpt' use configuration files. Instead, they
+ are configured through environment variables. Additionally, all
+ `cpt' tools can receive flags that alter their
+ functionality. `kiss' does not accept flags.
+
+ Package Repositories
+ In addition to git repositories, `cpt' also makes use of [rsync
+ repositories].
+
+ Package Sources
+ In addition to git repositories for sources, `cpt' also supports
+ mercurial repositories.
+
+ Post-Installation Messages
+ `kiss' and `cpt' interact with `post-install' messages
+ differently. `kiss' does not differentiate between
+ post-installation scripts and post-installation messages, and
+ will save the output of all scripts named `post-install' to be
+ printed after the installation of all packages are
+ complete. `cpt' on the other hand, separates these with the
+ `message' file. `cpt' runs `post-install' without saving the
+ output to be printed a second time. It instead prints all
+ `message' files after the installation is over.
+
+ Portability
+ `kiss' aims to be as portable as possible. `cpt' aims to be
+ portable, but favours performance. `cpt' depends on `rsync' for
+ package installation, while `kiss' has removed the dependency in
+ favour of portability.
+
+
+[rsync repositories] See section 6
+
+
8 CPT Library
=============
@@ -791,11 +755,11 @@ development manual for *Carbs Packaging Tools*. For development logs see
`cpt-lib' includes a POSIX-shell option parser inside named
`getoptions'. You can see its own [documentation] for writing an
option parser. The built-in version of the `getoptions' library is
- 2.0.1 and there are no plans for updating it apart from bug fixes.
+ 2.5.0 and there are no plans for updating it apart from bug fixes.
[documentation]
-<https://github.com/ko1nksm/getoptions/blob/v2.0.1/README.md>
+<https://github.com/ko1nksm/getoptions/blob/v2.5.0/README.md>
8.2.1 Defining a parser
-----------------------
@@ -813,8 +777,8 @@ development manual for *Carbs Packaging Tools*. For development logs see
|
| parser_definition() {
| # The rest arguments MUST be defined as 'REST'
- | setup REST help:usage -- "usage: ${0##*/} [options] [pkg...]"
- | msg -- '' 'Options:'
+ | setup REST help:usage -- "usage: ${0##*/} [options] [pkg...]"
+ | msg -- '' 'Options:'
| flag CPT_TEST -t export:1 init:@export -- "Enable tests"
|
| global_options
@@ -831,13 +795,13 @@ development manual for *Carbs Packaging Tools*. For development logs see
include flags that can be used inside most `cpt' tools. It defines the
following flags:
- Flag Long Option Calls
- ---------------------------------
- -f --force `CPT_FORCE'
- -y --no-prompt `CPT_PROMPT'
- --root `CPT_ROOT'
- -h --help `usage()'
- -v --version `version()'
+ Flag Long Option Calls
+ -----------------------------------
+ `-f' `--force' `CPT_FORCE'
+ `-y' `--no-prompt' `CPT_PROMPT'
+ `--root' `CPT_ROOT'
+ `-h' `--help' `usage()'
+ `-v' `--version' `version()'
8.3 Message functions
@@ -1015,8 +979,8 @@ development manual for *Carbs Packaging Tools*. For development logs see
<https://github.com/ko1nksm/readlinkf>
-8.6 TODO System Functions
-~~~~~~~~~~~~~~~~~~~~~~~~~
+8.6 System Functions
+~~~~~~~~~~~~~~~~~~~~
- [ ] Add description
@@ -1035,8 +999,8 @@ development manual for *Carbs Packaging Tools*. For development logs see
4. `su'
-8.7 TODO Package Functions
-~~~~~~~~~~~~~~~~~~~~~~~~~~
+8.7 Package Functions
+~~~~~~~~~~~~~~~~~~~~~
Obviously, package functions are the most important ones for
`cpt-lib', those are the ones you will use to build, to query, to
@@ -1080,8 +1044,8 @@ development manual for *Carbs Packaging Tools*. For development logs see
outright* if it fails.
-8.7.4 TODO `pkg_find()'
------------------------
+8.7.4 `pkg_find()'
+------------------
`pkg_find()' is the tool for searching packages. It accepts up to 3
arguments.
@@ -1103,7 +1067,13 @@ development manual for *Carbs Packaging Tools*. For development logs see
`----
-8.7.5 TODO `pkg_gentree'
-------------------------
+8.7.5 `pkg_get_base()'
+----------------------
+
+ This function returns the base packages as defined in `/etc/cpt-base'.
+
+
+8.7.6 `pkg_gentree'
+-------------------
Keep in mind /etc/cpt-base