<feed xmlns='http://www.w3.org/2005/Atom'>
<title>aports/testing/icingaweb2-module-generictts, branch master</title>
<subtitle>Main aports tree
</subtitle>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/'/>
<entry>
<title>testing/icingaweb2-module-*: disable on mips</title>
<updated>2020-04-13T04:39:46+00:00</updated>
<author>
<name>Ariadne Conill</name>
<email>ariadne@dereferenced.org</email>
</author>
<published>2020-04-13T04:39:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=0acc8a083d6e50fd1e8d2305299f6df3ef769988'/>
<id>0acc8a083d6e50fd1e8d2305299f6df3ef769988</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove obsolete checksums from testing</title>
<updated>2020-01-30T20:14:53+00:00</updated>
<author>
<name>J0WI</name>
<email>J0WI@users.noreply.github.com</email>
</author>
<published>2020-01-29T12:49:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=e3ac77934f077e68558d0e0f1a0ac91907c6d234'/>
<id>e3ac77934f077e68558d0e0f1a0ac91907c6d234</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>testing: (Bulk change) Update urls to https using HTTPS Everywhere and bump pkgrel</title>
<updated>2018-10-06T17:19:31+00:00</updated>
<author>
<name>J0WI</name>
<email>J0WI@users.noreply.github.com</email>
</author>
<published>2018-10-06T12:15:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=16f8ceb8e2d24fc6e5dccc926d86c48ad52a8b64'/>
<id>16f8ceb8e2d24fc6e5dccc926d86c48ad52a8b64</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>aports: add support for armv7 [skip ci]</title>
<updated>2018-09-24T07:19:24+00:00</updated>
<author>
<name>Oliver Smith</name>
<email>ollieparanoid@bitmessage.ch</email>
</author>
<published>2018-09-20T04:57:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=9d9f981a2c421f44db3ae66b90293202748eb9f3'/>
<id>9d9f981a2c421f44db3ae66b90293202748eb9f3</id>
<content type='text'>
This makes it possible to provide armv7 as additional architecture in
Alpine, next to armhf. See the discussion in this ML thread:
&lt;https://lists.alpinelinux.org/alpine-devel/6271.html&gt;

It's done by adding armv7 next to armhf in the arch line and also
!armv7 where the arch line said !armhf. The following script was used:
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This makes it possible to provide armv7 as additional architecture in
Alpine, next to armhf. See the discussion in this ML thread:
&lt;https://lists.alpinelinux.org/alpine-devel/6271.html&gt;

It's done by adding armv7 next to armhf in the arch line and also
!armv7 where the arch line said !armhf. The following script was used:
</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/icingaweb2-module-generictts: uses php7, no longer php5</title>
<updated>2017-09-25T14:34:43+00:00</updated>
<author>
<name>Francesco Colista</name>
<email>fcolista@alpinelinux.org</email>
</author>
<published>2017-09-25T14:34:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=2fb6d95056e04ce8fb30cd5484fec2856581af9b'/>
<id>2fb6d95056e04ce8fb30cd5484fec2856581af9b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>testing/[various]: fix trailing whitespace</title>
<updated>2017-07-10T09:05:20+00:00</updated>
<author>
<name>tmpfile</name>
<email>tmpfile@users.noreply.github.com</email>
</author>
<published>2017-07-08T19:36:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=77f6dfa1268698df57721eecd7f41f2be1f632f0'/>
<id>77f6dfa1268698df57721eecd7f41f2be1f632f0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>testing/icingaweb2-module-*: enable build on ppc64le</title>
<updated>2017-06-16T13:45:53+00:00</updated>
<author>
<name>Roberto Oliveira</name>
<email>robertoguimaraes8@gmail.com</email>
</author>
<published>2017-06-14T20:29:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=1707452f9eceb9be166ac1f5cbc758847248d391'/>
<id>1707452f9eceb9be166ac1f5cbc758847248d391</id>
<content type='text'>
enabling packages icingaweb2-module-pnp, icingaweb2-module-fileshipper and
icingaweb2-module-generictts as icingaweb2-module-director builds on ppc64le.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
enabling packages icingaweb2-module-pnp, icingaweb2-module-fileshipper and
icingaweb2-module-generictts as icingaweb2-module-director builds on ppc64le.
</pre>
</div>
</content>
</entry>
<entry>
<title>testing/icingaweb2-*: Does not compile on ppc64le</title>
<updated>2017-04-27T17:46:47+00:00</updated>
<author>
<name>Breno Leitao</name>
<email>breno.leitao@gmail.com</email>
</author>
<published>2017-04-27T17:44:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=5dc0d6cc231fda95f26b58fe962a59777d29ff98'/>
<id>5dc0d6cc231fda95f26b58fe962a59777d29ff98</id>
<content type='text'>
Icinga2 is not available on ppc64le yet. Disabling the packages that
depend on it.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Icinga2 is not available on ppc64le yet. Disabling the packages that
depend on it.
</pre>
</div>
</content>
</entry>
<entry>
<title>testing/icingaweb2-module-generictts: disabled armhf build</title>
<updated>2017-02-09T08:00:28+00:00</updated>
<author>
<name>Francesco Colista</name>
<email>fcolista@alpinelinux.org</email>
</author>
<published>2017-02-09T08:00:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=a26acd53e9becc572d8b189496ff9183c26ba3ae'/>
<id>a26acd53e9becc572d8b189496ff9183c26ba3ae</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
