diff --git a/pisi/index.py b/pisi/index.py index f1b73070..38ec6cb1 100644 --- a/pisi/index.py +++ b/pisi/index.py @@ -1,3 +1,5 @@ +# PISI source/package index +# Author: Eray Ozkural from package import Package from xmlfile import XmlFile diff --git a/pisi/install.py b/pisi/install.py index 81808981..d9336979 100644 --- a/pisi/install.py +++ b/pisi/install.py @@ -1,4 +1,6 @@ # -*- coding: utf-8 -*- +# Package install operation +# Author: Eray Ozkural #import package from specfile import * diff --git a/pisi/installdb.py b/pisi/installdb.py index 7aa96f83..4d270c35 100644 --- a/pisi/installdb.py +++ b/pisi/installdb.py @@ -1,6 +1,7 @@ # -*- coding: utf-8 -*- # installation database -# maintainer: eray and caglar +# Author: Eray Ozkural + import os import bsddb.dbshelve as shelve diff --git a/pisi/metadata.py b/pisi/metadata.py index ea51b1ab..88e1aa03 100644 --- a/pisi/metadata.py +++ b/pisi/metadata.py @@ -2,6 +2,8 @@ # generated during the build process of a package and used in the # installation. Package repository also uses metadata.xml for building # a package index. +# Authors: Eray Ozkural +# Baris Metin +# Baris Metin + import os import sys diff --git a/pisi/sourcedb.py b/pisi/sourcedb.py index 71af3727..fcf3b421 100644 --- a/pisi/sourcedb.py +++ b/pisi/sourcedb.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # package source database # interface for update/query to local package repository -# maintainer: eray and caglar +# Author: Eray Ozkural # we basically store everything in sourceinfo class # yes, we are cheap diff --git a/pisi/specfile.py b/pisi/specfile.py index c4c7b358..ddb14d6b 100644 --- a/pisi/specfile.py +++ b/pisi/specfile.py @@ -4,6 +4,9 @@ # files are specification files for PISI source packages. This module # provides read and write access to PSPEC files. +# Authors: Eray Ozkural +# Baris Metin +# Murat Eren import sys from colors import colorize diff --git a/pisi/util.py b/pisi/util.py index 1fb53c3a..5b211508 100644 --- a/pisi/util.py +++ b/pisi/util.py @@ -1,6 +1,10 @@ # -*- coding: utf-8 -*- # misc. utility functions, including process and file utils -# maintainer: eray and caglar and baris and meren! + +# Authors: Eray Ozkural +# Baris Metin +# S. Caglar Onur +# A. Murat Eren import os import sys diff --git a/pisi/version.py b/pisi/version.py index 020d5022..e7518583 100644 --- a/pisi/version.py +++ b/pisi/version.py @@ -1,4 +1,5 @@ # version structure +# Authors: Eray Ozkural import util diff --git a/pisi/xmlext.py b/pisi/xmlext.py index b11a5876..a382a723 100644 --- a/pisi/xmlext.py +++ b/pisi/xmlext.py @@ -1,5 +1,8 @@ # -*- coding: utf-8 -*- # some helper functions for using minidom +# works well enough for now... :/ +# Authors: Eray Ozkural +# Baris Metin +# Baris Metin