Skip to content

Commit

Permalink
merge dnfdaemon-0.3.14 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim Lauridsen committed Apr 29, 2016
2 parents 8d29c4f + c4cdcf5 commit 593601d
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 3 deletions.
17 changes: 17 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
2016-04-29 Tim Lauridsen <[email protected]>

* dnfdaemon.spec: bumped version to 0.3.14

2016-04-29 Tim Lauridsen <[email protected]>

* python/dnfdaemon/client/__init__.py: fallback to use
GObject.G_MAXINT

2016-04-29 Tim Lauridsen <[email protected]>

Merge branch 'release-0.3.13' into develop

2016-04-29 Tim Lauridsen <[email protected]>

* ChangeLog: updated ChangeLog

2016-04-29 Tim Lauridsen <[email protected]>

* dnfdaemon.spec: bumped version to 0.3.13
Expand Down
5 changes: 4 additions & 1 deletion dnfdaemon.spec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
%global dnf_version 1.1.0

Name: dnfdaemon
Version: 0.3.13
Version: 0.3.14
Release: 1%{?dist}
Summary: DBus daemon for dnf package actions
License: GPLv2+
Expand Down Expand Up @@ -99,6 +99,9 @@ fi
%{python3_sitelib}/%{name}/client

%changelog
* Fri Apr 29 2016 Tim Lauridsen <[email protected]> 0.3.14-1
- bumped release

* Fri Apr 29 2016 Tim Lauridsen <[email protected]> 0.3.13-1
- bumped release

Expand Down
4 changes: 2 additions & 2 deletions python/dnfdaemon/client/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def on_RepoMetaDataProgress(self, name, frac):

logger = logging.getLogger("dnfdaemon.client")

from gi.repository import Gio, GLib
from gi.repository import Gio, GLib, GObject

ORG = 'org.baseurl.DnfSystem'
INTERFACE = ORG
Expand Down Expand Up @@ -288,7 +288,7 @@ def _run_dbus_async(self, cmd, *args):
func = getattr(self.daemon, cmd)
# timeout = infinite
func(*args, result_handler=self._return_handler,
user_data=data, timeout=GLib.G_MAXINT)
user_data=data, timeout=GObject.G_MAXINT)
data['main_loop'].run()
result = self._get_result(data)
return result
Expand Down

0 comments on commit 593601d

Please sign in to comment.