<feed xmlns='http://www.w3.org/2005/Atom'>
<title>aports/testing/libsemanage, branch master</title>
<subtitle>Main aports tree
</subtitle>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/'/>
<entry>
<title>testing/libsemanage: switch to python3</title>
<updated>2019-10-23T17:44:54+00:00</updated>
<author>
<name>Leo</name>
<email>thinkabit.ukim@gmail.com</email>
</author>
<published>2019-10-23T17:32:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=9b4d9f039d7cafabc555aa755eab2da5c6c2d57c'/>
<id>9b4d9f039d7cafabc555aa755eab2da5c6c2d57c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>testing/libsemanage: upgrade to 2.8</title>
<updated>2018-12-16T22:03:07+00:00</updated>
<author>
<name>Carlo Landmeter</name>
<email>clandmeter@alpinelinux.org</email>
</author>
<published>2018-12-16T22:03:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=212a9e33b40936d7c7fcbdb886c13014ed238d03'/>
<id>212a9e33b40936d7c7fcbdb886c13014ed238d03</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>testing/libsemanage: enable on s390x again</title>
<updated>2018-06-06T17:02:25+00:00</updated>
<author>
<name>Natanael Copa</name>
<email>ncopa@alpinelinux.org</email>
</author>
<published>2018-06-06T17:00:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=128bfc979e9d3f72f04f8b1b3525f1f20db35f2f'/>
<id>128bfc979e9d3f72f04f8b1b3525f1f20db35f2f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>testing/libsemanage: disable s390x due to missing audit</title>
<updated>2018-06-06T08:56:09+00:00</updated>
<author>
<name>Natanael Copa</name>
<email>ncopa@alpinelinux.org</email>
</author>
<published>2018-06-06T08:56:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=02e31f85b0984c592d92f515392af00ce2af9774'/>
<id>02e31f85b0984c592d92f515392af00ce2af9774</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</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>testing/[various]: remove trailing whitespace in pkgdesc</title>
<updated>2017-06-23T23:34:32+00:00</updated>
<author>
<name>tmpfile</name>
<email>tmpfile@users.noreply.github.com</email>
</author>
<published>2017-06-19T13:32:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=8ba26cee862e71ac7cc67f8e6150720a6e0640ae'/>
<id>8ba26cee862e71ac7cc67f8e6150720a6e0640ae</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>testing/libsemanage: build fix</title>
<updated>2017-03-16T10:32:01+00:00</updated>
<author>
<name>Natanael Copa</name>
<email>ncopa@alpinelinux.org</email>
</author>
<published>2017-03-16T10:32:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=d39fe6614f98e36188af4dc8f17e48ccaf369854'/>
<id>d39fe6614f98e36188af4dc8f17e48ccaf369854</id>
<content type='text'>
we need audit-dev
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
we need audit-dev
</pre>
</div>
</content>
</entry>
<entry>
<title>testing/libsemanage: initial import</title>
<updated>2017-03-16T10:06:43+00:00</updated>
<author>
<name>Tycho Andersen</name>
<email>tycho@docker.com</email>
</author>
<published>2017-03-14T21:08:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=6ea01c2b7f22db87a0259a1bc53e249427a7cf0f'/>
<id>6ea01c2b7f22db87a0259a1bc53e249427a7cf0f</id>
<content type='text'>
Signed-off-by: Tycho Andersen &lt;tycho@docker.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Tycho Andersen &lt;tycho@docker.com&gt;
</pre>
</div>
</content>
</entry>
</feed>
