<feed xmlns='http://www.w3.org/2005/Atom'>
<title>aports/main/acl, branch master</title>
<subtitle>Main aports tree
</subtitle>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/'/>
<entry>
<title>main/acl: upgrade to 2.2.53</title>
<updated>2019-08-05T06:26:16+00:00</updated>
<author>
<name>Rasmus Thomsen</name>
<email>oss@cogitri.dev</email>
</author>
<published>2019-08-02T09:13:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=f0279d8db81b45e9d97a6a213a29e9f5a7d6df4d'/>
<id>f0279d8db81b45e9d97a6a213a29e9f5a7d6df4d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>main/acl: fix compile break due to obsolete use of attr/xattr.h</title>
<updated>2019-06-05T15:35:00+00:00</updated>
<author>
<name>Mike Sullivan</name>
<email>mksully22@gmail.com</email>
</author>
<published>2019-06-05T14:27:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=8d23e79e8e2de4e599dc516d9060a4d3958c8a49'/>
<id>8d23e79e8e2de4e599dc516d9060a4d3958c8a49</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>main/acl: fix building with busybox gzip</title>
<updated>2018-05-01T10:14:11+00:00</updated>
<author>
<name>Natanael Copa</name>
<email>ncopa@alpinelinux.org</email>
</author>
<published>2018-05-01T10:12:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=cfd84b4e8ece29495d5a08d41320633430147ace'/>
<id>cfd84b4e8ece29495d5a08d41320633430147ace</id>
<content type='text'>
we want keep build deps down to simplify bootstrapping
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
we want keep build deps down to simplify bootstrapping
</pre>
</div>
</content>
</entry>
<entry>
<title>main/acl: disable check, modernise, fix license</title>
<updated>2018-02-07T04:31:47+00:00</updated>
<author>
<name>A. Wilcox</name>
<email>AWilcox@Wilcox-Tech.com</email>
</author>
<published>2018-01-31T19:16:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=f99b9fd679d2745aed2a1e70888943b710bdfae0'/>
<id>f99b9fd679d2745aed2a1e70888943b710bdfae0</id>
<content type='text'>
Package has some GPL-2.0+ sources, and is LGPL-2.1+ not 2.0.

Test suite depends on the ordering of nftw(3), which is not consistent
between glibc and musl, so it always fails.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Package has some GPL-2.0+ sources, and is LGPL-2.1+ not 2.0.

Test suite depends on the ordering of nftw(3), which is not consistent
between glibc and musl, so it always fails.
</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>main/acl: fix urls</title>
<updated>2017-03-13T14:50:30+00:00</updated>
<author>
<name>Natanael Copa</name>
<email>ncopa@alpinelinux.org</email>
</author>
<published>2017-03-10T16:07:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=8a4a4728c69461573ffdb0b09a4fcef1488c6983'/>
<id>8a4a4728c69461573ffdb0b09a4fcef1488c6983</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>main/acl: fix cross building</title>
<updated>2016-07-06T13:45:01+00:00</updated>
<author>
<name>Timo Teräs</name>
<email>timo.teras@iki.fi</email>
</author>
<published>2016-07-06T13:43:21+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=910bb03b8ca2e8db211520de5463f641deff81ea'/>
<id>910bb03b8ca2e8db211520de5463f641deff81ea</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Do not delete *.la files manually</title>
<updated>2015-09-10T11:59:03+00:00</updated>
<author>
<name>Bartłomiej Piotrowski</name>
<email>b@bpiotrowski.pl</email>
</author>
<published>2015-09-10T11:59:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=b4a13e7314bfe25e63b2f1ae5014d5429c17b539'/>
<id>b4a13e7314bfe25e63b2f1ae5014d5429c17b539</id>
<content type='text'>
Since abuild v2.22.0, these are removed automatically unless 'libtool'
option has been specified.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Since abuild v2.22.0, these are removed automatically unless 'libtool'
option has been specified.
</pre>
</div>
</content>
</entry>
<entry>
<title>main/acl: fix libacl.a symlink bug</title>
<updated>2015-03-16T09:37:06+00:00</updated>
<author>
<name>Natanael Copa</name>
<email>ncopa@alpinelinux.org</email>
</author>
<published>2015-03-16T09:35:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=a423d083072c162c940fa827ce773df83dc17a72'/>
<id>a423d083072c162c940fa827ce773df83dc17a72</id>
<content type='text'>
Fix circular symlink /usr/lib/libacl.a -&gt; /usr/lib/libacl.a
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix circular symlink /usr/lib/libacl.a -&gt; /usr/lib/libacl.a
</pre>
</div>
</content>
</entry>
<entry>
<title>main/acl: specify license</title>
<updated>2013-10-30T08:23:20+00:00</updated>
<author>
<name>Fabian Affolter</name>
<email>fabian@affolter-engineering.ch</email>
</author>
<published>2013-10-29T09:33:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=6cc9d56772b53c248743a75d81569167d253b0fa'/>
<id>6cc9d56772b53c248743a75d81569167d253b0fa</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
