~mvo/unattended-upgrades/mvo

10 by Michael Vogt
* made a debian package, added proper copyright notice
1
#!/usr/bin/env python
2
3
from distutils.core import setup
48 by Michael Vogt
* fix i18n and add build-dependency to python-distutils-extra
4
from DistUtilsExtra.command import *
10 by Michael Vogt
* made a debian package, added proper copyright notice
5
import glob
6
import os
7
8
    
9
setup(name='unattended-upgrades', version='0.1',
122.1.8 by Michael Vogt
add updates-on-shutdown-gtk command
10
      scripts=['unattended-upgrade',
11
               'updates-on-shutdown-gtk'
12
               ],
122 by Michael Vogt
UnattendedUpgrades/Progress.py:
13
      packages = ['UnattendedUpgrades'
14
                 ],
18 by Michael Vogt
* don't ship the apt conf file (yet)
15
      data_files=[
23 by Michael Vogt
* provide example config
16
		  ('../etc/apt/apt.conf.d/',
17
                   ["data/50unattended-upgrades"]),
13 by Michael Vogt
* logrotate script
18
                  ('../etc/logrotate.d/',
50.1.1 by Mathias Gug
Add debconf question to ask whether automatic updates should be configured
19
                   ["data/logrotate.d/unattended-upgrades"]),
20
                  ('../usr/share/unattended-upgrades/',
107 by Michael Vogt
ensure that unattended-upgrade is finished on shutdown
21
                   ["data/20auto-upgrades",
122.1.7 by Michael Vogt
add multiple UIs
22
                    "unattended-upgrade-shutdown",
126 by Michael Vogt
merged from the refactor branch, split propperly into three subpackages
23
                    "data/updates-on-shutdown-gtk.ui",
122.1.7 by Michael Vogt
add multiple UIs
24
                    ]),
88.1.1 by Michael Vogt
* fix lintian warnings
25
                  ('../usr/share/man/man8/',
26
                   ["man/unattended-upgrade.8"]),
114 by Michael Vogt
* pm/sleep.d/10_unatteded-upgrades-hibernate:
27
                  ('../etc/pm/sleep.d/',
134 by Michael Vogt
* data/unattended-upgrades.schemas.in:
28
                   ["pm/sleep.d/10_unattended-upgrades-hibernate"]),
29
                  ('share/gnome/shutdown',
30
                   ["data/updates-on-shutdown-gtk.sh"]),
48 by Michael Vogt
* fix i18n and add build-dependency to python-distutils-extra
31
                  ],
32
      cmdclass = { "build" : build_extra.build_extra,
33
                   "build_i18n" :  build_i18n.build_i18n }
10 by Michael Vogt
* made a debian package, added proper copyright notice
34
      )
35
36