1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
#!/usr/bin/python
# -*- coding: utf-8 -*-
from user import home
import commands
time__ = commands.getoutput("date +%Y%m%d-%H:%M")
# Mirror Parameters
mirror = "mirrors.eu.kernel.org"
mirrorpath = "::mirrors/archlinux"
# Directories and files
## Optionals
path = home + "/parabolagnulinux.org"
docs = path + "/docs"
logdir = path + "/log"
## Must be defined
logname= logdir + "/" + time__ + "-repo-maintainer.log"
repodir= path + "/repo"
tmp = home + "/tmp"
archdb = tmp + "/db"
free_path= path + "/free/"
# Repo, arch, and other folders to use for repo
repo_list = ("core", "extra", "community", "testing", "community-testing", "multilib")
dir_list = ("pool","sources")
arch_list = ("i686", "x86_64")
other = ("any",)
# Output
output = True
verbose = False
# Files
blacklist = docs + "/blacklist.txt"
whitelist = docs + "/whitelist.txt"
pending = docs + "/pending"
rsync_blacklist = docs + "/rsyncBlacklist"
# Classes and Exceptions
class NonValidFile(ValueError): pass
class NonValidDir(ValueError): pass
class NonValidCommand(ValueError): pass
class Package:
""" An object that has information about a package. """
package_info={ "name" : False,
"version" : False,
"release" : False,
"arch" : False,
"license" : False,
"location": False}
def __setitem__(self, key, item):
return self.package_info.__setitem__(key, item)
def __getitem__(self, key):
return self.package_info.__getitem__(key)
def __unicode__(self):
return str(self.package_info)
|