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 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132
|
#!/usr/bin/env python3
# software-properties - graphical abstraction of the sources.list
#
# Copyright (c) 2007 Canonical Ltd.
#
# Author: Jonathan Riddell <jriddell@ubuntu.com>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as
# published by the Free Software Foundation; either version 2 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
# USA
from __future__ import print_function
import gettext
import os
import sys
import aptsources
from aptsources.sourceslist import SourcesList
#sys.path.append("@prefix@/share/update-manager/python")
from softwareproperties.kde.SoftwarePropertiesKDE import SoftwarePropertiesKDE
from softwareproperties.ppa import DEFAULT_KEYSERVER
from PyKDE4.kdecore import ki18n, KAboutData, KCmdLineArgs , KCmdLineOptions
from PyKDE4.kdeui import KApplication, KMessageBox
class OptionParsed:
debug = False
massive_debug = False
no_update = False
enable_component = ""
keyserver = DEFAULT_KEYSERVER
#--------------- main ------------------
if __name__ == '__main__':
_ = gettext.gettext
appName = "softwarepropertieskde"
catalog = "software-properties"
programName = ki18n (b"Software Sources")
version = "0.74"
description = ki18n (b"Software Sources List editor")
license = KAboutData.License_GPL
copyright = ki18n (b"(c) 2007 Canonical Ltd.")
text = ki18n (b"none")
homePage = "https://launchpad.net/software-properties"
bugEmail = ""
data_dir = "/usr/share/software-properties/"
aboutData = KAboutData (appName, catalog, programName, version, description,
license, copyright, text, homePage, bugEmail)
KCmdLineArgs.init (sys.argv, aboutData)
opts = KCmdLineOptions()
opts.add ("debug", ki18n(b"Print some debug information to the command line"))
opts.add ("massive-debug", ki18n(b"Print a lot of debug information to the command line"))
opts.add ("dont-update", ki18n(b"No update on repository change (useful if called from an external program)"))
opts.add ("enable-component <name>", ki18n(b"Enable the specified component of the distro's repositories"), "component_arg")
opts.add ("enable-ppa <name>", ki18n(b"Enable PPA with the given name"), "ppa_arg")
opts.add ("keyserver <url>", ki18n(b"URL of keyserver"), "keyserver_url")
opts.add ("attach <WinID>", ki18n(b"Win ID to act as a dialogue for"), "attach_arg")
opts.add ("data-dir <data_dir>", ki18n(b"data directory for UI files"), data_dir)
KCmdLineArgs.addCmdLineOptions(opts)
#print("no update" + str(options.no_update))
# Check for root permissions
if os.geteuid() != 0:
kapp = KApplication()
text = "Please run this software with administrative rights. To do so, run this program with kdesudo."
title = "Need administrative powers"
msgbox = KMessageBox.sorry(None, text, title, KMessageBox.Notify)
sys.exit(1)
localesApp="software-properties"
localesDir="/usr/share/locale"
gettext.bindtextdomain(localesApp, localesDir)
gettext.textdomain(localesApp)
args = KCmdLineArgs.parsedArgs()
afile = ""
options = OptionParsed #FIXME set debug, massive_debug
if args.count() >= 1:
afile = args.arg(0)
afile = str(afile)
attachWinID = None
if args.isSet("debug") == True:
options.debug = True
if args.isSet("massive-debug") == True:
options.massive_debug = True
if args.isSet("dont-update") == True:
options.no_update = True
if args.isSet("attach") == True:
attachWinID = args.getOption("attach")
if args.isSet("keyserver"):
options.keyserver = str(args.getOption("keyserver"))
if args.isSet("data-dir"):
data_dir = str(args.getOption("data-dir"))
if args.isSet("enable-ppa"):
app = SoftwarePropertiesKDE(datadir=data_dir, options=options, file=afile)
options.enable_ppa = str(args.getOption("enable-ppa"))
app.add_source_from_line("ppa:%s" % options.enable_ppa)
app.sourceslist.save()
elif args.isSet("enable-component") == True:
sourceslist = SourcesList()
options.enable_component = str(args.getOption("enable-component"))
distro = aptsources.distro.get_distro()
distro.get_sources(sourceslist)
distro.enable_component(options.enable_component)
sourceslist.save()
print("Enabled the %s component" % options.enable_component)
else:
app = SoftwarePropertiesKDE(datadir=data_dir, options=options, file=afile, attachWinID=attachWinID)
app.run()
sys.exit(app.modified_sourceslist)
|