#!/usr/bin/env python3 # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # Copyright (C) 2008 Tim Lauridsen # Copyright (C) 2008 Richard Hughes # Dispacher script to run pk commands from stdin import sys import time import os sys.path.insert(0,os.path.join(os.getcwd(), 'lib', 'python')) from packagekit.backend import * class PackageKitYumBackend(PackageKitBaseBackend): def __init__(self, args, lock=True): PackageKitBaseBackend.__init__(self, args) PackageKitBaseBackend.doLock(self) # simulate doing something time.sleep(2) def unLock(self): PackageKitBaseBackend.unLock(self) # simulate doing something time.sleep(0.5) def search_name(self, filters, key): # check we escape spaces properly if key == ['power manager']: self.package("polkit;0.0.1;i386;data", INFO_AVAILABLE, "PolicyKit daemon") def main(): backend = PackageKitYumBackend('', lock=True) backend.dispatcher(sys.argv[1:]) if __name__ == "__main__": main()