<feed xmlns='http://www.w3.org/2005/Atom'>
<title>aports/community/openlibm, branch master</title>
<subtitle>Main aports tree
</subtitle>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/'/>
<entry>
<title>community/openlibm: disable on mips</title>
<updated>2020-04-07T23:43:40+00:00</updated>
<author>
<name>Ariadne Conill</name>
<email>ariadne@dereferenced.org</email>
</author>
<published>2020-04-07T23:43:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=112c7aa2dc91c4ff3d035295c15994c38c73f978'/>
<id>112c7aa2dc91c4ff3d035295c15994c38c73f978</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>community/openlibm: upgrade to 0.7.0</title>
<updated>2019-12-26T03:05:38+00:00</updated>
<author>
<name>Leo</name>
<email>thinkabit.ukim@gmail.com</email>
</author>
<published>2019-12-26T02:57:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=9c09e871337a78b6cb38941cdd4c120384509394'/>
<id>9c09e871337a78b6cb38941cdd4c120384509394</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>community/openlibm: fix license fix url</title>
<updated>2019-06-12T19:19:37+00:00</updated>
<author>
<name>Leo</name>
<email>thinkabit.ukim@gmail.com</email>
</author>
<published>2019-06-07T18:09:41+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=a5ffafe40ea6c590ba998b3a07cfb109853c67d5'/>
<id>a5ffafe40ea6c590ba998b3a07cfb109853c67d5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>community/openlibm: upgrade to 0.6.0</title>
<updated>2018-07-08T21:47:58+00:00</updated>
<author>
<name>Jakub Jirutka</name>
<email>jakub@jirutka.cz</email>
</author>
<published>2018-07-08T21:55:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=be26f5cfd9c51d74dece7f0655b793d31381cd0d'/>
<id>be26f5cfd9c51d74dece7f0655b793d31381cd0d</id>
<content type='text'>
No ABI breakages according to https://abi-laboratory.pro/?view=timeline&amp;l=openlibm.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
No ABI breakages according to https://abi-laboratory.pro/?view=timeline&amp;l=openlibm.
</pre>
</div>
</content>
</entry>
<entry>
<title>[various]: unify names of licenses according to SPDX</title>
<updated>2017-12-30T20:05:50+00:00</updated>
<author>
<name>Jakub Jirutka</name>
<email>jakub@jirutka.cz</email>
</author>
<published>2017-12-30T18:04:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=63f5e7d295659a855709901ce22a3e5f40fce455'/>
<id>63f5e7d295659a855709901ce22a3e5f40fce455</id>
<content type='text'>
This commit updates $license variable in all APKBUILDs to comply with
short names specified by SPDX version 3.0 [1] where possible. It was
done using find-and-replace method on substrings inside $license
variables.

Only license names were updated, not "expressions" specifying relation
between the licenses (e.g. "X and Y", "X or Y", "X and (Y or Z)") or
exceptions (e.g. "X with exceptions").

Many licenses have a version or multiple variants, e.g. MPL-2.0,
BSD-2-Clause, BSD-3-Clause. However, $license in many aports do not
contain license version or variant. Since there's no way how to infer
this information just from abuild, it were left without the variant
suffix or version, i.e. non SPDX compliant.

GNU licenses (AGPL, GFDL, GPL, LGPL) are especially complicated. They
exist in two variants: -only (formerly e.g. GPL-2.0) and -or-later
(formerly e.g. GPL-2.0+). We did not systematically noted distinguish
between these variants, so GPL-2.0, GPL2, GPLv2 etc. may mean
GPL-2.0-only or GPL-2.0-or-later. Thus GNU licenses without "+" (e.g.
GPL2+) were left without the variant suffix, i.e. non SPDX compliant.

Note: This commit just fixes format of the license names, no
verification has been done if the specified license information is
actually correct!

[1]: https://spdx.org/licenses/
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This commit updates $license variable in all APKBUILDs to comply with
short names specified by SPDX version 3.0 [1] where possible. It was
done using find-and-replace method on substrings inside $license
variables.

Only license names were updated, not "expressions" specifying relation
between the licenses (e.g. "X and Y", "X or Y", "X and (Y or Z)") or
exceptions (e.g. "X with exceptions").

Many licenses have a version or multiple variants, e.g. MPL-2.0,
BSD-2-Clause, BSD-3-Clause. However, $license in many aports do not
contain license version or variant. Since there's no way how to infer
this information just from abuild, it were left without the variant
suffix or version, i.e. non SPDX compliant.

GNU licenses (AGPL, GFDL, GPL, LGPL) are especially complicated. They
exist in two variants: -only (formerly e.g. GPL-2.0) and -or-later
(formerly e.g. GPL-2.0+). We did not systematically noted distinguish
between these variants, so GPL-2.0, GPL2, GPLv2 etc. may mean
GPL-2.0-only or GPL-2.0-or-later. Thus GNU licenses without "+" (e.g.
GPL2+) were left without the variant suffix, i.e. non SPDX compliant.

Note: This commit just fixes format of the license names, no
verification has been done if the specified license information is
actually correct!

[1]: https://spdx.org/licenses/
</pre>
</div>
</content>
</entry>
<entry>
<title>community/openlibm: add checks</title>
<updated>2017-10-23T10:21:12+00:00</updated>
<author>
<name>Carlo Landmeter</name>
<email>clandmeter@gmail.com</email>
</author>
<published>2017-10-23T10:20:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=088fd2b05a8bea81e0e5fe834cb89fc692c991f8'/>
<id>088fd2b05a8bea81e0e5fe834cb89fc692c991f8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>community/openlibm: upgrade to 0.5.5</title>
<updated>2017-10-23T10:21:12+00:00</updated>
<author>
<name>tmpfile</name>
<email>tmpfile@users.noreply.github.com</email>
</author>
<published>2017-10-22T10:04:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=a0068f8a9b10f708a164c4f1312e48fd3c13fce9'/>
<id>a0068f8a9b10f708a164c4f1312e48fd3c13fce9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>community/openlibm: disable on s390x</title>
<updated>2017-04-21T23:33:47+00:00</updated>
<author>
<name>Tuan M. Hoang</name>
<email>tmhoang@flatglobe.org</email>
</author>
<published>2017-04-21T22:02:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=53485b87fc9f7f927b90f609c43ff4e43171ee90'/>
<id>53485b87fc9f7f927b90f609c43ff4e43171ee90</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>community/openlibm: Fix FTBFS on ppc64le</title>
<updated>2017-04-03T18:52:29+00:00</updated>
<author>
<name>Breno Leitao</name>
<email>breno.leitao@gmail.com</email>
</author>
<published>2017-04-03T18:50:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=962fb9c8f8d8e47e70c8d409f636c723dda8146d'/>
<id>962fb9c8f8d8e47e70c8d409f636c723dda8146d</id>
<content type='text'>
Current powerpc files on openlibm is quite old, and need some
modernization. Now it builds on ppc64le.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Current powerpc files on openlibm is quite old, and need some
modernization. Now it builds on ppc64le.
</pre>
</div>
</content>
</entry>
<entry>
<title>community/openlibm: upgrade to 0.5.4</title>
<updated>2016-09-15T16:40:14+00:00</updated>
<author>
<name>Jakub Jirutka</name>
<email>jakub@jirutka.cz</email>
</author>
<published>2016-09-15T16:39:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=7779294359eb9c0909101f94cb8d9ac8c46d0fe5'/>
<id>7779294359eb9c0909101f94cb8d9ac8c46d0fe5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
