Merge genscripts rev 137, this revision makes the output of equery meta compatible...
[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         Tests:
25                 +helpers2 (FileOwner._extend_realpaths test probably doesn't clean up)
26         Run pylint and write test to run pylint
27         Write test to compile all modules (full syntax check). Take from portage.
28         Add more --debug stuff
29         Write tests for Dependencies._parser
30         Refactor each module to be useful for import. Done modules:
31                 +depends
32                 +belongs
33                 +meta
34                 +changes
35                 +depgraph
36
37 Ebuild changes:
38         - Add:
39                 src_test() {
40                         "${python}" setup.py test || die "testing returned non zero"
41                 }
42         - Add:
43                 DEPEND on python 2.5 (needed for 'from __future__ import with_statement' and others)
44
45 For Next Release:
46         - write NEWS file
47     - make CPV.__init__ more strict, it allows some silly stuff
48         -  $ equery uses '>=sys-apps/portage-2'
49           * Searching for >=sys-apps/portage-2 ...
50           * Found these USE flags for sys-apps/portage-2.1.6.13:
51         - belongs doesn't properly match atom syntax
52
53
54 For following release:
55         - transition package query backend to using Query class.
56           Query class should accept any kind package of input accepted by equery.
57           Most of the functions in helpers should be able to moved out, either in
58           to query (many of those functions pertain to finding packages matching a
59           query) or into other appropriate modules (split_cpv,
60           compare_package_strings into cpv, as they also requires a cpv string)