<feed xmlns='http://www.w3.org/2005/Atom'>
<title>aports/main/autoconf, branch master</title>
<subtitle>Main aports tree
</subtitle>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/'/>
<entry>
<title>Stop using ftp://ftp.gnu.org and http://ftp.gnu.org in favour of the HTTPS variant</title>
<updated>2019-11-27T07:29:16+00:00</updated>
<author>
<name>Tom Parker-Shemilt</name>
<email>palfrey@tevp.net</email>
</author>
<published>2019-11-14T15:52:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=2c843fd6dacfbad67368e3332b6024fae41b897c'/>
<id>2c843fd6dacfbad67368e3332b6024fae41b897c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>main/autoconf: backport patch for runstatedir support</title>
<updated>2018-02-15T09:38:53+00:00</updated>
<author>
<name>Adrian Guenter</name>
<email>adrian@gntr.me</email>
</author>
<published>2018-02-13T23:18:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=c61cbeaab81a975ad3032c5ff02b2e906396ade2'/>
<id>c61cbeaab81a975ad3032c5ff02b2e906396ade2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>main/autoconf: disable tests</title>
<updated>2018-02-07T04:48:12+00:00</updated>
<author>
<name>William Pitcock</name>
<email>nenolod@dereferenced.org</email>
</author>
<published>2018-02-07T04:48:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=1cf5954dc49c568a12ad63e838471f21af2c0349'/>
<id>1cf5954dc49c568a12ad63e838471f21af2c0349</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>main/autoconf: add test suite, fix Perl warning</title>
<updated>2018-02-07T04:37:00+00:00</updated>
<author>
<name>A. Wilcox</name>
<email>AWilcox@Wilcox-Tech.com</email>
</author>
<published>2018-01-31T22:00:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=3b0ec21ffe3d1386553a85f191578baad3485634'/>
<id>3b0ec21ffe3d1386553a85f191578baad3485634</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>main/*: fix homepage url and source from http:// to https://</title>
<updated>2017-11-19T13:16:51+00:00</updated>
<author>
<name>Jakub Jirutka</name>
<email>jakub@jirutka.cz</email>
</author>
<published>2017-11-19T13:05:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=730cdcef6901750f4029d4c3b8639ce02ee3ead1'/>
<id>730cdcef6901750f4029d4c3b8639ce02ee3ead1</id>
<content type='text'>
Most of these updates is based on data from https://repology.org/,
detection based on permanent redirect from http:// to https://.

$source urls are updated when they contain $url as substring.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Most of these updates is based on data from https://repology.org/,
detection based on permanent redirect from http:// to https://.

$source urls are updated when they contain $url as substring.
</pre>
</div>
</content>
</entry>
<entry>
<title>main/autoconf: modernize abuild</title>
<updated>2017-06-09T13:11:24+00:00</updated>
<author>
<name>tmpfile</name>
<email>tmpfile@users.noreply.github.com</email>
</author>
<published>2017-05-14T16:28:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=8bca3c6b8441f17559d220f7fd77ef813dc933fa'/>
<id>8bca3c6b8441f17559d220f7fd77ef813dc933fa</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>main/[various]: fix missing sha512 checksums</title>
<updated>2017-06-06T20:24:17+00:00</updated>
<author>
<name>null</name>
<email>null</email>
</author>
<published>2017-05-14T20:05:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=ecce10225bfb48726286cbfbeb1b6acb34b9264e'/>
<id>ecce10225bfb48726286cbfbeb1b6acb34b9264e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>main/autoconf: specify license</title>
<updated>2013-10-31T12:39:44+00:00</updated>
<author>
<name>Fabian Affolter</name>
<email>fabian@affolter-engineering.ch</email>
</author>
<published>2013-10-30T15:36:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=4c683513478ce1c45ce8fd7f3204e32676ea28d3'/>
<id>4c683513478ce1c45ce8fd7f3204e32676ea28d3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>main/[various]: simple build fixes against musl (update_config_sub)</title>
<updated>2013-09-20T13:02:19+00:00</updated>
<author>
<name>Timo Teräs</name>
<email>timo.teras@iki.fi</email>
</author>
<published>2013-09-20T13:01:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=2702db2a9ba4bb1f2ef819ae61c791477748784f'/>
<id>2702db2a9ba4bb1f2ef819ae61c791477748784f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
