software-properties-0.92.36/0000775000000000000000000000000012322727601012611 5ustar software-properties-0.92.36/setup.cfg0000664000000000000000000000117212322725530014432 0ustar [build_i18n] domain=software-properties desktop_files=[("share/applications", ("data/software-properties-gtk.desktop.in", "data/software-properties-gnome.desktop.in", "data/software-properties-drivers.desktop.in", "data/software-properties-kde.desktop.in",), ) ] xml_files=[ ("share/mime/packages", ("data/mime/apt.xml.in",)), ("share/polkit-1/actions/", ("data/com.ubuntu.softwareproperties.policy.in",)), ] bug_contact="Sebastian Heinlein " [sdist] formats = bztar software-properties-0.92.36/software-properties-gtk0000775000000000000000000001024612222774777017370 0ustar #!/usr/bin/env python3 # software-properties - graphical abstraction of the sources.list # # Copyright (c) 2004,2005 Canonical # 2004,2005 Michiel Sikkes # # Author: Michiel Sikkes # Michael Vogt # # 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 import gettext import os import sys import locale from optparse import OptionParser import aptsources from aptsources.sourceslist import SourcesList #sys.path.append("@prefix@/share/update-manager/python") from softwareproperties.gtk.SoftwarePropertiesGtk import SoftwarePropertiesGtk from softwareproperties.ppa import DEFAULT_KEYSERVER if __name__ == "__main__": _ = gettext.gettext # Begin parsing of options parser = OptionParser() parser.add_option ("-d", "--debug", action="store_true", dest="debug", default=False, help="Print some debug information to the command line") parser.add_option ("-m", "--massive-debug", action="store_true", dest="massive_debug", default=False, help="Print a lot of debug information to the " "command line") parser.add_option ("-n", "--no-update", action="store_true", dest="no_update", default=False, help="No update on repository change (useful if called "\ "from an external program).") parser.add_option("-t", "--toplevel", action="store", type="string", dest="toplevel", help="Set x-window-id of the toplevel parent for the "\ "dialog (useful for embedding)") parser.add_option("-e", "--enable-component", action="store", type="string", dest="enable_component", help="Enable the specified component of the distro's "\ "repositories") parser.add_option("--open-tab", "", action="store", type="string", default=None, help="Open specific tab number on startup") parser.add_option("--enable-ppa", "", action="store", type="string", default=None, help="Enable PPA with the given name") parser.add_option("-k", "--keyserver", dest="keyserver", default=DEFAULT_KEYSERVER, help="URL of keyserver. Default: %default") parser.add_option("--data-dir", "", action="store", type="string", default="/usr/share/software-properties/", help="Use data files (UI) from the given directory") (options, args) = parser.parse_args() try: locale.setlocale(locale.LC_ALL, '') except locale.Error as e: sys.stderr.write('Cannot set locale: %s\n' % str(e)) localesApp="software-properties" gettext.textdomain(localesApp) # force new files to be 644 (LP: #497778) os.umask(0o022) file = None if len(args) > 0: file = args[0] if options.enable_ppa: app = SoftwarePropertiesGtk(datadir=options.data_dir, options=options, file=file) app.add_source_from_line("ppa:%s" % options.enable_ppa) app.sourceslist.save() elif options.enable_component: print(_("The --enable-component/-e command-line switch has been deprecated. " "Instead of 'software-properties-gtk -e multiverse' you can use \n'add-apt-repository multiverse'")) sys.exit(1) else: app = SoftwarePropertiesGtk(datadir=options.data_dir, options=options, file=file) app.run() sys.exit(app.modified_sourceslist) software-properties-0.92.36/KDE-BUGS-TODO0000664000000000000000000000471412222774777014465 0ustar Things I've noticed: bug: edit comment on a disabled 3rd party repo and it becomes enabled bug: gtk frontend has two on_treeview_sources_cursor_changed, not sure which is correct, probably second bug: newly selected mirrors are not put into combo box bug: add_key always returns true we should use gpg --dry-run before too bug: gtk frontend UI strings don't translate issue: may want to add a gtk crash handler TODO: server combobox changed i18n adept integration crash dialogue drag and drop for sources list cdrom listview needs implementing (both frontends) insert CD support, somehow various functions in the mirror dialogue: custom mirrors, edit, find fastest etc. DialogMirror.py should be abstracted for frontend independence jriddell, 2007-02 WON'T FIX: issue: no way to set source code back to inconsistent state, so checkbox needs tristate turned off rationale: would add to much complexity. the inconsistent state should only be visible if the user made some custom modifications. so we would have to keep a history of all changes and take mulitiple inconsistent states into account. finally there is a global revert button. FIXED: packaging bug: self.get_source_code_state() never returns false, only None (fixed in backend and KDE) bug: popcon state doesn't get saved (or loaded) bug: checkbutton source code sometimes can't be ticked bug: rm /etc/apt/sources.list; start up; all Update tickboxes disabled and never become enabled bug: after adding repo, doesn't show change bug: editing 3rd party archives doesn't show changes bug: gtk checkboxes are never marked as inconsistent bug: click 3rd party enable/disable twice and it doesn't get back to original state bug: on_button_revert_clicked doesn't revert the UI Was a transistion error. The current solution is not nice, but works: reload the isv_sources and show_distro after each change :/ It would be nice to store the meta data anywhere else, so that we won't have to recreate the ui elements. bug? untick "main" and main doesn't go away was a problem with empty sources.list files. python-apt now handles this corner case correctly ANSWERED: question: where do update radio buttons get disabled/enabled at program start? answer: SoftwareProperties.get_update_automation_level() and SoftwarePropertiesGtk.show_auto_update_level() issue: DialogAddSourcesList obsolete? answer: No, it is used to open sources.list files (by drag and drop or double click) software-properties-0.92.36/data/0000775000000000000000000000000012322727601013522 5ustar software-properties-0.92.36/data/software-properties-kde.desktop.in0000664000000000000000000000060512222774777022327 0ustar [Desktop Entry] _Name=Software Sources _GenericName=Software Sources _Comment=Configure the sources for installable software and updates Exec=software-properties-kde Icon=applications-other NoDisplay=true Terminal=false X-MultipleArgs=false Type=Application Categories=System;Settings; MimeType=text/x-apt-sources-list; X-KDE-SubstituteUID=true X-Ubuntu-Gettext-Domain=software-properties software-properties-0.92.36/data/icons/0000775000000000000000000000000012322727601014635 5ustar software-properties-0.92.36/data/icons/24x24/0000775000000000000000000000000012322727601015420 5ustar software-properties-0.92.36/data/icons/24x24/apps/0000775000000000000000000000000012322727601016363 5ustar software-properties-0.92.36/data/icons/24x24/apps/software-properties.png0000664000000000000000000000222012222774777023130 0ustar PNG  IHDRw=sBIT|dGIDAT]he|nsS764)*JL# #1Qn %HЊ:tnsgy}:m66d|&S>咰t #1L1c6A^]CӒCa|/lҥd3Cr*sx*G #OԹLl)s 8s7 F=4ly¢I`Z+ yZZ+4,>:^TA˦XE(HN_c|hM s]faq8x°eAx#a8##BT$}p[ <] |xZK j> Cg.g4p"Qg*,Z[mAb6ä_{mjkV@gF<]N@hKeɟEn!qQ4hA)f>?wGhi%h!(a-aNg) ]gYy9j OkOkOeiHDBIk#3*1kyZ+O+|rpwH')ST|Mqh͠뺄c; cFPFi|B~h2ɎgE֍p'WoVe#Hp?@#%Zi2ԖHm's( ?WuؖdE9q& Ʋ. ֊9Bk8[kCE'\]vuyS'! BkkcΔc1^Ǧs}#~1oL=%IENDB`software-properties-0.92.36/data/icons/64x64/0000775000000000000000000000000012322727601015430 5ustar software-properties-0.92.36/data/icons/64x64/apps/0000775000000000000000000000000012322727601016373 5ustar software-properties-0.92.36/data/icons/64x64/apps/software-properties.png0000664000000000000000000001045412222774777023150 0ustar PNG  IHDR@@iqsBIT|dIDATxip]y{]t%Y%o`L gJ(! !aB2II;YɤNi'K'4dHB$FB l0%,ɲ^IWw9},-dIg3s{Ϝ{?? \.p \`q70j|T{^վVPZck^i{6En3mzǭ r{ #Nz.f<,btrqfX]g=.?;Ϟ?+o27|k ?>l}Mwg&3v ٫Y`q DG&ulS̲*39*g]揨z~ Fl;./L.ԲTK_,Y[*, _*-BK='ȼ9lw<IT|>/Vu^i5JIm wQTcO-GDIs"Zͷf&WE?7|8d z@X4 㭍զ| G i:.[ǀZ'PX~[{1 8.Ƹqb;d>cdÓ+ F%Yb)`Ghl3Cw,= K rH *hpm"Mr-W4Ed8d:K"K2jcm%8&dnljom&&!oD_xsԇY2F 4ۀT,VF$4ŎhU1. ϖ~pUDWS~o8r0:S,+}JٰrzCֱ :,1rB HMjA{Y^$hq65ЈɊ ?=hhi.>v4VX\`)W;yw*DZat_{x[).h]xC@0:SD䰡 lPB3anh_r~kWm6z:I<t5W:\;/oxOs\gy[#VEm86]Ѐq6k4Ü1o Gy빸tJash5Ug^zΘ(X'<#AXrӬzu]-+rt:blbV4F;j%PgNuAo "lPZv}|Rnk -gZPy"PJ?? KgM PS%am穗ߍGp|"v^+`pȁ+hQxJobuGU쥰f,Dҭ1'1hHH)R4̌]FK~q@!4`LJOh0C^u|ˉ);8 8ձ]s\I=d$^`и%D1:^߁\""EPBHLnxAI>&863&AB rew7eS<@)\ G U|0S"f/dp|Cqbzᨂs@@Vm0$i*" Jc 'D*\]ᧇ@GlLw0JT,rpxЍ z{^l uߺ=Mfƙ @dO4\)(" $cIdA*uC[),i&ghm*v1S)-ChUI;'ǜ@I)<"_3wmߞF-\|U˖Hq5MEh3|WK->^_YЊ˒CKX>P-񭃵>a&gڗǯ߾i6w񮭃dFە 43oZ)سK6ޒiD7{Gf{h?S08S?P5?rot]OcV ͙L.u\8A~X^ZWg*U_駿(}BH-w @eTC_ Rkndat#L(C": TH/~ǩw_:O?YK8_ hIENDB`software-properties-0.92.36/data/icons/scalable/0000775000000000000000000000000012322727601016403 5ustar software-properties-0.92.36/data/icons/scalable/apps/0000775000000000000000000000000012322727601017346 5ustar software-properties-0.92.36/data/icons/scalable/apps/recommended-driver.svg0000664000000000000000000001327512222774777023671 0ustar image/svg+xml software-properties-0.92.36/data/icons/scalable/apps/other-driver.svg0000664000000000000000000003552612222774777022533 0ustar image/svg+xml software-properties-0.92.36/data/icons/scalable/apps/disable-device.svg0000664000000000000000000001370312222774777022752 0ustar image/svg+xml software-properties-0.92.36/data/icons/scalable/apps/software-properties.svg0000664000000000000000000005041212222774777024134 0ustar image/svg+xml software-properties-0.92.36/data/icons/48x48/0000775000000000000000000000000012322727601015434 5ustar software-properties-0.92.36/data/icons/48x48/apps/0000775000000000000000000000000012322727601016377 5ustar software-properties-0.92.36/data/icons/48x48/apps/software-properties.png0000664000000000000000000000516512222774777023157 0ustar PNG  IHDR00WsBIT|d ,IDAThil\f2;=q,PBJR@*Җ$TPh臶P h EP5; !!1߻Ì'3/ roιY8#g䌜3r "&xF@ Av6~6[ 2HsDžشx X뫄eH˩ʝ E)EA!_YL/倧۫PPyjܔ+9Ӆͤȁ(yA0-(fǧrlb})-=(nW}z,1i#`owMK;v醾:vN)U7W Yćzc.ٱÛx͡IR䯛cĔTaa@/L;|5S ("%@&K>憖8>!mi9H*~J)OLıQ0\}x Š J1Z(FﴋrDAu Ԇںؚd킞jh׬+(,E6lO1,r1fsRaғ2 Zϲ=)5pr&>4T94o| ]0`m¥Mb(t:9b 4Zo| ^[ O"7c%\6G,FV֌fDݬ^m>qQZQR.}[Gв]q|8r&Br43ʶY0Ol6u++79>NUV(84鋂ne mb'Y,BmDql ǶDH%*rıp KV1}ǵW>ԍxC4!W$sI\p,W|ZPSjXq<=@6?Cӟ'4t"⍃ MYtv*`y (]Áw(%*j6'I ;^8lCyd)':z U.l.RM\>K6SSG5Ȃ9;82|Kvŋa&B*fwĢ>ŜC^DZ0:ca1Ơ,|I[Ȼ6U8rƗdz(KÍɃTM|K2[Z4p=p]E Ky5#L c\vubeHgٰ:Y%}:04ZrRY?/z=_¶SHڠ-l$Hǩ4>;Ƴ~)Ha^C?K[ޢ9A4X%ۛ_E)ƃDc6*%om.!ҙyӱ,S9K- U7?(mj2awv=뇊6@;8p@hsn6o7oٿH}ld,BG޹)1fIs)Em GҲI!s;}R^uRe!ˍ11`E 晞pg.QIENDB`software-properties-0.92.36/data/icons/16x16/0000775000000000000000000000000012322727601015422 5ustar software-properties-0.92.36/data/icons/16x16/apps/0000775000000000000000000000000012322727601016365 5ustar software-properties-0.92.36/data/icons/16x16/apps/software-properties.png0000664000000000000000000000127312222774777023141 0ustar PNG  IHDRasBIT|drIDAT8KhQN2i$1RP"nD(.wvҽ\^p+B\YDV]h4M;13.>9 ͣ[0rkսr>D֖!M`duΈj@14y7 v, &c"yG5TR CvZj+7e%}2]qSY Xvwm(Q_p\ (-/ne6&EG.AFڜ 0Z*0 tD[s,ޯ5ƿuw4ZIR0䉹I*spݓxՎmVJJH_"ehNGYf+PAṈ)Ck91z.Zw[=J;^-WakӴ [ Ք+sF ~VkYxbh@JJ2n.!iܟ8ˋƄ91)63D4, eu!rJr()} 678_ 銠4ގUӓrȺn`37f~ygɜ@NIENDB`software-properties-0.92.36/data/com.ubuntu.SoftwareProperties.conf0000664000000000000000000000122612222774777022356 0ustar software-properties-0.92.36/data/designer/0000775000000000000000000000000012322727601015322 5ustar software-properties-0.92.36/data/designer/dialog_mirror.ui0000664000000000000000000001075412222774777020540 0ustar dialog_mirror 0 0 428 296 Choose a Download Server true 9 6 0 6 0 6 Qt::Vertical QSizePolicy::Fixed 113 16 Remove Edit Add _Select Best Server Qt::Vertical 133 21 true 1 Protocol: Qt::Horizontal QDialogButtonBox::Cancel|QDialogButtonBox::Ok buttonBox accepted() dialog_mirror accept() 248 254 157 274 buttonBox rejected() dialog_mirror reject() 316 260 286 274 software-properties-0.92.36/data/designer/main.ui0000664000000000000000000003622512222774777016634 0ustar vbox_updates_frame 0 0 605 408 Software Sources 9 6 0 Kubuntu Software 9 6 <b>Downloadable from the Internet</b> 9 6 QFrame::NoFrame QFrame::Raised 0 6 6 0 Source code false Download from: Installable from CD-ROM/DVD 9 6 To install from a CD-ROM or DVD, insert the medium into the drive. true 0 false true true 1 1 Qt::Vertical 20 40 Other Software 9 6 true false true 1 Add... Add CD-ROM... false Edit... false Remove Updates 9 6 <b>Ubuntu updates</b> 9 6 6 0 QFrame::NoFrame QFrame::Raised 0 6 <b>Automatic updates</b> 9 6 Chec_k for updates: Only _notify about available updates _Download all updates in the background Install _security updates without confirmation <b>Release upgrade</b> Show new distribution releases: Never Normal Releases Long term support releases only Authentication 9 6 true false true 1 <b>Trusted software providers</b> Qt::Horizontal 171 20 _Import Key File... Remove Restore _Defaults Statistics 9 6 Qt::Vertical 561 321 TextLabel true Submit statistical information Qt::Horizontal QDialogButtonBox::Close|QDialogButtonBox::Reset software-properties-0.92.36/data/designer/dialog_add.ui0000664000000000000000000000345212222774777017753 0ustar dialog_add 0 0 484 188 Add APT repository true 9 6 Qt::Horizontal QDialogButtonBox::Cancel|QDialogButtonBox::NoButton|QDialogButtonBox::Ok buttonBox accepted() dialog_add accept() 248 254 157 274 buttonBox rejected() dialog_add reject() 316 260 286 274 software-properties-0.92.36/data/designer/dialog_edit.ui0000664000000000000000000000575112222774777020154 0ustar dialog_edit 0 0 349 197 Edit Source true 9 6 Qt::Horizontal QDialogButtonBox::Cancel|QDialogButtonBox::NoButton|QDialogButtonBox::Ok <b>Type:</b> <b>URI:</b> <b>Distribution:</b> <b>Components:</b> <b>Comment:</b> buttonBox accepted() dialog_edit accept() 248 254 157 274 buttonBox rejected() dialog_edit reject() 316 260 286 274 software-properties-0.92.36/data/software-properties-gnome.desktop.in0000664000000000000000000000072612222774777022675 0ustar [Desktop Entry] _Name=Software & Updates _GenericName=Software & Updates _Comment=Configure the sources for installable software and updates _Keywords=Drivers;Repositories;Repository;PPA; Exec=software-properties-gtk Icon=software-properties Terminal=false X-MultipleArgs=false Type=Application OnlyShowIn=GNOME; Categories=GNOME;GTK;Settings;X-GNOME-SystemSettings; MimeType=text/x-apt-sources-list; X-KDE-SubstituteUID=true X-Ubuntu-Gettext-Domain=software-properties software-properties-0.92.36/data/mime/0000775000000000000000000000000012322727601014451 5ustar software-properties-0.92.36/data/mime/apt.xml.in0000664000000000000000000000042712222774777016406 0ustar Software sources list software-properties-0.92.36/data/gtkbuilder/0000775000000000000000000000000012322727601015656 5ustar software-properties-0.92.36/data/gtkbuilder/dialog-cache-outofdate.ui0000664000000000000000000001502012222774777022522 0ustar 6 False center-on-parent dialog True True True 12 True 6 12 True 0 0 gtk-dialog-info 6 False 0 True True 0 0 <b><big>The information about available software is out-of-date</big></b> To install software and updates from newly added or changed sources, you have to reload the information about available software. You need a working internet connection to continue. True True True False False 1 1 True end True True True True True False True 0 0 True 2 True gtk-refresh False False 0 True _Reload True False False 1 False False 0 gtk-close True True True False True False False 1 False end 0 cancelbutton1 okbutton1 software-properties-0.92.36/data/gtkbuilder/dialog-mirror.ui0000664000000000000000000003771112222774777021014 0ustar 6 Choose a Download Server center-on-parent dialog True 6 True 6 12 True 6 True 6 334 211 True True in True True False True 0 True True 12 True Protocol: False False 0 True 1 0 False 1 0 True 12 6 gtk-add True True False True False False 0 gtk-edit True False True False True False False 1 gtk-remove True False True False True False False 2 False 0 _Select Best Server True True False Performs a connection test to find the best mirror for your location True False False 1 False 1 0 1 True end gtk-cancel True True True False True False False 0 Choose _Server True False True True False True False False 1 False end 0 cancelbutton2 button_mirror_choose 6 False True center-on-parent True dialog True 6 True 6 12 True <b><big>Testing download servers</big></b> A series of tests will be performed to find the best mirror for your location. True True False False 0 True 6 True 0.10000000149 False False 0 True 0 True end False False 1 1 1 True end gtk-cancel True True True True True False False 0 False end 0 button_test_cancel software-properties-0.92.36/data/gtkbuilder/dialog-cdrom-progress.ui0000664000000000000000000000644512222774777022450 0ustar 6 Scanning CD-ROM False True dialog True 12 True 6 12 True True False False 0 350 True 0.10000000149 False False 1 1 True end gtk-close True True True False True False False 0 False end 0 button_cdrom_close software-properties-0.92.36/data/gtkbuilder/dialog-add-sources-list.ui0000664000000000000000000001424312222774777022657 0ustar 6 False dialog True 12 True 6 12 True 0 0 gtk-dialog-question 6 False 0 True 12 True 0 True False False 0 200 True True automatic automatic in True True False True 1 1 1 True end _Replace True True True False True False False 0 gtk-cancel True True True False True False False 1 gtk-add True True True False True False False 2 False end 0 button_replace button_cancel button_add software-properties-0.92.36/data/gtkbuilder/main.ui0000664000000000000000000016643412322725530017156 0ustar Display immediately 0 Display weekly 7 Display every two weeks 14 For any new version For long-term support versions Never Display immediately Download automatically Download and install automatically Daily 1 Every two days 2 Weekly 7 Every two weeks 14 Never 0 To install from a CD-ROM or DVD, insert the medium into the drive. False 6 Software & Updates center True False True True 6 True False 12 18 True False 0 none True False 6 12 True False 18 True False 6 True False 6 True False 6 False True 0 Source code False True True False False True 0 True False True 1 False True 0 True False 12 True False Download from: False False 0 True False True True 1 False False 1 False True 0 True False <b>Downloadable from the Internet</b> True False True 0 True False 0 none True False 6 12 True False 6 True False True True in True False True 6 False word 6 6 False textbuffer1 True True 0 75 True True in 109 True True False True True True 1 True True 0 True False <b>Installable from CD-ROM/DVD</b> True True True 1 True False False True False 12 6 True True in True True False True True True 0 True False True False 6 start Add... False True True True True False False False 0 Edit... False True True True True False False False 1 gtk-remove False True True True True False True False False 2 True True 0 True False end Add Volume... False True True True False False False end 0 True True 1 False True 1 1 True False Other Software 1 False True False 12 18 True False 0 none True False 6 12 True False 6 True False Install updates from: True False True 0 True False 6 12 True False 6 True False 6 True False 1 Automatically check for updates: False False 0 True False model_updates_interval 0 True True 1 False False 0 True False 6 True False 1 When there are security updates: False False 0 True False model_security_updates_display_behavior 0 True True 1 False False 1 True False 6 True False 1 When there are other updates: False False 0 True False model_normal_updates_display 0 True True 1 False False 2 True True 1 True False 12 True False 6 True False 1 Notify me of a new Ubuntu version: False False 0 True False model_release_upgrades 0 True True 1 False False 2 2 True False Updates 2 False True False 12 6 True False 0 <b>Trusted software providers</b> True False False 0 True False True False False False 0 True False 6 True True in True True Keys are used to authenticate the correct source of software and so protect your computer from malicious software False True True True 0 True False 6 True False 6 start _Import Key File... False True True True True Import the public key from a trusted software provider Import the public key from a trusted software provider False True False False 0 gtk-remove False True True True False True False False 1 True True 0 True False end Restore _Defaults False True True True True Restore the default keys of your distribution Restore the default keys of your distribution False True False False end 0 True True 1 False True 1 True True 1 True True 1 3 True False Authentication 3 False True False 12 vertical 6 True True in True False True False True vertical True True 0 True False 6 True False start 0 No proprietary drivers are in use. True True 0 False True 1 True False 0 <small>A proprietary driver has private code that Ubuntu developers can't review or improve. Security and other updates are dependent on the driver vendor.</small> True True 50 False True 2 4 True False Additional Drivers 5 False True True 0 True False 6 end Re_vert False True False True True True False True False False end 0 gtk-close False True True True True False True False False end 1 False True 1 software-properties-0.92.36/data/gtkbuilder/dialog-add.ui0000664000000000000000000002137312222774777020227 0ustar 6 False True dialog True True 12 True 6 12 True 0 gtk-dialog-question 6 False 0 True 12 True True 0 <big><b>Enter the complete APT line of the repository that you want to add as source</b></big> True True True False False 0 True True 0 True True True False False 1 True 10 True APT line: False False 0 True True True 1 False 2 1 1 True end gtk-cancel True True True False True False False 0 True False True True True True False True 0 0 True 2 True gtk-add False False 0 True _Add Source True False False 1 False False 1 False end 0 button5 button_add_source software-properties-0.92.36/data/gtkbuilder/dialog-edit-source.ui0000664000000000000000000002504312222774777021720 0ustar Binary Source 6 Edit Source True 400 dialog True True 12 True 6 7 2 12 6 True 1 <b>Type:</b> True 1 2 GTK_FILL True 1 <b>URI:</b> True 3 4 GTK_FILL True 1 <b>Distribution:</b> True 4 5 GTK_FILL True 1 <b>Components:</b> True 5 6 GTK_FILL True True True 1 2 3 4 True True True 1 2 5 6 True model1 0 1 2 1 2 GTK_FILL GTK_FILL True 1 <b>Comment:</b> True 6 7 GTK_FILL True True True 1 2 6 7 True True True 1 2 4 5 1 True end gtk-cancel True True True False True False False 0 gtk-ok True True True True True False True False False 1 False end 0 button7 button_edit_ok software-properties-0.92.36/data/com.ubuntu.softwareproperties.policy.in0000664000000000000000000000203212222774777023431 0ustar Software Properties https://launchpad.net/software-properties software-properties <_description>Write Configuration <_message>To change software repository settings, you need to authenticate. auth_admin auth_admin auth_admin_keep software-properties-0.92.36/data/software-properties-gtk.desktop.in0000664000000000000000000000113112322725530022324 0ustar [Desktop Entry] _Name=Software & Updates _GenericName=Software & Updates _Comment=Configure the sources for installable software and updates _Keywords=Drivers;Repositories;Repository;PPA; Exec=software-properties-gtk Icon=software-properties Terminal=false X-MultipleArgs=false Type=Application NotShowIn=GNOME; Categories=GNOME;GTK;Settings;X-GNOME-SystemSettings;X-GNOME-Settings-Panel;X-Unity-Settings-Panel; X-GNOME-Settings-Panel=software-properties X-Unity-Settings-Panel=software-properties MimeType=text/x-apt-sources-list; X-KDE-SubstituteUID=true X-Ubuntu-Gettext-Domain=software-properties software-properties-0.92.36/data/software-properties-drivers.desktop.in0000664000000000000000000000057312322725530023226 0ustar [Desktop Entry] Keywords=Drivers; Exec=/usr/bin/software-properties-gtk --open-tab=4 Icon=jockey Terminal=false Type=Application NotShownIn=GNOME;Unity;KDE; Categories=X-XFCE;GTK;Settings;HardwareSettings Name=Additional Drivers Name[es]=Controladores adicionales Comment=Configure third-party and proprietary drivers Comment[es]=Configure controladores privativos y de terceros software-properties-0.92.36/data/com.ubuntu.SoftwareProperties.service0000664000000000000000000000017012222774777023066 0ustar [D-BUS Service] Name=com.ubuntu.SoftwareProperties Exec=/usr/lib/software-properties/software-properties-dbus User=root software-properties-0.92.36/AUTHORS0000664000000000000000000000057112222774777013703 0ustar Hackers ======= Michiel Sikkes Michael Vogt Translators =========== Jorge Bernal Jean Privat Martin Willemoes Hansen Zygmunt Krynicki Technical Author ================ Sean Wheller Icons ===== Jakub Steiner software-properties-0.92.36/setup.py0000775000000000000000000000134412222774777014347 0ustar #!/usr/bin/env python3 from setuptools import setup import glob from DistUtilsExtra.auto import * from DistUtilsExtra.command import * setup(name='software-properties', version='0.60', packages=[ 'softwareproperties', 'softwareproperties.dbus', 'softwareproperties.gtk', 'softwareproperties.kde', ], scripts=[ 'software-properties-gtk', 'software-properties-kde', 'add-apt-repository', ], data_files=[ ('lib/software-properties/', ['software-properties-dbus', ] ), ], test_suite="tests", ) software-properties-0.92.36/COPYING0000664000000000000000000004311012222774777013662 0ustar GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Library General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) 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 Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) year name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. , 1 April 1989 Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Library General Public License instead of this License. software-properties-0.92.36/debian/0000775000000000000000000000000012322727602014034 5ustar software-properties-0.92.36/debian/software-properties-kde.install0000664000000000000000000000034212222774777022226 0ustar debian/tmp/usr/share/software-properties/designer debian/tmp/usr/lib/python3*/*-packages/softwareproperties/kde/*.py debian/tmp/usr/bin/software-properties-kde debian/tmp/usr/share/applications/software-properties-kde.desktop software-properties-0.92.36/debian/rules0000775000000000000000000000134312222774777015133 0ustar #!/usr/bin/make -f PY3REQUESTED := $(shell py3versions -r) PY3DEFAULT := $(shell py3versions -d) # Run setup.py with the default python3 last so that the scripts use # #!/usr/bin/python3 and not #!/usr/bin/python3.X. PY3 := $(filter-out $(PY3DEFAULT),$(PY3REQUESTED)) python3 %: dh $@ --with python2,python3,translations override_dh_auto_clean: dh_auto_clean rm -rf build override_dh_auto_build: dh_auto_build set -ex; for python in $(PY3); do \ $$python setup.py build; \ done override_dh_auto_install: dh_auto_install set -ex; for python in $(PY3); do \ $$python setup.py install --root=$(CURDIR)/debian/tmp \ --install-layout=deb; \ done override_dh_python3: dh_python3 --shebang=/usr/bin/python3 software-properties-0.92.36/debian/source/0000775000000000000000000000000012322727601015333 5ustar software-properties-0.92.36/debian/source/format0000664000000000000000000000001412222774777016560 0ustar 3.0 (native)software-properties-0.92.36/debian/software-properties-kde.manpages0000664000000000000000000000005212222774777022351 0ustar debian/manpages/software-properties-kde.1 software-properties-0.92.36/debian/software-properties-gtk.manpages0000664000000000000000000000005112222774777022372 0ustar debian/manpages/software-properties-gtk.1software-properties-0.92.36/debian/changelog0000664000000000000000000025741412322726166015727 0ustar software-properties (0.92.36) trusty; urgency=medium * software-properties-kde : Work around crash in sip by skipping the + destructors of SIP objects. (LP: #1307170) -- Rohan Garg Mon, 14 Apr 2014 11:36:13 +0200 software-properties (0.92.35) trusty; urgency=low * Add "Additional Drivers" desktop file for the non {GNOME,Unity,KDE} flavors (LP: #1060543) - thanks to Unity193 -- Michael Vogt Fri, 04 Apr 2014 08:30:41 +0200 software-properties (0.92.34) trusty; urgency=medium * gnupg version 1.4.16 was changed not to require a trustdb with --trust-model set to always -- Brian Murray Fri, 28 Feb 2014 13:29:58 -0800 software-properties (0.92.33) trusty; urgency=medium * The new gtk doesn't wrap label by itself, do that for the drivers text -- Sebastien Bacher Mon, 10 Feb 2014 16:10:24 +0100 software-properties (0.92.32) trusty; urgency=low * data/software-properties-gtk.desktop.in: - Show in both GNOME control center and Unity control center (LP: #1257505) -- Robert Ancell Wed, 15 Jan 2014 16:44:57 +1300 software-properties (0.92.31) trusty; urgency=medium * Stop using deprecated GObject constructors with positional arguments. (https://wiki.gnome.org/PyGObject/InitializerDeprecations) -- Martin Pitt Fri, 10 Jan 2014 12:23:07 +0100 software-properties (0.92.30) trusty; urgency=low [ Brian Murray ] * Remove unneeded setting of modified_sourceslist. Thanks to Bruno Nova for the patch. [ Sebastien Bacher ] * do not crash for packages without a candidate -- Michael Vogt Tue, 07 Jan 2014 19:38:47 +0100 software-properties (0.92.29) trusty; urgency=low * debian/control: - depends on python-apt-common (>= 0.9), which is the version containing the trusty definition, without it you can't use add-apt-repository without error (lp: #1257765) - depends on python-pycurl, ppa.py uses it (lp: #1249080) -- Sebastien Bacher Wed, 04 Dec 2013 16:36:32 +0100 software-properties (0.92.28) saucy; urgency=low [ Bruno Nova ] * Ensure package sources are refreshed after modification Fixes Bug LP: #1075537 (and, indirectly, Bug LP: #782953 it seems). [ Brian Murray ] * Restore the removal of a line feed from a source (LP: #1239893) [ Jean-Baptiste Lallement ] * debian/manpages/add-apt-repository.1: Documented options -m and -s of add-apt-repository (LP: #1229092) [ Sebastien Bacher ] * softwareproperties/gtk/SoftwarePropertiesGtk.py: don't use the gtk-logout-helper command, it has been deprecated and dropped from the indicator-session binary, use gnome-session instead (lp: #1241210) -- Sebastien Bacher Mon, 21 Oct 2013 11:16:21 -0400 software-properties (0.92.27) saucy; urgency=low * support adding cloud-archive repositories using syntax like cloud-archive:havana (LP: #1233486) -- Scott Moser Sun, 06 Oct 2013 13:30:54 -0400 software-properties (0.92.26) saucy; urgency=low * SECURITY UPDATE: possible privilege escalation via policykit UID lookup race. - softwareproperties/dbus/SoftwarePropertiesDBus.py: pass system-bus-name as a subject instead of pid so policykit can get the information from the system bus. - CVE-2013-1061 -- Marc Deslauriers Wed, 18 Sep 2013 13:17:35 -0400 software-properties (0.92.25) saucy; urgency=low * Use python-distutils-extra in auto mode * Drop unused and obsolete help/ -- Jeremy Bicha Fri, 19 Jul 2013 21:40:58 -0400 software-properties (0.92.24) saucy; urgency=low * tests/test_dbus.py: Be slightly more tolerant in test_updates_interval, in order to work regardless of which tests were previously run. -- Colin Watson Wed, 26 Jun 2013 12:30:27 +0100 software-properties (0.92.23) saucy; urgency=low * tests/test_dbus.py: Clean up leakage between tests, and some tests that relied on leakage. * tests/test_lp.py: Skip online tests unless TEST_ONLINE environment variable is set. * debian/tests/run-tests: Force the tests to run in a UTF-8 locale, at least for now; tests/test_dbus.py gets unhappy otherwise. -- Colin Watson Tue, 25 Jun 2013 22:42:20 +0100 software-properties (0.92.22) saucy; urgency=low [ Colin Watson ] * debian/tests/run-tests: Show Xvfb log output if xvfb-run exits non-zero (which might mean Xvfb failed to start, or might mean tests failed). * debian/tests/run-tests: Work around LP #972324 by unsetting TMPDIR for xvfb-run and setting it again for the inferior command. * debian/tests/control: Depend on python-gi and python3-gi for test_dbus. [ Jeremy Bischa ] * Add a scalable icon which looks better in GNOME Shell. -- Barry Warsaw Tue, 25 Jun 2013 15:38:29 -0400 software-properties (0.92.21) saucy; urgency=low * Copy software-properties icon from Humanity (and Elementary) to replace the dated and unclear icon used if your icon theme doesn't include a replacement icon -- Jeremy Bicha Mon, 24 Jun 2013 14:15:40 +0200 software-properties (0.92.20) saucy; urgency=low [ Matthew Paul Thomas ] * Fix spelling of "occurred". [ Sami Jaktholm ] * softwareproperties/ppa.py - Use PycURL only with python2, not if urllib raises an unexpected exception in python3. (LP: #1111291) - Catch http.client.HTTPExceptions from urlopen and raise a PPAException to show a formatted error message instead of traceback. [ Robert Roth ] * softwareproperties/SoftwarePropterties.py: Remove white space from comments for sources (LP: #1185144) * Use two-line items in other sources (LP: #930827) * Deprecate --enable-component option, superseded by add-apt-repository. (LP: #1170114) [ Martin Pitt ] * Replace obsolete "scrollkeeper" build dependency with rarian-compat. * debian/control: Bump Standards-Version to 3.9.4. * debian/tests/run-tests: Make failures in python 2 tests fatal. -- Martin Pitt Mon, 24 Jun 2013 12:52:34 +0200 software-properties (0.92.19) saucy; urgency=low [ Scott Kostyshak ] * Improve error message when more than one repository argument is given. (LP: #1178015) -- Barry Warsaw Tue, 28 May 2013 15:50:02 -0400 software-properties (0.92.18) saucy; urgency=low [ Dmitry Shachnev ] * Make Restart button restart the system, not shutdown it (LP: #1047424). [Johan Kiviniemi] * Add PPA keys to /etc/apt/trusted.gpg.d/{owner}-{ppa}.gpg (LP: #1182932) [ Sami Jaktholm ] * software-properties-gtk: Open APT cache and detect drivers in a background thread asynchronously when user opens the Additional Drivers tab. This speeds up the startup considerably. Fixes LP: #1073728. [ Michael Vogt ] * remove pre-build hook, autopkgtest will take care of running the tests -- Michael Vogt Mon, 27 May 2013 08:45:08 +0200 software-properties (0.92.17) raring; urgency=low * data/software-properties-gnome.desktop.in: - Use new "Software & Updates" name on GNOME too -- Jeremy Bicha Sun, 17 Mar 2013 01:59:58 -0400 software-properties (0.92.16) raring; urgency=low * Sync up DEP-8 test metadata with the fact that tests are now run via setup.py, not make (LP: #1153989). -- Colin Watson Fri, 15 Mar 2013 11:08:05 +0000 software-properties (0.92.15) raring; urgency=low [ Manish Sinha (मनीष सिन्हा) ] * lp:~manishsinha/software-properties/fix-874766-updates-tab-failed-auth: - Fixes LP: #874766 where after a failed authentication on Updates tab didn't revert the older values in ComboBox [ Brian Murray ] * To add-apt-repository add a patch from Winfield Trail for when the case a PPA does not have a signing key yet (LP: #968756) [ Shih-Yuan Lee (FourDollars) ] * Fix a typo in CountryInformation.py. (LP: #1138121) -- Michael Vogt Tue, 12 Mar 2013 09:35:08 +0100 software-properties (0.92.14.1) raring; urgency=low * Build-depend on python-setuptools. -- Matthias Klose Fri, 15 Feb 2013 20:01:57 +0100 software-properties (0.92.14) raring; urgency=low [ Stephen Kraemer ] * softwareproperties/gtk/SimpleGtkBuilderApp.py: Use GtkApplication to make this application a singleton. (LP: #1058070) [ Andrea Corbellini ] * Have add-apt-repository disable new deb-src entries by default (use -s to override this behavior). LP: #621977 [ Michael Vogt ] * test cleanups, i.e. python{,3} setup.py test works now instead of using a custom makefile [ Alberto Milone ] * Detect the current kernel and install the linux metapackage for it when we install a driver which depends on dkms. This uses a function provided by ubuntu-drivers-common. * Depend on ubuntu-drivers-common >= 1:0.2.75. [ Robert Roth ] * Do not encode the example source URL to avoid adding the 'b' prefix (lp: #1081279) * Do not use Shell=True unnecessarily in subprocess.Popen (lp: #1060192) -- Sebastien Bacher Thu, 14 Feb 2013 18:27:30 +0100 software-properties (0.92.13) raring; urgency=low * data/gtkbuilder/main.ui: Fixed alignment of combo boxes in Updates tab (LP: #1058059) -- Michael Spencer Tue, 06 Nov 2012 09:45:12 -0600 software-properties (0.92.12) raring; urgency=low * Add software-properties-gnome.desktop.in to keep Software Sources from showing in System Settings on GNOME -- Jeremy Bicha Wed, 07 Nov 2012 22:13:18 -0500 software-properties (0.92.11) raring; urgency=low * Force the python3 shebang to /usr/bin/python3. -- Colin Watson Thu, 01 Nov 2012 10:05:11 +0000 software-properties (0.92.10) raring; urgency=low * Remove unused import from tests/test_lp.py. * Add python-mock and python3-mock as dependencies of the DEP-8 test suite. -- Colin Watson Mon, 29 Oct 2012 13:51:14 +0000 software-properties (0.92.9) quantal; urgency=low * Call GnuPG with an appropriate --homedir argument (LP: #1060335) -- Adam Conrad Tue, 02 Oct 2012 11:57:31 -0600 software-properties (0.92.8) quantal; urgency=low * lp:~mvo/software-properties/recv-key-lp1016643: - ensure fingerprint check after recv-key (LP: #1016643) -- Michael Vogt Mon, 01 Oct 2012 19:33:35 +0200 software-properties (0.92.7) quantal; urgency=low [ Oliver Grawert ] * make sure a capitalized line for "Prompt=" lands in /etc/update-manager/release-upgrades to prevent ucf questions (LP: #1045579) [ Michael Vogt ] * softwareproperties/ppa.py: remove no longer applying comment (thanks to Zooko) -- Oliver Grawert Mon, 01 Oct 2012 11:20:32 +0200 software-properties (0.92.6) quantal; urgency=low * Make DEP-8 tests depend on python-dbus, python-pycurl, and python3-pycurl. * Make software-properties-common depend on ca-certificates, for softwareproperties.ppa.get_ppa_info_from_lp (LP: #1052267). -- Colin Watson Tue, 18 Sep 2012 14:14:00 +0100 software-properties (0.92.5) quantal; urgency=low [ Colin Watson ] * add-apt-repository: - Force output encoding to UTF-8 even in non-UTF-8 locales (LP: #1041431). [ sampo555 ] * Construct the path of a PPA source file properly (LP: #972617, #994515, #1018327, #1037916). -- Colin Watson Mon, 17 Sep 2012 14:41:12 +0100 software-properties (0.92.4) quantal; urgency=low * softwareproperties/gtk/SoftwarePropertiesGtk.py: also cover the cases where vendor or model can't be identified; replace those unavailable strings with "Unknown". (LP: #1028388) -- Mathieu Trudel-Lapierre Tue, 11 Sep 2012 08:26:25 -0400 software-properties (0.92.3) quantal; urgency=low * lp:~mvo/software-properties/dep8: - add dep8 control -- Michael Vogt Mon, 10 Sep 2012 09:51:29 +0200 software-properties (0.92.2) quantal; urgency=low [ Colin Watson ] * debian/rules: - Ensure that scripts end up with #! /usr/bin/python3, not #! /usr/bin/python3.X. [ Robert Roth ] * Import pycurl before using it (LP: #1044674). * Remove QString as py3 uses native python string (LP: #1036588). -- Colin Watson Sat, 08 Sep 2012 13:33:42 +0100 software-properties (0.92.1) quantal; urgency=low * softwareproperties/gtk/SoftwarePropertiesGtk.py: - add missing import to unblock startup (LP: #1042180) -- Kiwinote Tue, 28 Aug 2012 15:22:59 +0200 software-properties (0.92) quantal; urgency=low [ Robert Roth ] * lp:~evfool/software-properties/lp1030970 : - Fixed the source code checkbox and the submit statistics checkbox labels to be left-aligned instead of centered. * lp:~evfool/software-properties/lp997371: - support enabling a component via "apt-add-repository componentname" (e.g. "apt-add-repository multiverse") LP: #997371 [ Mathieu Trudel-Lapierre ] * Reinstate pycurl to use for getting PPA information from Launchpad, since it can actually verify SSL certificates with python2. Also set LAUNCHPAD_PPA_CERT so that it's a valid path to the system CA certificates bundle to use for urllib and pycurl. (LP: #1036839) - CVE-2012-0955 [ Gabor Kelemen ] * lp:~kelemeng/software-properties/bug1035544: - fix a bunch of missing i18n strings (LP: #1035544) [ Michael Vogt ] * lp:~mvo/software-properties/remove-popcon: - remove the "statistics" page as this is no longer used (LP: #1025436) -- Michael Vogt Mon, 27 Aug 2012 09:56:47 +0200 software-properties (0.91) quantal; urgency=low * debian/control: - add dep on python3-gi * data/software-properties-gtk.desktop.in: - remove OnlyShowIn: for xubuntu and other flavors which used jockey, so that they still have a driver installation tool -- Didier Roche Thu, 19 Jul 2012 10:12:51 +0200 software-properties (0.90) quantal; urgency=low * data/software-properties-gtk.desktop.in: - show software-properties in gnome-control-center * debian/control: - bump Standards-Version to latest -- Didier Roche Wed, 18 Jul 2012 13:57:45 +0200 software-properties (0.89) quantal; urgency=low * Add the jockey replacement tab for software-properties-gtk: - finish the work started by cyphermox (LP: #1021733) - add dep on latest ubuntu-drivers-common for the backend * Wrap all dbus calls under a try/except catch for unauthorized calls. (original work by Edward Donovan) (LP: #828850) -- Didier Roche Wed, 18 Jul 2012 11:28:09 +0200 software-properties (0.88) quantal; urgency=low * debian/control: Add missing python3-software-properties dependency to software-properties-common, so that add-apt-repository can actually work. -- Martin Pitt Fri, 13 Jul 2012 10:46:27 +0200 software-properties (0.87) quantal; urgency=low * Restore apt-add-repository symlink. * Handle removal of cmp builtin from Python 3 (LP: #1022665). * Open NamedTemporaryFile in text mode when writing text to it (LP: #1021639). * Fix display glitch in add-apt-repository that caused "None" to be printed for any PPA without a description. -- Colin Watson Tue, 10 Jul 2012 09:56:14 +0100 software-properties (0.86) quantal; urgency=low [ Colin Watson ] * Open /dev/urandom in binary mode. * Start producing python-software-properties again, until such time as it has no reverse-dependencies. [ Mathieu Trudel-Lapierre ] * Fix things so that reverse-depends can still work with Python 2. -- Mathieu Trudel-Lapierre Thu, 05 Jul 2012 11:50:44 -0400 software-properties (0.85) quantal; urgency=low * Ship add-apt-repository and its manual page only in software-properties-common, rather than having bits of it in python3-software-properties as well (LP: #1021122). -- Colin Watson Thu, 05 Jul 2012 12:46:35 +0100 software-properties (0.84) quantal-proposed; urgency=low [ Colin Watson ] * Port to Python 3: - Use Python 3-style print functions. - Use "except Exception as e" syntax rather than the old-style "except Exception, e". - Remove use of the string module, at least for Python 3; string.maketrans is still needed in Python 2. - Use list comprehensions rather than map. - Import configparser rather than ConfigParser if available. - Use Python 3 renamings of urllib, urllib2, and urlparse if available. - Use new-style octal literals. - Open subprocesses with universal_newlines=True when expecting to read text from them. On Python 2, this only enables \r\n conversion and the like, but on Python 3 this also causes subprocess-related file objects to read str rather than bytes. - Use dict.items() rather than bothering with Python 2/3 compatibility for dict.iteritems(). - Avoid use of obsolete unittest methods. - Use "key in dict" rather than "dict.has_key(key)". - Tell Python to use absolute imports by default, and annotate cases where we need relative imports. - Use Python 3 renaming of Queue if available. - Handle a few cases of the range builtin and dict methods being changed to return iterators in Python 3. - Remove unused dependency on python-gnupginterface. * Fix a number of pyflakes warnings. [ Mathieu Trudel-Lapierre ] * More Python 3 porting work: - Port software-properties-kde and software-properties-dbus. - Fix tests. * debian/control, debian/compat: switch to debhelper (>= 9) * debian/control, debian/python*-software-properties.*: - Replace python-software-properties with python3-software-properties. - Have software-properties-common Breaks/Replaces python-software-properties now that it will ship add-apt-repository and locale data. * debian/control: add software-properties-common to software-properties-kde Depends; since it's now the package that ships locale data. * debian/software-properties-common.install: ship the add-apt-repository binary and locale data as part of software-properties-common now instead of the python package. * debian/rules: - Start using --with python3 instead of python2. * debian/software-properties-*.install: only install the python3 versions of the GUI application library files. -- Mathieu Trudel-Lapierre Wed, 04 Jul 2012 10:38:04 -0400 software-properties (0.83) quantal; urgency=low [ Robert Roth ] * lp:~evfool/software-properties/lp599803: - Added support for case-insensitive typeahead searching activated with Ctrl+F (by default) in the Other Software tab (custom sources). LP: #599803 * lp:~evfool/software-properties/lp709079: - Refactored SimpleGtkBuilder __init__ method to use the setup_ui method containing exactly the same code (removes some duplicated code) and replaced print to stderr with debug logging message, fixing bug LP: #709079. [ Michael Vogt ] * lp:~mvo/software-properties/fix-policykit-prompt-on-startup: - This fixes a policykit prompt on startup if the default policy is set to something other than "daily" for Check for updates LP: #1012035 [ Gabor Kelemen ] * lp:~kelemeng/software-properties/bug945245: - I18n fixes for bug LP: #945245. -- Michael Vogt Tue, 12 Jun 2012 11:57:18 +0200 software-properties (0.82.7.1) precise-proposed; urgency=low * manually shift the policy index to work around wrong upgrade policy being set. (LP: #944876) -- Philip Muškovac Wed, 25 Apr 2012 21:11:57 +0200 software-properties (0.82.7) precise; urgency=low * software-properties-dbus: Use GLib instead of the deprecated gobject. Update debian/control accordingly. * debian/control: Fix -gtk dependency: python-gobject → python-gi. -- Martin Pitt Tue, 13 Mar 2012 19:12:54 +0100 software-properties (0.82.6) precise; urgency=low [ Gabor Kelemen ] * data/gtkbuilder/main.ui: - fix missing "translatable" property (LP: #953918) -- Michael Vogt Tue, 13 Mar 2012 15:01:30 +0100 software-properties (0.82.5) precise; urgency=low * softwareproperties/gtk/SoftwarePropertiesGtk.py: Drop duplicate definition of on_treeview_sources_cursor_changed(). * softwareproperties/gtk/SoftwarePropertiesGtk.py: Fix crash when closing the application with the window title bar button. (LP: #911834) * add-apt-repository: Intercept ValueError in addition to URLError, as this is the error thrown when trying to decode invalid JSON (which happens on 404 pages etc.). (LP: #861258) * softwareproperties/SoftwareProperties.py, _find_source_from_string(): Reload the sources list before searching, as it might have changed while the D-BUS backend was running. (LP: #854818, #820150) * softwareproperties/gtk/SoftwarePropertiesGtk.py: Add missing argument to menu popup() call. (LP: #815236) -- Martin Pitt Wed, 07 Mar 2012 10:14:52 +0100 software-properties (0.82.4) precise; urgency=low * Move KeysModified signal so add-apt-repository doesn't crash. (LP: #926152) -- Marc Deslauriers Fri, 03 Feb 2012 15:54:57 -0500 software-properties (0.82.3) precise; urgency=low [ Brian Murray ] * when adding new repositories use sourceslist.add instead of append thereby preventing duplicate entires. Thanks to Nick Russo for the patch. LP: #854841 [ Robert Roth ] * Updated expand properties to properly expand the bottom component to avoid putting empty space between components. LP: #912557 * Added symbolic link for add-apt-repository manpage under the apt-add-repository name, LP: #620098 * Changed Revert button mnemonic to avoid collision with Remove, LP: #652523 * Handle URLError from ppa pages, instruct the user to check the internet connection (LP: #502698) [ Marc Deslauriers ] * SECURITY UPDATE: incorrect ssl certificate validation (LP: #915210) - softwareproperties/ppa.py: use pycurl to download the signing key fingerprint. - tests/test_lp.py: add test. - debian/control: add python-pycurl dependency. - CVE-2011-4407 * Wait for PPA GPG key to get imported before ending thread (LP: #888417) -- Marc Deslauriers Fri, 03 Feb 2012 08:16:22 -0500 software-properties (0.82.2) precise; urgency=low [ Michael Vogt ] * merged from debian-sid, thanks to Julian Andres Klode * add-apt-repository: - fail if the user tries to add a private PPA [ Sebastien Bacher ] * Stop listing software-properties in gnome-control-center since it's available from software-center and update-manager (desktop-p-control-center-cleanup spec) -- Sebastien Bacher Wed, 11 Jan 2012 17:19:42 +0100 software-properties (0.82.1debian1) unstable; urgency=low * Merge with Ubuntu, remaining differences: - debian/control: Maintainer, VCS differences - debian/rules: Do not use dh-translations - softwareproperties/gtk/CdromProgress.py: Use apt.progress.base as needed * Fix more uses of the removed python-apt API -- Julian Andres Klode Mon, 21 Nov 2011 16:04:53 +0100 software-properties (0.82) precise; urgency=low [ Manish Sinha (मनीष सिन्हा) ] * lp:~manishsinha/software-properties/fix-887249-handle-404-error: - improve error handling for incorrect/misspelled PPAs (LP: #887249) * lp:~manishsinha/software-properties/list-ppa-names-for-user-or-team: - Made the change to alert the user that a user/team does not have any PPAs [ Robert Roth ] * lp:~evfool/software-properties/lintianfixes: - Fixed capitalization issue in control file * Fix warnings logged to terminal about inexistent handlers by checking if the handlers exist * Change geeky authentication text displayed on policykit auth dialog to the one suggested by mpt (LP: #828285) * Reset the popcon checkbox value if changed, but auth failed (LP: #874759) * Apt-add-repository --remove changed to also remove the debsrc line (LP: #838507) * Apt-add-repository PPA warning changed to warn you about add/removal depending on what you really want to do. * Update the manpage of apt-add-repository with the available options. (LP: #697546) * Reset the text on the mirror testing dialog after closing/canceling it (LP: #875679) * Unicode encode PPA description and displaynam to avoid UnicodeDecodeErrors (LP: #827355) * Do not expand the server combobox (LP: #875131) -- Michael Vogt Mon, 21 Nov 2011 16:32:49 +0100 software-properties (0.81.13.2) oneiric-proposed; urgency=low * add-apt-repository: - honor FORCE_ADD_APT_REPOSITORY (LP: #890708) -- Michael Vogt Wed, 30 Nov 2011 09:46:12 +0100 software-properties (0.81.13.1) oneiric-proposed; urgency=low * lp:~yofel/software-properties/lp-819793: - Fix for bug 819793 as disable_child_source() now need the template name as parameter, not the template itself )LP: #819793 [ Philip Muskovac ] * lp:~yofel/software-properties/lp-819793: - Fix for bug 819793 as disable_child_source() now need the template name as parameter, not the template itself )LP: #819793 [ Robert Roth ] * Fix warnings logged to terminal about inexistent handlers by checking if the handlers exist * Reset the popcon checkbox value if changed, but auth failed (LP: #874759) * Apt-add-repository --remove changed to also remove the debsrc line (LP: #838507) * Update the manpage of apt-add-repository with the available options. (LP: #697546) * Reset the text on the mirror testing dialog after closing/canceling it (LP: #875679) * Unicode encode PPA description and displaynam to avoid UnicodeDecodeErrors (LP: #827355) * Do not expand the server combobox (LP: #875131) -- Michael Vogt Thu, 20 Oct 2011 13:46:08 +0200 software-properties (0.81.13) oneiric-proposed; urgency=low * lp:~kelemeng/software-properties/bug853231: - Build with dh_translations, to localize the .policy file at runtime. LP: #853231 - Add missing files to POTFILES.in (LP: #853231) Many thanks to Gabor Kelemen -- Michael Vogt Wed, 12 Oct 2011 10:22:19 +0200 software-properties (0.81.12) oneiric-proposed; urgency=low * lp:~kelemeng/software-properties/bug853231-upstream: - Add missing files to POTFILES.in (LP: #853231) Many thanks to Gabor Kelemen -- Michael Vogt Wed, 12 Oct 2011 10:02:23 +0200 software-properties (0.81.10) oneiric; urgency=low * softwareproperties/dbus/SoftwarePropertiesDBus.py, tests/test_dbus.py: - fix crash when there are unicode comments in the sources.list file (LP: #820028). Dbus always sends us a dbus.String which is type unicode, but python-apt expects utf8 encoded str -- Michael Vogt Mon, 10 Oct 2011 10:55:45 +0200 software-properties (0.81.9) oneiric; urgency=low * lp:~gandelman-a/software-properties/lp829109 : - add "-y" to add-apt-repository (LP: #829109). This can be used to avoid the confirmation prompt. Alternatively you can redirect stdin to /dev/null for skipping of the confirmation -- Michael Vogt Fri, 19 Aug 2011 09:11:58 +0200 software-properties (0.81.8) oneiric; urgency=low * Move from static gobject to GI GObject module, to be compatible to upcoming pygobject 3.0. -- Martin Pitt Wed, 17 Aug 2011 07:19:02 +0200 software-properties (0.81.7) oneiric; urgency=low * softwareproperties/ppa.py: - fix incorrect call call to apt-key for the fingerprint, thanks to Martin Pitt for the report -- Michael Vogt Wed, 17 Aug 2011 07:13:46 +0200 software-properties (0.81.6) oneiric; urgency=low [ Michael Vogt ] * softwareproperties/ppa.py: - show PPA description and confirm before adding (security-o-catch-all spec) [ Martin Pitt ] * softwareproperties/gtk/SoftwarePropertiesGtk.py: Fix encoding error, thanks to sokolov-m-v for the patch! (LP: #815480) -- Martin Pitt Mon, 15 Aug 2011 10:25:51 +0200 software-properties (0.81.5) oneiric; urgency=low * softwareproperties/gtk/DialogMirror.py: - sort automatic mirror on top of the mirror list * debian/control: - remove old conflicts/replaces -- Michael Vogt Thu, 11 Aug 2011 15:55:52 +0200 software-properties (0.81.4) oneiric; urgency=low * softwareproperties/AptAuth.py: - move trustdb into tmpdir as gnupg insists in creating it * softwareproperties/gtk/SoftwarePropertiesGtk.py: - use policykit for changing the update interval (LP: #816061) -- Michael Vogt Tue, 26 Jul 2011 09:13:23 +0200 software-properties (0.81.3) oneiric; urgency=low * softwareproperties/gtk/SimpleGtkbuilderApp.py: - remove unneeded debug output for gobjects without a get_name() function * softwareproperties/gtk/SoftwarePropertiesGtk.py: - do not crash if update-notifier is not installed (LP: #815016) * softwareproperties/AptAuth.py: - do not access ~/.gnupg from AptAuth() (LP: #815034) * softwareproperties/SoftwareProperties.py: - add CDROM add support into the dbus backend (LP: #815860) -- Michael Vogt Mon, 25 Jul 2011 18:15:30 +0200 software-properties (0.81.2) oneiric; urgency=low * fix crash when clicking on "updates" tab child sources, thanks to Sebastien Bacher -- Michael Vogt Fri, 22 Jul 2011 22:15:05 +0200 software-properties (0.81.1) oneiric; urgency=low * data/software-properties-gtk.desktop.in: - don't use gksu * debian/control: - remove the gksu dependency and add software-properties-common instead * debian/software-properties-common.install: - fix missing dbus include (thanks to seb128) * data/com.ubuntu.SoftwareProperties.service: - fix service path (thanks to seb128) -- Michael Vogt Fri, 22 Jul 2011 21:39:04 +0200 software-properties (0.81) oneiric; urgency=low [ Mohamed Amine IL Idrissi ] * Redesigned the Updates tab according to https://wiki.ubuntu.com/SoftwareUpdateHandling#settings (LP: #351484, #357676, #253412) [ Michael Vogt ] * add dbus/polkit backend, based on lp:~kubuntu-packagers/software-properties/dbusworker * use new dbus backend * automatically run tests at bzr-buildpackage time -- Michael Vogt Fri, 22 Jul 2011 19:11:26 +0200 software-properties (0.80.14) oneiric; urgency=low * data/gtkbuilder/dialog-mirror.ui: string fix regarding testing -- Brian Murray Wed, 20 Jul 2011 15:01:23 -0700 software-properties (0.80.13) oneiric; urgency=low * merge control center fix from Rodrigo Moya, many thanks! (lp:~rodrigo-moya/software-properties/fix-787694) LP: #787694 -- Michael Vogt Mon, 11 Jul 2011 11:34:51 +0200 software-properties (0.80.12) oneiric; urgency=low * softwareproperties/gtk/DialogCacheOutdated.py: Stop calling synaptics, use aptdaemon instead. * debian/control: Drop synaptics dependency, add python-aptdaemon.gtk3widgets. * data/gtkbuilder/*.ui: Drop deprecated has_separator properites. -- Martin Pitt Wed, 22 Jun 2011 17:03:11 +0200 software-properties (0.80.11) oneiric; urgency=low [ Martin Pitt ] * debian/rules: Drop deprecated simple-patchsys. This is a native package anyway, we don't need a patch system. [ Michael Vogt ] * move from python-central to dh_python2 * move from cdbs to dh7 -- Michael Vogt Fri, 10 Jun 2011 11:29:51 +0200 software-properties (0.80.10) oneiric; urgency=low [ Michael Vogt ] * merged lp:~hodgestar/software-properties/configurable-key-server, many thanks [ Martin Pitt ] * software-properties-gtk: Stop forcing GTK 2, we want to use GTK 3 now. Update gir dependency accordingly. -- Martin Pitt Wed, 18 May 2011 09:59:32 +0200 software-properties (0.80.9) natty; urgency=low * In "Updates" tab (qt and gtk), ignore all deb-src templates. (LP: #768363, LP: #768469) -- Stéphane Graber Sun, 24 Apr 2011 13:37:52 -0400 software-properties (0.80.8) natty; urgency=low * data/designer/main.ui make strings match GTK UI file LP: #760825 -- Jonathan Riddell Thu, 14 Apr 2011 16:56:22 +0100 software-properties (0.80.7) natty; urgency=low * softwareproperties/gtk/SoftwarePropertiesGtk.py: Fix wrong Gtk.MenuItem construction. (LP: #753570) -- Martin Pitt Fri, 08 Apr 2011 18:23:21 +0200 software-properties (0.80.6debian1) experimental; urgency=low * Rebase Debian package against Ubuntu one. * python-apt 0.8 conform (Closes: #572350) * softwareproperties/gtk/CdromProgress.py: - Fix python-apt 0.8 progress->progress.base incompatibility * Move to debhelper 7 and dh_python2 -- Julian Andres Klode Wed, 06 Apr 2011 15:44:14 +0200 software-properties (0.80.6) natty; urgency=low * software-properties-gtk: Fix crash on invalid locale. (LP: #730643) -- Martin Pitt Tue, 05 Apr 2011 15:07:42 +0200 software-properties (0.80.5) natty; urgency=low * softwareproperties/gtk/DialogAddSourcesList.py: Drop leftover pygtk import. * software-properties-gtk: Fix --enable-ppa to work again. * softwareproperties/gtk/DialogAddSourcesList.py: Fix WMFunction Gdk constant. (LP: #736393) -- Martin Pitt Tue, 22 Mar 2011 16:58:23 +0100 software-properties (0.80.4) natty; urgency=low * software-properties-gtk: Update require_version() call to current pygobject API. Bump python-gobject dependency accordingly. -- Martin Pitt Thu, 03 Mar 2011 17:25:28 +0100 software-properties (0.80.3) natty; urgency=low * softwareproperties/gtk/DialogAdd.py: Fix UnicodeDecodeError in "Add source" dialog. (LP: #721778) -- Martin Pitt Wed, 02 Mar 2011 13:13:46 +0100 software-properties (0.80.2) natty; urgency=low * softwareproperties/gtk/SoftwarePropertiesGtk.py: Gdk.window_foreign_new() is currently not introspectable (and went away entirely in Gtk 3), so don't crash if it is not available. (LP: #718811) -- Martin Pitt Tue, 15 Feb 2011 09:26:12 +0100 software-properties (0.80.1) natty; urgency=low * fix typo in changelog -- Michael Vogt Mon, 14 Feb 2011 14:38:31 +0100 software-properties (0.80) natty; urgency=low * software-properties-gtk, ./softwareproperties/gtk/*: Port from pygtk to gobject-introspection. This works with both GTK 2 and 3, but in GTK2 we have to disable the drag&drop functionality (as current GTK2 does not have a gtk_target_entry_new() and thus you can't construct those). * softwareproperties/gtk/SoftwarePropertiesGtk.py: When doing string interpolation with translated text and unicode objects, encode the latter into UTF-8 first. pygtk did that for us using some black magic (by calling PyUnicode_SetDefaultEncoding()). * software-properties-gtk: Force using GTK 2 for now, as in Natty we don't currently ship GTK 3 on the default installation (we don't have a theme yet). * debian/control: Update dependencies for the pygtk → pygi switch. * software-properties-gtk, softwareproperties/gtk/DialogMirror.py: Drop calls to Gdk.threads_*(). They were insufficient and causing lockups, and since multi-threaded Gtk is a pain to get right, we'll rather change the code structure to only use Gtk from the main thread. * softwareproperties/gtk/DialogMirror.py: Run GTK operations in main thread, to avoid thread lockups. * softwareproperties/MirrorTest.py: Move additional MirrorTestGtk functionality (setting threading.Event flag and storing current action/progress into main MirrorTest class, so that we can entirely drop MirrorTestGtk from softwareproperties/gtk/DialogMirror.py. KDE still uses its own implementation with real threads, as this is still easier to do. -- Martin Pitt Mon, 14 Feb 2011 14:23:12 +0100 software-properties (0.78.1) natty; urgency=low * use port 80 by default when getting gpg keys for PPAs (LP: #615788) -- Michael Vogt Mon, 13 Dec 2010 09:37:56 +0100 software-properties (0.78) natty; urgency=low * add support for simplified syntax LP: #686348 -- Carl Karsten Tue, 07 Dec 2010 01:46:28 -0600 software-properties (0.77) natty; urgency=low * po/pt_BR.po: - updated translations, thanks to Sergio Cipolla (closes: #593693) * merged lp:~kelemeng/software-properties/bug657835, many thanks to Gabor Kelemen (LP: #657835) -- Michael Vogt Wed, 03 Nov 2010 10:07:32 +0100 software-properties (0.76.7) maverick; urgency=low [ Gabor Kelemen ] * Add translation domain info to setup_ui and its invocations. Fixes LP:644404 -- Michael Vogt Mon, 20 Sep 2010 14:55:05 +0200 software-properties (0.76.6) maverick; urgency=low * data/gtkbuilder/main.ui: - fix expand property of the button pane * fix deprecation warnings from python-apt 0.8 -- Michael Vogt Mon, 13 Sep 2010 10:16:53 +0200 software-properties (0.76.5) maverick; urgency=low [ Mohamed Amine IL Idrissi ] * data/software-properties-gtk.desktop.in: desktop file is now really hidden (LP: #624072) -- Michael Vogt Tue, 07 Sep 2010 15:23:11 +0200 software-properties (0.76.4) maverick; urgency=low * Add release upgrade option to KDE UI to select between LTS and normal upgrade prompts LP: #631708 -- Jonathan Riddell Mon, 06 Sep 2010 17:09:25 +0100 software-properties (0.76.3) maverick; urgency=low * po/POTFILES.in, Correctly define the gtkbuilder types to those strings are in the template * Correct a typo in one of the add-apt-repository strings (lp: #630613) -- Sebastien Bacher Mon, 06 Sep 2010 17:38:47 +0200 software-properties (0.76.2) maverick; urgency=low [ Michael Vogt ] * fix ftbfs [ Mohamed Amine IL Idrissi ] * data/software-properties-gtk.desktop.in: Menu entry is now hidden (LP: #624072) -- Michael Vogt Wed, 25 Aug 2010 20:19:47 +0200 software-properties (0.76.1) maverick; urgency=low [ Amicahi Rothman ] * Fixed "Select Best Server" broken by PyQt signal argument changes [ Michael Vogt ] * po/pt_BR.po: - updated, thanks to Sergio Cipolla * merged lp:~and471/software-properties/gtkbuilder-and-gui-polish, many thanks! -- Michael Vogt Wed, 25 Aug 2010 20:05:41 +0200 software-properties (0.76) maverick; urgency=low [ Jonathan Harker ] * Improve documentation for apt-add-repository (LP: #586790) [ mac9416 ] * Fixed bug LP: #446216: added --remove option to add-apt-reporitory. * Fixed Bug LP: #579669 which points out that add-apt-repository will create a sources.list.d file with illegal characters if there are illegal characters in a PPA name [ Andrea Corbellini ] * Automatically create a deb-src line when adding a new repository (LP: 399711) [ Michael Vogt ] * add test for LP: #579669 and use re.sub() instead of urllib.quote() * merged lp:~alexzak/software-properties/fixes, many thanks [ Erik B. Andersen ] * Fixed depreciation warnings [ Brandon Tomlinson ] * Altered data/glade/main.glade Put the bottom buttons in a button box to make the buttons assume the correct width (LP: #515990) -- Michael Vogt Fri, 13 Aug 2010 17:38:45 +0200 software-properties (0.75.11) maverick; urgency=low * Port software-properties-kde from using install-package to using qapt-batch, a C++ drop-in replacement (LP: #497803) * Replace dependency on install-package to qapt-batch in debian/control * Bump Standards-Version to 3.9.1, no changes required -- Jonathan Thomas Fri, 06 Aug 2010 20:09:06 -0400 software-properties (0.75.10) lucid; urgency=low * softwareproperties/ppa.py: - fix launchpad API path when looking for the PPA archive signing key -- Michael Vogt Wed, 14 Apr 2010 09:03:12 +0200 software-properties (0.75.9) lucid; urgency=low * [KDE] Fix crash caused by translations containing distro name (LP: #545927) -- Amichai Rothman Mon, 29 Mar 2010 02:34:40 +0300 software-properties (0.75.8) lucid; urgency=low [ Michael Vogt ] * softwareproperties/gtk/SoftwarePropertiesGtk.py: - do not crash if tranient parent can not be set (LP: #83914) * debian/manpages/software-properties-gtk.1: - add man-page (thanks to Gabe Gorelick) LP: #290308 * add-apt-repository: - better help output (LP: #407779) - do not crash if setlocale fails (LP: #467369) * software-properties-gtk: - ensure newly created ppa files are readalbe (LP: #497778) * data/software-properties-gtk.desktop.in: - fix desktop file location (thanks to Ricardo Pérez López) LP: #543637 * provide apt-add-repository link (LP: #547194) * debian/manpages/add-apt-repository.1: - add man-page, thanks to Chow Loong Jin (LP: #407779) * fix lintian warnings * softwareproperties/SoftwareProperties.py: - show summary in addition to comment for disabled entries (LP: #543207) [ Harald Sitter ] * [KDE] Fix bug in I18nHelper, where it would trigger a crash if unicode() to UTF-8 fails. Fallback to latin1 in this case. This for example happens when the APT keyring contains a key with non-latin characters, which can happen with PPA keys, since those contain the owner's name. -- Michael Vogt Fri, 26 Mar 2010 13:51:20 +0100 software-properties (0.75.7) lucid; urgency=low * [KDE] Fix a crash on startup encountered with localized environments (LP: #505964) -- Jonathan Thomas Mon, 11 Jan 2010 15:31:59 -0500 software-properties (0.75.6) lucid; urgency=low * Fix cdrom progress bar popping up after being canceled (LP: #496257) * Fix adding cdrom source to top of sources list (LP: #162395) * Fix instability after failed cdrom addition (LP: #221667) * Fix focus in add source dialog -- Amichai Rothman Tue, 22 Dec 2009 17:29:46 +0000 software-properties (0.75.5) lucid; urgency=low [ Harald Sitter ] * KDE frontend: replace old manual listing of file endings for key import with mimetype based model (no need to support old stuff since it is so incredibly wrong... ending-wise that is) [ Amichai Rothman ] * Fix import of keys with non-ascii filename (LP: #350485) * Add source line input validation when adding a new source (LP: #116445) * Fix selected item and edit/remove button state after toggling a source * Fix alternate mirror selection corrupting sources.list (LP: #464707) * Fix selected mirror not shown in combobox (LP: #96110) * Fix mirror selection dialog error in non-ascii locale (LP: #96201) * Fix crash when modifying sources selection (LP: #102792) * Fix error handling when ppa key is missing (LP: #475220) * Improve keyboard tab order in some dialogs (LP: #464569) * Fix and improve mirror test and GUI (LP: #223047) * Fix mirror test timeout handling (LP: #456365) * Fix i18n, accelerators and styling on all dialogs (LP: #102773) * Fix utf8 in edit source dialog comments (LP: #489960) -- Amichai Rothman Sun, 13 Dec 2009 23:49:08 +0200 software-properties (0.75.4) karmic; urgency=low * Suffix software-properties.desktop with -gtk.desktop * Create a copy of that file with suffix -kde.desktop + Change to KDE icon and exec + Add NoDisplay=true, the desktop file is only necessary for kdesudo to have it show a proper name and icon which does not require it to show up anywhere * software-properties-kde depends on install-package for reloading the repository information and cache updating (LP: #367972) * Fix typo in software-properties-kde description (QT -> Qt) * if != if not ... only show key removal error if there really was a problem (LP: #123372) * Make python-software-properties go to section python * Add manpage for software-properties-kde (generated by kdemangen.pl from the kdesdk-scripts package (low maintenance) * Clearify license versions in copyright file * Bump standards version to 3.8.3 -- Harald Sitter Mon, 07 Sep 2009 11:58:49 +0200 software-properties (0.75.3) karmic; urgency=low [ Kyle Nitzsche ] * Use "Other Software" instead of "Third Party Software" (LP: #420672) -- Michael Vogt Tue, 01 Sep 2009 18:30:39 +0200 software-properties (0.75.2) karmic; urgency=low [ Michael Vogt ] * update software-properties.pot (LP: #407240) [ Harald Sitter ] * Add actual PGP key file endings to the KDE file picker whitelist (keep old endings around for compability) * Fix the KDE UI's enable-component arg, add output to that function and reorder help output to list --attach as last -- Harald Sitter Sat, 22 Aug 2009 16:35:34 +0200 software-properties (0.75.1) karmic; urgency=low * add-apt-repository: - fix typo (thanks to Brian Murray), LP: #399864 * debian/control: - add Vcs-Bzr header * softwareproperties/SoftwareProperties.py: - allow removing of sources.list.d files with just a single line (LP: #399898) * add-apt-repository: - ensure that new files are created with 0644 by default (LP: #399709) -- Michael Vogt Fri, 17 Jul 2009 17:00:34 +0200 software-properties (0.75) karmic; urgency=low * new helper script "add-apt-repository" that can be used to enable a repository from the commandline. Useful for e.g. 'add-apt-repository ppa:gnome-desktop' * fix error in auto-upgrade settings when dpkg-reconfigure unattended-upgrades was used (LP: #387704) * po/zh_TW.po: - updated, thanks to Roy Chan (LP: #365040) * softwareproperties/kde/SoftwarePropertiesKDE.py: - do not error on cancel (LP: #364288) - use the SUDO_USER home instead of /root (if available) (LP: #364197) - add utf8() function and replace the custom converts to it (hopefully fixes LP: #362188) - disable "Find best server" for now, the threading crashing KDE * softwareproperties/gtk/DialogCacheOutdated.py: - fix incorrect wait on synaptic (LP: #357617, LP: #349639) * softwareproperties/SoftwareProperties.py: - check/ensure apt daily cron job is executable (LP: #390319) -- Michael Vogt Tue, 14 Jul 2009 16:54:38 +0200 software-properties (0.74) karmic; urgency=low * debian/rules: - use DH_PYTHON=include-links * add support for drag-n-drop public key blocks * fix error() function * add right click menu to authication treeview to support adding key via copy-n-paste (LP: #372577) * software-properties-kde: - set bugAddress to "" -- Michael Vogt Tue, 23 Jun 2009 17:14:05 +0200 software-properties (0.73) karmic; urgency=low * Support adding PPA keys automatically (thanks to Celso) * support shorthand syntax for PPAs (ppa:owner or ppa:owner/ppa_name) when clicking on "add" * support new commandline option "--enable-ppa name" -- Michael Vogt Mon, 08 Jun 2009 18:28:24 +0200 software-properties (0.72) karmic; urgency=low * softwareproperties/kde/DialogEdit.py, softwareproperties/kde/SoftwarePropertiesKDE.py: - fix unicode problems with KDE (thanks to Savvas) -- Michael Vogt Fri, 05 Jun 2009 21:30:00 +0200 software-properties (0.71.5) jaunty; urgency=low * debian/control: - put "software-properties-kde" into the kde section (LP: #323556) * softwareproperties/SoftwareProperties.py: - fix crash in the way md5 from hashlib is used (LP: #346863) * softwareproperties/gtk/DialogMirror.py: - fix crash when no mirrors are available (LP: #332205) * softwareproperties/gtk/SoftwarePropertiesGtk.py: - make is_seperator() more robust (LP: #335637) -- Michael Vogt Fri, 27 Mar 2009 15:00:56 +0100 software-properties (0.71.4) jaunty; urgency=low * PyKDE4 frontend polish: - QFileDialog -> KFileDialog - Pushbuttons get appropriate KIcons - The "Remove..." gpg key pushbutton is disabled when nothing is selected in the key treeview, just like the remove pushbutton in the sources editor tab -- Jonathan Thomas Fri, 20 Mar 2009 08:46:36 -0400 software-properties (0.71.3) jaunty; urgency=low * fix combobox_server unicode for bug #102773 (thanks to Savvas Radevic) * fix warning from 'import md5', thanks to Marco Rodrigues * softwareproperties/SoftwareProperties.py: - if a entry is added that matches a known channel automatically add the right gpg signing key (LP: #328486) -- Michael Vogt Wed, 18 Mar 2009 17:53:09 +0100 software-properties (0.71.2) jaunty; urgency=low * softwareproperties/gtk/SoftwarePropertiesGtk.py: - show the cache outdate dialog when run with toplevel too * sofware-properties-gtk: - add "--open-tab" option that opens a spefic tab number on startup * debian/*.install: - updated for new python policy -- Michael Vogt Mon, 02 Mar 2009 17:12:51 +0100 software-properties (0.71.1) jaunty; urgency=low * use iso_3166.xml instead of iso_3166.tab -- Michael Vogt Thu, 22 Jan 2009 09:51:22 +0100 software-properties (0.71) jaunty; urgency=low * softwareproperties/gtk/DialogMirror.py: - fixes in the mirror speed test for small sets of mirrors -- Michael Vogt Thu, 08 Jan 2009 17:06:11 +0100 software-properties (0.70.debian-1) experimental; urgency=low * New upstream release * debian/control.in: - added python-kde4 as a dependency for software-properties-kde, now that it is ported - upgraded to Standards-Version 3.8.0, with no changes - added Vcs headers * debian/copyright: - make it machine readable, using the standards defined in the Debian wiki * debian/software-properties-gtk.install: - no longer install help, since upstream no longer generates it, since it is outdated -- Gustavo Noronha Silva Thu, 04 Dec 2008 12:37:23 -0200 software-properties (0.70) jaunty; urgency=low * main.glade: Change accelerator for "Check for updates" dropdown from alt+c to alt+k to remove collision with close (LP: #285317) -- Mackenzie Morgan Sat, 18 Oct 2008 04:51:58 -0400 software-properties (0.68) intrepid; urgency=low * SoftwarePropertiesKDE.py: use install-package instead of obsolete adept_batch -- Jonathan Riddell Wed, 15 Oct 2008 15:11:57 +0100 software-properties (0.67) intrepid; urgency=low * KDE: Add --attach option to make it act like a dialogue -- Jonathan Riddell Wed, 24 Sep 2008 20:55:23 +0100 software-properties (0.66) intrepid; urgency=low * Patch from Connor Kirwan to main.ui for KDE frontend - Use QGroupBox containers on the Updates tab (like on the Kubuntu Software tab) - Remove ugly non-native-looking rich text styling from "Trusted software providers" header on the Authentication tab; font now conforms to user's global KDE/Qt font settings - Fix miscellaneous capitalization inconsistencies (compared against GTK version) - Fix typos: s/Installalble/Installable/, s/CDROM/CD-ROM/ - Hide all QTreeWidget headers and remove their labels since they are only single-column and are already labeled by their tab or a standalone header -- Jonathan Riddell Mon, 08 Sep 2008 16:18:28 +0100 software-properties (0.65ubuntu1) intrepid; urgency=low * added kde4 port (thanks to Jonathan Thomas) -- Michael Vogt Thu, 21 Aug 2008 17:32:16 +0200 software-properties (0.64ubuntu1) intrepid; urgency=low * Standarizing .desktop file data/software-properties.desktop.in (LP : # 146979) + Removing Application value from Category key - Deprecated + Removing Encoding Key - Deprecated + Adding semicolon to the end of MimeType -- Jad Madi Mon, 21 Jul 2008 21:56:29 +0300 software-properties (0.63ubuntu1) hardy; urgency=low * do not install (outdated) help for now -- Michael Vogt Tue, 04 Mar 2008 23:10:15 +0100 software-properties (0.62ubuntu1) hardy; urgency=low [ Jonathan Riddel ] * Make KDE frontend call adept_batch update when sources need to be updated * Remove KDE frontend crash dialogue, use apport instead [ Sebastian Heinlein ] - updated for python-distutils-extra 1.92 [ Michael Vogt ] - add support to change release upgrade policy -- Michael Vogt Mon, 11 Feb 2008 18:40:45 +0100 software-properties (0.60.debian-3) unstable; urgency=low * Reintroduce dropped changes from 0.60.debian-1.1 NMU. * Add manpages for software-properties-gtk and -kde. Thanks, Timo Jyrinki! (closes: #458471). -- Jordi Mallach Sun, 14 Nov 2010 02:00:27 +0100 software-properties (0.60.debian-2) unstable; urgency=low * Fix all pending l10n issues from the BTS. Add updates for: - Slovak (closes: #439073, #441623, #531772). - Finnish (closes: #497714). - Japanese (closes: #454290). - Swedish (closes: #517504). - Czech (closes: #590820). - Brazilian Portuguese (closes: #593693). - Catalan (closes: #494174). * Fix errors in desktop file (closes: #453470). * Actually install .mo files. Thanks, Kenshi Muto and Mika Hanhijärvi (closes: #454280, #502582). * Fix glade markup in Popcon message, so it can show up in the dialog (closes: #509010, #505287). * Change default distro from sarge (!) to squeeze (closes: #418106). * Use su-to-root instead of gksu (closes: #479827). * Replace "Kubuntu" with "Debian" in the KDE frontend (closes: #577671). * Get rid of the bogus "urd" translation. -- Jordi Mallach Tue, 26 Oct 2010 00:00:03 +0200 software-properties (0.60.debian-1.1) unstable; urgency=low * Non-maintainer upload during credativ BSP 2008 * Fix release goal: FTBFS if build twice in a row (Closes: #442733) -- Martin Zobel-Helas Sun, 06 Apr 2008 02:31:14 +0200 software-properties (0.60.debian-1) unstable; urgency=low [ Kilian Krause ] * Add get-orig-source target. [ Loic Minier ] * Use ubuntu-get-source instead of gnome-get-source; build-dep on gnome-pkg-tools >= 0.12.3. [ Gustavo Noronha Silva ] * This version changes the upstream version by adding a .debian sufix to indicate that we do change the tarball (by removing the debian/ subdirectory) * debian/watch: - added, to find new versions in archive.ubuntu.com * debian/changelog.ubuntu: - added; information about changes in the ubuntu source * debian/docs: - install the ubuntu changelog * debian/patches/00_setup_py_for_new_distutils_extra.diff: - removed; no longer needed, fixed upstream * debian/software-properties.png.uu, debian/rules: - import icon and code to replace the Ubuntu icon with the Debian one from update-manager * debian/control.in: - updated dependency on python-apt so that we depend on python-apt 0.7.3 - added build-dep on sharutils because of the uudecode usage in debian/rules -- Gustavo Noronha Silva Tue, 07 Aug 2007 22:36:03 -0300 software-properties (0.60) gutsy; urgency=low [Michael Vogt] * data/software-propoerties.desktop.in: - fix double gksu (LP: #111137) * fix incorrect X-Ubuntu-Gettext-Domain (Fixes LP: #120012) * setup.py: - ported to new distutils [Sebastian Heinlein] * Adapet changes of python-apt that allow to handle forced servers in a more sane way - fix (LP: #86060) * fix i18n issues -- Michael Vogt Wed, 01 Aug 2007 10:06:58 +0200 software-properties (0.59.4-2) experimental; urgency=low * debian/copyright: - fix documentation licensing information so that it references the file in /usr/share/common-licenses * debian/control.in, debian/patches/00_setup_py_for_new_distutils_extra.diff: - python-distutils-extra 1.90 is now in Debian, and is API incompatible; make sure we use it to build, and that we use the new API -- Gustavo Noronha Silva Wed, 11 Jul 2007 21:54:59 -0300 software-properties (0.59.4-1) experimental; urgency=low * First upload to Debian - software-properties has been split in its own package (Closes: #396945) * debian/control.in: - require python-apt >> 0.7.2 (I don't know which version it will be) because 0.7.2 and earlier do not provide the needed modules and/or methods on the classes that are specific for Debian -- Gustavo Noronha Silva Tue, 19 Jun 2007 12:37:37 +0100 software-properties (0.59.4) feisty; urgency=low * i18n fixes, closes https://launchpad.net/bugs/102773 -- Jonathan Riddell Tue, 10 Apr 2007 12:56:50 +0100 software-properties (0.59.3) feisty; urgency=low * Fix an incorrect insenstive state of the source code checkbutton -- Sebastian Heinlein Wed, 4 Apr 2007 11:37:06 +0200 software-properties (0.59.2) feisty; urgency=low * another cdrom releated fix (LP#98795) -- Michael Vogt Wed, 4 Apr 2007 21:00:41 +0200 software-properties (0.59.1) feisty; urgency=low * remove obsolete glade file * fix cdrom support in the GTK and KDE frontend -- Michael Vogt Mon, 2 Apr 2007 11:06:39 +0200 software-properties (0.59) feisty; urgency=low [ Jonathan Riddell ] * KDE frontend - implement find best mirror - Add missing mirrors (first one from each country was not added) - Sort mirrors list - Implement revert button * Gnome frontend - Fix typo "Protocoll" -- Jonathan Riddell Fri, 30 Mar 2007 11:17:17 +0100 software-properties (0.58.1) feisty; urgency=low [Michael Vogt] * Fix setting transient-for none in some cases. (thanks to Robert Carr) * only build for python version from 2.4 onwards (LP#96747) [Sebastian Heinlein] * fixes in the mirror speed tester -- Michael Vogt Tue, 27 Mar 2007 13:46:16 +0200 software-properties (0.58) feisty; urgency=low * po/*.po: - make update-po * allow to specify no components in the edit dialog (LP#93640) -- Michael Vogt Thu, 22 Mar 2007 15:20:49 +0100 software-properties (0.57) feisty; urgency=low [ Michael Vogt ] * fix in the danish translation (thanks to Ole Laursen) * do not crash when called with a filename arguemnt (LP#90296) * fix crash in dialog edit in kde (LP#92230) [ Sebastian Heinlein ] * increase number of ping workers from 5 to 25 to speed up the mirror test (LP#90379) * fix the progress bar of the download test (missing mod call) * UI glitches fixes * fix the order of the variables in the gtk __init__ (LP#93028) * fix a wrong import in the GTK d'n'd handler (LP#93163) -- Michael Vogt Mon, 19 Mar 2007 11:11:45 +0100 software-properties (0.56) feisty; urgency=low [Michael Vogt] * fix crash in remove_source() (LP#85759) -- Michael Vogt Thu, 22 Feb 2007 17:01:55 +0100 software-properties (0.55) feisty; urgency=low [Sebastian Heinlein] * fix crash in kde frontend (LP#84901) * fix kde form heading (LP#84610) * fix automatic updates saving (LP#84612) * typo fixes [ Jonathan Riddell ] * Fix KDE crash dialogue to point to software-properties, not Ubiquity -- Michael Vogt Wed, 14 Feb 2007 11:06:05 +0100 software-properties (0.54) feisty; urgency=low * fixed desktop file (LP#84290) * fix --enable-component (LP#84608) * fix missing icon * various bugfixes -- Michael Vogt Tue, 13 Feb 2007 09:50:20 +0100 software-properties (0.53) feisty; urgency=low * added full GNU FDL text to the source -- Michael Vogt Wed, 7 Feb 2007 15:40:50 +0100 software-properties (0.52) feisty; urgency=low * update debian/copyright -- Michael Vogt Wed, 7 Feb 2007 12:26:49 +0100 software-properties (0.51) feisty; urgency=low * fix some UI glitches (thanks to Sebastian Heinlein) -- Michael Vogt Tue, 6 Feb 2007 11:02:18 +0100 software-properties (0.50) feisty; urgency=low * fork source package from update-manager to support adding different frontends (thanks to Sebastian Heinlein and Jonathan Riddell) -- Michael Vogt Fri, 27 Oct 2006 10:23:39 +0200 update-manager (0.45.1) edgy-updates; urgency=low * handle unexpected data from data more gracefuly (lp: #68553) -- Michael Vogt Fri, 27 Oct 2006 10:23:39 +0200 update-manager (0.45) edgy; urgency=low * debian/control: - added dependency on python-gconf - removed recommends on python-gnome2 -- Michael Vogt Wed, 11 Oct 2006 18:32:17 +0200 update-manager (0.44.17) edgy; urgency=low * memory leak fixed (lp: #43096) -- Michael Vogt Mon, 9 Oct 2006 15:24:40 +0200 update-manager (0.44.16) edgy; urgency=low * fix proxy usage when runing in non-root mode (lp: #40626) -- Michael Vogt Fri, 6 Oct 2006 15:17:37 +0200 update-manager (0.44.15) edgy; urgency=low * added missing python-vte dependency (lp: #63609) * added missing gksu dependency (lp: #63572) * don't remove xchat automatically anymore on upgrade (leftover from breezy->dapper) (lp: #63881) * do not come up with bogus dist-upgrade suggestions * fix bad english grammar (lp: #63761, #63474) * fix in the edgyUpdates quirks handler (lp: #63723) * catch error from _tryMarkObsoleteForRemoval() (lp: #63617) * fix plural forms for ro, pl (lp: #46421) * properly escape comments before displaying them (lp: #63475) -- Michael Vogt Wed, 4 Oct 2006 21:10:40 +0200 update-manager (0.44.14) edgy; urgency=low * fix some incorrect i18n markings (lp: #62681) -- Michael Vogt Mon, 2 Oct 2006 14:41:52 +0200 update-manager (0.44.13) edgy; urgency=low * fix missing i18n declarations (lp: #62519) * data/glade/SoftwareProperties.glade: - fix missing "translatable" property (lp: #62681) * DistUpgrade: - deal better with the python transition and the hpijs upgrade (lp: #62948) * UpdateManager/UpdateManager.py: - put the cancel button inside the text-area to avoid flickering - make sure that src_ver is always initialized (thanks to Simira for reporting) - filter python-apt future warning (especially for seb128) * DistUprade/DistUpgradeControler.py: - check for self.sources, self.aptcdrom before using it (lp: #61852) -- Michael Vogt Sat, 23 Sep 2006 00:53:06 +0200 update-manager (0.44.12) edgy; urgency=low * DistUpgrade/DistUpgradeViewGtk.py: - use '%d' instead of '%s' where appropriate (lp: #60239) * fixed lots of typos (lp: #60633) -- Michael Vogt Mon, 18 Sep 2006 16:37:52 +0200 update-manager (0.44.11) edgy; urgency=low * UpdateManager/UpdateManager.py: - fix error in get_changelog (lp: #59940). Thanks to Denis Washington - bugfix in the ListStore - use the update-manager desktop file when runing synaptic as the backend to get a consistent UI - UI improvements (thanks to Sebastian Heinlein!) - remove branding -- Michael Vogt Tue, 12 Sep 2006 20:37:55 +0200 update-manager (0.44.10) edgy; urgency=low * aptsources.py: - fix add_component() to avoid duplicated components - added MirrorsFile key to DistInfo code to have a better idea about the available mirrors * debian/control: - updated dbus dependencies (lp: #59862) -- Michael Vogt Mon, 11 Sep 2006 09:38:21 +0200 update-manager (0.44.9) edgy; urgency=low * SoftwareProperties/SoftwareProperties.py: - bugfix in the popcon enable code (lp: #59540) -- Michael Vogt Sat, 9 Sep 2006 02:13:40 +0200 update-manager (0.44.8) edgy; urgency=low * fix missing /var/log/dist-upgrade -- Michael Vogt Fri, 8 Sep 2006 20:33:04 +0200 update-manager (0.44.7) edgy; urgency=low * UpdateManager/UpdateManager.py: - be more accurate about dependencies when the user selects only a supset of the packages -- Michael Vogt Wed, 6 Sep 2006 12:29:05 +0200 update-manager (0.44.6) edgy; urgency=low * SoftwareProperties/SoftwareProperties.py: - fix inconsistency in the new software-sources dialog * integrate DistUpgrade code into UpdateManager to make sure that after e.g. a CDROM upgrade the rest of the system can still be fully upgraded over the net -- Michael Vogt Tue, 5 Sep 2006 13:30:22 +0200 update-manager (0.44.5) edgy; urgency=low * install the DistUpgrade package too * data/channels/Ubuntu.info.in: - warty is no longer officially supported -- Michael Vogt Wed, 30 Aug 2006 11:32:24 +0200 update-manager (0.44.4) edgy; urgency=low * SoftwareProperties/SoftwareProperties.py: - don't bomb when searching for the mirror (lp: #57015) * UpdateManager/UpdateManager.py: - added "%s-proposed" to the list of known origins -- Michael Vogt Thu, 24 Aug 2006 13:00:23 +0200 update-manager (0.44.3) edgy; urgency=low * help/C/update-manager-C.omf: - fix url (thanks to daniel holbach, lp: #45548) * show the units better * don't jump around on row activation (thanks to Sebastian Heinlein) * send "inhibit sleep" to power-manager while applying updates (lp #40697) -- Michael Vogt Tue, 15 Aug 2006 18:06:53 +0200 update-manager (0.44.2) edgy; urgency=low * added select all/unselect all (thanks to Sebastian Heinlein) * wording fixes * fix update counting bug -- Michael Vogt Thu, 3 Aug 2006 17:52:09 +0200 update-manager (0.44.1) edgy; urgency=low * make UpdateManager check for new distribution releases by default again * fix dist-upgrade fetching when run as non-root. * sort the package list by the origin (UpdateManagerEdgy spec) -- Michael Vogt Wed, 2 Aug 2006 13:00:42 +0200 update-manager (0.44) edgy; urgency=low * new SoftwareProperties GUI (thanks to Sebastian Heinlein) * support easy Popcon pariticipation -- Michael Vogt Fri, 28 Jul 2006 01:06:16 +0200 update-manager (0.43) edgy; urgency=low * fixes in the changelog reading code * speedup in the cache clear code * runs as user by default now * uses dbus to implement singleton behaviour * updated the software-properties code to know about edgy -- Michael Vogt Tue, 4 Jul 2006 11:16:31 +0200 update-manager (0.42.2ubuntu22) dapper; urgency=low * UpdateManager/UpdateManager.py: - fix a 'brown paperback' bug when the Meta-Release file checked (#46537) -- Michael Vogt Thu, 25 May 2006 12:30:42 +0200 update-manager (0.42.2ubuntu21) dapper; urgency=low * UpdateManager/UpdateManager.py: - when a distribution release becomes available, display the version, not the codename (as per https://wiki.ubuntu.com/CodeNamesToVersionNumbers) - fix a string that was not marked transltable -- Michael Vogt Wed, 24 May 2006 15:07:19 +0200 update-manager (0.42.2ubuntu20) dapper; urgency=low * SoftwareProperties/aptsources.py, channels/Ubuntu.info.in: - remove the codenames from the releases (as per https://wiki.ubuntu.com/CodeNamesToVersionNumbers) -- Michael Vogt Tue, 23 May 2006 16:04:39 +0200 update-manager (0.42.2ubuntu19) dapper; urgency=low * help/C/figures: - applied "pngcrush" on the figures in the manual, this saves 4 MB uncompressed (ubuntu: #45901) -- Michael Vogt Mon, 22 May 2006 09:37:19 +0200 update-manager (0.42.2ubuntu18) dapper; urgency=low * data/SoftwareProperties.glade: - fix missing 'translatable="yes"' property (ubuntu: #44409) - increase width to 620 (ubuntu: #40540) -- Michael Vogt Fri, 19 May 2006 01:45:22 +0200 update-manager (0.42.2ubuntu17) dapper; urgency=low * debian/control: - depend on later python-apt (#45325) * SoftwareProperties/SoftwareProperties.py: - fix key updating after import (ubuntu #44927) * UpdateManager/UpdateManager.py: - remove debug output -- Michael Vogt Fri, 19 May 2006 00:04:02 +0200 update-manager (0.42.2ubuntu16) dapper; urgency=low * use version and section of the source package (if this information is available) when building the changelog URL (ubuntu #40058) * SoftwareProperties/SoftwareProperties.py: - if no config is found create a new one (ubuntu: #37560) * UpdateManager/UpdateManager.py: - fix problem in changelog reading code when matching against installed versions with epochs (ubuntu: #40058) -- Michael Vogt Thu, 11 May 2006 17:33:40 +0200 update-manager (0.42.2ubuntu15) dapper; urgency=low * disable the install button if there no updates (ubuntu: #42284) (Thanks to Sebastian Heinlein) * show main window *after* restoring the size (ubuntu: #42277) (Thanks to Sebastian Heinlein) * fix broken spelling, typos, wording (ubuntu: #42431, #28777, #40425, #40727) * help/C: merged from the docteam svn (ubuntu: 36092) -- Michael Vogt Tue, 2 May 2006 12:13:59 +0200 update-manager (0.42.2ubuntu14) dapper; urgency=low * wording/glade file fixes (thanks to Sebastian Heinlein) * many updates to the dist-upgrader code -- Michael Vogt Fri, 28 Apr 2006 23:04:08 +0200 update-manager (0.42.2ubuntu13) dapper; urgency=low * po/POTFILES.in: add missing desktop file (ubuntu: #39410) * UpdateManager/UpdateManager.py: - fix in the get_changelog logic (ubuntu: #40058) - correct a error in the changelog parser (ubuntu: #40060) - fix download size reporting (ubuntu: #39579) * debian/rules: added dh_iconcache * setup.py: install the icons into the hicolor icon schema (thanks to Sebastian Heinlein) -- Michael Vogt Thu, 20 Apr 2006 18:23:54 +0200 update-manager (0.42.2ubuntu12) dapper; urgency=low * channels/*.in: typo fix * po/POTFILES.in: add missing files (ubuntu: #38738) * fix the help string in update-manager (ubuntu: #23274) * fix the bad grammar in "Cannot install all available updates" (ubuntu: #32864) * don't inform about new distro release on dapper by default (can be changed via a gconf setting/commandline switch) * fix UI issue of the edit dialog for given templates (thanks to Chipzz for the patch) -- Michael Vogt Wed, 12 Apr 2006 20:23:21 +0200 update-manager (0.42.2ubuntu11) dapper; urgency=low * debian/control: - depend on unattended-upgrades - move python-gnome2 to recommends (we only use gconf from it) * UpdateManager/fakegconf.py: update for xubuntu (thanks to Jani Monoses) -- Michael Vogt Wed, 5 Apr 2006 14:46:10 +0200 update-manager (0.42.2ubuntu10) dapper; urgency=low * update-manger: fix a missing import (#36138) * typo fix (#36123) * correct dapper version number (#36136) * keybindings fixed (#36116) * calc the update before downloading the changelog (#36140) * add a fake gconf interface for xubuntu (nop for normal ubuntu) (Thanks to Jani Monoses for the patch) -- Michael Vogt Tue, 4 Apr 2006 18:17:16 +0200 update-manager (0.42.2ubuntu9) dapper; urgency=low * Better English (tm) (fixes #35985) * Use the the number of available and not selected updates to determinate if the system is up-to-date (fixes #35300) * fix ui problem with software preferences (fixes #35987) * fix width problem in SoftwareProperties -- Michael Vogt Wed, 22 Mar 2006 21:57:28 +0100 update-manager (0.42.2ubuntu8) dapper; urgency=low * fix a FTBFS -- Michael Vogt Wed, 15 Mar 2006 17:54:08 +0000 update-manager (0.42.2ubuntu7) dapper; urgency=low * various spelling fixes and ui-glitches -- Michael Vogt Tue, 14 Mar 2006 16:58:01 +0000 update-manager (0.42.2ubuntu6) dapper; urgency=low * po/pt_BR.po: updated translation (thanks to Carlos Eduardo Pedroza Santiviago) * po/pt.po: updated Portugise translation (thanks to Rui Azevedo) * debian/control: arch: all now * debian/rules: undo the detection in favour of the simpler update of the desktop files * data/gnome-software-properties.desktop.in, update-manager.desktop.in: - added X-Ubuntu-Gettext-Domain * help/*: updated to latest svn -- Michael Vogt Mon, 20 Feb 2006 15:58:09 +0100 update-manager (0.42.2ubuntu5) dapper; urgency=low * debian/rules: Add gettext domain to .server and .desktop files to get language pack support for them. (Similarly to cdbs' gnome.mk) -- Martin Pitt Thu, 23 Feb 2006 18:42:04 +0100 update-manager (0.42.2ubuntu4) dapper; urgency=low * removed some of the gnome dependencies (gconf still in) * the ReleaseNotes dialog has clickable links now (thanks to Sebastian Heinlein) -- Michael Vogt Mon, 20 Feb 2006 13:24:55 +0100 update-manager (0.42.2ubuntu3) dapper; urgency=low * fixed description of the ubuntu repository (#30813) * use the new synaptic --parent-window-id switch when runing the backend -- Michael Vogt Wed, 8 Feb 2006 20:53:46 +0100 update-manager (0.42.2ubuntu2) dapper; urgency=low * SoftwareProperties/SoftwareProperties.py: - re-added the internet update options (#27932) * data/gnome-software-properties.desktop: - use gksu instead of gksudo (#30057) * wording fixes (#30296) -- Michael Vogt Tue, 7 Feb 2006 13:13:09 +0100 update-manager (0.42.2ubuntu1) dapper; urgency=low * UpdateManager/MetaRelease.py: - never offer a upgrade to a unsupported (i.e. developer) dist * data/gnome-software-properties.desktop.in: use X-KDE-SubstituteUID=true * small UI layout changes (should fix the cancel/close button problem) -- Michael Vogt Tue, 31 Jan 2006 09:48:13 +0000 update-manager (0.42.1ubuntu1) dapper; urgency=low * UpdateManagert: improved the HIG complicane more, removed some of the uglines from the last version (Malone #22090) * SoftwareProperties: improved the HIG complicane (Malone #28530) (thanks to Sebastian Heinlein) -- Michael Vogt Tue, 17 Jan 2006 17:27:15 +0100 update-manager (0.42ubuntu1) dapper; urgency=low * improved the HIG comlicane, thanks to Sebastian Heinlein: - Rename the button "close" to "cancel" - Move status bar to a separate dialog - Wording - Add a wider border around the changelog and description - Align and capitalize the button "Cancel downloading" (ubuntu: #28453) * bugfixes in the cache locking -- Michael Vogt Mon, 16 Jan 2006 12:56:29 +0100 update-manager (0.40.2) dapper; urgency=low * SoftwareProperties/SoftwareProperties.py: - fix a problem with transient/parent window in custom apt line dialog (ubuntu #21585) - fix a problem in the conf file writer that can lead to absurdly large files -- Michael Vogt Thu, 5 Jan 2006 12:37:33 +0100 update-manager (0.40.1) dapper; urgency=low * SoftwareProperties/SoftwareProperties.py: - make it embedded friendlier -- Michael Vogt Fri, 16 Dec 2005 14:02:27 +0100 update-manager (0.40) dapper; urgency=low * new upstream release: - switched from autotools to distutils - massive code cleanups - use SimpleGladeApp now - SoftwareProperties has a new GUI - UpdateManager has support for upgrading from one dist to another now (given that the required "recipe" for the upgrade is available) See https://wiki.ubuntu.com/AutomaticUpgrade for details - use python-apt for "reload" and "add cdrom" now - improved the handling of sources.list a lot (including support for /etc/apt/sources.list.d) * support for the AutomaticUpgrades spec added via the meta-release information * data/update-manager.desktop.in: - use X-KDE-SubstituteUID added and use gksu now -- Michael Vogt Tue, 15 Nov 2005 17:22:12 +0100 update-manager (0.37.1+svn20050404.15) breezy; urgency=low * added intltool to build-depends (for rosetta) -- Michael Vogt Thu, 6 Oct 2005 17:30:38 +0200 update-manager (0.37.1+svn20050404.14) breezy; urgency=low * debian/rules: - run intltool-update -p for rosetta * src/update-manager.in: - release the lock before runing gnome-software-properties (ubuntu #17022) -- Michael Vogt Tue, 4 Oct 2005 22:28:43 +0200 update-manager (0.37.1+svn20050404.13) breezy; urgency=low * src/update-manager.in: - use the right column for type-ahead searching (ubuntu #16853) -- Michael Vogt Tue, 4 Oct 2005 11:01:58 +0200 update-manager (0.37.1+svn20050404.12) breezy; urgency=low * added locking support * use explicit path to python2.4 (thanks anthony!) (Ubuntu #16087) * CTRL-{w,q} close the update-manager window (Ubuntu #15729) -- Michael Vogt Wed, 28 Sep 2005 17:40:05 +0200 update-manager (0.37.1+svn20050404.11) breezy; urgency=low * fix a typo in the reload tooltip (thanks to P Jones) (ubuntu #14699) -- Michael Vogt Mon, 12 Sep 2005 14:49:13 +0200 update-manager (0.37.1+svn20050404.10) breezy; urgency=low * fix for a typo in the source of the last upload (*cough*) -- Michael Vogt Wed, 31 Aug 2005 15:39:53 +0200 update-manager (0.37.1+svn20050404.9) breezy; urgency=low * do a "save" dist-upgrade (add only, no removes) -- Michael Vogt Wed, 31 Aug 2005 12:09:20 +0200 update-manager (0.37.1+svn20050404.8) breezy; urgency=low * if repository window is running from inside synaptic, don't show "Add cdrom" button (it's available in the synaptic menu already) -- Michael Vogt Tue, 30 Aug 2005 14:12:50 +0200 update-manager (0.37.1+svn20050404.7) breezy; urgency=low * if running from inside another application (e.g. synaptic), make sure the dialogs get a correct parent (ubuntu #14001) * if nothing changed, do not run "reload" if runing from inside synaptic -- Michael Vogt Mon, 29 Aug 2005 12:09:12 +0200 update-manager (0.37.1+svn20050404.6) breezy; urgency=low * remove (parts of) ubuntu branding from the application * make it run only with python2.4 (ubuntu #10876) * make sure to always properly escape the strings displayed in the treeview -- Michael Vogt Tue, 23 Aug 2005 16:49:54 +0200 update-manager (0.37.1+svn20050404.5) breezy; urgency=low * updates where not shown sometimes, fixed that (ubuntu #13410) -- Michael Vogt Tue, 16 Aug 2005 10:49:46 +0200 update-manager (0.37.1+svn20050404.4) breezy; urgency=low * re-read the sources.list after a "add-custom" (ubuntu #9855) * settings window has a title (ubuntu #10756) * default actions for the buttons (ubuntu #10741) * various typos fixed (ubuntu #9866) * make sure that no dialogs are opened without a parent (ubuntu #10284) -- Michael Vogt Mon, 15 Aug 2005 15:15:06 +0200 update-manager (0.37.1+svn20050404.3) breezy; urgency=low * use breezy as default for newly created sources (ubuntu #13009) * be more carefull with preserving the mirror * a better explaination for the "Reload" button (ubuntu #11432) -- Michael Vogt Wed, 10 Aug 2005 12:07:55 +0200 update-manager (0.37.1+svn20050404.2) breezy; urgency=low * fix a small problem in the parsing code (ubuntu #8754) -- Michael Vogt Fri, 6 May 2005 11:24:17 +0200 update-manager (0.37.1+svn20050404.1) hoary; urgency=low * pickup the correct proxy settings from apt (#8668) -- Michael Vogt Wed, 6 Apr 2005 16:39:44 +0200 update-manager (0.37.1+svn20050404) hoary; urgency=low * translation updates: - xh, fr -- Michael Vogt Mon, 4 Apr 2005 22:21:17 +0200 update-manager (0.37.1+svn20050403) hoary; urgency=low * translation updates: - pt_BR, tw * documentation updates (thanks to Sean Wheller and Jeff Schering) * small fixes: - make sure to not duplicate sources.list entires (even for mirrors) - added the hoary-updates to the templates and matchers (#8600) - some missing i18n strings marked as such (thanks to Zygmunt Krynicki) - don't fail on missing net connections - always update the status label -- Michael Vogt Sun, 3 Apr 2005 20:54:42 +0200 update-manager (0.37.1+svn20050323) hoary; urgency=low * translation updates * gui can set the new apt cache properties now * warn about broken packages (#7688) * only ask to reload the package list if something changed (#7871) * various focus fixes (#7900) -- Michael Vogt Wed, 23 Mar 2005 01:18:38 +0100 update-manager (0.37.1+svn20050314) hoary; urgency=low * new svn snapshot, lot's of bugfixes and i18n updates. - fix for a ui problem (#6837) - read pined packages correctly (#7058) - update list correctly after reload (#7182) - tell user when dist-upgrade is needed (#7271) - cdrom sources can be added now too (#7315) - meta-release file bugfix (#7330) - translation updates (da, fr, es, ro, pl) -- Michael Vogt Mon, 14 Mar 2005 08:49:52 +0100 update-manager (0.37.1+svn20050304) hoary; urgency=low * new snapshot, use python-apt depcache now -- Michael Vogt Fri, 4 Mar 2005 22:55:46 +0100 update-manager (0.37.1+svn20050301) hoary; urgency=low * new snapshot, better de.po, better i18n support -- Michael Vogt Tue, 1 Mar 2005 12:06:39 +0100 update-manager (0.37.1+svn20050228.1) hoary; urgency=low * fixed a FTBFS (because of the "cleanfiles" in Makefile.am) -- Michael Vogt Mon, 28 Feb 2005 19:12:28 +0100 update-manager (0.37.1+svn20050228) hoary; urgency=low * get the correct candidate version for updatable packages (ubuntu #6825) -- Michael Vogt Mon, 28 Feb 2005 11:00:38 +0100 update-manager (0.37.1+svn20050221) hoary; urgency=low * new svn snapshot, fixes: - #6756: window size too big - #6767, #6780: gnome-software-properties window broken -- Michael Vogt Mon, 21 Feb 2005 11:30:52 +0100 update-manager (0.37.1+svn20050219) hoary; urgency=low * new svn snapshot, fixes: - #6565, #6565 (typo) - #6634 (remeber last details state) - #6635 (progress dialog merged in main window) - #6578 (hide details if no updates are available) -- Michael Vogt Sat, 19 Feb 2005 00:32:50 +0100 update-manager (0.37.1) hoary; urgency=low * typo (#6542) * package list is sorted now * applied "hide details if system is update-to-date" patch (#6578, thanks to Jorge Bernal) -- Michael Vogt Tue, 15 Feb 2005 10:49:17 +0100 update-manager (0.37) hoary; urgency=low * test for lock file and show error if the lock is already taken * use utf8 for the description * changelogs are fetched from http://changelogs.ubuntu.com/ now (closes: #6315) * handle 404 from http and set the error accordingly * set main_window to not sensitive when downloading changelogs * if no updates are available, hide the checkbox column (closes: #6443) -- Michael Vogt Mon, 14 Feb 2005 15:08:06 +0100 update-manager (0.36.6) hoary; urgency=low * various bugfixes and embedding of synaptics progress windows -- Michael Vogt Tue, 8 Feb 2005 22:12:53 +0100 update-manager (0.36.5) hoary; urgency=low * disabled sources can now be displayed too (optional preference) * comments can be added * various bugfixes -- Michael Vogt Thu, 3 Feb 2005 16:21:32 +0100 update-manager (0.36.4) hoary; urgency=low * regression of the last upload fixed * gnome-software-properties can be embedded into other windows now (usefull for e.g. synaptic) -- Michael Vogt Mon, 31 Jan 2005 22:59:35 +0100 update-manager (0.36.3) hoary; urgency=low * updates to the main window design -- Michael Vogt Mon, 31 Jan 2005 16:59:41 +0100 update-manager (0.36.2) hoary; urgency=low * new main window layout in update-manager (Michiel design, looks _so_ nice) -- Michael Vogt Fri, 28 Jan 2005 12:20:57 +0100 update-manager (0.36.1) hoary; urgency=low * columns are resizable now (closes: #5541) * lot's of typo/gui-glitches fixes (closes: #5200, #5816, #5801, #5802) -- Michael Vogt Mon, 24 Jan 2005 16:14:45 +0100 update-manager (0.36) hoary; urgency=low * new upstream release, added support to control APT::Periodic::* variables in gnome-software-properties -- Michael Vogt Wed, 19 Jan 2005 16:59:19 +0100 update-manager (0.35) hoary; urgency=low * new upstream release - typo fix (closes: #5200) -- Michael Vogt Wed, 5 Jan 2005 12:23:55 +0100 update-manager (0.34) hoary; urgency=low * new upstream release -- Michael Vogt Fri, 24 Dec 2004 12:50:13 +0100 update-manager (0.33) hoary; urgency=low * new upstream release, featuring the gnome-software-properties -- Michael Vogt Tue, 30 Nov 2004 12:41:06 +0100 update-manager (0.32) hoary; urgency=low * new upstream release -- Michael Vogt Tue, 23 Nov 2004 15:28:09 +0100 update-manager (0.31-1ubuntu1) hoary; urgency=low * Update Build-Deps and fix FTBFS. -- Fabio M. Di Nitto Mon, 22 Nov 2004 13:04:09 +0100 update-manager (0.31-1) hoary; urgency=low * new upstream release, added icon, desktop file and bugfix -- Michael Vogt Sat, 13 Nov 2004 11:30:37 +0100 update-manager (0.3-1) hoary; urgency=low * New upstream release, inital ubuntu release -- Michael Vogt Wed, 3 Nov 2004 14:48:14 +0100 update-manager (0.2-1) unstable; urgency=low * New upstream release. -- Michiel Sikkes Sat, 30 Oct 2004 02:22:12 +0200 update-manager (0.1-2) unstable; urgency=low * Um Yeah. -- Michiel Sikkes Tue, 26 Oct 2004 13:16:13 +0200 update-manager (0.1-1) unstable; urgency=low * Initial Release. -- Michiel Sikkes Mon, 25 Oct 2004 21:49:07 +0200 software-properties-0.92.36/debian/python3-software-properties.install0000664000000000000000000000007612222774777023073 0ustar debian/tmp/usr/lib/python3*/*-packages/softwareproperties/*py software-properties-0.92.36/debian/copyright0000664000000000000000000000137612222774777016014 0ustar This package was debianized by Michiel Sikkes on Mon, 25 Oct 2004 21:49:07 +0200. It was downloaded from http://luon.net/~michiels/ubuntu/ Upstream Authors: Michiel Sikkes Michael Vogt Sebastian Heinlein Jonathan Riddell Copyright: 2004-2007 Canonical Ltd. 2004-2005 Michiel Sikkes 2006 FSF Europe All code released under the GPL, see /usr/share/common-licenses/GPL-2 With the exception of softwareproperties/gtk/SimpleGladeApp.py which is released under the LGPL, see /usr/share/common-licenses/LGPL-2.1 The documentation in the help/ directory is released under the GNU Free Documentation License, see COPYING-DOCS for more information. software-properties-0.92.36/debian/python-software-properties.install0000664000000000000000000000007612222774777023010 0ustar debian/tmp/usr/lib/python2*/*-packages/softwareproperties/*py software-properties-0.92.36/debian/control0000664000000000000000000000653612322725530015447 0ustar Source: software-properties Section: admin Priority: optional Maintainer: Michael Vogt Build-Depends: debhelper (>= 9), libxml-parser-perl, intltool, python-all (>= 2.6.6-3~), python-distutils-extra (>= 1.90), python-setuptools, python3-all, python3-distutils-extra, python3-setuptools, dh-translations Standards-Version: 3.9.4 Vcs-Bzr: http://code.launchpad.net/~ubuntu-core-dev/software-properties/main XS-Testsuite: autopkgtest Package: python-software-properties Section: python Architecture: all Depends: ${python:Depends}, ${misc:Depends}, python, python-apt (>= 0.6.20ubuntu16), python-pycurl, lsb-release, unattended-upgrades, iso-codes Description: manage the repositories that you install software from This software provides an abstraction of the used apt repositories. It allows you to easily manage your distribution and independent software vendor software sources. Package: python3-software-properties Section: python Architecture: all Depends: ${python3:Depends}, ${misc:Depends}, python3, python3-apt (>= 0.6.20ubuntu16), python3-pycurl, lsb-release, unattended-upgrades, iso-codes Description: manage the repositories that you install software from This software provides an abstraction of the used apt repositories. It allows you to easily manage your distribution and independent software vendor software sources. Package: software-properties-common Architecture: all Depends: ${python3:Depends}, ${misc:Depends}, python3, python3-gi, gir1.2-glib-2.0, python-apt-common (>= 0.9), python3-dbus, python3-software-properties (= ${binary:Version}), ca-certificates Breaks: python-software-properties (<< 0.85), python3-software-properties (<< 0.85) Replaces: python-software-properties (<< 0.85), python3-software-properties (<< 0.85) Description: manage the repositories that you install software from (common) This software provides an abstraction of the used apt repositories. It allows you to easily manage your distribution and independent software vendor software sources. . This package contains the common files for software-properties like the D-Bus backend. Package: software-properties-gtk Architecture: all Depends: ${python3:Depends}, ${misc:Depends}, python3, python3-software-properties (= ${binary:Version}), python3-gi, gir1.2-gtk-3.0, python3-aptdaemon.gtk3widgets, software-properties-common, ubuntu-drivers-common (>= 1:0.2.75), python3-gi, Description: manage the repositories that you install software from (gtk) This software provides an abstraction of the used apt repositories. It allows you to easily manage your distribution and independent software vendor software sources. . This package contains a GTK+ based graphical interface. Package: software-properties-kde Architecture: all Section: kde Depends: ${python3:Depends}, ${misc:Depends}, python3, python3-pyqt4, python3-pykde4, python3-software-properties (= ${binary:Version}), qapt-batch, software-properties-common Description: manage the repositories that you install software from (kde) This software provides an abstraction of the used apt repositories. It allows you to easily manage your distribution and independent software vendor software sources. . This package contains a Qt/KDE based graphical interface. software-properties-0.92.36/debian/software-properties-common.manpages0000664000000000000000000000004412222774777023077 0ustar debian/manpages/add-apt-repository.1software-properties-0.92.36/debian/software-properties-common.install0000664000000000000000000000026312222774777022755 0ustar etc/dbus-1 usr/bin/add-apt-repository usr/lib/software-properties usr/lib/python3*/*-packages/softwareproperties/dbus/*.py usr/share/dbus-1/ usr/share/locale/* usr/share/polkit-1 software-properties-0.92.36/debian/tests/0000775000000000000000000000000012322727601015175 5ustar software-properties-0.92.36/debian/tests/run-tests0000775000000000000000000000125712222774777017113 0ustar #!/bin/sh set -e tmpdir="$(mktemp -d)" cleanup () { rm -rf "$tmpdir" } trap cleanup EXIT HUP INT QUIT TERM # This is a bit nasty, but at least tests/test_dbus.py relies on being run # in a UTF-8 locale. Override this for now, but it might be better to make # the test work in other locales too. export LC_ALL=C.UTF-8 code=0 if [ "$TMPDIR" ]; then env -u TMPDIR xvfb-run -e "$tmpdir/xvfb.log" sh -ec "TMPDIR=\"$TMPDIR\" python setup.py test && python3 setup.py test" || code="$?" else xvfb-run -e "$tmpdir/xvfb.log" sh -ec "python setup.py test && python3 setup.py test" || code="$?" fi if [ "$code" != 0 ]; then echo "xauth/Xrdb output:" cat "$tmpdir/xvfb.log" fi exit "$code" software-properties-0.92.36/debian/tests/control0000664000000000000000000000033012222774777016613 0ustar Tests: run-tests Depends: @, xvfb, python-dbus, python-pycurl, python3-pycurl, python-mock, python3-mock, python-distutils-extra, python-setuptools, python3-distutils-extra, python3-setuptools, python-gi, python3-gi software-properties-0.92.36/debian/manpages/0000775000000000000000000000000012322727601015626 5ustar software-properties-0.92.36/debian/manpages/software-properties-kde.10000664000000000000000000000672112222774777022522 0ustar .\" This file was generated by kdemangen.pl .TH SOFTWARE\-PROPERTIES\-KDE 1 "Sep 2009" "K Desktop Environment" "Software Sources List editor" .SH NAME software\-properties\-kde \- Software Sources List editor .SH SYNOPSIS software\-properties\-kde [Qt\-options] [KDE\-options] [options] .SH DESCRIPTION Software Sources List editor .SH OPTIONS .SS Options: .TP .B \-\-debug Print some debug information to the command line .TP .B \-\-massive\-debug Print a lot of debug information to the command line .TP .B \-\-dont\-update No update on repository change (useful if called from an external program) .TP .B \-\-enable\-component Enable the specified component of the distro's repositories [component_arg] .TP .B \-\-enable\-ppa Enable PPA with the given name [ppa_arg] .TP .B \-\-attach Win ID to act as a dialogue for [attach_arg] .SS Generic options: .TP .B \-\-help Show help about options .TP .B \-\-help\-qt Show Qt specific options .TP .B \-\-help\-kde Show KDE specific options .TP .B \-\-help\-all Show all options .TP .B \-\-author Show author information .TP .B \-v, \-\-version Show version information .TP .B \-\-license Show license information .TP .B \-\- End of options .SS .SS KDE options: .TP .B \-\-caption Use 'caption' as name in the titlebar .TP .B \-\-icon Use 'icon' as the application icon .TP .B \-\-config Use alternative configuration file .TP .B \-\-nocrashhandler Disable crash handler, to get core dumps .TP .B \-\-waitforwm Waits for a WM_NET compatible windowmanager .TP .B \-\-style