<feed xmlns='http://www.w3.org/2005/Atom'>
<title>bitmask-dev.git/pkg, branch 0.9.0rc1</title>
<subtitle>[bitmask-dev] 
</subtitle>
<link rel='alternate' type='text/html' href='https://leap.se/git/bitmask-dev.git/'/>
<entry>
<title>[pkg] bump dependencies</title>
<updated>2015-07-10T22:27:47+00:00</updated>
<author>
<name>Ivan Alejandro</name>
<email>ivanalejandro0@gmail.com</email>
</author>
<published>2015-07-10T22:27:47+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/bitmask-dev.git/commit/?id=3a5eba162db77c76bd0bb035c84ffa42a8a08b0e'/>
<id>3a5eba162db77c76bd0bb035c84ffa42a8a08b0e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[feat] add a zmq based logger, change log window</title>
<updated>2015-06-22T18:52:37+00:00</updated>
<author>
<name>Ivan Alejandro</name>
<email>ivanalejandro0@gmail.com</email>
</author>
<published>2015-06-05T16:36:51+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/bitmask-dev.git/commit/?id=584a6d93ad1fe1ba46929108f002a16a8b70e95d'/>
<id>584a6d93ad1fe1ba46929108f002a16a8b70e95d</id>
<content type='text'>
- Add a new handler for a zmq/thread-safe log send between components.
- Update the log window to use this new handler.
- Remove old custom handler
  We have implemented a new handler that uses logbook, so this one is no
  longer needed.
- Adapt log silencer to new handler
- Use log file always as default

- Related: #6733
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Add a new handler for a zmq/thread-safe log send between components.
- Update the log window to use this new handler.
- Remove old custom handler
  We have implemented a new handler that uses logbook, so this one is no
  longer needed.
- Adapt log silencer to new handler
- Use log file always as default

- Related: #6733
</pre>
</div>
</content>
</entry>
<entry>
<title>[pkg] add missing taskthread dependency</title>
<updated>2015-06-08T19:40:04+00:00</updated>
<author>
<name>Ivan Alejandro</name>
<email>ivanalejandro0@gmail.com</email>
</author>
<published>2015-06-08T19:40:04+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/bitmask-dev.git/commit/?id=01e62e35a69aa13f86a06d8839169ea69d716009'/>
<id>01e62e35a69aa13f86a06d8839169ea69d716009</id>
<content type='text'>
This dependency was previously installed through soledad, but it
doesn't use that lib anymore.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This dependency was previously installed through soledad, but it
doesn't use that lib anymore.
</pre>
</div>
</content>
</entry>
<entry>
<title>[feat] adapt to new events api on common</title>
<updated>2015-05-27T15:04:29+00:00</updated>
<author>
<name>Ivan Alejandro</name>
<email>ivanalejandro0@gmail.com</email>
</author>
<published>2015-05-07T14:21:02+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/bitmask-dev.git/commit/?id=5a0de9fd25d783039345674680c67a2bd91815a5'/>
<id>5a0de9fd25d783039345674680c67a2bd91815a5</id>
<content type='text'>
- Related: #6359
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Related: #6359
</pre>
</div>
</content>
</entry>
<entry>
<title>[feat] use txzmq in backend</title>
<updated>2015-05-08T19:11:47+00:00</updated>
<author>
<name>drebs</name>
<email>drebs@leap.se</email>
</author>
<published>2015-01-28T18:17:51+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/bitmask-dev.git/commit/?id=01b005b0642454e3d670089ed7e530eda8e9ef91'/>
<id>01b005b0642454e3d670089ed7e530eda8e9ef91</id>
<content type='text'>
Before this commit, the backend used plain pyzmq bindings for communicating
with the frontend. This implements the txzmq twisted-powered bindings instead.

Closes: #6360
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Before this commit, the backend used plain pyzmq bindings for communicating
with the frontend. This implements the txzmq twisted-powered bindings instead.

Closes: #6360
</pre>
</div>
</content>
</entry>
<entry>
<title>[bug] change the ip command location to /sbin/</title>
<updated>2015-05-07T19:42:08+00:00</updated>
<author>
<name>Ivan Alejandro</name>
<email>ivanalejandro0@gmail.com</email>
</author>
<published>2015-04-23T15:41:08+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/bitmask-dev.git/commit/?id=456941648223a14fe144264c27a5dce4e4e702e5'/>
<id>456941648223a14fe144264c27a5dce4e4e702e5</id>
<content type='text'>
Change the 'ip' command location to support Fedora/RHEL distros.
/bin/ip is pressent on Debian/Ubuntu but not on Fedora.
/sbin/ip is a symlink to /bin/ip on Debian/Ubuntu and a binary on Fedora.

- Resolves: #6894
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change the 'ip' command location to support Fedora/RHEL distros.
/bin/ip is pressent on Debian/Ubuntu but not on Fedora.
/sbin/ip is a symlink to /bin/ip on Debian/Ubuntu and a binary on Fedora.

- Resolves: #6894
</pre>
</div>
</content>
</entry>
<entry>
<title>[bug] support /usr/lib64 python path for symlinks</title>
<updated>2015-04-24T20:35:33+00:00</updated>
<author>
<name>Ivan Alejandro</name>
<email>ivanalejandro0@gmail.com</email>
</author>
<published>2015-04-22T18:40:49+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/bitmask-dev.git/commit/?id=649b869f76730da78fcd40dacf8da45166ebd750'/>
<id>649b869f76730da78fcd40dacf8da45166ebd750</id>
<content type='text'>
On 64bit Fedora/RHEL systems the python path is /usr/lib64 instead of
/usr/lib like on Ubuntu systems. This fix allows those users to use the
bootstrap_develop.sh script.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
On 64bit Fedora/RHEL systems the python path is /usr/lib64 instead of
/usr/lib like on Ubuntu systems. This fix allows those users to use the
bootstrap_develop.sh script.
</pre>
</div>
</content>
</entry>
<entry>
<title>create sumo tarball with leap dependencies (Closes: #6683)</title>
<updated>2015-02-13T17:20:04+00:00</updated>
<author>
<name>Kali Kaneko</name>
<email>kali@leap.se</email>
</author>
<published>2015-02-04T04:59:32+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/bitmask-dev.git/commit/?id=c06bf409d3fe2268011214301c59dc1c279fae44'/>
<id>c06bf409d3fe2268011214301c59dc1c279fae44</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>add pipdeptree to requirements-dev</title>
<updated>2015-02-13T17:03:12+00:00</updated>
<author>
<name>Kali Kaneko</name>
<email>kali@leap.se</email>
</author>
<published>2015-02-13T16:12:09+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/bitmask-dev.git/commit/?id=fb7d75a6556026d097a03c61bb167d689f1e1f06'/>
<id>fb7d75a6556026d097a03c61bb167d689f1e1f06</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>gather bitmask dependency tree</title>
<updated>2015-02-13T17:03:12+00:00</updated>
<author>
<name>Kali Kaneko</name>
<email>kali@leap.se</email>
</author>
<published>2015-01-15T21:21:01+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/bitmask-dev.git/commit/?id=b226c1a3c44df3bfe9b888be1f8661a69f53a88b'/>
<id>b226c1a3c44df3bfe9b888be1f8661a69f53a88b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
