[gentoo-dev] Packages up for grabs: app-dicts/myspell-lv

2018-08-08 Thread Jonas Stein
Dear all, The following packages are up for grabs: app-dicts/myspell-lv after retirement of the proxied maintainer. https://packages.gentoo.org/packages/app-dicts/myspell-lv The ebuild needs an EAPI bump and stabilization of the last release. -- Best, Jonas

[gentoo-dev] Packages up for grabs

2018-08-08 Thread Manuel Rüger
Hi, it looks like parts of the Gentoo project and I don't share the same values anymore. Therefore, I currently don't know if I want to continue contributing and am looking for new maintainers for the following packages: app-admin/docker-bench app-admin/dxf app-admin/go-updater app-admin/helm app

[gentoo-dev] [PATCH 1/5] media-plugins/vdr-live: Replace unnecessary path_exists calls

2018-08-08 Thread Michał Górny
Replace the unnecessary path_exists calls with plain bash -f test. The path_exists function was only intended to be used when necessary to deal with wildcards. Bug: https://bugs.gentoo.org/662178 --- media-plugins/vdr-live/vdr-live-0.3.0_p20130504-r1.ebuild | 2 +- media-plugins/vdr-live/vdr-live

[gentoo-dev] [PATCH 2/5] media-plugins/vdr-vdrmanager: Replace unnecessary path_exists call

2018-08-08 Thread Michał Górny
Replace the unnecessary path_exists calls with plain bash -f test. The path_exists function was only intended to be used when necessary to deal with wildcards. Closes: https://bugs.gentoo.org/662178 --- media-plugins/vdr-vdrmanager/vdr-vdrmanager-0.14.ebuild | 2 +- 1 file changed, 1 insertion(+)

[gentoo-dev] [PATCH 3/5] net-vpn/openvpn: Remove unnecessary option switch to path_exists

2018-08-08 Thread Michał Górny
The option switch is meaningless for this path_exists call, so remove it and stay with the implicit default. --- net-vpn/openvpn/openvpn-2.4.4.ebuild | 2 +- net-vpn/openvpn/openvpn-2.4.5.ebuild | 2 +- net-vpn/openvpn/openvpn-2.4.6.ebuild | 2 +- net-vpn/openvpn/openvpn-.ebuild | 2 +- 4 fil

[gentoo-dev] [PATCH 4/5] sys-apps/openrc: Remove unnecessary option switch to path_exists

2018-08-08 Thread Michał Górny
The option switch is meaningless for this path_exists call, so remove it and stay with the implicit default. --- sys-apps/openrc/openrc-0.34.11.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys-apps/openrc/openrc-0.34.11.ebuild b/sys-apps/openrc/openrc-0.34.11.ebuild

[gentoo-dev] [PATCH 5/5] eutils.eclass: Restore the original path_exists function

2018-08-08 Thread Michał Górny
The original path_exists function as submitted by me was a trivial function to facilitate for file existence checks with wildcards. However, its purpose was defeated by meaningless featurism. As a result, half of the current uses was entirely mistaken (it's *not* a replacement for trivial -e/-f tes

Re: [gentoo-dev] [PATCH 5/5] eutils.eclass: Restore the original path_exists function

2018-08-08 Thread Ulrich Mueller
> On Wed, 8 Aug 2018, Michał Górny wrote: > Alternatively, we could remove the function entirely and inline its > use in the three packages that need it. Sounds like a better plan. Removing the options is an incompatible change anyway, so maybe removing the function would be a cleaner solutio

[gentoo-dev] Package up for grabs: dev-db/couchdb

2018-08-08 Thread Dirkjan Ochtman
While I have maintained this for a long time, I've been unhappy with upstream since they released 2.x with no proper Unix build system (there have also been a number of bundled dependencies that I have been unable to move them off of). There is a newly released remote code execution vulnerability,

Re: [gentoo-dev] [PATCH 5/5] eutils.eclass: Restore the original path_exists function

2018-08-08 Thread M. J. Everitt
On 08/08/18 22:34, Michał Górny wrote [excerpted]: > +# Example: > +# @CODE > +# if path_exists "${ROOT}"/etc/foo.d/*.conf; then > +# do_something > +# fi > +# @CODE > path_exists() { > - local opt=$1 > - [[ ${opt} == -[ao] ]] && shift || opt="-a" > - > - # no paths -> return false >