diff options
Diffstat (limited to 'portato/eix')
-rw-r--r-- | portato/eix/__init__.py | 2 | ||||
-rw-r--r-- | portato/eix/exceptions.py | 2 | ||||
-rw-r--r-- | portato/eix/parser.pyx | 6 | ||||
-rw-r--r-- | portato/eix/py_parser.py | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/portato/eix/__init__.py b/portato/eix/__init__.py index 346fe82..8fa1da6 100644 --- a/portato/eix/__init__.py +++ b/portato/eix/__init__.py @@ -3,7 +3,7 @@ # File: portato/eix/__init__.py # This file is part of the Portato-Project, a graphical portage-frontend. # -# Copyright (C) 2006-2009 René 'Necoro' Neumann +# Copyright (C) 2006-2010 René 'Necoro' Neumann # This is free software. You may redistribute copies of it under the terms of # the GNU General Public License version 2. # There is NO WARRANTY, to the extent permitted by law. diff --git a/portato/eix/exceptions.py b/portato/eix/exceptions.py index 8145af4..1ca05e1 100644 --- a/portato/eix/exceptions.py +++ b/portato/eix/exceptions.py @@ -3,7 +3,7 @@ # File: portato/eix/exceptions.py # This file is part of the Portato-Project, a graphical portage-frontend. # -# Copyright (C) 2006-2009 René 'Necoro' Neumann +# Copyright (C) 2006-2010 René 'Necoro' Neumann # This is free software. You may redistribute copies of it under the terms of # the GNU General Public License version 2. # There is NO WARRANTY, to the extent permitted by law. diff --git a/portato/eix/parser.pyx b/portato/eix/parser.pyx index 01a673f..d4bd3af 100644 --- a/portato/eix/parser.pyx +++ b/portato/eix/parser.pyx @@ -3,7 +3,7 @@ # File: portato/eix/_parser.pyx # This file is part of the Portato-Project, a graphical portage-frontend. # -# Copyright (C) 2006-2009 René 'Necoro' Neumann +# Copyright (C) 2006-2010 René 'Necoro' Neumann # This is free software. You may redistribute copies of it under the terms of # the GNU General Public License version 2. # There is NO WARRANTY, to the extent permitted by law. @@ -260,7 +260,7 @@ cdef class package: cdef LLong _offset cdef readonly object name - #cdef readonly object description + cdef readonly object description #cdef readonly object provide #cdef readonly object homepage #cdef readonly object license @@ -279,9 +279,9 @@ cdef class package: after_offset = ftell(cfile) self.name = string(file) + self.description = string(file) # skip the rest, as it is currently unneeded - #self.description = string(file) #self.provide = vector(file, number) #self.homepage = string(file) #self.license = number(file) diff --git a/portato/eix/py_parser.py b/portato/eix/py_parser.py index cc42553..231c206 100644 --- a/portato/eix/py_parser.py +++ b/portato/eix/py_parser.py @@ -3,7 +3,7 @@ # File: portato/eix/parser.py # This file is part of the Portato-Project, a graphical portage-frontend. # -# Copyright (C) 2006-2009 René 'Necoro' Neumann +# Copyright (C) 2006-2010 René 'Necoro' Neumann # This is free software. You may redistribute copies of it under the terms of # the GNU General Public License version 2. # There is NO WARRANTY, to the extent permitted by law. |