summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* dev-libs/isl: version bump to 0.21.Anthony G. Basile2019-03-272-0/+52
| | | | | Signed-off-by: Anthony G. Basile <blueness@gentoo.org> Package-Manager: Portage-2.3.62, Repoman-2.3.11
* app-office/moneyguru: bump to 3.0.0Virgil Dupras2019-03-272-0/+50
| | | | | Signed-off-by: Virgil Dupras <vdupras@gentoo.org> Package-Manager: Portage-2.3.62, Repoman-2.3.11
* app-office/moneyguru: stable on amd64Virgil Dupras2019-03-271-1/+1
| | | | | Signed-off-by: Virgil Dupras <vdupras@gentoo.org> Package-Manager: Portage-2.3.62, Repoman-2.3.11
* app-office/moneyguru: add upper pytest constraintVirgil Dupras2019-03-272-2/+2
| | | | | | | Tests don't run with newer pytest Signed-off-by: Virgil Dupras <vdupras@gentoo.org> Package-Manager: Portage-2.3.62, Repoman-2.3.11
* net-p2p/syncthing: bump to 1.1.0Marek Szuba2019-03-272-0/+202
| | | | | | | Now with a ginormous list of vendored packages! Signed-off-by: Marek Szuba <marecki@gentoo.org> Package-Manager: Portage-2.3.62, Repoman-2.3.11
* app-doc/eclass-manpages: display @SUPPORTED_EAPISJoonas Niilola2019-03-271-2/+6
| | | | | | | Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Joonas Niilola <juippis@gmail.com> Closes: https://github.com/gentoo/gentoo/pull/11516 Signed-off-by: Michał Górny <mgorny@gentoo.org>
* mail-filter/opendkim: remove some no-op sed lines.Michael Orlitzky2019-03-271-3/+0
| | | | | | | | | Looking through the upstream example config files, I don't see any of the expressions that the "sed" script in src_prepare is supposed to replace. Huh. This commit removes those "sed" commands. Signed-off-by: Michael Orlitzky <mjo@gentoo.org> Package-Manager: Portage-2.3.62, Repoman-2.3.11
* mail-filter/opendkim: add Ralph Seichter and klondike as maintainers.Michael Orlitzky2019-03-271-0/+16
| | | | | | | | These two people expressed interest (on the -dev mailing list) in maintaining this package. Signed-off-by: Michael Orlitzky <mjo@gentoo.org> Package-Manager: Portage-2.3.62, Repoman-2.3.11
* mail-filter/opendkim: use /var/lib/opendkim in pkg_config.Michael Orlitzky2019-03-271-12/+16
| | | | | | | | | | | The keys that are generated by opendkim-genkey are data, in a sense, and not configuration files. As a result, I think it's more appropriate to store them in /var/lib/opendkim than in /etc/opendkim where they were previously stored. This commit moves the keys, and also tightens the permissions on them a bit so that the "opendkim" user can only read them. Signed-off-by: Michael Orlitzky <mjo@gentoo.org> Package-Manager: Portage-2.3.62, Repoman-2.3.11
* mail-filter/opendkim: new revision with a consistent config file.Michael Orlitzky2019-03-271-9/+11
| | | | | | | | | | | The previous revisions installed a variable config file, and only did so conditionally, based on the state of the live filesystem. The new revision always installs the same config file. This should be simpler and more predictable. In addition, the temporary directory "${T}" is now used as "scratch space" while mangling that config file. Signed-off-by: Michael Orlitzky <mjo@gentoo.org> Package-Manager: Portage-2.3.62, Repoman-2.3.11
* mail-filter/opendkim: add a TODO question about a sed line.Michael Orlitzky2019-03-271-2/+2
| | | | | | | | | | | | There's a sed line in src_prepare that messes with some *.lua test files. I've changed the action of that script to use "${T}" rather than "/tmp" for security reasons... but I'm unable to figure out when those test files are actuallty used. So, I've left a TODO comment to figure it out in the future (or maybe just delete that sed line entirely). Signed-off-by: Michael Orlitzky <mjo@gentoo.org> Package-Manager: Portage-2.3.62, Repoman-2.3.11
* mail-filter/opendkim: add an elog about sharing a local socket.Michael Orlitzky2019-03-271-0/+12
| | | | | | | | | | | | Sharing a local OpenDKIM socket with an MTA is far too tricky. This commit adds an elog with some vague hints, but we really need a decent wiki page with some step-by-step instructions. This is progress towards bug 575666, but I won't consider that resolved until we have a wiki page. Bug: https://bugs.gentoo.org/575666 Signed-off-by: Michael Orlitzky <mjo@gentoo.org> Package-Manager: Portage-2.3.62, Repoman-2.3.11
* mail-filter/opendkim: add a trailing slash to the HOMEPAGE.Michael Orlitzky2019-03-271-1/+1
| | | | | Signed-off-by: Michael Orlitzky <mjo@gentoo.org> Package-Manager: Portage-2.3.62, Repoman-2.3.11
* mail-filter/opendkim: new revision to overhaul service scripts.Michael Orlitzky2019-03-276-67/+109
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The OpenRC service script has been largely rewritten in this revision, to solve a number of problems: * The PID file is now stored securely (bug 629914). * Different PID files are used for multiple instances (bug 536162). * The detection of boolean options in the config file is more robust, allowing "1", "0", "yes", "false", et cetera. * The socket is now located in a conf.d file, rather than parsed from the config file. The service script ensures that the directory containing the socket has the correct permissions, and the conf.d file comes with a big warning to that effect. Note that the (commented- out) example directory IS NOT shared with the PID file. * An error is thrown if we can't remove a stale socket. * Modern OpenRC service script standards have been adopted. Some minor changes have been made to the systemd service for consistency, but none of them have been tested. More work needs to be done here anyway; for example, we most likely want a tmpfiles.d entry for the local socket directory if the user configures one. This should be documented in opendkim.service.conf, and tested by someone who uses systemd. Closes: https://bugs.gentoo.org/536162 Bug: https://bugs.gentoo.org/629914 Signed-off-by: Michael Orlitzky <mjo@gentoo.org> Package-Manager: Portage-2.3.62, Repoman-2.3.11
* mail-filter/opendkim: combine two neighboring sed expressions.Michael Orlitzky2019-03-271-2/+3
| | | | | Signed-off-by: Michael Orlitzky <mjo@gentoo.org> Package-Manager: Portage-2.3.62, Repoman-2.3.11
* mail-filter/opendkim: remove two commented econf lines.Michael Orlitzky2019-03-271-2/+0
| | | | | Signed-off-by: Michael Orlitzky <mjo@gentoo.org> Package-Manager: Portage-2.3.62, Repoman-2.3.11
* mail-filter/opendkim: simplify and shorten the DESCRIPTION.Michael Orlitzky2019-03-271-1/+1
| | | | | Signed-off-by: Michael Orlitzky <mjo@gentoo.org> Package-Manager: Portage-2.3.62, Repoman-2.3.11
* mail-filter/opendkim: new revision with a dedicated "opendkim" user.Michael Orlitzky2019-03-273-15/+92
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Prior to this revision, the OpenDKIM daemon would run as the "milter" user, which is a username shared by a few other related packages. However, that user has the ability to read your private DKIM signing keys, and no other services should have access to those. Thus, sharing the user account creates a security risk. In the new revision, a dedicated "opendkim" user is created for the OpenDKIM daemon. The configuration, OpenRC service script, and systemd service files have all been updated with the new user name. In addition, the permissions on /var/lib/opendkim have been tightened so members of the "opendkim" group can only read it by default. The daemon does not need to modify your keys, in particular, and should not be able to. One downside to this is that the "Statistics" configuration directive that was enabled by default with USE=berkdb will no longer work out-of-the-box. It will still work, but the administrator will need to grant write access to the file that he designates for the statistics data. But since it won't work without some extra fiddling, it has been removed from the configuration file that we install. An ewarn notifies users who are upgrading of the account name change. Closes: https://bugs.gentoo.org/629888 Signed-off-by: Michael Orlitzky <mjo@gentoo.org> Package-Manager: Portage-2.3.62, Repoman-2.3.11
* mail-filter/opendkim: remove dangerous elog suggesting "umask 000".Michael Orlitzky2019-03-271-4/+0
| | | | | Signed-off-by: Michael Orlitzky <mjo@gentoo.org> Package-Manager: Portage-2.3.62, Repoman-2.3.11
* mail-filter/opendkim: new revision to fix a dodir->keepdir usage.Michael Orlitzky2019-03-271-1/+2
| | | | | | | | | | The data directory /var/lib/opendkim is installed empty by default, and therefore needs to be created with keepdir (and not dodir). This changes the installed image, and thus is cause for a new revision. Closes: https://bugs.gentoo.org/666334 Signed-off-by: Michael Orlitzky <mjo@gentoo.org> Package-Manager: Portage-2.3.62, Repoman-2.3.11
* mail-filter/opendkim: add GPL-2 to LICENSE for OpenRC service script.Michael Orlitzky2019-03-271-1/+2
| | | | | | | | | | Our init script is a critical out-of-tree piece of code that gets installed, and it's licensed GPL-2. So, we should include that in the LICENSE variable for the package. Closes: https://bugs.gentoo.org/425960 Signed-off-by: Michael Orlitzky <mjo@gentoo.org> Package-Manager: Portage-2.3.62, Repoman-2.3.11
* mail-filter/opendkim: remove commented code at top of -r4 ebuild.Michael Orlitzky2019-03-271-10/+5
| | | | | | | | | | There were a few commented variables at the top of the -r4 ebuild that were used for beta releases. However, this package hasn't seen a release in three years -- much less a beta release -- so I think they're just wasting space at this point. Signed-off-by: Michael Orlitzky <mjo@gentoo.org> Package-Manager: Portage-2.3.62, Repoman-2.3.11
* mail-filter/opendkim: add myself as a maintainer; whitespace cleanup.Michael Orlitzky2019-03-271-27/+46
| | | | | Signed-off-by: Michael Orlitzky <mjo@gentoo.org> Package-Manager: Portage-2.3.62, Repoman-2.3.11
* app-editors/sublime-text: bumpRick Farina2019-03-272-5/+5
| | | | | | | drop old Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Rick Farina <zerochaos@gentoo.org>
* games-util/lutris: Fixed source dir in live ebuild.Lars Wendler2019-03-272-4/+3
| | | | | | | Thanks-to: Ren Greco <atosser@linuxmail.org> Closes: https://bugs.gentoo.org/680286 Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
* virtual/mta: add myself as maintainerMikle Kolyada2019-03-271-1/+4
| | | | | Signed-off-by: Mikle Kolyada <zlogene@gentoo.org> Package-Manager: Portage-2.3.62, Repoman-2.3.11
* dev-util/cutter: bumpRick Farina2019-03-273-0/+93
| | | | | | | | | roughly seems to work, messages during build claim python support is disabled but it appears to link to python anyway so probably just need to patch the message if anyone cares Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Rick Farina <zerochaos@gentoo.org>
* dev-util/ninka: Initial import.Ulrich Müller2019-03-275-0/+105
| | | | | | | Ebuild contributed by me. Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Ulrich Müller <ulm@gentoo.org>
* app-accessibility/brltty: Fixed installation with USE="-api"Lars Wendler2019-03-271-4/+6
| | | | | Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
* app-accessibility/brltty: Revbump for various fixesLars Wendler2019-03-272-26/+47
| | | | | | | | | | | - Fixed build with USE="java" - Added "louis", "policykit", "systemd" and "xml" USE flags - Added various missing dependencies - Improved python build handling Closes: https://bugs.gentoo.org/681644 Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
* media-radio/fsync-mdc1200-decode: initial commitRick Farina2019-03-272-0/+49
| | | | | | | | this tool decodes fsync and mdc1200 data transmissions in analog radio streams Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Rick Farina <zerochaos@gentoo.org>
* net-wireless/uhd: version bumpRick Farina2019-03-272-0/+132
| | | | | Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Rick Farina <zerochaos@gentoo.org>
* net-misc/openvswitch: depend on util-linux[caps]Matthew Thode2019-03-271-0/+143
| | | | | | Fixes: https://bugs.gentoo.org/681852 Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Matthew Thode <prometheanfire@gentoo.org>
* www-client/vivaldi: Drop gnome2-utils.eclassJeroen Roovers2019-03-271-7/+3
| | | | | Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Jeroen Roovers <jer@gentoo.org>
* www-client/vivaldi-snapshot: Version 2.5.1497.4_p1Jeroen Roovers2019-03-272-0/+120
| | | | | Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Jeroen Roovers <jer@gentoo.org>
* mail-filter/postfwd: added new version 2.00Marc Schiffbauer2019-03-275-0/+154
| | | | | Signed-off-by: Marc Schiffbauer <mschiff@gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11
* net-analyzer/netdata: Remove versions with HTML Injection VulnerabilityCraig Andrews2019-03-277-683/+0
| | | | | | Closes: https://bugs.gentoo.org/680518 Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Craig Andrews <candrews@gentoo.org>
* dev-util/scons: Bump to 3.0.5Michał Górny2019-03-272-0/+78
| | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
* sys-kernel/gentoo-sources: Linux patch 5.0.5 and updated netfilter patchMike Pagano2019-03-272-0/+31
| | | | | | | | | Update of netfilter patch thanks to kerfamil Updated patch: netfilter: nf_tables: fix set double-free in abort path Signed-off-by: Mike Pagano <mpagano@gentoo.org> Package-Manager: Portage-2.3.62, Repoman-2.3.11
* sys-kernel/gentoo-sources: Linux patch 4.19.32Mike Pagano2019-03-272-0/+31
| | | | | Signed-off-by: Mike Pagano <mpagano@gentoo.org> Package-Manager: Portage-2.3.62, Repoman-2.3.11
* sys-kernel/gentoo-sources: Linux patch 4.14.109Mike Pagano2019-03-272-0/+31
| | | | | Signed-off-by: Mike Pagano <mpagano@gentoo.org> Package-Manager: Portage-2.3.62, Repoman-2.3.11
* sys-kernel/gentoo-sources: Linuxpatch 4.9.166Mike Pagano2019-03-272-0/+31
| | | | | Signed-off-by: Mike Pagano <mpagano@gentoo.org> Package-Manager: Portage-2.3.62, Repoman-2.3.11
* net-misc/cmst: take package & version bump itBen Kohler2019-03-273-3/+48
| | | | | | Closes: https://bugs.gentoo.org/681796 Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Ben Kohler <bkohler@gentoo.org>
* net-libs/gnutls: version bumpAlon Bar-Lev2019-03-272-0/+128
| | | | | Signed-off-by: Alon Bar-Lev <alonbl@gentoo.org> Package-Manager: Portage-2.3.62, Repoman-2.3.11
* www-client/vivaldi-snapshot: OldJeroen Roovers2019-03-273-246/+0
| | | | | Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Jeroen Roovers <jer@gentoo.org>
* www-client/vivaldi: Version 2.4.1488.35_p1Jeroen Roovers2019-03-272-0/+131
| | | | | Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Jeroen Roovers <jer@gentoo.org>
* www-client/opera-developer: OldJeroen Roovers2019-03-273-234/+0
| | | | | Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Jeroen Roovers <jer@gentoo.org>
* www-client/opera-developer: Version 61.0.3268.0Jeroen Roovers2019-03-272-0/+117
| | | | | Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Jeroen Roovers <jer@gentoo.org>
* dev-ros/rosbag: add missing python crypto depsAlexis Ballier2019-03-272-2/+6
| | | | | Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Alexis Ballier <aballier@gentoo.org>
* dev-ros/rosbag: Remove oldAlexis Ballier2019-03-274-105/+0
| | | | | Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Alexis Ballier <aballier@gentoo.org>