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