2013-10-16 10:34:09 -03:00
|
|
|
#! /usr/bin/python3
|
2013-03-31 14:31:33 -03:00
|
|
|
# -*- coding:utf-8 -*-
|
2013-03-18 07:07:58 -03:00
|
|
|
|
2013-10-16 10:34:09 -03:00
|
|
|
from gi.repository import GObject
|
|
|
|
from pamac import common, transaction
|
|
|
|
import dbus
|
|
|
|
|
|
|
|
def reply(reply):
|
|
|
|
transaction.StopDaemon()
|
|
|
|
print('check updates done')
|
|
|
|
loop.quit()
|
|
|
|
|
|
|
|
def error(error):
|
|
|
|
transaction.StopDaemon()
|
|
|
|
print('check updates failed')
|
|
|
|
loop.quit()
|
|
|
|
|
|
|
|
loop = GObject.MainLoop()
|
2013-03-18 07:07:58 -03:00
|
|
|
|
|
|
|
if not common.pid_file_exists():
|
2013-10-16 10:34:09 -03:00
|
|
|
print('checking updates')
|
|
|
|
bus = dbus.SystemBus()
|
|
|
|
bus.add_signal_receiver(reply, dbus_interface = "org.manjaro.pamac", signal_name = "EmitTransactionDone")
|
|
|
|
bus.add_signal_receiver(error, dbus_interface = "org.manjaro.pamac", signal_name = "EmitTransactionError")
|
|
|
|
transaction.get_dbus_methods()
|
|
|
|
try:
|
|
|
|
transaction.Refresh(False)
|
|
|
|
except:
|
|
|
|
pass
|
|
|
|
else:
|
|
|
|
loop.run()
|