├── HACKING ├── IDEAS ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README ├── TODO ├── contrib ├── bash-completion │ ├── README │ └── smart-completion.sh ├── ksmarttray │ ├── AUTHORS │ ├── COPYING │ ├── ChangeLog │ ├── INSTALL │ ├── LICENSE │ ├── Makefile.am │ ├── NEWS │ ├── README │ ├── admin │ │ ├── Doxyfile.am │ │ ├── Doxyfile.global │ │ ├── Makefile.common │ │ ├── acinclude.m4.in │ │ ├── am_edit │ │ ├── bcheck.pl │ │ ├── compile │ │ ├── conf.change.pl │ │ ├── config.guess │ │ ├── config.pl │ │ ├── config.sub │ │ ├── configure.in.bot.end │ │ ├── configure.in.min │ │ ├── cvs.sh │ │ ├── debianrules │ │ ├── depcomp │ │ ├── deps.am │ │ ├── detect-autoconf.pl │ │ ├── doxygen.sh │ │ ├── install-sh │ │ ├── libtool.m4.in │ │ ├── ltmain.sh │ │ ├── missing │ │ ├── mkinstalldirs │ │ ├── nmcheck │ │ ├── oldinclude.m4.in │ │ ├── pkg.m4.in │ │ └── ylwrap │ ├── build.sh │ ├── configure.in.in │ ├── ksmarttray.desktop │ └── src │ │ ├── Makefile.am │ │ ├── eventsrc │ │ ├── ksmarttray.cc │ │ ├── ksmarttray.h │ │ ├── ksmarttray.png │ │ └── ksmarttray.py ├── ksmarttray4 │ ├── Makefile │ ├── ksmarttray.desktop │ ├── ksmarttray.png │ ├── ksmarttray.py │ └── smart-helper ├── patches │ ├── rpm4.2.2-python.patch │ └── rpm4.3.2-python.patch ├── rpmhelper │ ├── README │ ├── rpmhelper.c │ └── setup.py ├── servicemenus │ ├── README │ ├── add_smart_channel.desktop │ └── kde_add_smart_channel.sh ├── smart-applet │ ├── Makefile │ ├── smart-applet.png │ ├── smart-applet.py │ ├── smart-helper.helper │ └── smart-helper.pam └── smart-update │ ├── Makefile │ └── smart-update.c ├── doc ├── Makefile ├── README.html ├── config.xsl ├── default.css ├── gpl.xml ├── images │ ├── smart-gksu.png │ ├── smart-gtk.png │ ├── smart-qt.png │ └── smart-root.png ├── smart.8 ├── smart.xml └── sysconf-index ├── locale ├── de │ └── LC_MESSAGES │ │ └── smart.po ├── es_ES │ └── LC_MESSAGES │ │ └── smart.po ├── fr │ └── LC_MESSAGES │ │ └── smart.po ├── hu │ └── LC_MESSAGES │ │ └── smart.po ├── it │ └── LC_MESSAGES │ │ └── smart.po ├── pt_BR │ └── LC_MESSAGES │ │ └── smart.po ├── ru │ └── LC_MESSAGES │ │ └── smart.po ├── smart.pot ├── sv │ └── LC_MESSAGES │ │ └── smart.po ├── zh_CN │ └── LC_MESSAGES │ │ └── smart.po └── zh_TW │ └── LC_MESSAGES │ └── smart.po ├── sandbox ├── cdproblems.py ├── crossrepository.py ├── docbookopts.py ├── fileconflicts.py ├── hashtime.py ├── loops.py ├── notobsoleted.py └── notobsoleting.py ├── setup.cfg ├── setup.py ├── smart.py ├── smart ├── __init__.py ├── backends │ ├── __init__.py │ ├── arch │ │ ├── __init__.py │ │ ├── archver.py │ │ ├── base.py │ │ ├── loader.py │ │ └── pm.py │ ├── deb │ │ ├── __init__.py │ │ ├── _base.c │ │ ├── base.py │ │ ├── cdebver.c │ │ ├── debver.py │ │ ├── loader.py │ │ └── pm.py │ ├── rpm │ │ ├── README │ │ ├── __init__.py │ │ ├── base.py │ │ ├── crpmver.c │ │ ├── descriptions.py │ │ ├── header.py │ │ ├── metadata.py │ │ ├── pm.py │ │ ├── redcarpet.py │ │ ├── rpmver.py │ │ ├── synthesis.py │ │ ├── updateinfo.py │ │ └── yast2.py │ └── slack │ │ ├── __init__.py │ │ ├── base.py │ │ ├── loader.py │ │ ├── pm.py │ │ └── slackver.py ├── cache.py ├── ccache.c ├── channel.py ├── channels │ ├── __init__.py │ ├── apt_deb.py │ ├── apt_deb_info.py │ ├── apt_rpm.py │ ├── apt_rpm_info.py │ ├── arch_dir.py │ ├── arch_dir_info.py │ ├── arch_site.py │ ├── arch_site_info.py │ ├── arch_sys.py │ ├── arch_sys_info.py │ ├── deb_dir.py │ ├── deb_dir_info.py │ ├── deb_sys.py │ ├── deb_sys_info.py │ ├── mirrors.py │ ├── mirrors_info.py │ ├── red_carpet.py │ ├── red_carpet_info.py │ ├── rpm_dir.py │ ├── rpm_dir_info.py │ ├── rpm_hdl.py │ ├── rpm_hdl_info.py │ ├── rpm_md.py │ ├── rpm_md_info.py │ ├── rpm_sys.py │ ├── rpm_sys_info.py │ ├── slack_dir.py │ ├── slack_dir_info.py │ ├── slack_site.py │ ├── slack_site_info.py │ ├── slack_sys.py │ ├── slack_sys_info.py │ ├── up2date_mirrors.py │ ├── up2date_mirrors_info.py │ ├── urpmi.py │ ├── urpmi_info.py │ ├── yast2.py │ └── yast2_info.py ├── commands │ ├── __init__.py │ ├── channel.py │ ├── check.py │ ├── clean.py │ ├── config.py │ ├── download.py │ ├── fix.py │ ├── flag.py │ ├── info.py │ ├── install.py │ ├── mirror.py │ ├── newer.py │ ├── nothing.py │ ├── priority.py │ ├── query.py │ ├── reinstall.py │ ├── remove.py │ ├── search.py │ ├── stats.py │ ├── update.py │ └── upgrade.py ├── const.py ├── control.py ├── fetcher.py ├── hook.py ├── interface.py ├── interfaces │ ├── __init__.py │ ├── gtk │ │ ├── __init__.py │ │ ├── changes.py │ │ ├── channels.py │ │ ├── command.py │ │ ├── flags.py │ │ ├── interactive.py │ │ ├── interface.py │ │ ├── legend.py │ │ ├── log.py │ │ ├── mirrors.py │ │ ├── packageinfo.py │ │ ├── packageview.py │ │ ├── preferences.py │ │ ├── priorities.py │ │ └── progress.py │ ├── images │ │ ├── __init__.py │ │ ├── crystal-add.png │ │ ├── crystal-apply.png │ │ ├── crystal-cancel.png │ │ ├── crystal-delete.png │ │ ├── crystal-edit.png │ │ ├── crystal-redo.png │ │ ├── crystal-reload.png │ │ ├── crystal-search.png │ │ ├── crystal-trash.png │ │ ├── crystal-undo.png │ │ ├── crystal-upgrade.png │ │ ├── folder.png │ │ ├── package-available-locked.png │ │ ├── package-available.png │ │ ├── package-broken.png │ │ ├── package-downgrade.png │ │ ├── package-install.png │ │ ├── package-installed-locked.png │ │ ├── package-installed-outdated.png │ │ ├── package-installed.png │ │ ├── package-new-locked.png │ │ ├── package-new.png │ │ ├── package-purge.png │ │ ├── package-reinstall.png │ │ ├── package-remove.png │ │ ├── package-upgrade.png │ │ └── smart.png │ ├── qt │ │ ├── __init__.py │ │ ├── changes.py │ │ ├── channels.py │ │ ├── command.py │ │ ├── flags.py │ │ ├── interactive.py │ │ ├── interface.py │ │ ├── legend.py │ │ ├── log.py │ │ ├── mirrors.py │ │ ├── packageinfo.py │ │ ├── packageview.py │ │ ├── priorities.py │ │ └── progress.py │ ├── qt4 │ │ ├── __init__.py │ │ ├── changes.py │ │ ├── channels.py │ │ ├── command.py │ │ ├── flags.py │ │ ├── interactive.py │ │ ├── interface.py │ │ ├── legend.py │ │ ├── log.py │ │ ├── mirrors.py │ │ ├── packageinfo.py │ │ ├── packageview.py │ │ ├── priorities.py │ │ └── progress.py │ └── text │ │ ├── __init__.py │ │ ├── interactive.py │ │ ├── interface.py │ │ └── progress.py ├── media.py ├── mirror.py ├── option.py ├── pkgconfig.py ├── plugins │ ├── __init__.py │ ├── aptchannelsync.py │ ├── channelsync.py │ ├── debdir.py │ ├── detectsys.py │ ├── landscape.py │ ├── rpmdir.py │ ├── urpmichannelsync.py │ ├── yumchannelsync.py │ └── zyppchannelsync.py ├── pm.py ├── progress.py ├── report.py ├── searcher.py ├── sorter.py ├── sysconfig.py ├── transaction.py ├── uncompress.py └── util │ ├── __init__.py │ ├── cdistance.c │ ├── celementtree │ ├── cElementTree.c │ └── expat │ │ ├── ascii.h │ │ ├── asciitab.h │ │ ├── expat.h │ │ ├── expat_external.h │ │ ├── iasciitab.h │ │ ├── internal.h │ │ ├── latin1tab.h │ │ ├── macconfig.h │ │ ├── nametab.h │ │ ├── utf8tab.h │ │ ├── winconfig.h │ │ ├── xmlparse.c │ │ ├── xmlrole.c │ │ ├── xmlrole.h │ │ ├── xmltok.c │ │ ├── xmltok.h │ │ ├── xmltok_impl.c │ │ ├── xmltok_impl.h │ │ └── xmltok_ns.c │ ├── ctagfile.c │ ├── distance.py │ ├── elementtree │ ├── ElementInclude.py │ ├── ElementPath.py │ ├── ElementTree.py │ ├── HTMLTreeBuilder.py │ ├── SgmlopXMLTreeBuilder.py │ ├── SimpleXMLTreeBuilder.py │ ├── SimpleXMLWriter.py │ ├── TidyHTMLTreeBuilder.py │ ├── TidyTools.py │ ├── XMLTreeBuilder.py │ └── __init__.py │ ├── filetools.py │ ├── geolocate.py │ ├── metalink.py │ ├── objdigest.py │ ├── optparse.py │ ├── pathlocks.py │ ├── pexpect.py │ ├── sha256module.c │ ├── ssh.py │ ├── strtools.py │ └── tagfile.py ├── test └── tests ├── __init__.py ├── aptdeb.py ├── aptdeb.txt ├── aptrpm.txt ├── archbase.py ├── archdir.txt ├── archsite.txt ├── auto.txt ├── backend.txt ├── celementtree.py ├── channel.py ├── data ├── aptdeb │ ├── component-less │ │ ├── Packages.gz │ │ ├── Release │ │ ├── Release.gpg │ │ ├── name1_version1-release1_all.deb │ │ └── name2_version2-release2_all.deb │ ├── dists │ │ ├── Release │ │ ├── Release.gpg │ │ └── component │ │ │ └── binary-i386 │ │ │ ├── Packages.gz │ │ │ ├── name1_version1-release1_all.deb │ │ │ └── name2_version2-release2_all.deb │ ├── fink-virtual-pkgs │ ├── trustdb.gpg │ └── trusted.gpg ├── aptrpm │ ├── RPMS.main │ │ ├── name1-version1-release1.noarch.rpm │ │ └── name2-version2-release2.noarch.rpm │ └── base │ │ ├── pkglist.main │ │ ├── pkglist.main.bz2 │ │ ├── release │ │ └── release.main ├── arch │ ├── name1-version1-release1-i686.pkg.tar.gz │ ├── name2-version2-release2-i686.pkg.tar.xz │ ├── test.db.tar.gz │ └── test.files.tar.gz ├── build │ └── deb │ │ └── debian │ │ ├── changelog │ │ ├── control │ │ └── rules ├── deb ├── pack │ ├── debtest.tar │ └── rpmtest.pkg ├── rpm │ ├── metalink.xml │ ├── mirrorlist.txt │ ├── name1-version1-release1.noarch.rpm │ ├── name2-version2-release2.noarch.rpm │ └── repodata │ │ ├── filelists.xml.gz │ │ ├── other.xml.gz │ │ ├── primary.xml.gz │ │ ├── repomd.xml │ │ └── updateinfo.xml ├── slack │ ├── CHECKSUMS.md5 │ ├── PACKAGES.TXT │ ├── name1-version1-noarch-release1.tgz │ └── name2-version2-noarch-release2.txz ├── uncompress │ ├── test.7z │ ├── test.bz2 │ ├── test.gz │ ├── test.lzma │ ├── test.txt │ ├── test.xz │ └── test.zip ├── urpmi-xml │ ├── media_info │ │ ├── MD5SUM │ │ ├── changelog.xml.lzma │ │ ├── files.xml.lzma │ │ ├── hdlist.cz │ │ ├── info.xml.lzma │ │ └── synthesis.hdlist.cz │ ├── name1-version1-release1.noarch.rpm │ ├── name2-version2-release2.noarch.rpm │ └── reconfig.urpmi ├── urpmi │ ├── clock │ ├── media_info │ │ ├── MD5SUM │ │ ├── descriptions │ │ ├── hdlist.cz │ │ └── synthesis.hdlist.cz │ ├── mirrorlist.txt │ ├── name1-version1-release1.noarch.rpm │ ├── name2-version2-release2.noarch.rpm │ ├── reconfig.urpmi │ └── zone.tab ├── yast2-compressed │ ├── RPMS │ │ └── noarch │ │ │ ├── name1-version1-release1.noarch.rpm │ │ │ └── name2-version2-release2.noarch.rpm │ ├── content │ ├── directory.yast │ ├── media.1 │ │ └── media │ └── setup │ │ └── descr │ │ ├── packages.DU.gz │ │ ├── packages.en.gz │ │ └── packages.gz ├── yast2 │ ├── RPMS │ │ └── noarch │ │ │ ├── name1-version1-release1.noarch.rpm │ │ │ └── name2-version2-release2.noarch.rpm │ ├── content │ ├── directory.yast │ ├── media.1 │ │ └── media │ └── setup │ │ └── descr │ │ ├── packages │ │ ├── packages.DU │ │ └── packages.en └── yumrpm │ ├── metalink-broken.xml │ ├── mirrorlist-broken.txt │ ├── name1-version1-release1.noarch.rpm │ ├── name2-version2-release2.noarch.rpm │ └── repodata │ ├── 00918afbb983349105125c0182d6bb61511bfa6cb565e5210ae43c3fa30fb7ee-filelists.sqlite.bz2 │ ├── 077eb7b5f9cf321a8ff862fad6e5712f47b55e0f49413a886db0318fae2e393d-primary.xml.gz │ ├── 47375fb1438614a7b6058cea2a716b0331f4d0d7f1c91761996144d15b2427b2-primary.sqlite.bz2 │ ├── 655b55a361aeff1440244ab9dc473175e84c84bbd708263792a3a543b24c4d92-other.sqlite.bz2 │ ├── caa0be22bc2bf69dabd43e81e17601f1ce05730b823c47626aad96bcec801e15-other.xml.gz │ ├── f6da66cef2af5fa3a35785617e7a2e7c03241cf1abcd6e28280e25b308e578d7-filelists.xml.gz │ └── repomd.xml ├── debbase.py ├── debdir.txt ├── debloader.py ├── debpm.py ├── descriptions.txt ├── detectchannels.txt ├── fetcher.py ├── fink.txt ├── initialization.py ├── interface.py ├── load-hooks.txt ├── media.py ├── metadata.txt ├── metalink.txt ├── mirrorlist.txt ├── mirrorurl.txt ├── mocker.py ├── nothing.txt ├── origin.txt ├── pack.txt ├── plugins ├── __init__.py ├── test_aptchannelsync.py ├── test_detectsys.py ├── test_landscape.py ├── test_urpmichannelsync.py ├── test_yumchannelsync.py └── test_zyppchannelsync.py ├── policy-upgrade.txt ├── rpmbase.py ├── rpmdir.txt ├── rpmloader.py ├── searcher.py ├── slackbase.py ├── slackdir.txt ├── slackloader.py ├── slacksite.txt ├── sorter.py ├── uncompress.py ├── updateinfo.txt ├── urpmi.txt ├── urpmixml.txt ├── util ├── __init__.py └── distance.py ├── yast2.txt ├── yast2comp.txt ├── yumrpm.py └── yumrpm.txt /HACKING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/HACKING -------------------------------------------------------------------------------- /IDEAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/IDEAS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/README -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/TODO -------------------------------------------------------------------------------- /contrib/bash-completion/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/contrib/bash-completion/README -------------------------------------------------------------------------------- /contrib/bash-completion/smart-completion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/contrib/bash-completion/smart-completion.sh -------------------------------------------------------------------------------- /contrib/ksmarttray/AUTHORS: -------------------------------------------------------------------------------- 1 | Dummy file required by KDE build admin. 2 | -------------------------------------------------------------------------------- /contrib/ksmarttray/COPYING: -------------------------------------------------------------------------------- 1 | Dummy file required by KDE build admin. 2 | -------------------------------------------------------------------------------- /contrib/ksmarttray/ChangeLog: -------------------------------------------------------------------------------- 1 | Dummy file required by KDE build admin. 2 | -------------------------------------------------------------------------------- /contrib/ksmarttray/INSTALL: -------------------------------------------------------------------------------- 1 | Dummy file required by KDE build admin. 2 | -------------------------------------------------------------------------------- /contrib/ksmarttray/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/contrib/ksmarttray/LICENSE -------------------------------------------------------------------------------- /contrib/ksmarttray/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/contrib/ksmarttray/Makefile.am -------------------------------------------------------------------------------- /contrib/ksmarttray/NEWS: -------------------------------------------------------------------------------- 1 | Dummy file required by KDE build admin. 2 | -------------------------------------------------------------------------------- /contrib/ksmarttray/README: -------------------------------------------------------------------------------- 1 | Dummy file required by KDE build admin. 2 | -------------------------------------------------------------------------------- /contrib/ksmarttray/admin/Doxyfile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/contrib/ksmarttray/admin/Doxyfile.am -------------------------------------------------------------------------------- /contrib/ksmarttray/admin/Doxyfile.global: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/contrib/ksmarttray/admin/Doxyfile.global -------------------------------------------------------------------------------- /contrib/ksmarttray/admin/Makefile.common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/contrib/ksmarttray/admin/Makefile.common -------------------------------------------------------------------------------- /contrib/ksmarttray/admin/acinclude.m4.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/contrib/ksmarttray/admin/acinclude.m4.in -------------------------------------------------------------------------------- /contrib/ksmarttray/admin/am_edit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/contrib/ksmarttray/admin/am_edit -------------------------------------------------------------------------------- /contrib/ksmarttray/admin/bcheck.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/contrib/ksmarttray/admin/bcheck.pl -------------------------------------------------------------------------------- /contrib/ksmarttray/admin/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/contrib/ksmarttray/admin/compile -------------------------------------------------------------------------------- /contrib/ksmarttray/admin/conf.change.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/contrib/ksmarttray/admin/conf.change.pl -------------------------------------------------------------------------------- /contrib/ksmarttray/admin/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/contrib/ksmarttray/admin/config.guess -------------------------------------------------------------------------------- /contrib/ksmarttray/admin/config.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/contrib/ksmarttray/admin/config.pl -------------------------------------------------------------------------------- /contrib/ksmarttray/admin/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/contrib/ksmarttray/admin/config.sub -------------------------------------------------------------------------------- /contrib/ksmarttray/admin/configure.in.bot.end: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/contrib/ksmarttray/admin/configure.in.bot.end -------------------------------------------------------------------------------- /contrib/ksmarttray/admin/configure.in.min: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/contrib/ksmarttray/admin/configure.in.min -------------------------------------------------------------------------------- /contrib/ksmarttray/admin/cvs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/contrib/ksmarttray/admin/cvs.sh -------------------------------------------------------------------------------- /contrib/ksmarttray/admin/debianrules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/contrib/ksmarttray/admin/debianrules -------------------------------------------------------------------------------- /contrib/ksmarttray/admin/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/contrib/ksmarttray/admin/depcomp -------------------------------------------------------------------------------- /contrib/ksmarttray/admin/deps.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/contrib/ksmarttray/admin/deps.am -------------------------------------------------------------------------------- /contrib/ksmarttray/admin/detect-autoconf.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/contrib/ksmarttray/admin/detect-autoconf.pl -------------------------------------------------------------------------------- /contrib/ksmarttray/admin/doxygen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/contrib/ksmarttray/admin/doxygen.sh -------------------------------------------------------------------------------- /contrib/ksmarttray/admin/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/contrib/ksmarttray/admin/install-sh -------------------------------------------------------------------------------- /contrib/ksmarttray/admin/libtool.m4.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/contrib/ksmarttray/admin/libtool.m4.in -------------------------------------------------------------------------------- /contrib/ksmarttray/admin/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/contrib/ksmarttray/admin/ltmain.sh -------------------------------------------------------------------------------- /contrib/ksmarttray/admin/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/contrib/ksmarttray/admin/missing -------------------------------------------------------------------------------- /contrib/ksmarttray/admin/mkinstalldirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/contrib/ksmarttray/admin/mkinstalldirs -------------------------------------------------------------------------------- /contrib/ksmarttray/admin/nmcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/contrib/ksmarttray/admin/nmcheck -------------------------------------------------------------------------------- /contrib/ksmarttray/admin/oldinclude.m4.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/contrib/ksmarttray/admin/oldinclude.m4.in -------------------------------------------------------------------------------- /contrib/ksmarttray/admin/pkg.m4.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/contrib/ksmarttray/admin/pkg.m4.in -------------------------------------------------------------------------------- /contrib/ksmarttray/admin/ylwrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/contrib/ksmarttray/admin/ylwrap -------------------------------------------------------------------------------- /contrib/ksmarttray/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/contrib/ksmarttray/build.sh -------------------------------------------------------------------------------- /contrib/ksmarttray/configure.in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/contrib/ksmarttray/configure.in.in -------------------------------------------------------------------------------- /contrib/ksmarttray/ksmarttray.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/contrib/ksmarttray/ksmarttray.desktop -------------------------------------------------------------------------------- /contrib/ksmarttray/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/contrib/ksmarttray/src/Makefile.am -------------------------------------------------------------------------------- /contrib/ksmarttray/src/eventsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/contrib/ksmarttray/src/eventsrc -------------------------------------------------------------------------------- /contrib/ksmarttray/src/ksmarttray.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/contrib/ksmarttray/src/ksmarttray.cc -------------------------------------------------------------------------------- /contrib/ksmarttray/src/ksmarttray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/contrib/ksmarttray/src/ksmarttray.h -------------------------------------------------------------------------------- /contrib/ksmarttray/src/ksmarttray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/contrib/ksmarttray/src/ksmarttray.png -------------------------------------------------------------------------------- /contrib/ksmarttray/src/ksmarttray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/contrib/ksmarttray/src/ksmarttray.py -------------------------------------------------------------------------------- /contrib/ksmarttray4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/contrib/ksmarttray4/Makefile -------------------------------------------------------------------------------- /contrib/ksmarttray4/ksmarttray.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/contrib/ksmarttray4/ksmarttray.desktop -------------------------------------------------------------------------------- /contrib/ksmarttray4/ksmarttray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/contrib/ksmarttray4/ksmarttray.png -------------------------------------------------------------------------------- /contrib/ksmarttray4/ksmarttray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/contrib/ksmarttray4/ksmarttray.py -------------------------------------------------------------------------------- /contrib/ksmarttray4/smart-helper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/contrib/ksmarttray4/smart-helper -------------------------------------------------------------------------------- /contrib/patches/rpm4.2.2-python.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/contrib/patches/rpm4.2.2-python.patch -------------------------------------------------------------------------------- /contrib/patches/rpm4.3.2-python.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/contrib/patches/rpm4.3.2-python.patch -------------------------------------------------------------------------------- /contrib/rpmhelper/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/contrib/rpmhelper/README -------------------------------------------------------------------------------- /contrib/rpmhelper/rpmhelper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/contrib/rpmhelper/rpmhelper.c -------------------------------------------------------------------------------- /contrib/rpmhelper/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/contrib/rpmhelper/setup.py -------------------------------------------------------------------------------- /contrib/servicemenus/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/contrib/servicemenus/README -------------------------------------------------------------------------------- /contrib/servicemenus/add_smart_channel.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/contrib/servicemenus/add_smart_channel.desktop -------------------------------------------------------------------------------- /contrib/servicemenus/kde_add_smart_channel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/contrib/servicemenus/kde_add_smart_channel.sh -------------------------------------------------------------------------------- /contrib/smart-applet/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/contrib/smart-applet/Makefile -------------------------------------------------------------------------------- /contrib/smart-applet/smart-applet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/contrib/smart-applet/smart-applet.png -------------------------------------------------------------------------------- /contrib/smart-applet/smart-applet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/contrib/smart-applet/smart-applet.py -------------------------------------------------------------------------------- /contrib/smart-applet/smart-helper.helper: -------------------------------------------------------------------------------- 1 | USER=root 2 | PROGRAM=/usr/bin/smart 3 | SESSION=yes 4 | -------------------------------------------------------------------------------- /contrib/smart-applet/smart-helper.pam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/contrib/smart-applet/smart-helper.pam -------------------------------------------------------------------------------- /contrib/smart-update/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/contrib/smart-update/Makefile -------------------------------------------------------------------------------- /contrib/smart-update/smart-update.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/contrib/smart-update/smart-update.c -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/doc/README.html -------------------------------------------------------------------------------- /doc/config.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/doc/config.xsl -------------------------------------------------------------------------------- /doc/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/doc/default.css -------------------------------------------------------------------------------- /doc/gpl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/doc/gpl.xml -------------------------------------------------------------------------------- /doc/images/smart-gksu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/doc/images/smart-gksu.png -------------------------------------------------------------------------------- /doc/images/smart-gtk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/doc/images/smart-gtk.png -------------------------------------------------------------------------------- /doc/images/smart-qt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/doc/images/smart-qt.png -------------------------------------------------------------------------------- /doc/images/smart-root.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/doc/images/smart-root.png -------------------------------------------------------------------------------- /doc/smart.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/doc/smart.8 -------------------------------------------------------------------------------- /doc/smart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/doc/smart.xml -------------------------------------------------------------------------------- /doc/sysconf-index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/doc/sysconf-index -------------------------------------------------------------------------------- /locale/de/LC_MESSAGES/smart.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/locale/de/LC_MESSAGES/smart.po -------------------------------------------------------------------------------- /locale/es_ES/LC_MESSAGES/smart.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/locale/es_ES/LC_MESSAGES/smart.po -------------------------------------------------------------------------------- /locale/fr/LC_MESSAGES/smart.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/locale/fr/LC_MESSAGES/smart.po -------------------------------------------------------------------------------- /locale/hu/LC_MESSAGES/smart.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/locale/hu/LC_MESSAGES/smart.po -------------------------------------------------------------------------------- /locale/it/LC_MESSAGES/smart.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/locale/it/LC_MESSAGES/smart.po -------------------------------------------------------------------------------- /locale/pt_BR/LC_MESSAGES/smart.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/locale/pt_BR/LC_MESSAGES/smart.po -------------------------------------------------------------------------------- /locale/ru/LC_MESSAGES/smart.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/locale/ru/LC_MESSAGES/smart.po -------------------------------------------------------------------------------- /locale/smart.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/locale/smart.pot -------------------------------------------------------------------------------- /locale/sv/LC_MESSAGES/smart.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/locale/sv/LC_MESSAGES/smart.po -------------------------------------------------------------------------------- /locale/zh_CN/LC_MESSAGES/smart.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/locale/zh_CN/LC_MESSAGES/smart.po -------------------------------------------------------------------------------- /locale/zh_TW/LC_MESSAGES/smart.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/locale/zh_TW/LC_MESSAGES/smart.po -------------------------------------------------------------------------------- /sandbox/cdproblems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/sandbox/cdproblems.py -------------------------------------------------------------------------------- /sandbox/crossrepository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/sandbox/crossrepository.py -------------------------------------------------------------------------------- /sandbox/docbookopts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/sandbox/docbookopts.py -------------------------------------------------------------------------------- /sandbox/fileconflicts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/sandbox/fileconflicts.py -------------------------------------------------------------------------------- /sandbox/hashtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/sandbox/hashtime.py -------------------------------------------------------------------------------- /sandbox/loops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/sandbox/loops.py -------------------------------------------------------------------------------- /sandbox/notobsoleted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/sandbox/notobsoleted.py -------------------------------------------------------------------------------- /sandbox/notobsoleting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/sandbox/notobsoleting.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/setup.py -------------------------------------------------------------------------------- /smart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart.py -------------------------------------------------------------------------------- /smart/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/__init__.py -------------------------------------------------------------------------------- /smart/backends/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/backends/__init__.py -------------------------------------------------------------------------------- /smart/backends/arch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/backends/arch/__init__.py -------------------------------------------------------------------------------- /smart/backends/arch/archver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/backends/arch/archver.py -------------------------------------------------------------------------------- /smart/backends/arch/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/backends/arch/base.py -------------------------------------------------------------------------------- /smart/backends/arch/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/backends/arch/loader.py -------------------------------------------------------------------------------- /smart/backends/arch/pm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/backends/arch/pm.py -------------------------------------------------------------------------------- /smart/backends/deb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/backends/deb/__init__.py -------------------------------------------------------------------------------- /smart/backends/deb/_base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/backends/deb/_base.c -------------------------------------------------------------------------------- /smart/backends/deb/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/backends/deb/base.py -------------------------------------------------------------------------------- /smart/backends/deb/cdebver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/backends/deb/cdebver.c -------------------------------------------------------------------------------- /smart/backends/deb/debver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/backends/deb/debver.py -------------------------------------------------------------------------------- /smart/backends/deb/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/backends/deb/loader.py -------------------------------------------------------------------------------- /smart/backends/deb/pm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/backends/deb/pm.py -------------------------------------------------------------------------------- /smart/backends/rpm/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/backends/rpm/README -------------------------------------------------------------------------------- /smart/backends/rpm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/backends/rpm/__init__.py -------------------------------------------------------------------------------- /smart/backends/rpm/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/backends/rpm/base.py -------------------------------------------------------------------------------- /smart/backends/rpm/crpmver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/backends/rpm/crpmver.c -------------------------------------------------------------------------------- /smart/backends/rpm/descriptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/backends/rpm/descriptions.py -------------------------------------------------------------------------------- /smart/backends/rpm/header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/backends/rpm/header.py -------------------------------------------------------------------------------- /smart/backends/rpm/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/backends/rpm/metadata.py -------------------------------------------------------------------------------- /smart/backends/rpm/pm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/backends/rpm/pm.py -------------------------------------------------------------------------------- /smart/backends/rpm/redcarpet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/backends/rpm/redcarpet.py -------------------------------------------------------------------------------- /smart/backends/rpm/rpmver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/backends/rpm/rpmver.py -------------------------------------------------------------------------------- /smart/backends/rpm/synthesis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/backends/rpm/synthesis.py -------------------------------------------------------------------------------- /smart/backends/rpm/updateinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/backends/rpm/updateinfo.py -------------------------------------------------------------------------------- /smart/backends/rpm/yast2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/backends/rpm/yast2.py -------------------------------------------------------------------------------- /smart/backends/slack/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/backends/slack/__init__.py -------------------------------------------------------------------------------- /smart/backends/slack/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/backends/slack/base.py -------------------------------------------------------------------------------- /smart/backends/slack/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/backends/slack/loader.py -------------------------------------------------------------------------------- /smart/backends/slack/pm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/backends/slack/pm.py -------------------------------------------------------------------------------- /smart/backends/slack/slackver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/backends/slack/slackver.py -------------------------------------------------------------------------------- /smart/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/cache.py -------------------------------------------------------------------------------- /smart/ccache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/ccache.c -------------------------------------------------------------------------------- /smart/channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/channel.py -------------------------------------------------------------------------------- /smart/channels/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/channels/__init__.py -------------------------------------------------------------------------------- /smart/channels/apt_deb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/channels/apt_deb.py -------------------------------------------------------------------------------- /smart/channels/apt_deb_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/channels/apt_deb_info.py -------------------------------------------------------------------------------- /smart/channels/apt_rpm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/channels/apt_rpm.py -------------------------------------------------------------------------------- /smart/channels/apt_rpm_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/channels/apt_rpm_info.py -------------------------------------------------------------------------------- /smart/channels/arch_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/channels/arch_dir.py -------------------------------------------------------------------------------- /smart/channels/arch_dir_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/channels/arch_dir_info.py -------------------------------------------------------------------------------- /smart/channels/arch_site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/channels/arch_site.py -------------------------------------------------------------------------------- /smart/channels/arch_site_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/channels/arch_site_info.py -------------------------------------------------------------------------------- /smart/channels/arch_sys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/channels/arch_sys.py -------------------------------------------------------------------------------- /smart/channels/arch_sys_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/channels/arch_sys_info.py -------------------------------------------------------------------------------- /smart/channels/deb_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/channels/deb_dir.py -------------------------------------------------------------------------------- /smart/channels/deb_dir_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/channels/deb_dir_info.py -------------------------------------------------------------------------------- /smart/channels/deb_sys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/channels/deb_sys.py -------------------------------------------------------------------------------- /smart/channels/deb_sys_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/channels/deb_sys_info.py -------------------------------------------------------------------------------- /smart/channels/mirrors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/channels/mirrors.py -------------------------------------------------------------------------------- /smart/channels/mirrors_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/channels/mirrors_info.py -------------------------------------------------------------------------------- /smart/channels/red_carpet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/channels/red_carpet.py -------------------------------------------------------------------------------- /smart/channels/red_carpet_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/channels/red_carpet_info.py -------------------------------------------------------------------------------- /smart/channels/rpm_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/channels/rpm_dir.py -------------------------------------------------------------------------------- /smart/channels/rpm_dir_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/channels/rpm_dir_info.py -------------------------------------------------------------------------------- /smart/channels/rpm_hdl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/channels/rpm_hdl.py -------------------------------------------------------------------------------- /smart/channels/rpm_hdl_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/channels/rpm_hdl_info.py -------------------------------------------------------------------------------- /smart/channels/rpm_md.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/channels/rpm_md.py -------------------------------------------------------------------------------- /smart/channels/rpm_md_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/channels/rpm_md_info.py -------------------------------------------------------------------------------- /smart/channels/rpm_sys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/channels/rpm_sys.py -------------------------------------------------------------------------------- /smart/channels/rpm_sys_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/channels/rpm_sys_info.py -------------------------------------------------------------------------------- /smart/channels/slack_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/channels/slack_dir.py -------------------------------------------------------------------------------- /smart/channels/slack_dir_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/channels/slack_dir_info.py -------------------------------------------------------------------------------- /smart/channels/slack_site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/channels/slack_site.py -------------------------------------------------------------------------------- /smart/channels/slack_site_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/channels/slack_site_info.py -------------------------------------------------------------------------------- /smart/channels/slack_sys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/channels/slack_sys.py -------------------------------------------------------------------------------- /smart/channels/slack_sys_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/channels/slack_sys_info.py -------------------------------------------------------------------------------- /smart/channels/up2date_mirrors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/channels/up2date_mirrors.py -------------------------------------------------------------------------------- /smart/channels/up2date_mirrors_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/channels/up2date_mirrors_info.py -------------------------------------------------------------------------------- /smart/channels/urpmi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/channels/urpmi.py -------------------------------------------------------------------------------- /smart/channels/urpmi_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/channels/urpmi_info.py -------------------------------------------------------------------------------- /smart/channels/yast2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/channels/yast2.py -------------------------------------------------------------------------------- /smart/channels/yast2_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/channels/yast2_info.py -------------------------------------------------------------------------------- /smart/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/commands/__init__.py -------------------------------------------------------------------------------- /smart/commands/channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/commands/channel.py -------------------------------------------------------------------------------- /smart/commands/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/commands/check.py -------------------------------------------------------------------------------- /smart/commands/clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/commands/clean.py -------------------------------------------------------------------------------- /smart/commands/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/commands/config.py -------------------------------------------------------------------------------- /smart/commands/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/commands/download.py -------------------------------------------------------------------------------- /smart/commands/fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/commands/fix.py -------------------------------------------------------------------------------- /smart/commands/flag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/commands/flag.py -------------------------------------------------------------------------------- /smart/commands/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/commands/info.py -------------------------------------------------------------------------------- /smart/commands/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/commands/install.py -------------------------------------------------------------------------------- /smart/commands/mirror.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/commands/mirror.py -------------------------------------------------------------------------------- /smart/commands/newer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/commands/newer.py -------------------------------------------------------------------------------- /smart/commands/nothing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/commands/nothing.py -------------------------------------------------------------------------------- /smart/commands/priority.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/commands/priority.py -------------------------------------------------------------------------------- /smart/commands/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/commands/query.py -------------------------------------------------------------------------------- /smart/commands/reinstall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/commands/reinstall.py -------------------------------------------------------------------------------- /smart/commands/remove.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/commands/remove.py -------------------------------------------------------------------------------- /smart/commands/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/commands/search.py -------------------------------------------------------------------------------- /smart/commands/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/commands/stats.py -------------------------------------------------------------------------------- /smart/commands/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/commands/update.py -------------------------------------------------------------------------------- /smart/commands/upgrade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/commands/upgrade.py -------------------------------------------------------------------------------- /smart/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/const.py -------------------------------------------------------------------------------- /smart/control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/control.py -------------------------------------------------------------------------------- /smart/fetcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/fetcher.py -------------------------------------------------------------------------------- /smart/hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/hook.py -------------------------------------------------------------------------------- /smart/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interface.py -------------------------------------------------------------------------------- /smart/interfaces/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/__init__.py -------------------------------------------------------------------------------- /smart/interfaces/gtk/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/gtk/__init__.py -------------------------------------------------------------------------------- /smart/interfaces/gtk/changes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/gtk/changes.py -------------------------------------------------------------------------------- /smart/interfaces/gtk/channels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/gtk/channels.py -------------------------------------------------------------------------------- /smart/interfaces/gtk/command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/gtk/command.py -------------------------------------------------------------------------------- /smart/interfaces/gtk/flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/gtk/flags.py -------------------------------------------------------------------------------- /smart/interfaces/gtk/interactive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/gtk/interactive.py -------------------------------------------------------------------------------- /smart/interfaces/gtk/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/gtk/interface.py -------------------------------------------------------------------------------- /smart/interfaces/gtk/legend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/gtk/legend.py -------------------------------------------------------------------------------- /smart/interfaces/gtk/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/gtk/log.py -------------------------------------------------------------------------------- /smart/interfaces/gtk/mirrors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/gtk/mirrors.py -------------------------------------------------------------------------------- /smart/interfaces/gtk/packageinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/gtk/packageinfo.py -------------------------------------------------------------------------------- /smart/interfaces/gtk/packageview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/gtk/packageview.py -------------------------------------------------------------------------------- /smart/interfaces/gtk/preferences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/gtk/preferences.py -------------------------------------------------------------------------------- /smart/interfaces/gtk/priorities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/gtk/priorities.py -------------------------------------------------------------------------------- /smart/interfaces/gtk/progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/gtk/progress.py -------------------------------------------------------------------------------- /smart/interfaces/images/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/images/__init__.py -------------------------------------------------------------------------------- /smart/interfaces/images/crystal-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/images/crystal-add.png -------------------------------------------------------------------------------- /smart/interfaces/images/crystal-apply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/images/crystal-apply.png -------------------------------------------------------------------------------- /smart/interfaces/images/crystal-cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/images/crystal-cancel.png -------------------------------------------------------------------------------- /smart/interfaces/images/crystal-delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/images/crystal-delete.png -------------------------------------------------------------------------------- /smart/interfaces/images/crystal-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/images/crystal-edit.png -------------------------------------------------------------------------------- /smart/interfaces/images/crystal-redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/images/crystal-redo.png -------------------------------------------------------------------------------- /smart/interfaces/images/crystal-reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/images/crystal-reload.png -------------------------------------------------------------------------------- /smart/interfaces/images/crystal-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/images/crystal-search.png -------------------------------------------------------------------------------- /smart/interfaces/images/crystal-trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/images/crystal-trash.png -------------------------------------------------------------------------------- /smart/interfaces/images/crystal-undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/images/crystal-undo.png -------------------------------------------------------------------------------- /smart/interfaces/images/crystal-upgrade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/images/crystal-upgrade.png -------------------------------------------------------------------------------- /smart/interfaces/images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/images/folder.png -------------------------------------------------------------------------------- /smart/interfaces/images/package-available-locked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/images/package-available-locked.png -------------------------------------------------------------------------------- /smart/interfaces/images/package-available.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/images/package-available.png -------------------------------------------------------------------------------- /smart/interfaces/images/package-broken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/images/package-broken.png -------------------------------------------------------------------------------- /smart/interfaces/images/package-downgrade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/images/package-downgrade.png -------------------------------------------------------------------------------- /smart/interfaces/images/package-install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/images/package-install.png -------------------------------------------------------------------------------- /smart/interfaces/images/package-installed-locked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/images/package-installed-locked.png -------------------------------------------------------------------------------- /smart/interfaces/images/package-installed-outdated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/images/package-installed-outdated.png -------------------------------------------------------------------------------- /smart/interfaces/images/package-installed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/images/package-installed.png -------------------------------------------------------------------------------- /smart/interfaces/images/package-new-locked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/images/package-new-locked.png -------------------------------------------------------------------------------- /smart/interfaces/images/package-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/images/package-new.png -------------------------------------------------------------------------------- /smart/interfaces/images/package-purge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/images/package-purge.png -------------------------------------------------------------------------------- /smart/interfaces/images/package-reinstall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/images/package-reinstall.png -------------------------------------------------------------------------------- /smart/interfaces/images/package-remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/images/package-remove.png -------------------------------------------------------------------------------- /smart/interfaces/images/package-upgrade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/images/package-upgrade.png -------------------------------------------------------------------------------- /smart/interfaces/images/smart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/images/smart.png -------------------------------------------------------------------------------- /smart/interfaces/qt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/qt/__init__.py -------------------------------------------------------------------------------- /smart/interfaces/qt/changes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/qt/changes.py -------------------------------------------------------------------------------- /smart/interfaces/qt/channels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/qt/channels.py -------------------------------------------------------------------------------- /smart/interfaces/qt/command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/qt/command.py -------------------------------------------------------------------------------- /smart/interfaces/qt/flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/qt/flags.py -------------------------------------------------------------------------------- /smart/interfaces/qt/interactive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/qt/interactive.py -------------------------------------------------------------------------------- /smart/interfaces/qt/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/qt/interface.py -------------------------------------------------------------------------------- /smart/interfaces/qt/legend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/qt/legend.py -------------------------------------------------------------------------------- /smart/interfaces/qt/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/qt/log.py -------------------------------------------------------------------------------- /smart/interfaces/qt/mirrors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/qt/mirrors.py -------------------------------------------------------------------------------- /smart/interfaces/qt/packageinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/qt/packageinfo.py -------------------------------------------------------------------------------- /smart/interfaces/qt/packageview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/qt/packageview.py -------------------------------------------------------------------------------- /smart/interfaces/qt/priorities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/qt/priorities.py -------------------------------------------------------------------------------- /smart/interfaces/qt/progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/qt/progress.py -------------------------------------------------------------------------------- /smart/interfaces/qt4/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/qt4/__init__.py -------------------------------------------------------------------------------- /smart/interfaces/qt4/changes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/qt4/changes.py -------------------------------------------------------------------------------- /smart/interfaces/qt4/channels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/qt4/channels.py -------------------------------------------------------------------------------- /smart/interfaces/qt4/command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/qt4/command.py -------------------------------------------------------------------------------- /smart/interfaces/qt4/flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/qt4/flags.py -------------------------------------------------------------------------------- /smart/interfaces/qt4/interactive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/qt4/interactive.py -------------------------------------------------------------------------------- /smart/interfaces/qt4/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/qt4/interface.py -------------------------------------------------------------------------------- /smart/interfaces/qt4/legend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/qt4/legend.py -------------------------------------------------------------------------------- /smart/interfaces/qt4/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/qt4/log.py -------------------------------------------------------------------------------- /smart/interfaces/qt4/mirrors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/qt4/mirrors.py -------------------------------------------------------------------------------- /smart/interfaces/qt4/packageinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/qt4/packageinfo.py -------------------------------------------------------------------------------- /smart/interfaces/qt4/packageview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/qt4/packageview.py -------------------------------------------------------------------------------- /smart/interfaces/qt4/priorities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/qt4/priorities.py -------------------------------------------------------------------------------- /smart/interfaces/qt4/progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/qt4/progress.py -------------------------------------------------------------------------------- /smart/interfaces/text/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/text/__init__.py -------------------------------------------------------------------------------- /smart/interfaces/text/interactive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/text/interactive.py -------------------------------------------------------------------------------- /smart/interfaces/text/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/text/interface.py -------------------------------------------------------------------------------- /smart/interfaces/text/progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/interfaces/text/progress.py -------------------------------------------------------------------------------- /smart/media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/media.py -------------------------------------------------------------------------------- /smart/mirror.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/mirror.py -------------------------------------------------------------------------------- /smart/option.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/option.py -------------------------------------------------------------------------------- /smart/pkgconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/pkgconfig.py -------------------------------------------------------------------------------- /smart/plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/plugins/__init__.py -------------------------------------------------------------------------------- /smart/plugins/aptchannelsync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/plugins/aptchannelsync.py -------------------------------------------------------------------------------- /smart/plugins/channelsync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/plugins/channelsync.py -------------------------------------------------------------------------------- /smart/plugins/debdir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/plugins/debdir.py -------------------------------------------------------------------------------- /smart/plugins/detectsys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/plugins/detectsys.py -------------------------------------------------------------------------------- /smart/plugins/landscape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/plugins/landscape.py -------------------------------------------------------------------------------- /smart/plugins/rpmdir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/plugins/rpmdir.py -------------------------------------------------------------------------------- /smart/plugins/urpmichannelsync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/plugins/urpmichannelsync.py -------------------------------------------------------------------------------- /smart/plugins/yumchannelsync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/plugins/yumchannelsync.py -------------------------------------------------------------------------------- /smart/plugins/zyppchannelsync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/plugins/zyppchannelsync.py -------------------------------------------------------------------------------- /smart/pm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/pm.py -------------------------------------------------------------------------------- /smart/progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/progress.py -------------------------------------------------------------------------------- /smart/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/report.py -------------------------------------------------------------------------------- /smart/searcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/searcher.py -------------------------------------------------------------------------------- /smart/sorter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/sorter.py -------------------------------------------------------------------------------- /smart/sysconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/sysconfig.py -------------------------------------------------------------------------------- /smart/transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/transaction.py -------------------------------------------------------------------------------- /smart/uncompress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/uncompress.py -------------------------------------------------------------------------------- /smart/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/util/__init__.py -------------------------------------------------------------------------------- /smart/util/cdistance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/util/cdistance.c -------------------------------------------------------------------------------- /smart/util/celementtree/cElementTree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/util/celementtree/cElementTree.c -------------------------------------------------------------------------------- /smart/util/celementtree/expat/ascii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/util/celementtree/expat/ascii.h -------------------------------------------------------------------------------- /smart/util/celementtree/expat/asciitab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/util/celementtree/expat/asciitab.h -------------------------------------------------------------------------------- /smart/util/celementtree/expat/expat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/util/celementtree/expat/expat.h -------------------------------------------------------------------------------- /smart/util/celementtree/expat/expat_external.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/util/celementtree/expat/expat_external.h -------------------------------------------------------------------------------- /smart/util/celementtree/expat/iasciitab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/util/celementtree/expat/iasciitab.h -------------------------------------------------------------------------------- /smart/util/celementtree/expat/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/util/celementtree/expat/internal.h -------------------------------------------------------------------------------- /smart/util/celementtree/expat/latin1tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/util/celementtree/expat/latin1tab.h -------------------------------------------------------------------------------- /smart/util/celementtree/expat/macconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/util/celementtree/expat/macconfig.h -------------------------------------------------------------------------------- /smart/util/celementtree/expat/nametab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/util/celementtree/expat/nametab.h -------------------------------------------------------------------------------- /smart/util/celementtree/expat/utf8tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/util/celementtree/expat/utf8tab.h -------------------------------------------------------------------------------- /smart/util/celementtree/expat/winconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/util/celementtree/expat/winconfig.h -------------------------------------------------------------------------------- /smart/util/celementtree/expat/xmlparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/util/celementtree/expat/xmlparse.c -------------------------------------------------------------------------------- /smart/util/celementtree/expat/xmlrole.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/util/celementtree/expat/xmlrole.c -------------------------------------------------------------------------------- /smart/util/celementtree/expat/xmlrole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/util/celementtree/expat/xmlrole.h -------------------------------------------------------------------------------- /smart/util/celementtree/expat/xmltok.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/util/celementtree/expat/xmltok.c -------------------------------------------------------------------------------- /smart/util/celementtree/expat/xmltok.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/util/celementtree/expat/xmltok.h -------------------------------------------------------------------------------- /smart/util/celementtree/expat/xmltok_impl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/util/celementtree/expat/xmltok_impl.c -------------------------------------------------------------------------------- /smart/util/celementtree/expat/xmltok_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/util/celementtree/expat/xmltok_impl.h -------------------------------------------------------------------------------- /smart/util/celementtree/expat/xmltok_ns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/util/celementtree/expat/xmltok_ns.c -------------------------------------------------------------------------------- /smart/util/ctagfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/util/ctagfile.c -------------------------------------------------------------------------------- /smart/util/distance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/util/distance.py -------------------------------------------------------------------------------- /smart/util/elementtree/ElementInclude.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/util/elementtree/ElementInclude.py -------------------------------------------------------------------------------- /smart/util/elementtree/ElementPath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/util/elementtree/ElementPath.py -------------------------------------------------------------------------------- /smart/util/elementtree/ElementTree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/util/elementtree/ElementTree.py -------------------------------------------------------------------------------- /smart/util/elementtree/HTMLTreeBuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/util/elementtree/HTMLTreeBuilder.py -------------------------------------------------------------------------------- /smart/util/elementtree/SgmlopXMLTreeBuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/util/elementtree/SgmlopXMLTreeBuilder.py -------------------------------------------------------------------------------- /smart/util/elementtree/SimpleXMLTreeBuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/util/elementtree/SimpleXMLTreeBuilder.py -------------------------------------------------------------------------------- /smart/util/elementtree/SimpleXMLWriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/util/elementtree/SimpleXMLWriter.py -------------------------------------------------------------------------------- /smart/util/elementtree/TidyHTMLTreeBuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/util/elementtree/TidyHTMLTreeBuilder.py -------------------------------------------------------------------------------- /smart/util/elementtree/TidyTools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/util/elementtree/TidyTools.py -------------------------------------------------------------------------------- /smart/util/elementtree/XMLTreeBuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/util/elementtree/XMLTreeBuilder.py -------------------------------------------------------------------------------- /smart/util/elementtree/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/util/elementtree/__init__.py -------------------------------------------------------------------------------- /smart/util/filetools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/util/filetools.py -------------------------------------------------------------------------------- /smart/util/geolocate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/util/geolocate.py -------------------------------------------------------------------------------- /smart/util/metalink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/util/metalink.py -------------------------------------------------------------------------------- /smart/util/objdigest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/util/objdigest.py -------------------------------------------------------------------------------- /smart/util/optparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/util/optparse.py -------------------------------------------------------------------------------- /smart/util/pathlocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/util/pathlocks.py -------------------------------------------------------------------------------- /smart/util/pexpect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/util/pexpect.py -------------------------------------------------------------------------------- /smart/util/sha256module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/util/sha256module.c -------------------------------------------------------------------------------- /smart/util/ssh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/util/ssh.py -------------------------------------------------------------------------------- /smart/util/strtools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/util/strtools.py -------------------------------------------------------------------------------- /smart/util/tagfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/smart/util/tagfile.py -------------------------------------------------------------------------------- /test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/test -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/aptdeb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/aptdeb.py -------------------------------------------------------------------------------- /tests/aptdeb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/aptdeb.txt -------------------------------------------------------------------------------- /tests/aptrpm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/aptrpm.txt -------------------------------------------------------------------------------- /tests/archbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/archbase.py -------------------------------------------------------------------------------- /tests/archdir.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/archdir.txt -------------------------------------------------------------------------------- /tests/archsite.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/archsite.txt -------------------------------------------------------------------------------- /tests/auto.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/auto.txt -------------------------------------------------------------------------------- /tests/backend.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/backend.txt -------------------------------------------------------------------------------- /tests/celementtree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/celementtree.py -------------------------------------------------------------------------------- /tests/channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/channel.py -------------------------------------------------------------------------------- /tests/data/aptdeb/component-less/Packages.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/aptdeb/component-less/Packages.gz -------------------------------------------------------------------------------- /tests/data/aptdeb/component-less/Release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/aptdeb/component-less/Release -------------------------------------------------------------------------------- /tests/data/aptdeb/component-less/Release.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/aptdeb/component-less/Release.gpg -------------------------------------------------------------------------------- /tests/data/aptdeb/component-less/name1_version1-release1_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/aptdeb/component-less/name1_version1-release1_all.deb -------------------------------------------------------------------------------- /tests/data/aptdeb/component-less/name2_version2-release2_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/aptdeb/component-less/name2_version2-release2_all.deb -------------------------------------------------------------------------------- /tests/data/aptdeb/dists/Release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/aptdeb/dists/Release -------------------------------------------------------------------------------- /tests/data/aptdeb/dists/Release.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/aptdeb/dists/Release.gpg -------------------------------------------------------------------------------- /tests/data/aptdeb/dists/component/binary-i386/Packages.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/aptdeb/dists/component/binary-i386/Packages.gz -------------------------------------------------------------------------------- /tests/data/aptdeb/dists/component/binary-i386/name1_version1-release1_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/aptdeb/dists/component/binary-i386/name1_version1-release1_all.deb -------------------------------------------------------------------------------- /tests/data/aptdeb/dists/component/binary-i386/name2_version2-release2_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/aptdeb/dists/component/binary-i386/name2_version2-release2_all.deb -------------------------------------------------------------------------------- /tests/data/aptdeb/fink-virtual-pkgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/aptdeb/fink-virtual-pkgs -------------------------------------------------------------------------------- /tests/data/aptdeb/trustdb.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/aptdeb/trustdb.gpg -------------------------------------------------------------------------------- /tests/data/aptdeb/trusted.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/aptdeb/trusted.gpg -------------------------------------------------------------------------------- /tests/data/aptrpm/RPMS.main/name1-version1-release1.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/aptrpm/RPMS.main/name1-version1-release1.noarch.rpm -------------------------------------------------------------------------------- /tests/data/aptrpm/RPMS.main/name2-version2-release2.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/aptrpm/RPMS.main/name2-version2-release2.noarch.rpm -------------------------------------------------------------------------------- /tests/data/aptrpm/base/pkglist.main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/aptrpm/base/pkglist.main -------------------------------------------------------------------------------- /tests/data/aptrpm/base/pkglist.main.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/aptrpm/base/pkglist.main.bz2 -------------------------------------------------------------------------------- /tests/data/aptrpm/base/release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/aptrpm/base/release -------------------------------------------------------------------------------- /tests/data/aptrpm/base/release.main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/aptrpm/base/release.main -------------------------------------------------------------------------------- /tests/data/arch/name1-version1-release1-i686.pkg.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/arch/name1-version1-release1-i686.pkg.tar.gz -------------------------------------------------------------------------------- /tests/data/arch/name2-version2-release2-i686.pkg.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/arch/name2-version2-release2-i686.pkg.tar.xz -------------------------------------------------------------------------------- /tests/data/arch/test.db.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/arch/test.db.tar.gz -------------------------------------------------------------------------------- /tests/data/arch/test.files.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/arch/test.files.tar.gz -------------------------------------------------------------------------------- /tests/data/build/deb/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/build/deb/debian/changelog -------------------------------------------------------------------------------- /tests/data/build/deb/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/build/deb/debian/control -------------------------------------------------------------------------------- /tests/data/build/deb/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/build/deb/debian/rules -------------------------------------------------------------------------------- /tests/data/deb: -------------------------------------------------------------------------------- 1 | aptdeb/dists/component/binary-i386 -------------------------------------------------------------------------------- /tests/data/pack/debtest.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/pack/debtest.tar -------------------------------------------------------------------------------- /tests/data/pack/rpmtest.pkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/pack/rpmtest.pkg -------------------------------------------------------------------------------- /tests/data/rpm/metalink.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/rpm/metalink.xml -------------------------------------------------------------------------------- /tests/data/rpm/mirrorlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/rpm/mirrorlist.txt -------------------------------------------------------------------------------- /tests/data/rpm/name1-version1-release1.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/rpm/name1-version1-release1.noarch.rpm -------------------------------------------------------------------------------- /tests/data/rpm/name2-version2-release2.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/rpm/name2-version2-release2.noarch.rpm -------------------------------------------------------------------------------- /tests/data/rpm/repodata/filelists.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/rpm/repodata/filelists.xml.gz -------------------------------------------------------------------------------- /tests/data/rpm/repodata/other.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/rpm/repodata/other.xml.gz -------------------------------------------------------------------------------- /tests/data/rpm/repodata/primary.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/rpm/repodata/primary.xml.gz -------------------------------------------------------------------------------- /tests/data/rpm/repodata/repomd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/rpm/repodata/repomd.xml -------------------------------------------------------------------------------- /tests/data/rpm/repodata/updateinfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/rpm/repodata/updateinfo.xml -------------------------------------------------------------------------------- /tests/data/slack/CHECKSUMS.md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/slack/CHECKSUMS.md5 -------------------------------------------------------------------------------- /tests/data/slack/PACKAGES.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/slack/PACKAGES.TXT -------------------------------------------------------------------------------- /tests/data/slack/name1-version1-noarch-release1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/slack/name1-version1-noarch-release1.tgz -------------------------------------------------------------------------------- /tests/data/slack/name2-version2-noarch-release2.txz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/slack/name2-version2-noarch-release2.txz -------------------------------------------------------------------------------- /tests/data/uncompress/test.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/uncompress/test.7z -------------------------------------------------------------------------------- /tests/data/uncompress/test.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/uncompress/test.bz2 -------------------------------------------------------------------------------- /tests/data/uncompress/test.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/uncompress/test.gz -------------------------------------------------------------------------------- /tests/data/uncompress/test.lzma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/uncompress/test.lzma -------------------------------------------------------------------------------- /tests/data/uncompress/test.txt: -------------------------------------------------------------------------------- 1 | Hello, World! 2 | 3 | -------------------------------------------------------------------------------- /tests/data/uncompress/test.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/uncompress/test.xz -------------------------------------------------------------------------------- /tests/data/uncompress/test.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/uncompress/test.zip -------------------------------------------------------------------------------- /tests/data/urpmi-xml/media_info/MD5SUM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/urpmi-xml/media_info/MD5SUM -------------------------------------------------------------------------------- /tests/data/urpmi-xml/media_info/changelog.xml.lzma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/urpmi-xml/media_info/changelog.xml.lzma -------------------------------------------------------------------------------- /tests/data/urpmi-xml/media_info/files.xml.lzma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/urpmi-xml/media_info/files.xml.lzma -------------------------------------------------------------------------------- /tests/data/urpmi-xml/media_info/hdlist.cz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/urpmi-xml/media_info/hdlist.cz -------------------------------------------------------------------------------- /tests/data/urpmi-xml/media_info/info.xml.lzma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/urpmi-xml/media_info/info.xml.lzma -------------------------------------------------------------------------------- /tests/data/urpmi-xml/media_info/synthesis.hdlist.cz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/urpmi-xml/media_info/synthesis.hdlist.cz -------------------------------------------------------------------------------- /tests/data/urpmi-xml/name1-version1-release1.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/urpmi-xml/name1-version1-release1.noarch.rpm -------------------------------------------------------------------------------- /tests/data/urpmi-xml/name2-version2-release2.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/urpmi-xml/name2-version2-release2.noarch.rpm -------------------------------------------------------------------------------- /tests/data/urpmi-xml/reconfig.urpmi: -------------------------------------------------------------------------------- 1 | / /media_info/ 2 | -------------------------------------------------------------------------------- /tests/data/urpmi/clock: -------------------------------------------------------------------------------- 1 | ZONE=Europe/Stockholm 2 | -------------------------------------------------------------------------------- /tests/data/urpmi/media_info/MD5SUM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/urpmi/media_info/MD5SUM -------------------------------------------------------------------------------- /tests/data/urpmi/media_info/descriptions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/urpmi/media_info/descriptions -------------------------------------------------------------------------------- /tests/data/urpmi/media_info/hdlist.cz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/urpmi/media_info/hdlist.cz -------------------------------------------------------------------------------- /tests/data/urpmi/media_info/synthesis.hdlist.cz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/urpmi/media_info/synthesis.hdlist.cz -------------------------------------------------------------------------------- /tests/data/urpmi/mirrorlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/urpmi/mirrorlist.txt -------------------------------------------------------------------------------- /tests/data/urpmi/name1-version1-release1.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/urpmi/name1-version1-release1.noarch.rpm -------------------------------------------------------------------------------- /tests/data/urpmi/name2-version2-release2.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/urpmi/name2-version2-release2.noarch.rpm -------------------------------------------------------------------------------- /tests/data/urpmi/reconfig.urpmi: -------------------------------------------------------------------------------- 1 | / /media_info/ 2 | -------------------------------------------------------------------------------- /tests/data/urpmi/zone.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/urpmi/zone.tab -------------------------------------------------------------------------------- /tests/data/yast2-compressed/RPMS/noarch/name1-version1-release1.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/yast2-compressed/RPMS/noarch/name1-version1-release1.noarch.rpm -------------------------------------------------------------------------------- /tests/data/yast2-compressed/RPMS/noarch/name2-version2-release2.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/yast2-compressed/RPMS/noarch/name2-version2-release2.noarch.rpm -------------------------------------------------------------------------------- /tests/data/yast2-compressed/content: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/yast2-compressed/content -------------------------------------------------------------------------------- /tests/data/yast2-compressed/directory.yast: -------------------------------------------------------------------------------- 1 | content 2 | directory.yast 3 | media.1 4 | RPMS 5 | setup 6 | suse 7 | -------------------------------------------------------------------------------- /tests/data/yast2-compressed/media.1/media: -------------------------------------------------------------------------------- 1 | tests 2 | 20060109160652 3 | 1 4 | -------------------------------------------------------------------------------- /tests/data/yast2-compressed/setup/descr/packages.DU.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/yast2-compressed/setup/descr/packages.DU.gz -------------------------------------------------------------------------------- /tests/data/yast2-compressed/setup/descr/packages.en.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/yast2-compressed/setup/descr/packages.en.gz -------------------------------------------------------------------------------- /tests/data/yast2-compressed/setup/descr/packages.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/yast2-compressed/setup/descr/packages.gz -------------------------------------------------------------------------------- /tests/data/yast2/RPMS/noarch/name1-version1-release1.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/yast2/RPMS/noarch/name1-version1-release1.noarch.rpm -------------------------------------------------------------------------------- /tests/data/yast2/RPMS/noarch/name2-version2-release2.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/yast2/RPMS/noarch/name2-version2-release2.noarch.rpm -------------------------------------------------------------------------------- /tests/data/yast2/content: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/yast2/content -------------------------------------------------------------------------------- /tests/data/yast2/directory.yast: -------------------------------------------------------------------------------- 1 | content 2 | directory.yast 3 | media.1 4 | RPMS 5 | setup 6 | suse 7 | -------------------------------------------------------------------------------- /tests/data/yast2/media.1/media: -------------------------------------------------------------------------------- 1 | tests 2 | 20060109160652 3 | 1 4 | -------------------------------------------------------------------------------- /tests/data/yast2/setup/descr/packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/yast2/setup/descr/packages -------------------------------------------------------------------------------- /tests/data/yast2/setup/descr/packages.DU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/yast2/setup/descr/packages.DU -------------------------------------------------------------------------------- /tests/data/yast2/setup/descr/packages.en: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/yast2/setup/descr/packages.en -------------------------------------------------------------------------------- /tests/data/yumrpm/metalink-broken.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/yumrpm/metalink-broken.xml -------------------------------------------------------------------------------- /tests/data/yumrpm/mirrorlist-broken.txt: -------------------------------------------------------------------------------- 1 | # broken 2 | -------------------------------------------------------------------------------- /tests/data/yumrpm/name1-version1-release1.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/yumrpm/name1-version1-release1.noarch.rpm -------------------------------------------------------------------------------- /tests/data/yumrpm/name2-version2-release2.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/yumrpm/name2-version2-release2.noarch.rpm -------------------------------------------------------------------------------- /tests/data/yumrpm/repodata/00918afbb983349105125c0182d6bb61511bfa6cb565e5210ae43c3fa30fb7ee-filelists.sqlite.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/yumrpm/repodata/00918afbb983349105125c0182d6bb61511bfa6cb565e5210ae43c3fa30fb7ee-filelists.sqlite.bz2 -------------------------------------------------------------------------------- /tests/data/yumrpm/repodata/077eb7b5f9cf321a8ff862fad6e5712f47b55e0f49413a886db0318fae2e393d-primary.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/yumrpm/repodata/077eb7b5f9cf321a8ff862fad6e5712f47b55e0f49413a886db0318fae2e393d-primary.xml.gz -------------------------------------------------------------------------------- /tests/data/yumrpm/repodata/47375fb1438614a7b6058cea2a716b0331f4d0d7f1c91761996144d15b2427b2-primary.sqlite.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/yumrpm/repodata/47375fb1438614a7b6058cea2a716b0331f4d0d7f1c91761996144d15b2427b2-primary.sqlite.bz2 -------------------------------------------------------------------------------- /tests/data/yumrpm/repodata/655b55a361aeff1440244ab9dc473175e84c84bbd708263792a3a543b24c4d92-other.sqlite.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/yumrpm/repodata/655b55a361aeff1440244ab9dc473175e84c84bbd708263792a3a543b24c4d92-other.sqlite.bz2 -------------------------------------------------------------------------------- /tests/data/yumrpm/repodata/caa0be22bc2bf69dabd43e81e17601f1ce05730b823c47626aad96bcec801e15-other.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/yumrpm/repodata/caa0be22bc2bf69dabd43e81e17601f1ce05730b823c47626aad96bcec801e15-other.xml.gz -------------------------------------------------------------------------------- /tests/data/yumrpm/repodata/f6da66cef2af5fa3a35785617e7a2e7c03241cf1abcd6e28280e25b308e578d7-filelists.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/yumrpm/repodata/f6da66cef2af5fa3a35785617e7a2e7c03241cf1abcd6e28280e25b308e578d7-filelists.xml.gz -------------------------------------------------------------------------------- /tests/data/yumrpm/repodata/repomd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/data/yumrpm/repodata/repomd.xml -------------------------------------------------------------------------------- /tests/debbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/debbase.py -------------------------------------------------------------------------------- /tests/debdir.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/debdir.txt -------------------------------------------------------------------------------- /tests/debloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/debloader.py -------------------------------------------------------------------------------- /tests/debpm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/debpm.py -------------------------------------------------------------------------------- /tests/descriptions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/descriptions.txt -------------------------------------------------------------------------------- /tests/detectchannels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/detectchannels.txt -------------------------------------------------------------------------------- /tests/fetcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/fetcher.py -------------------------------------------------------------------------------- /tests/fink.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/fink.txt -------------------------------------------------------------------------------- /tests/initialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/initialization.py -------------------------------------------------------------------------------- /tests/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/interface.py -------------------------------------------------------------------------------- /tests/load-hooks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/load-hooks.txt -------------------------------------------------------------------------------- /tests/media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/media.py -------------------------------------------------------------------------------- /tests/metadata.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/metadata.txt -------------------------------------------------------------------------------- /tests/metalink.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/metalink.txt -------------------------------------------------------------------------------- /tests/mirrorlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/mirrorlist.txt -------------------------------------------------------------------------------- /tests/mirrorurl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/mirrorurl.txt -------------------------------------------------------------------------------- /tests/mocker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/mocker.py -------------------------------------------------------------------------------- /tests/nothing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/nothing.txt -------------------------------------------------------------------------------- /tests/origin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/origin.txt -------------------------------------------------------------------------------- /tests/pack.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/pack.txt -------------------------------------------------------------------------------- /tests/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/plugins/test_aptchannelsync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/plugins/test_aptchannelsync.py -------------------------------------------------------------------------------- /tests/plugins/test_detectsys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/plugins/test_detectsys.py -------------------------------------------------------------------------------- /tests/plugins/test_landscape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/plugins/test_landscape.py -------------------------------------------------------------------------------- /tests/plugins/test_urpmichannelsync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/plugins/test_urpmichannelsync.py -------------------------------------------------------------------------------- /tests/plugins/test_yumchannelsync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/plugins/test_yumchannelsync.py -------------------------------------------------------------------------------- /tests/plugins/test_zyppchannelsync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/plugins/test_zyppchannelsync.py -------------------------------------------------------------------------------- /tests/policy-upgrade.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/policy-upgrade.txt -------------------------------------------------------------------------------- /tests/rpmbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/rpmbase.py -------------------------------------------------------------------------------- /tests/rpmdir.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/rpmdir.txt -------------------------------------------------------------------------------- /tests/rpmloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/rpmloader.py -------------------------------------------------------------------------------- /tests/searcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/searcher.py -------------------------------------------------------------------------------- /tests/slackbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/slackbase.py -------------------------------------------------------------------------------- /tests/slackdir.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/slackdir.txt -------------------------------------------------------------------------------- /tests/slackloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/slackloader.py -------------------------------------------------------------------------------- /tests/slacksite.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/slacksite.txt -------------------------------------------------------------------------------- /tests/sorter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/sorter.py -------------------------------------------------------------------------------- /tests/uncompress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/uncompress.py -------------------------------------------------------------------------------- /tests/updateinfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/updateinfo.txt -------------------------------------------------------------------------------- /tests/urpmi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/urpmi.txt -------------------------------------------------------------------------------- /tests/urpmixml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/urpmixml.txt -------------------------------------------------------------------------------- /tests/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/util/distance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/util/distance.py -------------------------------------------------------------------------------- /tests/yast2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/yast2.txt -------------------------------------------------------------------------------- /tests/yast2comp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/yast2comp.txt -------------------------------------------------------------------------------- /tests/yumrpm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/yumrpm.py -------------------------------------------------------------------------------- /tests/yumrpm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartpm/smart/HEAD/tests/yumrpm.txt --------------------------------------------------------------------------------