[gentoo-commits] repo/gentoo:master commit in: dev-php/PEAR-PEAR/files/

2017-12-03 Thread Michael Orlitzky
commit: d15763a8ba18725ec926165ab793ef3bf92cc3c5
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sun Dec  3 08:37:40 2017 +
Commit: Michael Orlitzky  gentoo  org>
CommitDate: Sun Dec  3 14:39:14 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d15763a8

dev-php/PEAR-PEAR: remove unused patch

Signed-off-by: Michael Orlitzky  gentoo.org>

 .../files/gentoo-libtool-mismatch-fix.patch| 31 --
 1 file changed, 31 deletions(-)

diff --git a/dev-php/PEAR-PEAR/files/gentoo-libtool-mismatch-fix.patch 
b/dev-php/PEAR-PEAR/files/gentoo-libtool-mismatch-fix.patch
deleted file mode 100644
index 53a33b833f7..000
--- a/dev-php/PEAR-PEAR/files/gentoo-libtool-mismatch-fix.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-Fixed libtool mismatch issues. 
-Gentoo bug: 344605
-
-*** PEAR/Builder.php.old   Mon Nov  8 16:22:52 2010
 PEAR/Builder.php   Mon Nov  8 16:20:22 2010
-***
-*** 326,331 
 326,336 
-  }
-  // }}} end of interactive part
-  
-+  if (file_exists('aclocal.m4')) {
-+  $this->_runCommand('rm aclocal.m4');
-+  $this->_runCommand('autoreconf');
-+  }
-+ 
-  // FIXME make configurable
-  if(!$user=getenv('USER')){
-  $user='defaultuser';
-***
-*** 471,474 
-  }
-  return PEAR_Common::log($level, $msg);
-  }
-! }
-\ No newline at end of file
 476,479 
-  }
-  return PEAR_Common::log($level, $msg);
-  }
-! }



[gentoo-commits] repo/gentoo:master commit in: net-mail/mu/

2017-12-03 Thread Pacho Ramos
commit: 9e1d5b3b8a869b7b5ecc76f69246d6f7e58b580a
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sun Dec  3 14:53:22 2017 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sun Dec  3 14:54:13 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e1d5b3b

net-mail/mu: Disable optional GUI support as it requires an obsolete and 
vulnerable webkit-gtk slot (#625846)

Package-Manager: Portage-2.3.16, Repoman-2.3.6

 net-mail/mu/mu-0.9.18-r2.ebuild | 78 +
 1 file changed, 78 insertions(+)

diff --git a/net-mail/mu/mu-0.9.18-r2.ebuild b/net-mail/mu/mu-0.9.18-r2.ebuild
new file mode 100644
index 000..a4ac8770cf9
--- /dev/null
+++ b/net-mail/mu/mu-0.9.18-r2.ebuild
@@ -0,0 +1,78 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit autotools elisp-common
+
+DESCRIPTION="Set of tools to deal with Maildirs, in particular, searching and 
indexing"
+HOMEPAGE="http://www.djcbsoftware.nl/code/mu/;
+SRC_URI="https://github.com/djcb/mu/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="emacs"
+
+# net-mail/mailutils also installes /usr/bin/mu.  Block it until somebody
+# really wants both installed at the same time.
+DEPEND="
+   dev-libs/gmime:2.6
+   dev-libs/xapian
+   dev-libs/glib:2
+   emacs? ( >=virtual/emacs-23 )
+   !net-mail/mailutils"
+RDEPEND="${DEPEND}"
+
+SITEFILE="70mu-gentoo.el"
+
+src_prepare() {
+   default
+   eautoreconf
+}
+
+src_configure() {
+   # Todo: Make a guile USE-flag as soon as >=guile-2 is avaiable
+   # Note: --disable-silent-rules is included in EAPI-5
+   econf --disable-guile \
+   --disable-gtk \
+   --disable-webkit \
+   $(use_enable emacs mu4e)
+}
+
+src_install () {
+   dobin mu/mu
+   dodoc AUTHORS HACKING NEWS NEWS.org TODO README README.org ChangeLog
+   if use emacs; then
+   elisp-install ${PN} mu4e/*.el mu4e/*.elc
+   elisp-site-file-install "${FILESDIR}/${SITEFILE}"
+   doinfo mu4e/mu4e.info
+   fi
+   # TODO: Add guile man page when guile-2 is available.
+   doman man/mu-add.1 man/mu-bookmarks.5 man/mu-cfind.1 man/mu-easy.1 \
+ man/mu-extract.1 man/mu-find.1 man/mu-help.1 man/mu-index.1 \
+ man/mu-mkdir.1 man/mu-remove.1 man/mu-server.1 
man/mu-verify.1 \
+ man/mu-view.1 man/mu.1
+}
+
+src_test () {
+   # Note: Fails with parallel make
+   emake -j1 check
+}
+
+pkg_postinst() {
+   if use emacs; then
+   einfo "To use mu4e you need to configure it in your .emacs file"
+   einfo "See the manual for more information:"
+   einfo "http://www.djcbsoftware.nl/code/mu/mu4e/;
+   fi
+
+   elog "If you upgrade from an older major version,"
+   elog "then you need to rebuild your mail index."
+
+   use emacs && elisp-site-regen
+}
+
+pkg_postrm() {
+   use emacs && elisp-site-regen
+}



[gentoo-commits] repo/gentoo:master commit in: mail-client/claws-mail/

2017-12-03 Thread Pacho Ramos
commit: cf4465e72767ac965d256bfae135802913231f6b
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sun Dec  3 14:47:40 2017 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sun Dec  3 14:54:11 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf4465e7

mail-client/claws-mail: amd64 stable, bug #625826

Package-Manager: Portage-2.3.16, Repoman-2.3.6

 mail-client/claws-mail/Manifest| 2 +-
 mail-client/claws-mail/claws-mail-3.15.0-r2.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/mail-client/claws-mail/Manifest b/mail-client/claws-mail/Manifest
index 1a61f452ef5..577669d26c0 100644
--- a/mail-client/claws-mail/Manifest
+++ b/mail-client/claws-mail/Manifest
@@ -1,4 +1,4 @@
 DIST claws-mail-3.13.2.tar.xz 5582600 SHA256 
6a731052814b3284abeca1662d47817a86e018bc7123ab428f015f0cfab40ad1 SHA512 
7356a4286fc76e215746de846f412e80b4d21c3be90ac8edd7719be2874569f953ce5c094e4a20b0c467db994d710135fc14bcb01f8fb4e947bf7d1666261ea3
 WHIRLPOOL 
ec64d157fffd7be2849c92209cf3a5cc29935fa60a9061577c1b0bbcdac28b51f800c731ebf5f9598bc34f56ee9815adddfb5691f5faa81c92252bd182ab5120
 DIST claws-mail-3.14.1.tar.xz 5812444 SHA256 
b79a1dc04f0b3d1f693e84d7fa7282f140fb5280179281445a8b954ce423c335 SHA512 
ee1653ebd14b8aee76e97ce81ec203e0beeea7074eba0aa34c69bceb0a80135cdb16e508009cb479047d5112abd7eaa4bdb7e46722f33a88419fb24eeb75ac30
 WHIRLPOOL 
ae5f6296f6f56c7dd8683efa68f3d688d806a5f5da576147ad4e685d16def294c6a5f2e1bca18e137995bed2dffad1e2fd2fcfb990a96d68950eb38c96640e13
-DIST claws-mail-3.15.0.tar.xz 5665648 SHA256 
4e4d2d0d43f8ae3d4623408612f5979e9a697ccbc12038b80dd27802e868dc2e SHA512 
667cb0ea2f7c5d8e8b6046313ed7698c378f504caeeaa54348ba228317538dfc040e4ddf80f4aaa1491858a7803954e89599b1e479febe7cf1ab4bae5a638dc8
 WHIRLPOOL 
18c041a770a14c9f5c87d086965b302e2ced8aee8954ed6e3d7934ce011053b7dca8ee13958dc4485172344d70fc0facbf10cc7e62ea8f8feadbd12ba4980cb4
+DIST claws-mail-3.15.0.tar.xz 5665648 BLAKE2B 
f25356372b65f2df072eb2774fca87514c2da59811e78650e26ae58c1b518e229cba62cf1b0d0ad72107e292c9d87450f7d2508c02f34c5c9c70d944f9866823
 SHA512 
667cb0ea2f7c5d8e8b6046313ed7698c378f504caeeaa54348ba228317538dfc040e4ddf80f4aaa1491858a7803954e89599b1e479febe7cf1ab4bae5a638dc8
 DIST claws-mail-3.15.1.tar.xz 5665468 SHA256 
8d093c2f32db863c1141d56e35424c04ee48fe5d6adf4c7f349f647fa3149542 SHA512 
3ab2bc75571b9a71b11ee3f7fe4773ff7b17132f29e6637aa7b7b9a7f8ed125430ee7e5ab5c9842463d776a96be150d7c8e1e3d682b955dd582a6a6ce68c
 WHIRLPOOL 
85f96c421954f7b1e28a301dcfd074b316be2e221936d04c11552eec2897e7f46389df29bbca04f68c052f8ce971b5ff85e2882b9372d838e429724f9dee51be

diff --git a/mail-client/claws-mail/claws-mail-3.15.0-r2.ebuild 
b/mail-client/claws-mail/claws-mail-3.15.0-r2.ebuild
index 7837e6bc4e6..a05c37fefd0 100644
--- a/mail-client/claws-mail/claws-mail-3.15.0-r2.ebuild
+++ b/mail-client/claws-mail/claws-mail-3.15.0-r2.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="http://www.claws-mail.org/download.php?file=releases/${P}.tar.xz;
 
 SLOT="0"
 LICENSE="GPL-3"
-KEYWORDS="alpha ~amd64 ~hppa ~ppc ~ppc64 x86"
+KEYWORDS="alpha amd64 ~hppa ~ppc ~ppc64 x86"
 
 IUSE="archive bogofilter calendar clamav dbus debug doc gdata +gnutls gtk3 
+imap ipv6 ldap +libcanberra +libindicate +libnotify networkmanager nls nntp 
+notification pda pdf perl +pgp python rss session sieve smime spamassassin 
spam-report spell startup-notification svg valgrind xface"
 REQUIRED_USE="libcanberra? ( notification )



[gentoo-commits] repo/gentoo:master commit in: dev-php/composer/

2017-12-03 Thread Michael Orlitzky
commit: 9fc1f071d62c5cc024406a5cc6d336a6f5f6b955
Author: Guillaume Seren  gmail  com>
AuthorDate: Sun Dec  3 12:38:55 2017 +
Commit: Michael Orlitzky  gentoo  org>
CommitDate: Sun Dec  3 15:04:35 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9fc1f071

dev-php/composer: Add version bump 1.5.5

Package-Manager: Portage-2.3.13, Repoman-2.3.3

Closes: https://bugs.gentoo.org/639504

Signed-off-by: Michael Orlitzky  gentoo.org>

 dev-php/composer/Manifest  |  1 +
 dev-php/composer/composer-1.5.5.ebuild | 46 ++
 2 files changed, 47 insertions(+)

diff --git a/dev-php/composer/Manifest b/dev-php/composer/Manifest
index a2e5517ffc4..2be9f23c31d 100644
--- a/dev-php/composer/Manifest
+++ b/dev-php/composer/Manifest
@@ -1 +1,2 @@
 DIST composer-1.5.2.tar.gz 1100976 SHA256 
e8af65669563890364ec73ed57f589b1200f03fd86edc925a9961235aff5f54d SHA512 
929b054dc2742f0043fe82374d0fdcd3ff073fb4fb1dc7eedca0e9a2c90dc00ab11b6a20ab2c549c0429fb3d0836f5590a3970a3bfbde5795fe5a665ea286dbb
 WHIRLPOOL 
05f18eead21dc02a20a274ce4dd11805cd7e95228492a7c17dd8e09d56daa577620f12b68e5983daf6df3b6d952b44ad77d49338692fe05601ca699ac57c0824
+DIST composer-1.5.5.tar.gz 1102418 BLAKE2B 
b8a29ab7473e439d0ff71ba5eb21a63a1c10a3f805c076c3af4f0fd46f5fe7a216085e999d3dd23ca78d769661d1bbfdf04ecf3c353428f6326735ddc564945a
 SHA512 
c1021d1fb5ef992ea16023b982aa8ccdfddf7bce5da0945847ed28c555e795e7d23d4f0892e98d745784ab702e332217ea240ae6297bb18638b5161b6d7c84f0

diff --git a/dev-php/composer/composer-1.5.5.ebuild 
b/dev-php/composer/composer-1.5.5.ebuild
new file mode 100644
index 000..7e9f959246d
--- /dev/null
+++ b/dev-php/composer/composer-1.5.5.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DESCRIPTION="Dependency Manager for PHP"
+HOMEPAGE="https://github.com/composer/composer;
+SRC_URI="${HOMEPAGE}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   dev-lang/php:*[curl]
+   >=dev-php/ca-bundle-1.0.0
+   >=dev-php/cli-prompt-1.0.0
+   >=dev-php/psr-log-1.0.2
+   dev-php/fedora-autoloader
+   >=dev-php/json-schema-3.0.0
+   >=dev-php/jsonlint-1.4.0
+   >=dev-php/phar-utils-1.0.0
+   >=dev-php/semver-1.0.0
+   >=dev-php/spdx-licenses-1.0.0
+   >=dev-php/symfony-console-2.7.9
+   >=dev-php/symfony-filesystem-2.7.20
+   >=dev-php/symfony-finder-2.7.20
+   >=dev-php/symfony-process-2.8.12"
+
+src_install() {
+   insinto "/usr/share/${PN}"
+
+   # Composer expects the LICENSE file to be there, and the
+   # easiest thing to do is to give it what it wants.
+   doins -r src res LICENSE
+
+   insinto "/usr/share/${PN}/vendor"
+   doins "${FILESDIR}"/autoload.php
+
+   exeinto "/usr/share/${PN}/bin"
+   doexe "bin/${PN}"
+   dosym "/usr/share/${PN}/bin/${PN}" "/usr/bin/${PN}"
+
+   dodoc CHANGELOG.md README.md doc/*.md
+   dodoc -r doc/articles doc/faqs
+}



[gentoo-commits] repo/gentoo:master commit in: dev-php/composer/

2017-12-03 Thread Michael Orlitzky
commit: 75baa46b007146eb753e05dc61fe086b57ce885e
Author: Michael Orlitzky  gentoo  org>
AuthorDate: Sun Dec  3 14:48:20 2017 +
Commit: Michael Orlitzky  gentoo  org>
CommitDate: Sun Dec  3 15:04:39 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75baa46b

dev-php/composer: remove unused composer-1.5.2-r1.ebuild.

Package-Manager: Portage-2.3.13, Repoman-2.3.3

 dev-php/composer/Manifest |  1 -
 dev-php/composer/composer-1.5.2-r1.ebuild | 46 ---
 2 files changed, 47 deletions(-)

diff --git a/dev-php/composer/Manifest b/dev-php/composer/Manifest
index 2be9f23c31d..2c4e869c73b 100644
--- a/dev-php/composer/Manifest
+++ b/dev-php/composer/Manifest
@@ -1,2 +1 @@
-DIST composer-1.5.2.tar.gz 1100976 SHA256 
e8af65669563890364ec73ed57f589b1200f03fd86edc925a9961235aff5f54d SHA512 
929b054dc2742f0043fe82374d0fdcd3ff073fb4fb1dc7eedca0e9a2c90dc00ab11b6a20ab2c549c0429fb3d0836f5590a3970a3bfbde5795fe5a665ea286dbb
 WHIRLPOOL 
05f18eead21dc02a20a274ce4dd11805cd7e95228492a7c17dd8e09d56daa577620f12b68e5983daf6df3b6d952b44ad77d49338692fe05601ca699ac57c0824
 DIST composer-1.5.5.tar.gz 1102418 BLAKE2B 
b8a29ab7473e439d0ff71ba5eb21a63a1c10a3f805c076c3af4f0fd46f5fe7a216085e999d3dd23ca78d769661d1bbfdf04ecf3c353428f6326735ddc564945a
 SHA512 
c1021d1fb5ef992ea16023b982aa8ccdfddf7bce5da0945847ed28c555e795e7d23d4f0892e98d745784ab702e332217ea240ae6297bb18638b5161b6d7c84f0

diff --git a/dev-php/composer/composer-1.5.2-r1.ebuild 
b/dev-php/composer/composer-1.5.2-r1.ebuild
deleted file mode 100644
index 7e9f959246d..000
--- a/dev-php/composer/composer-1.5.2-r1.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DESCRIPTION="Dependency Manager for PHP"
-HOMEPAGE="https://github.com/composer/composer;
-SRC_URI="${HOMEPAGE}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="
-   dev-lang/php:*[curl]
-   >=dev-php/ca-bundle-1.0.0
-   >=dev-php/cli-prompt-1.0.0
-   >=dev-php/psr-log-1.0.2
-   dev-php/fedora-autoloader
-   >=dev-php/json-schema-3.0.0
-   >=dev-php/jsonlint-1.4.0
-   >=dev-php/phar-utils-1.0.0
-   >=dev-php/semver-1.0.0
-   >=dev-php/spdx-licenses-1.0.0
-   >=dev-php/symfony-console-2.7.9
-   >=dev-php/symfony-filesystem-2.7.20
-   >=dev-php/symfony-finder-2.7.20
-   >=dev-php/symfony-process-2.8.12"
-
-src_install() {
-   insinto "/usr/share/${PN}"
-
-   # Composer expects the LICENSE file to be there, and the
-   # easiest thing to do is to give it what it wants.
-   doins -r src res LICENSE
-
-   insinto "/usr/share/${PN}/vendor"
-   doins "${FILESDIR}"/autoload.php
-
-   exeinto "/usr/share/${PN}/bin"
-   doexe "bin/${PN}"
-   dosym "/usr/share/${PN}/bin/${PN}" "/usr/bin/${PN}"
-
-   dodoc CHANGELOG.md README.md doc/*.md
-   dodoc -r doc/articles doc/faqs
-}



[gentoo-commits] repo/gentoo:master commit in: app-admin/syslog-ng/files/3.12/, app-admin/syslog-ng/

2017-12-03 Thread Patrice Clement
commit: 6224a15aebc6f09a22681a47e03d93114b9d910a
Author: Tomas Mozes  gmail  com>
AuthorDate: Fri Nov 24 07:17:15 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Dec  3 15:15:16 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6224a15a

app-admin/syslog-ng: version bump to 3.12.1.

Closes: https://bugs.gentoo.org/592920
Closes: https://github.com/gentoo/gentoo/pull/6275
Package-Manager: Portage-2.3.16, Repoman-2.3.6

 app-admin/syslog-ng/Manifest   |   3 +-
 .../syslog-ng/files/3.12/syslog-ng.conf.gentoo |  36 +
 .../files/3.12/syslog-ng.conf.gentoo.fbsd  |  24 
 .../files/3.12/syslog-ng.conf.gentoo.hardened  | 114 
 app-admin/syslog-ng/files/3.12/syslog-ng.confd |  42 ++
 app-admin/syslog-ng/files/3.12/syslog-ng.rc|  58 
 app-admin/syslog-ng/metadata.xml   |   5 +-
 app-admin/syslog-ng/syslog-ng-3.12.1.ebuild| 149 +
 8 files changed, 428 insertions(+), 3 deletions(-)

diff --git a/app-admin/syslog-ng/Manifest b/app-admin/syslog-ng/Manifest
index eb4f5c9341b..282ffeb2b72 100644
--- a/app-admin/syslog-ng/Manifest
+++ b/app-admin/syslog-ng/Manifest
@@ -1 +1,2 @@
-DIST syslog-ng-3.7.3.tar.gz 3511155 SHA256 
49201dcfd59c8992936aa16c694f5e6593d505b44895f6c66b7d7f7895ce2c62 SHA512 
e58d793bd1a8b48c5836090ee244f6e8b223f234f5a27fbf81f6a838b9b1e3e45f73a66dab2bc58a0bba230bd778a247ae22bf529a28fb2e9fee52b8181d304b
 WHIRLPOOL 
ee434b8919183a70f484e6c96246b020a53a42e4306b2dea3b8ec15de71a1ad5be5185f0f3df5da76f0ca68618ff8391806748c6bea4a6844648e0939a57e97a
+DIST syslog-ng-3.12.1.tar.gz 8905646 BLAKE2B 
abe273c561569047ef4ea0b21b08341d207ecc9a37ba88d1aa28f00de8a0c28cab2942b3d461b7b4fea940668b44ceda7f9c71b6f7c7583143f4bf65adb54036
 SHA512 
00370f8b090156c064d9fe932e2aafe3f78ffc01bc47b2bc2f0f3c6cbdf98ea8cc2084317b8c2b1a9755cce404646b20e131039ce55b87e24f4401a55b95ff7e
+DIST syslog-ng-3.7.3.tar.gz 3511155 BLAKE2B 
25ba2ca241a5847c75792c78d39a4667f55cf1fcff46be5102256ee6a9d2f39e2042ac00fa0b1559f94e0df80a0853249692b443b565dd4f46f0354c453cacaf
 SHA512 
e58d793bd1a8b48c5836090ee244f6e8b223f234f5a27fbf81f6a838b9b1e3e45f73a66dab2bc58a0bba230bd778a247ae22bf529a28fb2e9fee52b8181d304b

diff --git a/app-admin/syslog-ng/files/3.12/syslog-ng.conf.gentoo 
b/app-admin/syslog-ng/files/3.12/syslog-ng.conf.gentoo
new file mode 100644
index 000..523a6804e14
--- /dev/null
+++ b/app-admin/syslog-ng/files/3.12/syslog-ng.conf.gentoo
@@ -0,0 +1,36 @@
+@version: 3.12
+#
+# Syslog-ng default configuration file for Gentoo Linux
+
+# https://bugs.gentoo.org/426814
+@include "scl.conf"
+
+options {
+   threaded(yes);
+   chain_hostnames(no);
+
+   # The default action of syslog-ng is to log a STATS line
+   # to the file every 10 minutes.  That's pretty ugly after a while.
+   # Change it to every 12 hours so you get a nice daily update of
+   # how many messages syslog-ng missed (0).
+   stats_freq(43200);
+   # The default action of syslog-ng is to log a MARK line
+   # to the file every 20 minutes.  That's seems high for most
+   # people so turn it down to once an hour.  Set it to zero
+   # if you don't want the functionality at all.
+   mark_freq(3600);
+};
+
+source src { system(); internal(); };
+
+destination messages { file("/var/log/messages"); };
+
+# By default messages are logged to tty12...
+destination console_all { file("/dev/tty12"); };
+# ...if you intend to use /dev/console for programs like xconsole
+# you can comment out the destination line above that references /dev/tty12
+# and uncomment the line below.
+#destination console_all { file("/dev/console"); };
+
+log { source(src); destination(messages); };
+log { source(src); destination(console_all); };

diff --git a/app-admin/syslog-ng/files/3.12/syslog-ng.conf.gentoo.fbsd 
b/app-admin/syslog-ng/files/3.12/syslog-ng.conf.gentoo.fbsd
new file mode 100644
index 000..a0f516c7a58
--- /dev/null
+++ b/app-admin/syslog-ng/files/3.12/syslog-ng.conf.gentoo.fbsd
@@ -0,0 +1,24 @@
+@version: 3.12
+#
+# Syslog-ng default configuration file for Gentoo FreeBSD
+#
+
+# https://bugs.gentoo.org/426814
+@include "scl.conf"
+
+options {
+   threaded(yes);
+   chain_hostnames(no);
+
+   # The default action of syslog-ng is to log a STATS line
+   # to the file every 10 minutes.  That's pretty ugly after a while.
+   # Change it to every 12 hours so you get a nice daily update of
+   # how many messages syslog-ng missed (0).
+   stats_freq(43200);
+};
+
+source src { system(); internal(); };
+
+destination messages { file("/var/log/messages"); };
+
+log { source(src); destination(messages); };

diff --git a/app-admin/syslog-ng/files/3.12/syslog-ng.conf.gentoo.hardened 
b/app-admin/syslog-ng/files/3.12/syslog-ng.conf.gentoo.hardened
new file mode 100644
index 000..8497ad8a321
--- /dev/null
+++ 

[gentoo-commits] repo/gentoo:master commit in: dev-libs/ivykis/

2017-12-03 Thread Patrice Clement
commit: 8a8041cd47d0d0cce26422cd096c2ec722b694e1
Author: Tomas Mozes  gmail  com>
AuthorDate: Fri Nov 24 07:12:00 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Dec  3 15:15:14 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a8041cd

dev-libs/ivykis: new package.

ivykis is a library for asynchronous I/O readiness notification.

Package-Manager: Portage-2.3.16, Repoman-2.3.6
Closes: https://github.com/gentoo/gentoo/pull/6275

 dev-libs/ivykis/Manifest |  1 +
 dev-libs/ivykis/ivykis-0.42.2.ebuild | 12 
 dev-libs/ivykis/metadata.xml | 15 +++
 3 files changed, 28 insertions(+)

diff --git a/dev-libs/ivykis/Manifest b/dev-libs/ivykis/Manifest
new file mode 100644
index 000..7a02b7162cb
--- /dev/null
+++ b/dev-libs/ivykis/Manifest
@@ -0,0 +1 @@
+DIST ivykis-0.42.2.tar.gz 653885 BLAKE2B 
e4a5310ce6fd15aea79091edd56221f77c64a68472fa9bd44715da8c21b4b54f55c2e8c886491afcb8c206107b78b20cd7ad727a96690e8c718f2a2aaeb32aac
 SHA512 
0a166869b434668219c379a8acf7b2da17cb1e29aef74f9dde869a322d3b34e36c84bd67800f7fb234a29bf9372061329189f02ab6d7f85bb2622b4c43185270

diff --git a/dev-libs/ivykis/ivykis-0.42.2.ebuild 
b/dev-libs/ivykis/ivykis-0.42.2.ebuild
new file mode 100644
index 000..e4cc425e446
--- /dev/null
+++ b/dev-libs/ivykis/ivykis-0.42.2.ebuild
@@ -0,0 +1,12 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DESCRIPTION="Library for asynchronous I/O readiness notification"
+HOMEPAGE="https://github.com/buytenh/ivykis;
+SRC_URI="https://github.com/buytenh/ivykis/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"

diff --git a/dev-libs/ivykis/metadata.xml b/dev-libs/ivykis/metadata.xml
new file mode 100644
index 000..4f289fcb4a9
--- /dev/null
+++ b/dev-libs/ivykis/metadata.xml
@@ -0,0 +1,15 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  
+hydrapo...@gmail.com
+Tomáš Mózes
+  
+  
+proxy-ma...@gentoo.org
+Proxy Maintainers
+  
+  
+buytenh/ivykis
+  
+



[gentoo-commits] repo/gentoo:master commit in: dev-libs/icu/files/, dev-libs/icu/

2017-12-03 Thread Fabian Groffen
commit: 77165b807efc2a976f20c98dd6e07c24aa349656
Author: Fabian Groffen  gentoo  org>
AuthorDate: Sun Dec  3 15:16:40 2017 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Sun Dec  3 15:17:11 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77165b80

dev-libs/icu: add Prefix support

Package-Manager: Portage-2.3.13, Repoman-2.3.3

 dev-libs/icu/Manifest|  4 +--
 dev-libs/icu/files/icu-58.2-darwin.patch | 55 
 dev-libs/icu/icu-58.2-r1.ebuild  | 15 -
 dev-libs/icu/icu-60.1.ebuild |  9 +-
 4 files changed, 79 insertions(+), 4 deletions(-)

diff --git a/dev-libs/icu/Manifest b/dev-libs/icu/Manifest
index 25e55a75ffb..2fb7f8b34c1 100644
--- a/dev-libs/icu/Manifest
+++ b/dev-libs/icu/Manifest
@@ -1,4 +1,4 @@
-DIST icu4c-58_1-src.tgz 23366443 SHA256 
0eb46ba3746a9c2092c8ad347a29b1a1b4941144772d13a88667a7b11ea30309 SHA512 
59b2a76834192a35125fda326587e613ef4486152cf0278c6f22568d4ae02c4b2d897efcea2654ef2b11bd1c3154aecd38cb68a70f69430736f343689f94c155
 WHIRLPOOL 
faf2624a83f0d6f874166b328522dc9c89088db2690433ab05e96371722b635b81fd5210c7e87fe8e5df6681e881cf10204832925b448552affe8c2f6c851e37
-DIST icu4c-58_2-src.tgz 23369902 SHA256 
2b0a4410153a9b20de0e20c7d8b66049a72aef244b53683d0d7521371683da0c SHA512 
5c21af748f48b392e6c0412bd0aee92162ea931820dcbfab4ec6e0299868504b303d88f7586cc95de55c777ac0dca3a29d6c8ca0892c646ebc864c8a5b5a162a
 WHIRLPOOL 
25829f8ee870b703fd604ae5b9b584390a142f5011e2a5db18332453e2f1640d81270086f243318eeb93f187b04ea23dab14901ab81c8d924c8d47b1f77aee5a
+DIST icu4c-58_1-src.tgz 23366443 BLAKE2B 
16f1c778d925893769c6e0f0901fe02e57289535a25edd8ee8c96bdf4551499ead2c75d0f7e733fb89d1670c5065f1e8013ebe14cbdc34881a67452e622cd990
 SHA512 
59b2a76834192a35125fda326587e613ef4486152cf0278c6f22568d4ae02c4b2d897efcea2654ef2b11bd1c3154aecd38cb68a70f69430736f343689f94c155
+DIST icu4c-58_2-src.tgz 23369902 BLAKE2B 
cdd2e02c3aba050f5b7f8b38c5a3731e3e5f1cc1403ef86a50908b95560ea3cf8a2d47119fa60cf34f22a8b65eaa2392fd5bcbd3bc48b3da541fe3d9bd7392c0
 SHA512 
5c21af748f48b392e6c0412bd0aee92162ea931820dcbfab4ec6e0299868504b303d88f7586cc95de55c777ac0dca3a29d6c8ca0892c646ebc864c8a5b5a162a
 DIST icu4c-59_1-src.tgz 22706578 SHA256 
7132fdaf9379429d004005217f10e00b7d2319d0fea22bdfddef8991c45b75fe SHA512 
9348aa68d72a74cd1f26588c30c80eee1b48800a26930d7eb0749390fd65f7930ee8843058b6a6dd5f265e79054fef661e807ded16a1ad691cbc5ebc5ab944c4
 WHIRLPOOL 
f213951e98b7e1b59a3caf193f671fd9dff9a77c49aa3c4c118d6e3414688830ffb029d5c01495b369d4e666ab38669340a4c24a26f93742a99145972e20ede0
 DIST icu4c-60_1-src.tgz 23296064 BLAKE2B 
4f90c1f4f00b686d2632429fbaa6a6ec3d977e414f8d00cf82a525a1504c9d8c9b1a19458b495e5847abbcfff933038752f96d6bd165d206582f8ec1b77fff40
 SHA512 
a6798f70add1b3bac2197a49e09a0bb636279af7019ce572f63a30ab713e09657ee9d9b20aac7ea806fbb84667ca2eca981411e5053b47c3c705aa496a669233

diff --git a/dev-libs/icu/files/icu-58.2-darwin.patch 
b/dev-libs/icu/files/icu-58.2-darwin.patch
new file mode 100644
index 000..e5a9000a346
--- /dev/null
+++ b/dev-libs/icu/files/icu-58.2-darwin.patch
@@ -0,0 +1,55 @@
+same as 4.7, but retargetted to apply with eapply
+
+--- a/config/mh-darwin
 b/config/mh-darwin
+@@ -4,6 +4,13 @@
+ ## Copyright (c) 1999-2011 International Business Machines Corporation and
+ ## others. All Rights Reserved.
+ 
++
++SO_TARGET = $(LIBDIR)/$(LIBICU)$(TARGET_STUBNAME)$(ICULIBSUFFIX).$(SO)
++FINAL_SO_TARGET = 
$(LIBDIR)/$(LIBICU)$(TARGET_STUBNAME)$(ICULIBSUFFIX).$(SO_TARGET_VERSION).$(SO)
++MIDDLE_SO_TARGET = 
$(LIBDIR)/$(LIBICU)$(TARGET_STUBNAME)$(ICULIBSUFFIX).$(SO_TARGET_VERSION_MAJOR).$(SO)
++
++IS_DARWIN = yes
++
+ ## Flags for position independent code
+ SHAREDLIBCFLAGS = -dynamic
+ SHAREDLIBCXXFLAGS = -dynamic
+@@ -28,7 +35,7 @@
+ ifeq ($(ENABLE_RPATH),YES)
+ LD_SONAME = -Wl,-compatibility_version -Wl,$(SO_TARGET_VERSION_MAJOR) 
-Wl,-current_version -Wl,$(SO_TARGET_VERSION) -install_name $(libdir)/$(notdir 
$(MIDDLE_SO_TARGET))
+ else
+-LD_SONAME = -Wl,-compatibility_version -Wl,$(SO_TARGET_VERSION_MAJOR) 
-Wl,-current_version -Wl,$(SO_TARGET_VERSION) -install_name $(notdir 
$(MIDDLE_SO_TARGET))
++LD_SONAME = -Wl,-compatibility_version -Wl,$(SO_TARGET_VERSION_MAJOR) 
-Wl,-current_version -Wl,$(SO_TARGET_VERSION) -install_name $(libdir)/$(notdir 
$(MIDDLE_SO_TARGET))
+ endif
+ 
+ ## Compiler switch to embed a runtime search path
+--- a/stubdata/Makefile.in
 b/stubdata/Makefile.in
+@@ -32,7 +32,11 @@
+ 
+ 
+ ifneq ($(ENABLE_SHARED),)
++ifeq ($(IS_DARWIN),)
+ SO_TARGET = 
$(STUBDATA_LIBDIR)$(LIBICU)$(TARGET_STUBNAME)$(ICULIBSUFFIX)$(STUB_SUFFIX).$(SO)
++else
++SO_TARGET = 
$(LIBDIR)/$(STUBDATA_LIBDIR)$(LIBICU)$(TARGET_STUBNAME)$(ICULIBSUFFIX)$(STUB_SUFFIX).$(SO)
++endif
+ ALL_SO_TARGETS = $(FINAL_SO_TARGET) $(MIDDLE_SO_TARGET) $(SO_TARGET) 
$(BATCH_STUB_TARGET) $(SHARED_OBJECT)
+ endif
+ 
+--- a/tools/ctestfw/Makefile.in
 b/tools/ctestfw/Makefile.in
+@@ -31,7 +31,11 @@
+ endif
+ 
+ 

[gentoo-commits] repo/gentoo:master commit in: profiles/arch/powerpc/, profiles/arch/powerpc/ppc32/

2017-12-03 Thread Andreas Sturmlechner
commit: 3cfadb0fb340bd1f3d3779e18772d9c89fef0602
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Dec  3 16:42:15 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Dec  3 17:01:38 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3cfadb0f

profiles: powerpc: Mask net-irc/quassel[kde]

Required dependencies are not keyworded.

 profiles/arch/powerpc/package.use.mask   | 1 +
 profiles/arch/powerpc/ppc32/package.use.mask | 5 -
 2 files changed, 1 insertion(+), 5 deletions(-)

diff --git a/profiles/arch/powerpc/package.use.mask 
b/profiles/arch/powerpc/package.use.mask
index d769855edd5..585577535da 100644
--- a/profiles/arch/powerpc/package.use.mask
+++ b/profiles/arch/powerpc/package.use.mask
@@ -86,6 +86,7 @@ dev-vcs/subversion kwallet
 games-arcade/jumpnbump kde
 kde-apps/katepart handbook
 kde-frameworks/kdelibs handbook policykit
+net-irc/quassel kde
 net-libs/libproxy kde
 sys-auth/polkit kde
 sys-block/gparted kde

diff --git a/profiles/arch/powerpc/ppc32/package.use.mask 
b/profiles/arch/powerpc/ppc32/package.use.mask
index f9284d17fab..524ae4fe94d 100644
--- a/profiles/arch/powerpc/ppc32/package.use.mask
+++ b/profiles/arch/powerpc/ppc32/package.use.mask
@@ -117,8 +117,3 @@ media-libs/coin simage
 #nixnut  (24 jan 2009)
 #don't want zemberek for enchant for ppc32
 app-text/enchant zemberek
-
-# Chí-Thanh Christopher Nguyễn (11 Jul 2016)
-# Requires unkeyworded kde-frameworks packages
-net-irc/quassel qt5
-



[gentoo-commits] repo/gentoo:master commit in: net-irc/quassel/

2017-12-03 Thread Andreas Sturmlechner
commit: c96e81087ffa6f944548d2279c822f825065f220
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Dec  3 16:43:32 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Dec  3 17:01:39 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c96e8108

net-irc/quassel: Drop USE=qt5, build with Qt5 unconditionally

Acked-by: Patrick Lauer  gentoo.org>
Closes: https://bugs.gentoo.org/639608
Closes: https://bugs.gentoo.org/603074
Package-Manager: Portage-2.3.16, Repoman-2.3.6

 net-irc/quassel/Manifest  |  2 +-
 net-irc/quassel/quassel-0.12.4.ebuild | 92 +++
 2 files changed, 30 insertions(+), 64 deletions(-)

diff --git a/net-irc/quassel/Manifest b/net-irc/quassel/Manifest
index 9b785e5065a..06198ad4ee5 100644
--- a/net-irc/quassel/Manifest
+++ b/net-irc/quassel/Manifest
@@ -1 +1 @@
-DIST quassel-0.12.4.tar.bz2 3742639 SHA256 
93e4e54cb3743cbe2e5684c2fcba94fd2bc2cd739f7672dee14341b49c29444d SHA512 
66bc12a9634534e6492787172a199c774ef1642d1ddb268c24ed96608698628bca7b278021a006a4db76783b19b1e1dead9d019bb8a6cbe1e12b8857792e7b92
 WHIRLPOOL 
13a6078aa8f0a3d039e9c240c870a13744b3eb3324f45508f62a37aa8da13c0b00f94f53fe2602762503459a1110e3796673c104397b37297390cc406f2eaa66
+DIST quassel-0.12.4.tar.bz2 3742639 BLAKE2B 
855caaf3eb5373008dc3c6f673b68aa1bbb601541ba5eb6c9402f421ec6b1dc933c58785181ca8b3f2fd899ba91a873458ede06f0fda2a3e970980f395742be2
 SHA512 
66bc12a9634534e6492787172a199c774ef1642d1ddb268c24ed96608698628bca7b278021a006a4db76783b19b1e1dead9d019bb8a6cbe1e12b8857792e7b92

diff --git a/net-irc/quassel/quassel-0.12.4.ebuild 
b/net-irc/quassel/quassel-0.12.4.ebuild
index 4b8e4eb39be..fea12b014b0 100644
--- a/net-irc/quassel/quassel-0.12.4.ebuild
+++ b/net-irc/quassel/quassel-0.12.4.ebuild
@@ -15,69 +15,43 @@ HOMEPAGE="http://quassel-irc.org/;
 LICENSE="GPL-3"
 KEYWORDS="amd64 ~arm ~ppc x86 ~amd64-linux ~sparc-solaris"
 SLOT="0"
-IUSE="ayatana crypt dbus debug kde monolithic phonon postgres qt5 +server
+IUSE="crypt dbus debug kde monolithic phonon postgres +server
 snorenotify +ssl syslog webkit X"
 
 SERVER_RDEPEND="
-   qt5? (
-   dev-qt/qtscript:5
-   crypt? ( app-crypt/qca:2[qt5,ssl] )
-   postgres? ( dev-qt/qtsql:5[postgres] )
-   !postgres? ( dev-qt/qtsql:5[sqlite] 
dev-db/sqlite:3[threadsafe(+),-secure-delete] )
-   )
-   !qt5? (
-   dev-qt/qtscript:4
-   crypt? ( app-crypt/qca:2[qt4,ssl] )
-   postgres? ( dev-qt/qtsql:4[postgres] )
-   !postgres? ( dev-qt/qtsql:4[sqlite] 
dev-db/sqlite:3[threadsafe(+),-secure-delete] )
-   )
+   dev-qt/qtscript:5
+   crypt? ( app-crypt/qca:2[qt5(+),ssl] )
+   postgres? ( dev-qt/qtsql:5[postgres] )
+   !postgres? ( dev-qt/qtsql:5[sqlite] 
dev-db/sqlite:3[threadsafe(+),-secure-delete] )
syslog? ( virtual/logger )
 "
 
 GUI_RDEPEND="
-   qt5? (
-   dev-qt/qtgui:5
-   dev-qt/qtwidgets:5
-   dbus? (
-   >=dev-libs/libdbusmenu-qt-0.9.3_pre20140619[qt5(+)]
-   dev-qt/qtdbus:5
-   )
-   kde? (
-   kde-frameworks/kconfigwidgets:5
-   kde-frameworks/kcoreaddons:5
-   kde-frameworks/knotifications:5
-   kde-frameworks/knotifyconfig:5
-   kde-frameworks/ktextwidgets:5
-   kde-frameworks/kwidgetsaddons:5
-   kde-frameworks/kxmlgui:5
-   kde-frameworks/sonnet:5
-   )
-   phonon? ( media-libs/phonon[qt5(+)] )
-   snorenotify? ( >=x11-libs/snorenotify-0.7.0 )
-   webkit? ( dev-qt/qtwebkit:5 )
+   dev-qt/qtgui:5
+   dev-qt/qtwidgets:5
+   dbus? (
+   >=dev-libs/libdbusmenu-qt-0.9.3_pre20140619[qt5(+)]
+   dev-qt/qtdbus:5
)
-   !qt5? (
-   dev-qt/qtgui:4
-   ayatana? ( dev-libs/libindicate-qt )
-   dbus? (
-   >=dev-libs/libdbusmenu-qt-0.9.3_pre20140619[qt4]
-   dev-qt/qtdbus:4
-   kde? (
-   kde-frameworks/kdelibs:4
-   kde-frameworks/oxygen-icons:*
-   )
-   )
-   phonon? ( media-libs/phonon[qt4] )
+   kde? (
+   kde-frameworks/kconfigwidgets:5
+   kde-frameworks/kcoreaddons:5
+   kde-frameworks/knotifications:5
+   kde-frameworks/knotifyconfig:5
+   kde-frameworks/ktextwidgets:5
+   kde-frameworks/kwidgetsaddons:5
+   kde-frameworks/kxmlgui:5
+   kde-frameworks/sonnet:5
)
+   phonon? ( media-libs/phonon[qt5(+)] )
+   snorenotify? ( >=x11-libs/snorenotify-0.7.0 )
+   webkit? ( 

[gentoo-commits] repo/gentoo:master commit in: net-irc/quassel/

2017-12-03 Thread Andreas Sturmlechner
commit: 74f0b18009bf0361271afda85b49aee43e73947d
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Dec  3 16:46:11 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Dec  3 17:01:39 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74f0b180

net-irc/quassel: Prepare for a future app-crypt/qca w/o USE=qt5

Package-Manager: Portage-2.3.16, Repoman-2.3.6

 net-irc/quassel/quassel-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-irc/quassel/quassel-.ebuild 
b/net-irc/quassel/quassel-.ebuild
index 7bf54b67a40..325fd52095c 100644
--- a/net-irc/quassel/quassel-.ebuild
+++ b/net-irc/quassel/quassel-.ebuild
@@ -19,7 +19,7 @@ IUSE="+breeze crypt +dbus debug kde monolithic oxygen 
postgres +server snorenoti
 
 SERVER_RDEPEND="
dev-qt/qtscript:5
-   crypt? ( app-crypt/qca:2[qt5,ssl] )
+   crypt? ( app-crypt/qca:2[qt5(+),ssl] )
postgres? ( dev-qt/qtsql:5[postgres] )
!postgres? ( dev-qt/qtsql:5[sqlite] 
dev-db/sqlite:3[threadsafe(+),-secure-delete] )
syslog? ( virtual/logger )



[gentoo-commits] repo/gentoo:master commit in: media-gfx/kuickshow/

2017-12-03 Thread Andreas Sturmlechner
commit: 439de1560e456cd98474abb93d7fb8275bbe72da
Author: Christian Gerloff  gmx  net>
AuthorDate: Sun Dec  3 14:29:05 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Dec  3 17:01:41 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=439de156

media-gfx/kuickshow: Drop old

Package-Manager: Portage-2.3.13, Repoman-2.3.3

 media-gfx/kuickshow/kuickshow-0.9.1-r2.ebuild | 33 ---
 1 file changed, 33 deletions(-)

diff --git a/media-gfx/kuickshow/kuickshow-0.9.1-r2.ebuild 
b/media-gfx/kuickshow/kuickshow-0.9.1-r2.ebuild
deleted file mode 100644
index 81ffeba74ae..000
--- a/media-gfx/kuickshow/kuickshow-0.9.1-r2.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-KDE_LINGUAS="af ar be bg bn br ca ca@valencia cs cy da de el en_GB eo es et eu
-fa fi fr ga gl he hi hne hr hu is it ja km lt lv mai mk ms nb nds ne nl nn oc
-pa pl pt pt_BR ro ru se sk sl sv ta tg th tr uk uz uz@cyrillic vi xh zh_CN
-zh_TW"
-KDE_DOC_DIRS="doc doc-translations/%lingua_${PN}"
-inherit kde4-base
-
-MY_P=${P}-kde4.4.0
-
-DESCRIPTION="KDE program to view images"
-HOMEPAGE="https://userbase.kde.org/KuickShow;
-SRC_URI="mirror://kde/Attic/4.4.0/src/extragear/${MY_P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="4"
-KEYWORDS="~amd64 ~x86"
-IUSE="debug +handbook"
-
-DEPEND="media-libs/imlib"
-RDEPEND="${DEPEND}"
-
-DOCS=( AUTHORS BUGS ChangeLog README TODO )
-
-PATCHES=(
-   "${FILESDIR}/${P}-gcc6-compile-fix.patch"
-)
-
-S=${WORKDIR}/${MY_P}



[gentoo-commits] repo/gentoo:master commit in: net-irc/quassel/

2017-12-03 Thread Andreas Sturmlechner
commit: a8cdc2ad20d5e7510740e10861ac62b9d5ff1c8c
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Dec  3 16:48:26 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Dec  3 17:01:40 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a8cdc2ad

net-irc/quassel: Sort RDEPEND

Package-Manager: Portage-2.3.16, Repoman-2.3.6

 net-irc/quassel/quassel-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-irc/quassel/quassel-.ebuild 
b/net-irc/quassel/quassel-.ebuild
index 325fd52095c..dc4527b4df8 100644
--- a/net-irc/quassel/quassel-.ebuild
+++ b/net-irc/quassel/quassel-.ebuild
@@ -50,9 +50,9 @@ GUI_RDEPEND="
 "
 
 RDEPEND="
-   sys-libs/zlib
dev-qt/qtcore:5
dev-qt/qtnetwork:5[ssl?]
+   sys-libs/zlib
monolithic? (
${SERVER_RDEPEND}
${GUI_RDEPEND}



[gentoo-commits] repo/gentoo:master commit in: media-gfx/kuickshow/

2017-12-03 Thread Andreas Sturmlechner
commit: 22e672d503b8dca48481fdcdc9a6ee1f58412129
Author: Christian Gerloff  gmx  net>
AuthorDate: Sun Dec  3 14:26:59 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Dec  3 17:01:40 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22e672d5

media-gfx/kuickshow: Drop KDE_LINGUAS

Package-Manager: Portage-2.3.13, Repoman-2.3.3
Closes: https://github.com/gentoo/gentoo/pull/6426

 media-gfx/kuickshow/Manifest  |  2 +-
 media-gfx/kuickshow/kuickshow-0.9.1-r3.ebuild | 29 +++
 2 files changed, 30 insertions(+), 1 deletion(-)

diff --git a/media-gfx/kuickshow/Manifest b/media-gfx/kuickshow/Manifest
index ce449bb6636..c56b0bfd787 100644
--- a/media-gfx/kuickshow/Manifest
+++ b/media-gfx/kuickshow/Manifest
@@ -1 +1 @@
-DIST kuickshow-0.9.1-kde4.4.0.tar.bz2 915108 SHA256 
fa849380e8c5b628551510f6bf3d6c59e7d68bf437f80d0414ef2b73c826a40e SHA512 
394b95c6b7c3b655a96729559271cd837ff5995aefc7e229f3bc7905f7e64f3fb05d34a67c9a9ba584c1cdbc459b7349d0e134a16afe9e0505b5a494e85ab87e
 WHIRLPOOL 
3b2766833d86acd861d424054e73124287d3c2ceddeff0c9b5165d2aacae9cccb2e9c51d9092bf70bc4f3c979855ae3ee34c1e38e0928dc364b37045c59d773f
+DIST kuickshow-0.9.1-kde4.4.0.tar.bz2 915108 BLAKE2B 
d6ba91bd737ced19c4dbd8320da553b0212a60b6f98aa2188d1d8068856182b2b61a186ed02d29bf88649fc6bd7a6db16fb825c3711b26ac4ac37b7eee0e1071
 SHA512 
394b95c6b7c3b655a96729559271cd837ff5995aefc7e229f3bc7905f7e64f3fb05d34a67c9a9ba584c1cdbc459b7349d0e134a16afe9e0505b5a494e85ab87e

diff --git a/media-gfx/kuickshow/kuickshow-0.9.1-r3.ebuild 
b/media-gfx/kuickshow/kuickshow-0.9.1-r3.ebuild
new file mode 100644
index 000..16158579a72
--- /dev/null
+++ b/media-gfx/kuickshow/kuickshow-0.9.1-r3.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+KDE_DOC_DIRS="doc doc-translations/%lingua_${PN}"
+inherit kde4-base
+
+MY_P=${P}-kde4.4.0
+
+DESCRIPTION="KDE program to view images"
+HOMEPAGE="https://userbase.kde.org/KuickShow;
+SRC_URI="mirror://kde/Attic/4.4.0/src/extragear/${MY_P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="4"
+KEYWORDS="~amd64 ~x86"
+IUSE="debug +handbook"
+
+DEPEND="media-libs/imlib"
+RDEPEND="${DEPEND}"
+
+DOCS=( AUTHORS BUGS ChangeLog README TODO )
+
+PATCHES=(
+   "${FILESDIR}/${P}-gcc6-compile-fix.patch"
+)
+
+S=${WORKDIR}/${MY_P}



[gentoo-commits] repo/gentoo:master commit in: net-vpn/kvpnc/

2017-12-03 Thread Andreas Sturmlechner
commit: 5315c618e5f0deb0b118ea49008a8863bcf42b8e
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Dec  3 17:20:11 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Dec  3 17:20:11 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5315c618

net-vpn/kvpnc: Drop 0.9.6a-r2, broken on stable, masked anyway

Package-Manager: Portage-2.3.16, Repoman-2.3.6

 net-vpn/kvpnc/kvpnc-0.9.6a-r2.ebuild | 52 
 1 file changed, 52 deletions(-)

diff --git a/net-vpn/kvpnc/kvpnc-0.9.6a-r2.ebuild 
b/net-vpn/kvpnc/kvpnc-0.9.6a-r2.ebuild
deleted file mode 100644
index 4b9e050da5a..000
--- a/net-vpn/kvpnc/kvpnc-0.9.6a-r2.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-KDE_LINGUAS="ar br cs da de el en_GB eo es et eu fr ga gl hi hne it ja ka lt
-ms nb nds nl nn pa pl pt pt_BR ro ru sv tr uk zh_CN zh_TW"
-inherit kde4-base
-
-DESCRIPTION="KDE frontend for various VPN clients"
-HOMEPAGE="https://userbase.kde.org/KVpnc;
-SRC_URI="http://download.gna.org/kvpnc/${P}-kde4.tar.bz2
-   http://download.gna.org/kvpnc/${P/a}-kde4-locale.tar.bz2;
-
-LICENSE="GPL-2"
-SLOT="4"
-KEYWORDS="amd64 x86"
-IUSE="debug"
-
-RDEPEND="
-   dev-libs/libgcrypt:0
-"
-DEPEND="${RDEPEND}
-   sys-devel/gettext
-"
-
-S=${WORKDIR}/${P}-kde4
-
-PATCHES=(
-   "${FILESDIR}/${P}-scriptsec.patch"
-   "${FILESDIR}/${P}-gcc47.patch"
-   "${FILESDIR}/${P}-ifconfig.patch"
-)
-
-src_prepare() {
-   mv -vf "${WORKDIR}"/${P/a}-kde4-locale/po . || die
-
-   echo "find_package ( Msgfmt REQUIRED )" >> CMakeLists.txt || die
-   echo "find_package ( Gettext REQUIRED )" >> CMakeLists.txt || die
-   echo "add_subdirectory ( po )" >> CMakeLists.txt || die
-
-   sed -i \
-   -e "s:0.9.2-svn:${PV}:" \
-   CMakeLists.txt || die
-
-   kde4-base_src_prepare
-}
-
-src_configure() {
-   mycmakeargs=( "-DWITH_libgcrypt=ON" )
-   kde4-base_src_configure
-}



[gentoo-commits] repo/gentoo:master commit in: media-sound/amarok/

2017-12-03 Thread Andreas Sturmlechner
commit: bfa8c870248106c33dca8629328d36979420cf9e
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Dec  3 17:14:58 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Dec  3 17:14:58 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bfa8c870

media-sound/amarok: Drop old

Package-Manager: Portage-2.3.16, Repoman-2.3.6

 media-sound/amarok/amarok-2.8.90-r3.ebuild | 136 -
 1 file changed, 136 deletions(-)

diff --git a/media-sound/amarok/amarok-2.8.90-r3.ebuild 
b/media-sound/amarok/amarok-2.8.90-r3.ebuild
deleted file mode 100644
index 9165fb8d31e..000
--- a/media-sound/amarok/amarok-2.8.90-r3.ebuild
+++ /dev/null
@@ -1,136 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-KDE_LINGUAS="bs ca ca@valencia cs da de el en_GB es et eu fi fr ga gl hu it ja
-lt lv nb nl pa pl pt pt_BR ro ru sl sr sr@ijekavian sr@ijekavianlatin sr@latin
-sv tr uk zh_CN zh_TW"
-KDE_REQUIRED="never"
-KDE_HANDBOOK="optional"
-SQL_REQUIRED="always"
-VIRTUALX_REQUIRED="test"
-VIRTUALDBUS_TEST="true"
-inherit flag-o-matic kde4-base pax-utils
-
-DESCRIPTION="Advanced audio player based on KDE framework"
-HOMEPAGE="https://amarok.kde.org/;
-if [[ ${PV} != ** ]]; then
-   SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.xz"
-   KEYWORDS="amd64 x86"
-fi
-
-LICENSE="GPL-2"
-SLOT="4"
-IUSE="debug +embedded ipod lastfm mp3tunes mtp ofa opengl test +utils"
-
-if [[ ${KDE_BUILD_TYPE} == live ]]; then
-   RESTRICT+=" test"
-fi
-
-# ipod requires gdk enabled and also gtk compiled in libgpod
-COMMONDEPEND="
-   app-crypt/qca:2[qt4(+)]
-   kde-frameworks/kdelibs:4[opengl?,plasma(+)]
-   $(add_kdeapps_dep kdebase-kioslaves)
-   >=media-libs/taglib-1.7[asf(+),mp4(+)]
-   >=media-libs/taglib-extras-1.0.1
-   sys-libs/zlib
-   >=virtual/mysql-5.1[embedded?]
-   >=dev-qt/qtcore-4.8:4
-   >=dev-qt/qtdbus-4.8:4
-   >=dev-qt/qtscript-4.8:4
-   >=x11-libs/qtscriptgenerator-0.1.0
-   ipod? ( >=media-libs/libgpod-0.7.0[gtk] )
-   lastfm? ( >=media-libs/liblastfm-1.0.3[qt4(+)] )
-   mp3tunes? (
-   dev-libs/glib:2
-   dev-libs/libxml2
-   dev-libs/openssl:0
-   >=dev-qt/qtcore-4.8.4:4[glib]
-   net-libs/loudmouth
-   net-misc/curl
-   )
-   mtp? ( >=media-libs/libmtp-1.0.0 )
-   ofa? ( >=media-libs/libofa-0.9.0 )
-   opengl? ( virtual/opengl )
-"
-DEPEND="${COMMONDEPEND}
-   dev-util/automoc
-   virtual/pkgconfig
-   test? ( dev-cpp/gmock )
-"
-RDEPEND="${COMMONDEPEND}
-   !media-sound/amarok-utils
-   $(add_kdeapps_dep phonon-kde)
-"
-
-PATCHES=(
-   "${FILESDIR}/${PN}-2.8.0-taglib110.patch"
-   "${FILESDIR}/${P}-mysql-embedded.patch"
-   "${FILESDIR}/${P}-mysqld-rpath.patch"
-   "${FILESDIR}/${P}-scriptconsole.patch"
-   "${FILESDIR}/${P}-gcc6.patch"
-   "${FILESDIR}/${P}-ffmpeg3.patch"
-   "${FILESDIR}/${P}-no-webkit.patch"
-)
-
-src_prepare() {
-   kde4-base_src_prepare
-
-   # requires qtwebkit
-   sed -i -e "s/wikipedia,//" data/amarok_homerc || die
-}
-
-src_configure() {
-   # Append minimal-toc cflag for ppc64, see bug 280552 and 292707
-   use ppc64 && append-flags -mminimal-toc
-
-   local mycmakeargs=(
-   -DWITH_PLAYER=ON
-   -DWITH_Libgcrypt=OFF
-   -DWITH_SPECTRUM_ANALYZER=OFF
-   -DWITH_NepomukCore=OFF
-   -DWITH_Soprano=OFF
-   -DWITH_MYSQL_EMBEDDED=$(usex embedded)
-   -DWITH_IPOD=$(usex ipod)
-   -DWITH_GDKPixBuf=$(usex ipod)
-   -DWITH_LibLastFm=$(usex lastfm)
-   -DWITH_MP3Tunes=$(usex mp3tunes)
-   -DWITH_Mtp=$(usex mtp)
-   -DWITH_LibOFA=$(usex ofa)
-   -DWITH_UTILITIES=$(usex utils)
-   )
-
-   # bug 581554: add libmysqld location for rpath patch
-   use embedded && mycmakeargs+=( 
-DMYSQLD_DIR="${EPREFIX}/usr/$(get_libdir)/mysql" )
-
-   kde4-base_src_configure
-}
-
-src_install() {
-   kde4-base_src_install
-
-   # bug 481592
-   pax-mark m "${ED}"/usr/bin/amarok
-}
-
-pkg_postinst() {
-   kde4-base_pkg_postinst
-
-   if ! use embedded; then
-   echo
-   elog "You've disabled the amarok support for embedded mysql 
DBs."
-   elog "You'll have to configure amarok to use an external db 
server."
-   echo
-   elog "Please read http://amarok.kde.org/wiki/MySQL_Server for 
details on how"
-   elog "to configure the external db and migrate your data from 
the embedded database."
-   echo
-
-   if has_version "virtual/mysql[minimal]"; then
-   elog "You built mysql with the minimal use flag, so it 
doesn't include the server."
-

[gentoo-commits] repo/gentoo:master commit in: media-sound/amarok/

2017-12-03 Thread Andreas Sturmlechner
commit: d9f7604f7ff97bb7d512042c5fc130c0d039f788
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Dec  3 17:14:22 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Dec  3 17:14:22 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9f7604f

media-sound/amarok: Drop KDE_LINGUAS

Package-Manager: Portage-2.3.16, Repoman-2.3.6

 media-sound/amarok/amarok-2.8.90-r4.ebuild | 133 +
 1 file changed, 133 insertions(+)

diff --git a/media-sound/amarok/amarok-2.8.90-r4.ebuild 
b/media-sound/amarok/amarok-2.8.90-r4.ebuild
new file mode 100644
index 000..59abced5c7c
--- /dev/null
+++ b/media-sound/amarok/amarok-2.8.90-r4.ebuild
@@ -0,0 +1,133 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+KDE_REQUIRED="never"
+KDE_HANDBOOK="optional"
+SQL_REQUIRED="always"
+VIRTUALX_REQUIRED="test"
+VIRTUALDBUS_TEST="true"
+inherit flag-o-matic kde4-base pax-utils
+
+DESCRIPTION="Advanced audio player based on KDE framework"
+HOMEPAGE="https://amarok.kde.org/;
+if [[ ${PV} != ** ]]; then
+   SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.xz"
+   KEYWORDS="amd64 x86"
+fi
+
+LICENSE="GPL-2"
+SLOT="4"
+IUSE="debug +embedded ipod lastfm mp3tunes mtp ofa opengl test +utils"
+
+if [[ ${KDE_BUILD_TYPE} == live ]]; then
+   RESTRICT+=" test"
+fi
+
+# ipod requires gdk enabled and also gtk compiled in libgpod
+COMMONDEPEND="
+   $(add_kdeapps_dep kdebase-kioslaves)
+   app-crypt/qca:2[qt4]
+   >=dev-qt/qtcore-4.8:4
+   >=dev-qt/qtdbus-4.8:4
+   >=dev-qt/qtscript-4.8:4
+   >=kde-frameworks/kdelibs-4.14.37:4[opengl?,plasma]
+   >=media-libs/taglib-1.7[asf(+),mp4(+)]
+   >=media-libs/taglib-extras-1.0.1
+   sys-libs/zlib
+   >=virtual/mysql-5.1[embedded?]
+   >=x11-libs/qtscriptgenerator-0.1.0
+   ipod? ( >=media-libs/libgpod-0.7.0[gtk] )
+   lastfm? ( >=media-libs/liblastfm-1.0.3[qt4] )
+   mp3tunes? (
+   dev-libs/glib:2
+   dev-libs/libxml2
+   dev-libs/openssl:0
+   >=dev-qt/qtcore-4.8.4:4[glib]
+   net-libs/loudmouth
+   net-misc/curl
+   )
+   mtp? ( >=media-libs/libmtp-1.0.0 )
+   ofa? ( >=media-libs/libofa-0.9.0 )
+   opengl? ( virtual/opengl )
+"
+DEPEND="${COMMONDEPEND}
+   dev-util/automoc
+   virtual/pkgconfig
+   test? ( dev-cpp/gmock )
+"
+RDEPEND="${COMMONDEPEND}
+   !media-sound/amarok-utils
+   $(add_kdeapps_dep phonon-kde)
+"
+
+PATCHES=(
+   "${FILESDIR}/${PN}-2.8.0-taglib110.patch"
+   "${FILESDIR}/${P}-mysql-embedded.patch"
+   "${FILESDIR}/${P}-mysqld-rpath.patch"
+   "${FILESDIR}/${P}-scriptconsole.patch"
+   "${FILESDIR}/${P}-gcc6.patch"
+   "${FILESDIR}/${P}-ffmpeg3.patch"
+   "${FILESDIR}/${P}-no-webkit.patch"
+)
+
+src_prepare() {
+   kde4-base_src_prepare
+
+   # requires qtwebkit
+   sed -i -e "s/wikipedia,//" data/amarok_homerc || die
+}
+
+src_configure() {
+   # Append minimal-toc cflag for ppc64, see bug 280552 and 292707
+   use ppc64 && append-flags -mminimal-toc
+
+   local mycmakeargs=(
+   -DWITH_PLAYER=ON
+   -DWITH_Libgcrypt=OFF
+   -DWITH_SPECTRUM_ANALYZER=OFF
+   -DWITH_NepomukCore=OFF
+   -DWITH_Soprano=OFF
+   -DWITH_MYSQL_EMBEDDED=$(usex embedded)
+   -DWITH_IPOD=$(usex ipod)
+   -DWITH_GDKPixBuf=$(usex ipod)
+   -DWITH_LibLastFm=$(usex lastfm)
+   -DWITH_MP3Tunes=$(usex mp3tunes)
+   -DWITH_Mtp=$(usex mtp)
+   -DWITH_LibOFA=$(usex ofa)
+   -DWITH_UTILITIES=$(usex utils)
+   )
+
+   # bug 581554: add libmysqld location for rpath patch
+   use embedded && mycmakeargs+=( 
-DMYSQLD_DIR="${EPREFIX}/usr/$(get_libdir)/mysql" )
+
+   kde4-base_src_configure
+}
+
+src_install() {
+   kde4-base_src_install
+
+   # bug 481592
+   pax-mark m "${ED}"/usr/bin/amarok
+}
+
+pkg_postinst() {
+   kde4-base_pkg_postinst
+
+   if ! use embedded; then
+   echo
+   elog "You've disabled the amarok support for embedded mysql 
DBs."
+   elog "You'll have to configure amarok to use an external db 
server."
+   echo
+   elog "Please read http://amarok.kde.org/wiki/MySQL_Server for 
details on how"
+   elog "to configure the external db and migrate your data from 
the embedded database."
+   echo
+
+   if has_version "virtual/mysql[minimal]"; then
+   elog "You built mysql with the minimal use flag, so it 
doesn't include the server."
+   elog "You won't be able to use the local mysql 
installation to store your amarok collection."
+   echo
+   fi
+   fi
+}


[gentoo-commits] repo/gentoo:master commit in: app-office/kmymoney/

2017-12-03 Thread Andreas Sturmlechner
commit: 81fbd92db2e094eb176344e4334b77c96267bc8b
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Dec  3 17:17:52 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Dec  3 17:17:52 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81fbd92d

app-office/kmymoney: Drop old

Package-Manager: Portage-2.3.16, Repoman-2.3.6

 app-office/kmymoney/kmymoney-4.8.0-r2.ebuild | 91 
 1 file changed, 91 deletions(-)

diff --git a/app-office/kmymoney/kmymoney-4.8.0-r2.ebuild 
b/app-office/kmymoney/kmymoney-4.8.0-r2.ebuild
deleted file mode 100644
index b6f87338fb7..000
--- a/app-office/kmymoney/kmymoney-4.8.0-r2.ebuild
+++ /dev/null
@@ -1,91 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-KDE_LINGUAS="bs ca ca@valencia cs da de el en_GB es et eu fi fr gl
-hu it kk nds nl pl pt pt_BR ro ru sk sv tr uk zh_CN zh_TW"
-KDE_HANDBOOK="optional"
-SQL_REQUIRED="always"
-VIRTUALX_REQUIRED="test"
-VIRTUALDBUS_TEST="true"
-inherit kde4-base
-
-DESCRIPTION="Personal finance manager by KDE"
-HOMEPAGE="https://kmymoney.org/;
-if [[ ${KDE_BUILD_TYPE} = release ]]; then
-   SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.xz"
-fi
-
-LICENSE="GPL-2"
-SLOT="4"
-KEYWORDS="amd64 x86"
-IUSE="calendar debug doc hbci ofx quotes weboob"
-
-COMMON_DEPEND="
-   >=app-crypt/gpgme-1.7.0[cxx]
-   =net-libs/aqbanking-5.5.1
-   >=sys-libs/gwenhywfar-4.15.3[qt4]
-   )
-   ofx? ( >=dev-libs/libofx-0.9.4 )
-   weboob? ( www-client/weboob )
-"
-RDEPEND="${COMMON_DEPEND}
-   quotes? ( dev-perl/Finance-Quote )
-"
-DEPEND="${COMMON_DEPEND}
-   dev-libs/boost
-   virtual/pkgconfig
-   doc? ( app-doc/doxygen )
-"
-
-PATCHES=(
-   "${FILESDIR}/${P}-tests.patch"
-   "${FILESDIR}/${P}-alkimia-detect.patch"
-   "${FILESDIR}/${P}-fix-csvdialog.patch"
-   "${FILESDIR}/${P}-soversion.patch"
-   "${FILESDIR}/${P}-gpgmepp.patch"
-   "${FILESDIR}/${P}-kdepimlibs-optional.patch"
-   "${FILESDIR}/${P}-drop-national-onlinetasks.patch"
-   "${FILESDIR}/${P}-cmake-3.9.patch"
-)
-
-src_prepare() {
-   kde4-base_src_prepare
-
-   # don't install as executable
-   sed -i kmymoney/CMakeLists.txt \
-   -e "/install.*kmymoney.appdata/ s/PROGRAMS/FILES/" || die
-
-   # bug #617636, complement to drop-national-onlinetasks.patch
-   rm -r kmymoney/plugins/onlinetasks/national || die
-}
-
-src_configure() {
-   local mycmakeargs=(
-   -DUSE_QT_DESIGNER=OFF
-   -DENABLE_LIBICAL=$(usex calendar)
-   -DUSE_DEVELOPER_DOC=$(usex doc)
-   -DENABLE_KBANKING=$(usex hbci)
-   -DENABLE_LIBOFX=$(usex ofx)
-   -DCMAKE_DISABLE_FIND_PACKAGE_KdepimLibs=ON
-   -DENABLE_WEBOOB=$(usex weboob)
-   )
-   kde4-base_src_configure
-}
-
-src_compile() {
-   kde4-base_src_compile
-   use doc && kde4-base_src_compile apidoc
-}
-
-src_install() {
-   use doc && HTML_DOCS=("${BUILD_DIR}/apidocs/html/")
-   kde4-base_src_install
-}



[gentoo-commits] repo/gentoo:master commit in: app-office/kmymoney/

2017-12-03 Thread Andreas Sturmlechner
commit: 373d8f4340974e76758b223814eff3f6c9dc14be
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Dec  3 17:17:11 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Dec  3 17:17:11 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=373d8f43

app-office/kmymoney: Drop KDE_LINGUAS

Package-Manager: Portage-2.3.16, Repoman-2.3.6

 app-office/kmymoney/kmymoney-4.8.0-r3.ebuild | 89 
 1 file changed, 89 insertions(+)

diff --git a/app-office/kmymoney/kmymoney-4.8.0-r3.ebuild 
b/app-office/kmymoney/kmymoney-4.8.0-r3.ebuild
new file mode 100644
index 000..b61523303b5
--- /dev/null
+++ b/app-office/kmymoney/kmymoney-4.8.0-r3.ebuild
@@ -0,0 +1,89 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+KDE_HANDBOOK="optional"
+SQL_REQUIRED="always"
+VIRTUALX_REQUIRED="test"
+VIRTUALDBUS_TEST="true"
+inherit kde4-base
+
+DESCRIPTION="Personal finance manager by KDE"
+HOMEPAGE="https://kmymoney.org/;
+if [[ ${KDE_BUILD_TYPE} = release ]]; then
+   SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.xz"
+fi
+
+LICENSE="GPL-2"
+SLOT="4"
+KEYWORDS="amd64 x86"
+IUSE="calendar debug doc hbci ofx quotes weboob"
+
+COMMON_DEPEND="
+   >=app-crypt/gpgme-1.7.0[cxx]
+   =net-libs/aqbanking-5.5.1
+   >=sys-libs/gwenhywfar-4.15.3[qt4]
+   )
+   ofx? ( >=dev-libs/libofx-0.9.4 )
+   weboob? ( www-client/weboob )
+"
+RDEPEND="${COMMON_DEPEND}
+   quotes? ( dev-perl/Finance-Quote )
+"
+DEPEND="${COMMON_DEPEND}
+   dev-libs/boost
+   virtual/pkgconfig
+   doc? ( app-doc/doxygen )
+"
+
+PATCHES=(
+   "${FILESDIR}/${P}-tests.patch"
+   "${FILESDIR}/${P}-alkimia-detect.patch"
+   "${FILESDIR}/${P}-fix-csvdialog.patch"
+   "${FILESDIR}/${P}-soversion.patch"
+   "${FILESDIR}/${P}-gpgmepp.patch"
+   "${FILESDIR}/${P}-kdepimlibs-optional.patch"
+   "${FILESDIR}/${P}-drop-national-onlinetasks.patch"
+   "${FILESDIR}/${P}-cmake-3.9.patch"
+)
+
+src_prepare() {
+   kde4-base_src_prepare
+
+   # don't install as executable
+   sed -i kmymoney/CMakeLists.txt \
+   -e "/install.*kmymoney.appdata/ s/PROGRAMS/FILES/" || die
+
+   # bug #617636, complement to drop-national-onlinetasks.patch
+   rm -r kmymoney/plugins/onlinetasks/national || die
+}
+
+src_configure() {
+   local mycmakeargs=(
+   -DUSE_QT_DESIGNER=OFF
+   -DENABLE_LIBICAL=$(usex calendar)
+   -DUSE_DEVELOPER_DOC=$(usex doc)
+   -DENABLE_KBANKING=$(usex hbci)
+   -DENABLE_LIBOFX=$(usex ofx)
+   -DCMAKE_DISABLE_FIND_PACKAGE_KdepimLibs=ON
+   -DENABLE_WEBOOB=$(usex weboob)
+   )
+   kde4-base_src_configure
+}
+
+src_compile() {
+   kde4-base_src_compile
+   use doc && kde4-base_src_compile apidoc
+}
+
+src_install() {
+   use doc && HTML_DOCS=("${BUILD_DIR}/apidocs/html/")
+   kde4-base_src_install
+}



[gentoo-commits] repo/gentoo:master commit in: sci-electronics/ngspice/files/, sci-electronics/ngspice/

2017-12-03 Thread Fabian Groffen
commit: 5c118ba950c1ad185fb1d18e8121b59b9169d42b
Author: Fabian Groffen  gentoo  org>
AuthorDate: Sun Dec  3 17:24:19 2017 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Sun Dec  3 17:24:34 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c118ba9

sci-electronics/ngspice: replace ldflags sed with a patch for Darwin

The sed was too greedy, causing bugs like #462318.  Replace with a patch
that ensures we only once append to LDFLAGS, not multiple times.

Closes: https://bugs.gentoo.org/462318
Package-Manager: Portage-2.3.13, Repoman-2.3.3

 sci-electronics/ngspice/Manifest   |  4 +--
 .../ngspice/files/ngspice-26-respect-ldflags.patch | 31 ++
 sci-electronics/ngspice/ngspice-26.ebuild  |  6 ++---
 3 files changed, 36 insertions(+), 5 deletions(-)

diff --git a/sci-electronics/ngspice/Manifest b/sci-electronics/ngspice/Manifest
index 04a82ab9da5..65f631c0fa4 100644
--- a/sci-electronics/ngspice/Manifest
+++ b/sci-electronics/ngspice/Manifest
@@ -1,2 +1,2 @@
-DIST ngspice-26-manual.pdf 2141771 SHA256 
30b4fde001d012b0350aae3ba64892fb2f315d04f6761b95abd79f4b7c4cd85d SHA512 
1c160aeef61d8091a6d788677bcf7ea682393cc886d5d535f87bb800cdae4f095cbf1e833babadea481956b904b4bdb688cc18b80d9d6a29cab33a54275abab1
 WHIRLPOOL 
7e9be918599599da3bd6fc754afdc453e1cc6171cabe2afe05da2be24433b4c1ee46728c29995dc62d04d08f966a441a853aa231b37b55e7bcfd587832dcb5b1
-DIST ngspice-26.tar.gz 6925987 SHA256 
51e230c8b720802d93747bc580c0a29d1fb530f3dd06f213b6a700ca9a4d0108 SHA512 
eb6a81df90de803c9f7544e8d0de7cc413aac169f69d1dec5cc6d2e667b66d42aede7f14c75bcdd10288be0c2ac07863fd4028b9fe59f2f515d680c2ffa41cab
 WHIRLPOOL 
cb356ee817fa00ab4a195c8380445adddf6426b5b08ca7c9af1bd96e6f43f3643bc6e4d2d9a7e4a3f3a79f43aa40b0da08721c2e42365c79b5f2e6bad6aef669
+DIST ngspice-26-manual.pdf 2141771 BLAKE2B 
16956c46640de4696f7197997b170a2b1aad9b2f9fbe299b801de100d8aaca949b5be6f259e353a168ae90d992d91ff65e8a819b49fdf509fae98ec7dfa610d7
 SHA512 
1c160aeef61d8091a6d788677bcf7ea682393cc886d5d535f87bb800cdae4f095cbf1e833babadea481956b904b4bdb688cc18b80d9d6a29cab33a54275abab1
+DIST ngspice-26.tar.gz 6925987 BLAKE2B 
8f8e54000234ea3896a55863df99b6ce83ad322e3049845e0a817635ebfebdc8398e6fa4831727c4798a8d9dce1b1c2a01354505e48dc0b2db9e9036aa2ae5aa
 SHA512 
eb6a81df90de803c9f7544e8d0de7cc413aac169f69d1dec5cc6d2e667b66d42aede7f14c75bcdd10288be0c2ac07863fd4028b9fe59f2f515d680c2ffa41cab

diff --git a/sci-electronics/ngspice/files/ngspice-26-respect-ldflags.patch 
b/sci-electronics/ngspice/files/ngspice-26-respect-ldflags.patch
new file mode 100644
index 000..31fe300b105
--- /dev/null
+++ b/sci-electronics/ngspice/files/ngspice-26-respect-ldflags.patch
@@ -0,0 +1,31 @@
+--- ngspice-26/src/xspice/icm/makedefs.in
 ngspice-26/src/xspice/icm/makedefs.in
+@@ -44,16 +44,19 @@
+ LIBS = -lm
+ 
+ # Flags to use when linking shared library
+-LDFLAGS = -shared
+ ifeq ($(ISMINGW), 1)
+-  LDFLAGS = -shared @LDFLAGS@
+-endif
+-ifeq "$(strip $(uname))" "Darwin"
+-  LDFLAGS = -bundle -flat_namespace -undefined suppress
+-endif
+-ifeq "$(strip $(uname))" "SunOS"
+-  ifneq "$(CC)" "gcc"
+-LDFLAGS = -G
++  LDFLAGS += -shared @LDFLAGS@
++else
++  ifeq "$(strip $(uname))" "Darwin"
++LDFLAGS += -bundle -flat_namespace -undefined suppress
++  else
++ifeq "$(strip $(uname))" "SunOS"
++  ifneq "$(CC)" "gcc"
++LDFLAGS += -G
++  else
++LDFLAGS += -shared
++  endif
++endif
+   endif
+ endif
+ 

diff --git a/sci-electronics/ngspice/ngspice-26.ebuild 
b/sci-electronics/ngspice/ngspice-26.ebuild
index 6150e239ac6..3c185422f41 100644
--- a/sci-electronics/ngspice/ngspice-26.ebuild
+++ b/sci-electronics/ngspice/ngspice-26.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="3"
@@ -13,7 +13,7 @@ LICENSE="BSD GPL-2"
 
 SLOT="0"
 IUSE="X debug readline"
-KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~x64-macos"
 
 DEPEND="sys-libs/ncurses
readline? ( >=sys-libs/readline-5.0 )
@@ -25,9 +25,9 @@ DEPEND="sys-libs/ncurses
 RDEPEND="$DEPEND"
 
 src_prepare() {
+   epatch "${FILESDIR}"/${P}-respect-ldflags.patch
sed -e '/CFLAGS=/s: -s::' -i configure.ac || die "sed failed"
sed -e 's/_CFLAGS -O2/_CFLAGS/' -i configure.ac || die "sed failed"
-   sed -e 's/LDFLAGS =/LDFLAGS +=/' -i src/xspice/icm/makedefs.in || die 
"sed failed"
sed -e '/AM_INIT_AUTOMAKE/s:-Werror::' -i configure.ac || die "sed 
failed"
# builds also with ncurses[tinfo] (bug #458128)
sed -e 's/ncurses termcap/ncurses termcap tinfo/g' -i configure.ac || 
die



[gentoo-commits] repo/gentoo:master commit in: mail-client/neomutt/

2017-12-03 Thread Nicolas Bock
commit: 1d131b5cfdf3e61879359dbae554b8d5b55ea3e8
Author: Nicolas Bock  gentoo  org>
AuthorDate: Sun Dec  3 17:39:11 2017 +
Commit: Nicolas Bock  gentoo  org>
CommitDate: Sun Dec  3 17:39:27 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d131b5c

mail-client/neomutt: Updated metadata.xml

Package-Manager: Portage-2.3.13, Repoman-2.3.3

 mail-client/neomutt/metadata.xml | 10 ++
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/mail-client/neomutt/metadata.xml b/mail-client/neomutt/metadata.xml
index 9810e2b8319..380ec81eb0c 100644
--- a/mail-client/neomutt/metadata.xml
+++ b/mail-client/neomutt/metadata.xml
@@ -10,7 +10,6 @@
caching
Enable GDBM (GNU dbm) backend for header
caching
-   Enable support for 
app-crypt/gpgme
Enable Kyoto Cabinet database backend 
for
header caching
Enable LMDB (Lightning Memory-Mapped Database)
@@ -19,13 +18,16 @@
net-mail/notmuch
Enable QDBM (Quicker Database Manager) 
database
backend for header caching
-   Enable support for smime
Enable Tokyo Cabinet database backend 
for
header caching
-   Build gpgme backend to support S/MIME, 
PGP/MIME and
-   traditional/inline PGP
+   Add support for encryption -- using mcrypt 
or gpg
+   where applicable
Build classic_pgp backend to support 
PGP/MIME
and traditional/inline PGP
+   Enable support for 
app-crypt/gpgme
+   Build gpgme backend to support S/MIME, 
PGP/MIME and
+   traditional/inline PGP
+   Enable support for smime
Build classic_smime backend to 
support
S/MIME




[gentoo-commits] repo/gentoo:master commit in: dev-libs/jemalloc/

2017-12-03 Thread Fabian Groffen
commit: 31aafb667c022f91392738a0705926eeb96b5fb7
Author: Fabian Groffen  gentoo  org>
AuthorDate: Sun Dec  3 17:50:29 2017 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Sun Dec  3 17:50:41 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31aafb66

dev-libs/jemalloc: marked ~x64-solaris

Package-Manager: Portage-2.3.13, Repoman-2.3.3

 dev-libs/jemalloc/Manifest  | 2 +-
 dev-libs/jemalloc/jemalloc-5.0.1.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-libs/jemalloc/Manifest b/dev-libs/jemalloc/Manifest
index 4fca67d7b99..d051e6152a4 100644
--- a/dev-libs/jemalloc/Manifest
+++ b/dev-libs/jemalloc/Manifest
@@ -3,4 +3,4 @@ DIST jemalloc-3.3.1.tar.bz2 252997 SHA256 
35c433cc1df5cdf9eb58b7980338552fc1d7aa
 DIST jemalloc-3.6.0.tar.bz2 338964 SHA256 
e16c2159dd3c81ca2dc3b5c9ef0d43e1f2f45b04548f42db12e7c12d7bdf84fe SHA512 
ebe7c64558a87a735b5906d5cb7527c241664eeae7328538675a12eabe7a1004be0f8766a3bd2a78e61334b196ca7ffc0ee8b8ff59167922a35f126cd1e76e43
 WHIRLPOOL 
d5452005951b10d9d529349481779d79361ec8d8ac1f36f4b54408b5e0184f35d79fee8378188d98f1b8e41ae13557a2cf41ab849b68856ba69f33870fe6e980
 DIST jemalloc-4.4.0.tar.bz2 440144 SHA256 
a7aea63e9718d2f1adf81d87e3df3cb1b58deb86fc77bad5d702c4c59687b033 SHA512 
2f88fb17ede3bf87e334e9c80949870e0dd85b5adcdd89a1750ccf6df5240f35293159ac0a360d3a29cf0b1d17edf86dcc7997c6bf3190ae7da7442d3a3cc14e
 WHIRLPOOL 
1485ce6cf08ee2233117e281d1a61f376d2b6c73f28c68f2cc1956471bcb56a4eef045c0011de141b669d94d7339de5e79860f6b21bfbeffab821d5eb528759c
 DIST jemalloc-4.5.0.tar.bz2 449992 SHA256 
9409d85664b4f135b77518b0b118c549009dc10f6cba14557d170476611f6780 SHA512 
76953363fe1007952232220afa1a91da4c1c33c02369b5ad239d8dd1d0792141197c15e8489a8f4cd301b08494e65cadd8ecd34d025cb0285700dd78d7248821
 WHIRLPOOL 
33dc51258d6d27942b656fc355cdde24becf0cd50a507375dd51b2fa6c55a6444ff21bcdae0ebe4fae8d2e95fa31989f5cf8bd435a7a59385ebb225a0a4441fe
-DIST jemalloc-5.0.1.tar.bz2 499300 SHA256 
4814781d395b0ef093b21a08e8e6e0bd3dab8762f9935bbfb71679b0dea7c3e9 SHA512 
8cb5957a5724eb2bbad120cf0028ea8b2b14b4a416c1751b7c967351a7fd51135058ea0d3c4dc1d127c86f3aa7e9fd5ef101857110aabfdb7789427791c432c3
 WHIRLPOOL 
7bbaa407b1e403ef3bb5ecf6289dcf7f3cc9e31d8077d6e9b10e434e8f02e8e8c45ec890b67bcf39f8b7419ffcae893b4aa256f1a05750b196fcfbfadbd8696a
+DIST jemalloc-5.0.1.tar.bz2 499300 BLAKE2B 
551933fcd93315968cbf89bfadc40313717ff216141af8a131f2333d10090438ddf36fbfdc0ee831cbec6f930ae15aa9cfaafae72ed4f38dd97b00712ca918e8
 SHA512 
8cb5957a5724eb2bbad120cf0028ea8b2b14b4a416c1751b7c967351a7fd51135058ea0d3c4dc1d127c86f3aa7e9fd5ef101857110aabfdb7789427791c432c3

diff --git a/dev-libs/jemalloc/jemalloc-5.0.1.ebuild 
b/dev-libs/jemalloc/jemalloc-5.0.1.ebuild
index 62fde487659..ad448d5e1f7 100644
--- a/dev-libs/jemalloc/jemalloc-5.0.1.ebuild
+++ b/dev-libs/jemalloc/jemalloc-5.0.1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/jemalloc/jemalloc/releases/download/${PV}/${P}.tar.b
 
 LICENSE="BSD"
 SLOT="0/2"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~x86 
~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~x86 
~amd64-linux ~x86-linux ~x64-macos ~x64-solaris"
 IUSE="debug hardened +hugepages lazy-lock static-libs stats xmalloc"
 HTML_DOCS=( doc/jemalloc.html )
 PATCHES=( "${FILESDIR}/${PN}-5.0.1-strip-optimization.patch"



[gentoo-commits] repo/gentoo:master commit in: net-analyzer/icinga/

2017-12-03 Thread Matt Thode
commit: 8b9ce8259b379a8b409936efc77363b07197afa3
Author: Matthew Thode  gentoo  org>
AuthorDate: Sun Dec  3 17:57:25 2017 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sun Dec  3 17:57:50 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b9ce825

net-analyzer/icinga: don't do unnecessary chowns

Package-Manager: Portage-2.3.14, Repoman-2.3.6

 net-analyzer/icinga/icinga-1.14.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-analyzer/icinga/icinga-1.14.0-r1.ebuild 
b/net-analyzer/icinga/icinga-1.14.0-r1.ebuild
index bf0de98f741..681ce94efa8 100644
--- a/net-analyzer/icinga/icinga-1.14.0-r1.ebuild
+++ b/net-analyzer/icinga/icinga-1.14.0-r1.ebuild
@@ -165,7 +165,7 @@ src_install() {
 
if use eventhandler ; then
dodir /etc/icinga/eventhandlers
-   fowners icinga:icinga /etc/icinga/eventhandlers
+#  fowners icinga:icinga /etc/icinga/eventhandlers
fi
 
keepdir /etc/icinga



[gentoo-commits] repo/gentoo:master commit in: app-admin/puppet/files/, app-admin/puppet/

2017-12-03 Thread Matt Thode
commit: 08001c72ddb19ef04e825aa57b90b024de8a9b40
Author: Matthew Thode  gentoo  org>
AuthorDate: Sun Dec  3 18:00:08 2017 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sun Dec  3 18:00:08 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08001c72

app-admin/puppet: remove unused files

thanks mm1ke

Package-Manager: Portage-2.3.14, Repoman-2.3.6

 app-admin/puppet/Manifest   |  2 +-
 app-admin/puppet/files/puppet.init-r1   | 24 ---
 app-admin/puppet/files/puppetmaster.init-r1 | 30 -
 3 files changed, 1 insertion(+), 55 deletions(-)

diff --git a/app-admin/puppet/Manifest b/app-admin/puppet/Manifest
index 34c545c90fe..629b3dd0e0c 100644
--- a/app-admin/puppet/Manifest
+++ b/app-admin/puppet/Manifest
@@ -2,4 +2,4 @@ DIST puppet-4.10.1.tar.gz 2954351 BLAKE2B 
6cf8ac28d8c09f4b82956b3fc8ebc17c0ec35c
 DIST puppet-4.10.8.tar.gz 2979824 BLAKE2B 
802b65d48ff7d8303e3cc847a9f753a5e19c0ada6ee02dc1fc9c748da8d69462c34bdfeddeedf0057179ff1133665439c41e970c41ca1728463292ef26e996ab
 SHA512 
9f3384702dd4938e1e00aeceb0745b760de32000e0dd59d5b846d1120a46026499176a51d0409e3a0ae414efc0872854c204d1941385695a4c57c209fbd1f28d
 DIST puppet-4.10.9.tar.gz 2981668 BLAKE2B 
315c39953c2ba70b547fd7a393c7be0bd3c387bd52e3f383a932ebc03f9d96c17d988d53b15bcb8d08bc22ebcaf1c9c5cff00f9c34d730e231417565aad5311f
 SHA512 
0ac70f716a602b15d28504cc594c5a0d4f8005083de6751c682dc9180feca68148d942353a63e16aaa2e783e6ebe90b8f77b0b033c671a5134bcbcdff36a3204
 DIST puppet-5.1.0.tar.gz 2734018 BLAKE2B 
d4169fee328710b7685de2606196de68e21ca31f9a9945bdd84255f5185fd2d95c6543a7b88b5130f1f01e60e04294664de71a8ccd1319c2e0bebf4d031e6225
 SHA512 
07019f40c5b7f18243f13abb899c2ff2ea4b135895ab98c13da3df50f8e720e2759f8eb39e349ff04286da7de504cffea3df8acf9711e8591b25001a2a3f9c15
-DIST puppet-5.3.3.tar.gz 2843386 SHA256 
45360f64fe0375df617571d58e929515e2094daa1d0dc78e2b6718d7cbeaf18e SHA512 
b5bb9ac4059855c7cac624ea0fdc2c3366cea82bf07bee195a179a0a709fa53e7fffe883e581c1e07a64705a638b156288301227f7334226ddc401a9bf770afe
 WHIRLPOOL 
19c8511ba58186692ee0ace02158c16529715cc213f0eb7266bb078a10db6e698081edc4b3e0735f1e79fb568066cc6f1699d0b1a954a29d74d1a91f393130fa
+DIST puppet-5.3.3.tar.gz 2843386 BLAKE2B 
dc96282ff2d6bb6719362cd9b2e856537019bd888af8ba897e37fc97584cd76c1d4179b3b629d2bb20d1dade0f84ec88ab41dd0d66cccd2c850a87f96ccf4b65
 SHA512 
b5bb9ac4059855c7cac624ea0fdc2c3366cea82bf07bee195a179a0a709fa53e7fffe883e581c1e07a64705a638b156288301227f7334226ddc401a9bf770afe

diff --git a/app-admin/puppet/files/puppet.init-r1 
b/app-admin/puppet/files/puppet.init-r1
deleted file mode 100644
index 36398d26fe2..000
--- a/app-admin/puppet/files/puppet.init-r1
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-PUPPET_PID_DIR="${PUPPET_PID_DIR:-/var/run/puppet}"
-
-pidfile="${PUPPET_PID_DIR}/puppet.pid"
-PUPPET_LOG_DIR="/var/log/puppet"
-
-extra_started_commands="reload"
-
-command="/usr/bin/puppet"
-
-command_args="agent --pidfile ${pidfile} ${PUPPET_EXTRA_OPTS}"
-
-depend() {
-   need localmount
-   use dns logger puppetmaster netmount nfsmount
-}
-
-start_pre() {
-   checkpath --directory --owner puppet:puppet "${PUPPET_PID_DIR}"
-   checkpath --directory --owner puppet:puppet --mode 750 ${PUPPET_LOG_DIR}
-}

diff --git a/app-admin/puppet/files/puppetmaster.init-r1 
b/app-admin/puppet/files/puppetmaster.init-r1
deleted file mode 100644
index 22479c5e1a6..000
--- a/app-admin/puppet/files/puppetmaster.init-r1
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-if [ "${SVCNAME}" = "puppetmaster" ] ; then
-   PUPPETMASTER_PID="master"
-else
-   PUPPETMASTER_PID="${SVCNAME#*.}"
-fi
-PUPPETMASTER_PID_DIR="${PUPPETMASTER_PID_DIR:-/var/run/puppet}"
-pidfile="${PUPPETMASTER_PID_DIR}/${PUPPETMASTER_PID}.pid"
-PUPPET_LOG_DIR="/var/log/puppet"
-
-command_args="master --pidfile ${pidfile} ${PUPPETMASTER_EXTRA_OPTS}"
-if [ -n "${PUPPETMASTER_PORT}" ] ; then
-   command_args="${command_args} --masterport ${PUPPETMASTER_PORT}"
-fi
-
-command="/usr/bin/puppet"
-
-depend() {
-   need localmount
-   use dns logger slapd netmount nfsmount
-}
-
-start_pre() {
-   checkpath --directory --owner puppet:puppet "${PUPPETMASTER_PID_DIR}"
-   checkpath --directory --owner puppet:puppet --mode 750 ${PUPPET_LOG_DIR}
-   checkpath --file --owner puppet:puppet --mode 640 
"${PUPPET_LOG_DIR}/masterhttp.log"
-}



[gentoo-commits] repo/gentoo:master commit in: app-text/docbook-xsl-stylesheets/

2017-12-03 Thread Sergei Trofimovich
commit: b824bf3a37464359c53adc5aaef71e687e5d4345
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Dec  3 17:15:22 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Dec  3 18:07:59 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b824bf3a

app-text/docbook-xsl-stylesheets: stable 1.79.1-r2 for hppa, bug #612194

Package-Manager: Portage-2.3.16, Repoman-2.3.6
RepoMan-Options: --include-arches="hppa"

 app-text/docbook-xsl-stylesheets/Manifest   | 2 +-
 .../docbook-xsl-stylesheets/docbook-xsl-stylesheets-1.79.1-r2.ebuild| 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-text/docbook-xsl-stylesheets/Manifest 
b/app-text/docbook-xsl-stylesheets/Manifest
index 334c449eecd..0a0cbaaa9ae 100644
--- a/app-text/docbook-xsl-stylesheets/Manifest
+++ b/app-text/docbook-xsl-stylesheets/Manifest
@@ -1 +1 @@
-DIST docbook-xsl-1.79.1.tar.bz2 21967928 SHA256 
725f452e12b296956e8bfb876ccece71eeecdd14b94f667f3ed9091761a4a968 SHA512 
83325cbaf1545da6b9b8b77f5f0e6fdece26e3c455164b300a1aa3d19e3bd29ae71fd563553a714a5394968d1a65684c6c7987c77524469358d18b8c227025c7
 WHIRLPOOL 
3bd03072aba15cda9e7a18cb6c1edfc91cdb706811fd07d5aa69df1ffd5a48394848079cf63c67360104f0c0ec89920268b49d358c62bf5f61d6030938be0a0f
+DIST docbook-xsl-1.79.1.tar.bz2 21967928 BLAKE2B 
42b7e989616d16fa100c2dad713830ecedf6c7e26f56f99a9bf9330385c753f282cea1033e689196352bd41f9dca59a06ff09fc4638051cb478a630df9bfeb0b
 SHA512 
83325cbaf1545da6b9b8b77f5f0e6fdece26e3c455164b300a1aa3d19e3bd29ae71fd563553a714a5394968d1a65684c6c7987c77524469358d18b8c227025c7

diff --git 
a/app-text/docbook-xsl-stylesheets/docbook-xsl-stylesheets-1.79.1-r2.ebuild 
b/app-text/docbook-xsl-stylesheets/docbook-xsl-stylesheets-1.79.1-r2.ebuild
index 77db5fdb1ab..b1fa7e4e9ac 100644
--- a/app-text/docbook-xsl-stylesheets/docbook-xsl-stylesheets-1.79.1-r2.ebuild
+++ b/app-text/docbook-xsl-stylesheets/docbook-xsl-stylesheets-1.79.1-r2.ebuild
@@ -17,7 +17,7 @@ SRC_URI="mirror://sourceforge/docbook/${MY_P}.tar.bz2"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~sparc-fbsd ~x86-fbsd 
~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~sparc-fbsd ~x86-fbsd 
~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="ruby"
 
 RDEPEND=">=app-text/build-docbook-catalog-1.1



[gentoo-commits] repo/gentoo:master commit in: app-admin/hddtemp/

2017-12-03 Thread Sergei Trofimovich
commit: 48d7d0047693e5f50d4c6284ec805f9f2ef0dd27
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Dec  3 17:15:32 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Dec  3 18:07:59 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48d7d004

app-admin/hddtemp: stable 0.3_beta15-r26 for hppa, bug #612468

Package-Manager: Portage-2.3.16, Repoman-2.3.6
RepoMan-Options: --include-arches="hppa"

 app-admin/hddtemp/Manifest  | 4 ++--
 app-admin/hddtemp/hddtemp-0.3_beta15-r26.ebuild | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/app-admin/hddtemp/Manifest b/app-admin/hddtemp/Manifest
index 47640e8f0d8..1d009ff90fc 100644
--- a/app-admin/hddtemp/Manifest
+++ b/app-admin/hddtemp/Manifest
@@ -1,2 +1,2 @@
-DIST hddtemp-0.3-beta15.tar.bz2 256372 SHA256 
618541584054093d53be8a2d9e81c97174f30f00af91cb8700a97e442d79ef5b SHA512 
7db5a3dff60c59ce147b996ea4f8b6de1abcd34301bb863507b4d4b44e72fdc031078867a7f37161e67e74f6b426a1d856d3081179c678d2a442815bb0faa94d
 WHIRLPOOL 
2ce6a2336737e8cbb409443b874c6767c753fbe4bb700540f9a545e69cd951d3de5743d5b26bcd3a3f8e007b1364273ec85d15da8a00968895def063aaac7705
-DIST hddtemp-20080531.db.bz2 5627 SHA256 
6a12bb68283c3224bef2ab086ae810b3f6b17b38f8203350acb3a73e21a6dfbd SHA512 
cd03cc300aece4f7427fde1b58840643c8e41e6c0ce30b418a62bf44b268f249ef3dc4f5f4bcbc9cc0cfe0346c18d4f1da22451c87efc3d46faebcb81a1fe059
 WHIRLPOOL 
7443366204127c0831ce78a5dfd3506ff82a6c79a7daf75cc79e6bba6aad0357f7092c03e792e2e4ee31c2b47a8d8a15456e7b2c176d3a1c6b4633486f450666
+DIST hddtemp-0.3-beta15.tar.bz2 256372 BLAKE2B 
1c928234c36172c387a002190045cd05007f4b4b8d74eb378ba810ea9aad96951b7a9b3b0f872130677fca1f294d86f855327dcfa5a263c9f3c7d58fbbba502e
 SHA512 
7db5a3dff60c59ce147b996ea4f8b6de1abcd34301bb863507b4d4b44e72fdc031078867a7f37161e67e74f6b426a1d856d3081179c678d2a442815bb0faa94d
+DIST hddtemp-20080531.db.bz2 5627 BLAKE2B 
b973a981ee55033c8ba190efd9dc8586589292ef1f2b00542be7db2be64df812847665abefc7517f7c71dc70df153766570f62b69fc4891e758e82200ff8d589
 SHA512 
cd03cc300aece4f7427fde1b58840643c8e41e6c0ce30b418a62bf44b268f249ef3dc4f5f4bcbc9cc0cfe0346c18d4f1da22451c87efc3d46faebcb81a1fe059

diff --git a/app-admin/hddtemp/hddtemp-0.3_beta15-r26.ebuild 
b/app-admin/hddtemp/hddtemp-0.3_beta15-r26.ebuild
index 988a38401bf..3d5ce71a824 100644
--- a/app-admin/hddtemp/hddtemp-0.3_beta15-r26.ebuild
+++ b/app-admin/hddtemp/hddtemp-0.3_beta15-r26.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="http://download.savannah.gnu.org/releases/hddtemp/${MY_P}.tar.bz2 mirro
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ppc ~ppc64 sparc x86"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ~ppc64 sparc x86"
 IUSE="network-cron nls selinux"
 
 DEPEND=""



[gentoo-commits] repo/gentoo:master commit in: sys-apps/guix/

2017-12-03 Thread Sergei Trofimovich
commit: 1bb2ae1d9f2d908914e1f0bbb4754b722e5f9c58
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Dec  3 18:23:36 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Dec  3 18:23:36 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1bb2ae1d

sys-apps/guix: pin to guile subslot

Even though guix works against runtime guile-2.2
when built against-guile-2.0 it becomes very slow
because it has to discard all precompiled files.

Package-Manager: Portage-2.3.16, Repoman-2.3.6

 sys-apps/guix/Manifest | 14 +++---
 .../guix/{guix-0.13.0.ebuild => guix-0.13.0-r1.ebuild} |  2 +-
 2 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/sys-apps/guix/Manifest b/sys-apps/guix/Manifest
index e15e1eb103f..73c4b6ccf56 100644
--- a/sys-apps/guix/Manifest
+++ b/sys-apps/guix/Manifest
@@ -1,7 +1,7 @@
-DIST guix-0.12.0.tar.gz 15823786 SHA256 
6201e21186a7098af256d97562662d95353b1047799b9b216e1dd6e7692dfec9 SHA512 
d61cb289d3773977400fa3c49869f30a3feb5e0364368017b9b8eaadee814c5c31897be398d6ff142349337334eb51cb6d0354bee27c0365de69ce1a09e858d3
 WHIRLPOOL 
9515967a05a449f24da49e95340a60fb91cc471fcc532ce6cfaaea82c9161e3a65a1adc4d95e9997f019565243ca385845edc484981adfc5956112092687a0ec
-DIST guix-0.13.0.tar.gz 18490387 SHA256 
b28d52c25ba2fff53be51d7b0027f69ca52416c26b4a0100a40221b73d63a3be SHA512 
39d4e627f69850da650448b72008c1b73cbda0286d6b805bb1ea14d72eb49c5f6bdf30755b791a8b9cbb94e91ce8c1f360963250587591ce1a47db457c901daf
 WHIRLPOOL 
365b1a74fe63bbb30605b13697d13703cbc10d12af925baefedb74d0694329ca1219630b9931e07394404c41c79d48554b61af57d408d0bdfa753e4055e0093a
-DIST guix-bootstrap-aarch64-linux-20170217-guile-2.0.14.tar.xz.bootstrap 
2948976 SHA256 3939909f24dcb955621aa7f81ecde6844bea8a083969c2d275c55699af123ebe 
SHA512 
b3a5b457017357dedb71db98ef089ac90ca2b88ec5dbf0cec6c829dff7167c5478797a8d14850dd2d951713632c2859950be6c5eb029e6f6c224eecef97efd27
 WHIRLPOOL 
12c7a27f1fcc6491f95fb663bf630b844a33068460a71827cf67e2cfb579ba4021d7cc41b151b4d9073a9ec3b1406688426c8d8b998163b2e01ad473a0b16b96
-DIST guix-bootstrap-armhf-linux-20150101-guile-2.0.11.tar.xz.bootstrap 2717576 
SHA256 e551d05d4d385d6706ab8d574856a087758294dc90ab4c06e70a157a685e23d6 SHA512 
d546e2c0f676a49af482caae6f5575c7937647a81d37e49ad8be6fe12d58989cb825b5e12f2da28aff4649ee1a198ffb8f4a0beea65835a60aefaa905e87e337
 WHIRLPOOL 
c8aa4c4743768477d3a495fbdbe9d4818e9860411f4df73843a149c8659105f921501d0a5dfc2d121fa872a23f543174c84f864dce1eff69d175c456bdb5efb9
-DIST guix-bootstrap-i686-linux-20131110-guile-2.0.9.tar.xz.bootstrap 2656076 
SHA256 b757cd46bf13ecac83fb8e955fb50096ac2d17bb610ca8eb816f29302a00a846 SHA512 
f2b257e5b10dcd7421273d8d04782a2bd733781094dd963bf5bd8294604dbd158ea25cbc383a227edce84de968a962ec834226ebdd137a2e1857e2191bfada8c
 WHIRLPOOL 
270f3602e8ea10f28ab003aed28b3d19ab971c69029d1d71f7fe9601d5120222baf245e3e48910dbeedf1469227d59beb8190f23bdd2ef070390467e3f49b8c9
-DIST guix-bootstrap-mips64el-linux-20131110-guile-2.0.9.tar.xz.bootstrap 
2734180 SHA256 994680f0001346864aa2c2cc5110f380ee7518dcd701c614291682b8e948f73b 
SHA512 
8c4be098a31f63d56e7d35c174ce4095ba8317662c365d44c005980b38ba499461926754a4659e699ab271bb841c9da514f1a36b812d881c212a5f12177d73c0
 WHIRLPOOL 
f247e65cc558057ba65aa7c554f07d9ec76de2fcc4828038b1d1d89b8c5449a803fd7942812e85fced8200f1af5d981b5cff7fa53cd026335c0ba906ced251f4
-DIST guix-bootstrap-x86_64-linux-20131110-guile-2.0.9.tar.xz.bootstrap 2885996 
SHA256 037b103522a2d0d7d69c7ffd8de683dfe5bb4b59c1fafd70b4ffd397fd2f57f0 SHA512 
96efc583f42f6c7647bc026e2d2a96d603e7bea12ca02f6bcc65e819b9966082ac4c9f7e42f64536ff42a988e4766e695d87a82c73dd97d80745975a05badb23
 WHIRLPOOL 
61b623c961dc3b9f4c59f4d208c1302ea98d640b915cc53dce90551c3f48f9844381bb674d4d835421a44a71d903dc90c38a0f7a17ccc049ec388a4e948239b6
+DIST guix-0.12.0.tar.gz 15823786 BLAKE2B 
96e1156a4ee32ec1500afd5529bade5408f538ea5280817efb1c31b6563e8aeefb554e82e9e4227198bf43e7b440aa062dd31cb607974f22859097e8f072dc84
 SHA512 
d61cb289d3773977400fa3c49869f30a3feb5e0364368017b9b8eaadee814c5c31897be398d6ff142349337334eb51cb6d0354bee27c0365de69ce1a09e858d3
+DIST guix-0.13.0.tar.gz 18490387 BLAKE2B 
e146f7a414f91076eafebe122c0abd772c1c2a562da015e952f978e97528c099905c1e7157e659633e644cbbd7066feac021550d52cb76d5999ff464fb685f2f
 SHA512 
39d4e627f69850da650448b72008c1b73cbda0286d6b805bb1ea14d72eb49c5f6bdf30755b791a8b9cbb94e91ce8c1f360963250587591ce1a47db457c901daf
+DIST guix-bootstrap-aarch64-linux-20170217-guile-2.0.14.tar.xz.bootstrap 
2948976 BLAKE2B 
3337e52c2db259af98a6ed0eb418a6cd388e11e09c277c460e14edb7065d0170fd544415ccb72db1b1b2559fe700ce313698aed11846271052460f9af51f499a
 SHA512 
b3a5b457017357dedb71db98ef089ac90ca2b88ec5dbf0cec6c829dff7167c5478797a8d14850dd2d951713632c2859950be6c5eb029e6f6c224eecef97efd27
+DIST guix-bootstrap-armhf-linux-20150101-guile-2.0.11.tar.xz.bootstrap 2717576 
BLAKE2B 

<    1   2   3