From: Zac Medico Date: Thu, 2 Dec 2010 16:15:17 +0000 (-0800) Subject: cpv_sort_key: test suffix order X-Git-Tag: v2.2.0_alpha7~15 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=f314216e7ef88a1002e5caba32ad7efc06174e6d;p=portage.git cpv_sort_key: test suffix order --- diff --git a/pym/portage/tests/versions/test_cpv_sort_key.py b/pym/portage/tests/versions/test_cpv_sort_key.py index 857af1701..a223d78c7 100644 --- a/pym/portage/tests/versions/test_cpv_sort_key.py +++ b/pym/portage/tests/versions/test_cpv_sort_key.py @@ -8,8 +8,8 @@ class CpvSortKeyTestCase(TestCase): def testCpvSortKey(self): - tests = [ (( "a", "b", "a/b-2", "a/a-1", "a/b-1"), - ( "a", "a/a-1", "a/b-1", "a/b-2", "b")), + tests = [ (("a/b-2_alpha", "a", "b", "a/b-2", "a/a-1", "a/b-1"), + ( "a", "a/a-1", "a/b-1", "a/b-2_alpha", "a/b-2", "b")), ] for test in tests: diff --git a/pym/portage/versions.py b/pym/portage/versions.py index d3271a762..f8691d1ce 100644 --- a/pym/portage/versions.py +++ b/pym/portage/versions.py @@ -348,7 +348,7 @@ def cpv_getversion(mycpv): def cpv_sort_key(): """ - Create an object for sorting cpvs, to be useed as the 'key' parameter + Create an object for sorting cpvs, to be used as the 'key' parameter in places like list.sort() or sorted(). This calls catpkgsplit() once for each cpv and caches the result. If a given cpv is invalid or two cpvs have different category/package names, then plain string (> and <)