<feed xmlns='http://www.w3.org/2005/Atom'>
<title>aports/main/speedtest-cli, branch master</title>
<subtitle>Main aports tree
</subtitle>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/'/>
<entry>
<title>main/speedtest-cli: fix command line scripts</title>
<updated>2020-04-12T08:38:03+00:00</updated>
<author>
<name>Keith Maxwell</name>
<email>keith.maxwell@gmail.com</email>
</author>
<published>2020-04-12T08:35:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=70ad9ca62caa9cf7edf67300da0bebc4e8f356d0'/>
<id>70ad9ca62caa9cf7edf67300da0bebc4e8f356d0</id>
<content type='text'>
Before this change:

    $ dabuild sh
    $ sudo apk add speedtest-cli &gt;/dev/null &amp;&amp; speedtest-cli --version
    env: can't execute 'python': No such file or directory
    $ speedtest --version
    Traceback (most recent call last):
      File "/usr/bin/speedtest", line 6, in &lt;module&gt;
        from pkg_resources import load_entry_point
    ModuleNotFoundError: No module named 'pkg_resources'

This change removes the specific install line for speedtest-cli, because
it leaves a broken shebang first line. setup.py already installs a
speedtest-cli script which a functional shebang line.

This change adds py3-setuptools as a runtime dependency because
pkg_resources is imported by a file installed into /usr/bin/:

    $ grep pkg_resources /usr/bin/speedtest
    from pkg_resources import load_entry_point

pkg_resources is part of py3-setuptools:

    $ apk info -L py3-setuptools | grep pkg_resources/__init__.py
    usr/lib/python3.8/site-packages/pkg_resources/__init__.py

After this change:

    $ dabuild sh
    $ sudo apk add speedtest-cli &gt;/dev/null &amp;&amp; speedtest-cli --version
    speedtest-cli 2.1.2
    Python 3.8.2 (default, Apr  9 2020, 21:05:08) [GCC 9.3.0]
    $ speedtest --version
    speedtest-cli 2.1.2
    Python 3.8.2 (default, Apr  9 2020, 21:05:08) [GCC 9.3.0]
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Before this change:

    $ dabuild sh
    $ sudo apk add speedtest-cli &gt;/dev/null &amp;&amp; speedtest-cli --version
    env: can't execute 'python': No such file or directory
    $ speedtest --version
    Traceback (most recent call last):
      File "/usr/bin/speedtest", line 6, in &lt;module&gt;
        from pkg_resources import load_entry_point
    ModuleNotFoundError: No module named 'pkg_resources'

This change removes the specific install line for speedtest-cli, because
it leaves a broken shebang first line. setup.py already installs a
speedtest-cli script which a functional shebang line.

This change adds py3-setuptools as a runtime dependency because
pkg_resources is imported by a file installed into /usr/bin/:

    $ grep pkg_resources /usr/bin/speedtest
    from pkg_resources import load_entry_point

pkg_resources is part of py3-setuptools:

    $ apk info -L py3-setuptools | grep pkg_resources/__init__.py
    usr/lib/python3.8/site-packages/pkg_resources/__init__.py

After this change:

    $ dabuild sh
    $ sudo apk add speedtest-cli &gt;/dev/null &amp;&amp; speedtest-cli --version
    speedtest-cli 2.1.2
    Python 3.8.2 (default, Apr  9 2020, 21:05:08) [GCC 9.3.0]
    $ speedtest --version
    speedtest-cli 2.1.2
    Python 3.8.2 (default, Apr  9 2020, 21:05:08) [GCC 9.3.0]
</pre>
</div>
</content>
</entry>
<entry>
<title>main/speedtest-cli: fix build by adding py3-setuptools makedepends</title>
<updated>2020-03-25T22:29:51+00:00</updated>
<author>
<name>Mike Sullivan</name>
<email>mksully22@gmail.com</email>
</author>
<published>2020-03-25T20:08:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=59a9f60bdf0f7294f9115255569c32b96b71b036'/>
<id>59a9f60bdf0f7294f9115255569c32b96b71b036</id>
<content type='text'>
and modify APKBUILD
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
and modify APKBUILD
</pre>
</div>
</content>
</entry>
<entry>
<title>main/speedtest-cli: rebuild against python 3.8</title>
<updated>2019-11-05T15:33:51+00:00</updated>
<author>
<name>Natanael Copa</name>
<email>ncopa@alpinelinux.org</email>
</author>
<published>2019-10-24T15:18:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=518ab4b18f95e415a489ad58aa93e1856f4da406'/>
<id>518ab4b18f95e415a489ad58aa93e1856f4da406</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>main/speedtest-cli: upgrade to 2.1.2</title>
<updated>2019-08-23T07:59:31+00:00</updated>
<author>
<name>Francesco Colista</name>
<email>fcolista@alpinelinux.org</email>
</author>
<published>2019-08-23T07:57:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=54866634028adadf7fa35d9be6abcb7d87839b46'/>
<id>54866634028adadf7fa35d9be6abcb7d87839b46</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>main/speedtest-cli: rebuild against python 3.7</title>
<updated>2019-04-17T11:45:39+00:00</updated>
<author>
<name>Natanael Copa</name>
<email>ncopa@alpinelinux.org</email>
</author>
<published>2019-04-04T11:16:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=44b18b7dcbd667bf05e0c86eff6a5f7b918ded73'/>
<id>44b18b7dcbd667bf05e0c86eff6a5f7b918ded73</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>main/speedtest-cli: upgrade to 2.1.1</title>
<updated>2019-03-13T08:10:37+00:00</updated>
<author>
<name>Francesco Colista</name>
<email>fcolista@alpinelinux.org</email>
</author>
<published>2019-03-13T08:10:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=1d3ef26c9a943a7d4f934b7fa1846032bf2a883b'/>
<id>1d3ef26c9a943a7d4f934b7fa1846032bf2a883b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>main/speedtest-cli: upgrade to 2.1.0</title>
<updated>2019-03-12T07:19:41+00:00</updated>
<author>
<name>Francesco Colista</name>
<email>fcolista@alpinelinux.org</email>
</author>
<published>2019-03-12T07:19:41+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=5c0c53628d15c85ee70d77aea15de1909a5abcdc'/>
<id>5c0c53628d15c85ee70d77aea15de1909a5abcdc</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>main/speedtest-cli: upgrade to 2.0.2</title>
<updated>2018-05-28T06:56:14+00:00</updated>
<author>
<name>Francesco Colista</name>
<email>fcolista@alpinelinux.org</email>
</author>
<published>2018-05-28T06:56:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=5860b279fb106831068e7ef9e2d5e977fa75c869'/>
<id>5860b279fb106831068e7ef9e2d5e977fa75c869</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>main/speedtest-cli: upgrade to 2.0.1</title>
<updated>2018-05-24T13:53:38+00:00</updated>
<author>
<name>Francesco Colista</name>
<email>fcolista@alpinelinux.org</email>
</author>
<published>2018-05-24T13:53:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=f6519d53a6344b92f2fe4595ee70bd8492e06b65'/>
<id>f6519d53a6344b92f2fe4595ee70bd8492e06b65</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>main/speedtest-cli: upgrade to 2.0.0</title>
<updated>2018-02-10T11:38:53+00:00</updated>
<author>
<name>Francesco Colista</name>
<email>fcolista@alpinelinux.org</email>
</author>
<published>2018-02-10T11:36:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=940c9fab19ea85a5fbdc67c42a459c1d758b799a'/>
<id>940c9fab19ea85a5fbdc67c42a459c1d758b799a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
