[gentoo-commits] repo/gentoo:master commit in: net-p2p/gtk-gnutella/

2015-09-24 Thread Hans de Graaff
commit: 2374a785037f302e9f54cc75c32ec4510d3f0fdd
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Sep 25 06:25:17 2015 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Sep 25 06:25:17 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2374a785

net-p2p/gtk-gnutella: cleanup

Package-Manager: portage-2.2.20.1

 net-p2p/gtk-gnutella/Manifest  |  1 -
 net-p2p/gtk-gnutella/gtk-gnutella-1.1.1.ebuild | 86 --
 2 files changed, 87 deletions(-)

diff --git a/net-p2p/gtk-gnutella/Manifest b/net-p2p/gtk-gnutella/Manifest
index 65dac58..610d26d 100644
--- a/net-p2p/gtk-gnutella/Manifest
+++ b/net-p2p/gtk-gnutella/Manifest
@@ -1,3 +1,2 @@
-DIST gtk-gnutella-1.1.1.tar.bz2 35342037 SHA256 
6e077204ddc23d0b8a044c3d7f12f40e8876b523f12a90c00b6725170611b501 SHA512 
c8226f74bbbc901a608aa59544ba5d7f924f5bcef0e98ba16145c4ae07a93dc710376201cf46bedaddcefb4438e18c259ce06be076a5f365a80b445cf788ec02
 WHIRLPOOL 
19e41cea5dfbfc27d21c7a5ed7ea69a14ef4fb4c0285eedd218d2506a6a133bb9f81462e4396bc936528618216d419f1ac38e53ff887c9e640cd51264727d824
 DIST gtk-gnutella-1.1.3.tar.bz2 19504243 SHA256 
2659ddb846f60d13789674e926a71bbb4a8b9d3ca98c6b034a95eaa073531405 SHA512 
df143b6e89b0a4c6e8ddbba24ddcab3603f04e7df1fab7d389241a112c6cd3297e4837dfc0d225289997b99867a5466a5b8697c68ef2bdc5817261fbc103d505
 WHIRLPOOL 
fe1a1375e75204bdf92c9690f1885211dc456c2cc466f4d7e47c865fc0e1c77ce07d27b58ff2e53c4c28214d055878c7d805f0b79043748e1448c6b8ac398c82
 DIST gtk-gnutella-1.1.4.tar.bz2 19546318 SHA256 
6ae259ff9d5f20a2d10dba66ed6cbe5b56552307a6e8bc36df053b70aff4c956 SHA512 
e09fde0e1f8a701e099f91768e032d022f6e9d41cdb4cc7833f1e7ba0e2795bc102c6b835960eb69e577ffc1426c42f6e1682ebadb8c5a643a796f88ff204ac6
 WHIRLPOOL 
a9e63865896444c2ba22e9cf4302f5da5f6bdcec257cc87c618c3c3514cbf924e0eb6df7909b21ad5798650a577adf38cb37806810fd3f6a7f67be5f7a7cc8f1

diff --git a/net-p2p/gtk-gnutella/gtk-gnutella-1.1.1.ebuild 
b/net-p2p/gtk-gnutella/gtk-gnutella-1.1.1.ebuild
deleted file mode 100644
index 62a6075..000
--- a/net-p2p/gtk-gnutella/gtk-gnutella-1.1.1.ebuild
+++ /dev/null
@@ -1,86 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit eutils
-
-IUSE="nls dbus ssl +gtk"
-
-DESCRIPTION="A GTK+ Gnutella client"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
-HOMEPAGE="http://gtk-gnutella.sourceforge.net/";
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="amd64 ppc x86 ~x86-fbsd"
-
-RDEPEND="
-   dev-libs/glib:2
-   sys-libs/zlib
-   gtk? ( >=x11-libs/gtk+-2.2.1:2 )
-   dbus? ( >=sys-apps/dbus-0.35.2 )
-   ssl? ( >=net-libs/gnutls-2.2.5 )
-   nls? ( >=sys-devel/gettext-0.11.5 )"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig"
-
-src_prepare() {
-   strip-linguas -i po
-
-   echo "# Gentoo-selected LINGUAS" > po/LINGUAS
-   for ling in ${LINGUAS}; do
-   echo $ling >> po/LINGUAS
-   done
-}
-
-src_configure() {
-   # There is no option to turn off optimization through the build.sh
-   # script.
-   sed -i -e "s/Configure -Oder/Configure -Oder -Doptimize=none/" build.sh 
|| die
-
-   # The build script does not support the equivalent --enable
-   # options so we must construct the configuration by hand.
-
-   local myconf
-
-   if ! use nls; then
-   myconf="${myconf} --disable-nls"
-   fi
-
-   if ! use dbus; then
-   myconf="${myconf} --disable-dbus"
-   fi
-
-   if ! use ssl; then
-   myconf="${myconf} --disable-gnutls"
-   fi
-
-   if use gtk; then
-   myconf="${myconf} --gtk2"
-   else
-   myconf="${myconf} --topless"
-   fi
-
-   ./build.sh \
-   --configure-only \
-   --prefix="/usr" \
-   --cc=$(tc-getCC) \
-   ${myconf}
-}
-
-src_compile() {
-   # Build system is not parallel-safe, bug 500760
-   emake -j1
-}
-
-src_install() {
-   dodir /usr/bin
-   emake INSTALL_PREFIX="${D}" install || die "Install failed"
-   dodoc AUTHORS ChangeLog README TODO
-
-   # Touch the symbols file into the future to avoid warnings from
-   # gtk-gnutella later on, since we will most likely strip the binary.
-   touch --date="next minute" "${D}/usr/lib/gtk-gnutella/gtk-gnutella.nm" 
|| die
-}



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/pry/

2015-09-24 Thread Hans de Graaff
commit: 1dd4fb516b845639736d00937214695110988546
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Sep 25 06:03:55 2015 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Sep 25 06:04:26 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1dd4fb51

dev-ruby/pry: version bump

Package-Manager: portage-2.2.20.1

 dev-ruby/pry/Manifest  |  1 +
 dev-ruby/pry/pry-0.10.2.ebuild | 49 ++
 2 files changed, 50 insertions(+)

diff --git a/dev-ruby/pry/Manifest b/dev-ruby/pry/Manifest
index 6d64fbd..a711ace 100644
--- a/dev-ruby/pry/Manifest
+++ b/dev-ruby/pry/Manifest
@@ -1,2 +1,3 @@
 DIST pry-0.10.1.tar.gz 204021 SHA256 
c04af53883e742d6cf44c3923a6e397b14f14520f73da0d3f68dfc0855e8645b SHA512 
cbb850d5bc9012da376ed87a894c939e20f0c1992565e3f9c282a85fd3026c2eb71a487672e2dc141a8f1ac0016f467782448e318012ef761e5cc21edb376b92
 WHIRLPOOL 
1b320e9e6956121b4b51d9d56b09deec823e00b3384b74065047bf2c32fc7d145bb34e63906cd1b0093f160c3e7b5a449f1ae1cecaeed5d36a388cb053786780
+DIST pry-0.10.2.tar.gz 204207 SHA256 
d0bb0f89d13f623cedcc772110666156f930ff36c663927d4e54f846385efcdf SHA512 
11438b4935adf9541bcd10bd9b1894179f0ad05db3361e6ad6589421bc60a80071773c0188c277f0bd44208dffa1694696649f79be28cd33164d2a7efe6ac2b9
 WHIRLPOOL 
f866ade6961f2ac7a57ad7e1c1ac4d3dbf304f30cb46b06b2383649a47d3a3ed80e9500a434ff7123204c12c58eedda1a9bbc9a407752700f34213c20f90008d
 DIST pry-0.9.12.6.gem 198144 SHA256 
0107730b35bdd4fd042fa9c92263174a38f975844230bc5c583fd4816c55af72 SHA512 
451da80d9224f3c826bdcb0492d1880005143ae489dc1de0021ed73fd3d34ef3bab7c06dd631cf9737c7b4d9b031d1ee7be05c4e4d99ab9af24231ce388ac3b9
 WHIRLPOOL 
c04d80c3e2a357dbdab549be0d5b83ce319dcfbac286dd5b7e156e1a800cd87d89974a5213e8fb0860819a606a5633295ed0b645ab049a68674cf68a2d1a947d

diff --git a/dev-ruby/pry/pry-0.10.2.ebuild b/dev-ruby/pry/pry-0.10.2.ebuild
new file mode 100644
index 000..9c13287
--- /dev/null
+++ b/dev-ruby/pry/pry-0.10.2.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+USE_RUBY="ruby19 ruby20 ruby21 ruby22"
+
+RUBY_FAKEGEM_RECIPE_DOC="yard"
+RUBY_FAKEGEM_RECIPE_TEST="rspec"
+RUBY_FAKEGEM_EXTRADOC="README.md CHANGELOG.md"
+RUBY_FAKEGEM_GEMSPEC=${PN}.gemspec
+
+inherit ruby-fakegem
+
+DESCRIPTION="Pry is a powerful alternative to the standard IRB shell for Ruby"
+HOMEPAGE="https://github.com/pry/pry/wiki";
+SRC_URI="https://github.com/pry/pry/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+IUSE=""
+SLOT="ruby19"
+
+LICENSE="MIT"
+KEYWORDS="~amd64 ~arm ~ppc64 ~x86"
+
+ruby_add_rdepend "
+   >=dev-ruby/coderay-1.1.0 =dev-ruby/coderay-1.1*
+   >=dev-ruby/slop-3.4.1:3
+   >=dev-ruby/method_source-0.8.1 =dev-ruby/method_source-0.8*"
+
+ruby_add_bdepend "
+   test? (
+   >=dev-ruby/open4-1.3
+   >=dev-ruby/rake-0.9
+   >=dev-ruby/mocha-1.0
+   )"
+
+all_ruby_prepare() {
+   # Avoid unneeded dependency on git.
+   # Loosen coderay dependency.
+   sed -e '/git ls-files/d' \
+   -e '/coderay/s/~>/>=/' \
+   -e '/bundler/d' \
+   -i ${RUBY_FAKEGEM_GEMSPEC} || die
+   sed -e '/[Bb]undler/d' -e "1irequire 'mocha/api'\ " -i spec/helper.rb 
|| die
+   sed -e "1irequire 'ostruct'\ " -i spec/hooks_spec.rb || die
+   sed -e '/of Class after the singleton classes/,+4d' -i 
spec/method_spec.rb || die
+   # Out of date tests
+   rm spec/commands/gist_spec.rb || die
+}



[gentoo-commits] repo/gentoo:master commit in: x11-libs/gdk-pixbuf/

2015-09-24 Thread Markus Meier
commit: 2e2028f6202fda4c31b0f2d6327def790cd0d0e3
Author: Markus Meier  gentoo  org>
AuthorDate: Fri Sep 25 06:03:38 2015 +
Commit: Markus Meier  gentoo  org>
CommitDate: Fri Sep 25 06:03:38 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e2028f6

x11-libs/gdk-pixbuf: arm stable, bug #556314

Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="arm"

 x11-libs/gdk-pixbuf/gdk-pixbuf-2.30.8-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-libs/gdk-pixbuf/gdk-pixbuf-2.30.8-r2.ebuild 
b/x11-libs/gdk-pixbuf/gdk-pixbuf-2.30.8-r2.ebuild
index 2702116..5a8577c 100644
--- a/x11-libs/gdk-pixbuf/gdk-pixbuf-2.30.8-r2.ebuild
+++ b/x11-libs/gdk-pixbuf/gdk-pixbuf-2.30.8-r2.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="http://www.gtk.org/";
 
 LICENSE="LGPL-2+"
 SLOT="2"
-KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
 IUSE="+X debug +introspection jpeg jpeg2k tiff test"
 
 COMMON_DEPEND="



[gentoo-commits] repo/gentoo:master commit in: net-misc/wget/

2015-09-24 Thread Markus Meier
commit: 2452f23f5f0a262810e41dd9bd7818089ce2b9fd
Author: Markus Meier  gentoo  org>
AuthorDate: Fri Sep 25 06:02:37 2015 +
Commit: Markus Meier  gentoo  org>
CommitDate: Fri Sep 25 06:02:37 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2452f23f

net-misc/wget: arm stable, bug #560418

Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="arm"

 net-misc/wget/wget-1.16.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/wget/wget-1.16.3-r1.ebuild 
b/net-misc/wget/wget-1.16.3-r1.ebuild
index 87b9d09..2303854 100644
--- a/net-misc/wget/wget-1.16.3-r1.ebuild
+++ b/net-misc/wget/wget-1.16.3-r1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://gnu/wget/${P}.tar.xz"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd 
~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-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 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd 
~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="debug gnutls idn ipv6 nls ntlm pcre +ssl static test uuid zlib"
 
 LIB_DEPEND="idn? ( net-dns/libidn[static-libs(+)] )



[gentoo-commits] repo/gentoo:master commit in: net-dns/bind/

2015-09-24 Thread Markus Meier
commit: c0637f458f53eb6ca0a94ef02c923b2c7b39a2ed
Author: Markus Meier  gentoo  org>
AuthorDate: Fri Sep 25 06:00:43 2015 +
Commit: Markus Meier  gentoo  org>
CommitDate: Fri Sep 25 06:01:19 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0637f45

net-dns/bind: arm stable, bug #559462

Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="arm"

 net-dns/bind/bind-9.10.2_p4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-dns/bind/bind-9.10.2_p4.ebuild 
b/net-dns/bind/bind-9.10.2_p4.ebuild
index 94404d7..8b0e06c 100644
--- a/net-dns/bind/bind-9.10.2_p4.ebuild
+++ b/net-dns/bind/bind-9.10.2_p4.ebuild
@@ -39,7 +39,7 @@ SRC_URI="ftp://ftp.isc.org/isc/bind9/${MY_PV}/${MY_P}.tar.gz
 
 LICENSE="GPL-2 ISC BSD BSD-2 HPND JNIC openssl"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="berkdb +caps dlz doc filter- fixed-rrset geoip gost gssapi idn ipv6
 json ldap mysql nslint odbc postgres python rpz seccomp selinux ssl static-libs
 +threads urandom xml"



[gentoo-commits] repo/gentoo:master commit in: dev-python/cffi/

2015-09-24 Thread Justin Lecher
commit: 80a39d9fcf9036ccfe8dafe4a7f4bea3eb4b3c58
Author: Justin Lecher  gentoo  org>
AuthorDate: Thu Sep 24 12:55:43 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Fri Sep 25 06:00:02 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80a39d9f

dev-python/cffi: Add back version so that sparc is happy

Package-Manager: portage-2.2.21
RepoMan-Options: --force
Signed-off-by: Justin Lecher  gentoo.org>

 dev-python/cffi/Manifest  |  1 +
 dev-python/cffi/cffi-0.8.6.ebuild | 38 ++
 2 files changed, 39 insertions(+)

diff --git a/dev-python/cffi/Manifest b/dev-python/cffi/Manifest
index 1db4dd1..c4cd18a 100644
--- a/dev-python/cffi/Manifest
+++ b/dev-python/cffi/Manifest
@@ -1,3 +1,4 @@
+DIST cffi-0.8.6.tar.gz 196835 SHA256 
2532d9e3af9e3c6d0f710fc98b0295b563c7f39cfd97dd2242bd36fbf4900610 SHA512 
b913d459bf0d355f0cb42fa0587a940c227d6765450033b14ab4d5281173cd1875cd6872911bb4f0b567cc1c5b0ca330615ec5f6ba205b25c41b683ae8c77790
 WHIRLPOOL 
4a03a077f15f943e0f06acf1bc10572b19680379e36805dbfc3dfffb8a5d735d28d9bab38e2d233f3a347fc03cede8126cc2ce017c6e3a0896b9baecddfae39f
 DIST cffi-0.9.2.tar.gz 209160 SHA256 
1988ce7ff9c64ecd506175e90fd8f0a8c827cb241a23647175ce08126bb2 SHA512 
93371a1189955d3f794915f8e7c6f6b9ab36cd531ff0ddeeb2108364c94dbf4dbe5d7d3f75e0aa52576d1a59559c13ec3e0f68dec4d52e6221e683ac519b850c
 WHIRLPOOL 
dcdf3a35b35607a4982035e75332c0e2f87d2df5cca9df77c48c5d57cc783d341b77fd95f71681877695b03a12564f8f28717a975bd51e832f496b71f73c3736
 DIST cffi-1.1.2.tar.gz 326758 SHA256 
390970b602708c91ddc73953bb6929e56291c18a4d80f360afa00fad8b6f3339 SHA512 
d146984013b63382ea64bd2d6188cdbf9154cf83d66bf4dbb9353f1daea66f9eae07c6da47e152c5758d3458a742adde0310f71c792eb0a80950d7f857bfb943
 WHIRLPOOL 
02b92f0d13b02e351ba63e55a731c0b5480ae0b376c99a8dc1a256b3b55bf0119b4238dca88171605c1348b0847a6ff305ba4ec69cd1b42b9950708f42d6067e
 DIST cffi-1.2.1.tar.gz 335778 SHA256 
eab571deb0a152e2f53c404c08a94870a131526896cad08cd43bf86ce3771e3d SHA512 
26ab695d34ef1895f38c735b2c6400cbf6325d622ce93799513130791365bb71d656288e991b86861ac8e899872504c1f4368d27104c4ac9b881c83c7f8dad88
 WHIRLPOOL 
a8bbe3c24be660946c1f31fbb8b1f50810f78b9485a32aadfb091a624b5386641bde71981c58792f8e95e8e77cfce7d9959eb197c417464cf5351e568aa6336d

diff --git a/dev-python/cffi/cffi-0.8.6.ebuild 
b/dev-python/cffi/cffi-0.8.6.ebuild
new file mode 100644
index 000..a7862a6
--- /dev/null
+++ b/dev-python/cffi/cffi-0.8.6.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+PYTHON_COMPAT=( python{2_7,3_3,3_4} )
+
+inherit distutils-r1
+
+DESCRIPTION="Foreign Function Interface for Python calling C code"
+HOMEPAGE="http://cffi.readthedocs.org/";
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0/${PV}"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris"
+IUSE="doc"
+
+RDEPEND="virtual/libffi
+   dev-python/pycparser[${PYTHON_USEDEP}]
+   dev-python/pytest[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}"
+
+# Avoid race on _configtest.c 
(distutils/command/config.py:_gen_temp_sourcefile)
+DISTUTILS_IN_SOURCE_BUILD=1
+
+python_compile_all() {
+   use doc && emake -C doc html
+}
+
+python_test() {
+   py.test -x -v --ignore testing/test_zintegration.py c/ testing/ || die 
"Testing failed with ${EPYTHON}"
+}
+
+python_install_all() {
+   distutils-r1_python_install_all
+   use doc && dohtml -r doc/build/
+}



[gentoo-commits] repo/gentoo:master commit in: sys-auth/polkit/

2015-09-24 Thread Markus Meier
commit: 75e17b23daba4fb4bae64672124aa988a3416218
Author: Markus Meier  gentoo  org>
AuthorDate: Fri Sep 25 05:59:23 2015 +
Commit: Markus Meier  gentoo  org>
CommitDate: Fri Sep 25 05:59:23 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75e17b23

sys-auth/polkit: arm stable, bug #554878

Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="arm"

 sys-auth/polkit/polkit-0.113.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-auth/polkit/polkit-0.113.ebuild 
b/sys-auth/polkit/polkit-0.113.ebuild
index f0afbf7..780df39 100644
--- a/sys-auth/polkit/polkit-0.113.ebuild
+++ b/sys-auth/polkit/polkit-0.113.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="http://www.freedesktop.org/software/${PN}/releases/${P}.tar.gz";
 
 LICENSE="LGPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86"
 IUSE="examples gtk +introspection jit kde nls pam selinux systemd test"
 
 CDEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-misc/screen/

2015-09-24 Thread Markus Meier
commit: 30cf7fe2f37ed6a7910b0d4c1188b18bfd0b6d5a
Author: Markus Meier  gentoo  org>
AuthorDate: Fri Sep 25 05:57:50 2015 +
Commit: Markus Meier  gentoo  org>
CommitDate: Fri Sep 25 05:57:50 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30cf7fe2

app-misc/screen: arm stable, bug #559394

Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="arm"

 app-misc/screen/screen-4.3.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/screen/screen-4.3.1-r1.ebuild 
b/app-misc/screen/screen-4.3.1-r1.ebuild
index 23c9672..d936300 100644
--- a/app-misc/screen/screen-4.3.1-r1.ebuild
+++ b/app-misc/screen/screen-4.3.1-r1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~hppa-hpux ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~hppa-hpux ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
 IUSE="debug nethack pam selinux multiuser"
 
 CDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-python/pep8/, dev-python/pep8/files/

2015-09-24 Thread Ian Delaney
commit: f9eac8f6c208ecdad7c3848b7becd6c426fee78b
Author: Ian Delaney  gentoo  org>
AuthorDate: Fri Sep 25 04:26:31 2015 +
Commit: Ian Delaney  gentoo  org>
CommitDate: Fri Sep 25 05:33:17 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9eac8f6

dev-python/pep8: revbump to 1.6.2-r1

backport upstream patch restoring flake8 compatibility, patch by maintainer
see https://github.com/gentoo/gentoo/pull/129/ and Bug #561394

Package-Manager: portage-2.2.20.1

 .../pep8-1.6.2-restore-flake8-compatibility.patch  | 69 ++
 dev-python/pep8/pep8-1.6.2-r1.ebuild   | 37 
 2 files changed, 106 insertions(+)

diff --git 
a/dev-python/pep8/files/pep8-1.6.2-restore-flake8-compatibility.patch 
b/dev-python/pep8/files/pep8-1.6.2-restore-flake8-compatibility.patch
new file mode 100644
index 000..f355772
--- /dev/null
+++ b/dev-python/pep8/files/pep8-1.6.2-restore-flake8-compatibility.patch
@@ -0,0 +1,69 @@
+commit 435d1cbf995a659a82d1d4b42d25e3459556ef21
+Author: Ian Lee 
+Date:   Tue Mar 17 21:52:23 2015 -0700
+
+Reverted fix for #368 which had unintended repurcussions in flake8 and 
other places.
+
+This fix reverts to the parsing of user config (~/.config/pep8), then 
local directory
+config files, and finally overrides with cli options as was the behavior 
back in 1.5.7
+
+diff --git a/CHANGES.txt b/CHANGES.txt
+index 85eb043..5499abd 100644
+--- a/CHANGES.txt
 b/CHANGES.txt
+@@ -5,6 +5,12 @@ Changelog
+ 1.6.x (unreleased)
+ --
+ 
++Changes:
++
++* Reverted the fix in #368, "options passed on command line are only ones
++  accepted" feature. This has many unintended consequences in pep8 and flake8
++  and needs to be reworked when I have more time.
++
+ 1.6.2 (2015-02-15)
+ --
+ 
+diff --git a/pep8.py b/pep8.py
+index 9f40381..4d993da 100755
+--- a/pep8.py
 b/pep8.py
+@@ -1984,24 +1984,24 @@ def read_config(options, args, arglist, parser):
+ 
+ local_dir = os.curdir
+ 
++if USER_CONFIG and os.path.isfile(USER_CONFIG):
++if options.verbose:
++print('user configuration: %s' % USER_CONFIG)
++config.read(USER_CONFIG)
++
++parent = tail = args and os.path.abspath(os.path.commonprefix(args))
++while tail:
++if config.read(os.path.join(parent, fn) for fn in PROJECT_CONFIG):
++local_dir = parent
++if options.verbose:
++print('local configuration: in %s' % parent)
++break
++(parent, tail) = os.path.split(parent)
++
+ if cli_conf and os.path.isfile(cli_conf):
+ if options.verbose:
+ print('cli configuration: %s' % cli_conf)
+ config.read(cli_conf)
+-else:
+-if USER_CONFIG and os.path.isfile(USER_CONFIG):
+-if options.verbose:
+-print('user configuration: %s' % USER_CONFIG)
+-config.read(USER_CONFIG)
+-
+-parent = tail = args and os.path.abspath(os.path.commonprefix(args))
+-while tail:
+-if config.read(os.path.join(parent, fn) for fn in PROJECT_CONFIG):
+-local_dir = parent
+-if options.verbose:
+-print('local configuration: in %s' % parent)
+-break
+-(parent, tail) = os.path.split(parent)
+ 
+ pep8_section = parser.prog
+ if config.has_section(pep8_section):

diff --git a/dev-python/pep8/pep8-1.6.2-r1.ebuild 
b/dev-python/pep8/pep8-1.6.2-r1.ebuild
new file mode 100644
index 000..c9ac898
--- /dev/null
+++ b/dev-python/pep8/pep8-1.6.2-r1.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy pypy3 )
+
+inherit distutils-r1
+
+DESCRIPTION="Python style guide checker"
+HOMEPAGE="https://github.com/jcrocholl/pep8 https://pypi.python.org/pypi/pep8";
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
+IUSE="doc"
+
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
+   doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
+RDEPEND="${DEPEND}"
+
+PATCHES=( "${FILESDIR}/${P}-restore-flake8-compatibility.patch" )
+
+python_compile_all() {
+   use doc && emake -C docs html
+}
+
+python_test() {
+   PYTHONPATH="${S}" "${PYTHON}" pep8.py -v --testsuite=testsuite || die
+   PYTHONPATH="${S}" "${PYTHON}" pep8.py --doctest -v || die
+}
+
+python_install_all() {
+   use doc && local HTML_DOCS=( docs/_build/html/. )
+   distutils-r1_python_install_all
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/flake8/

2015-09-24 Thread Ian Delaney
commit: 1da56ac5f3bc3b2a8e1970d8af7fa23a546464be
Author: Ian Delaney  gentoo  org>
AuthorDate: Fri Sep 25 05:33:02 2015 +
Commit: Ian Delaney  gentoo  org>
CommitDate: Fri Sep 25 05:33:18 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1da56ac5

dev-python/flake8: support compatible pep8-1.6* versions

Adjust RDEPEND and setup.py to allow compatible pep8 versions
patch submitted via https://github.com/gentoo/gentoo/pull/129
and Bug #561394 by maintainer, remove uneeded recent versions

Package-Manager: portage-2.2.20.1

 dev-python/flake8/Manifest |  1 -
 dev-python/flake8/flake8-2.4.0-r1.ebuild   | 41 --
 ...{flake8-2.4.1.ebuild => flake8-2.4.1-r1.ebuild} |  6 ++--
 3 files changed, 3 insertions(+), 45 deletions(-)

diff --git a/dev-python/flake8/Manifest b/dev-python/flake8/Manifest
index 1f57485..58c8d1d 100644
--- a/dev-python/flake8/Manifest
+++ b/dev-python/flake8/Manifest
@@ -1,5 +1,4 @@
 DIST flake8-2.0.tar.gz 10511 SHA256 
8dce4f7e64cc202cc6da93eab84b2ce660110ff684b6738bba64a0a431b3bc69 SHA512 
6e3d8030562c4489dce8d4b17464ea8c0239b7c28fcefb7c67bff645e18628bc3074ff0ff197ab54228544d0ff85c2ff9509502c8f98371d8dc5df6f1e3ec047
 WHIRLPOOL 
46dabf0120b97cf20b58d76745dd0c23aec69f4eeb25b8605944c7ca4f8a05580c6c9df3ce7ec4e507f2402ddb53da2a6730cf6b246eec8472562ec33fcbb9e2
 DIST flake8-2.1.0.tar.gz 25010 SHA256 
098ab7991067c08cfaa4716de20066d90f66dbc71502114ea8cad9a9fd5c9512 SHA512 
bf961d76ed08dafe7c2a9b767594577a57a2276166e515f1d84654223aa50879c5ee1e20919b3a4c7576c7d549037c8cfe67c11ab1f6648a0205200f5060950b
 WHIRLPOOL 
48982d33cd32f557796ef103da441f46d3a6ddbf1d1cace66f3ceac8b31bf78389c72df4a717881fe3735f6301b8ce0831908d32010f94ce72fc5414404261d4
 DIST flake8-2.2.5.tar.gz 28333 SHA256 
285e8bd730c0b6fdfbe23c32d2936bffba401f23cab132e8722c68be80d6f182 SHA512 
fe5e06d3a7699e3f348181108f1ab3ee9eb1f2b0422de582a172d3a4aed42a5cf839ef8a5b5b113da1e0c3c2b53ed7b43af1ca24314ea842d0d3d3735eba1dee
 WHIRLPOOL 
6c1e737a760876d410fd116bf2b8104f932b6751b5970096ddadcead5937fba21772fb28c1addf8026eda5ec573eb07cd920e46fb711d79f46de559d229c8705
-DIST flake8-2.4.0.tar.gz 67257 SHA256 
d26a9d0252da9f831b8277b824961bb10b1f9d79f4752d32e4814b7bcd1e089b SHA512 
fda9b8478550cc1b3cb05a0de0c8a008a41e8842c8d27268baa3114abb7358445267bb114942a155b089582314fe952f0714e34d738c054ab8bf46869a2c1b98
 WHIRLPOOL 
f8a516f0d6cabe67484afd0393f0ca13b9cb9e89f28304ea1ea01aaab4b7ccf5d332cdefcf209eb7847e0616c72fe3d152f6f280029d45dbacd7f4d067d92b0f
 DIST flake8-2.4.1.tar.gz 50324 SHA256 
2e7ebbe59d8c85e626e36d99f0db2f578394313d3f7ce9dc9f1da57ef6cd7537 SHA512 
8ddd07d6be53b06efcf7dd9aa2daa070ab209f7177e46f32a3bcae545acbb5e020aa27aeab54426798ae6c3722b38928b06dc3e53115cc624a16fa0fa97f4840
 WHIRLPOOL 
9a653900523eded448c5cbeca0b111ba220be39ad307e46ded35a1454904cb59f5e0765425d90e99ae0c853b2931fbe910c4412e73771098bb0a3543adb8cabb

diff --git a/dev-python/flake8/flake8-2.4.0-r1.ebuild 
b/dev-python/flake8/flake8-2.4.0-r1.ebuild
deleted file mode 100644
index 3d9..000
--- a/dev-python/flake8/flake8-2.4.0-r1.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-PYTHON_COMPAT=( python{2_7,3_3,3_4} )
-
-inherit distutils-r1
-
-DESCRIPTION="A wrapper around PyFlakes, pep8 & mccabe"
-HOMEPAGE="https://bitbucket.org/tarek/flake8 
https://pypi.python.org/pypi/flake8";
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86 ~amd64-linux 
~x86-linux"
-IUSE="test"
-LICENSE="MIT"
-SLOT="0"
-
-# requires.txt inc. mccabe however that creates a circular dep
-RDEPEND=">=dev-python/pyflakes-0.8.1[${PYTHON_USEDEP}]
-   =dev-python/pep8-1.5.7[${PYTHON_USEDEP}]
-   

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

2015-09-24 Thread Jeroen Roovers
commit: f9b2cee2bc409c86566a863664a4b991748dd3de
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Fri Sep 25 04:34:31 2015 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Fri Sep 25 04:34:45 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9b2cee2

net-analyzer/argus: Fix file permissions (bug #561360 by Toralf Förster).

Package-Manager: portage-2.2.20.1

 net-analyzer/argus/argus-3.0.8.1.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/net-analyzer/argus/argus-3.0.8.1.ebuild 
b/net-analyzer/argus/argus-3.0.8.1.ebuild
index 9a99e14..e098aec 100644
--- a/net-analyzer/argus/argus-3.0.8.1.ebuild
+++ b/net-analyzer/argus/argus-3.0.8.1.ebuild
@@ -28,6 +28,7 @@ DEPEND="
 "
 
 src_prepare() {
+   find . -type f -execdir chmod +w {} \; #561360
sed -e 's:/etc/argus.conf:/etc/argus/argus.conf:' \
-i argus/argus.c \
-i support/Config/argus.conf \



[gentoo-commits] repo/gentoo:master commit in: app-text/dos2unix/

2015-09-24 Thread Patrice Clement
commit: 236511dcb29bd602c850a3539e7c0ff4bfad751d
Author: Patrice Clement  gentoo  org>
AuthorDate: Fri Sep 25 04:15:43 2015 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Fri Sep 25 04:18:26 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=236511dc

app-text/dos2unix: Stable for amd64. Fixes bug 525826.

Package-Manager: portage-2.2.18
Signed-off-by: Patrice Clement  gentoo.org>

 app-text/dos2unix/dos2unix-7.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/dos2unix/dos2unix-7.3-r1.ebuild 
b/app-text/dos2unix/dos2unix-7.3-r1.ebuild
index d8a8be9..b2c758b 100644
--- a/app-text/dos2unix/dos2unix-7.3-r1.ebuild
+++ b/app-text/dos2unix/dos2unix-7.3-r1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris"
 IUSE="debug nls test"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-text/dos2unix/

2015-09-24 Thread Patrice Clement
commit: 9003c5f46a4b302330a295e1276ba1ab6723c8b9
Author: Patrice Clement  gentoo  org>
AuthorDate: Fri Sep 25 04:14:47 2015 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Fri Sep 25 04:18:22 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9003c5f4

app-text/dos2unix: Remove app-text/unix2dos blocker from DEPEND. Fixes bug 
525826.

Package-Manager: portage-2.2.18
Signed-off-by: Patrice Clement  gentoo.org>

 app-text/dos2unix/dos2unix-7.3-r1.ebuild | 60 
 1 file changed, 60 insertions(+)

diff --git a/app-text/dos2unix/dos2unix-7.3-r1.ebuild 
b/app-text/dos2unix/dos2unix-7.3-r1.ebuild
new file mode 100644
index 000..d8a8be9
--- /dev/null
+++ b/app-text/dos2unix/dos2unix-7.3-r1.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit eutils toolchain-funcs
+
+DESCRIPTION="Convert DOS or MAC text files to UNIX format or vice versa"
+HOMEPAGE="http://www.xs4all.nl/~waterlan/dos2unix.html 
http://sourceforge.net/projects/dos2unix/";
+SRC_URI="
+   http://www.xs4all.nl/~waterlan/${PN}/${P}.tar.gz
+   mirror://sourceforge/${PN}/${P}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris"
+IUSE="debug nls test"
+
+RDEPEND="
+   !app-text/hd2u
+   virtual/libintl"
+
+DEPEND="
+   ${RDEPEND}
+   nls? ( sys-devel/gettext )
+   test? ( virtual/perl-Test-Simple )
+   dev-lang/perl"
+
+src_prepare() {
+   sed \
+   -e '/^LDFLAGS/s|=|+=|' \
+   -e '/CFLAGS_OS \+=/d' \
+   -e '/LDFLAGS_EXTRA \+=/d' \
+   -e "/^CFLAGS/s|-O2|${CFLAGS}|" \
+   -i Makefile || die
+
+   if use debug ; then
+   sed -e "/^DEBUG/s:0:1:" \
+   -e "/EXTRA_CFLAGS +=/s:-g::" \
+   -i Makefile || die
+   fi
+
+   tc-export CC
+}
+
+lintl() {
+   # same logic as from virtual/libintl
+   use !elibc_glibc && use !elibc_uclibc && echo "-lintl"
+}
+
+src_compile() {
+   emake prefix="${EPREFIX}/usr" \
+   $(usex nls "LDFLAGS_EXTRA=$(lintl)" "ENABLE_NLS=")
+}
+
+src_install() {
+   emake DESTDIR="${D}" prefix="${EPREFIX}/usr" \
+   $(usex nls "" "ENABLE_NLS=") install
+}



[gentoo-commits] repo/gentoo:master commit in: sci-mathematics/fricas/

2015-09-24 Thread Andrey Grozin
commit: 3973321fa189eb2cfd6f445db20f65cdf2acc33d
Author: Andrey Grozin  gentoo  org>
AuthorDate: Fri Sep 25 03:57:13 2015 +
Commit: Andrey Grozin  gentoo  org>
CommitDate: Fri Sep 25 03:57:13 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3973321f

sci-mathematics/fricas: cleaning fricas-1.2.5.ebuild

Package-Manager: portage-2.2.21

 sci-mathematics/fricas/Manifest|  1 -
 sci-mathematics/fricas/fricas-1.2.5.ebuild | 90 --
 2 files changed, 91 deletions(-)

diff --git a/sci-mathematics/fricas/Manifest b/sci-mathematics/fricas/Manifest
index 70b887a..45171bf 100644
--- a/sci-mathematics/fricas/Manifest
+++ b/sci-mathematics/fricas/Manifest
@@ -1,3 +1,2 @@
-DIST fricas-1.2.5-full.tar.bz2 10153745 SHA256 
842e85d2799fd5271957c0d306c243f9f9d9db791e781e848b430f17a11d5e57 SHA512 
78e99c2b791d8680e939adf8dfde96d3b305c58e9333da1ae98e214b5fc9ca2d6c365c7857cb4e30a68aa5450c992973243e058e4d4a412f57ff37137bc19ba0
 WHIRLPOOL 
13e91e451ffa707c220704aa5d017df264806feaa6b1b52c03ddaecff57594d06fe957ae61e0c5a0f49e4f96fb6f420a99aac49279f4f9e0efa07a11bedac1cd
 DIST fricas-1.2.6-full.tar.bz2 10196018 SHA256 
725b62d9139a345a3bc0eb0d29bd0e0764de475792918165c3bcd293d3c292ae SHA512 
6c98844b6815bd6bfbe50881179b746aa38af48e3992179e3746bd175ef2a0940d9855e79b66b1b5e34d9fc9fe1b8f3578483847b18d7cc2781f7f72b65fb2ac
 WHIRLPOOL 
de221add1c68da205d8689834ccb52a0ea468af253ccae70ce7c25156b0ece810dcc50a9db99549ed461a10dcaea13f503c1f0838141262dd6c6d524a217be61
 DIST fricas-1.2.7-full.tar.bz2 10289500 SHA256 
f23d892c17fca850726ab6f1f03061bbced6c487d2eed23e86037672b7473e1b SHA512 
1e6e34dc0e4b535bf937ebdefb5099629b2893e6db0dba8b84f259e2a3b7244692ab704dd04aa24f257089661f6747d8f367d0f58bb8cebd652469cb58c72897
 WHIRLPOOL 
41934d03203b6b6ca51ab0f54d3c7087de67366bba5794785360cbb61fc7cb18a6d4b489c176d75815bdb7b68b4aba31d0724bb5be94f1bfa6cb01e930af7991

diff --git a/sci-mathematics/fricas/fricas-1.2.5.ebuild 
b/sci-mathematics/fricas/fricas-1.2.5.ebuild
deleted file mode 100644
index a6701e5..000
--- a/sci-mathematics/fricas/fricas-1.2.5.ebuild
+++ /dev/null
@@ -1,90 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-EAPI=5
-inherit multilib elisp-common
-
-DESCRIPTION="FriCAS is a fork of Axiom computer algebra system"
-HOMEPAGE="http://${PN}.sourceforge.net/";
-SRC_URI="mirror://sourceforge/${PN}/${P}-full.tar.bz2"
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-# Supported lisps, number 0 is the default
-LISPS=( sbcl cmucl gcl ecls   clisp clozurecl )
-# command name: . means just ${LISP}
-COMS=(  .lisp  .   ecl. ccl   )
-
-IUSE="${LISPS[*]} X emacs gmp"
-RDEPEND="X? ( x11-libs/libXpm x11-libs/libICE )
-   emacs? ( virtual/emacs )
-   gmp? ( dev-libs/gmp )"
-
-# Generating lisp deps
-n=${#LISPS[*]}
-for ((n--; n > 0; n--)); do
-   LISP=${LISPS[$n]}
-   RDEPEND="${RDEPEND} ${LISP}? ( dev-lisp/${LISP}:= ) !${LISP}? ("
-done
-RDEPEND="${RDEPEND} dev-lisp/${LISPS[0]}:="
-n=${#LISPS[*]}
-for ((n--; n > 0; n--)); do
-   RDEPEND="${RDEPEND} )"
-done
-
-DEPEND="${RDEPEND}"
-
-# necessary for clisp and gcl
-RESTRICT="strip"
-
-src_configure() {
-   local LISP n
-   LISP=sbcl
-   n=${#LISPS[*]}
-   for ((n--; n > 0; n--)); do
-   if use ${LISPS[$n]}; then
-   LISP=${COMS[$n]}
-   if [ "${LISP}" = "." ]; then
-   LISP=${LISPS[$n]}
-   fi
-   fi
-   done
-   einfo "Using lisp: ${LISP}"
-
-   # aldor is not yet in portage
-   econf --disable-aldor --with-lisp=${LISP} $(use_with X x) $(use_with 
gmp)
-}
-
-src_compile() {
-   # bug #300132
-   emake -j1
-}
-
-src_test() {
-   emake -j1 all-input
-}
-
-src_install() {
-   emake -j1 DESTDIR="${D}" install
-   dodoc README FAQ
-
-   if use emacs; then
-   sed -e "s|(setq load-path (cons (quote 
\"/usr/$(get_libdir)/fricas/emacs\") load-path)) ||" \
-   -i "${D}"/usr/bin/efricas \
-   || die "sed efricas failed"
-   elisp-install ${PN} "${D}"/usr/$(get_libdir)/${PN}/emacs/*.el
-   elisp-site-file-install "${FILESDIR}"/64${PN}-gentoo.el
-   else
-   rm "${D}"/usr/bin/efricas || die "rm efricas failed"
-   fi
-   rm -r "${D}"/usr/$(get_libdir)/${PN}/emacs || die "rm -r emacs failed"
-}
-
-pkg_postinst() {
-   use emacs && elisp-site-regen
-}
-
-pkg_postrm() {
-   use emacs && elisp-site-regen
-}



[gentoo-commits] repo/gentoo:master commit in: sci-mathematics/fricas/

2015-09-24 Thread Andrey Grozin
commit: ea1428f58306efcf26e6c5fb787591755896bd77
Author: Andrey Grozin  gentoo  org>
AuthorDate: Fri Sep 25 03:54:05 2015 +
Commit: Andrey Grozin  gentoo  org>
CommitDate: Fri Sep 25 03:55:19 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea1428f5

sci-mathematics/fricas: bump to 1.2.7

Package-Manager: portage-2.2.21

 sci-mathematics/fricas/Manifest|  1 +
 sci-mathematics/fricas/fricas-1.2.7.ebuild | 90 ++
 2 files changed, 91 insertions(+)

diff --git a/sci-mathematics/fricas/Manifest b/sci-mathematics/fricas/Manifest
index 524b685..70b887a 100644
--- a/sci-mathematics/fricas/Manifest
+++ b/sci-mathematics/fricas/Manifest
@@ -1,2 +1,3 @@
 DIST fricas-1.2.5-full.tar.bz2 10153745 SHA256 
842e85d2799fd5271957c0d306c243f9f9d9db791e781e848b430f17a11d5e57 SHA512 
78e99c2b791d8680e939adf8dfde96d3b305c58e9333da1ae98e214b5fc9ca2d6c365c7857cb4e30a68aa5450c992973243e058e4d4a412f57ff37137bc19ba0
 WHIRLPOOL 
13e91e451ffa707c220704aa5d017df264806feaa6b1b52c03ddaecff57594d06fe957ae61e0c5a0f49e4f96fb6f420a99aac49279f4f9e0efa07a11bedac1cd
 DIST fricas-1.2.6-full.tar.bz2 10196018 SHA256 
725b62d9139a345a3bc0eb0d29bd0e0764de475792918165c3bcd293d3c292ae SHA512 
6c98844b6815bd6bfbe50881179b746aa38af48e3992179e3746bd175ef2a0940d9855e79b66b1b5e34d9fc9fe1b8f3578483847b18d7cc2781f7f72b65fb2ac
 WHIRLPOOL 
de221add1c68da205d8689834ccb52a0ea468af253ccae70ce7c25156b0ece810dcc50a9db99549ed461a10dcaea13f503c1f0838141262dd6c6d524a217be61
+DIST fricas-1.2.7-full.tar.bz2 10289500 SHA256 
f23d892c17fca850726ab6f1f03061bbced6c487d2eed23e86037672b7473e1b SHA512 
1e6e34dc0e4b535bf937ebdefb5099629b2893e6db0dba8b84f259e2a3b7244692ab704dd04aa24f257089661f6747d8f367d0f58bb8cebd652469cb58c72897
 WHIRLPOOL 
41934d03203b6b6ca51ab0f54d3c7087de67366bba5794785360cbb61fc7cb18a6d4b489c176d75815bdb7b68b4aba31d0724bb5be94f1bfa6cb01e930af7991

diff --git a/sci-mathematics/fricas/fricas-1.2.7.ebuild 
b/sci-mathematics/fricas/fricas-1.2.7.ebuild
new file mode 100644
index 000..a6701e5
--- /dev/null
+++ b/sci-mathematics/fricas/fricas-1.2.7.ebuild
@@ -0,0 +1,90 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+EAPI=5
+inherit multilib elisp-common
+
+DESCRIPTION="FriCAS is a fork of Axiom computer algebra system"
+HOMEPAGE="http://${PN}.sourceforge.net/";
+SRC_URI="mirror://sourceforge/${PN}/${P}-full.tar.bz2"
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+# Supported lisps, number 0 is the default
+LISPS=( sbcl cmucl gcl ecls   clisp clozurecl )
+# command name: . means just ${LISP}
+COMS=(  .lisp  .   ecl. ccl   )
+
+IUSE="${LISPS[*]} X emacs gmp"
+RDEPEND="X? ( x11-libs/libXpm x11-libs/libICE )
+   emacs? ( virtual/emacs )
+   gmp? ( dev-libs/gmp )"
+
+# Generating lisp deps
+n=${#LISPS[*]}
+for ((n--; n > 0; n--)); do
+   LISP=${LISPS[$n]}
+   RDEPEND="${RDEPEND} ${LISP}? ( dev-lisp/${LISP}:= ) !${LISP}? ("
+done
+RDEPEND="${RDEPEND} dev-lisp/${LISPS[0]}:="
+n=${#LISPS[*]}
+for ((n--; n > 0; n--)); do
+   RDEPEND="${RDEPEND} )"
+done
+
+DEPEND="${RDEPEND}"
+
+# necessary for clisp and gcl
+RESTRICT="strip"
+
+src_configure() {
+   local LISP n
+   LISP=sbcl
+   n=${#LISPS[*]}
+   for ((n--; n > 0; n--)); do
+   if use ${LISPS[$n]}; then
+   LISP=${COMS[$n]}
+   if [ "${LISP}" = "." ]; then
+   LISP=${LISPS[$n]}
+   fi
+   fi
+   done
+   einfo "Using lisp: ${LISP}"
+
+   # aldor is not yet in portage
+   econf --disable-aldor --with-lisp=${LISP} $(use_with X x) $(use_with 
gmp)
+}
+
+src_compile() {
+   # bug #300132
+   emake -j1
+}
+
+src_test() {
+   emake -j1 all-input
+}
+
+src_install() {
+   emake -j1 DESTDIR="${D}" install
+   dodoc README FAQ
+
+   if use emacs; then
+   sed -e "s|(setq load-path (cons (quote 
\"/usr/$(get_libdir)/fricas/emacs\") load-path)) ||" \
+   -i "${D}"/usr/bin/efricas \
+   || die "sed efricas failed"
+   elisp-install ${PN} "${D}"/usr/$(get_libdir)/${PN}/emacs/*.el
+   elisp-site-file-install "${FILESDIR}"/64${PN}-gentoo.el
+   else
+   rm "${D}"/usr/bin/efricas || die "rm efricas failed"
+   fi
+   rm -r "${D}"/usr/$(get_libdir)/${PN}/emacs || die "rm -r emacs failed"
+}
+
+pkg_postinst() {
+   use emacs && elisp-site-regen
+}
+
+pkg_postrm() {
+   use emacs && elisp-site-regen
+}



[gentoo-commits] repo/gentoo:master commit in: dev-util/txt2regex/

2015-09-24 Thread Patrice Clement
commit: a1946d1b15c132c93c232cc13700665235f763ed
Author: Patrice Clement  gentoo  org>
AuthorDate: Fri Sep 25 03:51:46 2015 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Fri Sep 25 03:52:03 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1946d1b

dev-util/txt2regex: EAPI 5 bump. Remove suspicious use of einstall. Fixes bug 
521548.

Package-Manager: portage-2.2.18
RepoMan-Options: --force
Signed-off-by: Patrice Clement  gentoo.org>

 .../{txt2regex-0.8-r1.ebuild => txt2regex-0.8-r2.ebuild} | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/dev-util/txt2regex/txt2regex-0.8-r1.ebuild 
b/dev-util/txt2regex/txt2regex-0.8-r2.ebuild
similarity index 76%
rename from dev-util/txt2regex/txt2regex-0.8-r1.ebuild
rename to dev-util/txt2regex/txt2regex-0.8-r2.ebuild
index ba29402..0fbea1e 100644
--- a/dev-util/txt2regex/txt2regex-0.8-r1.ebuild
+++ b/dev-util/txt2regex/txt2regex-0.8-r2.ebuild
@@ -1,7 +1,9 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
+EAPI=5
+
 inherit eutils
 
 DESCRIPTION="A Regular Expression wizard that converts human sentences to 
regexs"
@@ -10,22 +12,20 @@ SRC_URI="http://txt2regex.sourceforge.net/${P}.tgz";
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 hppa ~mips ~ppc sparc x86"
+KEYWORDS="alpha amd64 hppa mips ppc ppc64 sparc x86"
 IUSE="nls cjk"
 
 DEPEND="nls? ( sys-devel/gettext )"
 RDEPEND=">=app-shells/bash-2.04"
 
-src_unpack() {
-   unpack ${A}
-   cd "${S}"
+src_prepare() {
# See bug 93568
use nls || epatch "${FILESDIR}"/${P}-disable-nls.patch
use cjk && sed -i -e 's/\xa4/:+:/g' "${S}"/${P}.sh
 }
 
 src_install() {
-   einstall DESTDIR="${D}" MANDIR="${D}"/usr/share/man/man1 || die
+   emake DESTDIR="${D}" MANDIR="${D}"/usr/share/man/man1 || die
dodoc Changelog NEWS README README.japanese TODO || die
newman txt2regex.man txt2regex.6 || die
 }



[gentoo-commits] repo/gentoo:master commit in: dev-db/mysql-connector-c++/

2015-09-24 Thread Ian Delaney
commit: c2fb26c472f5bb1a697d9ebc5a69257bb9cb6d27
Author: Ian Delaney  gentoo  org>
AuthorDate: Thu Sep 24 03:13:07 2015 +
Commit: Ian Delaney  gentoo  org>
CommitDate: Fri Sep 25 03:25:38 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2fb26c4

dev-db/mysql-connector-c++: Taking ownership of package

Set sublsots for deps in -1.1.3, update to virtual/libmysqlclient
in -1.1.6, rm old, closes bug #556900

Package-Manager: portage-2.2.20.1

 dev-db/mysql-connector-c++/Manifest|  2 -
 dev-db/mysql-connector-c++/metadata.xml|  6 +--
 .../mysql-connector-c++-1.1.1.ebuild   | 63 --
 .../mysql-connector-c++-1.1.3.ebuild   |  6 +--
 .../mysql-connector-c++-1.1.5.ebuild   | 62 -
 .../mysql-connector-c++-1.1.6.ebuild   |  2 +-
 6 files changed, 7 insertions(+), 134 deletions(-)

diff --git a/dev-db/mysql-connector-c++/Manifest 
b/dev-db/mysql-connector-c++/Manifest
index e17d5fc..c19c10b 100644
--- a/dev-db/mysql-connector-c++/Manifest
+++ b/dev-db/mysql-connector-c++/Manifest
@@ -1,4 +1,2 @@
-DIST mysql-connector-c++-1.1.1.tar.gz 492659 SHA256 
31c3e4f637153bd270812dffc6a50708dfc686a8afa7ea1c88a9dfda0d8af52e SHA512 
d6b34fd4aeaf1032870d6de4f57ae92230790a3661c24af4ffed30f715f9a1941d0d063abbc0d703c15697c054731af6e39240d6dd70459371f25435595ec903
 WHIRLPOOL 
f9fddb59df913a728769824aa7cc39b9ba55b1d3de56048148bf5ca37a366772f34a85bae58f0d5efead4010b0aac7ab5b897bd4a0db113e99fdf4898a31d26c
 DIST mysql-connector-c++-1.1.3.tar.gz 496226 SHA256 
4b1516f183f29c011c1677d5a9b174d0f5c3b761d2e8056e79690c55c01ea690 SHA512 
c03a4ae25e9d189a5114ab630bef6edaefd1aee809dbb1ec26b765f5e84b93fbe17e5f7357a4fe2a95c179cd2028b676151df4baf4e3da7515543ecc0834afd7
 WHIRLPOOL 
5f04231cec63de16c2a076143b2e0409544ebdf600d7423f63c8c2db45f1b63048e1da108a9f374dda6b6ff0d4c13b509190390e797f4674e14284acbaa9e2e5
-DIST mysql-connector-c++-1.1.5.tar.gz 519440 SHA256 
f3696726da29d56e0daad7046b30aa51444360a3ff112c079eb942929eb1cce8 SHA512 
6e6e6ed7f7496d5d51f6709a7fb47b8031d5639b0729a439056466ae24e4e24d419fad19c54571e0485f3717d7a07ccd840795724a8b79deb8e93c59d447595b
 WHIRLPOOL 
8c0be70301454d130797d6dd74da5f29a77f543bf4c2353e53b6ebfa8c9f8282850ba6266d4988e7d305c5be14d64b41133ad05ded2f70662235f254f76d75ea
 DIST mysql-connector-c++-1.1.6.tar.gz 522236 SHA256 
ad710b3900cae3be94656825aa70319cf7a96e1ad46bf93e07275f3606f69447 SHA512 
e940b6ee090f792bad8acbbfa3dacd46310ac40c7993c4097eeebb6be4b792d3f1856574e603a71e2795773db97169f47c9ed76a127654472370c726bcb291c7
 WHIRLPOOL 
b3027423cf2e250f1fd7340b58ff5ff55ce771c91cc435e37cddd156f681621206438b6329a49df760dce660ef983b3cf3e5060af527668de64ed06e69830d12

diff --git a/dev-db/mysql-connector-c++/metadata.xml 
b/dev-db/mysql-connector-c++/metadata.xml
index 306a658..5b748c4 100644
--- a/dev-db/mysql-connector-c++/metadata.xml
+++ b/dev-db/mysql-connector-c++/metadata.xml
@@ -7,8 +7,8 @@
 Build coverage support
 

-   h@web.de
-   Proxied developer. Please CC on bugs.
-   Hanno Meyer-Thurow
+   idel...@gentoo.org
+   Ian Delnaeny
+   Maintainer / developer

 

diff --git a/dev-db/mysql-connector-c++/mysql-connector-c++-1.1.1.ebuild 
b/dev-db/mysql-connector-c++/mysql-connector-c++-1.1.1.ebuild
deleted file mode 100644
index dac3673..000
--- a/dev-db/mysql-connector-c++/mysql-connector-c++-1.1.1.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=4
-
-inherit eutils cmake-utils flag-o-matic multilib
-
-DESCRIPTION="MySQL database connector for C++ (mimics JDBC 4.0 API)"
-HOMEPAGE="http://dev.mysql.com/downloads/connector/cpp/";
-URI_DIR="Connector-C++"
-SRC_URI="mirror://mysql/Downloads/${URI_DIR}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 arm ppc ppc64 ~sparc x86"
-IUSE="debug examples gcov static-libs"
-
-DEPEND=">=virtual/mysql-5.1
-   dev-libs/boost
-   dev-libs/openssl"
-RDEPEND="${DEPEND}"
-
-PATCHES=(
-   "${FILESDIR}/${PN}-1.1.0-fix-cmake.patch"
-   "${FILESDIR}/${PN}-1.1.0-disable-tests.patch"
-)
-
-src_configure() {
-   # native lib/wrapper needs this!
-   append-flags "-fno-strict-aliasing"
-
-   local mycmakeargs=(
-   "-DMYSQLCPPCONN_BUILD_EXAMPLES=OFF"
-   "-DMYSQLCPPCONN_ICU_ENABLE=OFF"
-   $(cmake-utils_use debug MYSQLCPPCONN_TRACE_ENABLE)
-   $(cmake-utils_use gcov MYSQLCPPCONN_GCOV_ENABLE)
-   )
-
-   cmake-utils_src_configure
-}
-
-src_install() {
-   cmake-utils_src_install
-
-   # static lib has wrong name so we need to rename it
-   if use static-libs; then
-   mv "${ED}"/usr/$(get_libdir)/libmysqlcppconn-static.a \
-   "${ED}"/usr/$(get_libdir)/libmysqlcppconn.a || die
-   else
-   rm 

[gentoo-commits] proj/grs:tinhat-xfce4 commit in: core/etc/portage/

2015-09-24 Thread Anthony G. Basile
commit: f892499b816fa8f7d83ddea88bd46c1236bd4c6f
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Fri Sep 25 02:41:59 2015 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Fri Sep 25 02:41:59 2015 +
URL:https://gitweb.gentoo.org/proj/grs.git/commit/?id=f892499b

make.conf: do PT_PAX markings as well as XT.

 core/etc/portage/make.conf.CYCLE.1 | 2 +-
 core/etc/portage/make.conf.CYCLE.2 | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/core/etc/portage/make.conf.CYCLE.1 
b/core/etc/portage/make.conf.CYCLE.1
index c8c158d..ca0b082 100644
--- a/core/etc/portage/make.conf.CYCLE.1
+++ b/core/etc/portage/make.conf.CYCLE.1
@@ -3,7 +3,7 @@ CXXFLAGS="${CFLAGS}"
 CHOST="x86_64-pc-linux-gnu"
 MAKEOPTS="-j17"
 
-PAX_MARKINGS="XT"
+PAX_MARKINGS="PT XT"
 RUBY_TARGETS="ruby19 ruby20 ruby21"
 
 ABI_X86="64 32"

diff --git a/core/etc/portage/make.conf.CYCLE.2 
b/core/etc/portage/make.conf.CYCLE.2
index c511103..79e849c 100644
--- a/core/etc/portage/make.conf.CYCLE.2
+++ b/core/etc/portage/make.conf.CYCLE.2
@@ -3,7 +3,7 @@ CXXFLAGS="${CFLAGS}"
 CHOST="x86_64-pc-linux-gnu"
 MAKEOPTS="-j17"
 
-PAX_MARKINGS="XT"
+PAX_MARKINGS="PT XT"
 RUBY_TARGETS="ruby19 ruby20 ruby21"
 
 ABI_X86="64 32"



[gentoo-commits] repo/gentoo:master commit in: net-dns/avahi/files/, net-dns/avahi/

2015-09-24 Thread Anthony G. Basile
commit: 0bc40f3a0e81ee6e520a0c5ffa006e4e68371735
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Fri Sep 25 02:07:09 2015 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Fri Sep 25 02:07:09 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0bc40f3a

net-dns/avahi: bump to 0.6.31-r9 to fix bug #559408.

Package-Manager: portage-2.2.20.1

 net-dns/avahi/avahi-0.6.31-r9.ebuild   | 253 +
 .../avahi/files/avahi-0.6.31-invalid_packet.patch  |  21 ++
 2 files changed, 274 insertions(+)

diff --git a/net-dns/avahi/avahi-0.6.31-r9.ebuild 
b/net-dns/avahi/avahi-0.6.31-r9.ebuild
new file mode 100644
index 000..1f873b8
--- /dev/null
+++ b/net-dns/avahi/avahi-0.6.31-r9.ebuild
@@ -0,0 +1,253 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+PYTHON_COMPAT=( python2_7 )
+PYTHON_REQ_USE="gdbm"
+
+WANT_AUTOMAKE=1.11
+
+inherit autotools eutils flag-o-matic multilib multilib-minimal mono-env \
+   python-r1 systemd user
+
+DESCRIPTION="System which facilitates service discovery on a local network"
+HOMEPAGE="http://avahi.org/";
+SRC_URI="http://avahi.org/download/${P}.tar.gz";
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-linux"
+IUSE="autoipd bookmarks dbus doc gdbm gtk gtk3 howl-compat +introspection ipv6 
kernel_linux mdnsresponder-compat mono nls python qt4 selinux test utils"
+
+REQUIRED_USE="
+   utils? ( || ( gtk gtk3 ) )
+   python? ( dbus gdbm )
+   mono? ( dbus )
+   howl-compat? ( dbus )
+   mdnsresponder-compat? ( dbus )
+"
+
+COMMON_DEPEND="
+   dev-libs/libdaemon
+   dev-libs/expat
+   >=dev-libs/glib-2.34.3:2[${MULTILIB_USEDEP}]
+   gdbm? ( >=sys-libs/gdbm-1.10-r1[${MULTILIB_USEDEP}] )
+   qt4? ( dev-qt/qtcore:4[${MULTILIB_USEDEP}] )
+   gtk? ( x11-libs/gtk+:2[${MULTILIB_USEDEP}] )
+   gtk3? ( x11-libs/gtk+:3[${MULTILIB_USEDEP}] )
+   dbus? ( >=sys-apps/dbus-1.6.18-r1[${MULTILIB_USEDEP}] )
+   kernel_linux? ( sys-libs/libcap )
+   introspection? ( dev-libs/gobject-introspection:= )
+   mono? (
+   dev-lang/mono
+   gtk? ( dev-dotnet/gtk-sharp )
+   )
+   python? (
+   ${PYTHON_DEPS}
+   gtk? ( dev-python/pygtk )
+   dbus? ( dev-python/dbus-python )
+   )
+   bookmarks? (
+   dev-python/twisted-core
+   dev-python/twisted-web
+   )
+"
+
+DEPEND="
+   ${COMMON_DEPEND}
+   dev-util/intltool
+   >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}]
+   doc? (
+   app-doc/doxygen
+   )
+"
+
+RDEPEND="
+   ${COMMON_DEPEND}
+   howl-compat? ( !net-misc/howl )
+   mdnsresponder-compat? ( !net-misc/mDNSResponder )
+   selinux? ( sec-policy/selinux-avahi )
+"
+
+pkg_preinst() {
+   enewgroup netdev
+   enewgroup avahi
+   enewuser avahi -1 -1 -1 avahi
+
+   if use autoipd; then
+   enewgroup avahi-autoipd
+   enewuser avahi-autoipd -1 -1 -1 avahi-autoipd
+   fi
+}
+
+pkg_setup() {
+   use mono && mono-env_pkg_setup
+}
+
+src_prepare() {
+   if use ipv6; then
+   sed -i \
+   -e s/use-ipv6=no/use-ipv6=yes/ \
+   avahi-daemon/avahi-daemon.conf || die
+   fi
+
+   sed -i\
+   -e 
"s:\\.\\./\\.\\./\\.\\./doc/avahi-docs/html/:../../../doc/${PF}/html/:" \
+   doxygen_to_devhelp.xsl || die
+
+   # Make gtk utils optional
+   epatch "${FILESDIR}"/${PN}-0.6.30-optional-gtk-utils.patch
+
+   # Fix init scripts for >=openrc-0.9.0, bug #383641
+   epatch "${FILESDIR}"/${PN}-0.6.x-openrc-0.9.x-init-scripts-fixes.patch
+
+   # install-exec-local -> install-exec-hook
+   epatch "${FILESDIR}"/${P}-install-exec-hook.patch
+
+   # Backport host-name-from-machine-id patch, bug #466134
+   epatch "${FILESDIR}"/${P}-host-name-from-machine-id.patch
+
+   # Don't install avahi-discover unless ENABLE_GTK_UTILS, bug #359575
+   epatch "${FILESDIR}"/${P}-fix-install-avahi-discover.patch
+
+   epatch 
"${FILESDIR}"/${P}-so_reuseport-may-not-exist-in-running-kernel.patch
+
+   # allow building client without the daemon
+   epatch "${FILESDIR}"/${P}-build-client-without-daemon.patch
+
+   # Fix build under various locales, bug #501664
+   epatch "${FILESDIR}"/${P}-fix-locale-build.patch
+
+   # Fix "Invalid response packet from host", bug #559408.
+   eptch "${FILESDIR}"/${P}-invalid_packet.patch
+
+   # Drop DEPRECATED flags, bug #384743
+   sed -i -e 's:-D[A-Z_]*DISABLE_DEPRECATED=1::g' avahi-ui/Makefile.am || 
die
+
+   # Fix references to Lennart's home directory, bug #466210
+   sed -i -e 's/\/home\/lennart\/tmp\/avahi//g' man/* || die
+
+   # Bu

[gentoo-commits] repo/gentoo:master commit in: net-dns/avahi/

2015-09-24 Thread Anthony G. Basile
commit: 732af8ecdebddb349665d2fc99d3a5469a225093
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Fri Sep 25 02:08:10 2015 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Fri Sep 25 02:08:10 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=732af8ec

net-dns/avahi: remove older unstable version.

Package-Manager: portage-2.2.20.1

 net-dns/avahi/avahi-0.6.31-r7.ebuild | 245 ---
 1 file changed, 245 deletions(-)

diff --git a/net-dns/avahi/avahi-0.6.31-r7.ebuild 
b/net-dns/avahi/avahi-0.6.31-r7.ebuild
deleted file mode 100644
index 974a9e7..000
--- a/net-dns/avahi/avahi-0.6.31-r7.ebuild
+++ /dev/null
@@ -1,245 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-PYTHON_COMPAT=( python2_7 )
-PYTHON_REQ_USE="gdbm"
-
-WANT_AUTOMAKE=1.11
-
-inherit autotools eutils flag-o-matic multilib multilib-minimal mono-env \
-   python-r1 systemd user
-
-DESCRIPTION="System which facilitates service discovery on a local network"
-HOMEPAGE="http://avahi.org/";
-SRC_URI="http://avahi.org/download/${P}.tar.gz";
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-linux"
-IUSE="autoipd bookmarks dbus doc gdbm gtk gtk3 howl-compat +introspection ipv6 
kernel_linux mdnsresponder-compat mono nls python qt4 selinux test utils"
-
-REQUIRED_USE="
-   utils? ( || ( gtk gtk3 ) )
-   python? ( dbus gdbm )
-   mono? ( dbus )
-   howl-compat? ( dbus )
-   mdnsresponder-compat? ( dbus )
-"
-
-COMMON_DEPEND="
-   dev-libs/libdaemon
-   dev-libs/expat
-   >=dev-libs/glib-2.34.3:2[${MULTILIB_USEDEP}]
-   gdbm? ( >=sys-libs/gdbm-1.10-r1[${MULTILIB_USEDEP}] )
-   qt4? ( dev-qt/qtcore:4[${MULTILIB_USEDEP}] )
-   gtk? ( x11-libs/gtk+:2[${MULTILIB_USEDEP}] )
-   gtk3? ( x11-libs/gtk+:3[${MULTILIB_USEDEP}] )
-   dbus? ( >=sys-apps/dbus-1.6.18-r1[${MULTILIB_USEDEP}] )
-   kernel_linux? ( sys-libs/libcap )
-   introspection? ( dev-libs/gobject-introspection )
-   mono? (
-   dev-lang/mono
-   gtk? ( dev-dotnet/gtk-sharp )
-   )
-   python? (
-   ${PYTHON_DEPS}
-   gtk? ( dev-python/pygtk )
-   dbus? ( dev-python/dbus-python )
-   )
-   bookmarks? (
-   dev-python/twisted-core
-   dev-python/twisted-web
-   )
-"
-
-DEPEND="
-   ${COMMON_DEPEND}
-   dev-util/intltool
-   >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}]
-   doc? (
-   app-doc/doxygen
-   )
-"
-
-RDEPEND="
-   ${COMMON_DEPEND}
-   howl-compat? ( !net-misc/howl )
-   mdnsresponder-compat? ( !net-misc/mDNSResponder )
-   selinux? ( sec-policy/selinux-avahi )
-"
-
-pkg_preinst() {
-   enewgroup netdev
-   enewgroup avahi
-   enewuser avahi -1 -1 -1 avahi
-
-   if use autoipd; then
-   enewgroup avahi-autoipd
-   enewuser avahi-autoipd -1 -1 -1 avahi-autoipd
-   fi
-}
-
-pkg_setup() {
-   use mono && mono-env_pkg_setup
-}
-
-src_prepare() {
-   if use ipv6; then
-   sed -i \
-   -e s/use-ipv6=no/use-ipv6=yes/ \
-   avahi-daemon/avahi-daemon.conf || die
-   fi
-
-   sed -i\
-   -e 
"s:\\.\\./\\.\\./\\.\\./doc/avahi-docs/html/:../../../doc/${PF}/html/:" \
-   doxygen_to_devhelp.xsl || die
-
-   # Make gtk utils optional
-   epatch "${FILESDIR}"/${PN}-0.6.30-optional-gtk-utils.patch
-
-   # Fix init scripts for >=openrc-0.9.0, bug #383641
-   epatch "${FILESDIR}"/${PN}-0.6.x-openrc-0.9.x-init-scripts-fixes.patch
-
-   # install-exec-local -> install-exec-hook
-   epatch "${FILESDIR}"/${P}-install-exec-hook.patch
-
-   # Backport host-name-from-machine-id patch, bug #466134
-   epatch "${FILESDIR}"/${P}-host-name-from-machine-id.patch
-
-   # Don't install avahi-discover unless ENABLE_GTK_UTILS, bug #359575
-   epatch "${FILESDIR}"/${P}-fix-install-avahi-discover.patch
-
-   epatch 
"${FILESDIR}"/${P}-so_reuseport-may-not-exist-in-running-kernel.patch
-
-   # allow building client without the daemon
-   epatch "${FILESDIR}"/${P}-build-client-without-daemon.patch
-
-   # Fix build under various locales, bug #501664
-   epatch "${FILESDIR}"/${P}-fix-locale-build.patch
-
-   # Drop DEPRECATED flags, bug #384743
-   sed -i -e 's:-D[A-Z_]*DISABLE_DEPRECATED=1::g' avahi-ui/Makefile.am || 
die
-
-   # Fix references to Lennart's home directory, bug #466210
-   sed -i -e 's/\/home\/lennart\/tmp\/avahi//g' man/* || die
-
-   # Bug #525832
-   epatch_user
-
-   # Prevent .pyc files in DESTDIR
-   >py-compile
-
-   eautoreconf
-
-   # bundled manpages
-   multilib_copy_sources
-}
-
-src_confi

[gentoo-commits] repo/gentoo:master commit in: app-portage/grs/

2015-09-24 Thread Anthony G. Basile
commit: 906259bb32e84e8e410e37528b25db6444faa325
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Fri Sep 25 01:07:35 2015 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Fri Sep 25 01:08:09 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=906259bb

app-portage/grs: 0.2 stable on amd64

Package-Manager: portage-2.2.20.1

 app-portage/grs/grs-0.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/grs/grs-0.2.ebuild b/app-portage/grs/grs-0.2.ebuild
index 7eb8426..9fdc78a 100644
--- a/app-portage/grs/grs-0.2.ebuild
+++ b/app-portage/grs/grs-0.2.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == "" ]] ; then
inherit git-2
 else
SRC_URI="https://dev.gentoo.org/~blueness/${PN}/${P}.tar.gz";
-   KEYWORDS="~amd64"
+   KEYWORDS="amd64"
 fi
 
 DESCRIPTION="Suite to build Gentoo Reference Systems"



[gentoo-commits] proj/portage:master commit in: /

2015-09-24 Thread Brian Dolbec
commit: 2a080903071be7b9dda2a25d1e08148afde7c4d3
Author: Brian Dolbec  gentoo  org>
AuthorDate: Thu Sep 24 23:36:09 2015 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Thu Sep 24 23:36:09 2015 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=2a080903

Updates for a release

 NEWS  |  6 ++
 RELEASE-NOTES | 11 +++
 setup.py  |  2 +-
 3 files changed, 18 insertions(+), 1 deletion(-)

diff --git a/NEWS b/NEWS
index 10df908..1d1136f 100644
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,11 @@
 News (mainly features/major bug fixes)
 
+portage-2.2.22
+-
+* Stage 1 of the repoman re-write code merged in to master branch
+  This is the first release of the new code base.
+
+
 portage-2.2.19
 -
 * The squashdelta sync module was removed for separate installation

diff --git a/RELEASE-NOTES b/RELEASE-NOTES
index e54892b..b26ba20 100644
--- a/RELEASE-NOTES
+++ b/RELEASE-NOTES
@@ -1,6 +1,16 @@
 Release Notes; upgrade information mainly.
 Features/major bugfixes are listed in NEWS
 
+portage-2.2.22
+==
+* Bug Fixes:
+- Bug 559636 repoman: ignore unadded files when possible
+- Bug 510840 repoman: Remove profiles TODO comment
+- Bug 561234 SyncManager.async: initialize attributes before fork
+- Bug 561240 repository/config.py: Fix propogation of 
module_specific_options
+* First release of the repoman re-write code (stage 1)
+
+
 portage-2.2.21
 ==
 * Bug Fixes:
@@ -28,6 +38,7 @@ portage-2.2.21
 - Bug 560466 match_from_list: restrict =* to match only on version part 
boundaries
 * git sync: Respect PORTAGE_QUIET
 * several man page updates
+* rsync: per repo repos.conf rsync options via the 'sync-rsync-extra-opts' 
option
 
 
 portage-2.2.20.1

diff --git a/setup.py b/setup.py
index 3a1a321..ec43cfd 100755
--- a/setup.py
+++ b/setup.py
@@ -612,7 +612,7 @@ def get_manpages():
 
 setup(
name = 'portage',
-   version = '2.2.21',
+   version = '2.2.22',
url = 'https://wiki.gentoo.org/wiki/Project:Portage',
author = 'Gentoo Portage Development Team',
author_email = 'dev-port...@gentoo.org',



[gentoo-commits] proj/portage: New tag: v2.2.22

2015-09-24 Thread Brian Dolbec
commit: 
Commit: Brian Dolbec  gentoo  org>
CommitDate: Fri Sep 25 00:23:55 2015 +

New tag: v2.2.22




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

2015-09-24 Thread Brian Dolbec
commit: d3d60a663849e8349a8f38d10ac9326bd5b75093
Author: Brian Dolbec  gentoo  org>
AuthorDate: Fri Sep 25 00:16:06 2015 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Fri Sep 25 00:17:26 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3d60a66

sys-apps/portage: Bump version.

Bugs fixed: 559363, 510840, 561234, 561240.
This release also is the first release of the new repoman code base.
It is not functionally different than the prevuios code base.
It has been re-structured as part of an on-going re-write.

Package-Manager: portage-2.2.22

 sys-apps/portage/Manifest  |  2 +-
 .../{portage-2.2.21.ebuild => portage-2.2.22.ebuild}   | 14 ++
 2 files changed, 7 insertions(+), 9 deletions(-)

diff --git a/sys-apps/portage/Manifest b/sys-apps/portage/Manifest
index d3a22c4..bbba34b 100644
--- a/sys-apps/portage/Manifest
+++ b/sys-apps/portage/Manifest
@@ -2,5 +2,5 @@ DIST portage-2.2.14.tar.bz2 896674 SHA256 
8dd65971e0f1c31dca922b0f7be06e622aabbe
 DIST portage-2.2.18.tar.bz2 942561 SHA256 
e0d54f2fbcdc8b5fce716475183fa6e889b6fa8178c92d65a850df73f1636560 SHA512 
be4f95bc04a61cdb371fc66a03d2183961bfd458e9b2b89cf8cab8c9e70bde4119be266177d947e31429627609ed75a75c21abfe4b674ca529632d5728e8e8a6
 WHIRLPOOL 
f334bf5198d2214de557a046ed3217e23d48d8f8d7d64fb0bd2611dd5c8725139eaf7d1e1065f822d8816f3979e86d6a6f8df4d2f4605df0b5c157d6bbf09a6d
 DIST portage-2.2.20.1.tar.bz2 950298 SHA256 
84dd3ed1d9fd0a3336e956d057590c75834a906ae62a450411232fe5a842475c SHA512 
5f7373da20d448059e8fdc8a3593eaca780be3184f0494bac66f5eea7c33d00dd61b9e74cbe9a52413f08cef29d426ed8751e20e16be09178468c18d77a6ae2e
 WHIRLPOOL 
99643ce0ab74c5df64fb5239948c6102bc39847ff88eaf210c069c0c9587c1e8bdd1a032a7e61c1225b6113645387861d439e9c4f103df4d0f042b73e1afc328
 DIST portage-2.2.20.tar.bz2 950293 SHA256 
483ce0b20960840f6499452ca4ef7df36fde08f835dcadf3cdd118c1ff7207a4 SHA512 
fffb43a4c25a70cae071246fde7e379107535e607b9e8dd9fb513315a10750db92209bb436f532930a44cac06ba43aade06a7c2b0a1d675fd816968ba0fce7ae
 WHIRLPOOL 
aa1e560007cdafebd2bf56964d61e55a91fef4be5cd9bc50560891140287f6827ecda9d99e31ceb4e5a64691863fde325b51594cfdcfe88eb260fba47dad5fb9
-DIST portage-2.2.21.tar.bz2 962238 SHA256 
6dbaedfb677d450f1033650059b658d0e183460e28cd7e91aa2161bfb4e52672 SHA512 
2df19d2818e24c0b33f43f3ce12da0cdcc44c8d6cae16ba914dba84f22bab8bdde422dec98a9253d1577fc1438649d6b640a00dfe862e85e10476abe15e8db33
 WHIRLPOOL 
84a66a8ea8d3ef352f6108edd31790e7513c906ecaba7d54338e73d3ef8d2c7572eb01611d483ad88093ed1c26cd637c7441f4c5bd9f84f41f0478dfd3a96b89
+DIST portage-2.2.22.tar.bz2 973737 SHA256 
d8ae50e2306452c4f8c2772e4001fbfffbcb8f6e3606d61fad039c7c11a3f180 SHA512 
8acfe71880bdd1a681f54c8225d73f9dea52192c056b9cf64ed50aff2cc822568bebc5a8d7bac46f2d1f16093b6950434004926b10007c9591c18a435465e689
 WHIRLPOOL 
30d95197c63bac768f08e2397f1be79f077619f92833db6e86cb06e967ae982eed004106d869c86d37ac1b3cd66ca0a6c8acb4915dfb0385904caf09a901c93e
 DIST portage-2.2.8.tar.bz2 874672 SHA256 
c1074e01173df5384e003598dbc5f64f09e92f83fd26faab2f88f9f0bc64aa7e SHA512 
acc47d94ff8c08e5a7bf2d4c4e600863430dd1e7d0bb8b4254d6477a498933cae663db84debf9487d2243c2cba689629ef8e8b6cf108e10d40e89e8e8d7e1257
 WHIRLPOOL 
d54290ede8d3d85e5211cda7e86ed740178121ef2f47cf0858c27941d8679d29c11445befff962986d40a47ded50d0d4654de19e7d4aef3fdf2546655a0d6fe2

diff --git a/sys-apps/portage/portage-2.2.21.ebuild 
b/sys-apps/portage/portage-2.2.22.ebuild
similarity index 96%
rename from sys-apps/portage/portage-2.2.21.ebuild
rename to sys-apps/portage/portage-2.2.22.ebuild
index 42e1a4a..99d5c1c 100644
--- a/sys-apps/portage/portage-2.2.21.ebuild
+++ b/sys-apps/portage/portage-2.2.22.ebuild
@@ -353,13 +353,11 @@ pkg_postinst() {
fi
 
einfo ""
-   einfo "The 'websync' module has now been properly renamed to 'webrsync'"
-   einfo "Please update your repos.conf/gentoo.conf file if needed."
-   einfo ""
-   einfo "This release of portage removed the new squashfs sync module "
-   einfo "introduced in portage-2.2.19."
-   einfo "Look for it to be released as an installable portage module 
soon."
-   einfo "This will allow it to develop at it's own pace partially 
independant"
-   einfo "of portage"
+   einfo "This release of portage contains the new repoman code base"
+   einfo "This code base is still being developed.  So its API's are"
+   einfo "not to be considered stable and are subject to change."
+   einfo "The code released has been tested and considered ready for use."
+   einfo "This however does not guarantee it to be completely bug free."
+   einfo "Please report any bugs you may encounter."
einfo ""
 }



[gentoo-commits] repo/gentoo:master commit in: net-print/cups-filters/

2015-09-24 Thread Mike Gilbert
commit: f88d36c1a115ebb6f23da00e3902d65de9cb19b7
Author: Mike Gilbert  gentoo  org>
AuthorDate: Thu Sep 24 23:15:53 2015 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Thu Sep 24 23:16:07 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f88d36c1

net-print/cups-filters: Depend on dev-util/gdbus-codegen

Bug: https://bugs.gentoo.org/560822

Package-Manager: portage-2.2.21_p119

 net-print/cups-filters/cups-filters-1.0.73.ebuild | 4 +++-
 net-print/cups-filters/cups-filters-1.0.74.ebuild | 4 +++-
 net-print/cups-filters/cups-filters-1.0.75.ebuild | 4 +++-
 net-print/cups-filters/cups-filters-1.0.76.ebuild | 4 +++-
 net-print/cups-filters/cups-filters-.ebuild   | 4 +++-
 5 files changed, 15 insertions(+), 5 deletions(-)

diff --git a/net-print/cups-filters/cups-filters-1.0.73.ebuild 
b/net-print/cups-filters/cups-filters-1.0.73.ebuild
index 84982d8..924c515 100644
--- a/net-print/cups-filters/cups-filters-1.0.73.ebuild
+++ b/net-print/cups-filters/cups-filters-1.0.73.ebuild
@@ -42,7 +42,9 @@ RDEPEND="
tiff? ( media-libs/tiff:0 )
zeroconf? ( net-dns/avahi[dbus] )
 "
-DEPEND="${RDEPEND}"
+DEPEND="${RDEPEND}
+   dev-util/gdbus-codegen
+"
 
 src_prepare() {
base_src_prepare

diff --git a/net-print/cups-filters/cups-filters-1.0.74.ebuild 
b/net-print/cups-filters/cups-filters-1.0.74.ebuild
index 84982d8..924c515 100644
--- a/net-print/cups-filters/cups-filters-1.0.74.ebuild
+++ b/net-print/cups-filters/cups-filters-1.0.74.ebuild
@@ -42,7 +42,9 @@ RDEPEND="
tiff? ( media-libs/tiff:0 )
zeroconf? ( net-dns/avahi[dbus] )
 "
-DEPEND="${RDEPEND}"
+DEPEND="${RDEPEND}
+   dev-util/gdbus-codegen
+"
 
 src_prepare() {
base_src_prepare

diff --git a/net-print/cups-filters/cups-filters-1.0.75.ebuild 
b/net-print/cups-filters/cups-filters-1.0.75.ebuild
index 84982d8..924c515 100644
--- a/net-print/cups-filters/cups-filters-1.0.75.ebuild
+++ b/net-print/cups-filters/cups-filters-1.0.75.ebuild
@@ -42,7 +42,9 @@ RDEPEND="
tiff? ( media-libs/tiff:0 )
zeroconf? ( net-dns/avahi[dbus] )
 "
-DEPEND="${RDEPEND}"
+DEPEND="${RDEPEND}
+   dev-util/gdbus-codegen
+"
 
 src_prepare() {
base_src_prepare

diff --git a/net-print/cups-filters/cups-filters-1.0.76.ebuild 
b/net-print/cups-filters/cups-filters-1.0.76.ebuild
index 84982d8..924c515 100644
--- a/net-print/cups-filters/cups-filters-1.0.76.ebuild
+++ b/net-print/cups-filters/cups-filters-1.0.76.ebuild
@@ -42,7 +42,9 @@ RDEPEND="
tiff? ( media-libs/tiff:0 )
zeroconf? ( net-dns/avahi[dbus] )
 "
-DEPEND="${RDEPEND}"
+DEPEND="${RDEPEND}
+   dev-util/gdbus-codegen
+"
 
 src_prepare() {
base_src_prepare

diff --git a/net-print/cups-filters/cups-filters-.ebuild 
b/net-print/cups-filters/cups-filters-.ebuild
index 84982d8..924c515 100644
--- a/net-print/cups-filters/cups-filters-.ebuild
+++ b/net-print/cups-filters/cups-filters-.ebuild
@@ -42,7 +42,9 @@ RDEPEND="
tiff? ( media-libs/tiff:0 )
zeroconf? ( net-dns/avahi[dbus] )
 "
-DEPEND="${RDEPEND}"
+DEPEND="${RDEPEND}
+   dev-util/gdbus-codegen
+"
 
 src_prepare() {
base_src_prepare



[gentoo-commits] repo/gentoo:master commit in: sci-physics/lammps/

2015-09-24 Thread Nicolas Bock
commit: 2c611553c4523191b2e9949de97db3166d14a3f0
Author: Nicolas Bock  gentoo  org>
AuthorDate: Thu Sep 24 23:03:42 2015 +
Commit: Nicolas Bock  gentoo  org>
CommitDate: Thu Sep 24 23:04:14 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c611553

sci-physics/lammps: Version bump.

Package-Manager: portage-2.2.20.1

 sci-physics/lammps/Manifest   |   1 +
 sci-physics/lammps/lammps-20150924.ebuild | 267 ++
 2 files changed, 268 insertions(+)

diff --git a/sci-physics/lammps/Manifest b/sci-physics/lammps/Manifest
index 6145431..5562a01 100644
--- a/sci-physics/lammps/Manifest
+++ b/sci-physics/lammps/Manifest
@@ -4,6 +4,7 @@ DIST lammps-11Sep15.tar.gz 87274144 SHA256 
79a40bc395a9052345cf1c7caa8da69f6ec06
 DIST lammps-15May15.tar.gz 63835027 SHA256 
0233ea98c7d77d31bd0a538bb674c0ee8f000f1d0ee1b8c049072873192aa228 SHA512 
a23c16b98117590b15ca7662b878fb2f76ec41399c329c98deb48e28a0ffce293443269513a96c2503389894b598787b19dadc210d4b4dbc6a7432caf633e7d1
 WHIRLPOOL 
4c4edfd772bbf534e42fc43e1feaf3b8f76e74c58ec1e985e3c29ee0d8e64aa8c501b8e45e078643409c320a1d834b0d5eb699e7d1ec29df06be0126d12492f1
 DIST lammps-18Aug15.tar.gz 87893731 SHA256 
513237934cda7c1e026f4983096fd53cb510fadee12c55b13b4735086155245a SHA512 
5816509f5b988dbe74c9f40a9faa42b3bcf260388dfe70703a1544517acd3f868d3bc398fb4c2fa7713d24409075d44ad80b8e91a25a28db783c2605aff30977
 WHIRLPOOL 
7022f3aabadffdfa2ef4c8219589e46fba2572d9ed4b52591f6516a61d4895b39d637d88535ba83881db5d48661e34ca6ff2f22a6819dbec015af979721a0f53
 DIST lammps-21Aug15.tar.gz 87096749 SHA256 
46f68e7b61e50ab3e790c53cadd82fde7c7aa58aa73e8a3257f24facff2ed0a4 SHA512 
b1dd90890c43a6cf55a57a61279dcc4c10fdedb4ad90f225a06c0e93eb139d30f2d56baa233c081b38adeeb0a8419a0315ccc4b0fa15c3ffbf7db626ca261e9d
 WHIRLPOOL 
a1d7d4ab30f9ecca3fd64216e729fef6fa1b3f7a6698b9eaf104bcbfa03a66862cd8c5882e94f73e841064d94bf030aaf569ebb457d89fbd345b391f9cee6822
+DIST lammps-24Sep15.tar.gz 87307191 SHA256 
e03cdeb2b3b6107d98969febea26575c85590603ab4f79d26efc46bac6d6cc60 SHA512 
356dd556f845cec456865062375120c0898cef1870617d80b31b0e8e964585140120b21f891cd9b40ecde7aaf43beb34d7b15396830e08273624a9b14da551e4
 WHIRLPOOL 
667b8aaf927d268c569a192c835b7dbdc80a0f25abb1f2c96007517ea218a69b2816dde4ebe28ca82974d01472c0e1126b67e89a19fb3ef49e4020f3d9c69fba
 DIST lammps-29Aug15.tar.gz 87253305 SHA256 
fff69b47c40936d4ccd90a8443ce5bb1bcf4cb449ae06a5822c1b11a2ab2dd67 SHA512 
991c56608a3288ebdcd2fb0857c595d42047b5ed0780b6d4ddb98388627499727b6c04fe0eff3e7221238dba2a8601f0b4b4067b5aa5ec2f356b4ee13f6c129c
 WHIRLPOOL 
88da74fa65aeb187330439417512d516fe8adf4a5df4be48fdafafa198e8c4d657ecce7f04f749d77cb2f8a7881ac47f4604cf6bc8eb3ca8b2cbc7988d866a87
 DIST lammps-4Sep15.tar.gz 87259558 SHA256 
8652c801e4ce8b6b7d42a6c71f76b68a6e741dc8efb8d7d3dad36b624fe8f150 SHA512 
ee730c8bd96e14931192a68c12e4ebde301cc3525b20816d051059f155b70c6edcea7dc2ed911e0b89685d751cd5a74b4bb5eedd6c16a042a2191bf8a9665fc9
 WHIRLPOOL 
271ac0d74e03d3e3e118a8b2385d98ce3f566ead67f1c329a219c265f886dc267b11be17c2caa52749ebac212bbc7456fba2d0d6ec69cd25815316e601b3360a
 DIST lammps-9Sep15.tar.gz 87275742 SHA256 
c783be8bf2c2fbef75522b09b4420006d94104f2a60b82f55f7bc255c6163079 SHA512 
60fa8c818c72c3c236095c7aa23c2ec30cc3370b6dc14d0c1d9e347772e70c96dab43019092eb93f2327377f1b4cc642416be65d156b1faf934bfa805d228bcf
 WHIRLPOOL 
4a9dbb0f1b493177614646dcef124c723a3b6171d0894fee8b34e9fff7d0962ada0a2a27564338fef6551aaff322f4b50784b98c250555173cba5478cc60e9af

diff --git a/sci-physics/lammps/lammps-20150924.ebuild 
b/sci-physics/lammps/lammps-20150924.ebuild
new file mode 100644
index 000..5400e87
--- /dev/null
+++ b/sci-physics/lammps/lammps-20150924.ebuild
@@ -0,0 +1,267 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python{2_7,3_3} )
+
+inherit eutils flag-o-matic fortran-2 multilib python-r1
+
+convert_month() {
+   case $1 in
+   01) echo Jan
+   ;;
+   02) echo Feb
+   ;;
+   03) echo Mar
+   ;;
+   04) echo Apr
+   ;;
+   05) echo May
+   ;;
+   06) echo Jun
+   ;;
+   07) echo Jul
+   ;;
+   08) echo Aug
+   ;;
+   09) echo Sep
+   ;;
+   10) echo Oct
+   ;;
+   11) echo Nov
+   ;;
+   12) echo Dec
+   ;;
+   *)  echo unknown
+   ;;
+   esac
+}
+
+MY_P=${PN}-$((10#${PV:6:2}))$(convert_month ${PV:4:2})${PV:2:2}
+
+DESCRIPTION="Large-scale Atomic/Molecular Massively Parallel Simulator"
+HOMEPAGE="http://lammps.sandia.gov/";
+SRC_URI="http://lammps.sandia.gov/t

[gentoo-commits] repo/gentoo:master commit in: app-misc/beep/

2015-09-24 Thread Patrice Clement
commit: e8a01f6ff3a17fabd823e3d41fd51850c7959027
Author: Patrice Clement  gentoo  org>
AuthorDate: Thu Sep 24 22:54:19 2015 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Thu Sep 24 22:55:02 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8a01f6f

app-misc/beep: Stable for ppc+ppc64. Fixes bug 144343.

Package-Manager: portage-2.2.18
Signed-off-by: Patrice Clement  gentoo.org>

 app-misc/beep/beep-1.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/beep/beep-1.3-r1.ebuild b/app-misc/beep/beep-1.3-r1.ebuild
index eda1c8b..e38915f 100644
--- a/app-misc/beep/beep-1.3-r1.ebuild
+++ b/app-misc/beep/beep-1.3-r1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="http://www.johnath.com/beep/${P}.tar.gz";
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ppc ppc64 ~sparc ~x86"
 IUSE="suid"
 
 PATCHES=(



[gentoo-commits] repo/gentoo:master commit in: dev-haskell/text/

2015-09-24 Thread Sergei Trofimovich
commit: 7d424d6c5062db72e0fa1e525d1b54b3301831dc
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Sep 24 21:44:49 2015 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Sep 24 21:45:16 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d424d6c

dev-haskell/text: drop USE=developer as it breaks API, bug #561100

Reported-by: Paul Osmialowski
Bug: https://bugs.gentoo.org/561100

Package-Manager: portage-2.2.20

 dev-haskell/text/text-1.1.1.3.ebuild | 7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/dev-haskell/text/text-1.1.1.3.ebuild 
b/dev-haskell/text/text-1.1.1.3.ebuild
index 9f1e558..85beb53 100644
--- a/dev-haskell/text/text-1.1.1.3.ebuild
+++ b/dev-haskell/text/text-1.1.1.3.ebuild
@@ -4,7 +4,8 @@
 
 EAPI=5
 
-# ebuild generated by hackport 0.4.
+# ebuild generated by hackport 0.4.6.
+#hackport: flags: -developer
 
 CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite"
 inherit haskell-cabal
@@ -16,7 +17,7 @@ 
SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
 LICENSE="BSD"
 SLOT="0/${PV}"
 KEYWORDS="~alpha amd64 ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~x86-freebsd 
~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
-IUSE="developer"
+IUSE=""
 RESTRICT="test" # quickcheck-2.7 is missing keywords due to new tf-random dep
 
 RDEPEND=">=dev-lang/ghc-7.4.1:=
@@ -33,5 +34,5 @@ DEPEND="${RDEPEND}
 
 src_configure() {
haskell-cabal_src_configure \
-   $(cabal_flag developer developer)
+   --flag=-developer
 }



[gentoo-commits] repo/gentoo:master commit in: profiles/

2015-09-24 Thread Patrice Clement
commit: efdd54f2f85cf29b3ee70b75779a3a544622824c
Author: Patrice Clement  gentoo  org>
AuthorDate: Thu Sep 24 21:42:13 2015 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Thu Sep 24 21:43:08 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=efdd54f2

package.mask: Masked dev-db/derby for removal. See bug 561410.

Signed-off-by: Patrice Clement  gentoo.org>

 profiles/package.mask | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/profiles/package.mask b/profiles/package.mask
index e33d510..f0c9f8c 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -30,6 +30,12 @@
 
 #--- END OF EXAMPLES ---
 
+# Patrice Clement  (24 Sep 2015)
+# This package was never marked stable 
+# and is relying on an old version of JavaCC.
+# Masked for removal in 30 days. See bug 561410.
+dev-db/derby
+
 # Dion Moult  (24 Sep 2015)
 # Masked for removal in 30 days. Bug #466724
 # Heavily out of date. Use sci-chemistry/icm



[gentoo-commits] repo/gentoo:master commit in: dev-haskell/text/

2015-09-24 Thread Sergei Trofimovich
commit: 3c3798799a2ac677bc7ca510b751c551b7a3016b
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Sep 24 21:40:44 2015 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Sep 24 21:40:55 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c379879

dev-haskell/text: drop USE=developer as it breaks API, bug #561100

Reported-by: Paul Osmialowski
Bug: https://bugs.gentoo.org/561100

Package-Manager: portage-2.2.20

 dev-haskell/text/text-1.2.1.3.ebuild | 7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/dev-haskell/text/text-1.2.1.3.ebuild 
b/dev-haskell/text/text-1.2.1.3.ebuild
index 287dd53..7b18429 100644
--- a/dev-haskell/text/text-1.2.1.3.ebuild
+++ b/dev-haskell/text/text-1.2.1.3.ebuild
@@ -4,7 +4,8 @@
 
 EAPI=5
 
-# ebuild generated by hackport 0.4.5.
+# ebuild generated by hackport 0.4.6.
+#hackport: flags: -developer
 
 CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite"
 inherit haskell-cabal
@@ -16,7 +17,7 @@ 
SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
 LICENSE="BSD"
 SLOT="0/${PV}"
 KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd 
~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
-IUSE="developer"
+IUSE=""
 
 RDEPEND="dev-haskell/binary:=[profile?]
>=dev-lang/ghc-7.4.1:=
@@ -34,5 +35,5 @@ DEPEND="${RDEPEND}
 
 src_configure() {
haskell-cabal_src_configure \
-   $(cabal_flag developer developer)
+   --flag=-developer
 }



[gentoo-commits] repo/gentoo:master commit in: app-editors/nano/

2015-09-24 Thread Mike Frysinger
commit: 6cab00bf3c3efd8aaf427fceac13fdf65725ba59
Author: Mike Frysinger  gentoo  org>
AuthorDate: Thu Sep 24 21:40:47 2015 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Thu Sep 24 21:41:10 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6cab00bf

app-editors/nano: switch USE=magic to the new configure flag

No need to hack autoconf cache vars anymore.

 app-editors/nano/nano-2.4.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/nano/nano-2.4.2.ebuild 
b/app-editors/nano/nano-2.4.2.ebuild
index 8548dec..f324c2e 100644
--- a/app-editors/nano/nano-2.4.2.ebuild
+++ b/app-editors/nano/nano-2.4.2.ebuild
@@ -41,7 +41,6 @@ src_prepare() {
 
 src_configure() {
use static && append-ldflags -static
-   eval export ac_cv_{header_magic_h,lib_magic_magic_open}=$(usex magic)
local myconf=()
case ${CHOST} in
*-gnu*|*-uclibc*) myconf+=( "--with-wordbounds" ) ;; #467848
@@ -53,6 +52,7 @@ src_configure() {
$(use_enable !minimal multibuffer) \
$(use_enable !minimal nanorc) \
--disable-wrapping-as-root \
+   $(use_enable magic libmagic) \
$(use_enable spell speller) \
$(use_enable justify) \
$(use_enable debug) \



[gentoo-commits] repo/gentoo:master commit in: app-editors/nano/

2015-09-24 Thread Mike Frysinger
commit: 405194139f8707d650ac5224909ce1ba31174caf
Author: Mike Frysinger  gentoo  org>
AuthorDate: Thu Sep 24 21:33:39 2015 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Thu Sep 24 21:33:42 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40519413

app-editors/nano: add a live vcs ebuild

 app-editors/nano/nano-2.3.6.ebuild   | 5 -
 app-editors/nano/nano-2.4.0.ebuild   | 5 -
 app-editors/nano/nano-2.4.1.ebuild   | 5 -
 app-editors/nano/nano-2.4.2.ebuild   | 5 -
 app-editors/nano/{nano-2.4.2.ebuild => nano-.ebuild} | 5 -
 5 files changed, 20 insertions(+), 5 deletions(-)

diff --git a/app-editors/nano/nano-2.3.6.ebuild 
b/app-editors/nano/nano-2.3.6.ebuild
index bc910ef..8096b33 100644
--- a/app-editors/nano/nano-2.3.6.ebuild
+++ b/app-editors/nano/nano-2.3.6.ebuild
@@ -11,6 +11,7 @@ if [[ ${PV} == "" ]] ; then
 else
MY_P=${PN}-${PV/_}
SRC_URI="http://www.nano-editor.org/dist/v${PV:0:3}/${MY_P}.tar.gz";
+   KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh 
sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd 
~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 fi
 
 DESCRIPTION="GNU GPL'd Pico clone with more functionality"
@@ -18,7 +19,6 @@ HOMEPAGE="http://www.nano-editor.org/ 
https://www.gentoo.org/doc/en/nano-basics-
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd 
~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="debug justify +magic minimal ncurses nls slang +spell unicode"
 
 RDEPEND=">=sys-libs/ncurses-5.9-r1[unicode?]
@@ -30,6 +30,9 @@ DEPEND="${RDEPEND}
virtual/pkgconfig"
 
 src_prepare() {
+   if [[ ${PV} == "" ]] ; then
+   eautoreconf
+   fi
epatch_user
 }
 

diff --git a/app-editors/nano/nano-2.4.0.ebuild 
b/app-editors/nano/nano-2.4.0.ebuild
index e0238c1..99eb5b1 100644
--- a/app-editors/nano/nano-2.4.0.ebuild
+++ b/app-editors/nano/nano-2.4.0.ebuild
@@ -11,6 +11,7 @@ if [[ ${PV} == "" ]] ; then
 else
MY_P=${PN}-${PV/_}
SRC_URI="http://www.nano-editor.org/dist/v${PV:0:3}/${MY_P}.tar.gz";
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd 
~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux 
~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 fi
 
 DESCRIPTION="GNU GPL'd Pico clone with more functionality"
@@ -18,7 +19,6 @@ HOMEPAGE="http://www.nano-editor.org/ 
https://www.gentoo.org/doc/en/nano-basics-
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd 
~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux 
~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="debug justify +magic minimal ncurses nls slang +spell unicode"
 
 RDEPEND=">=sys-libs/ncurses-5.9-r1[unicode?]
@@ -30,6 +30,9 @@ DEPEND="${RDEPEND}
virtual/pkgconfig"
 
 src_prepare() {
+   if [[ ${PV} == "" ]] ; then
+   eautoreconf
+   fi
epatch "${FILESDIR}"/${P}-no-speller.patch #544296
epatch_user
 }

diff --git a/app-editors/nano/nano-2.4.1.ebuild 
b/app-editors/nano/nano-2.4.1.ebuild
index fa4b5d0..83741b8 100644
--- a/app-editors/nano/nano-2.4.1.ebuild
+++ b/app-editors/nano/nano-2.4.1.ebuild
@@ -11,6 +11,7 @@ if [[ ${PV} == "" ]] ; then
 else
MY_P=${PN}-${PV/_}
SRC_URI="http://www.nano-editor.org/dist/v${PV:0:3}/${MY_P}.tar.gz";
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd 
~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux 
~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 fi
 
 DESCRIPTION="GNU GPL'd Pico clone with more functionality"
@@ -18,7 +19,6 @@ HOMEPAGE="http://www.nano-editor.org/ 
https://www.gentoo.org/doc/en/nano-basics-
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd 
~x86-freebsd ~hppa-hpux ~ia64

[gentoo-commits] repo/gentoo:master commit in: app-editors/nano/

2015-09-24 Thread Mike Frysinger
commit: ac8db9f173bf3d3dbe9c8c699a7226a46e62b878
Author: Mike Frysinger  gentoo  org>
AuthorDate: Thu Sep 24 21:30:35 2015 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Thu Sep 24 21:30:43 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac8db9f1

app-editors/nano: add USE=static support

 app-editors/nano/nano-2.4.2.ebuild | 16 ++--
 1 file changed, 10 insertions(+), 6 deletions(-)

diff --git a/app-editors/nano/nano-2.4.2.ebuild 
b/app-editors/nano/nano-2.4.2.ebuild
index fa4b5d0..b18cbc7 100644
--- a/app-editors/nano/nano-2.4.2.ebuild
+++ b/app-editors/nano/nano-2.4.2.ebuild
@@ -4,7 +4,7 @@
 
 EAPI="4"
 
-inherit eutils
+inherit eutils flag-o-matic
 if [[ ${PV} == "" ]] ; then
ESVN_REPO_URI="svn://svn.savannah.gnu.org/nano/trunk/nano"
inherit subversion autotools
@@ -19,21 +19,25 @@ HOMEPAGE="http://www.nano-editor.org/ 
https://www.gentoo.org/doc/en/nano-basics-
 LICENSE="GPL-3"
 SLOT="0"
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd 
~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux 
~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE="debug justify +magic minimal ncurses nls slang +spell unicode"
+IUSE="debug justify +magic minimal ncurses nls slang +spell static unicode"
 
-RDEPEND=">=sys-libs/ncurses-5.9-r1[unicode?]
-   magic? ( sys-apps/file )
+LIB_DEPEND=">=sys-libs/ncurses-5.9-r1:0[unicode?]
+   sys-libs/ncurses:0[static-libs(+)]
+   magic? ( sys-apps/file[static-libs(+)] )
nls? ( virtual/libintl )
-   !ncurses? ( slang? ( sys-libs/slang ) )"
+   !ncurses? ( slang? ( sys-libs/slang[static-libs(+)] ) )"
+RDEPEND="!static? ( ${LIB_DEPEND//\[static-libs(+)]} )"
 DEPEND="${RDEPEND}
nls? ( sys-devel/gettext )
-   virtual/pkgconfig"
+   virtual/pkgconfig
+   static? ( ${LIB_DEPEND} )"
 
 src_prepare() {
epatch_user
 }
 
 src_configure() {
+   use static && append-ldflags -static
eval export ac_cv_{header_magic_h,lib_magic_magic_open}=$(usex magic)
local myconf=()
case ${CHOST} in



[gentoo-commits] repo/gentoo:master commit in: dev-java/dict4j/

2015-09-24 Thread Patrice Clement
commit: c6069658b354f68efceea1a101001d573b694c6b
Author: Patrice Clement  gentoo  org>
AuthorDate: Thu Sep 24 20:50:57 2015 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Thu Sep 24 20:51:37 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6069658

dev-java/dict4j: Initial commit. Fixes bug 503758.

Signed-off-by: Patrice Clement  gentoo.org>

 dev-java/dict4j/Manifest  |  1 +
 dev-java/dict4j/dict4j-1.1.ebuild | 30 ++
 dev-java/dict4j/metadata.xml  |  8 
 3 files changed, 39 insertions(+)

diff --git a/dev-java/dict4j/Manifest b/dev-java/dict4j/Manifest
new file mode 100644
index 000..97a0723
--- /dev/null
+++ b/dev-java/dict4j/Manifest
@@ -0,0 +1 @@
+DIST dict4j-1.1-src.jar 50269 SHA256 
71e2e0cf6fcc887bf39ce444e37052f4caa7b100fd3f9abe78d169c977d7ef3c SHA512 
35a6d77d13effa8d5e59ed2c03ff5700ccf2d91673b2bcf420a4f216176ca521dff741ff6660547823d16d06df1dcd2d44be1e90ce293a83ad9fa649b5caf7c6
 WHIRLPOOL 
369e77461ee2b80b4439adab7ad1c09f1ed194bda7c8617cac074a2faf7fff3c6aa4c1e36db05531aadcd2bbdb6190b2cd7b17f3921e6599f89ff292c62df305

diff --git a/dev-java/dict4j/dict4j-1.1.ebuild 
b/dev-java/dict4j/dict4j-1.1.ebuild
new file mode 100644
index 000..0f13198
--- /dev/null
+++ b/dev-java/dict4j/dict4j-1.1.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+JAVA_PKG_IUSE="doc source"
+
+inherit java-pkg-2 java-pkg-simple
+
+DESCRIPTION="Dict protocol implementation in Java"
+HOMEPAGE="http://dict4j.sourceforge.net/";
+SRC_URI="mirror://sourceforge/${PN}/${P}-src.jar"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+IUSE="doc source"
+
+DEPEND=""
+
+RDEPEND=">=virtual/jre-1.6
+   ${DEPEND}"
+DEPEND=">=virtual/jdk-1.6
+   app-arch/unzip
+   ${DEPEND}"
+
+JAVA_SRC_DIR="net"
+JAVA_ENCODING="ISO-8859-1"

diff --git a/dev-java/dict4j/metadata.xml b/dev-java/dict4j/metadata.xml
new file mode 100644
index 000..a620379
--- /dev/null
+++ b/dev-java/dict4j/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd";>
+
+   java
+
+   monsie...@gentoo.org
+
+



[gentoo-commits] repo/gentoo:master commit in: app-crypt/pinentry/

2015-09-24 Thread Kristian Fiskerstrand
commit: 9bdee70407a6f7ffeebad92d06b8ad5c8e1066e4
Author: Kristian Fiskerstrand  gentoo  org>
AuthorDate: Thu Sep 24 20:44:27 2015 +
Commit: Kristian Fiskerstrand  gentoo  org>
CommitDate: Thu Sep 24 20:44:41 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9bdee704

app-crypt/pinentry: Restructure dependencies in 0.9.6-r4

Package-Manager: portage-2.2.20.1

 app-crypt/pinentry/pinentry-0.9.6-r4.ebuild | 101 
 1 file changed, 101 insertions(+)

diff --git a/app-crypt/pinentry/pinentry-0.9.6-r4.ebuild 
b/app-crypt/pinentry/pinentry-0.9.6-r4.ebuild
new file mode 100644
index 000..20fc85f
--- /dev/null
+++ b/app-crypt/pinentry/pinentry-0.9.6-r4.ebuild
@@ -0,0 +1,101 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit autotools qmake-utils multilib eutils flag-o-matic toolchain-funcs
+
+DESCRIPTION="Collection of simple PIN or passphrase entry dialogs which 
utilize the Assuan protocol"
+HOMEPAGE="http://gnupg.org/aegypten2/index.html";
+SRC_URI="mirror://gnupg/${PN}/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd 
~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE="emacs gtk ncurses qt4 caps gnome-keyring static"
+
+CDEPEND="
+   >=dev-libs/libgpg-error-1.17
+   >=dev-libs/libassuan-2
+   >=dev-libs/libgcrypt-1.6.3
+   ncurses? ( sys-libs/ncurses:0= )
+   gtk? ( x11-libs/gtk+:2 )
+   qt4? ( >=dev-qt/qtgui-4.4.1:4 )
+   caps? ( sys-libs/libcap )
+   static? ( >=sys-libs/ncurses-5.7-r5:0=[static-libs,-gpm] )
+   app-eselect/eselect-pinentry
+   gnome-keyring? ( app-crypt/libsecret )
+"
+
+DEPEND="${CDEPEND}
+   sys-devel/gettext
+   virtual/pkgconfig
+"
+
+RDEPEND="
+   ${CDEPEND}
+   gnome-keyring? ( app-crypt/gcr )
+"
+
+REQUIRED_USE="
+   || ( ncurses gtk qt4 )
+   gtk? ( !static )
+   qt4? ( !static )
+   static? ( ncurses )
+"
+
+DOCS=( AUTHORS ChangeLog NEWS README THANKS TODO )
+
+src_prepare() {
+   epatch "${FILESDIR}/${PN}-0.8.2-ncurses.patch"
+   epatch "${FILESDIR}/${P}-Remove-detection-of-Qt5.patch"
+   eautoreconf
+}
+
+src_configure() {
+   use static && append-ldflags -static
+   [[ "$(gcc-major-version)" -ge 5 ]] && append-cxxflags -std=gnu++11
+
+   # Issues finding qt on multilib systems
+   export QTLIB="${QTDIR}/$(get_libdir)"
+
+   econf \
+   --enable-pinentry-tty \
+   $(use_enable emacs pinentry-emacs) \
+   $(use_enable gtk pinentry-gtk2) \
+   $(use_enable ncurses pinentry-curses) \
+   $(use_enable ncurses fallback-curses) \
+   $(use_enable qt4 pinentry-qt) \
+   $(use_with caps libcap) \
+   $(use_enable gnome-keyring libsecret) \
+   $(use_enable gnome-keyring pinentry-gnome3) \
+   MOC="$(qt4_get_bindir)"/moc
+}
+
+src_install() {
+   default
+   rm -f "${ED}"/usr/bin/pinentry || die
+
+   if use_enable qt4; then
+   dosym pinentry-qt /usr/bin/pinentry-qt4
+   fi
+}
+
+pkg_postinst() {
+   if ! has_version 'app-crypt/pinentry' || has_version 
'=2.6.9 support memory locking for 
unprivileged processes."
+   elog "The soft resource limit for memory locking specifies the 
limit an"
+   elog "unprivileged process may lock into memory. You can also 
use POSIX"
+   elog "capabilities to allow pinentry to lock memory. To do so 
activate the caps"
+   elog "USE flag and add the CAP_IPC_LOCK capability to the 
permitted set of"
+   elog "your users."
+   fi
+
+   eselect pinentry update ifunset
+}
+
+pkg_postrm() {
+   eselect pinentry update ifunset
+}



[gentoo-commits] proj/portage:master commit in: pym/portage/dbapi/

2015-09-24 Thread Zac Medico
commit: 9073762274c112f3d080367ea0fb24edb88564be
Author: Zac Medico  gentoo  org>
AuthorDate: Thu Sep 24 20:25:46 2015 +
Commit: Zac Medico  gentoo  org>
CommitDate: Thu Sep 24 20:30:06 2015 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=90737622

fakedbapi.cpv_exists: handle KeyError from _instance_key

Since commit 7921e61065502fd0bb08d9dfef6a4493657961bf, cpv_exists
needs to handle KeyError from _instance_key_multi_instance.

Fixes: 7921e6106550 ("binpkg-multi-instance 2 of 7")

 pym/portage/dbapi/virtual.py | 8 ++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/pym/portage/dbapi/virtual.py b/pym/portage/dbapi/virtual.py
index a59c3b5..f2e841f 100644
--- a/pym/portage/dbapi/virtual.py
+++ b/pym/portage/dbapi/virtual.py
@@ -98,8 +98,12 @@ class fakedbapi(dbapi):
return result[:]
 
def cpv_exists(self, mycpv, myrepo=None):
-   return self._instance_key(mycpv,
-   support_string=True) in self.cpvdict
+   try:
+   return self._instance_key(mycpv,
+   support_string=True) in self.cpvdict
+   except KeyError:
+   # _instance_key failure
+   return False
 
def cp_list(self, mycp, use_cache=1, myrepo=None):
# NOTE: Cache can be safely shared with the match cache, since 
the



[gentoo-commits] repo/gentoo:master commit in: media-video/nvidia-settings/

2015-09-24 Thread Christian Ruppert
commit: 6cc8025889d413a0d175cc73a03e1fd44d42074a
Author: Christian Ruppert  gentoo  org>
AuthorDate: Thu Sep 24 20:17:46 2015 +
Commit: Christian Ruppert  gentoo  org>
CommitDate: Thu Sep 24 20:26:28 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6cc80258

media-video/nvidia-settings: Version bump, bug 561236

Package-Manager: portage-2.2.20.1

 media-video/nvidia-settings/Manifest   |  1 +
 media-video/nvidia-settings/metadata.xml   | 11 +--
 .../nvidia-settings/nvidia-settings-355.11.ebuild  | 80 ++
 3 files changed, 88 insertions(+), 4 deletions(-)

diff --git a/media-video/nvidia-settings/Manifest 
b/media-video/nvidia-settings/Manifest
index ed69383..915c28f 100644
--- a/media-video/nvidia-settings/Manifest
+++ b/media-video/nvidia-settings/Manifest
@@ -1 +1,2 @@
 DIST nvidia-settings-340.58.tar.bz2 1549850 SHA256 
21cd29fea50e62766d1985c84f6d6de8efa911e32abcbff8e7ccf0e43ebe25c0 SHA512 
4c581a940c99fac28564ab6154f47cae496ebfda6339b7f10c5decf8fea52b6c12e5b63dfcf78f8365909e49539560a50338edb17117881b6a03c196bd51836c
 WHIRLPOOL 
b486032339c4f8c4767239e3a4b001667bceb2c3ef5f3e94f08d1c54c60a958e1c76456415769ce9ff0503b6eb3d903aa89599a0234e08447c33671c598e66c8
+DIST nvidia-settings-355.11.tar.bz2 1570699 SHA256 
999ebc9e12ca1a6b6195d439f08aac0b9420f8117e42cac62dccd2872dabb74b SHA512 
7565e3d809c5f27ec9ca092a6369cf89ca7571e0cb1b1285c50192cc1cc763e95316d9c71d06ed2333077b97946318e825c6d672f48549b58bd41faa673fb49c
 WHIRLPOOL 
700a0c70fe63d4379d4ccb9dc7aa4350fbdc8b0c67d0a2d13c117d06b81fdf3fc7f1a690f9293b20f03a1876494d63ad5d4ec2536573f726d23cdbfa49c36c4e

diff --git a/media-video/nvidia-settings/metadata.xml 
b/media-video/nvidia-settings/metadata.xml
index a78c793..d76a291 100644
--- a/media-video/nvidia-settings/metadata.xml
+++ b/media-video/nvidia-settings/metadata.xml
@@ -1,8 +1,11 @@
 
 http://www.gentoo.org/dtd/metadata.dtd";>
 
-  
-id...@gentoo.org
-Christian Ruppert
-  
+   
+   id...@gentoo.org
+   Christian Ruppert
+   
+   
+   Additionally build the GTK 3 library
+   
 

diff --git a/media-video/nvidia-settings/nvidia-settings-355.11.ebuild 
b/media-video/nvidia-settings/nvidia-settings-355.11.ebuild
new file mode 100644
index 000..56ab788
--- /dev/null
+++ b/media-video/nvidia-settings/nvidia-settings-355.11.ebuild
@@ -0,0 +1,80 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit eutils multilib toolchain-funcs
+
+DESCRIPTION="NVIDIA Linux X11 Settings Utility"
+HOMEPAGE="http://www.nvidia.com/";
+SRC_URI="ftp://download.nvidia.com/XFree86/${PN}/${P}.tar.bz2";
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="-* ~amd64 ~x86 ~x86-fbsd"
+IUSE="examples gtk3"
+
+COMMON_DEPEND="x11-libs/gtk+:2
+   gtk3? ( x11-libs/gtk+:3 )
+   x11-libs/libX11
+   x11-libs/libXext
+   x11-libs/libXxf86vm
+   x11-libs/gdk-pixbuf[X]
+   media-libs/mesa
+   x11-libs/pango[X]
+   x11-libs/libXv
+   x11-libs/libXrandr
+   dev-libs/glib:2
+   dev-libs/jansson
+   x11-libs/cairo
+   >=x11-libs/libvdpau-1.0"
+
+RDEPEND="${COMMON_DEPEND}
+   x11-drivers/nvidia-drivers:0/340"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig
+   x11-proto/xproto"
+
+src_compile() {
+   einfo "Building libXNVCtrl..."
+   emake -C src/ \
+   CC="$(tc-getCC)" \
+   AR="$(tc-getAR)" \
+   RANLIB="$(tc-getRANLIB)" \
+   build-xnvctrl
+
+   einfo "Building nvidia-settings..."
+   emake -C src/ \
+   CC="$(tc-getCC)" \
+   LD="$(tc-getLD)" \
+   STRIP_CMD="$(type -P true)" \
+   NV_VERBOSE=1 \
+   NV_USE_BUNDLED_LIBJANSSON=0 \
+   NVML_AVAILABLE=0 \
+   GTK3_AVAILABLE=$(usex gtk3 1 0)
+}
+
+src_install() {
+   emake -C src/ DESTDIR="${D}" PREFIX=/usr NV_USE_BUNDLED_LIBJANSSON=0 
GTK3_AVAILABLE=$(usex gtk3 1 0) install
+
+   insinto /usr/$(get_libdir)
+   doins src/libXNVCtrl/libXNVCtrl.a
+
+   insinto /usr/include/NVCtrl
+   doins src/libXNVCtrl/*.h
+
+#  doicon doc/${PN}.png # Installed through nvidia-drivers
+   make_desktop_entry ${PN} "NVIDIA X Server Settings" ${PN} Settings
+
+   # bug 412569 - Installed through nvidia-drivers
+#  rm -rf "${D}"/usr/share/man
+
+   dodoc doc/*.txt
+
+   if use examples; then
+   docinto examples/
+   dodoc samples/*.c
+   dodoc samples/README
+   fi
+}



[gentoo-commits] proj/portage:master commit in: pym/portage/repository/

2015-09-24 Thread Brian Dolbec
commit: cda13bc9bb42ae1c91b317711365573a2d3695f3
Author: Brian Dolbec  gentoo  org>
AuthorDate: Thu Sep 24 19:44:54 2015 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Thu Sep 24 19:46:04 2015 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=cda13bc9

repository/config.py: Fix propogation of module_specific_options (bug 561240)

module_specific_options were being read in and set correctly, but, 
module_specific_options were not being copied over in _add_repositories().
This is a left-over from the PORTDIR_OVERLAY setting we intend to deprecate.
This change copies all the options in one shot.
X-Gentoo Bug: 561240
X-Gentoo bug Url: https://bugs.gentoo.org/show_bug.cgi?id=561240
X-Gentoo Title: sys-apps/portage-2.2.21 ignores PORTAGE_RSYNC_EXTRA_OPTS

 pym/portage/repository/config.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pym/portage/repository/config.py b/pym/portage/repository/config.py
index f80bee6..a90a994 100644
--- a/pym/portage/repository/config.py
+++ b/pym/portage/repository/config.py
@@ -508,7 +508,7 @@ class RepoConfigLoader(object):
'force', 'masters', 
'priority',
'sync_depth',
'sync_type', 
'sync_umask', 'sync_uri', 'sync_user',
-   ) + 
tuple(portage.sync.module_specific_options(repo)):
+   
'module_specific_options'):
v = 
getattr(repos_conf_opts, k, None)
if v is not None:
setattr(repo, 
k, v)



[gentoo-commits] repo/gentoo:master commit in: eclass/

2015-09-24 Thread Michael Palimaka
commit: b8ed8550b1168204c1ef0148d68b50eb33b3d55e
Author: Michael Palimaka  gentoo  org>
AuthorDate: Wed Sep 23 13:02:37 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Thu Sep 24 19:38:24 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8ed8550

kde5.eclass: don't check gcc version for binary merges

 eclass/kde5.eclass | 8 ++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/eclass/kde5.eclass b/eclass/kde5.eclass
index 23e3127..feafd8f 100644
--- a/eclass/kde5.eclass
+++ b/eclass/kde5.eclass
@@ -340,7 +340,9 @@ debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: SRC_URI is 
${SRC_URI}"
 # Do some basic settings
 kde5_pkg_pretend() {
debug-print-function ${FUNCNAME} "$@"
-   _check_gcc_version
+   if [[ ${MERGE_TYPE} != binary ]]; then
+   _check_gcc_version
+   fi
 }
 
 # @FUNCTION: kde5_pkg_setup
@@ -348,7 +350,9 @@ kde5_pkg_pretend() {
 # Do some basic settings
 kde5_pkg_setup() {
debug-print-function ${FUNCNAME} "$@"
-   _check_gcc_version
+   if [[ ${MERGE_TYPE} != binary ]]; then
+   _check_gcc_version
+   fi
 }
 
 # @FUNCTION: kde5_src_unpack



[gentoo-commits] repo/gentoo:master commit in: eclass/

2015-09-24 Thread Michael Palimaka
commit: 41de2c819b4230ca790057cdb861efe3b3f4024c
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Wed Sep 23 14:33:59 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Thu Sep 24 19:38:24 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41de2c81

kde5-functions.eclass: Make gcc version check configurable

 eclass/kde5-functions.eclass | 13 ++---
 1 file changed, 10 insertions(+), 3 deletions(-)

diff --git a/eclass/kde5-functions.eclass b/eclass/kde5-functions.eclass
index e19d7fd..6bebf7f 100644
--- a/eclass/kde5-functions.eclass
+++ b/eclass/kde5-functions.eclass
@@ -38,6 +38,11 @@ esac
 # Minimal KDE Applicaions version to require for the package.
 : ${KDE_APPS_MINIMAL:=14.12.0}
 
+# @ECLASS-VARIABLE: KDE_GCC_MINIMAL
+# @DESCRIPTION:
+# Minimal GCC version to require for the package.
+: ${KDE_GCC_MINIMAL:=4.8}
+
 # @ECLASS-VARIABLE: KDEBASE
 # @DESCRIPTION:
 # This gets set to a non-zero value when a package is considered a kde or
@@ -79,10 +84,12 @@ _check_gcc_version() {
local version=$(gcc-version)
local major=${version%.*}
local minor=${version#*.}
+   local min_major=${KDE_GCC_MINIMAL%.*}
+   local min_minor=${KDE_GCC_MINIMAL#*.}
 
-   [[ ${major} -lt 4 ]] || \
-   ( [[ ${major} -eq 4 && ${minor} -lt 8 ]] ) \
-   && die "Sorry, but gcc-4.8 or later is required for KDE 
5."
+   [[ ${major} -lt ${min_major} ]] || \
+   ( [[ ${major} -eq ${min_major} && ${minor} -lt 
${min_minor} ]] ) \
+   && die "Sorry, but gcc-${KDE_GCC_MINIMAL} or later is 
required for this package."
fi
 }
 



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

2015-09-24 Thread Michael Palimaka
commit: 5e71a076931e642e952d66420e3c3b851fb3ba3f
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Sun Aug 30 09:34:37 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Thu Sep 24 19:38:25 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e71a076

app-office/skrooge: Version bump

Package-Manager: portage-2.2.20.1

 app-office/skrooge/Manifest |   1 +
 app-office/skrooge/metadata.xml |   1 +
 app-office/skrooge/skrooge-2.1.1.ebuild | 100 
 3 files changed, 102 insertions(+)

diff --git a/app-office/skrooge/Manifest b/app-office/skrooge/Manifest
index 3a7b0c1..a79741a 100644
--- a/app-office/skrooge/Manifest
+++ b/app-office/skrooge/Manifest
@@ -2,3 +2,4 @@ DIST skrooge-1.10.0.tar.bz2 12813255 SHA256 
aae15e7abf91a7fc217247d3ae5e672f4215
 DIST skrooge-1.12.0.tar.bz2 12993707 SHA256 
2407e6e7efa7a0f759c91660a419de2e5ba66f2675cfbee300d12736ef928c1d SHA512 
8e913e87692374ecd941ea5f52b64f853942f86e8a5b2dee20d978745eaef69d278505dce5ca6a673cf596230e3946ea85e8a80d1123908a6d9a0a59ae9f67c6
 WHIRLPOOL 
99e313b72479fc065e1b39890780e0119985c17d03d6ce0b51bf58bd92ade7bde29cfbe2c6e9f588a955b6006c2e91c1ec1ab18ccb8170b035bde2b46aaf7282
 DIST skrooge-1.12.5.tar.xz 11727312 SHA256 
8050f8aa767743edf6aad3b4c39bfd8962412e10d9c5578c02d0ce6306a8d3d6 SHA512 
5612378a57872065c4ebfff0fabca74a9a0df116fc493643bc01a08c2627a8fb45025221ce5b2123b49d2daffa57ea543312192ecfe96aa3189db7ea4c07fe90
 WHIRLPOOL 
ce99a61896d28699d66f9a17e3ccbccfde0d58cb9106b3919a219dd07a4d5650009e75a965600ec2444e51df43e0d918f1badf484d63b2353838fa490a98be52
 DIST skrooge-2.0.0.tar.xz 10365184 SHA256 
50da4dde01b85b2b0ba16902a05664910d4f2dbaa828370ee44c9f89e2efd6b5 SHA512 
b3c5ff36e858fd2eef39be0cfb4041e6b16c8aa4562b5fea121e21760a4088f722da789ecdeb5d317446b114ae55dea100970e9c98ae4fe7cac716db674c9a96
 WHIRLPOOL 
25983d39016b30c73e974b440c1439915b1770e6d041b675efc2eb736ee0cf37999fe2f19028f699f2317714e91da17cb02e9a0d8338c02ac5abbfaa3c09854c
+DIST skrooge-2.1.1.tar.xz 16928564 SHA256 
4c7b82991b56d28274b7e00c2909009c858b43f489c401a46a2dca637caccd12 SHA512 
97640b09d2f745dbd18cc6213b17216e63f783876fa480a0cd7f6a1062145b6a701d301d607d108caea4ae2475ed174f06f8552617b961e9985d2a268d47df7c
 WHIRLPOOL 
2ed6d5810513bad8eac4ff6e7b7310d16f8d60b1eecbaa2f3098290cd8aeb3847a0c7e63baaf847adcce438623958a5ee8922264996da019822a106eb4014bf0

diff --git a/app-office/skrooge/metadata.xml b/app-office/skrooge/metadata.xml
index 65184d3..4febf40 100644
--- a/app-office/skrooge/metadata.xml
+++ b/app-office/skrooge/metadata.xml
@@ -4,5 +4,6 @@
kde

Enable kactivities support
+   Enable encryption using 
dev-db/sqlcipher

 

diff --git a/app-office/skrooge/skrooge-2.1.1.ebuild 
b/app-office/skrooge/skrooge-2.1.1.ebuild
new file mode 100644
index 000..491a4f5
--- /dev/null
+++ b/app-office/skrooge/skrooge-2.1.1.ebuild
@@ -0,0 +1,100 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+KDE_GCC_MINIMAL="4.9"
+KDE_HANDBOOK="true"
+KDE_TEST="true"
+VIRTUALX_REQUIRED="test"
+inherit kde5
+
+DESCRIPTION="Personal finances manager, aiming at being simple and intuitive"
+HOMEPAGE="http://www.skrooge.org/";
+[[ ${PV} ==  ]] || SRC_URI="mirror://kde/stable/${PN}/${P}.tar.xz"
+
+LICENSE="GPL-2"
+KEYWORDS="~amd64"
+IUSE="activities crypt ofx"
+
+COMMON_DEPEND="
+   $(add_frameworks_dep karchive)
+   $(add_frameworks_dep kcompletion)
+   $(add_frameworks_dep kconfig)
+   $(add_frameworks_dep kconfigwidgets)
+   $(add_frameworks_dep kcoreaddons)
+   $(add_frameworks_dep kdbusaddons)
+   $(add_frameworks_dep kdelibs4support)
+   $(add_frameworks_dep ki18n)
+   $(add_frameworks_dep kiconthemes)
+   $(add_frameworks_dep kio)
+   $(add_frameworks_dep kitemviews)
+   $(add_frameworks_dep knewstuff)
+   $(add_frameworks_dep knotifications)
+   $(add_frameworks_dep knotifyconfig)
+   $(add_frameworks_dep kparts)
+   $(add_frameworks_dep krunner)
+   $(add_frameworks_dep kservice)
+   $(add_frameworks_dep ktextwidgets)
+   $(add_frameworks_dep kwallet)
+   $(add_frameworks_dep kwidgetsaddons)
+   $(add_frameworks_dep kxmlgui)
+   app-crypt/qca:2[qt5]
+   dev-libs/grantlee:5
+   dev-qt/qtconcurrent:5
+   dev-qt/qtdbus:5
+   dev-qt/qtdeclarative:5
+   dev-qt/qtgui:5
+   dev-qt/qtprintsupport:5
+   dev-qt/qtscript:5
+   dev-qt/qtsql:5
+   dev-qt/qtsvg:5
+   dev-qt/qtwebkit:5
+   dev-qt/qtwidgets:5
+   dev-qt/qtxml:5
+   activities? ( $(add_frameworks_dep kactivities) )
+   crypt? ( dev-db/sqlcipher )
+   !crypt? ( dev-db/sqlite:3 )
+   ofx? ( >=dev-libs/libofx-0.9.1 )
+"
+DEPEND="${COMMON_DEPEND}
+   $(add_frameworks_dep kdesignerplugin)
+   $(add_frameworks_dep kguiaddons)
+   $(add_frameworks_dep kjobwidgets)
+ 

[gentoo-commits] repo/gentoo:master commit in: kde-apps/konsole/

2015-09-24 Thread Michael Palimaka
commit: 4da17bc0ba54412fc25afbe7e7a01cdd9d42649a
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Wed Sep  9 00:33:31 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Thu Sep 24 19:29:25 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4da17bc0

kde-apps/konsole: Disable LibKonq if USE=minimal

LibKonq is required for drag-n-drop menus in konsole application.
USE=minimal only installs konsolepart though, so disable it.
One less blocker against kde-apps/libkonq:5

Package-Manager: portage-2.2.20.1

 kde-apps/konsole/konsole-4.14.3-r1.ebuild | 55 +++
 1 file changed, 55 insertions(+)

diff --git a/kde-apps/konsole/konsole-4.14.3-r1.ebuild 
b/kde-apps/konsole/konsole-4.14.3-r1.ebuild
new file mode 100644
index 000..f5cb4e9
--- /dev/null
+++ b/kde-apps/konsole/konsole-4.14.3-r1.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+KDE_HANDBOOK="optional"
+KDE_DOC_DIRS="doc/manual"
+VIRTUALX_REQUIRED="test"
+VIRTUALDBUS_TEST="true"
+inherit kde4-base
+
+DESCRIPTION="X terminal for use with KDE"
+HOMEPAGE="https://www.kde.org/applications/system/konsole 
https://konsole.kde.org";
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="debug minimal"
+
+COMMONDEPEND="
+   !aqua? (
+   x11-libs/libX11
+   x11-libs/libXext
+   >=x11-libs/libxklavier-3.2
+   x11-libs/libXrender
+   x11-libs/libXtst
+   !minimal? ( $(add_kdeapps_dep libkonq) )
+   )
+"
+DEPEND="${COMMONDEPEND}
+   !aqua? (
+   x11-apps/bdftopcf
+   x11-proto/kbproto
+   x11-proto/renderproto
+   )
+"
+RDEPEND="${COMMONDEPEND}"
+
+# can't connect to a kded instance, fails to connect to dbus
+RESTRICT="test"
+
+src_configure() {
+   local mycmakeargs=(
+   $(cmake-utils_use_with "!minimal" LibKonq)
+   )
+
+   kde4-base_src_configure
+}
+
+src_install() {
+   kde4-base_src_install
+
+   if use minimal; then
+   rm "${D}/usr/bin/konsole" || die
+   rm "${D}/usr/bin/konsoleprofile" || die
+   fi
+}



[gentoo-commits] proj/qt:master commit in: x11-misc/sddm/files/, x11-misc/sddm/

2015-09-24 Thread Michael Palimaka
commit: 9f3b848a1fc10768f6f55f0c523c8e039acd8723
Author: Joao Carreira  gmail  com>
AuthorDate: Wed Sep 23 22:34:38 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Thu Sep 24 19:24:56 2015 +
URL:https://gitweb.gentoo.org/proj/qt.git/commit/?id=9f3b848a

x11-misc/sddm: sync live ebuild with tree

Update live ebuild to cope with changes
in the version 0.12.0

 .../sddm/files/sddm--respect-user-flags.patch  | 26 +
 x11-misc/sddm/files/sddm--upower.patch | 12 
 x11-misc/sddm/sddm-.ebuild | 64 --
 3 files changed, 60 insertions(+), 42 deletions(-)

diff --git a/x11-misc/sddm/files/sddm--respect-user-flags.patch 
b/x11-misc/sddm/files/sddm--respect-user-flags.patch
new file mode 100644
index 000..67a6621
--- /dev/null
+++ b/x11-misc/sddm/files/sddm--respect-user-flags.patch
@@ -0,0 +1,26 @@
+diff -u CMakeLists.txt CMakeLists.txt 
+--- CMakeLists.txt  2015-09-05 22:40:50.0 +0200
 CMakeLists.txt  2015-09-07 12:15:33.419530808 +0200
+@@ -35,22 +35,6 @@
+ # Definitions
+ add_definitions(-Wall -std=c++11 -DQT_NO_CAST_FROM_ASCII)
+ 
+-# Default build type
+-if(NOT CMAKE_BUILD_TYPE)
+-set(CMAKE_BUILD_TYPE Release)
+-endif()
+-
+-# Handle build type
+-if(CMAKE_BUILD_TYPE MATCHES [Dd]ebug)
+-message(STATUS "Debug build")
+-add_definitions(-DDEBUG)
+-set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -g -O0")
+-else()
+-message(STATUS "Release build")
+-add_definitions(-DNDEBUG)
+-set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -O2")
+-endif()
+-
+ # Default absolute paths
+ if(NOT DEFINED CMAKE_INSTALL_SYSCONFDIR)
+ set(CMAKE_INSTALL_SYSCONFDIR "/etc")

diff --git a/x11-misc/sddm/files/sddm--upower.patch 
b/x11-misc/sddm/files/sddm--upower.patch
deleted file mode 100644
index 8c0f34c..000
--- a/x11-misc/sddm/files/sddm--upower.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -u -r sddm-0.9.0.orig/src/daemon/PowerManager.cpp 
sddm-0.9.0/src/daemon/PowerManager.cpp
 sddm-0.9.0.orig/src/daemon/PowerManager.cpp2014-10-01 
18:40:37.402683578 +0200
-+++ sddm-0.9.0/src/daemon/PowerManager.cpp 2014-10-01 18:40:43.502618164 
+0200
-@@ -197,7 +197,7 @@
- m_backends << new Login1Backend();
- 
- // check if upower interface exists
--if (interface->isServiceRegistered(UPOWER_SERVICE))
-+//if (interface->isServiceRegistered(UPOWER_SERVICE))
- m_backends << new UPowerBackend();
- }
- 

diff --git a/x11-misc/sddm/sddm-.ebuild b/x11-misc/sddm/sddm-.ebuild
index 150b6c7..ed31b37 100644
--- a/x11-misc/sddm/sddm-.ebuild
+++ b/x11-misc/sddm/sddm-.ebuild
@@ -10,62 +10,66 @@ HOMEPAGE="https://github.com/sddm/sddm";
 EGIT_REPO_URI="git://github.com/${PN}/${PN}.git"
 KEYWORDS=""
 
-LICENSE="GPL-2+ MIT CC-BY-3.0 public-domain"
+LICENSE="GPL-2+ MIT CC-BY-3.0 CC-BY-SA-3.0 public-domain"
 SLOT="0"
-IUSE="consolekit systemd +upower"
-REQUIRED_USE="?? ( upower systemd )"
+IUSE="consolekit +pam systemd"
 
-RDEPEND="sys-libs/pam
-   >=x11-base/xorg-server-1.15.1
-   x11-libs/libxcb[xkb(-)]
-   dev-qt/qtcore:5
+RDEPEND="dev-qt/qtcore:5
dev-qt/qtdbus:5
+   dev-qt/qtgui:5
dev-qt/qtdeclarative:5
+   dev-qt/qtnetwork:5
dev-qt/linguist-tools:5
dev-qt/qttest:5
+   >=x11-base/xorg-server-1.15.1
+   x11-libs/libxcb[xkb(-)]
+   consolekit? ( >=sys-auth/consolekit-0.9.4 )
+   pam? ( sys-libs/pam )
systemd? ( sys-apps/systemd:= )
-   upower? ( || ( sys-power/upower sys-power/upower-pm-utils ) )"
+   !systemd? ( || ( sys-power/upower sys-power/upower-pm-utils ) )"
+
 DEPEND="${RDEPEND}
-   >=sys-devel/gcc-4.7.0
+   dev-python/docutils
virtual/pkgconfig"
 
 pkg_pretend() {
-   if [[ ${MERGE_TYPE} != binary ]]; then
-   [[ $(gcc-version) < 4.7 ]] && \
+   if [[ ${MERGE_TYPE} != binary  && $(tc-getCC) == *gcc* ]]; then
+   if [[ $(gcc-major-version) -lt 4 || $(gcc-major-version) == 4 
&& $(gcc-minor-version) -lt 7 ]] ; then
die 'The active compiler needs to be gcc 4.7 (or newer)'
+   fi
fi
 }
 
 src_prepare() {
-   use consolekit && epatch "${FILESDIR}/${P}-consolekit.patch"
-   use upower && epatch "${FILESDIR}/${P}-upower.patch"
+   cmake-utils_src_prepare
 
-   # respect user's cflags
-   sed -e 's|-Wall -march=native||' \
-   -e 's|-O2||' \
-   -i CMakeLists.txt || die 'sed failed'
+   epatch "${FILESDIR}/${P}-respect-user-flags.patch"
+   use consolekit && epatch "${FILESDIR}/${P}-consolekit.patch"
 }
 
 src_configure() {
local mycmakeargs=(
+   $(cmake-utils_use_no pam PAM)
$(cmake-utils_use_no systemd SYSTEMD)
-   )
+   -DBUILD_MAN_PAGES=ON
+   -DDBUS_CONFIG_FILENAME="org.freedesktop.sddm.conf"
+   )
+
cmake

[gentoo-commits] proj/kde:master commit in: kde-apps/kimap/, kde-apps/kimap/files/

2015-09-24 Thread Michael Palimaka
commit: 20994322e0407c6423f249debbe98a21e7d941fd
Author: Matthew Dawson  mjdsystems  ca>
AuthorDate: Sun Aug 30 14:18:06 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Thu Sep 24 19:19:08 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=20994322

kde-apps/kimap: Remove dependency on kde-frameworks/kdelibs4support

Package-Manager: portage-2.2.20.1

 .../kimap-15.08.0-remove-kdelibs4support.patch | 78 ++
 kde-apps/kimap/kimap-15.08.1.ebuild|  4 ++
 kde-apps/kimap/kimap-15.08.49..ebuild  |  4 ++
 3 files changed, 86 insertions(+)

diff --git a/kde-apps/kimap/files/kimap-15.08.0-remove-kdelibs4support.patch 
b/kde-apps/kimap/files/kimap-15.08.0-remove-kdelibs4support.patch
new file mode 100644
index 000..821f38d
--- /dev/null
+++ b/kde-apps/kimap/files/kimap-15.08.0-remove-kdelibs4support.patch
@@ -0,0 +1,78 @@
+commit bf73c02636b55197e7c7ff870739c98cb200ef1a
+Author: Volker Krause 
+Date:   Fri Sep 4 15:45:29 2015 +0200
+
+Remove KDELibs4Support dependency.
+
+commit ce575030415015c38d3e035b9bc507b9d4ae5a72
+Author: Volker Krause 
+Date:   Fri Sep 4 15:44:41 2015 +0200
+
+Port away from deprecated Qt methods.
+
+Those are not available once we remove the KDELibs4Support dependency.
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index d2beff4..c4af8c8 100644
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -28,7 +28,8 @@ ecm_setup_version(${KIMAP_LIB_VERSION} VARIABLE_PREFIX KIMAP
+ 
+ ### Find packages ###
+ find_package(KF5CoreAddons ${KF5_VERSION} CONFIG REQUIRED)
+-find_package(KF5KDELibs4Support ${KF5_VERSION} CONFIG REQUIRED)
++find_package(KF5I18n ${KF5_VERSION} CONFIG REQUIRED)
++find_package(KF5KIO ${KF5_VERSION} CONFIG REQUIRED)
+ 
+ find_package(KF5Mime ${KMIME_LIBS_VERSION} CONFIG REQUIRED)
+ 
+diff --git a/autotests/kimaptest/sslserver.cpp 
b/autotests/kimaptest/sslserver.cpp
+index b4bd7d0..98e83d5 100644
+--- a/autotests/kimaptest/sslserver.cpp
 b/autotests/kimaptest/sslserver.cpp
+@@ -77,7 +77,9 @@ void SslServer::incomingConnection(qintptr handle)
+ 
+ QSslKey ssl_key(staticKey(), QSsl::Rsa);
+ QSslCertificate ssl_cert(staticCert());
+-Q_ASSERT(ssl_cert.isValid());
++Q_ASSERT(QDateTime::currentDateTime() >= ssl_cert.effectiveDate());
++Q_ASSERT(QDateTime::currentDateTime() <= ssl_cert.expiryDate());
++Q_ASSERT(!ssl_cert.isBlacklisted());
+ 
+ socket->setPrivateKey(ssl_key);
+ socket->setLocalCertificate(ssl_cert);
+@@ -86,7 +88,7 @@ void SslServer::incomingConnection(qintptr handle)
+ socket->ignoreSslErrors();
+ connect(socket, SIGNAL(sslErrors(QList)), this, 
SLOT(sslErrors(QList)));
+ connect(socket, SIGNAL(error(QAbstractSocket::SocketError)), this, 
SLOT(error(QAbstractSocket::SocketError)));
+-if (mProtocol != QSsl::TlsV1) {
++if (mProtocol != QSsl::TlsV1_0) {
+ socket->startServerEncryption();
+ }
+ addPendingConnection(socket);
+diff --git a/autotests/kimaptest/sslserver.h b/autotests/kimaptest/sslserver.h
+index 0ecd9fd..e714f38 100644
+--- a/autotests/kimaptest/sslserver.h
 b/autotests/kimaptest/sslserver.h
+@@ -29,7 +29,7 @@ public:
+ SslServer(QSsl::SslProtocol);
+ virtual void incomingConnection(qintptr handle) Q_DECL_OVERRIDE;
+ 
+-private slots:
++private Q_SLOTS:
+ void sslErrors(const QList &errors);
+ void error(QAbstractSocket::SocketError);
+ 
+diff --git a/src/appendjob.cpp b/src/appendjob.cpp
+index 4d72903..8584c0e 100644
+--- a/src/appendjob.cpp
 b/src/appendjob.cpp
+@@ -124,7 +124,7 @@ void AppendJob::doStart()
+ 
+ if (!d->internalDate.isNull()) {
+ const QDateTime utcDateTime = d->internalDate.toUTC();
+-parameters += " \"" + 
utcDateTime.toString(QString::fromAscii("dd-MMM- hh:mm:ss")).toLatin1() + " 
+" + '\"';
++parameters += " \"" + 
utcDateTime.toString(QStringLiteral("dd-MMM- hh:mm:ss")).toLatin1() + " 
+" + '\"';
+ }
+ 
+ parameters += " {" + QByteArray::number(d->content.size()) + '}';

diff --git a/kde-apps/kimap/kimap-15.08.1.ebuild 
b/kde-apps/kimap/kimap-15.08.1.ebuild
index 1992321..bc74396 100644
--- a/kde-apps/kimap/kimap-15.08.1.ebuild
+++ b/kde-apps/kimap/kimap-15.08.1.ebuild
@@ -13,6 +13,10 @@ LICENSE="LGPL-2+"
 KEYWORDS="~amd64 ~x86"
 IUSE=""
 
+PATCHES=(
+   "${FILESDIR}"/kimap-15.08.0-remove-kdelibs4support.patch
+)
+
 RDEPEND="
$(add_frameworks_dep kcodecs)
$(add_frameworks_dep kcoreaddons)

diff --git a/kde-apps/kimap/kimap-15.08.49..ebuild 
b/kde-apps/kimap/kimap-15.08.49..ebuild
index 3c365bd..0fb4cfc 100644
--- a/kde-apps/kimap/kimap-15.08.49..ebuild
+++ b/kde-apps/kimap/kimap-15.08.49..ebuild
@@ -13,6 +13,10 @@ LICENSE="LGPL-2+"
 KEYWORDS=""
 IUSE=""
 
+PATCHES=(
+   "${FILESDIR}"/kimap-15.08.0-remove-kdelibs4support.patch
+)
+
 RDEPEND="
$(add_frameworks_dep kcodecs)
$(add_frameworks_dep kcoreaddons)

[gentoo-commits] proj/kde:master commit in: kde-apps/kpimtextedit/files/, kde-apps/kpimtextedit/

2015-09-24 Thread Michael Palimaka
commit: f94013ea73102002a0141e27ee3c032887ad88a8
Author: Matthew Dawson  mjdsystems  ca>
AuthorDate: Sun Aug 30 14:25:02 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Thu Sep 24 19:19:08 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=f94013ea

kde-apps/kpimtextedit: Remove dependency on kde-frameworks/kdelibs4support

Package-Manager: portage-2.2.20.1

 ...kpimtextedit-15.08.0-remove-kdelibs4support.patch | 20 
 kde-apps/kpimtextedit/kpimtextedit-15.08.1.ebuild|  4 
 .../kpimtextedit/kpimtextedit-15.08.49..ebuild   |  4 
 3 files changed, 28 insertions(+)

diff --git 
a/kde-apps/kpimtextedit/files/kpimtextedit-15.08.0-remove-kdelibs4support.patch 
b/kde-apps/kpimtextedit/files/kpimtextedit-15.08.0-remove-kdelibs4support.patch
new file mode 100644
index 000..9a52e31
--- /dev/null
+++ 
b/kde-apps/kpimtextedit/files/kpimtextedit-15.08.0-remove-kdelibs4support.patch
@@ -0,0 +1,20 @@
+commit 1d0d86f017ab4b53442c1c6eb04d3d50b483a741
+Author: Montel Laurent 
+Date:   Tue Jul 28 07:01:16 2015 +0200
+
+Remove KF5KDELibs4Support
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 2655c6a..bb55630 100644
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -34,8 +34,7 @@ find_package(KF5TextWidgets ${KF5_VERSION} CONFIG REQUIRED)
+ find_package(KF5WidgetsAddons ${KF5_VERSION} CONFIG REQUIRED)
+ find_package(KF5KIO ${KF5_VERSION} CONFIG REQUIRED)
+ find_package(KF5Codecs ${KF5_VERSION} CONFIG REQUIRED)
+-#REMOVE IT WHEN all kdelib4support removed
+-find_package(KF5KDELibs4Support ${KF5_VERSION} CONFIG REQUIRED)
++find_package(KF5IconThemes ${KF5_VERSION} CONFIG REQUIRED)
+ 
+ add_definitions(-DTRANSLATION_DOMAIN=\"libkpimtextedit\")
+ add_definitions("-DQT_NO_CAST_FROM_ASCII -DQT_NO_CAST_TO_ASCII")

diff --git a/kde-apps/kpimtextedit/kpimtextedit-15.08.1.ebuild 
b/kde-apps/kpimtextedit/kpimtextedit-15.08.1.ebuild
index cd07a04..3e438ab 100644
--- a/kde-apps/kpimtextedit/kpimtextedit-15.08.1.ebuild
+++ b/kde-apps/kpimtextedit/kpimtextedit-15.08.1.ebuild
@@ -13,6 +13,10 @@ LICENSE="LGPL-2+"
 KEYWORDS="~amd64 ~x86"
 IUSE=""
 
+PATCHES=(
+   "${FILESDIR}"/kpimtextedit-15.08.0-remove-kdelibs4support.patch
+)
+
 RDEPEND="
$(add_frameworks_dep kcodecs)
$(add_frameworks_dep kcompletion)

diff --git a/kde-apps/kpimtextedit/kpimtextedit-15.08.49..ebuild 
b/kde-apps/kpimtextedit/kpimtextedit-15.08.49..ebuild
index a41c203..e86a0ae 100644
--- a/kde-apps/kpimtextedit/kpimtextedit-15.08.49..ebuild
+++ b/kde-apps/kpimtextedit/kpimtextedit-15.08.49..ebuild
@@ -13,6 +13,10 @@ LICENSE="LGPL-2+"
 KEYWORDS=""
 IUSE=""
 
+PATCHES=(
+   "${FILESDIR}"/kpimtextedit-15.08.0-remove-kdelibs4support.patch
+)
+
 RDEPEND="
$(add_frameworks_dep kcodecs)
$(add_frameworks_dep kcompletion)



[gentoo-commits] proj/kde:master commit in: kde-apps/libksane/

2015-09-24 Thread Michael Palimaka
commit: 46dba992be66f550015de2507edaa539a6560018
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Thu Sep 24 18:37:39 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Thu Sep 24 19:14:46 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=46dba992

kde-apps/libksane: Add missing DEPEND

Package-Manager: portage-2.2.20.1

 kde-apps/libksane/libksane-5..ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/kde-apps/libksane/libksane-5..ebuild 
b/kde-apps/libksane/libksane-5..ebuild
index 0cca2a9..e99fd67 100644
--- a/kde-apps/libksane/libksane-5..ebuild
+++ b/kde-apps/libksane/libksane-5..ebuild
@@ -15,6 +15,7 @@ LICENSE="LGPL-2"
 DEPEND="
$(add_frameworks_dep kconfig)
$(add_frameworks_dep ki18n)
+   $(add_frameworks_dep ktextwidgets)
$(add_frameworks_dep kwallet)
$(add_frameworks_dep kwidgetsaddons)
$(add_frameworks_dep kwindowsystem)



[gentoo-commits] proj/kde:master commit in: kde-plasma/plasma-nm/

2015-09-24 Thread Michael Palimaka
commit: e2c6e1740a6675ba80f6d24317b97adeb1ab65df
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Wed Sep 23 22:19:54 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Thu Sep 24 19:14:46 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=e2c6e174

kde-plasma/plasma-nm: Add DEPEND on app-crypt/qca

Upstream commit: edc29fb7ca7c9610156bfe571c4bcec2cef44be4

Package-Manager: portage-2.2.20.1

 kde-plasma/plasma-nm/plasma-nm-.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/kde-plasma/plasma-nm/plasma-nm-.ebuild 
b/kde-plasma/plasma-nm/plasma-nm-.ebuild
index 2393d77..a412eae 100644
--- a/kde-plasma/plasma-nm/plasma-nm-.ebuild
+++ b/kde-plasma/plasma-nm/plasma-nm-.ebuild
@@ -32,6 +32,7 @@ DEPEND="
$(add_frameworks_dep networkmanager-qt 'teamd=')
$(add_frameworks_dep plasma)
$(add_frameworks_dep solid)
+   >=app-crypt/qca-2.1.0.3-r1:2[qt5]
dev-qt/qtdbus:5
dev-qt/qtdeclarative:5
dev-qt/qtgui:5



[gentoo-commits] repo/gentoo:master commit in: app-crypt/qca/files/, app-crypt/qca/

2015-09-24 Thread Michael Palimaka
commit: 8144af61e7bb3fa892bbc5d563bc7a5b5074e2ee
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Wed Sep 23 22:00:02 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Thu Sep 24 19:13:54 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8144af61

app-crypt/qca: Add upstream fix to use Q_SLOTS/Q_SIGNALS

Fixes build of kde-plasma/plasma-nm- (and possibly others)
RR: https://git.reviewboard.kde.org/r/125289/
Upstream Commit: 66b9754170759d9333d5fc1e348642814d0310dd

Package-Manager: portage-2.2.20.1

 .../qca/files/qca-2.1.0.3-fix-signals-slots.patch  |  28 +
 app-crypt/qca/qca-2.1.0.3-r1.ebuild| 124 +
 2 files changed, 152 insertions(+)

diff --git a/app-crypt/qca/files/qca-2.1.0.3-fix-signals-slots.patch 
b/app-crypt/qca/files/qca-2.1.0.3-fix-signals-slots.patch
new file mode 100644
index 000..d03a178
--- /dev/null
+++ b/app-crypt/qca/files/qca-2.1.0.3-fix-signals-slots.patch
@@ -0,0 +1,28 @@
+From: Jan Grulich 
+Date: Thu, 17 Sep 2015 14:14:24 +
+Subject: Use Q_SLOTS/Q_SIGNALS instead of slots/signals in all headers from 
include dir
+X-Git-Url: 
http://quickgit.kde.org/?p=qca.git&a=commitdiff&h=66b9754170759d9333d5fc1e348642814d0310dd
+---
+Use Q_SLOTS/Q_SIGNALS instead of slots/signals in all headers from include dir
+REVIEW:125289
+---
+
+
+--- a/include/QtCrypto/qca_safetimer.h
 b/include/QtCrypto/qca_safetimer.h
+@@ -44,12 +44,12 @@
+   void setSingleShot(bool singleShot);
+   int timerId() const;
+ 
+-public slots:
++public Q_SLOTS:
+   void start(int msec);
+   void start();
+   void stop();
+ 
+-signals:
++Q_SIGNALS:
+   void timeout();
+ 
+ protected:
+

diff --git a/app-crypt/qca/qca-2.1.0.3-r1.ebuild 
b/app-crypt/qca/qca-2.1.0.3-r1.ebuild
new file mode 100644
index 000..0557851
--- /dev/null
+++ b/app-crypt/qca/qca-2.1.0.3-r1.ebuild
@@ -0,0 +1,124 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit cmake-utils multibuild qmake-utils
+
+MY_PN="${PN}-qt5"
+
+DESCRIPTION="Qt Cryptographic Architecture (QCA)"
+HOMEPAGE="http://delta.affinix.com/qca/";
+SRC_URI="mirror://kde/stable/${MY_PN}/${PV}/src/${MY_PN}-${PV}.tar.xz"
+
+LICENSE="LGPL-2.1"
+SLOT="2"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris"
+
+IUSE="botan debug doc examples gcrypt gpg logger nss +openssl pkcs11 +qt4 qt5 
sasl softstore test"
+REQUIRED_USE="|| ( qt4 qt5 )"
+
+RDEPEND="
+   !app-crypt/qca-cyrus-sasl
+   !app-crypt/qca-gnupg
+   !app-crypt/qca-logger
+   !app-crypt/qca-ossl
+   !app-crypt/qca-pkcs11
+   botan? ( dev-libs/botan )
+   gcrypt? ( dev-libs/libgcrypt:= )
+   gpg? ( app-crypt/gnupg )
+   nss? ( dev-libs/nss )
+   openssl? ( >=dev-libs/openssl-1.0.1:0 )
+   pkcs11? (
+   dev-libs/openssl:0
+   dev-libs/pkcs11-helper
+   )
+   qt4? ( dev-qt/qtcore:4 )
+   qt5? (
+   dev-qt/qtcore:5
+   dev-qt/qtconcurrent:5
+   dev-qt/qtnetwork:5
+   )
+   sasl? ( dev-libs/cyrus-sasl:2 )
+"
+DEPEND="${RDEPEND}
+   doc? ( app-doc/doxygen )
+   test? (
+   qt4? ( dev-qt/qttest:4 )
+   qt5? ( dev-qt/qttest:5 )
+   )
+"
+
+S=${WORKDIR}/${MY_PN}-${PV}
+
+DOCS=( README TODO )
+
+PATCHES=(
+   "${FILESDIR}/${PN}-disable-pgp-test.patch"
+   "${FILESDIR}/${P}-qt55.patch"
+   "${FILESDIR}/${P}-fix-signals-slots.patch"
+)
+
+qca_plugin_use() {
+   echo -DWITH_${2:-$1}_PLUGIN=$(usex "$1")
+}
+
+pkg_setup() {
+   MULTIBUILD_VARIANTS=( $(usev qt4) $(usev qt5) )
+}
+
+src_configure() {
+   myconfigure() {
+   local mycmakeargs=(
+   
-DQCA_FEATURE_INSTALL_DIR="${EPREFIX}$(${MULTIBUILD_VARIANT}_get_mkspecsdir)/features"
+   
-DQCA_PLUGINS_INSTALL_DIR="${EPREFIX}$(${MULTIBUILD_VARIANT}_get_plugindir)"
+   $(qca_plugin_use botan)
+   $(qca_plugin_use gcrypt)
+   $(qca_plugin_use gpg gnupg)
+   $(qca_plugin_use logger)
+   $(qca_plugin_use nss)
+   $(qca_plugin_use openssl ossl)
+   $(qca_plugin_use pkcs11)
+   $(qca_plugin_use sasl cyrus-sasl)
+   $(qca_plugin_use softstore)
+   $(cmake-utils_use_build test TESTS)
+   )
+
+   if [[ ${MULTIBUILD_VARIANT} == qt4 ]]; then
+   mycmakeargs+=(-DQT4_BUILD=ON)
+   fi
+
+   cmake-utils_src_configure
+   }
+
+   multibuild_foreach_variant myconfigure
+}
+
+src_compile() {
+   multibuild_foreach_variant cmake-utils_src_compile
+}
+
+src_test() {
+   mytest() {
+   loca

[gentoo-commits] repo/gentoo:master commit in: sci-geosciences/qgis/

2015-09-24 Thread Pacho Ramos
commit: 46283e28201ecd2308076760693bf496ee7a231f
Author: Pacho Ramos  gentoo  org>
AuthorDate: Thu Sep 24 19:01:05 2015 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Thu Sep 24 19:01:05 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46283e28

sci-geosciences/qgis: Drop old

Package-Manager: portage-2.2.20.1

 sci-geosciences/qgis/Manifest  |   1 -
 sci-geosciences/qgis/qgis-1.7.0.ebuild | 100 -
 2 files changed, 101 deletions(-)

diff --git a/sci-geosciences/qgis/Manifest b/sci-geosciences/qgis/Manifest
index e28b1b7..80f4f57 100644
--- a/sci-geosciences/qgis/Manifest
+++ b/sci-geosciences/qgis/Manifest
@@ -1,3 +1,2 @@
-DIST qgis-1.7.0.tar.bz2 23420823 SHA256 
4b871e841832c9a4f3cee1981198c30850983d73c848684832fa913167671a34 SHA512 
76e5bdc66626881c89945923548c1682c3fa4d217a0e26099960b079413caffa266066305c36dab1d7708490428d3670aa3825b4298a173278171b84f9d51279
 WHIRLPOOL 
67ae67f16140c2a6a1007115dd2202e5b495492167a124bb78d722354900f94e8e61a81479598f6c3f137131992fe95ff5db798e04a3cfe23e62268b4ace2adc
 DIST qgis-1.8.0.tar.bz2 29997204 SHA256 
700be4f81c4a6b6335a0217a6c476328c0ea02543d579a06dc1aaf60201303ab SHA512 
475c2087164b325bd6efe49bdca9e5eb563645ea556c34f644cff00fd6bcc0585e9e39daa2e62f0a706db58bc1551af786fc2cb6c17ad90f5734ebea5044e57c
 WHIRLPOOL 
ef1fc2832bd20398afdee9eb4c1e81baa3c8c792acc76c0b609a74ae0d61301b00f105221fa27b74b26c68fd8b5d849ea7612e960a8684b885cb8f31d0c71a1c
 DIST qgis_sample_data.tar.gz 13601736 SHA256 
a31c54056776e8476e1f959870830f850423645cfb80d88811f3b365c29f2b4a SHA512 
5847d7b32e5f75e771adf6b959847024f55b2360c307bd80e5628595fc53f5aaca18adf6cb00fa027a7e7b326c7f72bab58df16674daf20b77c676e163d93f78
 WHIRLPOOL 
fe7746f8a72807742427c6fb70f1453e195be75322d5784adc484ac14b0eae55569dbded7468ea2ba0c34781fe14918e07a5a187dca82bff551c6117f941d7f5

diff --git a/sci-geosciences/qgis/qgis-1.7.0.ebuild 
b/sci-geosciences/qgis/qgis-1.7.0.ebuild
deleted file mode 100644
index ddc06c0..000
--- a/sci-geosciences/qgis/qgis-1.7.0.ebuild
+++ /dev/null
@@ -1,100 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=3
-
-PYTHON_USE_WITH="sqlite"
-PYTHON_DEPEND="python? 2"
-inherit python cmake-utils eutils multilib
-
-DESCRIPTION="User friendly Geographic Information System"
-HOMEPAGE="http://www.qgis.org/";
-SRC_URI="http://qgis.org/downloads/${P}.tar.bz2
-   examples? ( http://download.osgeo.org/qgis/data/qgis_sample_data.tar.gz 
)"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="examples gps grass gsl postgres python spatialite test"
-
-RDEPEND="
-   dev-libs/expat
-   sci-geosciences/gpsbabel
-   >=sci-libs/gdal-1.6.1[geos,python?]
-   sci-libs/geos
-   sci-libs/gsl
-   dev-qt/qtcore:4
-   dev-qt/qtgui:4
-   dev-qt/qtsvg:4
-   dev-qt/qtsql:4
-   dev-qt/qtwebkit:4
-   x11-libs/qwt:5[svg]
-   x11-libs/qwtpolar
-   grass? ( >=sci-geosciences/grass-6.4.0_rc6[python?] )
-   postgres? ( >=dev-db/postgresql-8.4 )
-   python? ( dev-python/PyQt4[X,sql,svg] )
-   spatialite? (
-   dev-db/sqlite:3
-   dev-db/spatialite
-   )"
-
-DEPEND="${RDEPEND}
-   sys-devel/bison
-   sys-devel/flex"
-
-DOCS=( BUGS ChangeLog CODING.pdf README )
-PATCHES=(
-   "${FILESDIR}/${PN}-1.7.0-avoid-deprecated-pyqtconfig.patch"
-)
-
-# Does not find the test binaries at all
-RESTRICT="test"
-
-pkg_setup() {
-   python_set_active_version 2
-   python_pkg_setup
-}
-
-src_configure() {
-   local mycmakeargs+=(
-   "-DQGIS_MANUAL_SUBDIR=/share/man/"
-   "-DBUILD_SHARED_LIBS=ON"
-   "-DBINDINGS_GLOBAL_INSTALL=ON"
-   "-DQGIS_LIB_SUBDIR=$(get_libdir)"
-   "-DQGIS_PLUGIN_SUBDIR=$(get_libdir)/qgis"
-   "-DWITH_INTERNAL_SPATIALITE=OFF"
-   "-DWITH_INTERNAL_QWTPOLAR=OFF"
-   "-DPEDANTIC=OFF"
-   "-DWITH_APIDOC=OFF"
-   $(cmake-utils_use_with postgres POSTGRESQL)
-   $(cmake-utils_use_with grass GRASS)
-   $(cmake-utils_use_with python BINDINGS)
-   $(cmake-utils_use python BINDINGS_GLOBAL_INSTALL)
-   $(cmake-utils_use_with spatialite SPATIALITE)
-   $(cmake-utils_use_enable test TESTS)
-   )
-   use grass && mycmakeargs+=( "-DGRASS_PREFIX=/usr/" )
-
-   cmake-utils_src_configure
-}
-
-src_install() {
-   cmake-utils_src_install
-
-   newicon images/icons/qgis-icon.png qgis.png || die
-   make_desktop_entry qgis "Quantum GIS" qgis
-
-   if use examples; then
-   insinto /usr/share/doc/${PF}/examples
-   doins -r "${WORKDIR}"/qgis_sample_data/* || die "Unable to 
install examples"
-   fi
-}
-
-pkg_postinst() {
-   if use postgres; then
-   elog "If you don't intend to use an external PostGIS server"
-

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

2015-09-24 Thread Pacho Ramos
commit: 5c61f6ef7abd462a1ddd43726afd30725ed4c2c4
Author: Pacho Ramos  gentoo  org>
AuthorDate: Thu Sep 24 18:37:43 2015 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Thu Sep 24 18:37:43 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c61f6ef

media-sound/pavucontrol: Drop old

Package-Manager: portage-2.2.20.1

 media-sound/pavucontrol/Manifest   |  1 -
 media-sound/pavucontrol/pavucontrol-1.0.ebuild | 36 --
 2 files changed, 37 deletions(-)

diff --git a/media-sound/pavucontrol/Manifest b/media-sound/pavucontrol/Manifest
index 90b3232..7365a89 100644
--- a/media-sound/pavucontrol/Manifest
+++ b/media-sound/pavucontrol/Manifest
@@ -1,3 +1,2 @@
-DIST pavucontrol-1.0.tar.xz 179596 SHA256 
3dbe2865b6e3a195a8951967d9234f62cd254c30b08bdea1ecf8997b58f68cde SHA512 
ff17e452426ff11da9a3215232b4742c88dd84ea3d2f55f8e6e6459f0edbe1323ad4ee8a3403db9a22a72eadae60baa6ecabfa502c005fde4c92ae3bf4aac007
 WHIRLPOOL 
07f32ee76b44f290eb6ffbf0bf4f9419e3bc26efbef2c54fb0a711d492a0de79300d84181c8fae0f8ada5111931464d199e8b4d9deccd64ee721894a44f7cc0a
 DIST pavucontrol-2.0.tar.xz 151560 SHA256 
22f29dd81b4a1a34ec7bffe9b027aff2a37fc76ccded4539d43a8c126a39470b SHA512 
2b5f83f79cf6d7ce94bd836278274acb09824af389f5a7ad7d3977db743d8f9c5def78d8e9dea901a7e05355cfebb060f513cf01997baf546fd2dd2ada0513b1
 WHIRLPOOL 
f85b60363ea30aee976e4e704bddf607b4e18ea9f9041d63acd0dc36183e103435f37c70e3b55b6327b7b1c7291c898b8167742cbcc7c47ebcd83a10f790d33c
 DIST pavucontrol-3.0.tar.xz 145092 SHA256 
b3d2ea5a25fc88dcee80c396014f72df1b4742f8cfbbc5349c39d64a0d338890 SHA512 
3562fc50e5f60c6b6280c2d524e13cf44114bf481e5ec98b8714c7c2f162d0332179ebcf4c5a78d86f511de857bdc3aa7415e1548e0c10d4582b5958c4cacae9
 WHIRLPOOL 
f743b900985bb2eabb2a22e0ac3f070cb6e8a3ee7373598b101c6b0522546349e85e89e30859b394a8cfd1d6b6ef5dafdc7a630cfae2f77174509780471af4a3

diff --git a/media-sound/pavucontrol/pavucontrol-1.0.ebuild 
b/media-sound/pavucontrol/pavucontrol-1.0.ebuild
deleted file mode 100644
index 519b82f..000
--- a/media-sound/pavucontrol/pavucontrol-1.0.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=4
-
-DESCRIPTION="Pulseaudio Volume Control, GTK based mixer for Pulseaudio"
-HOMEPAGE="http://freedesktop.org/software/pulseaudio/pavucontrol/";
-SRC_URI="http://freedesktop.org/software/pulseaudio/${PN}/${P}.tar.xz";
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc ~ppc64 ~sparc x86 ~x86-fbsd"
-IUSE="nls"
-
-RDEPEND=">=dev-cpp/gtkmm-3.0:3.0
-   >=dev-libs/libsigc++-2.2:2
-   >=media-libs/libcanberra-0.16[gtk3]
-   >=media-sound/pulseaudio-0.9.16[glib]
-   virtual/freedesktop-icon-theme"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig
-   nls? (
-   dev-util/intltool
-   sys-devel/gettext
-   )"
-
-DOCS="ChangeLog"
-
-src_configure() {
-   econf \
-   --docdir=/usr/share/doc/${PF} \
-   --htmldir=/usr/share/doc/${PF}/html \
-   --disable-lynx \
-   $(use_enable nls)
-}



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

2015-09-24 Thread Pacho Ramos
commit: 797fbf9043d4689fba9b61733fb97af7d3e6e96e
Author: Pacho Ramos  gentoo  org>
AuthorDate: Thu Sep 24 18:38:12 2015 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Thu Sep 24 18:38:12 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=797fbf90

media-sound/pavucontrol: Drop old

Package-Manager: portage-2.2.20.1

 media-sound/pavucontrol/metadata.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/pavucontrol/metadata.xml 
b/media-sound/pavucontrol/metadata.xml
index 3bf6bcf..e1774e3 100644
--- a/media-sound/pavucontrol/metadata.xml
+++ b/media-sound/pavucontrol/metadata.xml
@@ -1,5 +1,5 @@
 
 http://www.gentoo.org/dtd/metadata.dtd";>
 
-  sound
+sound
 



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

2015-09-24 Thread Pacho Ramos
commit: a96e2bc696981105670a955a9e5a7dd4c3f17ee5
Author: Pacho Ramos  gentoo  org>
AuthorDate: Thu Sep 24 18:37:20 2015 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Thu Sep 24 18:37:20 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a96e2bc6

media-sound/pavucontrol: Version bump

Package-Manager: portage-2.2.20.1

 media-sound/pavucontrol/Manifest   |  1 +
 media-sound/pavucontrol/pavucontrol-3.0.ebuild | 37 ++
 2 files changed, 38 insertions(+)

diff --git a/media-sound/pavucontrol/Manifest b/media-sound/pavucontrol/Manifest
index 0e6a725..90b3232 100644
--- a/media-sound/pavucontrol/Manifest
+++ b/media-sound/pavucontrol/Manifest
@@ -1,2 +1,3 @@
 DIST pavucontrol-1.0.tar.xz 179596 SHA256 
3dbe2865b6e3a195a8951967d9234f62cd254c30b08bdea1ecf8997b58f68cde SHA512 
ff17e452426ff11da9a3215232b4742c88dd84ea3d2f55f8e6e6459f0edbe1323ad4ee8a3403db9a22a72eadae60baa6ecabfa502c005fde4c92ae3bf4aac007
 WHIRLPOOL 
07f32ee76b44f290eb6ffbf0bf4f9419e3bc26efbef2c54fb0a711d492a0de79300d84181c8fae0f8ada5111931464d199e8b4d9deccd64ee721894a44f7cc0a
 DIST pavucontrol-2.0.tar.xz 151560 SHA256 
22f29dd81b4a1a34ec7bffe9b027aff2a37fc76ccded4539d43a8c126a39470b SHA512 
2b5f83f79cf6d7ce94bd836278274acb09824af389f5a7ad7d3977db743d8f9c5def78d8e9dea901a7e05355cfebb060f513cf01997baf546fd2dd2ada0513b1
 WHIRLPOOL 
f85b60363ea30aee976e4e704bddf607b4e18ea9f9041d63acd0dc36183e103435f37c70e3b55b6327b7b1c7291c898b8167742cbcc7c47ebcd83a10f790d33c
+DIST pavucontrol-3.0.tar.xz 145092 SHA256 
b3d2ea5a25fc88dcee80c396014f72df1b4742f8cfbbc5349c39d64a0d338890 SHA512 
3562fc50e5f60c6b6280c2d524e13cf44114bf481e5ec98b8714c7c2f162d0332179ebcf4c5a78d86f511de857bdc3aa7415e1548e0c10d4582b5958c4cacae9
 WHIRLPOOL 
f743b900985bb2eabb2a22e0ac3f070cb6e8a3ee7373598b101c6b0522546349e85e89e30859b394a8cfd1d6b6ef5dafdc7a630cfae2f77174509780471af4a3

diff --git a/media-sound/pavucontrol/pavucontrol-3.0.ebuild 
b/media-sound/pavucontrol/pavucontrol-3.0.ebuild
new file mode 100644
index 000..e0b197e
--- /dev/null
+++ b/media-sound/pavucontrol/pavucontrol-3.0.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+DESCRIPTION="Pulseaudio Volume Control, GTK based mixer for Pulseaudio"
+HOMEPAGE="http://freedesktop.org/software/pulseaudio/pavucontrol/";
+SRC_URI="http://freedesktop.org/software/pulseaudio/${PN}/${P}.tar.xz";
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+IUSE="nls"
+
+RDEPEND="
+   >=dev-cpp/gtkmm-3.0:3.0
+   >=dev-libs/libsigc++-2.2:2
+   >=media-libs/libcanberra-0.16[gtk3]
+   >=media-sound/pulseaudio-3[glib]
+   virtual/freedesktop-icon-theme
+"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig
+   nls? (
+   dev-util/intltool
+   sys-devel/gettext
+   )
+"
+
+src_configure() {
+   econf \
+   --docdir=/usr/share/doc/${PF} \
+   --htmldir=/usr/share/doc/${PF}/html \
+   --disable-lynx \
+   $(use_enable nls)
+}



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

2015-09-24 Thread Pacho Ramos
commit: 44309bf75965c1c5bea48e6e94ec11724709c8e4
Author: Pacho Ramos  gentoo  org>
AuthorDate: Thu Sep 24 18:29:51 2015 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Thu Sep 24 18:29:51 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44309bf7

media-sound/pulseaudio: Version bump (#560350 by mrueg), fix doxygen 
building/installation (#530114 by jer).

Package-Manager: portage-2.2.20.1

 media-sound/pulseaudio/Manifest  |   1 +
 media-sound/pulseaudio/pulseaudio-7.0.ebuild | 368 +++
 2 files changed, 369 insertions(+)

diff --git a/media-sound/pulseaudio/Manifest b/media-sound/pulseaudio/Manifest
index 3dfc27a..6c71bd7 100644
--- a/media-sound/pulseaudio/Manifest
+++ b/media-sound/pulseaudio/Manifest
@@ -1,2 +1,3 @@
 DIST pulseaudio-5.0.tar.xz 1455428 SHA256 
99c13a8b1249ddbd724f195579df79484e9af6418cecf6a15f003a7f36caf939 SHA512 
f3d64bd6e03a732fd812da466b6658004600b4f3d0b9760403b7e113b6d654d54387658bf3704f45f28ab700245433e23fe517e4579130886fc58647eb97be2b
 WHIRLPOOL 
c85829c78ded3bbef234e455bfd3778f2daf50de9d7627508dbf131d0c398e35ab3ae41a4b5136f0c0da09249bc9a600ad85d848ba4e1faba74875af0a787036
 DIST pulseaudio-6.0.tar.xz 1469248 SHA256 
b50640e0b80b1607600accfad2e45aabb79d379bf6354c9671efa2065477f6f6 SHA512 
4f2293b41c8278047a41be4609a6bc267766874001092a91e785b05d5224fd82810862402942dadbb54bed7f74689779c958ca512666dfe6755d29551583cc2d
 WHIRLPOOL 
d75724f2ada640dabd256dc9e9840def17e78f63116c31df711d266349e9f4b99efbc797a5108649c860a5bf8ec8199383eaede440d8b4b655ef09f4ce37984f
+DIST pulseaudio-7.0.tar.xz 1505864 SHA256 
ca1ae1377e8926bfc3ffe2aeb9f657f6c363a16f72861166fcf9454e3eeae8fa SHA512 
d5d6444df5429dd9f57c7653b1aebd6e257f5568511275cde087948f13fa6995ed41f8562d437bf30110a0c7fbd000d730925b6c0322d33d4ad8b82ed64393ae
 WHIRLPOOL 
d527530e9b4f1148990f0c7f197421573275fb2cc6c1952d0ad41f41421ce346bea1b6910455f79a0e83e1d7d3692a3d19b5ecaaab642183857282378f5701bc

diff --git a/media-sound/pulseaudio/pulseaudio-7.0.ebuild 
b/media-sound/pulseaudio/pulseaudio-7.0.ebuild
new file mode 100644
index 000..a441fda
--- /dev/null
+++ b/media-sound/pulseaudio/pulseaudio-7.0.ebuild
@@ -0,0 +1,368 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+inherit autotools bash-completion-r1 eutils flag-o-matic gnome2-utils 
linux-info readme.gentoo systemd user versionator udev multilib-minimal
+
+DESCRIPTION="A networked sound server with an advanced plugin system"
+HOMEPAGE="http://www.pulseaudio.org/";
+SRC_URI="http://freedesktop.org/software/pulseaudio/releases/${P}.tar.xz";
+
+# libpulse-simple and libpulse link to libpulse-core; this is daemon's
+# library and can link to gdbm and other GPL-only libraries. In this
+# cases, we have a fully GPL-2 package. Leaving the rest of the
+# GPL-forcing USE flags for those who use them.
+LICENSE="!gdbm? ( LGPL-2.1 ) gdbm? ( GPL-2 )"
+
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 
~amd64-linux ~x86-linux"
+
+# +alsa-plugin as discussed in bug #519530
+IUSE="+alsa +alsa-plugin +asyncns bluetooth +caps dbus doc equalizer +gdbm 
+glib
+gnome gtk ipv6 jack libsamplerate lirc native-headset neon ofono-headset
++orc oss qt4 realtime selinux sox ssl systemd system-wide tcpd test +udev
++webrtc-aec +X xen zeroconf"
+
+# See "*** BLUEZ support not found (requires D-Bus)" in configure.ac
+REQUIRED_USE="
+   bluetooth? ( dbus )
+   ofono-headset? ( bluetooth )
+   native-headset? ( bluetooth )
+   udev? ( || ( alsa oss ) )
+"
+
+# libpcre needed in some cases, bug #472228
+RDEPEND="
+   || (
+   elibc_glibc? ( virtual/libc )
+   elibc_uclibc? ( virtual/libc )
+   dev-libs/libpcre
+   )
+   >=media-libs/libsndfile-1.0.20[${MULTILIB_USEDEP}]
+   X? (
+   >=x11-libs/libX11-1.4.0[${MULTILIB_USEDEP}]
+   >=x11-libs/libxcb-1.6[${MULTILIB_USEDEP}]
+   x11-libs/libSM[${MULTILIB_USEDEP}]
+   x11-libs/libICE[${MULTILIB_USEDEP}]
+   x11-libs/libXtst[${MULTILIB_USEDEP}]
+   )
+   caps? ( >=sys-libs/libcap-2.22-r2[${MULTILIB_USEDEP}] )
+   libsamplerate? ( >=media-libs/libsamplerate-0.1.1-r1 )
+   alsa? ( >=media-libs/alsa-lib-1.0.19 )
+   glib? ( >=dev-libs/glib-2.4.0:2[${MULTILIB_USEDEP}] )
+   zeroconf? ( >=net-dns/avahi-0.6.12[dbus] )
+   jack? ( >=media-sound/jack-audio-connection-kit-0.117 )
+   tcpd? ( sys-apps/tcp-wrappers[${MULTILIB_USEDEP}] )
+   lirc? ( app-misc/lirc )
+   dbus? ( >=sys-apps/dbus-1.0.0[${MULTILIB_USEDEP}] )
+   gtk? ( x11-libs/gtk+:3 )
+   gnome? ( >=gnome-base/gconf-2.4.0 )
+   bluetooth? (
+   net-wireless/bluez:=
+   >=sys-apps/dbus-1.0.0
+   media-libs/sbc
+   )
+   asyncns? ( net-libs/libasyncns[${MULTILIB_USEDEP}] )
+   udev? ( >=virtual/udev-143[hwdb(+)] )

[gentoo-commits] proj/kde:master commit in: kde-plasma/ksshaskpass/, kde-plasma/ksshaskpass/files/

2015-09-24 Thread Michael Palimaka
commit: ddcd66e8ec682ea289964112ff8fd5021c13037d
Author: Michael Palimaka  gentoo  org>
AuthorDate: Thu Sep 24 18:23:20 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Thu Sep 24 18:23:20 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=ddcd66e8

kde-plasma/ksshaskpass: export SSH_ASKPASS

Gentoo-bug: 558938

Package-Manager: portage-2.2.20.1

 kde-plasma/ksshaskpass/files/ksshaskpass.sh|  1 +
 .../ksshaskpass/ksshaskpass-5.4.49..ebuild | 26 ++
 kde-plasma/ksshaskpass/ksshaskpass-.ebuild | 26 ++
 3 files changed, 53 insertions(+)

diff --git a/kde-plasma/ksshaskpass/files/ksshaskpass.sh 
b/kde-plasma/ksshaskpass/files/ksshaskpass.sh
new file mode 100644
index 000..664c173
--- /dev/null
+++ b/kde-plasma/ksshaskpass/files/ksshaskpass.sh
@@ -0,0 +1 @@
+export SSH_ASKPASS="/usr/bin/ksshaskpass"

diff --git a/kde-plasma/ksshaskpass/ksshaskpass-5.4.49..ebuild 
b/kde-plasma/ksshaskpass/ksshaskpass-5.4.49..ebuild
index 24b0588..51675d0 100644
--- a/kde-plasma/ksshaskpass/ksshaskpass-5.4.49..ebuild
+++ b/kde-plasma/ksshaskpass/ksshaskpass-5.4.49..ebuild
@@ -22,3 +22,29 @@ RDEPEND="
${DEPEND}
!net-misc/ksshaskpass
 "
+
+src_install() {
+   kde5_src_install
+
+   insinto /etc/plasma/startup
+   doins "${FILESDIR}/ksshaskpass.sh"
+}
+
+pkg_postinst() {
+   kde5_pkg_postinst
+
+   elog ""
+   elog "In order to have ssh-agent start at kde startup,"
+   elog "edit /etc/plasma/startup/agent-startup.sh and uncomment"
+   elog "the lines enabling ssh-agent."
+   elog
+   elog "If you do so, do not forget to uncomment the respective"
+   elog "lines in /etc/plasma/shutdown/agent-shutdown.sh to"
+   elog "properly kill the agent when the session ends."
+   elog
+   elog "${PN} has been installed as your default askpass application"
+   elog "for Plasma 5 sessions."
+   elog "If that's not desired, select the one you want to use in"
+   elog "/etc/plasma/startup/ksshaskpass.sh"
+   elog ""
+}

diff --git a/kde-plasma/ksshaskpass/ksshaskpass-.ebuild 
b/kde-plasma/ksshaskpass/ksshaskpass-.ebuild
index 24b0588..51675d0 100644
--- a/kde-plasma/ksshaskpass/ksshaskpass-.ebuild
+++ b/kde-plasma/ksshaskpass/ksshaskpass-.ebuild
@@ -22,3 +22,29 @@ RDEPEND="
${DEPEND}
!net-misc/ksshaskpass
 "
+
+src_install() {
+   kde5_src_install
+
+   insinto /etc/plasma/startup
+   doins "${FILESDIR}/ksshaskpass.sh"
+}
+
+pkg_postinst() {
+   kde5_pkg_postinst
+
+   elog ""
+   elog "In order to have ssh-agent start at kde startup,"
+   elog "edit /etc/plasma/startup/agent-startup.sh and uncomment"
+   elog "the lines enabling ssh-agent."
+   elog
+   elog "If you do so, do not forget to uncomment the respective"
+   elog "lines in /etc/plasma/shutdown/agent-shutdown.sh to"
+   elog "properly kill the agent when the session ends."
+   elog
+   elog "${PN} has been installed as your default askpass application"
+   elog "for Plasma 5 sessions."
+   elog "If that's not desired, select the one you want to use in"
+   elog "/etc/plasma/startup/ksshaskpass.sh"
+   elog ""
+}



[gentoo-commits] repo/gentoo:master commit in: games-server/ut2003-ded/

2015-09-24 Thread Michael Sterrett
commit: 934cdd6e22e6b35e089c2aeb1ababb284f39cc7a
Author: Michael Sterrett  gentoo  org>
AuthorDate: Thu Sep 24 18:19:59 2015 +
Commit: Michael Sterrett  gentoo  org>
CommitDate: Thu Sep 24 18:19:59 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=934cdd6e

update SRC_URI (bug #561356)

Package-Manager: portage-2.2.20.1

 games-server/ut2003-ded/ut2003-ded-2225-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/games-server/ut2003-ded/ut2003-ded-2225-r2.ebuild 
b/games-server/ut2003-ded/ut2003-ded-2225-r2.ebuild
index 3b7d774..743708f 100644
--- a/games-server/ut2003-ded/ut2003-ded-2225-r2.ebuild
+++ b/games-server/ut2003-ded/ut2003-ded-2225-r2.ebuild
@@ -7,7 +7,7 @@ inherit games
 
 DESCRIPTION="Unreal Tournament 2003 Linux Dedicated Server"
 HOMEPAGE="http://www.ut2003.com/";
-SRC_URI="http://ftp.games.skynet.be/pub/misc/ut2003-lnxded-${PV}.tar.bz2
+SRC_URI="http://www.agaland.it/misc/ut2003/ut2003-lnxded-${PV}.tar.bz2
mirror://gentoo/UT2003CrashFix.zip"
 
 LICENSE="ut2003"



[gentoo-commits] repo/gentoo:master commit in: www-client/firefox/

2015-09-24 Thread Ian Stakenvicius
commit: a96e4656563f69f5567e07fff25b81cfcc6c6410
Author: Ian Stakenvicius  gentoo  org>
AuthorDate: Thu Sep 24 18:05:01 2015 +
Commit: Ian Stakenvicius  gentoo  org>
CommitDate: Thu Sep 24 18:06:44 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a96e4656

www-client/firefox-41: restored patch for bug 557956

The firefox-41.0 release dropped the libc patch needed to fix
bug 557956.  This commit revbumps to 41.0-r1, including the
patch again.

Bug: https://bugs.gentoo.org/show_bug.cgi?id=557956#c14
Package-Manager: portage-2.2.20.1

 www-client/firefox/{firefox-41.0.ebuild => firefox-41.0-r1.ebuild} | 1 +
 1 file changed, 1 insertion(+)

diff --git a/www-client/firefox/firefox-41.0.ebuild 
b/www-client/firefox/firefox-41.0-r1.ebuild
similarity index 99%
rename from www-client/firefox/firefox-41.0.ebuild
rename to www-client/firefox/firefox-41.0-r1.ebuild
index 868fc56..335eb95 100644
--- a/www-client/firefox/firefox-41.0.ebuild
+++ b/www-client/firefox/firefox-41.0-r1.ebuild
@@ -140,6 +140,7 @@ src_prepare() {
EPATCH_SUFFIX="patch" \
EPATCH_FORCE="yes" \
epatch "${WORKDIR}/firefox"
+   epatch "${FILESDIR}"/${PN}-38-dont-hardcode-libc-soname.patch #557956
 
# Allow user to apply any additional patches without modifing ebuild
epatch_user



[gentoo-commits] repo/gentoo:master commit in: sys-fs/eudev/, sys-fs/eudev/files/

2015-09-24 Thread Ian Stakenvicius
commit: 4bfb86649d6861f1e761c602af90618ab1ec133e
Author: Ian Stakenvicius  gentoo  org>
AuthorDate: Thu Sep 24 18:01:15 2015 +
Commit: Ian Stakenvicius  gentoo  org>
CommitDate: Thu Sep 24 18:05:49 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4bfb8664

sys-fs/eudev: add rule-generator suport for eudev-3

This commit restores rule-generator support with a patch developed
upstream but not yet part of a release.  If testing succeeds,
the ebuild with this patch will be stabilized.  A new
release for ~arch will follow soon with this patch integrated.

Package-Manager: portage-2.2.20.1

 sys-fs/eudev/eudev-3.1.2-r1.ebuild | 290 +
 sys-fs/eudev/files/eudev-3-rule-generator.patch| 712 +
 .../files/eudev-3.1.2-pre-rule-generator.patch |  28 +
 3 files changed, 1030 insertions(+)

diff --git a/sys-fs/eudev/eudev-3.1.2-r1.ebuild 
b/sys-fs/eudev/eudev-3.1.2-r1.ebuild
new file mode 100644
index 000..f999da1
--- /dev/null
+++ b/sys-fs/eudev/eudev-3.1.2-r1.ebuild
@@ -0,0 +1,290 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+KV_min=2.6.39
+WANT_AUTOMAKE=1.13
+
+inherit autotools eutils linux-info multilib multilib-minimal user
+
+if [[ ${PV} = * ]]; then
+   EGIT_REPO_URI="git://github.com/gentoo/eudev.git"
+   inherit git-2
+else
+   SRC_URI="https://dev.gentoo.org/~blueness/${PN}/${P}.tar.gz";
+   KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+fi
+
+DESCRIPTION="Linux dynamic and persistent device naming support (aka userspace 
devfs)"
+HOMEPAGE="https://github.com/gentoo/eudev";
+
+LICENSE="LGPL-2.1 MIT GPL-2"
+SLOT="0"
+IUSE="doc gudev +hwdb +kmod introspection rule-generator selinux static-libs 
test"
+
+COMMON_DEPEND=">=sys-apps/util-linux-2.20
+   gudev? ( >=dev-libs/glib-2.34.3:2[${MULTILIB_USEDEP}] )
+   introspection? ( >=dev-libs/gobject-introspection-1.38 )
+   kmod? ( >=sys-apps/kmod-16 )
+   selinux? ( >=sys-libs/libselinux-2.1.9 )
+   !http://www.freedesktop.org/wiki/Software/systemd/PredictableNetworkInterfaceNames";
+   ewarn
+   ewarn "This functionality is enabled BY DEFAULT because eudev has no 
means of synchronizing"
+   ewarn "between the default or user-modified choice of sys-fs/udev.  If 
you wish to disable"
+   ewarn "this new iface naming, please be sure that 
/etc/udev/rules.d/80-net-name-slot.rules"
+   ewarn "exists: touch /etc/udev/rules.d/80-net-name-slot.rules"
+   ewarn
+}
+
+pkg_setup() {
+   CONFIG_CHECK="~BLK_DEV_BSG ~DEVTMPFS ~!IDE ~INOTIFY_USER 
~!SYSFS_DEPRECATED ~!SYSFS_DEPRECATED_V2 ~SIGNALFD ~EPOLL ~FHANDLE ~NET"
+   linux-info_pkg_setup
+   get_running_version
+
+   # These are required kernel options, but we don't error out on them
+   # because you can build under one kernel and run under another.
+   if kernel_is lt ${KV_min//./ }; then
+   ewarn
+   ewarn "Your current running kernel version ${KV_FULL} is too 
old to run ${P}."
+   ewarn "Make sure to run udev under kernel version ${KV_min} or 
above."
+   ewarn
+   fi
+}
+
+src_prepare() {
+   epatch "${FILESDIR}"/${P}-pre-rule-generator.patch
+   epatch "${FILESDIR}"/${PN}-3-rule-generator.patch
+
+   # change rules back to group uucp instead of dialout for now
+   sed -e 's/GROUP="dialout"/GROUP="uucp"/' -i rules/*.rules \
+   || die "failed to change group dialout to uucp"
+
+   epatch_user
+
+   if use doc; then
+   gtkdocize --docdir docs || die "gtkdocize failed"
+   else
+   echo 'EXTRA_DIST =' > docs/gtk-doc.make
+   fi
+   eautoreconf
+}
+
+multilib_src_configure() {
+   tc-export CC #463846
+   export cc_cv_CFLAGS__flto=no #502950
+
+   # Keep sorted by ./configure --help and only pass --disable flags
+   # when *required* to avoid external deps or unnecessary compile
+   local econf_args
+   econf_args=(
+   ac_cv_search_cap_init=
+   ac_cv_header_sys_capability_h=yes
+   DBUS_CFLAGS=' '
+   DBUS_LIBS=' '
+   --with-rootprefix=
+   --with-rootrundir=/run
+   --docdir=/usr/share/doc/${PF}
+   --libdir=/usr/$(get_libdir)
+   --with-rootlibexecdir=/lib/udev
+   --with-html-dir="/usr/share/doc/${PF}/html"
+   --enable-split-usr
+   --enable-manpages
+   --disable-hwdb
+   --exec-prefix=/
+
+   $(use_enable gudev)
+   )
+
+   # Only build libudev for non-native_abi, and only install it to libdir,
+   # that means all options only apply to native_abi
+   if multilib_is_native_abi; then
+   econf_args+=(
+   --with-rootlibdir=/$(get_libdir)
+ 

[gentoo-commits] repo/gentoo:master commit in: kde-apps/kate/files/, kde-apps/kate/

2015-09-24 Thread Michael Palimaka
commit: 1e209fd2d1250a7e34419a1939d53329e81e2465
Author: Michael Palimaka  gentoo  org>
AuthorDate: Thu Sep 24 17:56:17 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Thu Sep 24 17:56:30 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e209fd2

kde-apps/kate: version bump

Package-Manager: portage-2.2.20.1

 kde-apps/kate/Manifest |  1 +
 .../files/kate-15.08.1-initialise-libgit2.patch| 57 +
 kde-apps/kate/kate-15.08.1.ebuild  | 72 ++
 3 files changed, 130 insertions(+)

diff --git a/kde-apps/kate/Manifest b/kde-apps/kate/Manifest
index c3d6395..cd74bc9 100644
--- a/kde-apps/kate/Manifest
+++ b/kde-apps/kate/Manifest
@@ -1,2 +1,3 @@
 DIST kate-15.08.0.tar.xz 1759156 SHA256 
834bd05c2e565d030cb58e47ae5a1bc0f487242bcca7b8d54de0fd73ace13656 SHA512 
ad00616c8c4a2c11264be7959e751d143c9030c20413f9a972bb9c61cd425226803e04b13509761fec4597f3c0b0cb4f013f3d4a81469309f1de45693ec3e4eb
 WHIRLPOOL 
5ffa81557b48769f2b59c62b4c9cae24f271a7fe23bc0c16b60fffdae93029dc7dfa396eaa1a23710797cae16dbc9d54c5dae64ccd9e1f0df35e397ac03f26f2
+DIST kate-15.08.1.tar.xz 1758912 SHA256 
3f96756f7f4c6d178d2310a9fd1b63e816348d49cb4d53907e10fc6a29c92b43 SHA512 
463e7b57f54305582a3faacbb92499a1fa54684da3a97adb072e6b613589c12eaa0ca7e618dbeea60f57ee31786c2ca1ca23a9f53d11bd986a240113ba124108
 WHIRLPOOL 
839e25ee5d4ae3fe7c02b3de6c2899bef4339cecff3930dbc810382b27e2e0298c7db9014233c2db5e583f66d46bfbc757517ea5426c7c46eb303df0326652d4
 DIST kate-4.14.3.tar.xz 2766880 SHA256 
513d4ae2c36fa6b59caf3b2b685e3ea1167093d16025859cfac90d75617e707d SHA512 
0d197bb00fb9a56572e140dd3c50338c90a0cb3bb8ebc78cc0e6d6ab04d6c129537a2ab8076ff9b844e159687c0a73cbacbe678e006b2d86b57285068158e38e
 WHIRLPOOL 
bb1c499c55dc768ab936d4a2e2f6ac79ddb28d84c517bfa1ec421fdfbc6f9e727ae5c0e3f1773e3664ad263217c1b89f9c83b51ad0ca6fdee36e23b20fa964d5

diff --git a/kde-apps/kate/files/kate-15.08.1-initialise-libgit2.patch 
b/kde-apps/kate/files/kate-15.08.1-initialise-libgit2.patch
new file mode 100644
index 000..dec6ab9
--- /dev/null
+++ b/kde-apps/kate/files/kate-15.08.1-initialise-libgit2.patch
@@ -0,0 +1,57 @@
+From c6eee39e8c5185a0c330e3c70c7b1e109c69ac44 Mon Sep 17 00:00:00 2001
+From: Andrew Wilcox 
+Date: Sat, 12 Sep 2015 15:31:11 -0500
+Subject: [PATCH] Project plugin: Properly initialise libgit2
+
+Fixes bugs #346101, #346102, #345602
+---
+ addons/project/kateprojectworker.cpp | 6 ++
+ 1 file changed, 6 insertions(+)
+
+diff --git a/addons/project/kateprojectworker.cpp 
b/addons/project/kateprojectworker.cpp
+index 847f2b2..5433ee8 100644
+--- a/addons/project/kateprojectworker.cpp
 b/addons/project/kateprojectworker.cpp
+@@ -276,12 +276,15 @@ QStringList KateProjectWorker::filesFromGit(const QDir 
&dir, bool recursive)
+ return 0;
+ };
+ 
++git_libgit2_init();
++
+ if (git_repository_open_ext(&repo, dir.path().toUtf8().data(), 0, NULL)) {
+ return QStringList();
+ }
+ 
+ if ((working_dir = git_repository_workdir(repo)) == nullptr) {
+ git_repository_free(repo);
++git_libgit2_shutdown();
+ return files;
+ }
+ 
+@@ -290,6 +293,7 @@ QStringList KateProjectWorker::filesFromGit(const QDir 
&dir, bool recursive)
+ 
+ if (git_revparse_single(&root_tree, repo, "HEAD^{tree}")) {
+ git_repository_free(repo);
++git_libgit2_shutdown();
+ return files;
+ }
+ 
+@@ -299,6 +303,7 @@ QStringList KateProjectWorker::filesFromGit(const QDir 
&dir, bool recursive)
+ if (git_object_lookup_bypath(&tree, root_tree, 
relpath.toUtf8().data(), GIT_OBJ_TREE)) {
+ git_object_free(root_tree);
+ git_repository_free(repo);
++git_libgit2_shutdown();
+ return files;
+ }
+ }
+@@ -311,6 +316,7 @@ QStringList KateProjectWorker::filesFromGit(const QDir 
&dir, bool recursive)
+ 
+ git_object_free(root_tree);
+ git_repository_free(repo);
++git_libgit2_shutdown();
+ return files;
+ }
+ 
+-- 
+2.5.2
+

diff --git a/kde-apps/kate/kate-15.08.1.ebuild 
b/kde-apps/kate/kate-15.08.1.ebuild
new file mode 100644
index 000..6b7562b
--- /dev/null
+++ b/kde-apps/kate/kate-15.08.1.ebuild
@@ -0,0 +1,72 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+KDE_HANDBOOK="true"
+KDE_TEST="true"
+inherit kde5
+
+DESCRIPTION="Kate is an advanced text editor"
+HOMEPAGE="https://www.kde.org/applications/utilities/kate 
http://kate-editor.org";
+KEYWORDS="~amd64 ~x86"
+IUSE="+addons"
+
+DEPEND="
+   $(add_frameworks_dep kactivities)
+   $(add_frameworks_dep kcodecs)
+   $(add_frameworks_dep kcompletion)
+   $(add_frameworks_dep kconfig)
+   $(add_frameworks_dep kconfigwidgets)
+   $(add_frameworks_dep kcoreaddons)
+   $(add_frameworks_dep kcrash)
+   $(add_frameworks_dep kdbusaddons)
+   $(add_framewo

[gentoo-commits] repo/gentoo:master commit in: mail-mta/postfix/

2015-09-24 Thread Eray Aslan
commit: 7fb393aeb888002be6672392622f80749be11316
Author: Eray Aslan  gentoo  org>
AuthorDate: Thu Sep 24 17:33:29 2015 +
Commit: Eray Aslan  gentoo  org>
CommitDate: Thu Sep 24 17:33:29 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7fb393ae

mail-mta/postfix: Fix multi instance setup

Gentoo-Bug: 561278

Package-Manager: portage-2.2.21

 ...ostfix-3.1_pre20150913.ebuild => postfix-3.0.2-r1.ebuild} | 12 
 mail-mta/postfix/postfix-3.1_pre20150913.ebuild  |  1 -
 2 files changed, 8 insertions(+), 5 deletions(-)

diff --git a/mail-mta/postfix/postfix-3.1_pre20150913.ebuild 
b/mail-mta/postfix/postfix-3.0.2-r1.ebuild
similarity index 95%
copy from mail-mta/postfix/postfix-3.1_pre20150913.ebuild
copy to mail-mta/postfix/postfix-3.0.2-r1.ebuild
index cbbcfdc..679f48e 100644
--- a/mail-mta/postfix/postfix-3.1_pre20150913.ebuild
+++ b/mail-mta/postfix/postfix-3.0.2-r1.ebuild
@@ -5,9 +5,9 @@
 EAPI=5
 inherit eutils flag-o-matic multilib pam ssl-cert systemd toolchain-funcs user 
versionator
 
-MY_PV="${PV/_pre/-}"
+MY_PV="${PV/_rc/-RC}"
 MY_SRC="${PN}-${MY_PV}"
-MY_URI="ftp://ftp.porcupine.org/mirrors/postfix-release/experimental";
+MY_URI="ftp://ftp.porcupine.org/mirrors/postfix-release/official";
 VDA_PV="2.10.0"
 VDA_P="${PN}-vda-v13-${VDA_PV}"
 RC_VER="2.7"
@@ -80,6 +80,11 @@ src_prepare() {
# change default paths to better comply with portage standard paths
sed -i -e "s:/usr/local/:/usr/:g" conf/master.cf || die "sed failed"
 
+   sed -i -e "/readme_directory\/CONNECTION_CACHE_README/ i\
+   \$readme_directory\/COMPATIBILITY_README:f:root:-:644" 
conf/postfix-files
+   sed -i -e "/html_directory\/CONNECTION_CACHE_README/ i\
+   \$html_directory\/COMPATIBILITY_README.html:f:root:-:644" 
conf/postfix-files
+
epatch_user
 }
 
@@ -192,7 +197,7 @@ src_configure() {
sed -i -e "/^RANLIB/s/ranlib/$(tc-getRANLIB)/g" "${S}"/makedefs
sed -i -e "/^AR/s/ar/$(tc-getAR)/g" "${S}"/makedefs
 
-   emake makefiles shared=yes dynamicmaps=no pie=yes \
+   emake makefiles shared=yes dynamicmaps=no \
shlib_directory="/usr/$(get_libdir)/postfix/MAIL_VERSION" \
DEBUG="" CC="$(tc-getCC)" OPT="${CFLAGS}" CCARGS="${mycc}" 
AUXLIBS="${mylibs}" \
AUXLIBS_CDB="${AUXLIBS_CDB}" AUXLIBS_LDAP="${AUXLIBS_LDAP}" \
@@ -267,7 +272,6 @@ src_install () {
use postgres || sed -i -e "s/postgresql //" "${D}/etc/init.d/postfix"
 
dodoc *README COMPATIBILITY HISTORY PORTING RELEASE_NOTES*
-   mv "${D}"/etc/postfix/{*.default,*.proto} "${D}"/usr/share/doc/${PF}/
use doc && mv "${S}"/examples "${D}"/usr/share/doc/${PF}/
 
pamd_mimic_system smtp auth account

diff --git a/mail-mta/postfix/postfix-3.1_pre20150913.ebuild 
b/mail-mta/postfix/postfix-3.1_pre20150913.ebuild
index cbbcfdc..14d5902 100644
--- a/mail-mta/postfix/postfix-3.1_pre20150913.ebuild
+++ b/mail-mta/postfix/postfix-3.1_pre20150913.ebuild
@@ -267,7 +267,6 @@ src_install () {
use postgres || sed -i -e "s/postgresql //" "${D}/etc/init.d/postfix"
 
dodoc *README COMPATIBILITY HISTORY PORTING RELEASE_NOTES*
-   mv "${D}"/etc/postfix/{*.default,*.proto} "${D}"/usr/share/doc/${PF}/
use doc && mv "${S}"/examples "${D}"/usr/share/doc/${PF}/
 
pamd_mimic_system smtp auth account



[gentoo-commits] repo/gentoo:master commit in: media-video/kamoso/files/, media-video/kamoso/

2015-09-24 Thread Michael Palimaka
commit: 92779964b71d6d7baf10162f36bfd25b21d804b2
Author: Michael Palimaka  gentoo  org>
AuthorDate: Thu Sep 24 17:26:36 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Thu Sep 24 17:27:08 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92779964

media-video/kamoso: new package

Package-Manager: portage-2.2.20.1

 media-video/kamoso/Manifest|  1 +
 .../kamoso/files/kamoso-3.0-bogus-deps.patch   | 57 ++
 media-video/kamoso/kamoso-3.0.ebuild   | 40 +++
 media-video/kamoso/metadata.xml|  5 ++
 4 files changed, 103 insertions(+)

diff --git a/media-video/kamoso/Manifest b/media-video/kamoso/Manifest
new file mode 100644
index 000..f121c2d
--- /dev/null
+++ b/media-video/kamoso/Manifest
@@ -0,0 +1 @@
+DIST kamoso-3.0.tar.xz 109340 SHA256 
bd19e8771e91fb8bfa15df2c316e056eb2ac207252c3d6c02fc81a19d1845d46 SHA512 
9d00dab4bad9b17a35de2a5f883d2194509686aa72197c4ac5277bcaa69676d9af867f3889788805f0640626e1bdd2be4746b7e7a9b67b9a00b58a98a7609e6d
 WHIRLPOOL 
decb88362059021979250ce19086d62d3517537006478df028ead96f8b1a581c011f0e456a1a0d115589f5b7cbc812a20409657aca0d33c2c76bee5abca1d077

diff --git a/media-video/kamoso/files/kamoso-3.0-bogus-deps.patch 
b/media-video/kamoso/files/kamoso-3.0-bogus-deps.patch
new file mode 100644
index 000..d741995
--- /dev/null
+++ b/media-video/kamoso/files/kamoso-3.0-bogus-deps.patch
@@ -0,0 +1,57 @@
+From d68516ef3522856b09e861a24e6d537b0dba1b77 Mon Sep 17 00:00:00 2001
+From: Michael Palimaka 
+Date: Fri, 25 Sep 2015 03:14:37 +1000
+Subject: [PATCH] Remove unused dependencies.
+
+REVIEW: 125379
+---
+ CMakeLists.txt | 4 ++--
+ src/CMakeLists.txt | 4 ++--
+ src/device.h   | 1 -
+ 3 files changed, 4 insertions(+), 5 deletions(-)
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 98dc813..f975549 100644
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -5,8 +5,8 @@ cmake_minimum_required(VERSION 2.8.12)
+ find_package(ECM 0.0.9 REQUIRED NO_MODULE)
+ set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR} 
${CMAKE_CURRENT_SOURCE_DIR}/cmake)
+ 
+-find_package(Qt5 NO_MODULE REQUIRED COMPONENTS Core Gui Widgets Quick Network 
OpenGL DBus Test)
+-find_package(KF5 REQUIRED COMPONENTS WidgetsAddons Config ConfigWidgets 
DocTools Solid KIO Declarative I18n)
++find_package(Qt5 NO_MODULE REQUIRED COMPONENTS Core Gui Widgets Quick)
++find_package(KF5 REQUIRED COMPONENTS Config DocTools KIO Declarative I18n)
+ 
+ find_package(Qt5GStreamer 1.1.90 REQUIRED)
+ find_package(KDEExperimentalPurpose REQUIRED)
+diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
+index 9fa08a7..5a0f96d 100644
+--- a/src/CMakeLists.txt
 b/src/CMakeLists.txt
+@@ -24,8 +24,8 @@ add_executable(kamoso
+ )
+ 
+ target_link_libraries(kamoso
+-Qt5::Core Qt5::Gui Qt5::Widgets Qt5::Quick Qt5::OpenGL
+-KF5::Declarative KF5::KIOWidgets KF5::Solid KF5::KIOWidgets 
KF5::ConfigGui KF5::I18n
++Qt5::Core Qt5::Gui Qt5::Widgets Qt5::Quick
++KF5::Declarative KF5::KIOWidgets KF5::KIOWidgets KF5::ConfigGui KF5::I18n
+ Qt5GStreamer Qt5GStreamerQuick
+ ${UDEV_LIBS}
+ )
+diff --git a/src/device.h b/src/device.h
+index 3690830..5eabd56 100644
+--- a/src/device.h
 b/src/device.h
+@@ -22,7 +22,6 @@
+ 
+ #include 
+ 
+-#include 
+ #include 
+ 
+ namespace UdevQt {
+-- 
+2.4.9
+

diff --git a/media-video/kamoso/kamoso-3.0.ebuild 
b/media-video/kamoso/kamoso-3.0.ebuild
new file mode 100644
index 000..f7bbc1f
--- /dev/null
+++ b/media-video/kamoso/kamoso-3.0.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+KDE_HANDBOOK="true"
+KDE_PUNT_BOGUS_DEPS="true"
+inherit kde5
+
+DESCRIPTION="Application to take pictures and videos from your webcam by KDE"
+HOMEPAGE="https://userbase.kde.org/Kamoso";
+SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.xz"
+
+LICENSE="GPL-2+"
+KEYWORDS="~amd64"
+IUSE=""
+
+DEPEND="
+   $(add_frameworks_dep kconfig)
+   $(add_frameworks_dep kcoreaddons)
+   $(add_frameworks_dep kdeclarative)
+   $(add_frameworks_dep ki18n)
+   $(add_frameworks_dep kio)
+   dev-libs/purpose:5
+   dev-qt/qtdeclarative:5
+   dev-qt/qtgui:5
+   dev-qt/qtwidgets:5
+   media-libs/qt-gstreamer[qt5]
+   virtual/libudev:=
+"
+RDEPEND="${DEPEND}
+   media-plugins/gst-plugins-meta[alsa,theora,vorbis,v4l,xv]
+"
+
+src_prepare() {
+   epatch "${FILESDIR}/${P}-bogus-deps.patch"
+
+   kde5_src_prepare
+}

diff --git a/media-video/kamoso/metadata.xml b/media-video/kamoso/metadata.xml
new file mode 100644
index 000..a23f444
--- /dev/null
+++ b/media-video/kamoso/metadata.xml
@@ -0,0 +1,5 @@
+
+http://www.gentoo.org/dtd/metadata.dtd";>
+
+   kde
+



[gentoo-commits] proj/kde:master commit in: media-video/kamoso/

2015-09-24 Thread Michael Palimaka
commit: bcb5fcda27cbd68948ad58ca2a4c62e77ae7605b
Author: Michael Palimaka  gentoo  org>
AuthorDate: Thu Sep 24 17:12:48 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Thu Sep 24 17:12:48 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=bcb5fcda

media-video/kamoso: remove unused dependency

Package-Manager: portage-2.2.20.1

 media-video/kamoso/kamoso-.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/media-video/kamoso/kamoso-.ebuild 
b/media-video/kamoso/kamoso-.ebuild
index b4c617b..73de363 100644
--- a/media-video/kamoso/kamoso-.ebuild
+++ b/media-video/kamoso/kamoso-.ebuild
@@ -21,7 +21,6 @@ DEPEND="
$(add_frameworks_dep kdeclarative)
$(add_frameworks_dep ki18n)
$(add_frameworks_dep kio)
-   $(add_kdeapps_dep libkipi)
dev-libs/purpose:5
dev-qt/qtdeclarative:5
dev-qt/qtgui:5



[gentoo-commits] proj/kde:master commit in: media-video/kamoso/

2015-09-24 Thread Michael Palimaka
commit: 4e8f30ed7d7154d87ffa55fefd77b1bb17e22df7
Author: Michael Palimaka  gentoo  org>
AuthorDate: Thu Sep 24 16:56:56 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Thu Sep 24 16:56:56 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=4e8f30ed

media-video/kamoso: enable handbook

Package-Manager: portage-2.2.20.1

 media-video/kamoso/kamoso-.ebuild | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/media-video/kamoso/kamoso-.ebuild 
b/media-video/kamoso/kamoso-.ebuild
index 9aa2bd0..b4c617b 100644
--- a/media-video/kamoso/kamoso-.ebuild
+++ b/media-video/kamoso/kamoso-.ebuild
@@ -4,6 +4,8 @@
 
 EAPI=5
 
+KDE_HANDBOOK="true"
+KDE_PUNT_BOGUS_DEPS="true"
 inherit kde5
 
 DESCRIPTION="Application to take pictures and videos from your webcam by KDE"



[gentoo-commits] proj/kde:master commit in: media-video/kamoso/

2015-09-24 Thread Michael Palimaka
commit: 41623f477916336c3cbb73ef3d89b2a114f8042c
Author: Michael Palimaka  gentoo  org>
AuthorDate: Thu Sep 24 16:56:40 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Thu Sep 24 16:56:40 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=41623f47

media-video/kamoso: migrate to libudev

Package-Manager: portage-2.2.20.1

 media-video/kamoso/kamoso-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-video/kamoso/kamoso-.ebuild 
b/media-video/kamoso/kamoso-.ebuild
index 9bbd79c..9aa2bd0 100644
--- a/media-video/kamoso/kamoso-.ebuild
+++ b/media-video/kamoso/kamoso-.ebuild
@@ -25,7 +25,7 @@ DEPEND="
dev-qt/qtgui:5
dev-qt/qtwidgets:5
media-libs/qt-gstreamer[qt5]
-   virtual/udev
+   virtual/libudev:=
 "
 RDEPEND="${DEPEND}
media-plugins/gst-plugins-meta[alsa,theora,vorbis,v4l,xv]



[gentoo-commits] repo/gentoo:master commit in: eclass/

2015-09-24 Thread Davide Pesavento
commit: 90571f78e8d2fc24aa6d34051a36edde7ddb1efc
Author: Davide Pesavento  gentoo  org>
AuthorDate: Thu Sep 24 16:50:38 2015 +
Commit: Davide Pesavento  gentoo  org>
CommitDate: Thu Sep 24 16:50:38 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90571f78

qt5-build.eclass: initial support for Qt 5.6 and 5.7 (dev branch)

Signed-off-by: Davide Pesavento  gentoo.org>

 eclass/qt5-build.eclass | 9 -
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass
index cd4571a..66ba829 100644
--- a/eclass/qt5-build.eclass
+++ b/eclass/qt5-build.eclass
@@ -544,6 +544,7 @@ qt5_base_configure() {
# disable everything to prevent automagic deps (part 1)
-no-mtdev
-no-journald
+   $([[ ${QT5_MINOR_VERSION} -ge 6 ]] && echo -no-syslog)
-no-libpng -no-libjpeg
-no-freetype -no-harfbuzz
-no-openssl
@@ -559,10 +560,7 @@ qt5_base_configure() {
 
# disable everything to prevent automagic deps (part 2)
-no-pulseaudio -no-alsa
-
-   # override in qtgui and qtwidgets where x11-libs/cairo[qt4] is 
blocked
-   # to avoid adding qt4 include paths (bug 433826)
-   -no-gtkstyle
+   $([[ ${QT5_MINOR_VERSION} -ge 7 ]] && echo -no-gtk || echo 
-no-gtkstyle)
 
# exclude examples and tests from default build
-nomake examples
@@ -606,7 +604,8 @@ qt5_base_configure() {
#-use-gold-linker
 
# disable all platform plugins by default, override in qtgui
-   -no-xcb -no-eglfs -no-directfb -no-linuxfb -no-kms
+   -no-xcb -no-eglfs -no-kms -no-directfb -no-linuxfb
+   $([[ ${QT5_MINOR_VERSION} -ge 6 ]] && echo -no-mirclient)
 
# disable undocumented X11-related flags, override in qtgui
# (not shown in ./configure -help output)



[gentoo-commits] proj/kde:master commit in: media-video/kamoso/

2015-09-24 Thread Michael Palimaka
commit: e75d44899670fd4a60dcb12e9cd2f0f90c862185
Author: Michael Palimaka  gentoo  org>
AuthorDate: Thu Sep 24 16:53:36 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Thu Sep 24 16:53:36 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=e75d4489

media-video/kamoso: remove unused dependency

Package-Manager: portage-2.2.20.1

 media-video/kamoso/kamoso-.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/media-video/kamoso/kamoso-.ebuild 
b/media-video/kamoso/kamoso-.ebuild
index 6d7be78..9bbd79c 100644
--- a/media-video/kamoso/kamoso-.ebuild
+++ b/media-video/kamoso/kamoso-.ebuild
@@ -24,7 +24,6 @@ DEPEND="
dev-qt/qtdeclarative:5
dev-qt/qtgui:5
dev-qt/qtwidgets:5
-   media-libs/phonon[qt5]
media-libs/qt-gstreamer[qt5]
virtual/udev
 "



[gentoo-commits] proj/musl:master commit in: sys-boot/efibootmgr/files/, sys-boot/efibootmgr/

2015-09-24 Thread Anthony G. Basile
commit: 1ab2ef162343210b1804db164332b1a60a80d060
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Thu Sep 24 16:51:05 2015 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Thu Sep 24 16:51:05 2015 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=1ab2ef16

sys-boot/eibootmgr: in tree version works, bug #543838.

 sys-boot/efibootmgr/Manifest   |  4 ---
 sys-boot/efibootmgr/efibootmgr-0.11.0-r99.ebuild   | 37 --
 .../files/efibootmgr-use-linux-pci-header.patch| 17 --
 sys-boot/efibootmgr/metadata.xml   | 20 
 4 files changed, 78 deletions(-)

diff --git a/sys-boot/efibootmgr/Manifest b/sys-boot/efibootmgr/Manifest
deleted file mode 100644
index 26e3627..000
--- a/sys-boot/efibootmgr/Manifest
+++ /dev/null
@@ -1,4 +0,0 @@
-AUX efibootmgr-use-linux-pci-header.patch 417 SHA256 
5c9cc92b268e7ef45dbfdb1ce1ecf31b29d1703a289b618cc3851a4ab0c79299 SHA512 
c4e5861896bb59d90992852e6a8df01cd804540e31751cf576ec0cf51e9a023c6341f826f85efc3e363c5bbc4bd201e1bdb9547ef7ac10d4119f02744519e974
 WHIRLPOOL 
840e09af90b3dc1f96bc50200bf1c4cc7b249b50c1c90676c284b86d9787050c4064f0a4b80eaa205840c4dabc302c569744ceef3d51c561febd4370c609925b
-DIST efibootmgr-0.11.0.tar.bz2 53636 SHA256 
f27ce3d7588512017bceb2d2a29aef110499a662a21550afa1158f9950f976d1 SHA512 
65866239ae3e2f0142f48e57b16c2a2f4b736e6c7942e595492d82c628633826cfe1a68dd850b8d3090b1a0bd1bbf1906ea882e377a593d1866d686b984cac19
 WHIRLPOOL 
411cca8fcc26620d2c2a9d15f39e4bafc430efa2789cfe875b411522c641e6754295a640bf03876fd45c8c7c2880f81779bebd95485459316ed846210d7bb533
-EBUILD efibootmgr-0.11.0-r99.ebuild 954 SHA256 
90968115e07ad2e950b9b823d5a4cbc7ee9cf3482b57475d4c83c4535cf8eaff SHA512 
5cd8b9492730b1384496de09b800681e6150883882f1d75d3d530a5ea54c1e2761e4151e3b70e877d8803e0016a4374dfeaa8e1df2a98911bcaa1f4b5b7c3e8b
 WHIRLPOOL 
c00d7f50e4a3049e36a15057a80d80a4bdbf2a742eed41b1ddac7e8ef7459909ba64e04d345d75a0ffb9921ed2a8c5c4d3c5599c6e02d46a37efd0d1f51a20a3
-MISC metadata.xml 721 SHA256 
2cd408b3fef01dddc0b14853a4eb8175dae030fe21a7a326279531bd1071c227 SHA512 
c6e9a85ede378f46ac22c5cbfb6e8bb7753e1202ddbfc7fbeda07a6e2aea5894e0de85a9bc2c485ae16d3af2ee707f1dcdb8e94d60dbd7e5d2e74cbc1d938664
 WHIRLPOOL 
d454adeddf3a181d5fbc6738102832237e98fc2ec9c0ee3a4bc94dea2f3b5be1167699e46eaa5dbfa5049f16e29d3b2e760f26fe67e33bad20b2377e2d5deb65

diff --git a/sys-boot/efibootmgr/efibootmgr-0.11.0-r99.ebuild 
b/sys-boot/efibootmgr/efibootmgr-0.11.0-r99.ebuild
deleted file mode 100644
index 6f043a7..000
--- a/sys-boot/efibootmgr/efibootmgr-0.11.0-r99.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/sys-boot/efibootmgr/efibootmgr-0.11.0.ebuild,v 1.4 
2015/02/28 13:25:47 ago Exp $
-
-EAPI=5
-
-inherit eutils toolchain-funcs
-
-DESCRIPTION="User-space application to modify the EFI boot manager"
-HOMEPAGE="https://github.com/vathpela/efibootmgr";
-SRC_URI="https://github.com/vathpela/${PN}/releases/download/${P}/${P}.tar.bz2";
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ia64 x86"
-IUSE=""
-
-RDEPEND="sys-apps/pciutils
-   sys-libs/efivar"
-DEPEND="${RDEPEND}"
-
-src_prepare() {
-   epatch "${FILESDIR}/efibootmgr-use-linux-pci-header.patch"
-   sed -i -e s/-Werror// Makefile || die
-}
-
-src_configure() {
-   tc-export CC
-   export EXTRA_CFLAGS=${CFLAGS}
-}
-
-src_install() {
-   # build system uses perl, so just do it ourselves
-   dosbin src/efibootmgr/efibootmgr
-   doman src/man/man8/efibootmgr.8
-   dodoc AUTHORS README doc/ChangeLog doc/TODO
-}

diff --git a/sys-boot/efibootmgr/files/efibootmgr-use-linux-pci-header.patch 
b/sys-boot/efibootmgr/files/efibootmgr-use-linux-pci-header.patch
deleted file mode 100644
index 7fa44f0..000
--- a/sys-boot/efibootmgr/files/efibootmgr-use-linux-pci-header.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-Use pci.h from linux... sys/pci.h is glibc specific.
-
 src/lib/scsi_ioctls.c.orig 2014-12-28 10:43:35.513305649 +0100
-+++ src/lib/scsi_ioctls.c  2014-12-28 10:43:45.024306074 +0100
-@@ -19,11 +19,11 @@
-  */
- 
- #include 
--#include 
- #include 
- #include 
- #include 
- #include 
-+#include 
- #include 
- #include "scsi_ioctls.h"
- 

diff --git a/sys-boot/efibootmgr/metadata.xml b/sys-boot/efibootmgr/metadata.xml
deleted file mode 100644
index 1f9a68b..000
--- a/sys-boot/efibootmgr/metadata.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd";>
-
-   proxy-maintainers
-   
-   yannick.schaef...@epfl.ch
-   Yannick Schaeffer
-   Mantainer. Assign bugs to him
-   
-   
-   flop...@gentoo.org
-   Mike Gilbert
-   
-   
-   This is efibootmgr, a Linux user-space application to modify 
the Intel
-   Extensible Firmware Interface (EFI) Boot 

[gentoo-commits] proj/kde:master commit in: dev-libs/purpose/

2015-09-24 Thread Michael Palimaka
commit: 43ea7180065c6388d6c17aae9437f4d3d6bc1dd8
Author: Michael Palimaka  gentoo  org>
AuthorDate: Thu Sep 24 16:46:08 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Thu Sep 24 16:46:08 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=43ea7180

dev-libs/purpose: punt bogus deps

Package-Manager: portage-2.2.20.1

 dev-libs/purpose/purpose-.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-libs/purpose/purpose-.ebuild 
b/dev-libs/purpose/purpose-.ebuild
index c5d30c8..f47cfce 100644
--- a/dev-libs/purpose/purpose-.ebuild
+++ b/dev-libs/purpose/purpose-.ebuild
@@ -4,6 +4,7 @@
 
 EAPI=5
 
+KDE_PUNT_BOGUS_DEPS="true"
 inherit kde5
 
 DESCRIPTION="Library for providing abstractions to get the developer's 
purposes fulfilled"



[gentoo-commits] proj/kde:master commit in: media-video/kamoso/

2015-09-24 Thread Michael Palimaka
commit: 196894faef170b7a14566b93eb4921c8debd7135
Author: Michael Palimaka  gentoo  org>
AuthorDate: Thu Sep 24 16:18:57 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Thu Sep 24 16:18:57 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=196894fa

media-video/kamoso: update HOMEPAGE

Package-Manager: portage-2.2.20.1

 media-video/kamoso/kamoso-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-video/kamoso/kamoso-.ebuild 
b/media-video/kamoso/kamoso-.ebuild
index 5639c4a..ed72a66 100644
--- a/media-video/kamoso/kamoso-.ebuild
+++ b/media-video/kamoso/kamoso-.ebuild
@@ -7,7 +7,7 @@ EAPI=5
 inherit kde5
 
 DESCRIPTION="Application to take pictures and videos from your webcam by KDE"
-HOMEPAGE="http://projects.kde.org/projects/extragear/multimedia/kamoso";
+HOMEPAGE="https://userbase.kde.org/Kamoso";
 
 LICENSE="GPL-3"
 KEYWORDS=""



[gentoo-commits] proj/kde:master commit in: media-video/kamoso/

2015-09-24 Thread Michael Palimaka
commit: 60f8f2abc95d723c77fa35870b87e4196ff588e9
Author: Michael Palimaka  gentoo  org>
AuthorDate: Thu Sep 24 16:20:17 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Thu Sep 24 16:20:17 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=60f8f2ab

media-video/kamoso: update LICENSE

Package-Manager: portage-2.2.20.1

 media-video/kamoso/kamoso-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-video/kamoso/kamoso-.ebuild 
b/media-video/kamoso/kamoso-.ebuild
index ed72a66..6d7be78 100644
--- a/media-video/kamoso/kamoso-.ebuild
+++ b/media-video/kamoso/kamoso-.ebuild
@@ -9,7 +9,7 @@ inherit kde5
 DESCRIPTION="Application to take pictures and videos from your webcam by KDE"
 HOMEPAGE="https://userbase.kde.org/Kamoso";
 
-LICENSE="GPL-3"
+LICENSE="GPL-2+"
 KEYWORDS=""
 IUSE=""
 



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

2015-09-24 Thread Michael Palimaka
commit: 266d8dc25386a779b75d489ba2ab69c2d409c1eb
Author: Michael Palimaka  gentoo  org>
AuthorDate: Thu Sep 24 16:47:47 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Thu Sep 24 16:48:38 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=266d8dc2

dev-libs/purpose: new package

Package-Manager: portage-2.2.20.1

 dev-libs/purpose/Manifest   |  1 +
 dev-libs/purpose/metadata.xml   |  5 +
 dev-libs/purpose/purpose-1.0.ebuild | 29 +
 3 files changed, 35 insertions(+)

diff --git a/dev-libs/purpose/Manifest b/dev-libs/purpose/Manifest
new file mode 100644
index 000..7aaf047
--- /dev/null
+++ b/dev-libs/purpose/Manifest
@@ -0,0 +1 @@
+DIST purpose-1.0.tar.xz 61752 SHA256 
f025294333f7cf5931dabf0f4dc0abeb9e41a2b25d4af86e1b63eada82980702 SHA512 
c20a52e5e37227856fd1e14836c5e9894ebacbcce01bf3a3c8433cf44971aa4d4e1819ba6f042c99fb54460e7595cd4001d8bf1a8f9add86bb9409309d41ed3b
 WHIRLPOOL 
d5af27e4f725a24724c8d2cbc90897e6fb4d4fb7350c2db9e2e3b364c5470ce462ad0a52c18d5600854b7bfbbf61dd8a3d2135064b57b0471f335ee82e1f5609

diff --git a/dev-libs/purpose/metadata.xml b/dev-libs/purpose/metadata.xml
new file mode 100644
index 000..a23f444
--- /dev/null
+++ b/dev-libs/purpose/metadata.xml
@@ -0,0 +1,5 @@
+
+http://www.gentoo.org/dtd/metadata.dtd";>
+
+   kde
+

diff --git a/dev-libs/purpose/purpose-1.0.ebuild 
b/dev-libs/purpose/purpose-1.0.ebuild
new file mode 100644
index 000..0a638ff
--- /dev/null
+++ b/dev-libs/purpose/purpose-1.0.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+KDE_PUNT_BOGUS_DEPS="true"
+inherit kde5
+
+DESCRIPTION="Library for providing abstractions to get the developer's 
purposes fulfilled"
+SRC_URI="mirror://kde/stable/${PN}/${P}.tar.xz"
+
+LICENSE="LGPL-2.1+"
+KEYWORDS="~amd64"
+IUSE=""
+
+DEPEND="
+   $(add_frameworks_dep kcoreaddons)
+   $(add_frameworks_dep kdeclarative)
+   $(add_frameworks_dep ki18n)
+   $(add_frameworks_dep kio)
+   $(add_kdeapps_dep kaccounts-integration)
+   dev-qt/qtdeclarative:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5
+   dev-qt/qtwidgets:5
+   net-libs/accounts-qt
+"
+RDEPEND="${DEPEND}"



[gentoo-commits] proj/portage:master commit in: pym/repoman/

2015-09-24 Thread Brian Dolbec
commit: 8f03fb3708bc3e1f2c0f7f3b1ba7832e415b09c9
Author: Brian Dolbec  gentoo  org>
AuthorDate: Thu Sep 24 16:18:04 2015 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Thu Sep 24 16:18:04 2015 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=8f03fb37

repoman/qa_data.py: Re-apply mgorny's "mark errors with explicit '[fatal']" 
patch

This patch was lost in the re-basing of the rewrite due to the code being moved 
to a new file.

Commit: 8482a88e8dfa3acf67d9bf4df4d3588ed993bb96
Author: Michał Górny  gentoo.org> (Tue 10 Feb 2015 03:38:07 AM PST)
Subject: repoman: mark errors with explicit '[fatal']

 pym/repoman/qa_data.py | 7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/pym/repoman/qa_data.py b/pym/repoman/qa_data.py
index 461b064..a68a53f 100644
--- a/pym/repoman/qa_data.py
+++ b/pym/repoman/qa_data.py
@@ -367,11 +367,16 @@ def format_qa_output(
# we only want key value pairs where value > 0
for category in sorted(fails):
number = len(fails[category])
-   formatter.add_literal_data("  " + category.ljust(30))
+   formatter.add_literal_data("  " + category)
+   spacing_width = 30 - len(category)
if category in qawarnings:
formatter.push_style("WARN")
else:
formatter.push_style("BAD")
+   formatter.add_literal_data(" [fatal]")
+   spacing_width -= 8
+
+   formatter.add_literal_data(" " * spacing_width)
formatter.add_literal_data("%s" % number)
formatter.pop_style()
formatter.add_line_break()



[gentoo-commits] proj/portage:master commit in: pym/repoman/

2015-09-24 Thread Brian Dolbec
commit: 548265bd0b9e3890ad030e57fccc33e240f62e7b
Author: Brian Dolbec  gentoo  org>
AuthorDate: Thu Sep 24 16:18:45 2015 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Thu Sep 24 16:18:45 2015 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=548265bd

repoman/qa_data.py: Update docstrings

 pym/repoman/qa_data.py | 23 +--
 1 file changed, 13 insertions(+), 10 deletions(-)

diff --git a/pym/repoman/qa_data.py b/pym/repoman/qa_data.py
index a68a53f..b26559c 100644
--- a/pym/repoman/qa_data.py
+++ b/pym/repoman/qa_data.py
@@ -354,14 +354,19 @@ def format_qa_output(
formatter, fails, dofull, dofail, options, qawarnings):
"""Helper function that formats output properly
 
-   Args:
-   formatter - a subclass of Formatter
-   fails - a dict of qa status failures
-   dofull - boolean to print full results or a summary
-   dofail - boolean to decide if failure was hard or soft
-
-   Returns:
-   None (modifies formatter)
+   @param formatter: an instance of Formatter
+   @type formatter: Formatter
+   @param fails: dict of qa status failures
+   @type fails: dict
+   @param dofull: Whether to print full results or a summary
+   @type dofull: boolean
+   @param dofail: Whether failure was hard or soft
+   @type dofail: boolean
+   @param options: The command-line options provided to repoman
+   @type options: Namespace
+   @param qawarnings: the set of warning types
+   @type qawarnings: set
+   @return: None (modifies formatter)
"""
full = options.mode == 'full'
# we only want key value pairs where value > 0
@@ -398,8 +403,6 @@ def format_qa_output_column(
 
@param formatter: an instance of Formatter
@type formatter: Formatter
-   @param path: dict of qa status items
-   @type path: dict
@param fails: dict of qa status failures
@type fails: dict
@param dofull: Whether to print full results or a summary



[gentoo-commits] repo/gentoo:master commit in: games-puzzle/fbg/

2015-09-24 Thread Michael Sterrett
commit: 247179202716872cf748e474bb1286de12f27788
Author: Michael Sterrett  gentoo  org>
AuthorDate: Thu Sep 24 16:03:00 2015 +
Commit: Michael Sterrett  gentoo  org>
CommitDate: Thu Sep 24 16:03:00 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24717920

add use deps for libsdl; tidy

Package-Manager: portage-2.2.20.1

 games-puzzle/fbg/fbg-0.9-r1.ebuild | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/games-puzzle/fbg/fbg-0.9-r1.ebuild 
b/games-puzzle/fbg/fbg-0.9-r1.ebuild
index d409745..47b2a2a 100644
--- a/games-puzzle/fbg/fbg-0.9-r1.ebuild
+++ b/games-puzzle/fbg/fbg-0.9-r1.ebuild
@@ -1,6 +1,7 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
+
 EAPI=5
 inherit eutils games
 
@@ -16,17 +17,16 @@ IUSE=""
 DEPEND="virtual/opengl
virtual/glu
dev-games/physfs
-   media-libs/libsdl
+   media-libs/libsdl[opengl,video]
media-libs/libmikmod
x11-libs/libXt"
-RDEPEND="${DEPEND}"
+RDEPEND=${DEPEND}
 
 src_prepare() {
sed -i \
-e "/FBGDATADIR=/s:\".*\":\"${GAMES_DATADIR}/${PN}\":" \
-e '/^datadir=/d' \
-   configure \
-   || die "sed failed"
+   configure || die
 }
 
 src_configure() {



[gentoo-commits] repo/gentoo:master commit in: eclass/

2015-09-24 Thread Michael Palimaka
commit: 0bb1e3cbe51890f1dbf68a63936d257e42b89830
Author: Michael Palimaka  gentoo  org>
AuthorDate: Thu Sep 24 15:41:00 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Thu Sep 24 15:43:03 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0bb1e3cb

kde4-base.eclass: relax blocker

Gentoo-bug: 560698

 eclass/kde4-base.eclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/eclass/kde4-base.eclass b/eclass/kde4-base.eclass
index fb4d566..8b9226a 100644
--- a/eclass/kde4-base.eclass
+++ b/eclass/kde4-base.eclass
@@ -323,7 +323,7 @@ kdedepend="
 kderdepend=""
 
 if [[ ${CATEGORY} == kde-apps ]]; then
-   kderdepend+=" !kde-base/${PN}"
+   kderdepend+=" !kde-base/${PN}:4"
 fi
 
 # all packages needs oxygen icons for basic iconset



[gentoo-commits] proj/kde:master commit in: eclass/

2015-09-24 Thread Michael Palimaka
commit: 8f3df5bf67de347b35f85dd7c8a0abb76c83fdae
Author: Michael Palimaka  gentoo  org>
AuthorDate: Thu Sep 24 15:41:00 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Thu Sep 24 15:41:00 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=8f3df5bf

kde4-base.eclass: relax blocker

Gentoo-bug: 560698

 eclass/kde4-base.eclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/eclass/kde4-base.eclass b/eclass/kde4-base.eclass
index 35994e3..3ced13e 100644
--- a/eclass/kde4-base.eclass
+++ b/eclass/kde4-base.eclass
@@ -331,7 +331,7 @@ kdedepend="
 kderdepend=""
 
 if [[ ${CATEGORY} == kde-apps ]]; then
-   kderdepend+=" !kde-base/${PN}"
+   kderdepend+=" !kde-base/${PN}:4"
 fi
 
 # all packages needs oxygen icons for basic iconset



[gentoo-commits] repo/gentoo:master commit in: kde-apps/kdepim-l10n/

2015-09-24 Thread Michael Palimaka
commit: cdc79d0aee5a89ce4f87506b8ec993daf8452894
Author: Michael Palimaka  gentoo  org>
AuthorDate: Thu Sep 24 15:34:58 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Thu Sep 24 15:35:15 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cdc79d0a

kde-apps/kdepim-l10n: version bump

Package-Manager: portage-2.2.20.1

 kde-apps/kdepim-l10n/Manifest   |  54 +
 kde-apps/kdepim-l10n/kdepim-l10n-15.08.1.ebuild | 139 
 2 files changed, 193 insertions(+)

diff --git a/kde-apps/kdepim-l10n/Manifest b/kde-apps/kdepim-l10n/Manifest
index 28b6a49..bfd3fcb 100644
--- a/kde-apps/kdepim-l10n/Manifest
+++ b/kde-apps/kdepim-l10n/Manifest
@@ -1,54 +1,108 @@
 DIST kde-l10n-ar-15.08.0.tar.xz 3408712 SHA256 
f52f05ae4863bbf8272402c667c19f2fbb73ad0529959b04b2030788aff0ca5d SHA512 
480bd82c6ce7c9085e6caec40f3dff5613d7f4c919da8ceda920668cbd938e4e8bd97d1bc624c843ea30458bd0a8a8ef5a59ad0166e51e775245f4588d36c130
 WHIRLPOOL 
078013eaf18b01b2dca682a7964f169caa2132f0972de09059d6f1a25704067b6d254dc62ecf8f5da8fe0d244cefd8c85212c4175f7ba87bd098078cc8ffec4a
+DIST kde-l10n-ar-15.08.1.tar.xz 3408964 SHA256 
dc9c43b4b9ace51968e2e938262052d9db020564693934dc1db4736ec2082c80 SHA512 
19791a654062cb670fc2931a62d2ee8f00617cf90f578c8284aa3e9e05f5d9e1089849ac95b8fb58117553502273c4d194c91a3d5528e682af12bf02bc0bd307
 WHIRLPOOL 
95378c37594fbc134b354d49b66b8f06d207f69f354d503244f03d9b9305832cd3797b856c42f58c9172fbf7a748d0276fb66ccf9d7052600938842b8f6a
 DIST kde-l10n-bg-15.08.0.tar.xz 2063936 SHA256 
185d2aaa898cfe357d19ac8394e37a09ff3bdc431f1d8b84caf6e4b78e0aa6f2 SHA512 
f9a96ab54d59b99d1774b626eeef129722f244bd3ffafdddee449edc8eba8fee63a1757a77f773fda3a5939cddcfea822423e409e46ed3378fa5fac6c2c138c1
 WHIRLPOOL 
e1cdbc0575157465b6048f2bf7a7a8bf36c6a9639ed3a643e629e3986c6b25212d9dea242d942d9c24c4fadd3076bddc83ea23c5d0a1299f02862b90f56928aa
+DIST kde-l10n-bg-15.08.1.tar.xz 2064064 SHA256 
57d388ec79f51b2ff7a3f4d3156910941821a48ca74ecc7744620cc0462ea1e4 SHA512 
46c0dde5b84ac0e20bfa04ec19091fdff4213902afc9e8a8e7491d73a50842410638a73074da626d9d0bbc864453afdbf45590a89cdf6e3c6a3ce2e782b8e28d
 WHIRLPOOL 
31ee18cabc72129ba6cca3705e3b5f507b65a1cb9a25047ff9a761835d45a3630f1cce10d85377adbc14b2542b68429962f61108e2cefbecf79c62f012a7c6fc
 DIST kde-l10n-bs-15.08.0.tar.xz 2462140 SHA256 
dbbf60c9c409e1a4886e0bdc75c3147659f9f3cdb069b40d74743fb5a92c8f8b SHA512 
c58c89e6966efc1c760f193bb025a9473aa3c86af0f3698bdfc07f491181d0c4581818c3323bd7a30927233547ebd1c75205b40f929264cd74a1c165772c1427
 WHIRLPOOL 
85edaa0af9095979e00a6f7aea6b87a67de423e4799e108a300b49175ac6a7853b6df8fef684f4dd0de39f0360d53140b4f3fcc5d3849fda1fe238ffb39435cb
+DIST kde-l10n-bs-15.08.1.tar.xz 2462328 SHA256 
030b748ecc89c6525e2a502c9b3f8a9883c625e137f2401935724cf40e29d373 SHA512 
965fcc0393f6b054cf93a06d39fdc0c201caa5b072c4ac9d2b63ad26e01cfc6192686935bcc1df8890708b4d281fe39337f2328abeb37a01dfe4c7756e6db609
 WHIRLPOOL 
7bc95c4515ab5ec02241bedfa8ffbb72caeec3890687acab4d4251c27fc52c447485e3384cb84d634ea50790e664c2748a2a537b4525cd4d84ed8ced29b50990
 DIST kde-l10n-ca-15.08.0.tar.xz 11854488 SHA256 
c2c5afb1fde8868b1ed5b34c28c79bbdfa7a45e39205f8d16337a5ad3fbf27da SHA512 
d25d8c880f0daa716a6de28e7806117c76f7f0aceee46882a33c2e9bf5bd8248d24e13080a6e308931a73e76875bd2f286ccd5e68d06066a799546844373401d
 WHIRLPOOL 
0d104389a528675e3bd1d8f631f390e6e129c23e3c90454636c5fae46facfbaeac1ef749c73b0ccf7a8daac22c34fcd502ce9f79f1591bf409b9c6f2fa610388
+DIST kde-l10n-ca-15.08.1.tar.xz 11855176 SHA256 
572dde9f029e2e97c63e87f133bbdf1ab4b3bd9c41c13d77184e2b0e4a598462 SHA512 
8b60c990c9a1627e1b84d14376831641011fa9924105e8861a47495dae19f5893384eefa5ba6fda9fb423e766f4a635aa03b68f058364deddd26a5ad53cc12cb
 WHIRLPOOL 
bc34024b1e24518107b82903501624745a594aafd6bc35124ffe6184c524a584a66c698ce970c73d07e3d60fd3d1f91f0559c02d2956d8c8f340bbe0bf0d90ac
 DIST kde-l10n...@valencia-15.08.0.tar.xz 2414748 SHA256 
14a790ebad94251acab23a01846a7be58c38ba5890efd79571cb06d8c31d7ecb SHA512 
a8438c9ae4b516411f73ab49edb7ad6246fe3a7b97af1564fa0547798c437b474b9cfa45556ded39e887d157b6fca4b31718d5001b39ac0072d76bcaae613d35
 WHIRLPOOL 
3b286ce5956abb9f7f3a63390cbf97bc113287d434ecd4f656bdcc7bf57e08044fba8ff5dff086e4be4ff125cfefd378bb5e92da6b5aafe389863698499e5366
+DIST kde-l10n...@valencia-15.08.1.tar.xz 2414596 SHA256 
147242dfcb1d5595b5dc30fedb66438e474b5018121de11608c5bb64d72fb21c SHA512 
e602cbb9e1f8d305e5ce3af48d0f596ad511764206523b8922f6468e75cafd62de2efec5a8a90aa2101ac38fb7cb4981ce6a6786687de3cb2f6ac27d4afa3876
 WHIRLPOOL 
428748ce2e339a4cd8e88413b7c5473b77af0ccfeb4604d66b21a6b2f9846187a2fc1099d3329f66a58076d8fa29f5d73afecdd70a039665ba6fa9b9487104e4
 DIST kde-l10n-cs-15.08.0.tar.xz 3019328 SHA256 
7e6576aad7b2ab84b4a30f30841c58a0db9570c263f1403334c5935f2a9d3775 SHA512 
d76ca04fc89026bda58a46d8d98b7fb2a59824e2f0488e54b4b7ba8ca19fadb389511ba1dd8f130b596d60b8cba3af6f14b568c80133ec4413959dced580a6d0
 WHIRLPOOL 
ddfcf6a8d785fe9e0290b98a4152d926ee30f2256e9e5ad

[gentoo-commits] repo/gentoo:master commit in: dev-java/jnr-enxio/

2015-09-24 Thread James Le Cuirot
commit: 3aec332913ec2554fe35654e066e8baa6a844827
Author: James Le Cuirot  gentoo  org>
AuthorDate: Thu Sep 24 15:12:06 2015 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Thu Sep 24 15:18:43 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3aec3329

dev-java/jnr-enxio: Bump Java version to 7, fixes bug #561352

Bumping the Java version demands a revbump but it should still be safe
enough to commit straight to stable.

Package-Manager: portage-2.2.20.1

 dev-java/jnr-enxio/{jnr-enxio-0.7.ebuild => jnr-enxio-0.7-r1.ebuild} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-java/jnr-enxio/jnr-enxio-0.7.ebuild 
b/dev-java/jnr-enxio/jnr-enxio-0.7-r1.ebuild
similarity index 95%
rename from dev-java/jnr-enxio/jnr-enxio-0.7.ebuild
rename to dev-java/jnr-enxio/jnr-enxio-0.7-r1.ebuild
index dc7cc82..e198a6a 100644
--- a/dev-java/jnr-enxio/jnr-enxio-0.7.ebuild
+++ b/dev-java/jnr-enxio/jnr-enxio-0.7-r1.ebuild
@@ -20,10 +20,10 @@ CDEPEND="dev-java/jnr-constants:0
dev-java/jnr-ffi:2"
 
 DEPEND="${CDEPEND}
-   >=virtual/jdk-1.6"
+   >=virtual/jdk-1.7"
 
 RDEPEND="${CDEPEND}
-   >=virtual/jre-1.6"
+   >=virtual/jre-1.7"
 
 java_prepare() {
cp "${FILESDIR}"/${P}-build.xml build.xml || die



[gentoo-commits] proj/portage:master commit in: pym/repoman/checks/ebuilds/, pym/repoman/

2015-09-24 Thread Brian Dolbec
commit: 5ebf2c4b0aa6b1e08f36c9dd56fcab152d54d785
Author: Brian Dolbec  gentoo  org>
AuthorDate: Thu Sep 24 15:22:04 2015 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Thu Sep 24 15:23:11 2015 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=5ebf2c4b

repoman: Remve the redundant repoman_settings initialaztion parameter

repoman_settings is available as part of repo_settings.
Use the repo_settings instance directly.

 pym/repoman/checks/ebuilds/fetches.py | 4 ++--
 pym/repoman/scanner.py| 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/pym/repoman/checks/ebuilds/fetches.py 
b/pym/repoman/checks/ebuilds/fetches.py
index 0b9c321..077340d 100644
--- a/pym/repoman/checks/ebuilds/fetches.py
+++ b/pym/repoman/checks/ebuilds/fetches.py
@@ -17,7 +17,7 @@ class FetchChecks(object):
'''Performs checks on the files needed for the ebuild'''
 
def __init__(
-   self, qatracker, repoman_settings, repo_settings, portdb, 
vcs_settings):
+   self, qatracker, repo_settings, portdb, vcs_settings):
'''
@param qatracker: QATracker instance
@param repoman_settings: settings instance
@@ -27,7 +27,7 @@ class FetchChecks(object):
self.portdb = portdb
self.qatracker = qatracker
self.repo_settings = repo_settings
-   self.repoman_settings = repoman_settings
+   self.repoman_settings = repo_settings.repoman_settings
self.vcs_settings = vcs_settings
 
def check(self, xpkg, checkdir, checkdir_relative, mychanged, mynew):

diff --git a/pym/repoman/scanner.py b/pym/repoman/scanner.py
index ace878a..1e1a38e 100644
--- a/pym/repoman/scanner.py
+++ b/pym/repoman/scanner.py
@@ -199,7 +199,7 @@ class Scanner(object):
self.qatracker, self.repo_settings.repoman_settings, 
self.repo_settings, self.portdb, self.vcs_settings)
self.status_check = VCSStatus(self.vcs_settings, self.qatracker)
self.fetchcheck = FetchChecks(
-   self.qatracker, self.repo_settings.repoman_settings, 
self.repo_settings, self.portdb, self.vcs_settings)
+   self.qatracker, self.repo_settings, self.portdb, 
self.vcs_settings)
self.pkgmeta = PkgMetadata(self.options, self.qatracker, 
self.repo_settings.repoman_settings)
self.thirdparty = 
ThirdPartyMirrors(self.repo_settings.repoman_settings, self.qatracker)
self.use_flag_checks = USEFlagChecks(self.qatracker, uselist)



[gentoo-commits] proj/portage:master commit in: pym/repoman/checks/ebuilds/

2015-09-24 Thread Brian Dolbec
commit: beb0b8ffa83e9d754909823a49e160b1873fdd74
Author: Brian Dolbec  gentoo  org>
AuthorDate: Thu Sep 24 15:19:30 2015 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Thu Sep 24 15:23:10 2015 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=beb0b8ff

repoman/checks/ebuilds/fetches.py: Remove the incorrectly cached digests

The digests were incorrectly being cached.  
At this point in the operation the digests must be loaded each time since they 
are for a 
different pkg.

 pym/repoman/checks/ebuilds/fetches.py | 26 +++---
 1 file changed, 11 insertions(+), 15 deletions(-)

diff --git a/pym/repoman/checks/ebuilds/fetches.py 
b/pym/repoman/checks/ebuilds/fetches.py
index 53ed64f..0b9c321 100644
--- a/pym/repoman/checks/ebuilds/fetches.py
+++ b/pym/repoman/checks/ebuilds/fetches.py
@@ -29,7 +29,6 @@ class FetchChecks(object):
self.repo_settings = repo_settings
self.repoman_settings = repoman_settings
self.vcs_settings = vcs_settings
-   self._digests = None
 
def check(self, xpkg, checkdir, checkdir_relative, mychanged, mynew):
'''Checks the ebuild sources and files for errors
@@ -38,7 +37,7 @@ class FetchChecks(object):
@param checkdir: string, directory path
@param checkdir_relative: repolevel determined path
'''
-   self.checkdir = checkdir
+   _digests = self.digests(checkdir)
fetchlist_dict = portage.FetchlistDict(
checkdir, self.repoman_settings, self.portdb)
myfiles_all = []
@@ -64,11 +63,11 @@ class FetchChecks(object):
# produce a valid error elsewhere, such as 
"SRC_URI.syntax"
# or "ebuild.sytax".
myfiles_all = set(myfiles_all)
-   for entry in self.digests:
+   for entry in _digests:
if entry not in myfiles_all:

self.qatracker.add_error("digest.unused", checkdir + "::" + entry)
for entry in myfiles_all:
-   if entry not in self.digests:
+   if entry not in _digests:

self.qatracker.add_error("digest.missing", checkdir + "::" + entry)
del myfiles_all
 
@@ -125,14 +124,11 @@ class FetchChecks(object):
"file.name",
"%s/files/%s: char '%s'" % 
(checkdir, y, y[index]))
 
-   @property
-   def digests(self):
-   '''Property function, returns the saved digests or
-   loads them for the test'''
-   if not self._digests:
-   mf = 
self.repoman_settings.repositories.get_repo_for_location(
-   os.path.dirname(os.path.dirname(self.checkdir)))
-   mf = mf.load_manifest(self.checkdir, 
self.repoman_settings["DISTDIR"])
-   self._digests = mf.getTypeDigests("DIST")
-   del mf
-   return self._digests
+   def digests(self, checkdir):
+   '''Returns the freshly loaded digests'''
+   mf = self.repoman_settings.repositories.get_repo_for_location(
+   os.path.dirname(os.path.dirname(checkdir)))
+   mf = mf.load_manifest(checkdir, 
self.repoman_settings["DISTDIR"])
+   _digests = mf.getTypeDigests("DIST")
+   del mf
+   return _digests



[gentoo-commits] proj/portage:master commit in: pym/repoman/

2015-09-24 Thread Brian Dolbec
commit: d37ad00e182a069b915f1666597a130956e139ad
Author: Brian Dolbec  gentoo  org>
AuthorDate: Thu Sep 24 15:14:53 2015 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Thu Sep 24 15:23:10 2015 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=d37ad00e

repoman/actions.py: Adjust indent in thick_manifest()

 pym/repoman/actions.py | 96 +-
 1 file changed, 48 insertions(+), 48 deletions(-)

diff --git a/pym/repoman/actions.py b/pym/repoman/actions.py
index 9dda88e..5462248 100644
--- a/pym/repoman/actions.py
+++ b/pym/repoman/actions.py
@@ -726,55 +726,55 @@ class Actions(object):
 
 
def thick_manifest(self, myupdates, myheaders, no_expansion, expansion):
-   if self.vcs_settings.vcs == 'cvs':
-   headerstring = "'\$(Header|Id).*\$'"
+   if self.vcs_settings.vcs == 'cvs':
+   headerstring = "'\$(Header|Id).*\$'"
+   elif self.vcs_settings.vcs == "svn":
+   svn_keywords = dict((k.lower(), k) for k in [
+   "Rev",
+   "Revision",
+   "LastChangedRevision",
+   "Date",
+   "LastChangedDate",
+   "Author",
+   "LastChangedBy",
+   "URL",
+   "HeadURL",
+   "Id",
+   "Header",
+   ])
+
+   for myfile in myupdates:
+
+   # for CVS, no_expansion contains files that are 
excluded from expansion
+   if self.vcs_settings.vcs == "cvs":
+   if myfile in no_expansion:
+   continue
+
+   # for SVN, expansion contains files that are included 
in expansion
elif self.vcs_settings.vcs == "svn":
-   svn_keywords = dict((k.lower(), k) for k in [
-   "Rev",
-   "Revision",
-   "LastChangedRevision",
-   "Date",
-   "LastChangedDate",
-   "Author",
-   "LastChangedBy",
-   "URL",
-   "HeadURL",
-   "Id",
-   "Header",
-   ])
-
-   for myfile in myupdates:
-
-   # for CVS, no_expansion contains files that are 
excluded from expansion
-   if self.vcs_settings.vcs == "cvs":
-   if myfile in no_expansion:
-   continue
-
-   # for SVN, expansion contains files that are 
included in expansion
-   elif self.vcs_settings.vcs == "svn":
-   if myfile not in expansion:
-   continue
-
-   # Subversion keywords are 
case-insensitive
-   # in svn:keywords properties,
-   # but case-sensitive in contents of 
files.
-   enabled_keywords = []
-   for k in expansion[myfile]:
-   keyword = 
svn_keywords.get(k.lower())
-   if keyword is not None:
-   
enabled_keywords.append(keyword)
-
-   headerstring = "'\$(%s).*\$'" % 
"|".join(enabled_keywords)
-
-   myout = repoman_getstatusoutput(
-   "egrep -q %s %s" % (headerstring, 
portage._shell_quote(myfile)))
-   if myout[0] == 0:
-   myheaders.append(myfile)
-
-   print("%s have headers that will change." % 
green(str(len(myheaders
-   print(
-   "* Files with headers will"
-   " cause the manifests to be changed and 
committed separately.")
+   if myfile not in expansion:
+   continue
+
+   # Subversion keywords are case-insensitive
+   # in svn:keywords properties,
+   

[gentoo-commits] repo/gentoo:master commit in: dev-java/jnr-unixsocket/

2015-09-24 Thread James Le Cuirot
commit: bcb30ea6b81ca973d39bfc0f901323efa2749f98
Author: James Le Cuirot  gentoo  org>
AuthorDate: Thu Sep 24 15:18:03 2015 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Thu Sep 24 15:18:45 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bcb30ea6

dev-java/jnr-unixsocket: Bump Java version to 7 as jnr-enxio also has

This relates to bug #561352. jnr-unixsocket builds with Java 6 but it
should have a Java version at least as high as its dependencies.

I have also changed the jnr-ffi SLOT to match the one used by
jnr-enxio, otherwise you end up with two conflicting versions on the
classpath. jruby (a revdep) also uses the older version but it is
masked and totally broken anyway.

This demands a revbump but should still be safe enough to commit
straight to stable.

Package-Manager: portage-2.2.20.1

 .../{jnr-unixsocket-0.6.ebuild => jnr-unixsocket-0.6-r1.ebuild}   | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-java/jnr-unixsocket/jnr-unixsocket-0.6.ebuild 
b/dev-java/jnr-unixsocket/jnr-unixsocket-0.6-r1.ebuild
similarity index 86%
rename from dev-java/jnr-unixsocket/jnr-unixsocket-0.6.ebuild
rename to dev-java/jnr-unixsocket/jnr-unixsocket-0.6-r1.ebuild
index e1a54cc..f5936f9 100644
--- a/dev-java/jnr-unixsocket/jnr-unixsocket-0.6.ebuild
+++ b/dev-java/jnr-unixsocket/jnr-unixsocket-0.6-r1.ebuild
@@ -19,20 +19,20 @@ LICENSE="Apache-2.0"
 CDEPEND="dev-java/jnr-constants:0
dev-java/jnr-enxio:0
dev-java/jnr-posix:3.0
-   dev-java/jnr-ffi:0.7"
+   dev-java/jnr-ffi:2"
 
 DEPEND="${CDEPEND}
-   >=virtual/jdk-1.6"
+   >=virtual/jdk-1.7"
 
 RDEPEND="${CDEPEND}
-   >=virtual/jre-1.6"
+   >=virtual/jre-1.7"
 
 java_prepare() {
cp "${FILESDIR}"/${P}-build.xml build.xml || die
 }
 
 JAVA_ANT_REWRITE_CLASSPATH="true"
-EANT_GENTOO_CLASSPATH="jnr-constants,jnr-enxio,jnr-ffi-0.7,jnr-posix-3.0"
+EANT_GENTOO_CLASSPATH="jnr-constants,jnr-enxio,jnr-ffi-2,jnr-posix-3.0"
 
 src_install() {
java-pkg_newjar target/${P}.jar ${PN}.jar



[gentoo-commits] repo/gentoo:master commit in: kde-apps/kgpg/

2015-09-24 Thread Michael Palimaka
commit: 4e3f55ac5f453675d6a3eec9d820c475251bac56
Author: Michael Palimaka  gentoo  org>
AuthorDate: Thu Sep 24 15:08:20 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Thu Sep 24 15:08:47 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e3f55ac

kde-apps/kgpg: version bump

Package-Manager: portage-2.2.20.1

 kde-apps/kgpg/Manifest|  1 +
 kde-apps/kgpg/kgpg-15.08.1.ebuild | 30 ++
 2 files changed, 31 insertions(+)

diff --git a/kde-apps/kgpg/Manifest b/kde-apps/kgpg/Manifest
index 4f3c98f..bd95b18 100644
--- a/kde-apps/kgpg/Manifest
+++ b/kde-apps/kgpg/Manifest
@@ -1 +1,2 @@
+DIST kgpg-15.08.1.tar.xz 810096 SHA256 
8a64e4993d3ae774378aab74abd1727178a83ba726b4d0eaca0e83d3ccba481c SHA512 
a691d7bff1c979c2e3cefa2f56fc0a77453ff0d84e8cbeb4747d6eb160fd9c05a93d80d004ba95af4f0f47bd3dddbf395f8670c5ef3fd572bce5895eb17f918a
 WHIRLPOOL 
59e04a14af2c93fd6827cea4c650048d0e6d4be311ff0e980ab3ec58014e9613cecfe81a8f664404c7ee013ecf50215a8e7b839055b7655edb807ae5dde06dd0
 DIST kgpg-4.14.3.tar.xz 807076 SHA256 
bc7d37a935c5b1bb6b0f32abc62635d17ac8fbadc2ed6cfd314af71aee2d0c46 SHA512 
692b713cc307da9de20d3e2f249271a33d87386e44feeab89e29c419f8cb66aa20717ac296678006f2f1a48d444fa300be1a15a3d810f3541bc54c10836a1a1d
 WHIRLPOOL 
2ebb68847e4af57fccb4f8c85690a74fef2a23bdf7407044abb28c4de18542bb4a4ad2fa817dbde8f497f5c6f2d3a701052bb9e63b0a8a7bd8fe166e1f3c77a5

diff --git a/kde-apps/kgpg/kgpg-15.08.1.ebuild 
b/kde-apps/kgpg/kgpg-15.08.1.ebuild
new file mode 100644
index 000..b3c9c94
--- /dev/null
+++ b/kde-apps/kgpg/kgpg-15.08.1.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+KDE_HANDBOOK="optional"
+KDE_SELINUX_MODULE="gpg"
+inherit kde4-base
+
+DESCRIPTION="KDE gpg keyring manager"
+HOMEPAGE="https://www.kde.org/applications/utilities/kgpg
+https://utils.kde.org/projects/kgpg";
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="debug"
+
+DEPEND="
+   $(add_kdebase_dep kdepimlibs)
+"
+RDEPEND="${DEPEND}
+   app-crypt/gnupg
+"
+
+pkg_postinst() {
+   kde4-base_pkg_postinst
+
+   if ! has_version 'app-crypt/dirmngr' && ! has_version 
'>=app-crypt/gnupg-2.1'; then
+   elog "For improved key search functionality, install 
app-crypt/dirmngr."
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: net-misc/htpdate/

2015-09-24 Thread Lars Wendler
commit: ad43fa9c369f986c4067175aefb88c048624b7ea
Author: Lars Wendler  gentoo  org>
AuthorDate: Thu Sep 24 15:02:27 2015 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Thu Sep 24 15:02:42 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad43fa9c

net-misc/htpdate: Bump to version 1.1.2

Package-Manager: portage-2.2.21
Signed-off-by: Lars Wendler  gentoo.org>

 net-misc/htpdate/Manifest |  1 +
 net-misc/htpdate/htpdate-1.1.2.ebuild | 41 +++
 2 files changed, 42 insertions(+)

diff --git a/net-misc/htpdate/Manifest b/net-misc/htpdate/Manifest
index 4212b08..e8c9fa8 100644
--- a/net-misc/htpdate/Manifest
+++ b/net-misc/htpdate/Manifest
@@ -1,2 +1,3 @@
 DIST htpdate-1.0.7.tar.gz 16848 SHA256 
ba0b3f7b42306f2e2e146624785f80cc472eac9e7885007df50af0e1a21735c4 SHA512 
83408545d1d2cc794f62efaf348e54cc2ce47dfb27815710e92d0c7d34360a581e637ef82424030c8a4fcabcc9a07205518fac08f426b37c7c4519cfa6696360
 WHIRLPOOL 
e2e949d20b8d4afecd6c3c09aefa203417b16a4061e6d2fe05cf5e37d0dc736604ed5e1f0d8c03146eb3b5031ffc3ed8ec3213171513e6140a098bd1d5f268fb
 DIST htpdate-1.1.1.tar.gz 13303 SHA256 
6fca5f13e323d4bf8e4a2ae20dfaae527b745b3cf19e9aeccfe2f211e7cc7a7a SHA512 
bfc463692b7c4fb962c0b6f34e6063d2506e383490e6d6972b7da3740fbd0b835a07cddd3470bea29f8d2770160fba5f87fd3d768cb27a1f04ea9f5a39522918
 WHIRLPOOL 
7faa7ce4dd96d48a2a7ddc20a61a7230d9658042f3c9e39229ade41a312d78a0d5827a3348b2671de36fdbcb0aa35873fa5bee6e0c13218e94fbc23f3f2730b7
+DIST htpdate-1.1.2.tar.gz 13330 SHA256 
6babf7db26f8734aa245a261ebdd6b92989ed4ffd1db40f8480b33d4150488d2 SHA512 
d20234b3f04499b77f7050522c23dc6c3d8fc27a22368e8553340eec76ce35964f7f9808a0e047840fcdbb1e61dfd9fa9e9cdb5d88c42d5f8970a62203fde424
 WHIRLPOOL 
82b8e088c4e45264abbd2a35c25729cb6afc3f3d8e47d11bfc06b0bb7f89eb85a8a5c475dcbf1c9007288248eef351291184f17d0b615fe937f7277f431b3c05

diff --git a/net-misc/htpdate/htpdate-1.1.2.ebuild 
b/net-misc/htpdate/htpdate-1.1.2.ebuild
new file mode 100644
index 000..d700482
--- /dev/null
+++ b/net-misc/htpdate/htpdate-1.1.2.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit readme.gentoo toolchain-funcs unpacker
+
+DESCRIPTION="Synchronize local workstation with time offered by remote 
webservers"
+HOMEPAGE="http://www.vervest.org/fiki/bin/view/HTP/DownloadC";
+SRC_URI="http://www.vervest.org/htp/archive/c/${P}.tar.gz";
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh ~x86 
~amd64-linux ~x86-linux"
+
+DEPEND=""
+RDEPEND=""
+
+DOC_CONTENTS="If you would like to run htpdate as a daemon, set
+appropriate http servers in /etc/conf.d/htpdate!"
+
+src_prepare() {
+   # Use more standard adjtimex() to fix uClibc builds.
+   sed -i 's:ntp_adjtime:adjtimex:g' htpdate.[8c] || die
+}
+
+src_compile() {
+   emake CFLAGS="-Wall ${CFLAGS} ${LDFLAGS}" CC="$(tc-getCC)"
+}
+
+src_install() {
+   dosbin htpdate
+   doman htpdate.8
+   dodoc README Changelog
+
+   newconfd "${FILESDIR}"/htpdate.conf htpdate
+   newinitd "${FILESDIR}"/htpdate.init-r1 htpdate
+
+   readme.gentoo_create_doc
+}



[gentoo-commits] repo/gentoo:master commit in: kde-base/libkgreeter/

2015-09-24 Thread Michael Palimaka
commit: bcd779b7470efe5a2b4d3a207bbadfd70a0e7d23
Author: Michael Palimaka  gentoo  org>
AuthorDate: Thu Sep 24 15:01:31 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Thu Sep 24 15:01:59 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bcd779b7

kde-base/libkgreeter: relax blocker.

Gentoo-bug: 561376

Package-Manager: portage-2.2.20.1

 kde-base/libkgreeter/libkgreeter-4.11.19.ebuild | 2 +-
 kde-base/libkgreeter/libkgreeter-4.11.22.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/kde-base/libkgreeter/libkgreeter-4.11.19.ebuild 
b/kde-base/libkgreeter/libkgreeter-4.11.19.ebuild
index 64be188..b8af065 100644
--- a/kde-base/libkgreeter/libkgreeter-4.11.19.ebuild
+++ b/kde-base/libkgreeter/libkgreeter-4.11.19.ebuild
@@ -13,7 +13,7 @@ KEYWORDS="amd64 ~arm ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
 IUSE="debug"
 
 DEPEND="
-   !

[gentoo-commits] dev/jmbsvicetto:master commit in: www-apps/drupal/

2015-09-24 Thread Jorge Manuel B. S. Vicetto
commit: 219bd9f463fc48ffcf17ffb06538333d54235dbf
Author: Jorge Manuel B. S. Vicetto (jmbsvicetto)  gentoo 
 org>
AuthorDate: Thu Sep 24 14:40:46 2015 +
Commit: Jorge Manuel B. S. Vicetto  gentoo  org>
CommitDate: Thu Sep 24 14:40:46 2015 +
URL:https://gitweb.gentoo.org/dev/jmbsvicetto.git/commit/?id=219bd9f4

Drupal version bump to 8.0.0_beta15.

Signed-off-by: Jorge Manuel B. S. Vicetto (jmbsvicetto)  
gentoo.org>

 www-apps/drupal/Manifest| 2 +-
 .../drupal/{drupal-8.0.0_beta14.ebuild => drupal-8.0.0_beta15.ebuild}   | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-apps/drupal/Manifest b/www-apps/drupal/Manifest
index 0cc5895..3ca613b 100644
--- a/www-apps/drupal/Manifest
+++ b/www-apps/drupal/Manifest
@@ -1,5 +1,5 @@
 DIST drupal-6.37.tar.gz 1112775 SHA256 
e3db44fdeefa9c4b3edf31816a8cfcaffe300986dbebdc22769ec739d3296d5d SHA512 
4895221c7fb2913618490722629888a4862f28633a49ba5363a0393974941c68d07a3e255d6f380d7d97d0aa3251a76c03d5d0f0ab4c968af301a1207d8d35a0
 WHIRLPOOL 
8d7a0576fba31f2fcf9035755d3ef9a521461d9b3dfab57eb8871fe66038f4056b690a84513bf61a639b4c5f8126fa5180734542b0036f5d089afb0cb2abfecd
 DIST drupal-7.39.tar.gz 3249343 SHA256 
afad72be4389e2a2dfc630fc8582277ed185d884101978890139e0d14e4ddbab SHA512 
5884ec66eac5340272201d524e7346e9bb92772c5451d9d47571e7ba8aac11d3533dabfdbba32339e7fdc691efa6fd22bbb4137633e337f148a2bd0678d3b65e
 WHIRLPOOL 
d2b6fc6e481f8c5966d0ad226fe423851e5c9d91f53283e934903e882485a0a04cbe442aa102424fc8eb9eb9303650aec8db6396b3e8bd7fccd68fb1c2eff25d
 DIST drupal-8.0.0-beta11.tar.gz 10500627 SHA256 
0c7a6b84dc6019bc5afcf3066aa9c2a8a5cd4147a03d48314728156cc434bda1 SHA512 
bdcac51cb8379711245d7e15a3bc879634c6c88af6799525f7dda3cd5be799193a3e4151d902569f9f008d89f309f7bca2180ebca4cb1f21bce87ac744461748
 WHIRLPOOL 
44b1a8670c5dfbf9d5208e5c5dc75a3e4c4a674befa1bd64b10409989d72da01e8e0420d9dc1e7d39b633fa49b80166c0e812f2deeb13304f4850fc777e1b36b
-DIST drupal-8.0.0-beta14.tar.gz 10493263 SHA256 
0dc8e4c9b3ed2f4f9f50741a6d014278d85d98abea3d71a9936b46c2b8249978 SHA512 
09a0c718519518a2536a1b72fbb5c79ee4a63fa453d9669539e87f5c70b9cbb43c42c433174dccd1bcf920a22e7766ca30df88663d6356c709ad958dcd8e968a
 WHIRLPOOL 
62cdae3ed75fd383bca76a9c64a081d0c0a12e7591f2acbd568bf3de00ca7b1e7ffa2fdc126f625dbf07cc88d42f50b9d16b5a6d572b5afe1a8d8616a395b610
+DIST drupal-8.0.0-beta15.tar.gz 11273890 SHA256 
b708f98366138c9de7fc34024c497b44a925eb145f7b4af3688a618ac7326029 SHA512 
74ea9d0703163fadca78e41214d99b5dbdb52e864b2c2306657b5eb5ffdb094698913e0d1e891fc912cb4efd74108ba35d9ea69e36a61a2cd76c9bfefb9e0386
 WHIRLPOOL 
1dfa66bc396871936bc3e5ec88005830525a9c9e436cc4c2da752e8df535c2f44d30400fc7b91d21da5154b8682f9a7d70f977a1c4174601ceaecc13bc97c14c
 DIST drupal-8.0.0-beta4.tar.gz 9555745 SHA256 
e50aecb08f79c1a11f0a9858dc493d7cc3a0b6293ed74155c5d89fd7ad4441ac SHA512 
0b021f4be93059e67b29e05ff61f33c9c18b4cb27d9b0bcac7525e5c7f02b3b0f187c08602a1961fdddc9fbea2e83e5be73190e13011bd0048461ba30338a04c
 WHIRLPOOL 
33ceebf2a657c8de398de51f550b9ad3e3739560a86ecb8356e8deeedae80ab95c76770fb11280d4908ef55e6191e9a2bfae44c71ef85ea2423752c8466fa753

diff --git a/www-apps/drupal/drupal-8.0.0_beta14.ebuild 
b/www-apps/drupal/drupal-8.0.0_beta15.ebuild
similarity index 100%
rename from www-apps/drupal/drupal-8.0.0_beta14.ebuild
rename to www-apps/drupal/drupal-8.0.0_beta15.ebuild



[gentoo-commits] repo/gentoo:master commit in: dev-python/rpy/

2015-09-24 Thread Agostino Sarubbo
commit: b514c1e696b63ab80063314ad6a37019e7a49bde
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Sep 24 14:26:49 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Sep 24 14:26:49 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b514c1e6

dev-python/rpy: amd64 stable wrt bug #556300

Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="amd64"

 dev-python/rpy/rpy-2.6.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/rpy/rpy-2.6.2.ebuild b/dev-python/rpy/rpy-2.6.2.ebuild
index c2ae3ef..2cb784c 100644
--- a/dev-python/rpy/rpy-2.6.2.ebuild
+++ b/dev-python/rpy/rpy-2.6.2.ebuild
@@ -19,7 +19,7 @@ SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
 
 LICENSE="AGPL-3 GPL-2 LGPL-2.1 MPL-1.1"
 SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~x86 ~amd64-linux ~x86-linux"
 IUSE="test"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-lang/R/

2015-09-24 Thread Agostino Sarubbo
commit: b47f304859a7678a002ec17141f702cab521e7f6
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Sep 24 14:00:46 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Sep 24 14:00:46 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b47f3048

dev-lang/R: amd64 stable wrt bug #556422

Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="amd64"

 dev-lang/R/R-3.2.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/R/R-3.2.2.ebuild b/dev-lang/R/R-3.2.2.ebuild
index a0087cb..9a460e7 100644
--- a/dev-lang/R/R-3.2.2.ebuild
+++ b/dev-lang/R/R-3.2.2.ebuild
@@ -15,7 +15,7 @@ SRC_URI="
 
 LICENSE="|| ( GPL-2 GPL-3 ) LGPL-2.1"
 SLOT="0"
-KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux 
~x86-linux ~x64-macos"
+KEYWORDS="amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux 
~x86-linux ~x64-macos"
 IUSE="cairo doc icu java jpeg lapack minimal nls openmp perl png prefix 
profile readline static-libs tiff tk X"
 REQUIRED_USE="png? ( || ( cairo X ) ) jpeg? ( || ( cairo X ) ) tiff? ( || ( 
cairo X ) )"
 



[gentoo-commits] repo/gentoo:master commit in: mail-filter/pypolicyd-spf/

2015-09-24 Thread Agostino Sarubbo
commit: 1193c1dc3fd1280af52dfb991fe4543c8afb3e97
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Sep 24 14:00:40 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Sep 24 14:00:40 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1193c1dc

mail-filter/pypolicyd-spf: amd64 stable wrt bug #529492

Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="amd64"

 mail-filter/pypolicyd-spf/pypolicyd-spf-1.3.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mail-filter/pypolicyd-spf/pypolicyd-spf-1.3.2-r1.ebuild 
b/mail-filter/pypolicyd-spf/pypolicyd-spf-1.3.2-r1.ebuild
index cf6af6a..6b19c9f 100644
--- a/mail-filter/pypolicyd-spf/pypolicyd-spf-1.3.2-r1.ebuild
+++ b/mail-filter/pypolicyd-spf/pypolicyd-spf-1.3.2-r1.ebuild
@@ -21,7 +21,7 @@ SRC_URI="mirror://pypi/p/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE=""
 
 DEPEND=">=dev-python/pyspf-2.0.9[${PYTHON_USEDEP}]"



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

2015-09-24 Thread Agostino Sarubbo
commit: 96463f3b4dcd2873fddd74d5b7c12dad01d223cb
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Sep 24 13:50:37 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Sep 24 13:50:37 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96463f3b

dev-libs/nettle: amd64 stable wrt bug #560724

Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="amd64"

 dev-libs/nettle/nettle-3.1.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/nettle/nettle-3.1.1.ebuild 
b/dev-libs/nettle/nettle-3.1.1.ebuild
index 9e81515..ed59032 100644
--- a/dev-libs/nettle/nettle-3.1.1.ebuild
+++ b/dev-libs/nettle/nettle-3.1.1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="http://www.lysator.liu.se/~nisse/archive/${P}.tar.gz";
 
 LICENSE="|| ( LGPL-3 LGPL-2.1 )"
 SLOT="0/6" # subslot = libnettle soname version
-KEYWORDS="alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~x86-solaris"
 IUSE="doc +gmp neon static-libs test cpu_flags_x86_aes"
 
 DEPEND="gmp? ( dev-libs/gmp:0[${MULTILIB_USEDEP}] )"



[gentoo-commits] repo/gentoo:master commit in: net-libs/nghttp2/

2015-09-24 Thread Agostino Sarubbo
commit: e084fd950de66127c5d2ebe7e84604c3bfeb2e4c
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Sep 24 13:50:43 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Sep 24 13:50:43 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e084fd95

net-libs/nghttp2: amd64 stable wrt bug #558734

Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="amd64"

 net-libs/nghttp2/nghttp2-1.0.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/nghttp2/nghttp2-1.0.5.ebuild 
b/net-libs/nghttp2/nghttp2-1.0.5.ebuild
index 8d624c7..5a7fbeb 100644
--- a/net-libs/nghttp2/nghttp2-1.0.5.ebuild
+++ b/net-libs/nghttp2/nghttp2-1.0.5.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} ==  ]] ; then
inherit git-2
 else

SRC_URI="https://github.com/tatsuhiro-t/nghttp2/releases/download/v${PV}/${P}.tar.gz";
-   KEYWORDS="alpha ~amd64 ~arm arm64 hppa ia64 m68k ~mips ~ppc ppc64 s390 
sh ~sparc ~x86"
+   KEYWORDS="alpha amd64 ~arm arm64 hppa ia64 m68k ~mips ~ppc ppc64 s390 
sh ~sparc ~x86"
 fi
 
 DESCRIPTION="HTTP/2 C Library"



[gentoo-commits] repo/gentoo:master commit in: media-libs/libraw/

2015-09-24 Thread Agostino Sarubbo
commit: 084432256eb6102aa545bd6e924e9c4c4056e8c6
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Sep 24 13:50:32 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Sep 24 13:50:32 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08443225

media-libs/libraw: amd64 stable wrt bug #558186

Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="amd64"

 media-libs/libraw/libraw-0.16.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/libraw/libraw-0.16.2.ebuild 
b/media-libs/libraw/libraw-0.16.2.ebuild
index 8f4c2bc..be8e6a8 100644
--- a/media-libs/libraw/libraw-0.16.2.ebuild
+++ b/media-libs/libraw/libraw-0.16.2.ebuild
@@ -23,7 +23,7 @@ SRC_URI="http://www.libraw.org/data/${MY_P}.tar.gz
 # http://www.libraw.org/data/LICENSE.LibRaw.pdf
 LICENSE="LGPL-2.1 CDDL GPL-2 GPL-3"
 SLOT="0/10" # subslot = libraw soname version
-KEYWORDS="alpha ~amd64 arm hppa ~ia64 ~mips ~ppc ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ~ppc ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux"
 IUSE="demosaic examples jpeg jpeg2k +lcms openmp"
 
 RDEPEND="jpeg? ( >=virtual/jpeg-0-r2:0[${MULTILIB_USEDEP}] )



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

2015-09-24 Thread Agostino Sarubbo
commit: 05c21aea57bed78d49757738521d92474279ed94
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Sep 24 13:50:49 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Sep 24 13:50:49 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05c21aea

app-office/texmaker: amd64 stable wrt bug #542702

Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="amd64"

 app-office/texmaker/texmaker-4.4.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-office/texmaker/texmaker-4.4.1-r1.ebuild 
b/app-office/texmaker/texmaker-4.4.1-r1.ebuild
index e21ad26..575521d 100644
--- a/app-office/texmaker/texmaker-4.4.1-r1.ebuild
+++ b/app-office/texmaker/texmaker-4.4.1-r1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="http://www.xm1math.net/texmaker/${P}.tar.bz2";
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
 IUSE="+qt4 qt5"
 
 REQUIRED_USE="^^ ( qt4 qt5 )"



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

2015-09-24 Thread Agostino Sarubbo
commit: c49cd8aba6d231e17f2f3d9fdd1163d471b202a9
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Sep 24 13:42:13 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Sep 24 13:42:13 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c49cd8ab

dev-libs/hidapi: amd64 stable wrt bug #558744

Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="amd64"

 dev-libs/hidapi/hidapi-0.8.0_rc1_p20140719.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/hidapi/hidapi-0.8.0_rc1_p20140719.ebuild 
b/dev-libs/hidapi/hidapi-0.8.0_rc1_p20140719.ebuild
index dd690ab..c13f469 100644
--- a/dev-libs/hidapi/hidapi-0.8.0_rc1_p20140719.ebuild
+++ b/dev-libs/hidapi/hidapi-0.8.0_rc1_p20140719.ebuild
@@ -24,7 +24,7 @@ 
SRC_URI="https://github.com/signal11/${PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}
 
 LICENSE="|| ( BSD GPL-3 HIDAPI )"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm ~ppc ~ppc64 ~x86"
 IUSE="doc fox static-libs"
 
 RDEPEND="virtual/libusb:1[${MULTILIB_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: games-engines/odamex/

2015-09-24 Thread Agostino Sarubbo
commit: 72c6faed86efd3caa7ea2857e90e5a42469a5b5d
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Sep 24 13:42:18 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Sep 24 13:42:18 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72c6faed

games-engines/odamex: amd64 stable wrt bug #518190

Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="amd64"

 games-engines/odamex/odamex-0.7.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/games-engines/odamex/odamex-0.7.0.ebuild 
b/games-engines/odamex/odamex-0.7.0.ebuild
index 48999b4..bd9cd67 100644
--- a/games-engines/odamex/odamex-0.7.0.ebuild
+++ b/games-engines/odamex/odamex-0.7.0.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="mirror://sourceforge/${PN}/Odamex/${PV}/${MY_P}.tar.bz2"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="dedicated +odalaunch master portmidi server"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-ml/menhir/

2015-09-24 Thread Alexis Ballier
commit: 740815bf1c844bd42465e50d0dce1a7519533c21
Author: Alexis Ballier  gentoo  org>
AuthorDate: Thu Sep 24 13:33:22 2015 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Thu Sep 24 13:33:29 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=740815bf

dev-ml/menhir: version bump.

Package-Manager: portage-2.2.21

 dev-ml/menhir/Manifest   |  1 +
 dev-ml/menhir/menhir-20150921.ebuild | 36 
 2 files changed, 37 insertions(+)

diff --git a/dev-ml/menhir/Manifest b/dev-ml/menhir/Manifest
index 941e3e9..8a45793 100644
--- a/dev-ml/menhir/Manifest
+++ b/dev-ml/menhir/Manifest
@@ -1,2 +1,3 @@
 DIST menhir-20141215.tar.gz 556231 SHA256 
2592967c123a31e1b6566ab9f6034e7a0a709d57d547097f05693baf96a46fa4 SHA512 
1fff6b987016be37eaca0bb3fea7ec0c498c1448d076e991e1555718cf760318a8d710622af930175f234f49f8dd767ce62cc880c33458958ceeb1bda4817243
 WHIRLPOOL 
28e6018ce127b28e362aaf1fe030240253cb2ffb0a52d9b34e81c71882ae517376aa3df6c5d19c6db13819260f667f5708522486a74bc498bad3dac11378b56c
 DIST menhir-20150914.tar.gz 626388 SHA256 
a3057ec0867377ceaf9caecf69d331440d9c0fb70e39ade619a7856aa67d535d SHA512 
7717fcc63ae938eb7c8ae3a5e7d279a357735c0e3b062d9060cc70d3016640e1427d25ee8182e3e034c678d9b0e706fe219f707dd4d14689457f321b135b1fef
 WHIRLPOOL 
d66204d753d0677f9eb51d09641f9148077e62caa7ae042665697036457724040950bbb190df6bd029224a0607a67cac8f4597927b4f667ca09091e07d09f7bd
+DIST menhir-20150921.tar.gz 627213 SHA256 
4d8588dc847ef33f3af64d30e19bc791a57f61cda2b7086267bc8743ea4a2622 SHA512 
a3100819cef6577c2806ebab765c966c11acd9fc9de061e64ef1bf4ca8b0076b0b878f12abf951a3c5882216f173936f2899444ca4126c477fa9cbef231c6b4e
 WHIRLPOOL 
cec19d79e7b79ea3dc2159673082931c8c360a865078d0af0bdd152fd1e481adb7218caf7f404005e6653493d04fda7659c1aa3b7527bbf8e0b75f284ff676d0

diff --git a/dev-ml/menhir/menhir-20150921.ebuild 
b/dev-ml/menhir/menhir-20150921.ebuild
new file mode 100644
index 000..a8d4107
--- /dev/null
+++ b/dev-ml/menhir/menhir-20150921.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit findlib
+
+DESCRIPTION="LR(1) parser generator for the OCaml language"
+HOMEPAGE="http://gallium.inria.fr/~fpottier/menhir/";
+SRC_URI="http://gallium.inria.fr/~fpottier/menhir/${P}.tar.gz";
+
+LICENSE="QPL-1.0 LGPL-2-with-linking-exception"
+SLOT="0/${PV}"
+KEYWORDS="~amd64 ~x86"
+IUSE="examples +ocamlopt"
+
+DEPEND=">=dev-lang/ocaml-4.02:=[ocamlopt?]"
+RDEPEND="${DEPEND}"
+
+src_configure() {
+   if ! use ocamlopt ; then
+   export TARGET=byte
+   fi
+}
+
+src_compile() {
+   emake PREFIX="${EPREFIX}"/usr -j1
+}
+
+src_install() {
+   findlib_src_preinst
+   emake PREFIX="${ED}"/usr docdir="${ED}"/usr/share/doc/"${PF}" $(use 
examples || echo "DOCS=manual.pdf") install
+   use examples && docompress -x /usr/share/doc/${PF}/demos
+   dodoc AUTHORS CHANGES
+}



[gentoo-commits] repo/gentoo:master commit in: sci-chemistry/icm/, profiles/

2015-09-24 Thread Dion Moult
commit: bc526e00e7eabab2eac99146198ee66bee2b9b56
Author: Dion Moult  gentoo  org>
AuthorDate: Thu Sep 24 13:08:16 2015 +
Commit: Dion Moult  gentoo  org>
CommitDate: Thu Sep 24 13:09:26 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc526e00

profiles: mask net-chemistry/icm-browser for removal. Bug #466724

 profiles/package.mask   | 5 +
 sci-chemistry/icm/icm-3.7.2e.ebuild | 3 +--
 sci-chemistry/icm/icm-3.7.3b.ebuild | 3 +--
 3 files changed, 7 insertions(+), 4 deletions(-)

diff --git a/profiles/package.mask b/profiles/package.mask
index 7e74104..e33d510 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -31,6 +31,11 @@
 #--- END OF EXAMPLES ---
 
 # Dion Moult  (24 Sep 2015)
+# Masked for removal in 30 days. Bug #466724
+# Heavily out of date. Use sci-chemistry/icm
+sci-chemistry/icm-browser
+
+# Dion Moult  (24 Sep 2015)
 # Masked for removal in 30 days. Bug #216244
 # Outdated and does not compile due to upstream bug.
 dev-ada/polyorb

diff --git a/sci-chemistry/icm/icm-3.7.2e.ebuild 
b/sci-chemistry/icm/icm-3.7.2e.ebuild
index bee2194..61b440f 100644
--- a/sci-chemistry/icm/icm-3.7.2e.ebuild
+++ b/sci-chemistry/icm/icm-3.7.2e.ebuild
@@ -26,8 +26,7 @@ REQUIRED_USE="^^ (
 
 RESTRICT="fetch"
 
-DEPEND="!sci-chemistry/icm-browser
-   app-arch/unzip
+DEPEND="app-arch/unzip
vim-syntax? ( || ( app-editors/vim app-editors/gvim ) )
amd64? (
64bit? (

diff --git a/sci-chemistry/icm/icm-3.7.3b.ebuild 
b/sci-chemistry/icm/icm-3.7.3b.ebuild
index bee2194..61b440f 100644
--- a/sci-chemistry/icm/icm-3.7.3b.ebuild
+++ b/sci-chemistry/icm/icm-3.7.3b.ebuild
@@ -26,8 +26,7 @@ REQUIRED_USE="^^ (
 
 RESTRICT="fetch"
 
-DEPEND="!sci-chemistry/icm-browser
-   app-arch/unzip
+DEPEND="app-arch/unzip
vim-syntax? ( || ( app-editors/vim app-editors/gvim ) )
amd64? (
64bit? (



[gentoo-commits] repo/gentoo:master commit in: net-misc/connman/

2015-09-24 Thread Agostino Sarubbo
commit: 99af522298e2dda0eb904f122f2a605b4d44aadc
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Sep 24 13:19:28 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Sep 24 13:19:28 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99af5222

net-misc/connman: amd64 stable wrt bug #547806

Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="amd64"

 net-misc/connman/connman-1.29.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/connman/connman-1.29.ebuild 
b/net-misc/connman/connman-1.29.ebuild
index 6f2182f..990c24f 100644
--- a/net-misc/connman/connman-1.29.ebuild
+++ b/net-misc/connman/connman-1.29.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://kernel/linux/network/${PN}/${P}.tar.xz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 arm ppc ppc64 ~x86"
+KEYWORDS="amd64 arm ppc ppc64 ~x86"
 IUSE="bluetooth debug doc examples +ethernet l2tp ofono openvpn openconnect 
pptp policykit tools vpnc +wifi wispr"
 
 RDEPEND=">=dev-libs/glib-2.16



[gentoo-commits] repo/gentoo:master commit in: app-backup/burp/

2015-09-24 Thread Agostino Sarubbo
commit: 6a26c5af54a352d289e41dbb39506a82e08f094a
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Sep 24 13:19:10 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Sep 24 13:19:10 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a26c5af

app-backup/burp: amd64 stable wrt bug #545808

Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="amd64"

 app-backup/burp/burp-1.3.48.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-backup/burp/burp-1.3.48.ebuild 
b/app-backup/burp/burp-1.3.48.ebuild
index 977d752..5d18b62 100644
--- a/app-backup/burp/burp-1.3.48.ebuild
+++ b/app-backup/burp/burp-1.3.48.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2
 
 LICENSE="AGPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="acl afs ipv6 nls tcpd xattr"
 
 DEPEND="



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

2015-09-24 Thread Agostino Sarubbo
commit: 04c37fc2437259330a35ebe1bf5d4a2fd27b302c
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Sep 24 13:19:22 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Sep 24 13:19:22 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04c37fc2

sys-apps/rng-tools: amd64 stable wrt bug #555100

Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="amd64"

 sys-apps/rng-tools/rng-tools-5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/rng-tools/rng-tools-5.ebuild 
b/sys-apps/rng-tools/rng-tools-5.ebuild
index 994966e..c836432 100644
--- a/sys-apps/rng-tools/rng-tools-5.ebuild
+++ b/sys-apps/rng-tools/rng-tools-5.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/gkernel/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ppc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~ia64 ppc ~x86"
 IUSE="selinux"
 
 DEPEND="dev-libs/libgcrypt:0



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

2015-09-24 Thread Agostino Sarubbo
commit: 4a498a5923ff6582b3ffbadffe13322bd98b3c8f
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Sep 24 13:19:16 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Sep 24 13:19:16 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a498a59

media-gfx/enblend: amd64 stable wrt bug #555258

Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="amd64"

 media-gfx/enblend/enblend-4.1.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-gfx/enblend/enblend-4.1.3.ebuild 
b/media-gfx/enblend/enblend-4.1.3.ebuild
index 132ec8d..bdfd50e 100644
--- a/media-gfx/enblend/enblend-4.1.3.ebuild
+++ b/media-gfx/enblend/enblend-4.1.3.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://sourceforge/enblend/${MY_P}.tar.gz"
 
 LICENSE="GPL-2 VIGRA"
 SLOT="0"
-KEYWORDS="~amd64 ppc ~x86"
+KEYWORDS="amd64 ppc ~x86"
 IUSE="debug doc gpu image-cache openmp"
 
 REQUIRED_USE="openmp? ( !image-cache )"



  1   2   3   >