Merge genscripts revision 191
[gentoolkit.git] / TODO
1 - equery:
2  - add --overlay, --portdir to uses
3  - add glsa pkgspec
4   - query for current GLSAs on installed package(s)
5 - rewrite ekeywords and echangelog to use gentoolkit
6 - fully deprecate qpkg
7 - fully deprecate pkg-size
8 - merge change and echangelog
9 - merge useflag and euse, have _one_ command line tool
10   - update ufed to rely on the CLI tool
11   - update ufed to rely on generate-use
12   - merge generate-use and ufed?
13 - rewrite revdep-rebuild to use gentoolkit
14  - drop qpkg dependency; use equery instead
15 - write efeatures for turning on/off FEATURES in make.conf
16 - look at ekeys, ewatch
17 - revision bump tool
18  - bump versioned files in filesdir
19  - -m for changelog entry
20  - use ~/.gentoo/gentoolkit/ebump.conf
21  - use /etc/gentoolkit/ebump.conf
22
23 equery:
24         Add more --debug stuff
25         Write tests for Dependencies._parser
26         Profile Dependencies._parser
27         Refactor each module to be useful for import. Done modules:
28                 +depends
29                 +belongs
30                 +meta
31                 +changes
32                 +depgraph
33
34 Ebuild changes:
35         - Add:
36                 src_test() {
37                         "${python}" setup.py test || die "testing returned non zero"
38                 }
39         - Add:
40                 DEPEND on python 2.5 (needed for 'from __future__ import with_statement' and others)
41
42 For Next Release:
43         - write NEWS file
44         - make CPV.__init__ more strict, it allows some silly stuff
45         -  $ equery uses '>=sys-apps/portage-2'
46           * Searching for >=sys-apps/portage-2 ...
47           * Found these USE flags for sys-apps/portage-2.1.6.13:
48         - belongs doesn't properly match atom syntax
49
50
51 For following release:
52         - transition package query backend to using Query class.
53           Query class should accept any kind package of input accepted by equery.
54           Most of the functions in helpers should be able to moved out, either in
55           to query (many of those functions pertain to finding packages matching a
56           query) or into other appropriate modules (split_cpv,
57           compare_package_strings into cpv, as they also requires a cpv string)