Add note about EAPI 4_pre1.
[portage.git] / NEWS
1 News (mainly features/major bug fixes)
2
3 portage-2.2
4 -------------
5
6 * Add link level dependency awareness to emerge --depclean and --prune actions
7   in order to protect against uninstallation of required libraries.
8 * Add support for generic package sets (also see RELEASE-NOTES)
9 * Add EAPI 4_pre1 support, for testing purposes.
10
11 portage-2.1.9
12 -------------
13
14 * There is a new ipc (inter-process communication) USE flag which is enabled
15   by default. This allows portage to communicate with running ebuild processes,
16   for things like best_version, has_version, and die calls in nested processes.
17   This flag should remain enabled unless it is found to be incompatible with a
18   specific profile or environment. When enabled, it fixes bug #278895,
19   bug #315615, and makes subshell die support more robust (so that repoman's
20   ebuild.nesteddie check is irrelevant).
21
22 portage-2.1.8
23 -------------
24 * The top-level __init__.py for the portage python package has been split into
25   many smaller python modules, making the code easier to navigate and allowing
26   small parts of the portage api to be imported with less overhead.
27
28 portage-2.1.7
29 -------------
30
31 * Add license visibility filtering (GLEP 23)
32 * Add --accept-properties option for emerge which allows you to use
33   --accept-properties=-interactive in order to temporarily exclude
34   interactive updates.
35 * Add support for Python 3.0. At least Python 2.6 is now required in order to
36   support the new syntax which is used by Python 3.0.
37
38 portage-2.1.6
39 -------------
40
41 * Add support for a new EAPI="2" value. For more information about new EAPI
42   features, refer to the "Ebuild" chapter of the html documentation that is
43   installed with portage.
44 * Add PORTAGE_IONICE_COMMAND setting for make.conf which is called to adjust
45   IO priority on portage and it's subprocesses.
46 * Add emerge --jobs and --load-average options which specify behavior
47   for building packages in parallel or for generating metadata in parallel
48   with emerge --regen.
49 * Add emerge --keep-going option to continue as much as possible after
50   an error. When an error occurs, dependencies are recalculated for
51   remaining packages and any with unsatisfied dependencies are
52   automatically dropped. The --skipfirst option automatically drops
53   packages in the same way, and also drops any masked packages.
54 * Add git and subversion support for repoman.
55 * It is now possible to use `emerge <file>` to reinstall the package that
56   installed a particular file. Package contents entries are indexed to
57   improve performance. A command such as `emerge /lib/modules` can serve
58   as a decent substitute for module-rebuild.
59 * Namespace sanitizing: move all portage related code into portage.* namespace,
60   rename portage_foo modules to portage.foo (but keep symlinks for compability)
61 * Add support for news items (GLEP 42)
62 * Add FEATURES=protect-owned which is identical to the collision-protect
63   feature except that files may be overwritten if they are not explicitly
64   listed in the contents of a currently installed package.
65
66 portage-2.1.5
67 -------------
68
69 * For extra careful dependency handling, emerge has a new --complete-graph
70   option that causes it to consider the deep dependencies of all packages from
71   the system and world sets. With this option enabled, emerge will bail out
72   if it determines that the given operation will break any dependencies of
73   the packages that have been added to the graph. Unlike the --deep option,
74   the --complete-graph option does not cause any more packages to be updated
75   than would have otherwise been updated with the option disabled.
76 * Blockers are now resolved automatically in many more cases
77   than before.  When it's safe, blocked packages are uninstalled
78   automatically so that users are no longer inconvenienced with the
79   task. Automatically uninstalled packages are displayed in the merge
80   list, marked "uninstall" and highlighted in red. With the --tree
81   option enabled, it's possible to see which package(s) caused other
82   ones to be automatically uninstalled.
83 * The dependency resolver now has a feedback mechanism that helps make atom
84   selections more consistent with previous selections that have been added to
85   the graph. This solves some common cases of bug #1343.
86
87 portage-2.1.4
88 -------------
89
90 * After the initial setup phase, the original ebuild and eclasses are no
91   longer needed because the same ebuild environment is reused for the
92   entire lifecycle of the package, including uninstallation.
93 * The emerge --search action supports searching of both installed and binary packages
94   The --usepkg and --usepkgonly options control which repositories are searched.
95
96 portage-2.1.3
97 -------------
98
99 * Allow per-module setting of PORTAGE_ELOG_CLASSES
100 * Add new elog module "echo" to simply display messages when emerge exits
101 * Add ** as new token for package.keywords to bypass the keyword visibility layer
102 * USE_EXPAND variables such as LINGUAS support a * wildcard that will enable
103   all of the corresponding flags that are listed in IUSE for a given package.
104   USE_EXPAND wildcards such as linguas_* are supported in USE and package.use.
105 * The merge process preserves the modification timestamp of files that it
106   installs. The unmerge process will not uninstall files that are claimed by
107   another package in the same slot.
108 * PDEPEND is now installed as soon as possible so that it behaves more like
109   RDEPEND.  This makes PDEPEND more useful for breaking the dependency cycles
110   that are sometimes triggered by RDEPEND and DEPEND.
111 * Enable "echo" and "save_summary" elog modules by default
112 * Fix -* handling in package.keywords to work as intended (reset the accepted 
113   keywords list), also see RELEASE-NOTES.
114 * Make elog functionality available to python code
115
116 portage-2.1.2
117 -------------
118
119 * Ebuilds support default USE flags via +flag in IUSE.
120 * New-style virtuals are now usable for packages that depend on themselves for
121   bootstrap.
122 * Profiles support multiple inheritance and package.use.
123 * CONFIG_PROTECT and CONFIG_PROTECT_MASK both support files (not just
124   directories).
125 * Collision protection handles symlinks properly.
126 * Dependencies can be satisfied by installed packages that do not have matching
127   ebuilds in the portage tree or overlay.
128 * Emerge automatically ignores blockers that are made irrelevant by an upgrade.
129 * Emerge supports "reverse blocker detection" which means that the blockers of
130   installed packages will always be respected.
131 * Emerge builds a complete dependency graph in order to ensure correct merge
132   order and detection of circular dependencies.
133 * The world and system sets allow automatic update of all installed slots.
134 * DEPEND atoms support SLOT dependencies of the form ${CATEGORY}/${PN}:${SLOT}.
135 * Development: Extend PYTHONPATH support to allow overriding the hardcoded 
136   /usr/lib/portage/pym for development/testing purposes
137 * New "finalize" hook for elog modules enabling modules to perform actions on 
138   shutdown (like dispatching collected messages).
139 * New elog modules mail_summary and save_summary that act like the mail/save
140   modules except that they merge messages from multiple packages in a single
141   file/mail.
142 * New QA loglevel and matching eqawarn function
143 * `ebuild foo test` now always runs src_test if available
144 * If DOC_SYMLINK_DIR is set portage installs symlinks to html documention there
145 * FEATURES="test" automatically implies USE="test".
146
147 portage-2.1.1
148 -------------
149
150 * Profiles support use.force, package.use.force, and package.use.mask files.
151
152 portage-2.1 (ongoing via pre releases)
153 ------------
154
155 * FEATURES="confcache" integration; global caching to speed up configure calls, 
156   requires dev-util/confcache
157 * elog framework and accompanying modules for logging ebuild warnings, errors
158   and general notices. Collects eerror/ewarn/elog/einfo messages.
159 * New elog function (should replace einfo in many cases)
160 * version syntax enhancements allowing multiple suffixes and a new 'cvs'
161   version prefix for denoting "live sources" ebuilds.
162 * config files as directories enabling more flexible settings management.
163 * Addition of an register_die_hook method that allows ebuild/eclasses to
164   register functions to be called for better debugging on errors.
165 * Addition of pre and post user hookable functions for each ebuild phase, accessible 
166   via portage bashrc.  Example would be pre_src_unpack .
167 * cache refactoring- runtime improvement from 35% -> 65%.
168 * Intelligently handle and display USE_EXPAND-based IUSE variables.
169 * FEATURES="parallel-fetch".  Download in parallel to compilation.
170 * Include a "changed or new" USE flag output when --verbose isn't specified.
171 * Support for splitting out debug information into separate files in
172   /usr/lib{,32,64}.
173 * exec subsystem refactoring (now with less bugs!)
174 * Added sha256 and rmd160 hashes for digests/manifests
175 * Make --emptytree only apply to ${ROOT} rather than always including /.
176 * Allow packages to be upgraded that are only depended on via a
177   "|| ( =cat/pkg-1* =cat/pkg-2* )" construct.
178 * Ebuild output is no longer cut off early when using PORT_LOGDIR.
179 * Distfiles indirection- $DISTFILES access goes through a tmp dir to fail
180   access to files not listed in SRC_URI.
181 * Emerge now uses --resume to restart itself after portage upgrade.
182 * Atomic file updates via the new atomic_ofstream class.
183 * Global updates and fixpackages performance optimizations.
184 * Tests show that file locking is now more reliable.
185 * A bash call stack is printed when an ebuild dies in ebuild.sh.
186 * New rsync option handling by using a generic PORTAGE_RSYNC_EXTRA_OPTS variable
187 * Manifest2 support that will allow digest-* files to be eliminated from the tree.