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