<feed xmlns='http://www.w3.org/2005/Atom'>
<title>kunkku/aports/testing/libcypher-parser, branch cross</title>
<subtitle>kunkku's aports repo
</subtitle>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/user/kunkku/aports/'/>
<entry>
<title>testing/libcypher-parser: modernize</title>
<updated>2018-02-06T16:04:14+00:00</updated>
<author>
<name>Timo Teräs</name>
<email>timo.teras@iki.fi</email>
</author>
<published>2018-02-06T16:04:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/user/kunkku/aports/commit/?id=4ce0e9375ef56045324d6c2d72fbfb25dcd05cfc'/>
<id>4ce0e9375ef56045324d6c2d72fbfb25dcd05cfc</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>testing/libcypher-parser: update to version 0.6.0</title>
<updated>2018-02-06T16:04:14+00:00</updated>
<author>
<name>Chris Leishman</name>
<email>chris@leishman.org</email>
</author>
<published>2017-11-14T04:02:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/user/kunkku/aports/commit/?id=329d226ef40efca85df2a038c76d15c5b62a3c74'/>
<id>329d226ef40efca85df2a038c76d15c5b62a3c74</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/user/kunkku/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/libcypher-parser: Do not fail on rmmdir</title>
<updated>2017-04-26T16:35:11+00:00</updated>
<author>
<name>Breno Leitao</name>
<email>breno.leitao@gmail.com</email>
</author>
<published>2017-04-26T16:33:21+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/user/kunkku/aports/commit/?id=4632a8136c06be349b6ecded0ace22efeafd7aae'/>
<id>4632a8136c06be349b6ecded0ace22efeafd7aae</id>
<content type='text'>
As explained in the comments above the rmmdir, the rmmdir should not
fail if it is not empty. As I understand, the directories should only be
removed if they are empty.

Without this change, doc() and lintian() fails and break the build.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
As explained in the comments above the rmmdir, the rmmdir should not
fail if it is not empty. As I understand, the directories should only be
removed if they are empty.

Without this change, doc() and lintian() fails and break the build.
</pre>
</div>
</content>
</entry>
<entry>
<title>testing/libcypher-parser: new aport</title>
<updated>2016-09-22T10:26:16+00:00</updated>
<author>
<name>Chris Leishman</name>
<email>chris@leishman.org</email>
</author>
<published>2016-07-29T13:24:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/user/kunkku/aports/commit/?id=69c2a856eb1d4f1dcf4ffbb6bbcb7bc2e1542149'/>
<id>69c2a856eb1d4f1dcf4ffbb6bbcb7bc2e1542149</id>
<content type='text'>
https://github.com/cleishm/libcypher-parser
Parsing library for the Cypher query language
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/cleishm/libcypher-parser
Parsing library for the Cypher query language
</pre>
</div>
</content>
</entry>
</feed>
