+2008-07-22: Paul Varner <fuzzyray@gentoo.org>
+ * gentoolkit: Fix gentoolkit.split_package_name to work with
+ newer portage.catpkgsplit that now returns a tuple instead of a
+ list. (Bug 232599)
+
2008-07-21: Paul Varner <fuzzyray@gentoo.org>
* revdep-rebuild: Fix filtering of masked paths from SEARCH_DIRS
variable. (Bug 232270)
"""Returns a list on the form [category, name, version, revision]. Revision will
be 'r0' if none can be inferred. Category and version will be empty, if none can
be inferred."""
- r = portage.catpkgsplit(name)
+ r = list(portage.catpkgsplit(name))
if not r:
r = name.split("/")
if len(r) == 1: