* author'larini bildigim seyleri yaz

This commit is contained in:
Eray Özkural
2005-06-26 12:53:04 +00:00
parent 144bc9b7c0
commit c5d99beef5
13 changed files with 31 additions and 4 deletions
+2
View File
@@ -1,3 +1,5 @@
# PISI source/package index
# Author: Eray Ozkural <eray@uludag.org.tr>
from package import Package from package import Package
from xmlfile import XmlFile from xmlfile import XmlFile
+2
View File
@@ -1,4 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# Package install operation
# Author: Eray Ozkural <eray@uludag.org.tr>
#import package #import package
from specfile import * from specfile import *
+2 -1
View File
@@ -1,6 +1,7 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# installation database # installation database
# maintainer: eray and caglar # Author: Eray Ozkural <eray@uludag.org.tr>
import os import os
import bsddb.dbshelve as shelve import bsddb.dbshelve as shelve
+2
View File
@@ -2,6 +2,8 @@
# generated during the build process of a package and used in the # generated during the build process of a package and used in the
# installation. Package repository also uses metadata.xml for building # installation. Package repository also uses metadata.xml for building
# a package index. # a package index.
# Authors: Eray Ozkural <eray@uludag.org.tr>
# Baris Metin <baris@uludag.org.tr
from ui import ui from ui import ui
+2 -1
View File
@@ -1,7 +1,8 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# package database # package database
# interface for update/query to local package repository # interface for update/query to local package repository
# maintainer: eray and caglar # Authors: Eray Ozkural <eray@uludag.org.tr>
# Baris Metin <baris@uludag.org.tr
# we basically store everything in PackageInfo class # we basically store everything in PackageInfo class
# yes, we are cheap # yes, we are cheap
+3
View File
@@ -1,4 +1,7 @@
# python standard library # python standard library
# Authors: Baris Metin <baris@uludag.org.tr
# Eray Ozkural <eray@uludag.org.tr>
import os import os
import sys import sys
+1 -1
View File
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# package source database # package source database
# interface for update/query to local package repository # interface for update/query to local package repository
# maintainer: eray and caglar # Author: Eray Ozkural <eray@uludag.org.tr>
# we basically store everything in sourceinfo class # we basically store everything in sourceinfo class
# yes, we are cheap # yes, we are cheap
+3
View File
@@ -4,6 +4,9 @@
# files are specification files for PISI source packages. This module # files are specification files for PISI source packages. This module
# provides read and write access to PSPEC files. # provides read and write access to PSPEC files.
# Authors: Eray Ozkural <eray@uludag.org.tr>
# Baris Metin <baris@uludag.org.tr
# standard python modules # standard python modules
import xml.dom.minidom import xml.dom.minidom
from os.path import basename from os.path import basename
+2
View File
@@ -1,4 +1,6 @@
# generic user interface # generic user interface
# Authors: Eray Ozkural <eray@uludag.org.tr>
# Murat Eren <meren@uludag.org.tr>
import sys import sys
from colors import colorize from colors import colorize
+5 -1
View File
@@ -1,6 +1,10 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# misc. utility functions, including process and file utils # misc. utility functions, including process and file utils
# maintainer: eray and caglar and baris and meren!
# Authors: Eray Ozkural <eray@uludag.org.tr>
# Baris Metin <baris@uludag.org.tr>
# S. Caglar Onur <caglar@uludag.org.tr>
# A. Murat Eren <meren@uludag.org.tr>
import os import os
import sys import sys
+1
View File
@@ -1,4 +1,5 @@
# version structure # version structure
# Authors: Eray Ozkural <eray@uludag.org.tr>
import util import util
+3
View File
@@ -1,5 +1,8 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# some helper functions for using minidom # some helper functions for using minidom
# works well enough for now... :/
# Authors: Eray Ozkural <eray@uludag.org.tr>
# Baris Metin <baris@uludag.org.tr
import xml.dom.minidom as mdom import xml.dom.minidom as mdom
+3
View File
@@ -7,6 +7,9 @@
# high-level dom functions provided in xml module (and sorely lacking # high-level dom functions provided in xml module (and sorely lacking
# in xml.dom :( ) # in xml.dom :( )
# Authors: Eray Ozkural <eray@uludag.org.tr>
# Baris Metin <baris@uludag.org.tr
import xml.dom.minidom as mdom import xml.dom.minidom as mdom
from xmlext import * from xmlext import *