aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorNathaniel McCallum <npmccallum@gentoo.org>2004-04-04 03:26:18 +0000
committerNathaniel McCallum <npmccallum@gentoo.org>2004-04-04 03:26:18 +0000
commit78f14c76d8a94cea969adb4ee6b81704b82f4b4a (patch)
tree4043a8d9750163c81b97cdc38c8a4eda6108a349 /docs
parentstarted fleshing out depends and even some smaller methods (diff)
downloadgli-78f14c76d8a94cea969adb4ee6b81704b82f4b4a.tar.gz
gli-78f14c76d8a94cea969adb4ee6b81704b82f4b4a.tar.bz2
gli-78f14c76d8a94cea969adb4ee6b81704b82f4b4a.zip
Lots of stuff...
git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/gli/trunk@35 f8877401-5920-0410-a79b-8e2d7e04ca0d
Diffstat (limited to 'docs')
-rw-r--r--docs/InstallProfileTODO.txt15
1 files changed, 12 insertions, 3 deletions
diff --git a/docs/InstallProfileTODO.txt b/docs/InstallProfileTODO.txt
index f5e8675..34b5f7d 100644
--- a/docs/InstallProfileTODO.txt
+++ b/docs/InstallProfileTODO.txt
@@ -6,13 +6,13 @@ Method names:
set_make_conf()
get_make_conf()
-This is any kind of iterable data type (list, tuple) containing tuples of key/value pairs.
+This is a dictionary of key/value pairs.
For instance, in make.conf you would see a line like this:
USE="X gtk gtk2 alsa"
-That line is broken up into the following ("USE", "X gtk gtk2 alsa").
+That line is broken up into the following {"USE" : "X gtk gtk2 alsa"}.
Therefore, get_make_conf() would return something like this:
-(("USE", "X gtk gtk2 alsa"), ("GENTOO_MIRRORS", "http://gentoo.mirrors.pair.com"))
+{ "USE" : "X gtk gtk2 alsa", "GENTOO_MIRRORS" : "http://gentoo.mirrors.pair.com" }
############################
@@ -54,3 +54,12 @@ get_ignore_install_step_depends()
This is a bool.
############################
+
+Method Change:
+
+get_portage_tree_sync() -> get_portage_tree_sync_type()
+set_portage_tree_sync() -> set_portage_tree_sync_type()
+
+Rather than being a bool, it needs to be a string.
+There will be 3 different types: "sync", "webrsync", and "custom"
+