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