NEWS 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234
  1. 2022-05-02 Matias Fonzo <selk@dragora.org>
  2. * Version 2.8 released.
  3. * Use full remove mode when upgrading a package. The purpose of this
  4. change is to clean up the removal of a previous package when the
  5. upgrade mode is invoked. Previously the package documentation
  6. directory (and other possible files) were left on the filesystem.
  7. * Minor enhancements.
  8. 2021-12-14 Matias Fonzo <selk@dragora.org>
  9. * Version 2.7 released.
  10. * Now Qi is more precise with exit status number 4 and 6, by hitting
  11. "exit" instead of just returning from the functions.
  12. * Small corrections for the description of Qi and also for the manual
  13. have been sent by Antonio Diaz Diaz. Thanks!
  14. 2021-11-01 Matias Fonzo <selk@dragora.org>
  15. * Version 2.6 released.
  16. * build: Make a checksum file for the copy of the recipe (the one
  17. included in the package, from which the recipe was built).
  18. * Do not read the configuration file on create, extract, and order
  19. modes. It is not necessary to read the config file in these modes.
  20. * Minor changes.
  21. 2021-09-28 Matias Fonzo <selk@dragora.org>
  22. * Version 2.5 released.
  23. * Searching for previously installed packages in an upgrade has been
  24. simplified, which will speed up and save resources in upgrade mode.
  25. * The network downloader has been changed to make use of GNU Wget2.
  26. * Minor enhancements.
  27. 2021-04-12 Matias Fonzo <selk@dragora.org>
  28. * Version 2.4 released.
  29. * recipes: Added the variable "QICPPFLAGS" to pass the C/C++
  30. preprocessor flags to the environment variable "CPPFLAGS".
  31. * recipes: Added the "docs" and "docsdir" variables to be unset
  32. after processing a recipe.
  33. * recipes: Added support for executing other defined functions
  34. besides the main build() function.
  35. * recipes: Include build flags only if it is a real architecture
  36. when creating a package meta.
  37. * Change default values for QICFLAGS, QICXXFLAGS from "-g0 -O2" to
  38. just "-O2". Including default value for LDFLAGS from "-s" to
  39. just "" (none). This is to provide more generic values in the
  40. package manager distribution.
  41. * The documentation is in line with the changes made, plus the
  42. sample recipes have been updated.
  43. * Minor changes.
  44. 2020-12-25 Matias Fonzo <selk@dragora.org>
  45. * Version 2.3 released.
  46. * doc: The general documentation of Qi has been divided to allow its
  47. inclusion from other .texi files. This does not affect the internal
  48. functioning of Qi or the reading of the documentation for the user,
  49. but rather it prepares for the incoming Dragora Handbook (Dragora is
  50. the project from which Qi is currently developed).
  51. * Minor changes.
  52. 2020-11-09 Matias Fonzo <selk@dragora.org>
  53. * Version 2.2 released.
  54. * Get the absolute path name to compose the current working directory
  55. when build. A bug introduced in qi-2.0.
  56. * The readconfig() function has been simplified.
  57. 2020-09-07 Matias Fonzo <selk@dragora.org>
  58. * Version 2.1 released.
  59. * Make the code for searching previous packages in an upgrade work again
  60. (bug introduced in previous version).
  61. * Minor changes.
  62. 2020-08-22 Matias Fonzo <selk@dragora.org>
  63. * Version 2.0 released.
  64. * The user interface has been revised to better differenciate commands
  65. and options, for example: `qi install` instead of `qi -i`, `qi remove`
  66. instead of `qi -d`, `qi upgrade` instead of `qi -u`, `qi build`
  67. instead of `qi -b`, and so on.
  68. * The layout of the produced package names has been changed to better
  69. differenciate the software name and its version.
  70. Before: name-version-architecture-release[@pkgcategory].tlz
  71. 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.
  74. * configure: The --arch= option has been added to define the default
  75. package architecture.
  76. * install: Fix assignation of 'rootdir' when it is empty and it
  77. relies on the value of 'targetdir' when runs a post-install script
  78. from subshell.
  79. * doc: Fix examples for 'rootdir' since the package directory and
  80. the target directory are relative to the specified root directory.
  81. * recipes: Add the special variable 'keep_destdir' to complement
  82. 'keep_srcdir' in order to preserve 'destdir' when using build command.
  83. * Be quieter by default in relation to the graft(1) output, if the
  84. -v option is given it returns to the previous qi output behavior.
  85. * Set the --missing-crc option to tarlz(1) by default to make the
  86. package integrity check more reliable.
  87. * Use the power of awk(1) to display package descriptions.
  88. * Check and report if qi is connected to a terminal when reading from
  89. standard input.
  90. * Qi's messages have been improved to differentiate themselves from
  91. the output of other programs.
  92. * Added "coreutils", "bash", and "mksh" to the blacklist filter when
  93. upgrading packages.
  94. * Support for the SOURCE_DATE_EPOCH specification has been added.
  95. See: https://reproducible-builds.org/specs/source-date-epoch/
  96. * Default Qi C flags to be passed to the compiler (QICFLAGS, QICXXFLAGS)
  97. has been changed from "-g0 -Os" to "-g0 -O2".
  98. * The DESCRIPTION, OPTIONS, and ENVIRONMENT sections for the man page
  99. (generated by help2man) have been reorganized.
  100. * The main Info manual has been refreshed to reflect all these changes.
  101. * The examples in the doc directory have been updated.
  102. * The CREDITS file has been updated.
  103. * Code clean up and minor (but important) enhancements.
  104. 2020-04-20 Matias Fonzo <selk@dragora.org>
  105. * Version 1.4 released.
  106. * build: Added support for optional "package category". If the
  107. variable 'pkgcategory' is declared in a recipe, Qi will produce
  108. packages ala "<name>-<version>-<architecture>+release@category".
  109. * general: The configuration file is now included instead of being
  110. analyzed. This is to have more room to declare things in general.
  111. * build: The 'arch' value is used as suffix for produced packages
  112. in order to have a well-organized (per-arch) output directory,
  113. e.g:
  114. /var/cache/qi/packages/noarch/
  115. /var/cache/qi/packages/i586/
  116. /var/cache/qi/packages/x86_64/
  117. ...
  118. * The code of blacklisted packages in the updates has been simplified.
  119. * doc: The "Variables from the environment" section has been improved.
  120. * build: The 'full_pkgname' variable is now added on the meta tag file.
  121. * doc: The manual has been updated to conform to this version.
  122. * Minor changes.
  123. 2019-09-10 Matias Fonzo <selk@dragora.org>
  124. * Version 1.3 released.
  125. * Check the exit status when a recipe is imported or included.
  126. This will help to catch possible errors when using shell code,
  127. rather than proceeding with the recipe.
  128. * Minor changes.
  129. 2019-07-30 Matias Fonzo <selk@dragora.org>
  130. * Version 1.2 released.
  131. * The variable 'arch' has been added to the package meta file,
  132. additionally, the variables 'program' and 'version' has been
  133. replaced with 'pkgname' and 'pkgversion' which take the value
  134. of those if they have not been previously established.
  135. * Minor changes.
  136. 2019-05-19 Matias Fonzo <selk@dragora.org>
  137. * Version 1.1 released.
  138. * Default external tool for uncompressing files based on .tar.lz
  139. archives has been changed in the unpack() function from tarlz(1) to
  140. lzip(1) in combination with tar(1). This is because some files
  141. could have been produced using a header format that differs from the
  142. default format used by tarlz(1), e.g. the GNU format (by GNU tar).
  143. * Some phrases have been improved in the manual, under the section
  144. "5.3 Writing recipes". Thanks to kelsoo.
  145. 2019-04-15 Matias Fonzo <selk@dragora.org>
  146. * Version 1.0 (stable) released.
  147. * The manual (user guide) has been updated.