<feed xmlns='http://www.w3.org/2005/Atom'>
<title>aports/testing/softhsm/APKBUILD, branch 3.8-stable</title>
<subtitle>Main aports tree
</subtitle>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/'/>
<entry>
<title>testing/softhsm: enable armhf</title>
<updated>2018-04-23T20:45:51+00:00</updated>
<author>
<name>tcely</name>
<email>tcely@users.noreply.github.com</email>
</author>
<published>2018-04-19T16:14:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=f1fd3c651ec9c6b10a4626a49fb730e196c74344'/>
<id>f1fd3c651ec9c6b10a4626a49fb730e196c74344</id>
<content type='text'>
Revert 9d13149200e831719789924508249cc07699f652.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Revert 9d13149200e831719789924508249cc07699f652.</pre>
</div>
</content>
</entry>
<entry>
<title>testing/softhsm: disable on armhf due to botan dep</title>
<updated>2018-04-18T13:25:17+00:00</updated>
<author>
<name>Natanael Copa</name>
<email>ncopa@alpinelinux.org</email>
</author>
<published>2018-04-18T13:23:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=9d13149200e831719789924508249cc07699f652'/>
<id>9d13149200e831719789924508249cc07699f652</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>testing/softhsm: fix test failure on x86</title>
<updated>2018-04-13T05:15:15+00:00</updated>
<author>
<name>tcely</name>
<email>tcely@users.noreply.github.com</email>
</author>
<published>2018-04-13T04:04:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=c8bd77645ac5d34ac80c0b76da0d9582cb19f2ed'/>
<id>c8bd77645ac5d34ac80c0b76da0d9582cb19f2ed</id>
<content type='text'>
The conversion of an int to long long for some reason caused this test
failure. Why this is not also a problem on x86_64 is still a mystery to me.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The conversion of an int to long long for some reason caused this test
failure. Why this is not also a problem on x86_64 is still a mystery to me.
</pre>
</div>
</content>
</entry>
<entry>
<title>testing/softhsm: upgrade to 2.4.0</title>
<updated>2018-04-10T11:53:33+00:00</updated>
<author>
<name>tcely</name>
<email>tcely@users.noreply.github.com</email>
</author>
<published>2018-04-10T08:02:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=92b80c581fad790ccae50c8f27f850f6e46cd428'/>
<id>92b80c581fad790ccae50c8f27f850f6e46cd428</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>testing/softhsm: rebuild against libressl-2.7</title>
<updated>2018-04-06T05:19:30+00:00</updated>
<author>
<name>Natanael Copa</name>
<email>ncopa@alpinelinux.org</email>
</author>
<published>2018-04-05T20:20:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=31fa66de274477218a69da100ea64fd591199e6f'/>
<id>31fa66de274477218a69da100ea64fd591199e6f</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]: rebuild against libressl-2.6</title>
<updated>2017-11-10T16:14:35+00:00</updated>
<author>
<name>Natanael Copa</name>
<email>ncopa@alpinelinux.org</email>
</author>
<published>2017-11-09T20:05:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=e38d407f1156c45a0c83d740aef9a2e6d078bc9c'/>
<id>e38d407f1156c45a0c83d740aef9a2e6d078bc9c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>testing/softhsm: new aport</title>
<updated>2017-09-03T02:05:40+00:00</updated>
<author>
<name>Frank Felhoffer</name>
<email>silveraid@hackme.ca</email>
</author>
<published>2017-08-15T19:26:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=147cd562d9c1d94d4c3e52c634c265b32b8a2e49'/>
<id>147cd562d9c1d94d4c3e52c634c265b32b8a2e49</id>
<content type='text'>
http://www.softhsm.org/
cryptographic store accessible through a PKCS #11
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
http://www.softhsm.org/
cryptographic store accessible through a PKCS #11
</pre>
</div>
</content>
</entry>
</feed>
