<feed xmlns='http://www.w3.org/2005/Atom'>
<title>aports/main/tinyproxy, branch master</title>
<subtitle>Main aports tree
</subtitle>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/'/>
<entry>
<title>main/tinyproxy: modernize</title>
<updated>2020-04-05T03:02:39+00:00</updated>
<author>
<name>Leo</name>
<email>thinkabit.ukim@gmail.com</email>
</author>
<published>2020-04-05T03:02:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=3140fed978dd41e5db5fa9325a8e49bb88fa4676'/>
<id>3140fed978dd41e5db5fa9325a8e49bb88fa4676</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>main/tinyproxy: modernize, update initd script, and split -openrc</title>
<updated>2019-02-25T15:48:25+00:00</updated>
<author>
<name>Natanael Copa</name>
<email>ncopa@alpinelinux.org</email>
</author>
<published>2019-02-25T15:46:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=9ef271222a39b2517ec59ed5aea47e34ee09f0a7'/>
<id>9ef271222a39b2517ec59ed5aea47e34ee09f0a7</id>
<content type='text'>
- modernize APKBUILD
- import updated initd script from Gentoo
- use /run instead of /var/run
- split -openrc subpackage
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- modernize APKBUILD
- import updated initd script from Gentoo
- use /run instead of /var/run
- split -openrc subpackage
</pre>
</div>
</content>
</entry>
<entry>
<title>main/tinyproxy: fix conf location and openrc script</title>
<updated>2019-02-25T14:44:48+00:00</updated>
<author>
<name>Natanael Copa</name>
<email>ncopa@alpinelinux.org</email>
</author>
<published>2019-02-25T14:43:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=739e583bc83d5e15a213056d062c7acee49a1eb7'/>
<id>739e583bc83d5e15a213056d062c7acee49a1eb7</id>
<content type='text'>
ref #9973
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
ref #9973
</pre>
</div>
</content>
</entry>
<entry>
<title>main/tinyproxy: upgrade to 1.10</title>
<updated>2018-10-11T11:40:35+00:00</updated>
<author>
<name>Michael Mason</name>
<email>ms13sp@gmail.com</email>
</author>
<published>2018-10-02T14:14:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=0a823ee01079a0fcc8561292dd0c03a9b4d61958'/>
<id>0a823ee01079a0fcc8561292dd0c03a9b4d61958</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/tinyproxy: enable support for reverse proxy</title>
<updated>2017-05-11T00:19:49+00:00</updated>
<author>
<name>Ricardo Salveti</name>
<email>rsalveti@rsalveti.net</email>
</author>
<published>2017-05-10T03:13:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=37f6f3763e1fa9bc952eca6720924f097f8e4f9c'/>
<id>37f6f3763e1fa9bc952eca6720924f097f8e4f9c</id>
<content type='text'>
No external dependency needed, but not enabled by default.

Signed-off-by: Ricardo Salveti &lt;rsalveti@rsalveti.net&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
No external dependency needed, but not enabled by default.

Signed-off-by: Ricardo Salveti &lt;rsalveti@rsalveti.net&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>main/[various]: bump pkgrel for pre-install fixes</title>
<updated>2016-04-25T07:11:16+00:00</updated>
<author>
<name>Przemyslaw Pawelczyk</name>
<email>przemoc@zoho.com</email>
</author>
<published>2016-04-22T23:11:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=0f920d3abed21639fb843e30ebb8ef914bcf7278'/>
<id>0f920d3abed21639fb843e30ebb8ef914bcf7278</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Reorder arguments passed to addgroup/adduser in scripts.</title>
<updated>2016-04-25T06:56:47+00:00</updated>
<author>
<name>Przemyslaw Pawelczyk</name>
<email>przemoc@zoho.com</email>
</author>
<published>2016-04-23T11:13:41+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=da4e96aacef5e9bd9a7dccecffdc92f588a6dd78'/>
<id>da4e96aacef5e9bd9a7dccecffdc92f588a6dd78</id>
<content type='text'>
Now all invocations have following order of arguments (if present):

    addgroup -S -g ... GROUP
    adduser -S -u ... -D -H -h ... -s ... -G ... -g ... USER
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Now all invocations have following order of arguments (if present):

    addgroup -S -g ... GROUP
    adduser -S -u ... -D -H -h ... -s ... -G ... -g ... USER
</pre>
</div>
</content>
</entry>
<entry>
<title>main/*: replace all sbin/runscript with sbin/openrc-run</title>
<updated>2015-04-28T14:34:51+00:00</updated>
<author>
<name>Natanael Copa</name>
<email>ncopa@alpinelinux.org</email>
</author>
<published>2015-04-28T14:34:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=6bf81f56e8c0b362d9c5ed046d9a8cdb81d5d957'/>
<id>6bf81f56e8c0b362d9c5ed046d9a8cdb81d5d957</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>main/tinyproxy: upgrade to 1.8.4</title>
<updated>2015-04-13T06:23:26+00:00</updated>
<author>
<name>Natanael Copa</name>
<email>ncopa@alpinelinux.org</email>
</author>
<published>2015-04-13T06:23:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=830c037b3a71c59ed94c60f7b125c54e58707db2'/>
<id>830c037b3a71c59ed94c60f7b125c54e58707db2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
