qi: Bump to release 2.4
[dragora.git] / qi / NEWS
blobec505b04d3fb2740875687e6bdf2f4853fac6e33
1 2021-04-12  Matias Fonzo  <selk@dragora.org>
3     * Version 2.4 released.
5     * recipes: Added the variable "QICPPFLAGS" to pass the C/C++
6       preprocessor flags to the environment variable "CPPFLAGS".
8     * recipes: Added the "docs" and "docsdir" variables to be unset
9       after processing a recipe.
11     * recipes: Added support for executing other defined functions
12       besides the main build() function.
14     * recipes: Include build flags only if it is a real architecture
15       when creating a package meta.
17     * Change default values for QICFLAGS, QICXXFLAGS from "-g0 -O2" to
18       just "-O2".  Including default value for LDFLAGS from "-s" to
19       just "" (none).  This is to provide more generic values in the
20       package manager distribution.
22     * The documentation is in line with the changes made, plus the
23       sample recipes have been updated.
25     * Minor changes.
27 2020-12-25  Matias Fonzo  <selk@dragora.org>
29     * Version 2.3 released.
31     * doc: The general documentation of Qi has been divided to allow its
32       inclusion from other .texi files.  This does not affect the internal
33       functioning of Qi or the reading of the documentation for the user,
34       but rather it prepares for the incoming Dragora Handbook (Dragora is
35       the project from which Qi is currently developed).
37     * Minor changes.
39 2020-11-09  Matias Fonzo  <selk@dragora.org>
41     * Version 2.2 released.
43     * Get the absolute path name to compose the current working directory
44       when build.  A bug introduced in qi-2.0.
46     * The readconfig() function has been simplified.
48 2020-09-07  Matias Fonzo  <selk@dragora.org>
50     * Version 2.1 released.
52     * Make the code for searching previous packages in an upgrade work again
53       (bug introduced in previous version).
55     * Minor changes.
57 2020-08-22  Matias Fonzo  <selk@dragora.org>
59     * Version 2.0 released.
61     * The user interface has been revised to better differenciate commands
62       and options, for example: `qi install` instead of `qi -i`, `qi remove`
63       instead of `qi -d`, `qi upgrade` instead of `qi -u`, `qi build`
64       instead of `qi -b`, and so on.
66     * The layout of the produced package names has been changed to better
67       differenciate the software name and its version.
69       Before: name-version-architecture-release[@pkgcategory].tlz
70       Now:    name_version_architecture-release[@pkgcategory].tlz
72     * The verbosity level has been changed to a minimal but essential result,
73       while it can now be adjusted from the configuration file.
75     * configure: The --arch= option has been added to define the default
76       package architecture.
78     * install: Fix assignation of 'rootdir' when it is empty and it
79       relies on the value of 'targetdir' when runs a post-install script
80       from subshell.
82     * doc: Fix examples for 'rootdir' since the package directory and
83       the target directory are relative to the specified root directory.
85     * recipes: Add the special variable 'keep_destdir' to complement
86       'keep_srcdir' in order to preserve 'destdir' when using build command.
88     * Be quieter by default in relation to the graft(1) output, if the
89       -v option is given it returns to the previous qi output behavior.
91     * Set the --missing-crc option to tarlz(1) by default to make the
92       package integrity check more reliable.
94     * Use the power of awk(1) to display package descriptions.
96     * Check and report if qi is connected to a terminal when reading from
97       standard input.
99     * Qi's messages have been improved to differentiate themselves from
100       the output of other programs.
102     * Added "coreutils", "bash", and "mksh" to the blacklist filter when
103       upgrading packages.
105     * Support for the SOURCE_DATE_EPOCH specification has been added.
106       See: https://reproducible-builds.org/specs/source-date-epoch/
108     * Default Qi C flags to be passed to the compiler (QICFLAGS, QICXXFLAGS)
109       has been changed from "-g0 -Os" to "-g0 -O2".
111     * The DESCRIPTION, OPTIONS, and ENVIRONMENT sections for the man page
112       (generated by help2man) have been reorganized.
114     * The main Info manual has been refreshed to reflect all these changes.
116     * The examples in the doc directory have been updated.
118     * The CREDITS file has been updated.
120     * Code clean up and minor (but important) enhancements.
122 2020-04-20  Matias Fonzo  <selk@dragora.org>
124     * Version 1.4 released.
126     * build: Added support for optional "package category".  If the
127       variable 'pkgcategory' is declared in a recipe, Qi will produce
128       packages ala "<name>-<version>-<architecture>+release@category".
130     * general: The configuration file is now included instead of being
131       analyzed.  This is to have more room to declare things in general.
133     * build: The 'arch' value is used as suffix for produced packages
134       in order to have a well-organized (per-arch) output directory,
135       e.g:
136        /var/cache/qi/packages/noarch/
137        /var/cache/qi/packages/i586/
138        /var/cache/qi/packages/x86_64/
139        ...
141     * The code of blacklisted packages in the updates has been simplified.
143     * doc: The "Variables from the environment" section has been improved.
145     * build: The 'full_pkgname' variable is now added on the meta tag file.
147     * doc: The manual has been updated to conform to this version.
149     * Minor changes.
151 2019-09-10  Matias Fonzo  <selk@dragora.org>
153     * Version 1.3 released.
155     * Check the exit status when a recipe is imported or included.
156       This will help to catch possible errors when using shell code,
157       rather than proceeding with the recipe.
159     * Minor changes.
161 2019-07-30  Matias Fonzo  <selk@dragora.org>
163     * Version 1.2 released.
165     * The variable 'arch' has been added to the package meta file,
166       additionally, the variables 'program' and 'version' has been
167       replaced with 'pkgname' and 'pkgversion' which take the value
168       of those if they have not been previously established.
170     * Minor changes.
172 2019-05-19  Matias Fonzo  <selk@dragora.org>
174     * Version 1.1 released.
176     * Default external tool for uncompressing files based on .tar.lz
177       archives has been changed in the unpack() function from tarlz(1) to
178       lzip(1) in combination with tar(1).  This is because some files
179       could have been produced using a header format that differs from the
180       default format used by tarlz(1), e.g. the GNU format (by GNU tar).
182     * Some phrases have been improved in the manual, under the section
183       "5.3 Writing recipes".  Thanks to kelsoo.
185 2019-04-15  Matias Fonzo  <selk@dragora.org>
187     * Version 1.0 (stable) released.
189     * The manual (user guide) has been updated.