<feed xmlns='http://www.w3.org/2005/Atom'>
<title>aports/main/check, branch master</title>
<subtitle>Main aports tree
</subtitle>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/'/>
<entry>
<title>main/check: upgrade to 0.14.0</title>
<updated>2020-01-28T23:22:24+00:00</updated>
<author>
<name>Leo</name>
<email>thinkabit.ukim@gmail.com</email>
</author>
<published>2020-01-28T21:55:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=bb0f76d2694e733199699699283ad716682efe5e'/>
<id>bb0f76d2694e733199699699283ad716682efe5e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>main/check: install documentation files again</title>
<updated>2019-10-25T15:34:28+00:00</updated>
<author>
<name>Sören Tempel</name>
<email>soeren+git@soeren-tempel.net</email>
</author>
<published>2019-10-25T15:23:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=32d3ab884f41c4475f3a3faacf981c7392a73981'/>
<id>32d3ab884f41c4475f3a3faacf981c7392a73981</id>
<content type='text'>
With the upgrade to 0.13.0 documentation files were no longer installed
since upstream (incorrectly) checks for the presence of tex (instead of
makeinfo) now before installing documentation files.

See: https://github.com/libcheck/check/pull/212/files#r339109071
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
With the upgrade to 0.13.0 documentation files were no longer installed
since upstream (incorrectly) checks for the presence of tex (instead of
makeinfo) now before installing documentation files.

See: https://github.com/libcheck/check/pull/212/files#r339109071
</pre>
</div>
</content>
</entry>
<entry>
<title>main/check: upgrade to 0.13.0</title>
<updated>2019-10-25T15:34:28+00:00</updated>
<author>
<name>Leo</name>
<email>thinkabit.ukim@gmail.com</email>
</author>
<published>2019-10-22T17:47:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=faf09c4120a1feab5d6abf85835f5bbb70584741'/>
<id>faf09c4120a1feab5d6abf85835f5bbb70584741</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>main/check: enable fork</title>
<updated>2019-07-17T08:44:55+00:00</updated>
<author>
<name>Leo</name>
<email>thinkabit.ukim@gmail.com</email>
</author>
<published>2019-07-14T22:36:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=b4063f1d54680d45434a65c329bf7d539a99ffdb'/>
<id>b4063f1d54680d45434a65c329bf7d539a99ffdb</id>
<content type='text'>
Fixes #8538
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes #8538
</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/check: disable forking</title>
<updated>2017-10-28T15:58:17+00:00</updated>
<author>
<name>Carlo Landmeter</name>
<email>clandmeter@gmail.com</email>
</author>
<published>2017-10-28T15:57:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=a7936f603c94c3d76fda0abec6570b4d1d2a44a2'/>
<id>a7936f603c94c3d76fda0abec6570b4d1d2a44a2</id>
<content type='text'>
https://github.com/libcheck/check/issues/138
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/libcheck/check/issues/138
</pre>
</div>
</content>
</entry>
<entry>
<title>main/check: disable tests and reorder subpkgs</title>
<updated>2017-10-23T11:10:45+00:00</updated>
<author>
<name>Carlo Landmeter</name>
<email>clandmeter@gmail.com</email>
</author>
<published>2017-10-23T11:10:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=5669a06decf0c081ddc727b3dc4fe4ff07d557a0'/>
<id>5669a06decf0c081ddc727b3dc4fe4ff07d557a0</id>
<content type='text'>
https://github.com/libcheck/check/issues/138

reorder to catch all docs in doc subpkg
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/libcheck/check/issues/138

reorder to catch all docs in doc subpkg
</pre>
</div>
</content>
</entry>
<entry>
<title>main/check: upgrade to 0.12.0</title>
<updated>2017-10-23T11:10:44+00:00</updated>
<author>
<name>Fabian Affolter</name>
<email>fabian@affolter-engineering.ch</email>
</author>
<published>2017-10-21T19:40:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=60308513b516a64047f4170e887d6f4bafc11bed'/>
<id>60308513b516a64047f4170e887d6f4bafc11bed</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>main/check: disable check</title>
<updated>2017-08-28T08:57:41+00:00</updated>
<author>
<name>Timo Teräs</name>
<email>timo.teras@iki.fi</email>
</author>
<published>2017-08-28T08:57:41+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=60922330bc613354fdfce8f8214b835018fdf12a'/>
<id>60922330bc613354fdfce8f8214b835018fdf12a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>main/check: add tests and modernise</title>
<updated>2017-08-28T08:40:44+00:00</updated>
<author>
<name>A. Wilcox</name>
<email>AWilcox@Wilcox-Tech.com</email>
</author>
<published>2017-08-14T23:25:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=9e62c347c7516dcf498ced692df6e08966b65223'/>
<id>9e62c347c7516dcf498ced692df6e08966b65223</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
