<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/NetworkManager.git/contrib, branch th/fix-python-test</title>
<subtitle>gitlab.freedesktop.org: NetworkManager/NetworkManager.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/NetworkManager.git/'/>
<entry>
<title>contrib/rpm: drop BuildRequires to deprecated "wireless-tools-devel"</title>
<updated>2019-09-25T07:04:33+00:00</updated>
<author>
<name>Thomas Haller</name>
<email>thaller@redhat.com</email>
</author>
<published>2019-09-25T07:00:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/NetworkManager.git/commit/?id=d791c3fba87572bb5a7a3b0b773d091d596fbacf'/>
<id>d791c3fba87572bb5a7a3b0b773d091d596fbacf</id>
<content type='text'>
"wireless-tools-devel" is long depreacted and not used by
NetworkManager, not even for WEXT.

Drop it from the build dependencies.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
"wireless-tools-devel" is long depreacted and not used by
NetworkManager, not even for WEXT.

Drop it from the build dependencies.
</pre>
</div>
</content>
</entry>
<entry>
<title>tests: don't install bzip2 as REQUIRED_PACKAGES on Fedora/RHEL</title>
<updated>2019-09-25T07:04:07+00:00</updated>
<author>
<name>Thomas Haller</name>
<email>thaller@redhat.com</email>
</author>
<published>2019-09-25T05:40:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/NetworkManager.git/commit/?id=40fa09fcb426988d5cd92fa96c9b9bce9a99e1f0'/>
<id>40fa09fcb426988d5cd92fa96c9b9bce9a99e1f0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>tests: don't install unnecessary package in gitlab-ci tests</title>
<updated>2019-09-25T07:04:07+00:00</updated>
<author>
<name>Thomas Haller</name>
<email>thaller@redhat.com</email>
</author>
<published>2019-09-25T05:32:33+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/NetworkManager.git/commit/?id=fd30f6f8407083986d6f50fcf4860c3f94f6ff1d'/>
<id>fd30f6f8407083986d6f50fcf4860c3f94f6ff1d</id>
<content type='text'>
REQUIRED_PACKAGES has two uses:

 - to setup a system for developing NetworkManager. This installs
   convenience packages like "cscope".

 - to install the packages required for unit testing in gitlab-ci.

For gitlab-ci we should only install the packages that we actually
need.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
REQUIRED_PACKAGES has two uses:

 - to setup a system for developing NetworkManager. This installs
   convenience packages like "cscope".

 - to install the packages required for unit testing in gitlab-ci.

For gitlab-ci we should only install the packages that we actually
need.
</pre>
</div>
</content>
</entry>
<entry>
<title>tests: fix failure installing non-existing packages in REQUIRED_PACKAGES</title>
<updated>2019-09-25T05:42:14+00:00</updated>
<author>
<name>Thomas Haller</name>
<email>thaller@redhat.com</email>
</author>
<published>2019-09-25T05:15:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/NetworkManager.git/commit/?id=22b67990d5c2b459cb6d6ac7fe82fd8328e0e87b'/>
<id>22b67990d5c2b459cb6d6ac7fe82fd8328e0e87b</id>
<content type='text'>
Previously, dnf/yum used to ignore packages that didn't exist.
In Fedora 32, dnf starts to fail the entire command:

  No match for argument: python-gobject-base
  Error: Unable to find a match: python-gobject-base

Since this script is supposed to work with different RHEL/Fedora
versions, it's expected that not all packages are available everywhere.

Fix that, by installing packages that we know that they might be missing
one by one (and ignore the error).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Previously, dnf/yum used to ignore packages that didn't exist.
In Fedora 32, dnf starts to fail the entire command:

  No match for argument: python-gobject-base
  Error: Unable to find a match: python-gobject-base

Since this script is supposed to work with different RHEL/Fedora
versions, it's expected that not all packages are available everywhere.

Fix that, by installing packages that we know that they might be missing
one by one (and ignore the error).
</pre>
</div>
</content>
</entry>
<entry>
<title>contrib/rpm: "Suggest" wpa_supplicant for NetworkManager-wifi package</title>
<updated>2019-09-23T11:29:12+00:00</updated>
<author>
<name>Thomas Haller</name>
<email>thaller@redhat.com</email>
</author>
<published>2019-09-23T10:38:53+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/NetworkManager.git/commit/?id=4b1cb404fd545b748beeb440ff37afaf9cc497e1'/>
<id>4b1cb404fd545b748beeb440ff37afaf9cc497e1</id>
<content type='text'>
"NetworkManager-wifi" package requires either wpa_supplicant or iwd.
When installing the package without explicitly installing supplicant
or iwd (and not having it installed yet), then we want to drag in
wpa_supplicant by default. That is accomplished by suggesting wpa_supplicant
package.

Otherwise, the user installing NetworkManager-wifi might get iwd,
which is only functioning if the user explicitly enables the backend
in "NetworkManager.conf".

https://bugzilla.redhat.com/show_bug.cgi?id=1743585
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
"NetworkManager-wifi" package requires either wpa_supplicant or iwd.
When installing the package without explicitly installing supplicant
or iwd (and not having it installed yet), then we want to drag in
wpa_supplicant by default. That is accomplished by suggesting wpa_supplicant
package.

Otherwise, the user installing NetworkManager-wifi might get iwd,
which is only functioning if the user explicitly enables the backend
in "NetworkManager.conf".

https://bugzilla.redhat.com/show_bug.cgi?id=1743585
</pre>
</div>
</content>
</entry>
<entry>
<title>build/debian: install mobile-broadband-provider-info</title>
<updated>2019-09-11T12:54:34+00:00</updated>
<author>
<name>Lubomir Rintel</name>
<email>lkundrak@v3.sk</email>
</author>
<published>2019-09-11T12:54:34+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/NetworkManager.git/commit/?id=455f6dcbdc59709ef48c19c1c6bcfb1db42d01d3'/>
<id>455f6dcbdc59709ef48c19c1c6bcfb1db42d01d3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>wwan/modem-broadband: add capability to look up default APN/username/password</title>
<updated>2019-09-11T12:32:05+00:00</updated>
<author>
<name>Lubomir Rintel</name>
<email>lkundrak@v3.sk</email>
</author>
<published>2019-03-18T14:01:38+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/NetworkManager.git/commit/?id=7c53930ceb1561182deb8f47dd9927e049fc396d'/>
<id>7c53930ceb1561182deb8f47dd9927e049fc396d</id>
<content type='text'>
This allows the GSM connection to Just Work most of the time, as in:
"nmcli d connect ttyUSB0".
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This allows the GSM connection to Just Work most of the time, as in:
"nmcli d connect ttyUSB0".
</pre>
</div>
</content>
</entry>
<entry>
<title>contrib/modemu: also clean up on SIGTERM</title>
<updated>2019-09-10T12:33:38+00:00</updated>
<author>
<name>Lubomir Rintel</name>
<email>lkundrak@v3.sk</email>
</author>
<published>2019-09-10T12:33:38+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/NetworkManager.git/commit/?id=b1f7f431e6987dd3d1b4d3c91f28de6315017dc2'/>
<id>b1f7f431e6987dd3d1b4d3c91f28de6315017dc2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>contrib/checkpatch: fix the systemd code path</title>
<updated>2019-09-10T09:20:03+00:00</updated>
<author>
<name>Lubomir Rintel</name>
<email>lkundrak@v3.sk</email>
</author>
<published>2019-09-10T08:58:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/NetworkManager.git/commit/?id=ae6668ae85d313b028f9e14e21fb81a050ad01b5'/>
<id>ae6668ae85d313b028f9e14e21fb81a050ad01b5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>contrib/checkpatch: check for SPDX tags</title>
<updated>2019-09-10T09:20:03+00:00</updated>
<author>
<name>Lubomir Rintel</name>
<email>lkundrak@v3.sk</email>
</author>
<published>2019-09-10T08:41:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/NetworkManager.git/commit/?id=1b0ee8756ba08c2334a89c162722f6bdd13718de'/>
<id>1b0ee8756ba08c2334a89c162722f6bdd13718de</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
