~pitti/aptdaemon/pkcompat-enhancements

« back to all changes in this revision

Viewing changes to aptdaemon/__init__.py

  • Committer: sebi at glatzor
  • Date: 2009-06-22 16:30:22 UTC
  • mfrom: (145.1.5 main)
  • Revision ID: sebi@glatzor.de-20090622163022-3uc7v20zrx3m4j5c
Merge local changes

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/env python
2
2
# -*- coding: utf-8 -*-
3
 
"""
4
 
main - Core components of aptdaemon
5
 
Copyright (C) 2008 Sebastian Heinlein <devel@glatzor.de>
6
 
 
7
 
This program is free software; you can redistribute it and/or modify
8
 
it under the terms of the GNU General Public License as published by
9
 
the Free Software Foundation; either version 2 of the License, or
10
 
any later version.
11
 
 
12
 
This program is distributed in the hope that it will be useful,
13
 
but WITHOUT ANY WARRANTY; without even the implied warranty of
14
 
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
 
GNU General Public License for more details.
16
 
 
17
 
You should have received a copy of the GNU General Public License along
18
 
with this program; if not, write to the Free Software Foundation, Inc.,
19
 
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20
 
"""
 
3
"""Transaction based daemon and clients for package management tasks."""
 
4
# Copyright (C) 2008-2009 Sebastian Heinlein <devel@glatzor.de>
 
5
#
 
6
# This program is free software; you can redistribute it and/or modify
 
7
# it under the terms of the GNU General Public License as published by
 
8
# the Free Software Foundation; either version 2 of the License, or
 
9
# any later version.
 
10
#
 
11
# This program is distributed in the hope that it will be useful,
 
12
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
# GNU General Public License for more details.
 
15
#
 
16
# You should have received a copy of the GNU General Public License along
 
17
# with this program; if not, write to the Free Software Foundation, Inc.,
 
18
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21
19
 
22
20
__author__  = "Sebastian Heinlein <devel@glatzor.de>"
23
21
__state__   = "experimental"