[gentoo-commits] repo/gentoo:master commit in: net-im/kadu/files/, profiles/, net-im/kadu/

2016-05-02 Thread Maciej Mrozowski
commit: 505fb17c5aec39716a2f19d27b25857e587ece5a
Author: Maciej Mrozowski  gentoo  org>
AuthorDate: Tue May  3 05:13:20 2016 +
Commit: Maciej Mrozowski  gentoo  org>
CommitDate: Tue May  3 05:15:05 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=505fb17c

net-im/kadu: (masked) version bump 3.0, remove now spurious inherit 'base', 
revbump 2.1 with upstream patch to port to QtQuick2.3

 net-im/kadu/Manifest   |   1 +
 .../kadu/files/kadu-2.1-port-to-QtQuick-2.3.patch  | 150 +
 net-im/kadu/kadu-0.12.3.ebuild |   2 +-
 .../kadu/{kadu-2.1.ebuild => kadu-2.1-r1.ebuild}   |  15 ++-
 net-im/kadu/kadu-2.1.ebuild|   4 +-
 net-im/kadu/{kadu-2.1.ebuild => kadu-3.0.ebuild}   |  16 +--
 profiles/package.mask  |   4 +
 7 files changed, 173 insertions(+), 19 deletions(-)

diff --git a/net-im/kadu/Manifest b/net-im/kadu/Manifest
index a50a33d..45211ec 100644
--- a/net-im/kadu/Manifest
+++ b/net-im/kadu/Manifest
@@ -1,2 +1,3 @@
 DIST kadu-0.12.3.tar.bz2 5106482 SHA256 
d607bbd0d00b01bfb70dd15f15c8be4076896a935041651e67a3887ad12ab8a8 SHA512 
0aeaec9ac3ce5a1860571721e307a8d5e6657a30780125e21d153901ce5f2870ba3ea6ebc272bbb6f35a56ed9a24127abfc8f25b9eb88d01ecf9c931fa5c851c
 WHIRLPOOL 
0a2b1b9684577d95027b9107fc51e8a8f290b7ed38a18bf282f9589eb3dd5ca7a9fa61b088e2fb2be8d4d16e6d4e72d766476e36f7d65cc55a2d5efae53bb8ca
 DIST kadu-2.1.tar.bz2 6013519 SHA256 
9f8092756d4a870c1ecb016c0cba2c833e1697b3eb7e9bf51813b1f0a541ffb8 SHA512 
3f0e38aefbaf15f357ae8232b1364deb5954a2464895fafa0a324ad99c7d14c6ba7495bed51d628e04c30bbaaf8e49412c70f01a40f360406c1afba2384a
 WHIRLPOOL 
10b214ca8d1964054918dc0e1b85bf1157d2496e3ad340958302083a0374ac4fb7b6ac96741637f3847ac06dd9c322b0e529f9c204b9ebc6658157f7b7c2b8a2
+DIST kadu-3.0.tar.bz2 8002501 SHA256 
3f5c0a66a33d1244acd981aef5c268d94185956754ca62e0c4295f7b50700366 SHA512 
bc01a2355a53827a9139e460316fcb7ef4bca598964caa11868fe2634140ab8499f7845f0dd64aff0fdc0ba52ee27349f32793a8e2ad9d97b17e6f9a36eddb83
 WHIRLPOOL 
bd743cc4d99d5ebae95e7230dc132e0f246a0b94dd02caa4f5fa92bd8ef3ec40905812c3711c009f56b9e61779fbbb0ec47e5f9b278e90c3665c363e7f865326

diff --git a/net-im/kadu/files/kadu-2.1-port-to-QtQuick-2.3.patch 
b/net-im/kadu/files/kadu-2.1-port-to-QtQuick-2.3.patch
new file mode 100644
index 000..cdfd549
--- /dev/null
+++ b/net-im/kadu/files/kadu-2.1-port-to-QtQuick-2.3.patch
@@ -0,0 +1,150 @@
+From 6912d8fc02b5ff4d6675656d6c00506c48fdd940 Mon Sep 17 00:00:00 2001
+From: Rafał Przemysław Malinowski 
+Date: Sat, 21 Mar 2015 01:32:11 +0100
+Subject: [PATCH] gui: ported open chat with from qml to quick 2.3
+
+Signed-off-by: Rafał Przemysław Malinowski 

+---
+ cmake/KaduMacros.cmake  |  2 +-
+ kadu-core/CMakeLists.txt|  2 +-
+ kadu-core/gui/windows/open-chat-with/open-chat-with.cpp | 11 ++-
+ kadu-core/gui/windows/open-chat-with/open-chat-with.h   |  4 ++--
+ tests/CMakeLists.txt|  2 +-
+ varia/qml/Contact.qml   |  2 +-
+ varia/qml/ContactsGridView.qml  |  2 +-
+ varia/qml/openChatWith.qml  |  2 +-
+ 8 files changed, 14 insertions(+), 13 deletions(-)
+
+diff --git a/cmake/KaduMacros.cmake b/cmake/KaduMacros.cmake
+index ac9e94e..0a7712a 100644
+--- a/cmake/KaduMacros.cmake
 b/cmake/KaduMacros.cmake
+@@ -183,7 +183,7 @@ function (kadu_plugin KADU_PLUGIN_NAME)
+   endforeach ()
+   endif ()
+ 
+-  qt5_use_modules (${KADU_PLUGIN_NAME} LINK_PRIVATE Core Gui Widgets 
Network Xml WebKit WebKitWidgets Declarative)
++  qt5_use_modules (${KADU_PLUGIN_NAME} LINK_PRIVATE Core Gui Network Qml 
Quick QuickWidgets WebKit WebKitWidgets Widgets Xml)
+   if (UNIX AND NOT APPLE)
+   qt5_use_modules (${KADU_PLUGIN_NAME} LINK_PRIVATE DBus)
+   endif ()
+diff --git a/kadu-core/CMakeLists.txt b/kadu-core/CMakeLists.txt
+index be52339..46317d1 100644
+--- a/kadu-core/CMakeLists.txt
 b/kadu-core/CMakeLists.txt
+@@ -205,7 +205,7 @@ if (FAST_LINKING)
+   endif ()
+ endif ()
+ 
+-qt5_use_modules (libkadu LINK_PRIVATE Core Gui Widgets Xml Network WebKit 
WebKitWidgets Declarative)
++qt5_use_modules (libkadu LINK_PRIVATE Core Gui Network Qml Quick QuickWidgets 
WebKit WebKitWidgets Widgets Xml)
+ if (UNIX AND NOT APPLE)
+   qt5_use_modules (libkadu LINK_PRIVATE DBus X11Extras)
+ endif ()
+diff --git a/kadu-core/gui/windows/open-chat-with/open-chat-with.cpp 
b/kadu-core/gui/windows/open-chat-with/open-chat-with.cpp
+index 2c14c3f..9ff00d1 100644
+--- a/kadu-core/gui/windows/open-chat-with/open-chat-with.cpp
 b/kadu-core/gui/windows/open-chat-with/open-chat-with.cpp
+@@ -21,8 +21,9 @@
+  * along with this program. If not, see 

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

2016-05-02 Thread Mike Frysinger
commit: ce30220ac33c02c8cd1e6ad87f57026e6fd4b0b0
Author: Mike Frysinger  gentoo  org>
AuthorDate: Tue May  3 04:36:07 2016 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Tue May  3 04:36:39 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce30220a

app-misc/pax-utils: set up PKG_CONFIG for cross-compiling #581774

 app-misc/pax-utils/pax-utils-1.1.1.ebuild | 2 +-
 app-misc/pax-utils/pax-utils-1.1.2.ebuild | 2 +-
 app-misc/pax-utils/pax-utils-1.1.3.ebuild | 2 +-
 app-misc/pax-utils/pax-utils-1.1.4.ebuild | 2 +-
 app-misc/pax-utils/pax-utils-1.1.5.ebuild | 2 +-
 app-misc/pax-utils/pax-utils-1.1.6.ebuild | 2 +-
 app-misc/pax-utils/pax-utils-1.1.ebuild   | 2 +-
 7 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/app-misc/pax-utils/pax-utils-1.1.1.ebuild 
b/app-misc/pax-utils/pax-utils-1.1.1.ebuild
index 3feaa68..ae89957 100644
--- a/app-misc/pax-utils/pax-utils-1.1.1.ebuild
+++ b/app-misc/pax-utils/pax-utils-1.1.1.ebuild
@@ -41,7 +41,7 @@ src_configure() {
then
econf $(use_with caps) $(use_with debug) $(use_with python) 
$(use_with seccomp)
else
-   tc-export CC
+   tc-export CC PKG_CONFIG
fi
 }
 

diff --git a/app-misc/pax-utils/pax-utils-1.1.2.ebuild 
b/app-misc/pax-utils/pax-utils-1.1.2.ebuild
index fc79319..b1f66ee 100644
--- a/app-misc/pax-utils/pax-utils-1.1.2.ebuild
+++ b/app-misc/pax-utils/pax-utils-1.1.2.ebuild
@@ -41,7 +41,7 @@ src_configure() {
then
econf $(use_with caps) $(use_with debug) $(use_with python) 
$(use_with seccomp)
else
-   tc-export CC
+   tc-export CC PKG_CONFIG
fi
 }
 

diff --git a/app-misc/pax-utils/pax-utils-1.1.3.ebuild 
b/app-misc/pax-utils/pax-utils-1.1.3.ebuild
index fc79319..b1f66ee 100644
--- a/app-misc/pax-utils/pax-utils-1.1.3.ebuild
+++ b/app-misc/pax-utils/pax-utils-1.1.3.ebuild
@@ -41,7 +41,7 @@ src_configure() {
then
econf $(use_with caps) $(use_with debug) $(use_with python) 
$(use_with seccomp)
else
-   tc-export CC
+   tc-export CC PKG_CONFIG
fi
 }
 

diff --git a/app-misc/pax-utils/pax-utils-1.1.4.ebuild 
b/app-misc/pax-utils/pax-utils-1.1.4.ebuild
index fc79319..b1f66ee 100644
--- a/app-misc/pax-utils/pax-utils-1.1.4.ebuild
+++ b/app-misc/pax-utils/pax-utils-1.1.4.ebuild
@@ -41,7 +41,7 @@ src_configure() {
then
econf $(use_with caps) $(use_with debug) $(use_with python) 
$(use_with seccomp)
else
-   tc-export CC
+   tc-export CC PKG_CONFIG
fi
 }
 

diff --git a/app-misc/pax-utils/pax-utils-1.1.5.ebuild 
b/app-misc/pax-utils/pax-utils-1.1.5.ebuild
index fc79319..b1f66ee 100644
--- a/app-misc/pax-utils/pax-utils-1.1.5.ebuild
+++ b/app-misc/pax-utils/pax-utils-1.1.5.ebuild
@@ -41,7 +41,7 @@ src_configure() {
then
econf $(use_with caps) $(use_with debug) $(use_with python) 
$(use_with seccomp)
else
-   tc-export CC
+   tc-export CC PKG_CONFIG
fi
 }
 

diff --git a/app-misc/pax-utils/pax-utils-1.1.6.ebuild 
b/app-misc/pax-utils/pax-utils-1.1.6.ebuild
index a4062ef..d293af7 100644
--- a/app-misc/pax-utils/pax-utils-1.1.6.ebuild
+++ b/app-misc/pax-utils/pax-utils-1.1.6.ebuild
@@ -41,7 +41,7 @@ src_configure() {
then
econf $(use_with caps) $(use_with debug) $(use_with python) 
$(use_with seccomp)
else
-   tc-export CC
+   tc-export CC PKG_CONFIG
fi
 }
 

diff --git a/app-misc/pax-utils/pax-utils-1.1.ebuild 
b/app-misc/pax-utils/pax-utils-1.1.ebuild
index cd9bf94..a4bc7e4 100644
--- a/app-misc/pax-utils/pax-utils-1.1.ebuild
+++ b/app-misc/pax-utils/pax-utils-1.1.ebuild
@@ -40,7 +40,7 @@ src_configure() {
then
econf $(use_with caps) $(use_with python) $(use_with seccomp)
else
-   tc-export CC
+   tc-export CC PKG_CONFIG
fi
 }
 



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

2016-05-02 Thread Lars Wendler
commit: a1a488332284fe3e023cfdf1bf9d83c63330d67e
Author: Lars Wendler  gentoo  org>
AuthorDate: Tue May  3 04:22:19 2016 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Tue May  3 04:22:33 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1a48833

media-gfx/uniconvertor: Don't apply patches twice (bug #581896).

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

 media-gfx/uniconvertor/uniconvertor-2.0_pre379-r1.ebuild | 2 --
 1 file changed, 2 deletions(-)

diff --git a/media-gfx/uniconvertor/uniconvertor-2.0_pre379-r1.ebuild 
b/media-gfx/uniconvertor/uniconvertor-2.0_pre379-r1.ebuild
index 505e9e5..60562e8 100644
--- a/media-gfx/uniconvertor/uniconvertor-2.0_pre379-r1.ebuild
+++ b/media-gfx/uniconvertor/uniconvertor-2.0_pre379-r1.ebuild
@@ -33,8 +33,6 @@ PATCHES=(
)
 
 python_prepare_all() {
-   default
-
local wand
wand=$(pkg-config --libs MagickWand | sed -e "s:^ *::g" -e "s: *$::g" 
-e "s:-l:\':g" -e "s: :',:g" -e "s:$:':g" -e "s:,'$::g")
 



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

2016-05-02 Thread Ian Delaney
commit: c11639cb7c23ac4e32d884a43b9220c7b0d91563
Author: Louis Sautier  gmail  com>
AuthorDate: Mon May  2 11:44:28 2016 +
Commit: Ian Delaney  gentoo  org>
CommitDate: Tue May  3 03:41:44 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c11639cb

dev-python/feedgenerator: bump to 1.8, add py3.5, EAPI=6

Package-Manager: portage-2.2.28
Closes: https://github.com/gentoo/gentoo/pull/1393

Signed-off-by: Ian Delaney  gentoo.org>

 dev-python/feedgenerator/Manifest |  1 +
 dev-python/feedgenerator/feedgenerator-1.8.ebuild | 31 +++
 dev-python/feedgenerator/metadata.xml |  2 ++
 3 files changed, 34 insertions(+)

diff --git a/dev-python/feedgenerator/Manifest 
b/dev-python/feedgenerator/Manifest
index 0ac1127..e1c7c43 100644
--- a/dev-python/feedgenerator/Manifest
+++ b/dev-python/feedgenerator/Manifest
@@ -1,2 +1,3 @@
 DIST feedgenerator-1.6.tar.gz 21517 SHA256 
ec66b671a946381e02ee97b5f4746959c4bda960be4994ce39be5a7f5eb445fe SHA512 
6b96094209ae206be75909f2ad9a9420a06e1fa47b8a5e28db4da16c5b157014f9f8d1677edc8a7347384fe0f0a91aa4f664257adfa994a46b6dc49d9349472b
 WHIRLPOOL 
f334860efbce23b2ab9c3217f035d5f1263cc59ac7434b6be68f62b683d3b765f88f0c1566a1ef34634e167b3746720b6718577e54c47afcadd0676e115e74d5
 DIST feedgenerator-1.7.tar.gz 22155 SHA256 
5d6b0b10134ac392be0c0c3a39c0e1d7e9c17cc7894590f75981e3f497a4a60f SHA512 
359e584af7766b1a67c752df88ad67f06f9b2a6677d2e858484286b079e33b47192a5cf141fc86eb5590d86175e24d3fa1e87506773c28f6a35b2dc545520044
 WHIRLPOOL 
0d9d2b22ac0c6b31ae3b53d48e07d9707d83d895ce6b16f59ecf6d03269435d7bd88b9309673de688b09b68a120bd316b6ad51efc7d9cdc3b73882217f2fecb2
+DIST feedgenerator-1.8.tar.gz 4135643 SHA256 
c00a60ee5179c99330078f4016c39924154a34677f0b84c62556b5ebc2ad7156 SHA512 
644f75d5d6ec729c2522749db7fe7c4b0d5ad70b065fb93b255276af199a3e0c21d9ceb60e07d982a7553b7b596853677547b33b6fe21d07788a12da91022566
 WHIRLPOOL 
20473bce64263731143115249c629376a8563f8dcce68a0b62a09966ff48f9b478f813c147ee5a7e10695476c4ecd773976fca28f6210b4467fe2f1c4f55dc97

diff --git a/dev-python/feedgenerator/feedgenerator-1.8.ebuild 
b/dev-python/feedgenerator/feedgenerator-1.8.ebuild
new file mode 100644
index 000..2e3aa7d
--- /dev/null
+++ b/dev-python/feedgenerator/feedgenerator-1.8.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} pypy )
+inherit distutils-r1
+
+DESCRIPTION="Standalone version of django.utils.feedgenerator"
+HOMEPAGE="https://pypi.python.org/pypi/feedgenerator;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
+   test? ( dev-python/six[${PYTHON_USEDEP}]
+   dev-python/pytz[${PYTHON_USEDEP}] )"
+RDEPEND=""
+
+src_prepare() {
+   distutils-r1_src_prepare
+   # Allow pypy to read MANIFEST.in
+   ln -s tests_feedgenerator tests || die
+}
+
+python_test() {
+   "${PYTHON}" setup.py test
+}

diff --git a/dev-python/feedgenerator/metadata.xml 
b/dev-python/feedgenerator/metadata.xml
index ceece06..c010579 100644
--- a/dev-python/feedgenerator/metadata.xml
+++ b/dev-python/feedgenerator/metadata.xml
@@ -7,5 +7,7 @@


feedgenerator
+   getpelican/feedgenerator
+   
https://github.com/getpelican/feedgenerator/issues

 



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

2016-05-02 Thread Ian Delaney
commit: f9af292d8952293b935c70f6eba33df31c5c6609
Author: Louis Sautier  gmail  com>
AuthorDate: Mon May  2 12:51:32 2016 +
Commit: Ian Delaney  gentoo  org>
CommitDate: Tue May  3 03:41:44 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9af292d

app-text/pelican: update HOMEPAGE and metadata.xml

also trim DESCRIPTION

Package-Manager: portage-2.2.28
Closes: https://github.com/gentoo/gentoo/pull/1393

Signed-off-by: Ian Delaney  gentoo.org>

 app-text/pelican/metadata.xml | 1 +
 app-text/pelican/pelican-3.6.0.ebuild | 6 +++---
 app-text/pelican/pelican-3.6.3.ebuild | 6 +++---
 3 files changed, 7 insertions(+), 6 deletions(-)

diff --git a/app-text/pelican/metadata.xml b/app-text/pelican/metadata.xml
index ef9d3d7..74329b5 100644
--- a/app-text/pelican/metadata.xml
+++ b/app-text/pelican/metadata.xml
@@ -8,6 +8,7 @@
   
 pelican
 getpelican/pelican
+https://github.com/getpelican/pelican/issues
   
   
 Markdown support

diff --git a/app-text/pelican/pelican-3.6.0.ebuild 
b/app-text/pelican/pelican-3.6.0.ebuild
index b8b7fde..7364a69 100644
--- a/app-text/pelican/pelican-3.6.0.ebuild
+++ b/app-text/pelican/pelican-3.6.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -7,8 +7,8 @@ PYTHON_COMPAT=( python{2_7,3_3,3_4} )
 
 inherit distutils-r1
 
-DESCRIPTION="A tool to generate a static blog, with restructured text (or 
markdown) input files"
-HOMEPAGE="http://pelican.notmyidea.org/ https://pypi.python.org/pypi/pelican;
+DESCRIPTION="A tool to generate a static blog, with restructured text or 
markdown input files"
+HOMEPAGE="http://blog.getpelican.com/ https://pypi.python.org/pypi/pelican;
 SRC_URI="https://github.com/getpelican/pelican/archive/${PV}.tar.gz -> 
${P}.tar.gz"
 
 LICENSE="AGPL-3"

diff --git a/app-text/pelican/pelican-3.6.3.ebuild 
b/app-text/pelican/pelican-3.6.3.ebuild
index a16143d..d77fa36 100644
--- a/app-text/pelican/pelican-3.6.3.ebuild
+++ b/app-text/pelican/pelican-3.6.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -7,8 +7,8 @@ PYTHON_COMPAT=( python{2_7,3_3,3_4} )
 
 inherit distutils-r1
 
-DESCRIPTION="A tool to generate a static blog, with restructured text (or 
markdown) input files"
-HOMEPAGE="http://pelican.notmyidea.org/ https://pypi.python.org/pypi/pelican;
+DESCRIPTION="A tool to generate a static blog, with restructured text or 
markdown input files"
+HOMEPAGE="http://blog.getpelican.com/ https://pypi.python.org/pypi/pelican;
 SRC_URI="https://github.com/getpelican/pelican/archive/${PV}.tar.gz -> 
${P}.tar.gz"
 
 LICENSE="AGPL-3"



[gentoo-commits] repo/gentoo:master commit in: net-p2p/classified-ads/

2016-05-02 Thread Ian Delaney
commit: e57b6b19fd483bd337cfbbfdd6f18096e374b13f
Author: Antti Jarvinen  katiska  org>
AuthorDate: Mon May  2 20:12:58 2016 +
Commit: Ian Delaney  gentoo  org>
CommitDate: Tue May  3 03:41:44 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e57b6b19

net-p2p/classified-ads: v0.10 version bump - Forced update of digests in 
Manifest

Closes: https://github.com/gentoo/gentoo/pull/1327

Signed-off-by: Ian Delaney  gentoo.org>

 net-p2p/classified-ads/Manifest | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-p2p/classified-ads/Manifest b/net-p2p/classified-ads/Manifest
index 0751133..b87d10b 100644
--- a/net-p2p/classified-ads/Manifest
+++ b/net-p2p/classified-ads/Manifest
@@ -2,7 +2,7 @@ DIST classified-ads-0.07.tar.gz 2194177 SHA256 
882874da2d1610d64c952969222b9295b
 DIST classified-ads-0.07_p20150728.tar.gz 2197413 SHA256 
e8d488b6c44b198bf1150c7a33ae698887cfb345cb4473d91a5949abeb846d95 SHA512 
1cb42252ab695e90212d05144255a66b0d8dc63d8d010b5781e470a4c5e9cdf9c4dce1b9e44cba83d5fb2fef99e3d46fd5cc1b9880db69c9c163475b7e4349fc
 WHIRLPOOL 
458d3947f00709c633d652b753b7801496479f610da0d249e8e2f5f7ddecb341fb885184c027b453aa2f9db7998a74fcbd60bbb9d0bb5765b7b7e45bcdcfc2c0
 DIST classified-ads-0.09.tar.gz 2288561 SHA256 
c6c0809c269e7596386b612f0a43c705801bad71c64a23a81f763656b22db125 SHA512 
3639854cb797830f71261097ba315426be74f0dbcb5190522d50f4507d488d309c0793d1cad5bbc29bc43bd06de16392afc82172cefa766458764b4ac5b90357
 WHIRLPOOL 
7149c2772ca61a5067722f6aa5066e4dee3aec758b1998633d129cd4704723e6c633522a241cc4332dca94cac0bb59ada9a5472c750d335a764e1ff2f09c9d8f
 DIST classified-ads-0.09_p20151220.tar.gz 2288916 SHA256 
4703c8f0183248376c9a0ce220115f44940c8c82efb93082bf313f42c73e1a7f SHA512 
2a167e0bf8fe74014ae797cebb6577e481d75afbfd9a4a49587e85eadd71285f0431ca22fa0a83efde2192d792a4517fbdbfe37cbb2ae1e6ab19f6e89e1e
 WHIRLPOOL 
ee12913ae813631e711d33cc62deedc50a4e173dcb3d793757f042eae04ec63c6062e9543a42aac50164a2e68fac59030f3ac43c232fc787b9b2e7020c4c9c84
-DIST classified-ads-0.10.tar.gz 2521112 SHA256 
d3b1e3e2a47b26796e95b70d5b9d52b8a857d4e807c8a862757433ee8e384770 SHA512 
fb4e3184ef77bdc4b3299661e74a684967e644426988cfc92b4391fe8b9cb0521b1adb251e2660b74a5e7ad21850722208c48e2c5647996be95f3e8a824a57d2
 WHIRLPOOL 
0e04ffdb3e3eceb2d704a872697b64a3662ec35070e149d0bf4ecb844875793c1e69b9a9a872c2bd002d5f83d3feb513a81a7d09e4a92ab01d2de262394288e6
+DIST classified-ads-0.10.tar.gz 2527827 SHA256 
9b2f653d239e78c41505f6ee44e41cf4e176eb8aa5f4e26549e32afadf0045d7 SHA512 
54c94c799ee99b9d362cefb7587e100fac807dd2583ddad2e7e9f046823fe4f8a206cbde8b839658c0e78ad50e056faa30cda7d45de9aa518b9483e3e36910a4
 WHIRLPOOL 
b6ba9036adf8f104a58488b7eba45349cc12f0c2fa80fa370873640b0b3f2e95895136efbda6471b7188a8e5ffe9575af2fae2b676cc0a29f48860ba48ac47aa
 DIST classified-ads-graphics-0.07.tar.gz 340476 SHA256 
12bd4f581f82c4c805bbf19cc794f7462f9ec0e71358fbc1628fd872169295e2 SHA512 
c59f65f37a8e4dddb753dbcdec835e946d9de021c5273319b3cd95ef1c3343715ce4b87d76b2d96264acc791a6cced32967521c74978131bd76fbcfc37bb344d
 WHIRLPOOL 
2535170cdc4cc1d4ad2e204e85b546089b3aa404e4cee0e2ab9d094d6cda869043f24fba29d6f68b37f450ff947c13f02336e63b3236b404cbae528f801cc1ad
 DIST classified-ads-graphics-0.07_p20150728.tar.gz 340476 SHA256 
12bd4f581f82c4c805bbf19cc794f7462f9ec0e71358fbc1628fd872169295e2 SHA512 
c59f65f37a8e4dddb753dbcdec835e946d9de021c5273319b3cd95ef1c3343715ce4b87d76b2d96264acc791a6cced32967521c74978131bd76fbcfc37bb344d
 WHIRLPOOL 
2535170cdc4cc1d4ad2e204e85b546089b3aa404e4cee0e2ab9d094d6cda869043f24fba29d6f68b37f450ff947c13f02336e63b3236b404cbae528f801cc1ad
 DIST classified-ads-graphics-0.09.tar.gz 340476 SHA256 
12bd4f581f82c4c805bbf19cc794f7462f9ec0e71358fbc1628fd872169295e2 SHA512 
c59f65f37a8e4dddb753dbcdec835e946d9de021c5273319b3cd95ef1c3343715ce4b87d76b2d96264acc791a6cced32967521c74978131bd76fbcfc37bb344d
 WHIRLPOOL 
2535170cdc4cc1d4ad2e204e85b546089b3aa404e4cee0e2ab9d094d6cda869043f24fba29d6f68b37f450ff947c13f02336e63b3236b404cbae528f801cc1ad



[gentoo-commits] repo/gentoo:master commit in: net-p2p/classified-ads/

2016-05-02 Thread Ian Delaney
commit: a7a6d00357859094ff31fcbaf4eba09de9360022
Author: Antti Jarvinen  katiska  org>
AuthorDate: Tue Apr 26 20:59:19 2016 +
Commit: Ian Delaney  gentoo  org>
CommitDate: Tue May  3 03:41:44 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7a6d003

net-p2p/classified-ads: Classified ads v0.10 version bump. - changed way how 
test suite is run and fixed 2 unit tests.

Package-Manager: portage-2.2.26
Closes: https://github.com/gentoo/gentoo/pull/1327

Signed-off-by: Ian Delaney  gentoo.org>

 net-p2p/classified-ads/classified-ads-0.10.ebuild | 35 +++
 1 file changed, 23 insertions(+), 12 deletions(-)

diff --git a/net-p2p/classified-ads/classified-ads-0.10.ebuild 
b/net-p2p/classified-ads/classified-ads-0.10.ebuild
index 9ff04f5..a792705 100644
--- a/net-p2p/classified-ads/classified-ads-0.10.ebuild
+++ b/net-p2p/classified-ads/classified-ads-0.10.ebuild
@@ -5,11 +5,12 @@
 EAPI=5
 PLOCALES="en fi sv da uk"
 PLOCALE_BACKUP="en"
-inherit qt4-r2 qmake-utils
+inherit qt4-r2 qmake-utils virtualx vcs-snapshot
 
+COMMIT_ID="cd0652c52f86f6284b793f26e5362bc8fb8a7118"
 DESCRIPTION="Program for displaying classified advertisement items"
 HOMEPAGE="http://katiska.org/classified-ads/;
-SRC_URI="https://github.com/operatornormal/classified-ads/archive/${PV}.tar.gz 
-> classified-ads-${PV}.tar.gz \
+SRC_URI="https://github.com/operatornormal/classified-ads/archive/${COMMIT_ID}.tar.gz
 -> ${P}.tar.gz \

https://github.com/operatornormal/classified-ads/blob/graphics/preprocessed.tar.gz?raw=true
 \
-> classified-ads-graphics-${PV}.tar.gz"
 
@@ -37,13 +38,14 @@ DEPEND="${RDEPEND}
dev-qt/qttest:4
sys-devel/gdb:0
doc? ( app-doc/doxygen[dot] )
-   test? ( dev-libs/libgcrypt:0 )
+   test? ( dev-libs/libgcrypt:0
+   ${VIRTUALX_DEPEND} )
"
 
 src_prepare() {
# preprocessed graphics are unpacked into wrong directory
# so lets move them into correct location:
-   mv ../ui/* ui/ || die
+   mv ../classified-ads-graphics-${PV}/* ui/ || die
# then just run qmake
qt4-r2_src_prepare
 }
@@ -57,8 +59,19 @@ src_compile() {
 }
 
 src_test() {
-   cd test || die "test suite missing"
-   "$(qt4_get_bindir)"/qmake || die "test suite configure failed"
+   virtx test_suite
+}
+
+src_install() {
+   emake install INSTALL_ROOT="${D}" DESTDIR="${D}"
+   use doc && dodoc -r doc/doxygen.generated/html/
+}
+
+# virtualx requires a command that returns number, and does not just die:
+test_suite() {
+   cd test || return -1
+   echo qmake
+   "$(qt4_get_bindir)"/qmake || return -2
emake
# test suite will create files under $HOME, set $HOME to point to
# safe location, ideas stolen from
@@ -70,11 +83,9 @@ src_test() {
result=$?
export HOME=$BACKUP_HOME
if [ $result != "0" ]; then
-   die "test suite failed with error code " `echo $result`
+   echo "test suite failed with error code " `echo $result`
+   return $result
+   else
+   return 0
fi
 }
-
-src_install() {
-   emake install INSTALL_ROOT="${D}" DESTDIR="${D}"
-   use doc && dodoc -r doc/doxygen.generated/html/
-}



[gentoo-commits] repo/gentoo:master commit in: net-p2p/classified-ads/

2016-05-02 Thread Ian Delaney
commit: 3ae2461de34ec9ec29c797260e54f8c6e11808a7
Author: Antti Jarvinen  katiska  org>
AuthorDate: Fri Apr 22 19:11:59 2016 +
Commit: Ian Delaney  gentoo  org>
CommitDate: Tue May  3 03:41:44 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ae2461d

net-p2p/classified-ads: version bump: v0.10

Package-Manager: portage-2.2.26
Closes: https://github.com/gentoo/gentoo/pull/1327

Signed-off-by: Ian Delaney  gentoo.org>

 net-p2p/classified-ads/Manifest   |  2 +
 net-p2p/classified-ads/classified-ads-0.10.ebuild | 80 +++
 2 files changed, 82 insertions(+)

diff --git a/net-p2p/classified-ads/Manifest b/net-p2p/classified-ads/Manifest
index 355c768..0751133 100644
--- a/net-p2p/classified-ads/Manifest
+++ b/net-p2p/classified-ads/Manifest
@@ -2,7 +2,9 @@ DIST classified-ads-0.07.tar.gz 2194177 SHA256 
882874da2d1610d64c952969222b9295b
 DIST classified-ads-0.07_p20150728.tar.gz 2197413 SHA256 
e8d488b6c44b198bf1150c7a33ae698887cfb345cb4473d91a5949abeb846d95 SHA512 
1cb42252ab695e90212d05144255a66b0d8dc63d8d010b5781e470a4c5e9cdf9c4dce1b9e44cba83d5fb2fef99e3d46fd5cc1b9880db69c9c163475b7e4349fc
 WHIRLPOOL 
458d3947f00709c633d652b753b7801496479f610da0d249e8e2f5f7ddecb341fb885184c027b453aa2f9db7998a74fcbd60bbb9d0bb5765b7b7e45bcdcfc2c0
 DIST classified-ads-0.09.tar.gz 2288561 SHA256 
c6c0809c269e7596386b612f0a43c705801bad71c64a23a81f763656b22db125 SHA512 
3639854cb797830f71261097ba315426be74f0dbcb5190522d50f4507d488d309c0793d1cad5bbc29bc43bd06de16392afc82172cefa766458764b4ac5b90357
 WHIRLPOOL 
7149c2772ca61a5067722f6aa5066e4dee3aec758b1998633d129cd4704723e6c633522a241cc4332dca94cac0bb59ada9a5472c750d335a764e1ff2f09c9d8f
 DIST classified-ads-0.09_p20151220.tar.gz 2288916 SHA256 
4703c8f0183248376c9a0ce220115f44940c8c82efb93082bf313f42c73e1a7f SHA512 
2a167e0bf8fe74014ae797cebb6577e481d75afbfd9a4a49587e85eadd71285f0431ca22fa0a83efde2192d792a4517fbdbfe37cbb2ae1e6ab19f6e89e1e
 WHIRLPOOL 
ee12913ae813631e711d33cc62deedc50a4e173dcb3d793757f042eae04ec63c6062e9543a42aac50164a2e68fac59030f3ac43c232fc787b9b2e7020c4c9c84
+DIST classified-ads-0.10.tar.gz 2521112 SHA256 
d3b1e3e2a47b26796e95b70d5b9d52b8a857d4e807c8a862757433ee8e384770 SHA512 
fb4e3184ef77bdc4b3299661e74a684967e644426988cfc92b4391fe8b9cb0521b1adb251e2660b74a5e7ad21850722208c48e2c5647996be95f3e8a824a57d2
 WHIRLPOOL 
0e04ffdb3e3eceb2d704a872697b64a3662ec35070e149d0bf4ecb844875793c1e69b9a9a872c2bd002d5f83d3feb513a81a7d09e4a92ab01d2de262394288e6
 DIST classified-ads-graphics-0.07.tar.gz 340476 SHA256 
12bd4f581f82c4c805bbf19cc794f7462f9ec0e71358fbc1628fd872169295e2 SHA512 
c59f65f37a8e4dddb753dbcdec835e946d9de021c5273319b3cd95ef1c3343715ce4b87d76b2d96264acc791a6cced32967521c74978131bd76fbcfc37bb344d
 WHIRLPOOL 
2535170cdc4cc1d4ad2e204e85b546089b3aa404e4cee0e2ab9d094d6cda869043f24fba29d6f68b37f450ff947c13f02336e63b3236b404cbae528f801cc1ad
 DIST classified-ads-graphics-0.07_p20150728.tar.gz 340476 SHA256 
12bd4f581f82c4c805bbf19cc794f7462f9ec0e71358fbc1628fd872169295e2 SHA512 
c59f65f37a8e4dddb753dbcdec835e946d9de021c5273319b3cd95ef1c3343715ce4b87d76b2d96264acc791a6cced32967521c74978131bd76fbcfc37bb344d
 WHIRLPOOL 
2535170cdc4cc1d4ad2e204e85b546089b3aa404e4cee0e2ab9d094d6cda869043f24fba29d6f68b37f450ff947c13f02336e63b3236b404cbae528f801cc1ad
 DIST classified-ads-graphics-0.09.tar.gz 340476 SHA256 
12bd4f581f82c4c805bbf19cc794f7462f9ec0e71358fbc1628fd872169295e2 SHA512 
c59f65f37a8e4dddb753dbcdec835e946d9de021c5273319b3cd95ef1c3343715ce4b87d76b2d96264acc791a6cced32967521c74978131bd76fbcfc37bb344d
 WHIRLPOOL 
2535170cdc4cc1d4ad2e204e85b546089b3aa404e4cee0e2ab9d094d6cda869043f24fba29d6f68b37f450ff947c13f02336e63b3236b404cbae528f801cc1ad
 DIST classified-ads-graphics-0.09_p20151220.tar.gz 340476 SHA256 
12bd4f581f82c4c805bbf19cc794f7462f9ec0e71358fbc1628fd872169295e2 SHA512 
c59f65f37a8e4dddb753dbcdec835e946d9de021c5273319b3cd95ef1c3343715ce4b87d76b2d96264acc791a6cced32967521c74978131bd76fbcfc37bb344d
 WHIRLPOOL 
2535170cdc4cc1d4ad2e204e85b546089b3aa404e4cee0e2ab9d094d6cda869043f24fba29d6f68b37f450ff947c13f02336e63b3236b404cbae528f801cc1ad
+DIST classified-ads-graphics-0.10.tar.gz 340476 SHA256 
12bd4f581f82c4c805bbf19cc794f7462f9ec0e71358fbc1628fd872169295e2 SHA512 
c59f65f37a8e4dddb753dbcdec835e946d9de021c5273319b3cd95ef1c3343715ce4b87d76b2d96264acc791a6cced32967521c74978131bd76fbcfc37bb344d
 WHIRLPOOL 
2535170cdc4cc1d4ad2e204e85b546089b3aa404e4cee0e2ab9d094d6cda869043f24fba29d6f68b37f450ff947c13f02336e63b3236b404cbae528f801cc1ad

diff --git a/net-p2p/classified-ads/classified-ads-0.10.ebuild 
b/net-p2p/classified-ads/classified-ads-0.10.ebuild
new file mode 100644
index 000..9ff04f5
--- /dev/null
+++ b/net-p2p/classified-ads/classified-ads-0.10.ebuild
@@ -0,0 +1,80 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+PLOCALES="en fi sv da uk"
+PLOCALE_BACKUP="en"
+inherit qt4-r2 qmake-utils
+

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

2016-05-02 Thread Ian Delaney
commit: 71d3f5fd003758cf77e3f3e3845b9ecc947a670d
Author: Louis Sautier  gmail  com>
AuthorDate: Mon May  2 12:58:59 2016 +
Commit: Ian Delaney  gentoo  org>
CommitDate: Tue May  3 03:41:44 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71d3f5fd

app-text/pelican: add support to py3.5

Add build / install of docs, uncomment & update test phase, bump EAPI to 6

Package-Manager: portage-2.2.28
Closes: https://github.com/gentoo/gentoo/pull/1393

Signed-off-by: Ian Delaney  gentoo.org>

 app-text/pelican/pelican-3.6.3.ebuild | 35 ---
 1 file changed, 24 insertions(+), 11 deletions(-)

diff --git a/app-text/pelican/pelican-3.6.3.ebuild 
b/app-text/pelican/pelican-3.6.3.ebuild
index d77fa36..e655459 100644
--- a/app-text/pelican/pelican-3.6.3.ebuild
+++ b/app-text/pelican/pelican-3.6.3.ebuild
@@ -2,8 +2,8 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI=5
-PYTHON_COMPAT=( python{2_7,3_3,3_4} )
+EAPI=6
+PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} )
 
 inherit distutils-r1
 
@@ -14,7 +14,9 @@ 
SRC_URI="https://github.com/getpelican/pelican/archive/${PV}.tar.gz -> ${P}.tar.
 LICENSE="AGPL-3"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="examples markdown"
+IUSE="doc examples markdown test"
+# Tests fail for this release but are fixed upstream
+RESTRICT="test"
 
 DEPEND=">=dev-python/feedgenerator-1.6[${PYTHON_USEDEP}]
>=dev-python/jinja-2.7[${PYTHON_USEDEP}]
@@ -25,19 +27,30 @@ DEPEND=">=dev-python/feedgenerator-1.6[${PYTHON_USEDEP}]
dev-python/blinker[${PYTHON_USEDEP}]
>=dev-python/six-1.4[${PYTHON_USEDEP}]
dev-python/python-dateutil[${PYTHON_USEDEP}]
-   markdown? ( dev-python/markdown[${PYTHON_USEDEP}] )"
+   doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
+   markdown? ( dev-python/markdown[${PYTHON_USEDEP}] )
+   test? (
+   dev-python/nose[${PYTHON_USEDEP}]
+   dev-python/markdown[${PYTHON_USEDEP}]
+   )"
 RDEPEND=""
 
 DOCS=( README.rst )
 
+python_compile_all() {
+   use doc && emake -C docs html
+}
+
 python_install_all() {
-   use examples && local EXAMPLES=( samples/. )
+   use doc && local HTML_DOCS=( docs/_build/html/. )
+   if use examples; then
+   insinto "/usr/share/doc/${PF}"
+   docompress -x "/usr/share/doc/${PF}/samples"
+   doins -r samples
+   fi
distutils-r1_python_install_all
 }
 
-# no tests: tests/content not in tarball for 2.8.1
-# for 3.0, should be based on tox (refer to virtualenvwrapper)
-
-#python_test() {
-#  esetup.py test
-#}
+python_test() {
+   nosetests || die "Testing failed with ${EPYTHON}"
+}



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xystray/

2016-05-02 Thread Ian Delaney
commit: 96716104e738cab290591086809f3b6b7c638970
Author: Ian Delaney  gentoo  org>
AuthorDate: Tue May  3 01:13:08 2016 +
Commit: Ian Delaney  gentoo  org>
CommitDate: Tue May  3 03:41:44 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96716104

x11-misc/xystray: edit metadata.xml to preferred format

Package-Manager: portage-2.2.28

 x11-misc/xystray/metadata.xml | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/x11-misc/xystray/metadata.xml b/x11-misc/xystray/metadata.xml
index 969bb1d..321f445 100644
--- a/x11-misc/xystray/metadata.xml
+++ b/x11-misc/xystray/metadata.xml
@@ -1,13 +1,13 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   proxy-ma...@gentoo.org
-   Gentoo Proxy Maintainers Project
-   

-   marek.sz...@cern.ch
-   Marek Szuba
+   marek.sz...@cern.ch
+Marek Szuba
Proxied maintainer; set to assignee in all 
bugs

+   
+proxy-ma...@gentoo.org
+Gentoo Proxy Maintainers Project
+   
 



[gentoo-commits] repo/gentoo:master commit in: net-p2p/classified-ads/

2016-05-02 Thread Ian Delaney
commit: 37e876bc29f2c811383c3d0fdc8d7478ecab9578
Author: Antti Jarvinen  katiska  org>
AuthorDate: Thu Apr 28 16:19:32 2016 +
Commit: Ian Delaney  gentoo  org>
CommitDate: Tue May  3 03:41:44 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37e876bc

net-p2p/classified-ads: v0.10 version bump. Changes dependency qt4->qt5, has 
EAPI=6.

Package-Manager: portage-2.2.26
Closes: https://github.com/gentoo/gentoo/pull/1327

Signed-off-by: Ian Delaney  gentoo.org>

 net-p2p/classified-ads/classified-ads-0.10.ebuild | 30 ---
 1 file changed, 16 insertions(+), 14 deletions(-)

diff --git a/net-p2p/classified-ads/classified-ads-0.10.ebuild 
b/net-p2p/classified-ads/classified-ads-0.10.ebuild
index a792705..d7f75da 100644
--- a/net-p2p/classified-ads/classified-ads-0.10.ebuild
+++ b/net-p2p/classified-ads/classified-ads-0.10.ebuild
@@ -2,10 +2,10 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI=5
+EAPI=6
 PLOCALES="en fi sv da uk"
 PLOCALE_BACKUP="en"
-inherit qt4-r2 qmake-utils virtualx vcs-snapshot
+inherit qmake-utils virtualx vcs-snapshot
 
 COMMIT_ID="cd0652c52f86f6284b793f26e5362bc8fb8a7118"
 DESCRIPTION="Program for displaying classified advertisement items"
@@ -21,37 +21,40 @@ KEYWORDS="~amd64 ~x86"
 IUSE="debug doc test"
 
 RDEPEND="dev-libs/openssl:0
-   dev-libs/qjson
>=net-libs/libnatpmp-20130911
<=net-libs/libnatpmp-20140401-r1
>=net-libs/miniupnpc-1.8
sys-apps/file
sys-devel/gettext
-   dev-qt/qtcore:4[ssl]
-   dev-qt/qtsql:4[sqlite]
-   dev-qt/qtgui:4[debug?]
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5[ssl]
+   dev-qt/qtwidgets:5
+   dev-qt/qtsql:5[sqlite]
+   dev-qt/qtmultimedia:5[widgets]
dev-qt/qt-mobility[multimedia]
-   dev-qt/qtmultimedia:4
+   dev-qt/qtprintsupport:5
media-libs/opus"
 
 DEPEND="${RDEPEND}
-   dev-qt/qttest:4
+   dev-qt/qttest:5
sys-devel/gdb:0
doc? ( app-doc/doxygen[dot] )
test? ( dev-libs/libgcrypt:0
-   ${VIRTUALX_DEPEND} )
-   "
+   ${VIRTUALX_DEPEND} )"
 
 src_prepare() {
# preprocessed graphics are unpacked into wrong directory
# so lets move them into correct location:
mv ../classified-ads-graphics-${PV}/* ui/ || die
+   # possible patches
+   eapply_user
# then just run qmake
-   qt4-r2_src_prepare
+   eqmake5
 }
 
 src_compile() {
-   qt4-r2_src_compile
+   emake
if use doc; then
cd doc || die
doxygen || die
@@ -70,8 +73,7 @@ src_install() {
 # virtualx requires a command that returns number, and does not just die:
 test_suite() {
cd test || return -1
-   echo qmake
-   "$(qt4_get_bindir)"/qmake || return -2
+   eqmake5 || return -2
emake
# test suite will create files under $HOME, set $HOME to point to
# safe location, ideas stolen from



[gentoo-commits] repo/gentoo:master commit in: games-strategy/warzone2100/

2016-05-02 Thread Michael Sterrett
commit: 5ab4565badb17f16fc20edaae878b5a6cd62f52c
Author: Michael Sterrett  gentoo  org>
AuthorDate: Mon May  2 19:28:16 2016 +
Commit: Michael Sterrett  gentoo  org>
CommitDate: Tue May  3 00:24:46 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ab4565b

games-strategy/warzone2100: version bump

Package-Manager: portage-2.2.26

 games-strategy/warzone2100/Manifest|   1 +
 .../warzone2100/warzone2100-3.1.5.ebuild   | 102 +
 2 files changed, 103 insertions(+)

diff --git a/games-strategy/warzone2100/Manifest 
b/games-strategy/warzone2100/Manifest
index 354b68f..a0d8e61 100644
--- a/games-strategy/warzone2100/Manifest
+++ b/games-strategy/warzone2100/Manifest
@@ -1,3 +1,4 @@
 DIST warzone2100-3.1.2.tar.xz 86232636 SHA256 
e33b0c89b981acda4ca2b473e105510caaecd0a0c6648ae22262f4b561566f1b SHA512 
55046ebb661ccc948b426dd07b116173bce70221a94c55fbe0897b3ad2137e22af6163476a72c4f1a7e00eed3a04f53eb1f2243d64491b48467c67928992ae87
 WHIRLPOOL 
0d2cc9a09e1118a9afad6fae88682a93fc0622df22f30cedb097cff670329b1a820d04df65538585e92bc0017e3790b1026bf228ad77a8fbb69c423f85d7eb64
 DIST warzone2100-3.1.3.tar.xz 86234856 SHA256 
b8389036070eb7eb15b4649ba7dc6b7c27ded46323115b07d987815e8d33ffb2 SHA512 
f16d7ad26ac9af3d31e2995917fbe93e40dfcad071824bf23e78d4d3599c692e1009c5e4e4e424a41350aa382ca0a27094b654b521757e43c6c9ece61a2f3d19
 WHIRLPOOL 
59156961286d8bb1a59fccff92410256548a685be3ee5ca980da49775d3161c315189eadd0b7a6aa6d62ee5dcf036db2c49f0c6d4934ec22dd2b214f66428287
+DIST warzone2100-3.1.5.tar.xz 86236328 SHA256 
21aacc3e475d17338cf7a57aefe4517868822a8167fb6c291f6f6f3b454ca442 SHA512 
5d35d314a0fd6df7d52be634e010567f92b7ede617e9dc41523680dc4f4019a9afb9d0660bdd1ac908df70bdbca5e7696730b0861ad764aaea6ef851cf598fca
 WHIRLPOOL 
e510cc06de299db2ad79943f199c89fcd6408d6554f1da12529379a23defa7f7521275502cc699cd6fefd2f0dc5fab64e6a049bcf54abda0e8da2229d696
 DIST warzone2100-videos-2.2.wz 571937134 SHA256 
142ae905be288cca33357a49f42b884c190e828fc0b1b1773ded5dff774f41a3 SHA512 
ca1a1af51296afdaca137114821508c5783f077090e665eae0f6df895855f57c43f84434706309e819417f5f35d1c649bd14e96dc9fbbb1252d30a4f9a223cf6
 WHIRLPOOL 
167e39a896081d75415810cdaa9c00ce3fa4062db1ef2b4f6f164beb9c1a1d3fd34cd474880521b75e4580f4496b246586d9270219e1cfe8e7740d1f7af35ebe

diff --git a/games-strategy/warzone2100/warzone2100-3.1.5.ebuild 
b/games-strategy/warzone2100/warzone2100-3.1.5.ebuild
new file mode 100644
index 000..8adc9c8
--- /dev/null
+++ b/games-strategy/warzone2100/warzone2100-3.1.5.ebuild
@@ -0,0 +1,102 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+inherit toolchain-funcs eutils versionator gnome2-utils games
+
+MY_PV=$(get_version_component_range -2)
+VIDEOS_PV=2.2
+VIDEOS_P=${PN}-videos-${VIDEOS_PV}.wz
+DESCRIPTION="3D real-time strategy game"
+HOMEPAGE="http://wz2100.net/;
+SRC_URI="mirror://sourceforge/warzone2100/${P}.tar.xz
+   videos? ( 
mirror://sourceforge/warzone2100/warzone2100/Videos/${VIDEOS_PV}/high-quality-en/sequences.wz
 -> ${VIDEOS_P} )"
+
+LICENSE="GPL-2+ CC-BY-SA-3.0 public-domain"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+# upstream requested debug support
+IUSE="debug nls qt4 videos"
+
+# TODO: unbundle miniupnpc and quesoglc
+# quesoglc-0.7.2 is buggy: http://developer.wz2100.net/ticket/2828
+RDEPEND=">=dev-games/physfs-2[zip]
+   dev-libs/fribidi
+   media-libs/fontconfig
+   media-libs/freetype:2
+   media-libs/glew:=
+   media-libs/libogg
+   media-libs/libpng:0
+   media-libs/libtheora
+   media-libs/libvorbis
+   media-libs/openal
+   sys-libs/zlib
+   virtual/glu
+   virtual/opengl
+   x11-libs/libX11
+   x11-libs/libXrandr
+   dev-qt/qtcore:4
+   dev-qt/qtscript:4
+   nls? ( virtual/libintl )
+   qt4? (
+   dev-qt/qtgui:4
+   dev-qt/qtopengl:4
+   )
+   !qt4? ( media-libs/libsdl[opengl,video,X] )"
+DEPEND="${RDEPEND}
+   app-arch/zip
+   virtual/pkgconfig
+   nls? ( sys-devel/gettext )"
+RDEPEND="${RDEPEND}
+   media-fonts/dejavu"
+
+src_prepare() {
+   sed -i -e 's/#top_builddir/top_builddir/' po/Makevars || die
+}
+
+src_configure() {
+   egamesconf \
+   --docdir=/usr/share/doc/${PF} \
+   --localedir=/usr/share/locale \
+   --with-distributor="Gentoo ${PF}" \
+   --with-icondir=/usr/share/icons/hicolor/128x128/apps \
+   --with-applicationdir=/usr/share/applications \
+   $(use_enable debug debug relaxed) \
+   $(use_enable nls) \
+   --with-backend=$(usex qt4 "qt" "sdl")
+}
+
+src_compile() {
+   emake AR="$(tc-getAR)"
+}
+
+src_install() {
+   default
+   rm -f "${D}"/usr/share/doc/${PF}/COPYING*
+   if use videos ; then
+   insinto "${GAMES_DATADIR}"/${PN}
+   newins 

[gentoo-commits] repo/gentoo:master commit in: net-nds/ypserv/

2016-05-02 Thread Austin English
commit: bc851043c6ccda2ae8a021990e6ef15f55d90290
Author: Austin English  gentoo  org>
AuthorDate: Tue May  3 00:01:55 2016 +
Commit: Austin English  gentoo  org>
CommitDate: Tue May  3 00:01:55 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc851043

net-nds/ypserv: remove old ebuild

Package-Manager: portage-2.2.26

 net-nds/ypserv/ypserv-2.26.ebuild | 77 ---
 1 file changed, 77 deletions(-)

diff --git a/net-nds/ypserv/ypserv-2.26.ebuild 
b/net-nds/ypserv/ypserv-2.26.ebuild
deleted file mode 100644
index 8eaa642..000
--- a/net-nds/ypserv/ypserv-2.26.ebuild
+++ /dev/null
@@ -1,77 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="4"
-
-inherit autotools
-
-DESCRIPTION="Network Information Service server"
-HOMEPAGE="http://www.linux-nis.org/nis/;
-SRC_URI="mirror://kernel/linux/utils/net/NIS/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc ppc64 x86"
-IUSE="slp"
-
-DEPEND=">=sys-libs/gdbm-1.8.0
-slp? ( net-libs/openslp )"
-RDEPEND="${DEPEND}
-|| ( net-nds/rpcbind net-nds/portmap )"
-
-src_prepare() {
-   # The configure script does not provide a command-line flag to control 
usage
-   # of slp. Use a brutal method in case we need to disable it.
-   if ! use slp; then
-   sed -i -e 's/USE_SLP=1/USE_SLP=0/g' configure.in || die
-   eautoreconf
-   fi
-}
-
-src_install() {
-   default
-   dodoc AUTHORS ChangeLog NEWS README THANKS TODO
-
-   insinto /etc
-   doins etc/ypserv.conf etc/netgroup etc/netmasks
-   insinto /var/yp
-   newins etc/securenets securenets.default
-
-   newconfd "${FILESDIR}/ypserv.confd" ypserv
-   newconfd "${FILESDIR}/rpc.yppasswdd.confd" rpc.yppasswdd
-   newconfd "${FILESDIR}/rpc.ypxfrd.confd" rpc.ypxfrd
-
-   newinitd "${FILESDIR}/ypserv" ypserv
-   newinitd "${FILESDIR}/rpc.yppasswdd-r1" rpc.yppasswdd
-   newinitd "${FILESDIR}/rpc.ypxfrd-2.23" rpc.ypxfrd
-
-   echo "CONFIG_PROTECT=\"/var/yp/Makefile\"" > "${T}"/10ypserv
-   doenvd "${T}"/10ypserv
-}
-
-pkg_preinst() {
-   # This ebuilds installs an env file which CONFIG_PROTECTs 
/var/yp/Makefile,
-   # but if the user is migrating from older ypserv, this won't take effect
-   # immediately. Keep the older setup with Makefile.dist file and ask the 
user
-   # to migrate.
-   if [ -f "${ROOT}/var/yp/Makefile.dist" ]; then
-   mv "${D}/var/yp/Makefile" "${D}/var/yp/Makefile.dist" \
-   || die "mv failed"
-   cp "${ROOT}/var/yp/Makefile" "${D}/var/yp/Makefile" \
-   || die "cp failed"
-   elog "Please remove ${ROOT}/var/yp/Makefile.dist after making 
sure that"
-   elog "${ROOT}/var/yp/Makefile looks fine to you. It is now"
-   elog "CONFIG_PROTECTed, so further changes should be managed 
with"
-   elog "usual config management tools like etc-update or 
dispatch-conf."
-   fi
-}
-
-pkg_postinst() {
-   einfo "To complete setup, you will need to edit /var/yp/securenets,"
-   einfo "/etc/conf.d/ypserv, /etc/ypserv.conf, /etc/conf.d/rpc.yppasswdd"
-   einfo "and possibly /var/yp/Makefile."
-
-   einfo "To start the services at boot, you need to enable ypserv and 
optionally"
-   einfo "the rpc.yppasswdd and/or rpc.ypxfrd services"
-}



[gentoo-commits] repo/gentoo:master commit in: net-nds/389-admin/

2016-05-02 Thread Austin English
commit: 2df69c5b83d4a43a345efcfc7c30636dc71e7588
Author: Austin English  gentoo  org>
AuthorDate: Mon May  2 23:53:55 2016 +
Commit: Austin English  gentoo  org>
CommitDate: Mon May  2 23:53:55 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2df69c5b

net-nds/389-admin: remove old ebuild

Package-Manager: portage-2.2.26

 net-nds/389-admin/389-admin-1.1.31.ebuild | 171 --
 1 file changed, 171 deletions(-)

diff --git a/net-nds/389-admin/389-admin-1.1.31.ebuild 
b/net-nds/389-admin/389-admin-1.1.31.ebuild
deleted file mode 100644
index 4716cae..000
--- a/net-nds/389-admin/389-admin-1.1.31.ebuild
+++ /dev/null
@@ -1,171 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-WANT_AUTOMAKE="1.9"
-
-MY_PV=${PV/_rc/.rc}
-MY_PV=${MY_PV/_a/.a}
-
-inherit eutils multilib autotools depend.apache
-
-DESCRIPTION="389 Directory Server (admin)"
-HOMEPAGE="http://port389.org/;
-SRC_URI="http://directory.fedoraproject.org/sources/${PN}-${MY_PV}.tar.bz2;
-
-LICENSE="GPL-2 Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="debug ipv6 selinux"
-
-# TODO snmp agent init script
-
-COMMON_DEPEND=">=app-admin/389-admin-console-1.1.0
-   >=app-admin/389-ds-console-1.1.0
-   app-misc/mime-types
-   dev-libs/389-adminutil
-   dev-libs/cyrus-sasl
-   dev-libs/icu:=
-   dev-libs/nss[utils]
-   || ( <=dev-libs/nspr-4.8.3-r3[ipv6?] >=dev-libs/nspr-4.8.4 )
-   dev-libs/svrcore
-   net-analyzer/net-snmp[ipv6?]
-   net-nds/openldap
-   selinux? (
-   sys-apps/checkpolicy
-   sys-apps/policycoreutils
-   )
-   >=sys-libs/db-4.2.52
-   sys-libs/pam
-   sys-apps/tcp-wrappers[ipv6?]
-   www-apache/mod_nss
-   
www-servers/apache:2[apache2_modules_actions,apache2_modules_alias,apache2_modules_auth_basic,apache2_modules_authz_default,apache2_modules_cgi,apache2_modules_mime_magic,apache2_modules_rewrite,apache2_modules_setenvif,suexec,threads]"
-RDEPEND="
-   ${COMMON_DEPEND}
-   www-client/lynx
-   selinux? ( sec-policy/selinux-base-policy )
-"
-DEPEND="sys-apps/sed ${COMMON_DEPEND}"
-
-S="${WORKDIR}/${PN}-${MY_PV}"
-
-need_apache2
-
-src_prepare() {
-   # as per 389 documentation, when 64bit, export USE_64
-   use amd64 && export USE_64=1
-
-   epatch "${FILESDIR}/1.1.11_rc1/0001-gentoo-apache-names.patch"
-   epatch "${FILESDIR}/1.1.11_rc1/0003-find-mod_nss.m4.patch"
-   epatch "${FILESDIR}/1.1.11_rc1/0004-rpath-fix.configure.ac.patch"
-   # Configuration fixes
-   epatch "${FILESDIR}/${PN}-cfgstuff-1.patch"
-
-   sed -e "s!SUBDIRS!# SUBDIRS!g" -i Makefile.am || die "sed failed"
-   # Setup default user/group, in this case it's dirsrv
-   sed -e "s!nobody!dirsrv!g" -i configure.ac || die "sed failed"
-
-   eautoreconf
-}
-
-src_configure() {
-   # stub autoconf triplet  :(
-   local myconf=""
-   use debug && myconf="--enable-debug"
-   use selinux &&  myconf="${myconf} --with-selinux"
-
-   econf \
-   --enable-threading \
-   --disable-rpath \
-   --with-adminutil=/usr \
-   --with-apr-config \
-   --with-apxs=${APXS} \
-   --with-fhs \
-   --with-httpd=${APACHE_BIN} \
-   --with-openldap \
-   ${myconf} || die "econf failed"
-}
-
-src_install () {
-
-   emake DESTDIR="${D}" install || die "emake failed"
-   keepdir /var/log/dirsrv/admin-serv
-
-   # remove redhat style init script.
-   rm -rf "${D}"/etc/rc.d
-   rm -rf "${D}"/etc/default
-
-   # install gentoo style init script.
-   newinitd "${FILESDIR}"/${PN}.initd ${PN}
-   newconfd "${FILESDIR}"/${PN}.confd ${PN}
-
-   # remove redhat style wrapper scripts
-   # and install gentoo scripts.
-   rm -rf "${D}"/usr/sbin/*-ds-admin
-   dosbin "${FILESDIR}"/*-ds-admin || die "cannot install gentoo 
start/stop scripts"
-
-   # In this version build systems for modules is delete :(
-   # manually install modules, not using apache-modules eclass
-   # because use bindled library
-
-   # install mod_admserv
-   exeinto "${APACHE_MODULESDIR}"
-   doexe "${S}/.libs"/mod_admserv.so || die "internal ebuild error: 
mod_admserv not found"
-
-   insinto "${APACHE_MODULES_CONFDIR}"
-   newins "${FILESDIR}/1.1.11_rc1"/48_mod_admserv.conf 48_mod_admserv \
-   || die "internal ebuild error: 
48_mod_admserv.conf not found"
-
-   # install mod_restard
-   exeinto "${APACHE_MODULESDIR}"
-   doexe "${S}/.libs"/mod_restartd.so || die "internal ebuild error: 
mod_restartd  not found"
-
-   insinto "${APACHE_MODULES_CONFDIR}"
-   newins "${FILESDIR}/1.1.11_rc1"/48_mod_restartd.conf 48_mod_restartd \
-   || die "internal ebuild error: 

[gentoo-commits] repo/gentoo:master commit in: net-nds/ypbind/

2016-05-02 Thread Austin English
commit: b5b0bb57a1245095627f8af3f1eb59d8964a5f36
Author: Austin English  gentoo  org>
AuthorDate: Mon May  2 23:55:55 2016 +
Commit: Austin English  gentoo  org>
CommitDate: Mon May  2 23:55:55 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5b0bb57

net-nds/ypbind: remove old ebuild

Package-Manager: portage-2.2.26

 net-nds/ypbind/ypbind-1.37.2.ebuild | 65 -
 1 file changed, 65 deletions(-)

diff --git a/net-nds/ypbind/ypbind-1.37.2.ebuild 
b/net-nds/ypbind/ypbind-1.37.2.ebuild
deleted file mode 100644
index 0607e24..000
--- a/net-nds/ypbind/ypbind-1.37.2.ebuild
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-inherit readme.gentoo systemd
-
-MY_P=${PN}-mt-${PV}
-S="${WORKDIR}/${MY_P}"
-
-DESCRIPTION="Multithreaded NIS bind service (ypbind-mt)"
-HOMEPAGE="http://www.linux-nis.org/nis/ypbind-mt/index.html;
-SRC_URI="http://www.linux-nis.org/download/ypbind-mt/${MY_P}.tar.bz2;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 sparc x86"
-IUSE="debug dbus nls slp systemd"
-
-RDEPEND="
-   debug? ( dev-libs/dmalloc )
-   dbus? ( dev-libs/dbus-glib )
-   slp? ( net-libs/openslp )
-   systemd? (
-   net-nds/rpcbind
-   >=net-nds/yp-tools-2.12-r1
-   sys-apps/systemd )
-   !systemd? (
-   net-nds/yp-tools
-   || ( net-nds/portmap net-nds/rpcbind ) )
-"
-DEPEND="${RDEPEND}
-   nls? ( sys-devel/gettext )
-"
-
-DOC_CONTENTS="
-   If you are using dhcpcd, be sure to add the -Y option to
-   dhcpcd_eth0 (or eth1, etc.) to keep dhcpcd from clobbering
-   /etc/yp.conf.
-"
-
-src_prepare() {
-   ! use systemd && export ac_cv_header_systemd_sd_daemon_h=no
-}
-
-src_configure() {
-   econf \
-   $(use_enable nls) \
-   $(use_enable slp) \
-   $(use_with debug dmalloc) \
-   $(use_enable dbus dbus-nm)
-}
-
-src_install() {
-   default
-
-   insinto /etc
-   newins etc/yp.conf yp.conf.example
-
-   newconfd "${FILESDIR}/ypbind.confd-r1" ypbind
-   newinitd "${FILESDIR}/ypbind.initd" ypbind
-   use systemd && systemd_dounit "${FILESDIR}/ypbind.service"
-
-   readme.gentoo_create_doc
-}



[gentoo-commits] repo/gentoo:master commit in: net-nds/ypbind/files/, net-nds/ypbind/

2016-05-02 Thread Austin English
commit: c897bebf137568c890a8549e62cbe4dcca462164
Author: Austin English  gentoo  org>
AuthorDate: Mon May  2 23:55:30 2016 +
Commit: Austin English  gentoo  org>
CommitDate: Mon May  2 23:55:30 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c897bebf

net-nds/ypbind: use #!/sbin/openrc-run instead of #!/sbin/runscript

Gentoo-Bug: https://bugs.gentoo.org/573846

Package-Manager: portage-2.2.26

 net-nds/ypbind/files/ypbind.initd  |  4 +--
 net-nds/ypbind/ypbind-1.37.2-r1.ebuild | 65 ++
 2 files changed, 67 insertions(+), 2 deletions(-)

diff --git a/net-nds/ypbind/files/ypbind.initd 
b/net-nds/ypbind/files/ypbind.initd
index 26d5d9a..5642e3d 100644
--- a/net-nds/ypbind/files/ypbind.initd
+++ b/net-nds/ypbind/files/ypbind.initd
@@ -1,5 +1,5 @@
-#!/sbin/runscript
-# Copyright 1999-2004 Gentoo Foundation
+#!/sbin/openrc-run
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 

diff --git a/net-nds/ypbind/ypbind-1.37.2-r1.ebuild 
b/net-nds/ypbind/ypbind-1.37.2-r1.ebuild
new file mode 100644
index 000..8531a4c
--- /dev/null
+++ b/net-nds/ypbind/ypbind-1.37.2-r1.ebuild
@@ -0,0 +1,65 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+inherit readme.gentoo systemd
+
+MY_P=${PN}-mt-${PV}
+S="${WORKDIR}/${MY_P}"
+
+DESCRIPTION="Multithreaded NIS bind service (ypbind-mt)"
+HOMEPAGE="http://www.linux-nis.org/nis/ypbind-mt/index.html;
+SRC_URI="http://www.linux-nis.org/download/ypbind-mt/${MY_P}.tar.bz2;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 sparc x86"
+IUSE="debug dbus nls slp systemd"
+
+RDEPEND="
+   debug? ( dev-libs/dmalloc )
+   dbus? ( dev-libs/dbus-glib )
+   slp? ( net-libs/openslp )
+   systemd? (
+   net-nds/rpcbind
+   >=net-nds/yp-tools-2.12-r1
+   sys-apps/systemd )
+   !systemd? (
+   net-nds/yp-tools
+   || ( net-nds/portmap net-nds/rpcbind ) )
+"
+DEPEND="${RDEPEND}
+   nls? ( sys-devel/gettext )
+"
+
+DOC_CONTENTS="
+   If you are using dhcpcd, be sure to add the -Y option to
+   dhcpcd_eth0 (or eth1, etc.) to keep dhcpcd from clobbering
+   /etc/yp.conf.
+"
+
+src_prepare() {
+   ! use systemd && export ac_cv_header_systemd_sd_daemon_h=no
+}
+
+src_configure() {
+   econf \
+   $(use_enable nls) \
+   $(use_enable slp) \
+   $(use_with debug dmalloc) \
+   $(use_enable dbus dbus-nm)
+}
+
+src_install() {
+   default
+
+   insinto /etc
+   newins etc/yp.conf yp.conf.example
+
+   newconfd "${FILESDIR}/ypbind.confd-r1" ypbind
+   newinitd "${FILESDIR}/ypbind.initd" ypbind
+   use systemd && systemd_dounit "${FILESDIR}/ypbind.service"
+
+   readme.gentoo_create_doc
+}



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

2016-05-02 Thread Austin English
commit: eb477c80f32f1325b325e985fc1f353cb90ac7f6
Author: Austin English  gentoo  org>
AuthorDate: Mon May  2 23:38:55 2016 +
Commit: Austin English  gentoo  org>
CommitDate: Mon May  2 23:38:55 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb477c80

net-irc/irc-server: remove old versions

Package-Manager: portage-2.2.26

 net-irc/irc-server/irc-server-2.11.1_p1-r2.ebuild | 103 --
 1 file changed, 103 deletions(-)

diff --git a/net-irc/irc-server/irc-server-2.11.1_p1-r2.ebuild 
b/net-irc/irc-server/irc-server-2.11.1_p1-r2.ebuild
deleted file mode 100644
index 0cb790b..000
--- a/net-irc/irc-server/irc-server-2.11.1_p1-r2.ebuild
+++ /dev/null
@@ -1,103 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-inherit eutils versionator flag-o-matic user
-
-MY_P=irc${PV/_/}
-
-DESCRIPTION="RFC compliant IRC server"
-HOMEPAGE="http://www.irc.org/;
-SRC_URI="ftp://ftp.irc.org/irc/server/${MY_P}.tgz
-   ftp://ftp.irc.org/irc/server/Old/irc$(get_version_component_range 
1-2)/${MY_P}.tgz"
-
-LICENSE="GPL-1"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE="zlib ipv6"
-
-RDEPEND="sys-libs/ncurses
-   zlib? ( sys-libs/zlib )"
-DEPEND="${RDEPEND}
-   sys-apps/sed
-   sys-apps/grep"
-
-S=${WORKDIR}/${MY_P}
-
-pkg_setup() {
-   enewgroup ircd
-   enewuser ircd -1 -1 -1 ircd
-}
-
-src_unpack() {
-   unpack ${A}
-   cd "${S}"
-
-   epatch "${FILESDIR}"/2.10.3_p3-gentoo.patch
-}
-
-src_compile () {
-   sed -i \
-   -e "s/^#undef\tOPER_KILL$/#define\tOPER_KILL/" \
-   -e "s/^#undef\tOPER_RESTART$/#define\tOPER_RESTART/" \
-   -e "s/^#undef TIMEDKLINES$/#define\tTIMEDKLINES\t60/" \
-   -e "s/^#undef\tR_LINES$/#define\tR_LINES/" \
-   -e 
"s/^#undef\tCRYPT_OPER_PASSWORD$/#define\tCRYPT_OPER_PASSWORD/" \
-   -e 
"s/^#undef\tCRYPT_LINK_PASSWORD$/#define\tCRYPT_LINK_PASSWORD/" \
-   -e "s/^#undef\tIRC_UID$/#define\tIRC_UID\t$IRCUID/" \
-   -e "s/^#undef\tIRC_GID$/#define\tIRC_GID\t$IRCGID/" \
-   -e "s/^#undef USE_SERVICES$/#define\tUSE_SERVICES/" \
-   "${S}"/support/config.h.dist
-
-   use zlib && sed -i -e "s/^#undef\tZIP_LINKS$/#define\tZIP_LINKS/" 
"${S}"/support/config.h.dist
-
-   econf \
-   --sysconfdir=/etc/ircd \
-   --localstatedir=/var/run/ircd \
-   --with-logdir=/var/log/ircd \
-   --with-rundir=/var/run/ircd \
-   --mandir='${prefix}/share/man' \
-   $(use_with zlib) \
-   $(use_enable ipv6 ip6) \
-   || die "econf failed"
-
-   cd $(support/config.guess)
-   emake ircd iauth chkconf ircd-mkpasswd ircdwatch tkserv || die "emake 
failed"
-}
-
-src_install() {
-   cd $(support/config.guess)
-
-   emake \
-   prefix=${D}/usr \
-   ircd_conf_dir=${D}/etc/ircd \
-   ircd_var_dir=${D}/var/run/ircd \
-   ircd_log_dir=${D}/var/log/ircd \
-   install-server \
-   install-tkserv \
-   || die "make install failed"
-
-   fowners ircd:ircd /var/run/ircd
-   fowners ircd:ircd /var/log/ircd
-
-   cd ../doc
-   dodoc \
-   *-New alt-irc-faq Authors BUGS ChangeLog Etiquette \
-   iauth-internals.txt INSTALL.appendix INSTALL.* LICENSE \
-   m4macros README RELEASE* rfc* SERVICE*
-
-   docinto Juped
-   dodoc Juped/Advertisement Juped/ChangeLog.* Juped/INSTALL
-
-   docinto Juped/US-Admin
-   dodoc Juped/US-Admin/Networking
-
-   docinto Nets
-   dodoc Nets/IRCNet
-
-   docinto Nets/Europe
-   dodoc Nets/Europe/*
-
-   newinitd "${FILESDIR}"/ircd.rc ircd
-   newconfd "${FILESDIR}"/ircd.confd ircd
-}



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

2016-05-02 Thread Austin English
commit: 4c36c67ebdbf6ab2c231a51ded45dd5eaaa6d181
Author: Austin English  gentoo  org>
AuthorDate: Mon May  2 23:41:47 2016 +
Commit: Austin English  gentoo  org>
CommitDate: Mon May  2 23:41:47 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c36c67e

net-irc/ptlink-ircd: remove old versions

Package-Manager: portage-2.2.26

 net-irc/ptlink-ircd/ptlink-ircd-6.19.6-r2.ebuild | 93 
 1 file changed, 93 deletions(-)

diff --git a/net-irc/ptlink-ircd/ptlink-ircd-6.19.6-r2.ebuild 
b/net-irc/ptlink-ircd/ptlink-ircd-6.19.6-r2.ebuild
deleted file mode 100644
index f21eeab..000
--- a/net-irc/ptlink-ircd/ptlink-ircd-6.19.6-r2.ebuild
+++ /dev/null
@@ -1,93 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit eutils ssl-cert user
-
-MY_P="PTlink${PV}"
-
-DESCRIPTION="Secure IRC daemon with many advanced features"
-HOMEPAGE="http://www.ptlink.net/;
-SRC_URI="ftp://ftp.sunsite.dk/projects/ptlink/ircd/${MY_P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~ppc ~sparc ~x86"
-IUSE="ssl"
-
-DEPEND="
-   sys-libs/zlib
-   ssl? ( dev-libs/openssl:0= )"
-
-S=${WORKDIR}/${MY_P}
-
-src_prepare() {
-   ecvs_clean
-}
-
-src_configure() {
-   econf \
-   --disable-ipv6 \
-   $(use_with ssl ssl openssl)
-}
-
-src_compile() {
-   emake CFLAGS="${CFLAGS}"
-}
-
-src_install() {
-   newbin src/ircd ptlink-ircd
-   newbin tools/fixklines ptlink-ircd-fixklines
-   newbin tools/mkpasswd ptlink-ircd-mkpasswd
-
-   insinto /etc/ptlink-ircd
-   fperms 700 /etc/ptlink-ircd
-   doins samples/{kline.conf,{opers,ptlink}.motd,help.{admin,oper,user}}
-   newins samples/example.conf.short ircd.conf
-   newins samples/example.conf.trillian ircd.conf.trillian
-   newins samples/main.dconf.sample main.dconf
-   newins samples/network.dconf.sample network.dconf
-
-   insinto /usr/share/ptlink-ircd/codepage
-   doins src/codepage/*.enc
-   dosym /usr/share/ptlink-ircd/codepage /etc/ptlink-ircd/codepage
-
-   rm -rf doc/old
-   dodoc doc/* doc_hybrid6/* ircdcron/* CHANGES README
-
-   keepdir /var/log/ptlink-ircd /var/lib/ptlink-ircd
-   dosym /var/log/ptlink-ircd /var/lib/ptlink-ircd/log
-
-   newinitd "${FILESDIR}/ptlink-ircd.initd" ptlink-ircd
-   newconfd "${FILESDIR}/ptlink-ircd.confd" ptlink-ircd
-}
-
-pkg_postinst() {
-   # Move docert from src_install() to install_cert for bug #201678
-   use ssl && (
-   if [[ ! -f "${ROOT}"/etc/ptlink-ircd/server.key.pem ]]; then
-   install_cert /etc/ptlink-ircd/server || die 
"install_cert failed"
-   mv "${ROOT}"/etc/ptlink-ircd/server.{crt,cert.pem}
-   mv "${ROOT}"/etc/ptlink-ircd/server.{csr,req.pem}
-   mv "${ROOT}"/etc/ptlink-ircd/server.key{,.pem}
-   fi
-   )
-
-   enewuser ptlink-ircd
-
-   chown ptlink-ircd \
-   "${ROOT}"/{etc,var/{log,lib}}/ptlink-ircd \
-   "${ROOT}"/etc/ptlink-ircd/server.key.pem
-
-   echo
-   elog "PTlink IRCd will run without configuration, although this is 
strongly"
-   elog "advised against."
-   echo
-   elog "You can find example cron script ircd.cron here:"
-   elog "   /usr/share/doc/${PF}"
-   echo
-   elog "You can also use /etc/init.d/ptlink-ircd to start at boot"
-   echo
-}



[gentoo-commits] repo/gentoo:master commit in: net-irc/ptlink-opm/files/, net-irc/ptlink-opm/

2016-05-02 Thread Austin English
commit: 1f52baaefd3b5bb995d64f11df12433dfa9c8a5e
Author: Austin English  gentoo  org>
AuthorDate: Mon May  2 23:43:51 2016 +
Commit: Austin English  gentoo  org>
CommitDate: Mon May  2 23:43:51 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f52baae

net-irc/ptlink-opm: use #!/sbin/openrc-run instead of #!/sbin/runscript

Gentoo-Bug: https://bugs.gentoo.org/573846

Package-Manager: portage-2.2.26

 net-irc/ptlink-opm/files/ptlink-opm.init.d|  4 +--
 net-irc/ptlink-opm/ptlink-opm-1.3.1-r1.ebuild | 49 +++
 2 files changed, 51 insertions(+), 2 deletions(-)

diff --git a/net-irc/ptlink-opm/files/ptlink-opm.init.d 
b/net-irc/ptlink-opm/files/ptlink-opm.init.d
index 0994939..8e50467 100644
--- a/net-irc/ptlink-opm/files/ptlink-opm.init.d
+++ b/net-irc/ptlink-opm/files/ptlink-opm.init.d
@@ -1,5 +1,5 @@
-#!/sbin/runscript
-# Copyright 1999-2004 Gentoo Foundation
+#!/sbin/openrc-run
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 

diff --git a/net-irc/ptlink-opm/ptlink-opm-1.3.1-r1.ebuild 
b/net-irc/ptlink-opm/ptlink-opm-1.3.1-r1.ebuild
new file mode 100644
index 000..c4f0851
--- /dev/null
+++ b/net-irc/ptlink-opm/ptlink-opm-1.3.1-r1.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit eutils user
+
+MY_P="PTlink.OPM${PV}"
+
+DESCRIPTION="PTlink Open Proxy Monitor"
+HOMEPAGE="http://www.ptlink.net/;
+SRC_URI="ftp://ftp.sunsite.dk/projects/ptlink/ptopm/${MY_P}.tar.gz;
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~x86 ~ppc"
+IUSE=""
+
+RDEPEND=""
+DEPEND=">=sys-apps/sed-4"
+
+S=${WORKDIR}/${MY_P}
+
+src_configure() {
+   econf \
+   --sysconfdir=/etc/ptlink-opm \
+   --localstatedir=/var/lib/ptlink-opm
+}
+
+src_install() {
+   newbin src/ptopm ptlink-opm
+
+   insinto /etc/ptlink-opm
+   newins samples/ptopm.dconf.sample ptopm.dconf
+   doins samples/scan_rules.dconf
+
+   keepdir /var/{lib,log}/ptlink-opm
+   dosym /var/log/ptlink-opm /var/lib/ptlink-opm/log
+
+   dodoc CHANGES README || die "dodoc failed"
+
+   newinitd "${FILESDIR}"/ptlink-opm.init.d ptlink-opm
+   newconfd "${FILESDIR}"/ptlink-opm.conf.d ptlink-opm
+}
+
+pkg_postinst() {
+   enewuser ptlink-opm
+   chown ptlink-opm "${ROOT}"/var/{log,lib}/ptlink-opm
+}



[gentoo-commits] repo/gentoo:master commit in: net-nds/ypserv/files/

2016-05-02 Thread Austin English
commit: 171e9555edadd36660e4d225b9d005a6e0a37f30
Author: Austin English  gentoo  org>
AuthorDate: Tue May  3 00:00:26 2016 +
Commit: Austin English  gentoo  org>
CommitDate: Tue May  3 00:00:46 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=171e9555

net-nds/ypserv: remove unused initscript

 net-nds/ypserv/files/rpc.ypxfrd | 22 --
 1 file changed, 22 deletions(-)

diff --git a/net-nds/ypserv/files/rpc.ypxfrd b/net-nds/ypserv/files/rpc.ypxfrd
deleted file mode 100644
index 573b010..000
--- a/net-nds/ypserv/files/rpc.ypxfrd
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/sbin/runscript
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-depend() {
-   need net portmap ypserv
-}
-
-start() {
-   ebegin "Starting rpc.ypxfrd"
-   YOPTS=""
-   if [ -n "${YPXFRD_OPTS}" ]; then YOPTS="-- ${YPXFRD_OPTS}"; fi
-   start-stop-daemon --start --quiet --exec /usr/sbin/rpc.ypxfrd ${YOPTS}
-   eend $?
-}
-
-stop() {
-   ebegin "Stopping rpc.ypxfrd"
-   start-stop-daemon --stop --quiet --exec /usr/sbin/rpc.ypxfrd
-   eend $?
-}



[gentoo-commits] repo/gentoo:master commit in: net-news/amphetadesk/

2016-05-02 Thread Austin English
commit: 9b963fe169d0e53b27fd849570e3beb84d9a7ead
Author: Austin English  gentoo  org>
AuthorDate: Mon May  2 23:18:46 2016 +
Commit: Austin English  gentoo  org>
CommitDate: Mon May  2 23:18:46 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b963fe1

net-news/amphetadesk: remove old version

Package-Manager: portage-2.2.26

 net-news/amphetadesk/amphetadesk-0.93.1.ebuild | 40 --
 1 file changed, 40 deletions(-)

diff --git a/net-news/amphetadesk/amphetadesk-0.93.1.ebuild 
b/net-news/amphetadesk/amphetadesk-0.93.1.ebuild
deleted file mode 100644
index 5504f7e..000
--- a/net-news/amphetadesk/amphetadesk-0.93.1.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-DESCRIPTION="AmphetaDesk is a free syndicated news aggregator"
-HOMEPAGE="http://www.disobey.com/amphetadesk/;
-SRC_URI="mirror://sourceforge/sourceforge/amphetadesk/${PN}-src-v${PV}.tar.gz"
-LICENSE="Artistic"
-SLOT="0"
-KEYWORDS="~amd64 ppc x86"
-IUSE=""
-DEPEND="dev-lang/perl
-   dev-perl/libwww-perl
-   dev-libs/expat
-   dev-perl/XML-Parser
-   virtual/perl-IO-Compress"
-S=${WORKDIR}/${PN}-src-v${PV}
-
-src_install() {
-   dodir /usr/share/amphetadesk
-   cp "${S}"/AmphetaDesk.pl "${D}"/usr/share/amphetadesk/AmphetaDesk.pl
-   dodoc README.txt
-   cp -R "${S}"/data "${D}"/usr/share/amphetadesk
-   cp -R "${S}"/docs "${D}"/usr/share/amphetadesk
-   cp -R "${S}"/lib "${D}"/usr/share/amphetadesk
-   cp -R "${S}"/templates "${D}"/usr/share/amphetadesk
-   newinitd "${FILESDIR}"/amphetadesk.initd amphetadesk
-}
-
-pkg_postinst() {
-   # fixes bug #25066 thanks to kloeri
-   /etc/init.d/depscan.sh
-
-   einfo "AmphetaDesk should be started and stopped with the runscript 
located at "
-   einfo "'/etc/init.d/amphetadesk'. You can access AmphetaDesk after it 
has been"
-   einfo "started in your browser of choice on port ."
-   einfo ""
-   ewarn "If you start AmphetaDesk at boot with rc-update don't give it a 
browser"
-   ewarn "to start up when it loads (in the options page)"
-}



[gentoo-commits] repo/gentoo:master commit in: net-irc/irc-server/, net-irc/irc-server/files/

2016-05-02 Thread Austin English
commit: ef9efe522330d913ba859834be3fe30a0077b64c
Author: Austin English  gentoo  org>
AuthorDate: Mon May  2 23:27:18 2016 +
Commit: Austin English  gentoo  org>
CommitDate: Mon May  2 23:35:40 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef9efe52

net-irc/irc-server: use #!/sbin/openrc-run instead of #!/sbin/runscript

Gentoo-Bug: https://bugs.gentoo.org/573846

Package-Manager: portage-2.2.26

 net-irc/irc-server/files/ircd.rc  |   4 +-
 net-irc/irc-server/irc-server-2.11.1_p1-r3.ebuild | 103 ++
 2 files changed, 105 insertions(+), 2 deletions(-)

diff --git a/net-irc/irc-server/files/ircd.rc b/net-irc/irc-server/files/ircd.rc
index e048023..3a48660 100644
--- a/net-irc/irc-server/files/ircd.rc
+++ b/net-irc/irc-server/files/ircd.rc
@@ -1,5 +1,5 @@
-#!/sbin/runscript
-# Copyright 1999-2005 Gentoo Foundation
+#!/sbin/openrc-run
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 

diff --git a/net-irc/irc-server/irc-server-2.11.1_p1-r3.ebuild 
b/net-irc/irc-server/irc-server-2.11.1_p1-r3.ebuild
new file mode 100644
index 000..cf0b971
--- /dev/null
+++ b/net-irc/irc-server/irc-server-2.11.1_p1-r3.ebuild
@@ -0,0 +1,103 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit eutils versionator flag-o-matic user
+
+MY_P=irc${PV/_/}
+
+DESCRIPTION="RFC compliant IRC server"
+HOMEPAGE="http://www.irc.org/;
+SRC_URI="ftp://ftp.irc.org/irc/server/${MY_P}.tgz
+   ftp://ftp.irc.org/irc/server/Old/irc$(get_version_component_range 
1-2)/${MY_P}.tgz"
+
+LICENSE="GPL-1"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE="zlib ipv6"
+
+RDEPEND="sys-libs/ncurses
+   zlib? ( sys-libs/zlib )"
+DEPEND="${RDEPEND}
+   sys-apps/sed
+   sys-apps/grep"
+
+S=${WORKDIR}/${MY_P}
+
+pkg_setup() {
+   enewgroup ircd
+   enewuser ircd -1 -1 -1 ircd
+}
+
+src_prepare() {
+   eapply "${FILESDIR}"/2.10.3_p3-gentoo.patch
+   default
+}
+
+src_configure () {
+   sed -i \
+   -e "s/^#undef\tOPER_KILL$/#define\tOPER_KILL/" \
+   -e "s/^#undef\tOPER_RESTART$/#define\tOPER_RESTART/" \
+   -e "s/^#undef TIMEDKLINES$/#define\tTIMEDKLINES\t60/" \
+   -e "s/^#undef\tR_LINES$/#define\tR_LINES/" \
+   -e 
"s/^#undef\tCRYPT_OPER_PASSWORD$/#define\tCRYPT_OPER_PASSWORD/" \
+   -e 
"s/^#undef\tCRYPT_LINK_PASSWORD$/#define\tCRYPT_LINK_PASSWORD/" \
+   -e "s/^#undef\tIRC_UID$/#define\tIRC_UID\t$IRCUID/" \
+   -e "s/^#undef\tIRC_GID$/#define\tIRC_GID\t$IRCGID/" \
+   -e "s/^#undef USE_SERVICES$/#define\tUSE_SERVICES/" \
+   "${S}"/support/config.h.dist
+
+   use zlib && sed -i -e "s/^#undef\tZIP_LINKS$/#define\tZIP_LINKS/" 
"${S}"/support/config.h.dist
+
+   econf \
+   --sysconfdir=/etc/ircd \
+   --localstatedir=/var/run/ircd \
+   --with-logdir=/var/log/ircd \
+   --with-rundir=/var/run/ircd \
+   --mandir='${prefix}/share/man' \
+   $(use_with zlib) \
+   $(use_enable ipv6 ip6)
+}
+
+src_compile() {
+   cd $(support/config.guess)
+   emake ircd iauth chkconf ircd-mkpasswd ircdwatch tkserv
+}
+
+src_install() {
+   cd $(support/config.guess)
+
+   emake \
+   prefix="${D}"/usr \
+   ircd_conf_dir="${D}"/etc/ircd \
+   ircd_var_dir="${D}"/var/run/ircd \
+   ircd_log_dir="${D}"/var/log/ircd \
+   install-server \
+   install-tkserv
+
+   fowners ircd:ircd /var/run/ircd
+   fowners ircd:ircd /var/log/ircd
+
+   cd ../doc
+   dodoc \
+   *-New alt-irc-faq Authors BUGS ChangeLog Etiquette \
+   iauth-internals.txt INSTALL.appendix INSTALL.* \
+   m4macros README RELEASE* rfc* SERVICE*
+
+   docinto Juped
+   dodoc Juped/Advertisement Juped/ChangeLog.* Juped/INSTALL
+
+   docinto Juped/US-Admin
+   dodoc Juped/US-Admin/Networking
+
+   docinto Nets
+   dodoc Nets/IRCNet
+
+   docinto Nets/Europe
+   dodoc Nets/Europe/*
+
+   newinitd "${FILESDIR}"/ircd.rc ircd
+   newconfd "${FILESDIR}"/ircd.confd ircd
+}



[gentoo-commits] repo/gentoo:master commit in: net-nds/ypserv/files/, net-nds/ypserv/

2016-05-02 Thread Austin English
commit: 81234734845a8e902980fcfef6ed04d20aa5cdeb
Author: Austin English  gentoo  org>
AuthorDate: Tue May  3 00:01:38 2016 +
Commit: Austin English  gentoo  org>
CommitDate: Tue May  3 00:01:38 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81234734

net-nds/ypserv: use #!/sbin/openrc-run instead of #!/sbin/runscript

Gentoo-Bug: https://bugs.gentoo.org/573846

Package-Manager: portage-2.2.26

 net-nds/ypserv/files/rpc.yppasswdd-r1 |  4 +-
 net-nds/ypserv/files/rpc.ypxfrd-2.23  |  4 +-
 net-nds/ypserv/files/ypserv   |  4 +-
 net-nds/ypserv/ypserv-2.26-r1.ebuild  | 79 +++
 4 files changed, 85 insertions(+), 6 deletions(-)

diff --git a/net-nds/ypserv/files/rpc.yppasswdd-r1 
b/net-nds/ypserv/files/rpc.yppasswdd-r1
index 7e7c36a..2ed1736 100644
--- a/net-nds/ypserv/files/rpc.yppasswdd-r1
+++ b/net-nds/ypserv/files/rpc.yppasswdd-r1
@@ -1,5 +1,5 @@
-#!/sbin/runscript
-# Copyright 1999-2004 Gentoo Foundation
+#!/sbin/openrc-run
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 

diff --git a/net-nds/ypserv/files/rpc.ypxfrd-2.23 
b/net-nds/ypserv/files/rpc.ypxfrd-2.23
index ae1f92e..4778a14 100644
--- a/net-nds/ypserv/files/rpc.ypxfrd-2.23
+++ b/net-nds/ypserv/files/rpc.ypxfrd-2.23
@@ -1,5 +1,5 @@
-#!/sbin/runscript
-# Copyright 1999-2011 Gentoo Foundation
+#!/sbin/openrc-run
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 

diff --git a/net-nds/ypserv/files/ypserv b/net-nds/ypserv/files/ypserv
index a0dd95c..3a4c6c0 100644
--- a/net-nds/ypserv/files/ypserv
+++ b/net-nds/ypserv/files/ypserv
@@ -1,5 +1,5 @@
-#!/sbin/runscript
-# Copyright 1999-2004 Gentoo Foundation
+#!/sbin/openrc-run
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 

diff --git a/net-nds/ypserv/ypserv-2.26-r1.ebuild 
b/net-nds/ypserv/ypserv-2.26-r1.ebuild
new file mode 100644
index 000..d315581
--- /dev/null
+++ b/net-nds/ypserv/ypserv-2.26-r1.ebuild
@@ -0,0 +1,79 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="6"
+
+inherit autotools
+
+DESCRIPTION="Network Information Service server"
+HOMEPAGE="http://www.linux-nis.org/nis/;
+SRC_URI="mirror://kernel/linux/utils/net/NIS/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="amd64 ppc ppc64 x86"
+IUSE="slp"
+
+DEPEND=">=sys-libs/gdbm-1.8.0
+slp? ( net-libs/openslp )"
+RDEPEND="${DEPEND}
+|| ( net-nds/rpcbind net-nds/portmap )"
+
+src_prepare() {
+   # The configure script does not provide a command-line flag to control 
usage
+   # of slp. Use a brutal method in case we need to disable it.
+   if ! use slp; then
+   sed -i -e 's/USE_SLP=1/USE_SLP=0/g' configure.in || die
+   eautoreconf
+   fi
+
+   default
+}
+
+src_install() {
+   default
+   dodoc AUTHORS ChangeLog NEWS README THANKS TODO
+
+   insinto /etc
+   doins etc/ypserv.conf etc/netgroup etc/netmasks
+   insinto /var/yp
+   newins etc/securenets securenets.default
+
+   newconfd "${FILESDIR}/ypserv.confd" ypserv
+   newconfd "${FILESDIR}/rpc.yppasswdd.confd" rpc.yppasswdd
+   newconfd "${FILESDIR}/rpc.ypxfrd.confd" rpc.ypxfrd
+
+   newinitd "${FILESDIR}/ypserv" ypserv
+   newinitd "${FILESDIR}/rpc.yppasswdd-r1" rpc.yppasswdd
+   newinitd "${FILESDIR}/rpc.ypxfrd-2.23" rpc.ypxfrd
+
+   echo "CONFIG_PROTECT=\"/var/yp/Makefile\"" > "${T}"/10ypserv
+   doenvd "${T}"/10ypserv
+}
+
+pkg_preinst() {
+   # This ebuilds installs an env file which CONFIG_PROTECTs 
/var/yp/Makefile,
+   # but if the user is migrating from older ypserv, this won't take effect
+   # immediately. Keep the older setup with Makefile.dist file and ask the 
user
+   # to migrate.
+   if [ -f "${ROOT}/var/yp/Makefile.dist" ]; then
+   mv "${D}/var/yp/Makefile" "${D}/var/yp/Makefile.dist" \
+   || die "mv failed"
+   cp "${ROOT}/var/yp/Makefile" "${D}/var/yp/Makefile" \
+   || die "cp failed"
+   elog "Please remove ${ROOT}/var/yp/Makefile.dist after making 
sure that"
+   elog "${ROOT}/var/yp/Makefile looks fine to you. It is now"
+   elog "CONFIG_PROTECTed, so further changes should be managed 
with"
+   elog "usual config management tools like etc-update or 
dispatch-conf."
+   fi
+}
+
+pkg_postinst() {
+   einfo "To complete setup, you will need to edit /var/yp/securenets,"
+   einfo "/etc/conf.d/ypserv, /etc/ypserv.conf, /etc/conf.d/rpc.yppasswdd"
+   einfo "and possibly /var/yp/Makefile."
+
+   einfo "To start the services at boot, you need to enable ypserv and 
optionally"
+   einfo "the rpc.yppasswdd and/or rpc.ypxfrd 

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

2016-05-02 Thread Austin English
commit: da6c1708cedd2e5624c6886f341607ee79581547
Author: Austin English  gentoo  org>
AuthorDate: Mon May  2 23:44:04 2016 +
Commit: Austin English  gentoo  org>
CommitDate: Mon May  2 23:44:04 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da6c1708

net-irc/ptlink-opm: remove old ebuilds

Package-Manager: portage-2.2.26

 net-irc/ptlink-opm/ptlink-opm-1.3.1.ebuild | 49 --
 1 file changed, 49 deletions(-)

diff --git a/net-irc/ptlink-opm/ptlink-opm-1.3.1.ebuild 
b/net-irc/ptlink-opm/ptlink-opm-1.3.1.ebuild
deleted file mode 100644
index f5f64ee..000
--- a/net-irc/ptlink-opm/ptlink-opm-1.3.1.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-inherit eutils user
-
-MY_P="PTlink.OPM${PV}"
-
-DESCRIPTION="PTlink Open Proxy Monitor"
-HOMEPAGE="http://www.ptlink.net/;
-SRC_URI="ftp://ftp.sunsite.dk/projects/ptlink/ptopm/${MY_P}.tar.gz;
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~x86 ~ppc"
-IUSE=""
-
-RDEPEND=""
-DEPEND=">=sys-apps/sed-4"
-
-S=${WORKDIR}/${MY_P}
-
-src_compile() {
-   econf \
-   --sysconfdir=/etc/ptlink-opm \
-   --localstatedir=/var/lib/ptlink-opm \
-   || die "econf failed"
-   emake || die "emake failed"
-}
-
-src_install() {
-   newbin src/ptopm ptlink-opm || die "newbin failed"
-
-   insinto /etc/ptlink-opm
-   newins samples/ptopm.dconf.sample ptopm.dconf || die "newins failed"
-   doins samples/scan_rules.dconf || die "doins failed"
-
-   keepdir /var/{lib,log}/ptlink-opm || die "keepdir failed"
-   dosym /var/log/ptlink-opm /var/lib/ptlink-opm/log || die "dosym failed"
-
-   dodoc CHANGES README || die "dodoc failed"
-
-   newinitd ${FILESDIR}/ptlink-opm.init.d ptlink-opm || die "newinitd 
failed"
-   newconfd ${FILESDIR}/ptlink-opm.conf.d ptlink-opm || die "newconfd 
failed"
-}
-
-pkg_postinst() {
-   enewuser ptlink-opm
-   chown ptlink-opm ${ROOT}/var/{log,lib}/ptlink-opm
-}



[gentoo-commits] repo/gentoo:master commit in: net-irc/ptlink-ircd/, net-irc/ptlink-ircd/files/

2016-05-02 Thread Austin English
commit: 5d0378800e15be9d0738ec308552239ddff469fc
Author: Austin English  gentoo  org>
AuthorDate: Mon May  2 23:41:33 2016 +
Commit: Austin English  gentoo  org>
CommitDate: Mon May  2 23:41:33 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d037880

net-irc/ptlink-ircd: use #!/sbin/openrc-run instead of #!/sbin/runscript

Gentoo-Bug: https://bugs.gentoo.org/573846

Package-Manager: portage-2.2.26

 net-irc/ptlink-ircd/files/ptlink-ircd.initd  |  4 +-
 net-irc/ptlink-ircd/ptlink-ircd-6.19.6-r3.ebuild | 95 
 2 files changed, 97 insertions(+), 2 deletions(-)

diff --git a/net-irc/ptlink-ircd/files/ptlink-ircd.initd 
b/net-irc/ptlink-ircd/files/ptlink-ircd.initd
index 6822cd6..6f050a8 100644
--- a/net-irc/ptlink-ircd/files/ptlink-ircd.initd
+++ b/net-irc/ptlink-ircd/files/ptlink-ircd.initd
@@ -1,5 +1,5 @@
-#!/sbin/runscript
-# Copyright 1999-2005 Gentoo Foundation
+#!/sbin/openrc-run
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 

diff --git a/net-irc/ptlink-ircd/ptlink-ircd-6.19.6-r3.ebuild 
b/net-irc/ptlink-ircd/ptlink-ircd-6.19.6-r3.ebuild
new file mode 100644
index 000..5f44a76
--- /dev/null
+++ b/net-irc/ptlink-ircd/ptlink-ircd-6.19.6-r3.ebuild
@@ -0,0 +1,95 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit eutils ssl-cert user
+
+MY_P="PTlink${PV}"
+
+DESCRIPTION="Secure IRC daemon with many advanced features"
+HOMEPAGE="http://www.ptlink.net/;
+SRC_URI="ftp://ftp.sunsite.dk/projects/ptlink/ircd/${MY_P}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~ppc ~sparc ~x86"
+IUSE="ssl"
+
+DEPEND="
+   sys-libs/zlib
+   ssl? ( dev-libs/openssl:0= )"
+
+S=${WORKDIR}/${MY_P}
+
+src_prepare() {
+   ecvs_clean
+
+   default
+}
+
+src_configure() {
+   econf \
+   --disable-ipv6 \
+   $(use_with ssl ssl openssl)
+}
+
+src_compile() {
+   emake CFLAGS="${CFLAGS}"
+}
+
+src_install() {
+   newbin src/ircd ptlink-ircd
+   newbin tools/fixklines ptlink-ircd-fixklines
+   newbin tools/mkpasswd ptlink-ircd-mkpasswd
+
+   insinto /etc/ptlink-ircd
+   fperms 700 /etc/ptlink-ircd
+   doins samples/{kline.conf,{opers,ptlink}.motd,help.{admin,oper,user}}
+   newins samples/example.conf.short ircd.conf
+   newins samples/example.conf.trillian ircd.conf.trillian
+   newins samples/main.dconf.sample main.dconf
+   newins samples/network.dconf.sample network.dconf
+
+   insinto /usr/share/ptlink-ircd/codepage
+   doins src/codepage/*.enc
+   dosym /usr/share/ptlink-ircd/codepage /etc/ptlink-ircd/codepage
+
+   rm -rf doc/old
+   dodoc doc/* doc_hybrid6/* ircdcron/* CHANGES README
+
+   keepdir /var/log/ptlink-ircd /var/lib/ptlink-ircd
+   dosym /var/log/ptlink-ircd /var/lib/ptlink-ircd/log
+
+   newinitd "${FILESDIR}/ptlink-ircd.initd" ptlink-ircd
+   newconfd "${FILESDIR}/ptlink-ircd.confd" ptlink-ircd
+}
+
+pkg_postinst() {
+   # Move docert from src_install() to install_cert for bug #201678
+   use ssl && (
+   if [[ ! -f "${ROOT}"/etc/ptlink-ircd/server.key.pem ]]; then
+   install_cert /etc/ptlink-ircd/server || die 
"install_cert failed"
+   mv "${ROOT}"/etc/ptlink-ircd/server.{crt,cert.pem}
+   mv "${ROOT}"/etc/ptlink-ircd/server.{csr,req.pem}
+   mv "${ROOT}"/etc/ptlink-ircd/server.key{,.pem}
+   fi
+   )
+
+   enewuser ptlink-ircd
+
+   chown ptlink-ircd \
+   "${ROOT}"/{etc,var/{log,lib}}/ptlink-ircd \
+   "${ROOT}"/etc/ptlink-ircd/server.key.pem
+
+   echo
+   elog "PTlink IRCd will run without configuration, although this is 
strongly"
+   elog "advised against."
+   echo
+   elog "You can find example cron script ircd.cron here:"
+   elog "   /usr/share/doc/${PF}"
+   echo
+   elog "You can also use /etc/init.d/ptlink-ircd to start at boot"
+   echo
+}



[gentoo-commits] repo/gentoo:master commit in: net-nds/389-admin/, net-nds/389-admin/files/

2016-05-02 Thread Austin English
commit: e1c8cd6331bb559dfcee280c4c03e07d021a1afa
Author: Austin English  gentoo  org>
AuthorDate: Mon May  2 23:53:41 2016 +
Commit: Austin English  gentoo  org>
CommitDate: Mon May  2 23:53:41 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e1c8cd63

net-nds/389-admin: use #!/sbin/openrc-run instead of #!/sbin/runscript

Gentoo-Bug: https://bugs.gentoo.org/573846

Package-Manager: portage-2.2.26

 net-nds/389-admin/389-admin-1.1.31-r1.ebuild | 171 +++
 net-nds/389-admin/files/389-admin.initd  |   4 +-
 2 files changed, 173 insertions(+), 2 deletions(-)

diff --git a/net-nds/389-admin/389-admin-1.1.31-r1.ebuild 
b/net-nds/389-admin/389-admin-1.1.31-r1.ebuild
new file mode 100644
index 000..3f7d2b7
--- /dev/null
+++ b/net-nds/389-admin/389-admin-1.1.31-r1.ebuild
@@ -0,0 +1,171 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+WANT_AUTOMAKE="1.9"
+
+MY_PV=${PV/_rc/.rc}
+MY_PV=${MY_PV/_a/.a}
+
+inherit eutils multilib autotools depend.apache
+
+DESCRIPTION="389 Directory Server (admin)"
+HOMEPAGE="http://port389.org/;
+SRC_URI="http://directory.fedoraproject.org/sources/${PN}-${MY_PV}.tar.bz2;
+
+LICENSE="GPL-2 Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="debug ipv6 selinux"
+
+# TODO snmp agent init script
+
+COMMON_DEPEND=">=app-admin/389-admin-console-1.1.0
+   >=app-admin/389-ds-console-1.1.0
+   app-misc/mime-types
+   dev-libs/389-adminutil
+   dev-libs/cyrus-sasl
+   dev-libs/icu:=
+   dev-libs/nss[utils]
+   || ( <=dev-libs/nspr-4.8.3-r3[ipv6?] >=dev-libs/nspr-4.8.4 )
+   dev-libs/svrcore
+   net-analyzer/net-snmp[ipv6?]
+   net-nds/openldap
+   selinux? (
+   sys-apps/checkpolicy
+   sys-apps/policycoreutils
+   )
+   >=sys-libs/db-4.2.52
+   sys-libs/pam
+   sys-apps/tcp-wrappers[ipv6?]
+   www-apache/mod_nss
+   
www-servers/apache:2[apache2_modules_actions,apache2_modules_alias,apache2_modules_auth_basic,apache2_modules_authz_default,apache2_modules_cgi,apache2_modules_mime_magic,apache2_modules_rewrite,apache2_modules_setenvif,suexec,threads]"
+RDEPEND="
+   ${COMMON_DEPEND}
+   www-client/lynx
+   selinux? ( sec-policy/selinux-base-policy )
+"
+DEPEND="sys-apps/sed ${COMMON_DEPEND}"
+
+S="${WORKDIR}/${PN}-${MY_PV}"
+
+need_apache2
+
+src_prepare() {
+   # as per 389 documentation, when 64bit, export USE_64
+   use amd64 && export USE_64=1
+
+   epatch "${FILESDIR}/1.1.11_rc1/0001-gentoo-apache-names.patch"
+   epatch "${FILESDIR}/1.1.11_rc1/0003-find-mod_nss.m4.patch"
+   epatch "${FILESDIR}/1.1.11_rc1/0004-rpath-fix.configure.ac.patch"
+   # Configuration fixes
+   epatch "${FILESDIR}/${PN}-cfgstuff-1.patch"
+
+   sed -e "s!SUBDIRS!# SUBDIRS!g" -i Makefile.am || die "sed failed"
+   # Setup default user/group, in this case it's dirsrv
+   sed -e "s!nobody!dirsrv!g" -i configure.ac || die "sed failed"
+
+   eautoreconf
+}
+
+src_configure() {
+   # stub autoconf triplet  :(
+   local myconf=""
+   use debug && myconf="--enable-debug"
+   use selinux &&  myconf="${myconf} --with-selinux"
+
+   econf \
+   --enable-threading \
+   --disable-rpath \
+   --with-adminutil=/usr \
+   --with-apr-config \
+   --with-apxs=${APXS} \
+   --with-fhs \
+   --with-httpd=${APACHE_BIN} \
+   --with-openldap \
+   ${myconf} || die "econf failed"
+}
+
+src_install () {
+
+   emake DESTDIR="${D}" install || die "emake failed"
+   keepdir /var/log/dirsrv/admin-serv
+
+   # remove redhat style init script.
+   rm -rf "${D}"/etc/rc.d
+   rm -rf "${D}"/etc/default
+
+   # install gentoo style init script.
+   newinitd "${FILESDIR}"/${PN}.initd ${PN}
+   newconfd "${FILESDIR}"/${PN}.confd ${PN}
+
+   # remove redhat style wrapper scripts
+   # and install gentoo scripts.
+   rm -rf "${D}"/usr/sbin/*-ds-admin
+   dosbin "${FILESDIR}"/*-ds-admin || die "cannot install gentoo 
start/stop scripts"
+
+   # In this version build systems for modules is delete :(
+   # manually install modules, not using apache-modules eclass
+   # because use bindled library
+
+   # install mod_admserv
+   exeinto "${APACHE_MODULESDIR}"
+   doexe "${S}/.libs"/mod_admserv.so || die "internal ebuild error: 
mod_admserv not found"
+
+   insinto "${APACHE_MODULES_CONFDIR}"
+   newins "${FILESDIR}/1.1.11_rc1"/48_mod_admserv.conf 48_mod_admserv \
+   || die "internal ebuild error: 
48_mod_admserv.conf not found"
+
+   # install mod_restard
+   exeinto "${APACHE_MODULESDIR}"
+   doexe "${S}/.libs"/mod_restartd.so || die "internal ebuild error: 
mod_restartd  not found"
+
+   insinto 

[gentoo-commits] repo/gentoo:master commit in: net-nntp/inn/, net-nntp/inn/files/

2016-05-02 Thread Austin English
commit: 0b6802a3d3ab74d5c6a46b6465b185aa4948dd64
Author: Austin English  gentoo  org>
AuthorDate: Mon May  2 23:15:34 2016 +
Commit: Austin English  gentoo  org>
CommitDate: Mon May  2 23:16:13 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b6802a3

net-nntp/inn: use #!/sbin/openrc-run instead of #!/sbin/runscript

Gentoo-Bug: https://bugs.gentoo.org/573846

Package-Manager: portage-2.2.26

 net-nntp/inn/files/innd-r1   |   4 +-
 net-nntp/inn/inn-2.5.3-r3.ebuild | 287 +++
 net-nntp/inn/inn-2.5.4-r1.ebuild | 287 +++
 net-nntp/inn/inn-2.5.5-r1.ebuild | 287 +++
 4 files changed, 863 insertions(+), 2 deletions(-)

diff --git a/net-nntp/inn/files/innd-r1 b/net-nntp/inn/files/innd-r1
index 1169a67..1e79074 100644
--- a/net-nntp/inn/files/innd-r1
+++ b/net-nntp/inn/files/innd-r1
@@ -1,5 +1,5 @@
-#!/sbin/runscript
-# Copyright 1999-2013 Gentoo Foundation
+#!/sbin/openrc-run
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 

diff --git a/net-nntp/inn/inn-2.5.3-r3.ebuild b/net-nntp/inn/inn-2.5.3-r3.ebuild
new file mode 100644
index 000..62eb9c6
--- /dev/null
+++ b/net-nntp/inn/inn-2.5.3-r3.ebuild
@@ -0,0 +1,287 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+PYTHON_COMPAT=( python2_7 )
+
+inherit autotools eutils multilib python-single-r1 ssl-cert toolchain-funcs
+
+DESCRIPTION="The Internet News daemon, fully featured NNTP server"
+HOMEPAGE="https://www.isc.org/software/inn;
+SRC_URI="ftp://ftp.isc.org/isc/inn/${P}.tar.gz;
+
+# GPL-2 only for init script
+LICENSE="ISC GPL-2+ public-domain BSD-4 BSD-2 RSA BSD MIT GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE="berkdb innkeywords inntaggedhash ipv6 kerberos perl python sasl ssl"
+
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
+DEPEND="
+   virtual/mta
+   dev-perl/MIME-tools
+   sys-libs/pam
+   sys-libs/zlib
+   kerberos? ( virtual/krb5 )
+   sasl? ( >=dev-libs/cyrus-sasl-2 )
+   ssl? ( dev-libs/openssl )
+   python? ( ${PYTHON_DEPS} )
+   berkdb? ( sys-libs/db )
+"
+RDEPEND="${DEPEND}"
+
+pkg_setup() {
+   use python && python-single-r1_pkg_setup
+}
+
+src_prepare() {
+   epatch "${FILESDIR}"/${P}-ar.patch
+   epatch "${FILESDIR}"/${P}-tests.patch
+
+   sed -e 's: -B .OLD::' -i Makefile.global.in || die
+
+   # Do not treat LDFLAGS as if it contained libraries to link to
+   sed -e 's:LDFLAGS::g' -i m4/python.m4 || die
+
+   # We do not have the biff service, but we do have comsat
+   sed -e 's:"biff":"comsat":g' -i tests/lib/getnameinfo-t.c || die
+
+   eautoreconf
+}
+
+src_configure() {
+   tc-export AR
+
+   econf \
+   --prefix=/usr/$(get_libdir)/news \
+   --sysconfdir=/etc/news \
+   --mandir=/usr/share/man \
+   --infodir=/usr/share/info \
+   --with-control-dir=/usr/$(get_libdir)/news/bin/control \
+   --with-filter-dir=/usr/$(get_libdir)/news/bin/filter \
+   --with-db-dir=/var/spool/news/db \
+   --with-doc-dir=/usr/share/doc/${PF} \
+   --with-spool-dir=/var/spool/news \
+   --with-log-dir=/var/log/news \
+   --with-run-dir=/run/news \
+   --with-tmp-dir=/var/spool/news/tmp \
+   --disable-libtool \
+   --with-gnu-ld \
+   --enable-setgid-inews \
+   --enable-uucp-rnews \
+   $(use_with perl) \
+   $(use_with python) \
+   $(use_with kerberos kerberos /usr) \
+   $(use_with sasl) \
+   $(use_with ssl openssl) \
+   $(use_with berkdb berkeleydb /usr) \
+   $(use_enable ipv6) \
+   $(use_enable !inntaggedhash largefiles) \
+   $(use_enable inntaggedhash tagged-hash) \
+   $(use_enable innkeywords keywords)
+}
+
+src_install() {
+   emake DESTDIR="${D}/" P="" SPECIAL="" install
+
+   chown -R root:0 \
+   "${D}"/usr/$(get_libdir)/news/$(get_libdir) \
+   "${D}"/usr/$(get_libdir)/news/include \
+   "${D}"/usr/share/doc \
+   "${D}"/usr/share/man \
+   || die
+   chmod 644 "${D}"/etc/news/* || die
+   chmod 640 \
+   "${D}"/etc/news/control.ctl \
+   "${D}"/etc/news/expire.ctl \
+   "${D}"/etc/news/incoming.conf \
+   "${D}"/etc/news/innfeed.conf \
+   "${D}"/etc/news/nntpsend.ctl \
+   "${D}"/etc/news/passwd.nntp \
+   "${D}"/etc/news/readers.conf \
+   || die
+
+   # Prevent old db/* files from being overwritten
+   insinto /usr/share/inn/dbexamples
+   newins 

[gentoo-commits] repo/gentoo:master commit in: net-news/amphetadesk/, net-news/amphetadesk/files/

2016-05-02 Thread Austin English
commit: a81d4741363d51ac91c97154b841452360ada5ff
Author: Austin English  gentoo  org>
AuthorDate: Mon May  2 23:05:30 2016 +
Commit: Austin English  gentoo  org>
CommitDate: Mon May  2 23:16:13 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a81d4741

net-news/amphetadesk: use #!/sbin/openrc-run instead of #!/sbin/runscript

Gentoo-Bug: https://bugs.gentoo.org/573846

Package-Manager: portage-2.2.26

 net-news/amphetadesk/amphetadesk-0.93.1-r1.ebuild | 42 +++
 net-news/amphetadesk/files/amphetadesk.initd  |  2 +-
 2 files changed, 43 insertions(+), 1 deletion(-)

diff --git a/net-news/amphetadesk/amphetadesk-0.93.1-r1.ebuild 
b/net-news/amphetadesk/amphetadesk-0.93.1-r1.ebuild
new file mode 100644
index 000..0200adc
--- /dev/null
+++ b/net-news/amphetadesk/amphetadesk-0.93.1-r1.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DESCRIPTION="AmphetaDesk is a free syndicated news aggregator"
+HOMEPAGE="http://www.disobey.com/amphetadesk/;
+SRC_URI="mirror://sourceforge/sourceforge/amphetadesk/${PN}-src-v${PV}.tar.gz"
+LICENSE="Artistic"
+SLOT="0"
+KEYWORDS="~amd64 ppc x86"
+IUSE=""
+DEPEND="dev-lang/perl
+   dev-perl/libwww-perl
+   dev-libs/expat
+   dev-perl/XML-Parser
+   virtual/perl-IO-Compress"
+S=${WORKDIR}/${PN}-src-v${PV}
+
+src_install() {
+   dodir /usr/share/amphetadesk
+   cp "${S}"/AmphetaDesk.pl "${D}"/usr/share/amphetadesk/AmphetaDesk.pl
+   dodoc README.txt
+   cp -R "${S}"/data "${D}"/usr/share/amphetadesk
+   cp -R "${S}"/docs "${D}"/usr/share/amphetadesk
+   cp -R "${S}"/lib "${D}"/usr/share/amphetadesk
+   cp -R "${S}"/templates "${D}"/usr/share/amphetadesk
+   newinitd "${FILESDIR}"/amphetadesk.initd amphetadesk
+}
+
+pkg_postinst() {
+   # fixes bug #25066 thanks to kloeri
+   /etc/init.d/depscan.sh
+
+   einfo "AmphetaDesk should be started and stopped with the runscript 
located at "
+   einfo "'/etc/init.d/amphetadesk'. You can access AmphetaDesk after it 
has been"
+   einfo "started in your browser of choice on port ."
+   einfo ""
+   ewarn "If you start AmphetaDesk at boot with rc-update don't give it a 
browser"
+   ewarn "to start up when it loads (in the options page)"
+}

diff --git a/net-news/amphetadesk/files/amphetadesk.initd 
b/net-news/amphetadesk/files/amphetadesk.initd
index 288a11b..0f2b02c 100644
--- a/net-news/amphetadesk/files/amphetadesk.initd
+++ b/net-news/amphetadesk/files/amphetadesk.initd
@@ -1,4 +1,4 @@
-#!/sbin/runscript
+#!/sbin/openrc-run
 
 start() {
ebegin "Starting AmphetaDesk"



[gentoo-commits] repo/gentoo:master commit in: net-nntp/inn/

2016-05-02 Thread Austin English
commit: da138f2b037a8f644d747eb3a6417356400881d3
Author: Austin English  gentoo  org>
AuthorDate: Mon May  2 23:15:58 2016 +
Commit: Austin English  gentoo  org>
CommitDate: Mon May  2 23:16:13 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da138f2b

net-nntp/inn: remove old versions

Package-Manager: portage-2.2.26

 net-nntp/inn/inn-2.5.3-r2.ebuild | 287 ---
 net-nntp/inn/inn-2.5.4.ebuild| 287 ---
 net-nntp/inn/inn-2.5.5.ebuild| 287 ---
 3 files changed, 861 deletions(-)

diff --git a/net-nntp/inn/inn-2.5.3-r2.ebuild b/net-nntp/inn/inn-2.5.3-r2.ebuild
deleted file mode 100644
index 5921291..000
--- a/net-nntp/inn/inn-2.5.3-r2.ebuild
+++ /dev/null
@@ -1,287 +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 )
-
-inherit autotools eutils multilib python-single-r1 ssl-cert toolchain-funcs
-
-DESCRIPTION="The Internet News daemon, fully featured NNTP server"
-HOMEPAGE="https://www.isc.org/software/inn;
-SRC_URI="ftp://ftp.isc.org/isc/inn/${P}.tar.gz;
-
-# GPL-2 only for init script
-LICENSE="ISC GPL-2+ public-domain BSD-4 BSD-2 RSA BSD MIT GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE="berkdb innkeywords inntaggedhash ipv6 kerberos perl python sasl ssl"
-
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-
-DEPEND="
-   virtual/mta
-   dev-perl/MIME-tools
-   sys-libs/pam
-   sys-libs/zlib
-   kerberos? ( virtual/krb5 )
-   sasl? ( >=dev-libs/cyrus-sasl-2 )
-   ssl? ( dev-libs/openssl )
-   python? ( ${PYTHON_DEPS} )
-   berkdb? ( sys-libs/db )
-"
-RDEPEND="${DEPEND}"
-
-pkg_setup() {
-   use python && python-single-r1_pkg_setup
-}
-
-src_prepare() {
-   epatch "${FILESDIR}"/${P}-ar.patch
-   epatch "${FILESDIR}"/${P}-tests.patch
-
-   sed -e 's: -B .OLD::' -i Makefile.global.in || die
-
-   # Do not treat LDFLAGS as if it contained libraries to link to
-   sed -e 's:LDFLAGS::g' -i m4/python.m4 || die
-
-   # We do not have the biff service, but we do have comsat
-   sed -e 's:"biff":"comsat":g' -i tests/lib/getnameinfo-t.c || die
-
-   eautoreconf
-}
-
-src_configure() {
-   tc-export AR
-
-   econf \
-   --prefix=/usr/$(get_libdir)/news \
-   --sysconfdir=/etc/news \
-   --mandir=/usr/share/man \
-   --infodir=/usr/share/info \
-   --with-control-dir=/usr/$(get_libdir)/news/bin/control \
-   --with-filter-dir=/usr/$(get_libdir)/news/bin/filter \
-   --with-db-dir=/var/spool/news/db \
-   --with-doc-dir=/usr/share/doc/${PF} \
-   --with-spool-dir=/var/spool/news \
-   --with-log-dir=/var/log/news \
-   --with-run-dir=/run/news \
-   --with-tmp-dir=/var/spool/news/tmp \
-   --disable-libtool \
-   --with-gnu-ld \
-   --enable-setgid-inews \
-   --enable-uucp-rnews \
-   $(use_with perl) \
-   $(use_with python) \
-   $(use_with kerberos kerberos /usr) \
-   $(use_with sasl) \
-   $(use_with ssl openssl) \
-   $(use_with berkdb berkeleydb /usr) \
-   $(use_enable ipv6) \
-   $(use_enable !inntaggedhash largefiles) \
-   $(use_enable inntaggedhash tagged-hash) \
-   $(use_enable innkeywords keywords)
-}
-
-src_install() {
-   emake DESTDIR="${D}/" P="" SPECIAL="" install
-
-   chown -R root:0 \
-   "${D}"/usr/$(get_libdir)/news/$(get_libdir) \
-   "${D}"/usr/$(get_libdir)/news/include \
-   "${D}"/usr/share/doc \
-   "${D}"/usr/share/man \
-   || die
-   chmod 644 "${D}"/etc/news/* || die
-   chmod 640 \
-   "${D}"/etc/news/control.ctl \
-   "${D}"/etc/news/expire.ctl \
-   "${D}"/etc/news/incoming.conf \
-   "${D}"/etc/news/innfeed.conf \
-   "${D}"/etc/news/nntpsend.ctl \
-   "${D}"/etc/news/passwd.nntp \
-   "${D}"/etc/news/readers.conf \
-   || die
-
-   # Prevent old db/* files from being overwritten
-   insinto /usr/share/inn/dbexamples
-   newins site/active.minimal active
-   newins site/newsgroups.minimal newsgroups
-
-   keepdir \
-   /var/log/news \
-   /var/spool/news/archive \
-   /var/spool/news/articles \
-   /var/spool/news/db \
-   /var/spool/news/incoming \
-   /var/spool/news/incoming/bad \
-   /var/spool/news/innfeed \
-   /var/spool/news/outgoing \
-   /var/spool/news/overview \
-   /var/spool/news/tmp
-
-   fowners 

[gentoo-commits] repo/gentoo:master commit in: sci-mathematics/octave/, sci-mathematics/octave/files/

2016-05-02 Thread Mark Wright
commit: 595225ee11a3f1228d45e112b757e6beda119c78
Author: Mark Wright  gentoo  org>
AuthorDate: Mon May  2 22:59:40 2016 +
Commit: Mark Wright  gentoo  org>
CommitDate: Mon May  2 23:00:39 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=595225ee

sci-mathematics/octave: Fix bug 554226, thanks to Helmut Jarausch for reporting.

Thanks to Patric Schmitz for helping. The patch from upstream is in versions 
after 4.0.

Gentoo-bug: 554226

Package-Manager: portage-2.2.28

 .../octave/files/octave-4.0.0-texinfo.patch| 63 ++
 sci-mathematics/octave/octave-4.0.0-r1.ebuild  |  5 ++
 2 files changed, 68 insertions(+)

diff --git a/sci-mathematics/octave/files/octave-4.0.0-texinfo.patch 
b/sci-mathematics/octave/files/octave-4.0.0-texinfo.patch
new file mode 100644
index 000..d94e751
--- /dev/null
+++ b/sci-mathematics/octave/files/octave-4.0.0-texinfo.patch
@@ -0,0 +1,63 @@
+diff -r 3300cb76cccd -r 2ec049e50ed8 libinterp/corefcn/utils.cc
+--- a/libinterp/corefcn/utils.ccTue Jul 07 19:09:35 2015 -0700
 b/libinterp/corefcn/utils.ccThu Jul 09 21:44:09 2015 -0400
+@@ -1379,7 +1379,7 @@
+ \n\
+ Implementation Note: Strings are first converted to double values before 
the\n\
+ checks for valid indices are made.  Unless a string contains the NULL\n\
+-character @nospell{\"\\0\"}, it will always be a valid index.\n\
++character @nospell{\"@xbackslashchar{}0\"}, it will always be a valid 
index.\n\
+ @end deftypefn")
+ {
+   octave_value retval;
+diff -r 3300cb76cccd -r 2ec049e50ed8 scripts/io/beep.m
+--- a/scripts/io/beep.m Tue Jul 07 19:09:35 2015 -0700
 b/scripts/io/beep.m Thu Jul 09 21:44:09 2015 -0400
+@@ -20,9 +20,9 @@
+ ## @deftypefn {Function File} {} beep ()
+ ## Produce a beep from the speaker (or visual bell).
+ ##
+-## This function sends the alarm character @qcode{"\a"} to the terminal.
+-## Depending on the user's configuration this may produce an audible beep,
+-## a visual bell, or nothing at all.
++## This function sends the alarm character @qcode{"@xbackslashchar{}a"} to
++## the terminal. Depending on the user's configuration this may produce an
++## audible beep, a visual bell, or nothing at all.
+ ## @seealso{puts, fputs, printf, fprintf}
+ ## @end deftypefn
+ 
+diff -r 2ec049e50ed8 -r 45d7be391982 doc/Makefile.am
+--- a/doc/Makefile.am   Thu Jul 09 21:44:09 2015 -0400
 b/doc/Makefile.am   Thu Jul 09 21:45:26 2015 -0400
+@@ -26,7 +26,6 @@
+ 
+ EXTRA_DIST = \
+   Makefile.am \
+-  texinfo.tex \
+   texmf.cnf
+ 
+ SUBDIRS = doxyhtml interpreter liboctave refcard
+diff -r 2ec049e50ed8 -r 45d7be391982 doc/interpreter/Makefile.am
+--- a/doc/interpreter/Makefile.am   Thu Jul 09 21:44:09 2015 -0400
 b/doc/interpreter/Makefile.am   Thu Jul 09 21:45:26 2015 -0400
+@@ -20,8 +20,6 @@
+ 
+ include $(top_srcdir)/build-aux/common.mk
+ 
+-TEXINFO_TEX = ../texinfo.tex
+-
+ ## Leading PATH_SEPARATOR required due to weak parsing by dvips (12/04/09)
+ TEXINPUTS := 
"$(PATH_SEPARATOR)$(srcdir)$(PATH_SEPARATOR)$(TEXINPUTS)$(PATH_SEPARATOR)"
+ export TEXINPUTS
+diff -r 2ec049e50ed8 -r 45d7be391982 doc/liboctave/Makefile.am
+--- a/doc/liboctave/Makefile.am Thu Jul 09 21:44:09 2015 -0400
 b/doc/liboctave/Makefile.am Thu Jul 09 21:45:26 2015 -0400
+@@ -20,8 +20,6 @@
+ 
+ include $(top_srcdir)/build-aux/common.mk
+ 
+-TEXINFO_TEX = ../texinfo.tex
+-
+ info_TEXINFOS = liboctave.texi
+ 
+ liboctave_TEXINFOS = \

diff --git a/sci-mathematics/octave/octave-4.0.0-r1.ebuild 
b/sci-mathematics/octave/octave-4.0.0-r1.ebuild
index 88a67af..d19407f 100644
--- a/sci-mathematics/octave/octave-4.0.0-r1.ebuild
+++ b/sci-mathematics/octave/octave-4.0.0-r1.ebuild
@@ -100,6 +100,11 @@ src_prepare() {
-e 's@A-Za-z0-9@[:alnum:]@g' \
-e 's@A-Za-z@[:alpha:]@g' \
libinterp/mkbuiltins || die
+
+   # Fix bug 554226 - sci-mathematics/octave-4.0.0 fails because of a 
LaTeX error
+   epatch "${FILESDIR}"/${PN}-4.0.0-texinfo.patch
+   rm -f "${S}"/doc/texinfo.tex || die
+
autotools-utils_src_prepare
 }
 



[gentoo-commits] repo/gentoo:master commit in: sys-kernel/git-sources/

2016-05-02 Thread Mike Pagano
commit: ad871776f3d8e65904d5d1466e456b611b62f6e7
Author: Mike Pagano  gentoo  org>
AuthorDate: Mon May  2 22:44:28 2016 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Mon May  2 22:44:28 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad871776

sys-kernel/git-sources: Linux patch 4.6_rc6

Package-Manager: portage-2.2.26

 sys-kernel/git-sources/Manifest   |  1 +
 sys-kernel/git-sources/git-sources-4.6_rc6.ebuild | 40 +++
 2 files changed, 41 insertions(+)

diff --git a/sys-kernel/git-sources/Manifest b/sys-kernel/git-sources/Manifest
index 0ee8386..4fe92fd 100644
--- a/sys-kernel/git-sources/Manifest
+++ b/sys-kernel/git-sources/Manifest
@@ -4,3 +4,4 @@ DIST patch-4.6-rc2.xz 6078920 SHA256 
386e1945510a0635cde0598d49b6624c8753b3bab1c
 DIST patch-4.6-rc3.xz 6623292 SHA256 
45bc4f50c98d6dfea3c802f89cbae79553c308f3f2fc802d8fd9f84cb7f9f808 SHA512 
8356aae1c44226b7747622df0a18a416bce0ea882c8d7e5c11238308ad3de3fa3913513a6f94b60fc9b0544e8c3506561860c696c7816939289e9dadee6eec85
 WHIRLPOOL 
dd157f6a29d2a5ac0d2a5c91fd8e092cb597f4c710b01767c1c06b17e04af10e30cde4c04b7596e070ab260b6467c9a3a596c35c54071488bf2b676b417c776f
 DIST patch-4.6-rc4.xz 6647640 SHA256 
707e6c719f33e6b3982af1e8943877135a24ec53fc0cec38cf4ecd468ce3713b SHA512 
2a7fea04168369a65807a4e3330e19e4899962060861c72e6325c14dd4a5c05ab940f27c38402d8c5e8304b23c193d4a037940de05a9c06927aafe6dd34dd579
 WHIRLPOOL 
a0ed8e0a31bd2736730b5a6c68d1ee2aca728e6b91206dbbc071aea6a2b6111c642a55e7a7d9636a6e5f7ab67aefe366796a844b06ff81912da59f8041a7e577
 DIST patch-4.6-rc5.xz 6290816 SHA256 
792466e412ed0f3a1401c7563eef138c03bc76e21e6928e220035eb4a0f42e2f SHA512 
ce6e32373b8419bad08eab0cf02fde49391db13269323a762322d406fbfb0348604323a849d8f6f96f1e6e1e93cbf082eb91e5b248e45d633a2f863f9e79ceee
 WHIRLPOOL 
576db33881be4b5ef11fff424b6f5ec263b9863a7211f9273fe2a05519cd9bb96ba70cddcb6593080b62bc0625aa3f4fc0ec47b2d7f9acb3504762c197ce900f
+DIST patch-4.6-rc6.xz 6323852 SHA256 
c066c61cf1d1908ba40e5cf5d894de2dc8e4a7bfc83e69af1fb87ef6308deaa3 SHA512 
3af8854917e2d80d7ac626de1bf23a827275313ab1715a16a1447e745a81a96853c1546b32bd53c4234e12b26ef7ef38b36bd0eacf153deaaa4004cea8ae28ac
 WHIRLPOOL 
4bbc31e4e8d34526b59a4369f79424515a59d011ef03a0bcd57668369e46166dcc44dc33563685a2d71c94edc92ec561630a473d6e8101f73fbe46de00edec4d

diff --git a/sys-kernel/git-sources/git-sources-4.6_rc6.ebuild 
b/sys-kernel/git-sources/git-sources-4.6_rc6.ebuild
new file mode 100644
index 000..af024fb
--- /dev/null
+++ b/sys-kernel/git-sources/git-sources-4.6_rc6.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+UNIPATCH_STRICTORDER="yes"
+K_NOUSENAME="yes"
+K_NOSETEXTRAVERSION="yes"
+K_NOUSEPR="yes"
+K_SECURITY_UNSUPPORTED="yes"
+K_BASE_VER="4.5"
+K_EXP_GENPATCHES_NOUSE="1"
+ETYPE="sources"
+CKV="${PVR/-r/-git}"
+
+# only use this if it's not an _rc/_pre release
+[ "${PV/_pre}" == "${PV}" ] && [ "${PV/_rc}" == "${PV}" ] && OKV="${PV}"
+inherit kernel-2
+detect_version
+
+DESCRIPTION="The very latest -git version of the Linux kernel"
+HOMEPAGE="https://www.kernel.org;
+SRC_URI="${KERNEL_URI}"
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86"
+IUSE=""
+
+K_EXTRAEINFO="This kernel is not supported by Gentoo due to its unstable and
+experimental nature. If you have any issues, try a matching vanilla-sources
+ebuild -- if the problem is not there, please contact the upstream kernel
+developers at https://bugzilla.kernel.org and on the linux-kernel mailing list 
to
+report the problem so it can be fixed in time for the next kernel release."
+
+RDEPEND=""
+DEPEND="${RDEPEND}
+   >=sys-devel/patch-2.7.4"
+
+pkg_postinst() {
+   postinst_sources
+}



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

2016-05-02 Thread Mark Wright
commit: 8a47ee1317a53e70dbced981850b377d02725dff
Author: Mark Wright  gentoo  org>
AuthorDate: Mon May  2 22:38:11 2016 +
Commit: Mark Wright  gentoo  org>
CommitDate: Mon May  2 22:39:06 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a47ee13

sci-mathematics/octave: revbump 4.0.2 for bug 566134 fix.

Gentoo-bug: 566134

Package-Manager: portage-2.2.28

 sci-mathematics/octave/{octave-4.0.2.ebuild => octave-4.0.2-r1.ebuild} | 0
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/sci-mathematics/octave/octave-4.0.2.ebuild 
b/sci-mathematics/octave/octave-4.0.2-r1.ebuild
similarity index 100%
rename from sci-mathematics/octave/octave-4.0.2.ebuild
rename to sci-mathematics/octave/octave-4.0.2-r1.ebuild



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

2016-05-02 Thread Mark Wright
commit: 3869c30043d3a0eb4c9bb11709346ee012fcc0c4
Author: Mark Wright  gentoo  org>
AuthorDate: Mon May  2 14:43:40 2016 +
Commit: Mark Wright  gentoo  org>
CommitDate: Mon May  2 22:38:59 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3869c300

sci-mathematics/octave: Fix bug 566134, thanks to Francisco Vazquez for 
reporting.

Gentoo-bug: 566134

Package-Manager: portage-2.2.28

 .../octave/{octave-4.0.2.ebuild => octave-4.0.0-r1.ebuild}   | 12 +---
 .../octave/{octave-4.0.2.ebuild => octave-4.0.1-r1.ebuild}   | 12 +---
 sci-mathematics/octave/octave-4.0.2.ebuild   | 12 +---
 3 files changed, 27 insertions(+), 9 deletions(-)

diff --git a/sci-mathematics/octave/octave-4.0.2.ebuild 
b/sci-mathematics/octave/octave-4.0.0-r1.ebuild
similarity index 94%
copy from sci-mathematics/octave/octave-4.0.2.ebuild
copy to sci-mathematics/octave/octave-4.0.0-r1.ebuild
index a527708..88a67af 100644
--- a/sci-mathematics/octave/octave-4.0.2.ebuild
+++ b/sci-mathematics/octave/octave-4.0.0-r1.ebuild
@@ -69,8 +69,8 @@ DEPEND="${RDEPEND}
doc? (
virtual/latex-base
dev-texlive/texlive-genericrecommended
-   dev-texlive/texlive-metapost
-   sys-apps/texinfo )
+   dev-texlive/texlive-metapost )
+   sys-apps/texinfo
dev-util/gperf
virtual/pkgconfig"
 
@@ -160,7 +160,13 @@ src_compile() {
 
 src_install() {
autotools-utils_src_install
-   use doc && dodoc $(find doc -name \*.pdf)
+   if use doc; then
+   dodoc $(find doc -name \*.pdf)
+   else
+   # bug 566134, macros.texi is installed by make install if use 
doc
+   insinto /usr/share/${PN}/${PV}/etc
+   doins doc/interpreter/macros.texi
+   fi
[[ -e test/fntests.log ]] && dodoc test/fntests.log
use java && \
java-pkg_regjar "${ED}/usr/share/${PN}/${PV}/m/java/octave.jar"

diff --git a/sci-mathematics/octave/octave-4.0.2.ebuild 
b/sci-mathematics/octave/octave-4.0.1-r1.ebuild
similarity index 94%
copy from sci-mathematics/octave/octave-4.0.2.ebuild
copy to sci-mathematics/octave/octave-4.0.1-r1.ebuild
index a527708..88a67af 100644
--- a/sci-mathematics/octave/octave-4.0.2.ebuild
+++ b/sci-mathematics/octave/octave-4.0.1-r1.ebuild
@@ -69,8 +69,8 @@ DEPEND="${RDEPEND}
doc? (
virtual/latex-base
dev-texlive/texlive-genericrecommended
-   dev-texlive/texlive-metapost
-   sys-apps/texinfo )
+   dev-texlive/texlive-metapost )
+   sys-apps/texinfo
dev-util/gperf
virtual/pkgconfig"
 
@@ -160,7 +160,13 @@ src_compile() {
 
 src_install() {
autotools-utils_src_install
-   use doc && dodoc $(find doc -name \*.pdf)
+   if use doc; then
+   dodoc $(find doc -name \*.pdf)
+   else
+   # bug 566134, macros.texi is installed by make install if use 
doc
+   insinto /usr/share/${PN}/${PV}/etc
+   doins doc/interpreter/macros.texi
+   fi
[[ -e test/fntests.log ]] && dodoc test/fntests.log
use java && \
java-pkg_regjar "${ED}/usr/share/${PN}/${PV}/m/java/octave.jar"

diff --git a/sci-mathematics/octave/octave-4.0.2.ebuild 
b/sci-mathematics/octave/octave-4.0.2.ebuild
index a527708..88a67af 100644
--- a/sci-mathematics/octave/octave-4.0.2.ebuild
+++ b/sci-mathematics/octave/octave-4.0.2.ebuild
@@ -69,8 +69,8 @@ DEPEND="${RDEPEND}
doc? (
virtual/latex-base
dev-texlive/texlive-genericrecommended
-   dev-texlive/texlive-metapost
-   sys-apps/texinfo )
+   dev-texlive/texlive-metapost )
+   sys-apps/texinfo
dev-util/gperf
virtual/pkgconfig"
 
@@ -160,7 +160,13 @@ src_compile() {
 
 src_install() {
autotools-utils_src_install
-   use doc && dodoc $(find doc -name \*.pdf)
+   if use doc; then
+   dodoc $(find doc -name \*.pdf)
+   else
+   # bug 566134, macros.texi is installed by make install if use 
doc
+   insinto /usr/share/${PN}/${PV}/etc
+   doins doc/interpreter/macros.texi
+   fi
[[ -e test/fntests.log ]] && dodoc test/fntests.log
use java && \
java-pkg_regjar "${ED}/usr/share/${PN}/${PV}/m/java/octave.jar"



[gentoo-commits] repo/gentoo:master commit in: net-mail/courier-imap/, net-mail/courier-imap/files/

2016-05-02 Thread Austin English
commit: 90ed5084795deceaf8f77100072807d0fb4432a8
Author: Austin English  gentoo  org>
AuthorDate: Mon May  2 21:26:15 2016 +
Commit: Austin English  gentoo  org>
CommitDate: Mon May  2 22:21:47 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90ed5084

net-mail/courier-imap: use #!/sbin/openrc-run instead of #!/sbin/runscript

Gentoo-Bug: https://bugs.gentoo.org/573846

Package-Manager: portage-2.2.26

 net-mail/courier-imap/courier-imap-4.15-r2.ebuild  | 230 +
 .../courier-imap/courier-imap-4.16.0-r1.ebuild | 219 
 .../courier-imap/courier-imap-4.16.2-r1.ebuild | 219 
 .../courier-imap-4.0.6-r1-courier-imapd-ssl.rc6|   4 +-
 .../files/courier-imap-4.0.6-r1-courier-imapd.rc6  |   4 +-
 .../courier-imap-4.0.6-r1-courier-pop3d-ssl.rc6|   4 +-
 .../files/courier-imap-4.0.6-r1-courier-pop3d.rc6  |   4 +-
 7 files changed, 676 insertions(+), 8 deletions(-)

diff --git a/net-mail/courier-imap/courier-imap-4.15-r2.ebuild 
b/net-mail/courier-imap/courier-imap-4.15-r2.ebuild
new file mode 100644
index 000..f58f093
--- /dev/null
+++ b/net-mail/courier-imap/courier-imap-4.15-r2.ebuild
@@ -0,0 +1,230 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit autotools eutils multilib libtool systemd
+
+DESCRIPTION="An IMAP daemon designed specifically for maildirs"
+HOMEPAGE="http://www.courier-mta.org/;
+SRC_URI="mirror://sourceforge/courier/${P}.tar.bz2"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd"
+IUSE="berkdb debug fam +gdbm ipv6 selinux gnutls trashquota"
+
+REQUIRED_USE="|| ( berkdb gdbm )"
+
+CDEPEND="
+   gnutls? ( net-libs/gnutls )
+   !gnutls? ( >=dev-libs/openssl-0.9.6:0= )
+   >=net-libs/courier-authlib-0.61
+   >=net-mail/mailbase-0.00-r8
+   berkdb? ( sys-libs/db:= )
+   fam? ( virtual/fam )
+   gdbm? ( >=sys-libs/gdbm-1.8.0 )"
+DEPEND="${CDEPEND}
+   dev-lang/perl
+   !mail-mta/courier
+   userland_GNU? ( sys-process/procps )"
+RDEPEND="${CDEPEND}
+   selinux? ( sec-policy/selinux-courier )"
+
+# get rid of old style virtual - bug 350792
+# all blockers really needed?
+RDEPEND="${RDEPEND}
+   !mail-mta/courier
+   !net-mail/bincimap
+   !net-mail/cyrus-imapd
+   !net-mail/uw-imap"
+
+RC_VER="4.0.6-r1"
+INITD_VER="4.0.6-r1"
+
+src_prepare() {
+   # Bug #48838. Patch to enable/disable FAM support.
+   # 20 Aug 2004 langth...@gentoo.org
+   # This patch should fix bug #51540. fam USE flag is not needed for 
shared folder support.
+   epatch "${FILESDIR}"/${P}-disable-fam-configure.ac.patch
+
+   # Kill unneeded call to AC_PROG_SYSCONFTOOL (bug #168206).
+   epatch "${FILESDIR}"/${P}-aclocal-fix.patch
+
+   # These patches should fix problems detecting BerkeleyDB.
+   # We now can compile with db4 support.
+   if use berkdb ; then
+   epatch \
+   "${FILESDIR}"/${P}-db4-bdbobj_configure.ac.patch \
+   "${FILESDIR}"/${P}-db4-configure.ac.patch
+   fi
+
+   eautoreconf
+}
+
+src_configure() {
+   local myconf=""
+
+   # 19 Aug 2004 langth...@gentoo.org
+   # Default to gdbm if both berkdb and gdbm are present.
+   if use gdbm ; then
+   einfo "Building with GDBM support"
+   myconf="${myconf} --with-db=gdbm"
+   elif use berkdb ; then
+   einfo "Building with BerkeleyDB support"
+   myconf="${myconf} --with-db=db"
+   fi
+
+   # Disabling unicode is no longer supported
+   # By default all available character sets are included
+   # Set ENABLE_UNICODE=iso-8859-1,utf-8,iso-8859-10
+   # to include only specified translation tables.
+   if [[ -z "${ENABLE_UNICODE}" ]] ; then
+   einfo "ENABLE_UNICODE is not set, building with all available 
character sets"
+   myconf="${myconf} --enable-unicode"
+   else
+   einfo "ENABLE_UNICODE is set, building with 
unicode=${ENABLE_UNICODE}"
+   myconf="${myconf} --enable-unicode=${ENABLE_UNICODE}"
+   fi
+
+   if use trashquota ; then
+   einfo "Building with Trash Quota Support"
+   myconf="${myconf} --with-trashquota"
+   fi
+
+   use debug && myconf="${myconf} debug=true"
+
+   # Do the actual build now
+   econf \
+   --disable-root-check \
+   --bindir=/usr/sbin \
+   --sysconfdir=/etc/${PN} \
+   --libexecdir=/usr/$(get_libdir)/${PN} \
+   --localstatedir=/var/lib/${PN} \
+   --with-authdaemonvar=/var/lib/${PN}/authdaemon \
+   --enable-workarounds-for-imap-client-bugs \
+   --with-mailuser=mail \
+   --with-mailgroup=mail \
+

[gentoo-commits] repo/gentoo:master commit in: net-im/reaim/

2016-05-02 Thread Austin English
commit: 493f9ae4616e651050131693122624946ff36505
Author: Austin English  gentoo  org>
AuthorDate: Mon May  2 22:21:39 2016 +
Commit: Austin English  gentoo  org>
CommitDate: Mon May  2 22:21:47 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=493f9ae4

net-im/reaim: remove old ebuild

Package-Manager: portage-2.2.26

 net-im/reaim/reaim-0.8-r1.ebuild | 36 
 1 file changed, 36 deletions(-)

diff --git a/net-im/reaim/reaim-0.8-r1.ebuild b/net-im/reaim/reaim-0.8-r1.ebuild
deleted file mode 100644
index 59cb354..000
--- a/net-im/reaim/reaim-0.8-r1.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=4
-
-inherit toolchain-funcs
-
-DESCRIPTION="AIM transport proxy over NAT firewalls"
-HOMEPAGE="http://reaim.sourceforge.net/;
-SRC_URI="mirror://sourceforge/reaim/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE=""
-
-DEPEND=">=sys-apps/sed-4"
-RDEPEND="net-firewall/iptables"
-
-pkg_setup() {
-   tc-export CC
-}
-
-src_prepare() {
-   sed -i -e 's/gcc/$(CC) $(CFLAGS) $(LDFLAGS)/' \
-   -e 's/ -g / /'  Makefile || die "sed failed" #365863
-}
-
-src_install() {
-   dosbin reaim || die
-   doman reaim.8
-   dodoc CREDITS
-   dohtml -r -x CVS html/*
-   newinitd "${FILESDIR}"/reaim reaim
-}



[gentoo-commits] repo/gentoo:master commit in: net-im/mu-conference/, net-im/mu-conference/files/

2016-05-02 Thread Austin English
commit: 0e5dbc45bad9c39c64887428201e9e4c78d0f29c
Author: Austin English  gentoo  org>
AuthorDate: Mon May  2 19:18:30 2016 +
Commit: Austin English  gentoo  org>
CommitDate: Mon May  2 22:21:47 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e5dbc45

net-im/mu-conference: #!/sbin/openrc-run instead of #!/sbin/runscript

Gentoo-Bug: https://bugs.gentoo.org/573846

Package-Manager: portage-2.2.26

 net-im/mu-conference/files/mu-conference-0.7.init  |  2 +-
 net-im/mu-conference/files/muc-transport.init  |  2 +-
 net-im/mu-conference/files/muc-transport.init-r2   |  2 +-
 net-im/mu-conference/mu-conference-0.7-r1.ebuild   | 83 
 net-im/mu-conference/mu-conference-0.8-r2.ebuild   | 90 ++
 .../mu-conference/mu-conference-0.8.81-r1.ebuild   | 88 +
 6 files changed, 264 insertions(+), 3 deletions(-)

diff --git a/net-im/mu-conference/files/mu-conference-0.7.init 
b/net-im/mu-conference/files/mu-conference-0.7.init
index 20400ac..a41c470 100644
--- a/net-im/mu-conference/files/mu-conference-0.7.init
+++ b/net-im/mu-conference/files/mu-conference-0.7.init
@@ -1,4 +1,4 @@
-#!/sbin/runscript
+#!/sbin/openrc-run
 
 depend() {
need net

diff --git a/net-im/mu-conference/files/muc-transport.init 
b/net-im/mu-conference/files/muc-transport.init
index 39f6115..c10c0ae 100644
--- a/net-im/mu-conference/files/muc-transport.init
+++ b/net-im/mu-conference/files/muc-transport.init
@@ -1,4 +1,4 @@
-#!/sbin/runscript
+#!/sbin/openrc-run
 
 depend() {
need net

diff --git a/net-im/mu-conference/files/muc-transport.init-r2 
b/net-im/mu-conference/files/muc-transport.init-r2
index 03978bd..f1d5379 100644
--- a/net-im/mu-conference/files/muc-transport.init-r2
+++ b/net-im/mu-conference/files/muc-transport.init-r2
@@ -1,4 +1,4 @@
-#!/sbin/runscript
+#!/sbin/openrc-run
 
 depend() {
need net

diff --git a/net-im/mu-conference/mu-conference-0.7-r1.ebuild 
b/net-im/mu-conference/mu-conference-0.7-r1.ebuild
new file mode 100644
index 000..9b37494
--- /dev/null
+++ b/net-im/mu-conference/mu-conference-0.7-r1.ebuild
@@ -0,0 +1,83 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit eutils
+
+DESCRIPTION="Multi-User Chat for jabberd"
+HOMEPAGE="https://gna.org/projects/mu-conference/;
+SRC_URI="http://download.gna.org/mu-conference/${PN}_${PV}.tar.gz;
+
+LICENSE="GPL-2"
+KEYWORDS="~amd64 ~ppc ~sparc x86"
+SLOT="0"
+
+DEPEND="
+   dev-libs/expat
+   >=dev-libs/glib-2
+   net-dns/libidn
+   net-im/jabberd2
+   mysql? ( virtual/mysql )"
+RDEPEND="${DEPEND}"
+IUSE="mysql"
+
+S="${WORKDIR}/${PN}_${PV}"
+
+src_prepare() {
+   # Fix missing header in src/conference_user.c in order to
+   # make emerge happy and avoid QA notice.
+   sed -i "/conference.h/ i #define _XOPEN_SOURCE" src/conference_user.c 
|| die
+
+   if use mysql; then
+   sed -i '/^CFLAGS/ a CFLAGS:=$(CFLAGS) -DHAVE_MYSQL' 
src/Makefile || die
+   else
+   # Makefile is broken. Should not always link against mysql
+   sed -i 's/`mysql_config --libs`//' src/Makefile || die
+   fi
+
+   eapply_user
+}
+
+src_install() {
+   dobin src/mu-conference
+   fowners jabber:jabber /usr/bin/mu-conference
+   fperms 750 /usr/bin/mu-conference
+
+   newinitd "${FILESDIR}/${P}".init mu-conference
+
+   dodoc ChangeLog FAQ mu-conference.sql README
+   docinto scripts
+   dodoc scripts/*
+
+   for i in log spool; do
+   dodir /var/${i}/jabber/mu-conference
+   keepdir /var/${i}/jabber/mu-conference
+   fowners jabber:jabber /var/${i}/jabber/mu-conference
+   fperms 770 /var/${i}/jabber/mu-conference
+   done
+
+   insinto /etc/jabber
+   newins muc-default.xml mu-conference.xml
+   doins style.css
+
+   cd "${D}/etc/jabber/" || die
+   sed -i \
+   -e 's,./spool/chat.localhost,/var/spool/jabber/mu-conference,g' 
\
+   -e 's,./syslogs,/var/log/jabber,g' \
+   -e 's,./logs,/var/log/jabber/mu-conference,g' \
+   -e 's,./mu-conference.pid,/var/run/jabber/mu-conference.pid,g' \
+   -e "s,../style.css,/etc/jabber/style.css,g" \
+   -e "s,7009,5347,g" \
+   mu-conference.xml || die "sed failed"
+}
+
+pkg_postinst() {
+   echo
+   elog "For jabberd-2 connection:"
+   elog "1. Make sure that the ip and port in 
/etc/jabber/mu-conference.xml"
+   elog "   match the address of your jabberd router."
+   elog "2. Set a common secret in mu-conference.xml and router.xml"
+   echo
+}

diff --git a/net-im/mu-conference/mu-conference-0.8-r2.ebuild 
b/net-im/mu-conference/mu-conference-0.8-r2.ebuild
new file mode 100644
index 000..fa352c9
--- /dev/null
+++ 

[gentoo-commits] repo/gentoo:master commit in: net-im/reaim/files/, net-im/reaim/

2016-05-02 Thread Austin English
commit: 867818b4326f4f77344ec8c26d50232a9b82e740
Author: Austin English  gentoo  org>
AuthorDate: Mon May  2 21:48:09 2016 +
Commit: Austin English  gentoo  org>
CommitDate: Mon May  2 22:21:47 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=867818b4

net-im/reaim: use #!/sbin/openrc-run instead of #!/sbin/runscript

Gentoo-Bug: https://bugs.gentoo.org/573846

Package-Manager: portage-2.2.26

 net-im/reaim/files/reaim |  4 ++--
 net-im/reaim/reaim-0.8-r2.ebuild | 37 +
 2 files changed, 39 insertions(+), 2 deletions(-)

diff --git a/net-im/reaim/files/reaim b/net-im/reaim/files/reaim
index f10cd7e..71bafae 100644
--- a/net-im/reaim/files/reaim
+++ b/net-im/reaim/files/reaim
@@ -1,5 +1,5 @@
-#!/sbin/runscript
-# Copyright 1999-2004 Gentoo Foundation
+#!/sbin/openrc-run
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 

diff --git a/net-im/reaim/reaim-0.8-r2.ebuild b/net-im/reaim/reaim-0.8-r2.ebuild
new file mode 100644
index 000..778f9c2
--- /dev/null
+++ b/net-im/reaim/reaim-0.8-r2.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit toolchain-funcs
+
+DESCRIPTION="AIM transport proxy over NAT firewalls"
+HOMEPAGE="http://reaim.sourceforge.net/;
+SRC_URI="mirror://sourceforge/reaim/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE=""
+
+DEPEND=">=sys-apps/sed-4"
+RDEPEND="net-firewall/iptables"
+
+pkg_setup() {
+   tc-export CC
+}
+
+src_prepare() {
+   sed -i -e 's/gcc/$(CC) $(CFLAGS) $(LDFLAGS)/' \
+   -e 's/ -g / /'  Makefile || die "sed failed" #365863
+   default
+}
+
+src_install() {
+   local HTML_DOCS=( html )
+   einstalldocs
+   doman reaim.8
+   dosbin reaim
+   doinitd "${FILESDIR}"/reaim
+}



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

2016-05-02 Thread Austin English
commit: dce50cb2aa3182e40a970a5977e6f93c0dc2b596
Author: Austin English  gentoo  org>
AuthorDate: Mon May  2 21:28:17 2016 +
Commit: Austin English  gentoo  org>
CommitDate: Mon May  2 22:21:47 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dce50cb2

net-mail/courier-imap: remove old ebuilds

Package-Manager: portage-2.2.26

 net-mail/courier-imap/courier-imap-4.15-r1.ebuild | 230 --
 net-mail/courier-imap/courier-imap-4.16.0.ebuild  | 219 
 net-mail/courier-imap/courier-imap-4.16.2.ebuild  | 219 
 3 files changed, 668 deletions(-)

diff --git a/net-mail/courier-imap/courier-imap-4.15-r1.ebuild 
b/net-mail/courier-imap/courier-imap-4.15-r1.ebuild
deleted file mode 100644
index baf7185..000
--- a/net-mail/courier-imap/courier-imap-4.15-r1.ebuild
+++ /dev/null
@@ -1,230 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit autotools eutils multilib libtool systemd
-
-DESCRIPTION="An IMAP daemon designed specifically for maildirs"
-HOMEPAGE="http://www.courier-mta.org/;
-SRC_URI="mirror://sourceforge/courier/${P}.tar.bz2"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd"
-IUSE="berkdb debug fam +gdbm ipv6 selinux gnutls trashquota"
-
-REQUIRED_USE="|| ( berkdb gdbm )"
-
-CDEPEND="
-   gnutls? ( net-libs/gnutls )
-   !gnutls? ( >=dev-libs/openssl-0.9.6:0= )
-   >=net-libs/courier-authlib-0.61
-   >=net-mail/mailbase-0.00-r8
-   berkdb? ( sys-libs/db:= )
-   fam? ( virtual/fam )
-   gdbm? ( >=sys-libs/gdbm-1.8.0 )"
-DEPEND="${CDEPEND}
-   dev-lang/perl
-   !mail-mta/courier
-   userland_GNU? ( sys-process/procps )"
-RDEPEND="${CDEPEND}
-   selinux? ( sec-policy/selinux-courier )"
-
-# get rid of old style virtual - bug 350792
-# all blockers really needed?
-RDEPEND="${RDEPEND}
-   !mail-mta/courier
-   !net-mail/bincimap
-   !net-mail/cyrus-imapd
-   !net-mail/uw-imap"
-
-RC_VER="4.0.6-r1"
-INITD_VER="4.0.6-r1"
-
-src_prepare() {
-   # Bug #48838. Patch to enable/disable FAM support.
-   # 20 Aug 2004 langth...@gentoo.org
-   # This patch should fix bug #51540. fam USE flag is not needed for 
shared folder support.
-   epatch "${FILESDIR}"/${P}-disable-fam-configure.ac.patch
-
-   # Kill unneeded call to AC_PROG_SYSCONFTOOL (bug #168206).
-   epatch "${FILESDIR}"/${P}-aclocal-fix.patch
-
-   # These patches should fix problems detecting BerkeleyDB.
-   # We now can compile with db4 support.
-   if use berkdb ; then
-   epatch \
-   "${FILESDIR}"/${P}-db4-bdbobj_configure.ac.patch \
-   "${FILESDIR}"/${P}-db4-configure.ac.patch
-   fi
-
-   eautoreconf
-}
-
-src_configure() {
-   local myconf=""
-
-   # 19 Aug 2004 langth...@gentoo.org
-   # Default to gdbm if both berkdb and gdbm are present.
-   if use gdbm ; then
-   einfo "Building with GDBM support"
-   myconf="${myconf} --with-db=gdbm"
-   elif use berkdb ; then
-   einfo "Building with BerkeleyDB support"
-   myconf="${myconf} --with-db=db"
-   fi
-
-   # Disabling unicode is no longer supported
-   # By default all available character sets are included
-   # Set ENABLE_UNICODE=iso-8859-1,utf-8,iso-8859-10
-   # to include only specified translation tables.
-   if [[ -z "${ENABLE_UNICODE}" ]] ; then
-   einfo "ENABLE_UNICODE is not set, building with all available 
character sets"
-   myconf="${myconf} --enable-unicode"
-   else
-   einfo "ENABLE_UNICODE is set, building with 
unicode=${ENABLE_UNICODE}"
-   myconf="${myconf} --enable-unicode=${ENABLE_UNICODE}"
-   fi
-
-   if use trashquota ; then
-   einfo "Building with Trash Quota Support"
-   myconf="${myconf} --with-trashquota"
-   fi
-
-   use debug && myconf="${myconf} debug=true"
-
-   # Do the actual build now
-   econf \
-   --disable-root-check \
-   --bindir=/usr/sbin \
-   --sysconfdir=/etc/${PN} \
-   --libexecdir=/usr/$(get_libdir)/${PN} \
-   --localstatedir=/var/lib/${PN} \
-   --with-authdaemonvar=/var/lib/${PN}/authdaemon \
-   --enable-workarounds-for-imap-client-bugs \
-   --with-mailuser=mail \
-   --with-mailgroup=mail \
-   $(use_with fam) \
-   $(use_with ipv6) \
-   $(use_with gnutls) \
-   ${myconf}
-
-   # Change the pem file location.
-   sed -i -e "s:^\(TLS_CERTFILE=\).*:\1/etc/courier-imap/imapd.pem:" \
-   libs/imap/imapd-ssl.dist || \
-   die "sed failed"
-
-   sed -i -e 

[gentoo-commits] repo/gentoo:master commit in: net-im/minbif/

2016-05-02 Thread Austin English
commit: 5bab766ae0e38dce1076ab17edb2750ee008f573
Author: Austin English  gentoo  org>
AuthorDate: Mon May  2 18:49:23 2016 +
Commit: Austin English  gentoo  org>
CommitDate: Mon May  2 22:21:47 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5bab766a

net-im/minbif: remove old version

Package-Manager: portage-2.2.26

 net-im/minbif/minbif-1.0.5-r1.ebuild | 84 
 1 file changed, 84 deletions(-)

diff --git a/net-im/minbif/minbif-1.0.5-r1.ebuild 
b/net-im/minbif/minbif-1.0.5-r1.ebuild
deleted file mode 100644
index 0262b1a..000
--- a/net-im/minbif/minbif-1.0.5-r1.ebuild
+++ /dev/null
@@ -1,84 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-inherit cmake-utils eutils user
-
-DESCRIPTION="an IRC gateway to IM networks"
-HOMEPAGE="https://symlink.me/projects/minbif/wiki/;
-SRC_URI="https://symlink.me/attachments/download/148/${P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~arm x86"
-IUSE="gnutls +imlib +libcaca pam xinetd"
-REQUIRED_USE="
-   libcaca? ( imlib )
-"
-
-DEPEND="
-   >=net-im/pidgin-2.6
-   libcaca? ( media-libs/libcaca media-libs/imlib2 )
-   imlib? ( media-libs/imlib2 )
-   pam? ( sys-libs/pam )
-   gnutls? ( net-libs/gnutls )
-"
-RDEPEND="${DEPEND}
-   virtual/logger
-   xinetd? ( sys-apps/xinetd )
-"
-
-pkg_setup() {
-   enewgroup minbif
-   enewuser minbif -1 -1 /var/lib/minbif minbif
-}
-
-src_prepare() {
-   epatch "${FILESDIR}/${PN}-1.0.5-glib-single-includes.patch"
-   epatch "${FILESDIR}/${PN}-1.0.5-gcc47.patch"
-
-   sed -i "s/-Werror//g" CMakeLists.txt || die "sed failed"
-
-   sed -i "s#share/doc/minbif#share/doc/${P}#" \
-   CMakeLists.txt || die "sed failed"
-
-   if use xinetd; then
-   sed -i "s/type\s=\s[0-9]/type = 0/" \
-   minbif.conf || die "sed failed"
-   fi
-}
-
-src_configure() {
-   local mycmakeargs
-   mycmakeargs="${mycmakeargs}
-   -DCONF_PREFIX=${PREFIX:-/etc/minbif}
-   -DENABLE_VIDEO=OFF
-   $(cmake-utils_use_enable libcaca CACA)
-   $(cmake-utils_use_enable imlib IMLIB)
-   $(cmake-utils_use_enable pam PAM)
-   $(cmake-utils_use_enable gnutls TLS)"
-
-   cmake-utils_src_configure
-}
-
-src_install() {
-   cmake-utils_src_install
-   keepdir /var/lib/minbif
-   fperms 700 /var/lib/minbif
-   fowners minbif:minbif /var/lib/minbif
-
-   dodoc ChangeLog README
-   doman man/minbif.8
-
-   if use xinetd; then
-   insinto /etc/xinetd.d
-   newins doc/minbif.xinetd minbif
-   fi
-
-   newinitd "${FILESDIR}"/minbif.initd minbif
-
-   dodir /usr/share/minbif
-   insinto /usr/share/minbif
-   doins -r scripts
-}



[gentoo-commits] repo/gentoo:master commit in: net-im/silc-server/

2016-05-02 Thread Austin English
commit: 36384efc3810c7938998970a760d9481c6a3e518
Author: Austin English  gentoo  org>
AuthorDate: Mon May  2 21:15:38 2016 +
Commit: Austin English  gentoo  org>
CommitDate: Mon May  2 22:21:47 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36384efc

net-im/silc-server: remove old ebuild

Package-Manager: portage-2.2.26

 net-im/silc-server/silc-server-1.1.18.ebuild | 82 
 1 file changed, 82 deletions(-)

diff --git a/net-im/silc-server/silc-server-1.1.18.ebuild 
b/net-im/silc-server/silc-server-1.1.18.ebuild
deleted file mode 100644
index 23fad3c..000
--- a/net-im/silc-server/silc-server-1.1.18.ebuild
+++ /dev/null
@@ -1,82 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit eutils flag-o-matic user
-
-DESCRIPTION="Server for Secure Internet Live Conferencing"
-SRC_URI="http://www.silcnet.org/download/server/sources/${P}.tar.bz2;
-HOMEPAGE="http://silcnet.org/;
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="~amd64 ~ppc ~sparc ~x86"
-IUSE="gmp ipv6 debug"
-
-RDEPEND="!<=net-im/silc-toolkit-0.9.12-r1
-   !<=net-im/silc-client-1.0.1
-   gmp? ( dev-libs/gmp )"
-
-pkg_setup() {
-   enewuser silcd
-}
-
-src_configure() {
-   econf \
-   --datadir=/usr/share/${PN} \
-   --datarootdir=/usr/share/${PN} \
-   --mandir=/usr/share/man \
-   --sysconfdir=/etc/silc \
-   --libdir=/usr/$(get_libdir)/${PN} \
-   --docdir=/usr/share/doc/${PF} \
-   --disable-optimizations \
-   --with-logsdir=/var/log/${PN} \
-   --with-silcd-pid-file=/var/run/silcd.pid \
-   $(use_with gmp) \
-   $(use_enable ipv6) \
-   $(use_enable debug)
-}
-
-#src_compile() {
-#  emake -j1
-#}
-
-src_install() {
-   emake DESTDIR="${D}" install
-
-   insinto /etc/silc
-   doins doc/silcalgs.conf
-
-   insinto /usr/share/doc/${PF}/examples
-   doins doc/examples/*.conf
-
-   fperms 600 /etc/silc
-   keepdir /var/log/${PN}
-
-   rm -rf \
-   "${D}"/usr/libsilc* \
-   "${D}"/usr/include \
-   "${D}"/etc/silc/silcd.{pub,prv}
-
-   newinitd "${FILESDIR}/silcd.initd-r1" silcd
-   doman doc/silcd.8 doc/silcd.conf.5
-
-   sed -i \
-   -e 's:10.2.1.6:0.0.0.0:' \
-   -e 's:User = "nobody";:User = "silcd";:' \
-   -e 's:/var/run:/run:' \
-   -e 's:lassi.kuo.fi.ssh.com:localhost:' \
-   doc/example_silcd.conf \
-   || die
-   dodoc doc/example_silcd.conf
-}
-
-pkg_postinst() {
-   if [ ! -f "${ROOT}"/etc/silc/silcd.prv ] ; then
-   einfo "Creating key pair in /etc/silc"
-   silcd -C "${ROOT}"/etc/silc
-   chmod 600 "${ROOT}"/etc/silc/silcd.{prv,pub}
-   fi
-}



[gentoo-commits] repo/gentoo:master commit in: net-im/silc-server/, net-im/silc-server/files/

2016-05-02 Thread Austin English
commit: 1d716f1fbe7a3c6d7398b1df9135c272e2e268d1
Author: Austin English  gentoo  org>
AuthorDate: Mon May  2 21:15:21 2016 +
Commit: Austin English  gentoo  org>
CommitDate: Mon May  2 22:21:47 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d716f1f

net-im/silc-server: use #!/sbin/openrc-run instead of #!/sbin/runscript

Gentoo-Bug: https://bugs.gentoo.org/573846

Package-Manager: portage-2.2.26

 net-im/silc-server/files/silcd.initd-r1 |  4 +-
 net-im/silc-server/silc-server-1.1.18-r1.ebuild | 78 +
 2 files changed, 80 insertions(+), 2 deletions(-)

diff --git a/net-im/silc-server/files/silcd.initd-r1 
b/net-im/silc-server/files/silcd.initd-r1
index 2ffcfba..00a58d4 100644
--- a/net-im/silc-server/files/silcd.initd-r1
+++ b/net-im/silc-server/files/silcd.initd-r1
@@ -1,5 +1,5 @@
-#!/sbin/runscript
-# Copyright 1999-2013 Gentoo Foundation
+#!/sbin/openrc-run
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 

diff --git a/net-im/silc-server/silc-server-1.1.18-r1.ebuild 
b/net-im/silc-server/silc-server-1.1.18-r1.ebuild
new file mode 100644
index 000..9611890
--- /dev/null
+++ b/net-im/silc-server/silc-server-1.1.18-r1.ebuild
@@ -0,0 +1,78 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit eutils flag-o-matic user
+
+DESCRIPTION="Server for Secure Internet Live Conferencing"
+SRC_URI="http://www.silcnet.org/download/server/sources/${P}.tar.bz2;
+HOMEPAGE="http://silcnet.org/;
+
+SLOT="0"
+LICENSE="GPL-2"
+KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+IUSE="gmp ipv6 debug"
+
+RDEPEND="!<=net-im/silc-toolkit-0.9.12-r1
+   !<=net-im/silc-client-1.0.1
+   gmp? ( dev-libs/gmp )"
+
+pkg_setup() {
+   enewuser silcd
+}
+
+src_configure() {
+   econf \
+   --datadir=/usr/share/${PN} \
+   --datarootdir=/usr/share/${PN} \
+   --mandir=/usr/share/man \
+   --sysconfdir=/etc/silc \
+   --libdir=/usr/$(get_libdir)/${PN} \
+   --docdir=/usr/share/doc/${PF} \
+   --disable-optimizations \
+   --with-logsdir=/var/log/${PN} \
+   --with-silcd-pid-file=/var/run/silcd.pid \
+   $(use_with gmp) \
+   $(use_enable ipv6) \
+   $(use_enable debug)
+}
+
+src_install() {
+   emake DESTDIR="${D}" install
+
+   insinto /etc/silc
+   doins doc/silcalgs.conf
+
+   insinto /usr/share/doc/${PF}/examples
+   doins doc/examples/*.conf
+
+   fperms 600 /etc/silc
+   keepdir /var/log/${PN}
+
+   rm -rf \
+   "${D}"/usr/libsilc* \
+   "${D}"/usr/include \
+   "${D}"/etc/silc/silcd.{pub,prv}
+
+   newinitd "${FILESDIR}/silcd.initd-r1" silcd
+   doman doc/silcd.8 doc/silcd.conf.5
+
+   sed -i \
+   -e 's:10.2.1.6:0.0.0.0:' \
+   -e 's:User = "nobody";:User = "silcd";:' \
+   -e 's:/var/run:/run:' \
+   -e 's:lassi.kuo.fi.ssh.com:localhost:' \
+   doc/example_silcd.conf \
+   || die
+   dodoc doc/example_silcd.conf
+}
+
+pkg_postinst() {
+   if [ ! -f "${ROOT}"/etc/silc/silcd.prv ] ; then
+   einfo "Creating key pair in /etc/silc"
+   silcd -C "${ROOT}"/etc/silc
+   chmod 600 "${ROOT}"/etc/silc/silcd.{prv,pub}
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: net-im/pyicq-t/files/, net-im/pyicq-t/

2016-05-02 Thread Austin English
commit: f8faca5c19419e40adb47d84689beabe7225bea6
Author: Austin English  gentoo  org>
AuthorDate: Mon May  2 19:13:40 2016 +
Commit: Austin English  gentoo  org>
CommitDate: Mon May  2 22:21:47 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8faca5c

net-im/pyicq-t: use #!/sbin/openrc-run instead of #!/sbin/runscript

Gentoo-Bug: https://bugs.gentoo.org/573846

Package-Manager: portage-2.2.26

 net-im/pyicq-t/files/pyicq-t-0.8-initd-r1 |  4 +--
 net-im/pyicq-t/pyicq-t-0.8.1.5-r5.ebuild  | 55 +++
 2 files changed, 57 insertions(+), 2 deletions(-)

diff --git a/net-im/pyicq-t/files/pyicq-t-0.8-initd-r1 
b/net-im/pyicq-t/files/pyicq-t-0.8-initd-r1
index 8c46bc6..cc9057e 100644
--- a/net-im/pyicq-t/files/pyicq-t-0.8-initd-r1
+++ b/net-im/pyicq-t/files/pyicq-t-0.8-initd-r1
@@ -1,5 +1,5 @@
-#!/sbin/runscript
-# Copyright 1999-2013 Gentoo Foundation
+#!/sbin/openrc-run
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 

diff --git a/net-im/pyicq-t/pyicq-t-0.8.1.5-r5.ebuild 
b/net-im/pyicq-t/pyicq-t-0.8.1.5-r5.ebuild
new file mode 100644
index 000..a4d1d38
--- /dev/null
+++ b/net-im/pyicq-t/pyicq-t-0.8.1.5-r5.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="6"
+PYTHON_COMPAT=( python2_7 )
+inherit eutils python-single-r1 systemd
+
+MY_P="${P/pyicq-t/pyicqt}"
+DESCRIPTION="Python based jabber transport for ICQ"
+HOMEPAGE="https://code.google.com/p/pyicqt/;
+SRC_URI="https://pyicqt.googlecode.com/files/${MY_P}.tar.gz;
+S="${WORKDIR}/${MY_P}"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="webinterface"
+
+DEPEND="net-im/jabber-base"
+RDEPEND="${DEPEND}
+   dev-python/twisted-core[${PYTHON_USEDEP}]
+   dev-python/twisted-words[${PYTHON_USEDEP}]
+   dev-python/twisted-web[${PYTHON_USEDEP}]
+   webinterface? ( >=dev-python/nevow-0.4.1[${PYTHON_USEDEP}] )
+   dev-python/pillow[${PYTHON_USEDEP}]"
+
+src_prepare() {
+   eapply "${FILESDIR}/${P}-python26-warnings.diff"
+   eapply "${FILESDIR}/${P}-pillow-imaging.patch"
+   eapply_user
+}
+
+src_install() {
+   python_moduleinto ${PN}
+   cp PyICQt.py ${PN}.py || die
+   python_domodule ${PN}.py data tools src
+
+   insinto /etc/jabber
+   newins config_example.xml ${PN}.xml
+   fperms 600 /etc/jabber/${PN}.xml
+   fowners jabber:jabber /etc/jabber/${PN}.xml
+   fperms 755 "$(python_get_sitedir)/${PN}/${PN}.py"
+   sed -i \
+   -e 
"s:[^\<]*:/var/spool/jabber:" \
+   -e "s:[^\<]*:/var/run/jabber/${PN}.pid:" \
+   "${ED}/etc/jabber/${PN}.xml" || die
+
+   newinitd "${FILESDIR}/${PN}-0.8-initd-r1" ${PN}
+   systemd_dounit "${FILESDIR}/${PN}.service"
+   sed -i -e "s:INSPATH:$(python_get_sitedir)/${PN}:" \
+   "${ED}/etc/init.d/${PN}" 
"${ED}/usr/lib/systemd/system/${PN}.service" || die
+
+   python_fix_shebang "${D}$(python_get_sitedir)/${PN}"
+}



[gentoo-commits] repo/gentoo:master commit in: net-im/jabberd2/

2016-05-02 Thread Austin English
commit: 467b55d6512a0aba06ac49ec0f88a19b52dc7985
Author: Austin English  gentoo  org>
AuthorDate: Mon May  2 18:46:13 2016 +
Commit: Austin English  gentoo  org>
CommitDate: Mon May  2 22:21:47 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=467b55d6

net-im/jabberd2: remove old versions

Package-Manager: portage-2.2.26

 net-im/jabberd2/jabberd2-2.3.1-r1.ebuild | 156 ---
 net-im/jabberd2/jabberd2-2.3.2-r1.ebuild | 157 ---
 net-im/jabberd2/jabberd2-2.3.2.ebuild| 157 ---
 net-im/jabberd2/jabberd2-2.3.3-r1.ebuild | 160 ---
 net-im/jabberd2/jabberd2-2.3.4.ebuild| 180 ---
 5 files changed, 810 deletions(-)

diff --git a/net-im/jabberd2/jabberd2-2.3.1-r1.ebuild 
b/net-im/jabberd2/jabberd2-2.3.1-r1.ebuild
deleted file mode 100644
index 67b1f04..000
--- a/net-im/jabberd2/jabberd2-2.3.1-r1.ebuild
+++ /dev/null
@@ -1,156 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit db-use eutils flag-o-matic pam
-
-DESCRIPTION="Open Source Jabber Server"
-HOMEPAGE="http://jabberd2.org;
-SRC_URI="https://github.com/jabberd2/jabberd2/releases/download/jabberd-${PV}/jabberd-${PV}.tar.xz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc sparc x86 ~x86-fbsd"
-IUSE="berkdb debug ldap memdebug mysql pam postgres sqlite ssl test zlib"
-REQUIRED_USE="memdebug? ( debug )"
-
-# broken
-RESTRICT="test"
-
-DEPEND="dev-libs/expat
-   net-libs/udns
-   net-dns/libidn
-   virtual/gsasl
-   berkdb? ( >=sys-libs/db-4.1.25 )
-   ldap? ( net-nds/openldap )
-   mysql? ( virtual/mysql )
-   pam? ( virtual/pam )
-   postgres? ( dev-db/postgresql )
-   ssl? ( >=dev-libs/openssl-1.0.1:0 )
-   sqlite? ( dev-db/sqlite:3 )
-   zlib? ( sys-libs/zlib )"
-RDEPEND="${DEPEND}
-   >=net-im/jabber-base-0.01"
-DEPEND="${DEPEND}
-   app-arch/xz-utils
-   virtual/pkgconfig
-   test? ( dev-libs/check )"
-
-DOCS=( AUTHORS README )
-
-S=${WORKDIR}/jabberd-${PV}
-
-src_prepare() {
-   # Fix some default directory locations
-   sed -i \
-   -e 's,@localstatedir@/@package@/pid/,/var/run/@package@/,g' \
-   -e 
's,@localstatedir@/@package@/run/pbx,/var/run/@package@/pbx,g' \
-   -e 's,@localstatedir@/@package@/log/,/var/log/@package@/,g' \
-   -e 
's,@localstatedir@/lib/jabberd2/fs,@localstatedir@/@package@/fs,g' \
-   -e 's,@localstatedir@,/var/spool,g' \
-   -e 's,@package@,jabber,g' \
-   etc/{sm,router,c2s,s2s}.xml.dist.in || die "fixing default 
directory locations failed!"
-
-   # If the package wasn't merged with sqlite then default to use berkdb
-   use sqlite ||
-   sed -i \
-   -e 's,<\(module\|driver\)>sqlite<\/\1>,<\1>db,g' \
-   etc/{c2s,sm}.xml.dist.in || die "setting berkdb as 
default failed!"
-
-   # avoid file collision with x11-misc/screen-message wrt #453994
-   sed -i \
-   -e 's/@jabberd_router_bin@/jabberd2-router/' \
-   -e 's/@jabberd_c2s_bin@/jabberd2-c2s/' \
-   -e 's/@jabberd_s2s_bin@/jabberd2-s2s/' \
-   -e 's/@jabberd_sm_bin@/jabberd2-sm/' \
-   etc/jabberd*.in || die "fixing file collisions failed!"
-
-   # rename pid files wrt #241472
-   sed -i \
-   -e '/pidfile/s/c2s\.pid/jabberd2-c2s\.pid/' \
-   -e '/pidfile/s/router\.pid/jabberd2-router\.pid/' \
-   -e '/pidfile/s/s2s\.pid/jabberd2-s2s\.pid/' \
-   -e '/pidfile/s/sm\.pid/jabberd2-sm\.pid/' \
-   etc/*.xml.dist.in || die "renaming pid files failed!"
-}
-
-src_configure() {
-   # https://bugs.gentoo.org/show_bug.cgi?id=207655#c3
-   # https://github.com/jabberd2/jabberd2/issues/34
-   replace-flags -O[3s] -O2
-
-   # --enable-pool-debug is currently broken
-   econf \
-   --sysconfdir=/etc/jabber \
-   $(usex debug "--enable-debug" "") \
-   $(usex memdebug "--enable-nad-debug" "") \
-   $(use_enable ssl) \
-   $(use_enable mysql) \
-   $(use_enable postgres pgsql) \
-   $(use_enable sqlite) \
-   $(use_enable berkdb db) \
-   $(use_enable ldap) \
-   $(use_enable pam) \
-   --enable-pipe \
-   --enable-anon \
-   --enable-fs \
-   $(use_enable test tests) \
-   $(usex berkdb "--with-extra-include-path=$(db_includedir)" "") \
-   $(use_with zlib)
-}
-
-src_install() {
-   local i
-
-   default
-   prune_libtool_files --modules
-
-   keepdir /var/spool/jabber/{fs,db}
-   fowners jabber:jabber /usr/bin/{jabberd,router,sm,c2s,s2s} \
-  

[gentoo-commits] repo/gentoo:master commit in: net-im/simpserver-bin/

2016-05-02 Thread Austin English
commit: 727ab36844153b0fa413d381a44e62cc9359c819
Author: Austin English  gentoo  org>
AuthorDate: Mon May  2 21:17:47 2016 +
Commit: Austin English  gentoo  org>
CommitDate: Mon May  2 22:21:47 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=727ab368

net-im/simpserver-bin: remove old ebuild

Package-Manager: portage-2.2.26

 .../simpserver-bin/simpserver-bin-2.1.0-r1.ebuild  | 40 --
 1 file changed, 40 deletions(-)

diff --git a/net-im/simpserver-bin/simpserver-bin-2.1.0-r1.ebuild 
b/net-im/simpserver-bin/simpserver-bin-2.1.0-r1.ebuild
deleted file mode 100644
index e7f2955..000
--- a/net-im/simpserver-bin/simpserver-bin-2.1.0-r1.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-MY_PN=${PN/-bin/}
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="SimpServer for Unix: IM instant security transparent proxy"
-SRC_URI="http://download.secway.com/public/products/simpserver/${MY_P}-linux-x86.tgz;
-HOMEPAGE="http://www.secway.com/;
-LICENSE="simpserver-test"
-
-KEYWORDS="-* ~amd64 ~x86"
-IUSE=""
-SLOT="0"
-S=${WORKDIR}/simp
-
-RESTRICT="strip"
-
-src_compile() {
-   einfo "Binary distribution.  No compilation required."
-}
-
-src_install () {
-   dodoc README VERSION doc/CONFIG doc/TODO
-
-   exeinto /opt/bin
-   doexe bin/${MY_PN}
-
-   insinto /etc
-   doins etc/simp.conf
-
-   newinitd "${FILESDIR}/${MY_PN}".rc ${MY_PN}
-}
-
-pkg_postinst() {
-   elog "Please edit the configuration file: /etc/simp.conf."
-}



[gentoo-commits] repo/gentoo:master commit in: net-im/simpserver-bin/files/, net-im/simpserver-bin/

2016-05-02 Thread Austin English
commit: 57dff2c099318bd33ed1b18f325400a317a90874
Author: Austin English  gentoo  org>
AuthorDate: Mon May  2 21:17:19 2016 +
Commit: Austin English  gentoo  org>
CommitDate: Mon May  2 22:21:47 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57dff2c0

net-im/simpserver-bin: use #!/sbin/openrc-run instead of #!/sbin/runscript

Gentoo-Bug: https://bugs.gentoo.org/573846

Package-Manager: portage-2.2.26

 net-im/simpserver-bin/files/simpserver.rc  |  4 +--
 .../simpserver-bin/simpserver-bin-2.1.0-r2.ebuild  | 40 ++
 2 files changed, 42 insertions(+), 2 deletions(-)

diff --git a/net-im/simpserver-bin/files/simpserver.rc 
b/net-im/simpserver-bin/files/simpserver.rc
index 4a48f58..16528fe 100644
--- a/net-im/simpserver-bin/files/simpserver.rc
+++ b/net-im/simpserver-bin/files/simpserver.rc
@@ -1,5 +1,5 @@
-#!/sbin/runscript
-# Copyright 1999-2004 Gentoo Foundation
+#!/sbin/openrc-run
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 

diff --git a/net-im/simpserver-bin/simpserver-bin-2.1.0-r2.ebuild 
b/net-im/simpserver-bin/simpserver-bin-2.1.0-r2.ebuild
new file mode 100644
index 000..7ee8c63
--- /dev/null
+++ b/net-im/simpserver-bin/simpserver-bin-2.1.0-r2.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+MY_PN=${PN/-bin/}
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="SimpServer for Unix: IM instant security transparent proxy"
+SRC_URI="http://download.secway.com/public/products/simpserver/${MY_P}-linux-x86.tgz;
+HOMEPAGE="http://www.secway.com/;
+LICENSE="simpserver-test"
+
+KEYWORDS="-* ~amd64 ~x86"
+IUSE=""
+SLOT="0"
+S=${WORKDIR}/simp
+
+RESTRICT="strip"
+
+src_compile() {
+   einfo "Binary distribution.  No compilation required."
+}
+
+src_install () {
+   dodoc README VERSION doc/CONFIG doc/TODO
+
+   exeinto /opt/bin
+   doexe bin/${MY_PN}
+
+   insinto /etc
+   doins etc/simp.conf
+
+   newinitd "${FILESDIR}/${MY_PN}".rc ${MY_PN}
+}
+
+pkg_postinst() {
+   elog "Please edit the configuration file: /etc/simp.conf."
+}



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

2016-05-02 Thread Austin English
commit: 9a3ef0f437b79e999cf350c3532f6e9d919351d5
Author: Austin English  gentoo  org>
AuthorDate: Mon May  2 19:19:26 2016 +
Commit: Austin English  gentoo  org>
CommitDate: Mon May  2 22:21:47 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a3ef0f4

net-im/mu-conference: remove old ebuilds

Package-Manager: portage-2.2.26

 net-im/mu-conference/mu-conference-0.7.ebuild| 86 ---
 net-im/mu-conference/mu-conference-0.8-r1.ebuild | 88 
 net-im/mu-conference/mu-conference-0.8.81.ebuild | 86 ---
 3 files changed, 260 deletions(-)

diff --git a/net-im/mu-conference/mu-conference-0.7.ebuild 
b/net-im/mu-conference/mu-conference-0.7.ebuild
deleted file mode 100644
index 5b3d350..000
--- a/net-im/mu-conference/mu-conference-0.7.ebuild
+++ /dev/null
@@ -1,86 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-inherit eutils
-
-DESCRIPTION="Multi-User Chat for jabberd"
-HOMEPAGE="https://gna.org/projects/mu-conference/;
-SRC_URI="http://download.gna.org/mu-conference/${PN}_${PV}.tar.gz;
-
-LICENSE="GPL-2"
-KEYWORDS="~amd64 ~ppc ~sparc x86"
-SLOT="0"
-
-DEPEND="
-   dev-libs/expat
-   >=dev-libs/glib-2
-   net-dns/libidn
-   net-im/jabberd2
-   mysql? ( virtual/mysql )"
-RDEPEND="${DEPEND}"
-IUSE="mysql"
-
-S="${WORKDIR}/${PN}_${PV}"
-
-src_unpack() {
-   unpack ${A}
-   cd "${S}"
-
-   # Fix missing header in src/conference_user.c in order to
-   # make emerge happy and avoid QA notice.
-   sed -i "/conference.h/ i #define _XOPEN_SOURCE" src/conference_user.c 
|| die
-
-   if use mysql; then
-   sed -i '/^CFLAGS/ a CFLAGS:=$(CFLAGS) -DHAVE_MYSQL' 
src/Makefile || die
-   else
-   # Makefile is broken. Should not always link against mysql
-   sed -i 's/`mysql_config --libs`//' src/Makefile || die
-   fi
-}
-
-src_compile() {
-   emake || die
-}
-
-src_install() {
-   dobin src/mu-conference
-   fowners jabber:jabber /usr/bin/mu-conference
-   fperms 750 /usr/bin/mu-conference
-
-   newinitd "${FILESDIR}/${P}".init mu-conference
-
-   dodoc ChangeLog FAQ mu-conference.sql README
-   docinto scripts
-   dodoc scripts/*
-
-   for i in log spool; do
-   dodir /var/${i}/jabber/mu-conference
-   keepdir /var/${i}/jabber/mu-conference
-   fowners jabber:jabber /var/${i}/jabber/mu-conference
-   fperms 770 /var/${i}/jabber/mu-conference
-   done
-
-   insinto /etc/jabber
-   newins muc-default.xml mu-conference.xml
-   doins style.css
-
-   cd "${D}/etc/jabber/" || die
-   sed -i \
-   -e 's,./spool/chat.localhost,/var/spool/jabber/mu-conference,g' 
\
-   -e 's,./syslogs,/var/log/jabber,g' \
-   -e 's,./logs,/var/log/jabber/mu-conference,g' \
-   -e 's,./mu-conference.pid,/var/run/jabber/mu-conference.pid,g' \
-   -e "s,../style.css,/etc/jabber/style.css,g" \
-   -e "s,7009,5347,g" \
-   mu-conference.xml || die "sed failed"
-}
-
-pkg_postinst() {
-   echo
-   elog "For jabberd-2 connection:"
-   elog "1. Make sure that the ip and port in 
/etc/jabber/mu-conference.xml"
-   elog "   match the address of your jabberd router."
-   elog "2. Set a common secret in mu-conference.xml and router.xml"
-   echo
-}

diff --git a/net-im/mu-conference/mu-conference-0.8-r1.ebuild 
b/net-im/mu-conference/mu-conference-0.8-r1.ebuild
deleted file mode 100644
index 6d2b4f7..000
--- a/net-im/mu-conference/mu-conference-0.8-r1.ebuild
+++ /dev/null
@@ -1,88 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit toolchain-funcs
-
-DESCRIPTION="Multi-User Chat for jabberd"
-HOMEPAGE="https://gna.org/projects/mu-conference/;
-SRC_URI="http://download.gna.org/mu-conference/${PN}_${PV}.tar.gz;
-
-LICENSE="GPL-2"
-KEYWORDS="~amd64 ~ppc ~sparc ~x86"
-SLOT="0"
-IUSE="mysql"
-
-RDEPEND="
-   dev-libs/expat
-   >=dev-libs/glib-2:2
-   net-dns/libidn
-   net-im/jabberd2
-   mysql? ( virtual/mysql )"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig"
-
-S=${WORKDIR}/${PN}_${PV}
-
-src_prepare() {
-   # Fix missing header in src/conference_user.c in order to
-   # make emerge happy and avoid QA notice.
-   sed -i -e "/conference.h/ i #define _XOPEN_SOURCE" 
src/conference_user.c || die
-
-   if use mysql; then
-   sed -i -e '/^CFLAGS/ a CFLAGS:=$(CFLAGS) -DHAVE_MYSQL' \
-   -e '/^LIBS/ a LIBS:=$(LIBS) `mysql_config --libs`' 
src/Makefile || die
-   fi
-   sed -i -e 's/^CC:=/CC?=/' -e 's/$(MCFLAGS)/$(MCFLAGS) 
$(LDFLAGS)/'\
-   -e 's/LDFLAGS:=-L./LDFLAGS:=$(LDFLAGS) -L./'\
-  

[gentoo-commits] repo/gentoo:master commit in: net-im/minbif/, net-im/minbif/files/

2016-05-02 Thread Austin English
commit: d8e1de3d0691bfc645271202a0e82657a6778eb4
Author: Austin English  gentoo  org>
AuthorDate: Mon May  2 18:47:47 2016 +
Commit: Austin English  gentoo  org>
CommitDate: Mon May  2 22:21:47 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8e1de3d

net-im/minbif: use #!/sbin/openrc-run instead of #!/sbin/runscript

Gentoo-Bug: https://bugs.gentoo.org/573846

Package-Manager: portage-2.2.26

 net-im/minbif/files/minbif.initd | 4 ++--
 net-im/minbif/minbif-1.0.5-r1.ebuild | 2 +-
 net-im/minbif/{minbif-1.0.5-r1.ebuild => minbif-1.0.5-r2.ebuild} | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/net-im/minbif/files/minbif.initd b/net-im/minbif/files/minbif.initd
index a2d5649..ce52663 100644
--- a/net-im/minbif/files/minbif.initd
+++ b/net-im/minbif/files/minbif.initd
@@ -1,5 +1,5 @@
-#!/sbin/runscript
-# Copyright 1999-2009 Gentoo Foundation
+#!/sbin/openrc-run
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 

diff --git a/net-im/minbif/minbif-1.0.5-r1.ebuild 
b/net-im/minbif/minbif-1.0.5-r1.ebuild
index 1586a3d..0262b1a 100644
--- a/net-im/minbif/minbif-1.0.5-r1.ebuild
+++ b/net-im/minbif/minbif-1.0.5-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 

diff --git a/net-im/minbif/minbif-1.0.5-r1.ebuild 
b/net-im/minbif/minbif-1.0.5-r2.ebuild
similarity index 97%
copy from net-im/minbif/minbif-1.0.5-r1.ebuild
copy to net-im/minbif/minbif-1.0.5-r2.ebuild
index 1586a3d..0262b1a 100644
--- a/net-im/minbif/minbif-1.0.5-r1.ebuild
+++ b/net-im/minbif/minbif-1.0.5-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 



[gentoo-commits] repo/gentoo:master commit in: net-im/jabberd2/files/, net-im/jabberd2/

2016-05-02 Thread Austin English
commit: a242ed3811b5d852766dd960814e49262e12cf69
Author: Austin English  gentoo  org>
AuthorDate: Mon May  2 18:45:23 2016 +
Commit: Austin English  gentoo  org>
CommitDate: Mon May  2 22:21:47 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a242ed38

net-im/jabberd2: use #!/sbin/openrc-run instead of #!/sbin/runscript

Gentoo-Bug: https://bugs.gentoo.org/573846

Package-Manager: portage-2.2.26

 net-im/jabberd2/files/jabberd2-2.3.1.init |   4 +-
 net-im/jabberd2/files/jabberd2-2.3.2.init |   4 +-
 net-im/jabberd2/jabberd2-2.3.1-r2.ebuild  | 156 ++
 net-im/jabberd2/jabberd2-2.3.2-r2.ebuild  | 157 ++
 net-im/jabberd2/jabberd2-2.3.3-r2.ebuild  | 160 ++
 net-im/jabberd2/jabberd2-2.3.4-r1.ebuild  | 180 ++
 6 files changed, 657 insertions(+), 4 deletions(-)

diff --git a/net-im/jabberd2/files/jabberd2-2.3.1.init 
b/net-im/jabberd2/files/jabberd2-2.3.1.init
index 696a944..4f885c7 100644
--- a/net-im/jabberd2/files/jabberd2-2.3.1.init
+++ b/net-im/jabberd2/files/jabberd2-2.3.1.init
@@ -1,5 +1,5 @@
-#!/sbin/runscript
-# Copyright 1999-2013 Gentoo Foundation
+#!/sbin/openrc-run
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 

diff --git a/net-im/jabberd2/files/jabberd2-2.3.2.init 
b/net-im/jabberd2/files/jabberd2-2.3.2.init
index 108923f..cf650fd 100644
--- a/net-im/jabberd2/files/jabberd2-2.3.2.init
+++ b/net-im/jabberd2/files/jabberd2-2.3.2.init
@@ -1,5 +1,5 @@
-#!/sbin/runscript
-# Copyright 1999-2014 Gentoo Foundation
+#!/sbin/openrc-run
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 

diff --git a/net-im/jabberd2/jabberd2-2.3.1-r2.ebuild 
b/net-im/jabberd2/jabberd2-2.3.1-r2.ebuild
new file mode 100644
index 000..17cab15
--- /dev/null
+++ b/net-im/jabberd2/jabberd2-2.3.1-r2.ebuild
@@ -0,0 +1,156 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit db-use eutils flag-o-matic pam
+
+DESCRIPTION="Open Source Jabber Server"
+HOMEPAGE="http://jabberd2.org;
+SRC_URI="https://github.com/jabberd2/jabberd2/releases/download/jabberd-${PV}/jabberd-${PV}.tar.xz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="amd64 ppc sparc x86 ~x86-fbsd"
+IUSE="berkdb debug ldap memdebug mysql pam postgres sqlite ssl test zlib"
+REQUIRED_USE="memdebug? ( debug )"
+
+# broken
+RESTRICT="test"
+
+DEPEND="dev-libs/expat
+   net-libs/udns
+   net-dns/libidn
+   virtual/gsasl
+   berkdb? ( >=sys-libs/db-4.1.25 )
+   ldap? ( net-nds/openldap )
+   mysql? ( virtual/mysql )
+   pam? ( virtual/pam )
+   postgres? ( dev-db/postgresql )
+   ssl? ( >=dev-libs/openssl-1.0.1:0 )
+   sqlite? ( dev-db/sqlite:3 )
+   zlib? ( sys-libs/zlib )"
+RDEPEND="${DEPEND}
+   >=net-im/jabber-base-0.01"
+DEPEND="${DEPEND}
+   app-arch/xz-utils
+   virtual/pkgconfig
+   test? ( dev-libs/check )"
+
+DOCS=( AUTHORS README )
+
+S=${WORKDIR}/jabberd-${PV}
+
+src_prepare() {
+   # Fix some default directory locations
+   sed -i \
+   -e 's,@localstatedir@/@package@/pid/,/var/run/@package@/,g' \
+   -e 
's,@localstatedir@/@package@/run/pbx,/var/run/@package@/pbx,g' \
+   -e 's,@localstatedir@/@package@/log/,/var/log/@package@/,g' \
+   -e 
's,@localstatedir@/lib/jabberd2/fs,@localstatedir@/@package@/fs,g' \
+   -e 's,@localstatedir@,/var/spool,g' \
+   -e 's,@package@,jabber,g' \
+   etc/{sm,router,c2s,s2s}.xml.dist.in || die "fixing default 
directory locations failed!"
+
+   # If the package wasn't merged with sqlite then default to use berkdb
+   use sqlite ||
+   sed -i \
+   -e 's,<\(module\|driver\)>sqlite<\/\1>,<\1>db,g' \
+   etc/{c2s,sm}.xml.dist.in || die "setting berkdb as 
default failed!"
+
+   # avoid file collision with x11-misc/screen-message wrt #453994
+   sed -i \
+   -e 's/@jabberd_router_bin@/jabberd2-router/' \
+   -e 's/@jabberd_c2s_bin@/jabberd2-c2s/' \
+   -e 's/@jabberd_s2s_bin@/jabberd2-s2s/' \
+   -e 's/@jabberd_sm_bin@/jabberd2-sm/' \
+   etc/jabberd*.in || die "fixing file collisions failed!"
+
+   # rename pid files wrt #241472
+   sed -i \
+   -e '/pidfile/s/c2s\.pid/jabberd2-c2s\.pid/' \
+   -e '/pidfile/s/router\.pid/jabberd2-router\.pid/' \
+   -e '/pidfile/s/s2s\.pid/jabberd2-s2s\.pid/' \
+   -e '/pidfile/s/sm\.pid/jabberd2-sm\.pid/' \
+   etc/*.xml.dist.in || die "renaming pid files failed!"
+}
+
+src_configure() {
+   # https://bugs.gentoo.org/show_bug.cgi?id=207655#c3
+   # https://github.com/jabberd2/jabberd2/issues/34
+ 

[gentoo-commits] repo/gentoo:master commit in: net-wireless/wireless-regdb/

2016-05-02 Thread Richard Farina
commit: e09a950e106e63c273d6ce8fa82bb1aff47a0a57
Author: Zero_Chaos  gentoo  org>
AuthorDate: Mon May  2 22:17:56 2016 +
Commit: Richard Farina  gentoo  org>
CommitDate: Mon May  2 22:17:56 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e09a950e

net-wireless/wireless-regdb: bump

Package-Manager: portage-2.2.28

 net-wireless/wireless-regdb/Manifest   |  1 +
 .../wireless-regdb/wireless-regdb-20160502.ebuild  | 34 ++
 2 files changed, 35 insertions(+)

diff --git a/net-wireless/wireless-regdb/Manifest 
b/net-wireless/wireless-regdb/Manifest
index aac1525..a1bb528 100644
--- a/net-wireless/wireless-regdb/Manifest
+++ b/net-wireless/wireless-regdb/Manifest
@@ -3,3 +3,4 @@ DIST wireless-regdb-2014.11.18.tar.xz 15036 SHA256 
eab6b50f30748a8b0065ba38cf3df
 DIST wireless-regdb-2015.09.25.tar.xz 15420 SHA256 
06dbcfcd4c0835440b0787084e726b7ea1a707acfb53e17a3be08eff4ee2 SHA512 
264905b85d5806c87d4fceb4dff2dbdfbd7f1cb0648a1d42b827856e3e22080222d8b525a5197a3895bce3d7fb77f7596e21551099a1dfa96befcc2662ecb148
 WHIRLPOOL 
878b18a5b5ac49493249e78c13274758a91eaf34393a71363fde1708dd0f0cd6602b38926ac242afb7d950f0d107fc7347a2f9ef99b1976d970e62cdaa40c7e3
 DIST wireless-regdb-2015.10.22.tar.xz 15708 SHA256 
19ef80c2b9d24f0c483c32294258640b2510df1775ea1c6323e84cced02f1612 SHA512 
e52f876981861ff40eed3160c1e56d7c1aa9353dc60a27157af924e8bb4a91611c456d67b1f3b8e62a80da8cb39a2235e39e4427ccf192cc67f48aacd72f9dbc
 WHIRLPOOL 
fb899d679105acda72ed8709bcf26481f1cfe69ff9f005ac37d77c225a53f29aee1640b633f02666ad4e17969014901f1caad3abc7652fdd3c42bbf4820f9df5
 DIST wireless-regdb-2016.02.08.tar.xz 15800 SHA256 
ce957b7f4fe103d8fb4d160d3b39825ad0b0da639b7453d4022d71415b6c9f9f SHA512 
bfb1e9f6b9c40f2f575f9e5866762bfb408be5157bc0c92aeafb1806c2e6c37d4cb085568e83291763469a30f47d1df8048982521b778a99a3d833d33842f569
 WHIRLPOOL 
6906f8372a54110cd9c1557c449cb3dcb43bb830061b28147d5100694bd1f0f17df8627581cefe13ec0d200f3eea28f7eaf062cad7acb41d0ab440461037dfb1
+DIST wireless-regdb-2016.05.02.tar.xz 16508 SHA256 
c9674c988a944105148091b74c05c6fa6bd9611b9bbab6b81abfb5e5387bc61e SHA512 
3a81b57430b934978be97a0532c1cd04fdcadd0528279b5fbd8723134f50e5f54ef0ddb4de74c4a397e51c6588b88714dff4cd37ebf059f02f15efed96f705ed
 WHIRLPOOL 
3ba693ff9142238615786dbea3285fd41eeaf6ef45bacd1fbba857f9089b7ea0bd79e1bbf1974b1fb331a81359e54081d142e8de42b9f2dbce9458f828f4a32c

diff --git a/net-wireless/wireless-regdb/wireless-regdb-20160502.ebuild 
b/net-wireless/wireless-regdb/wireless-regdb-20160502.ebuild
new file mode 100644
index 000..41e34dc
--- /dev/null
+++ b/net-wireless/wireless-regdb/wireless-regdb-20160502.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+MY_P="wireless-regdb-${PV:0:4}.${PV:4:2}.${PV:6:2}"
+DESCRIPTION="Binary regulatory database for CRDA"
+HOMEPAGE="https://wireless.kernel.org/en/developers/Regulatory;
+SRC_URI="https://www.kernel.org/pub/software/network/${PN}/${MY_P}.tar.xz;
+
+LICENSE="ISC"
+SLOT="0"
+KEYWORDS="alpha amd64 arm ~arm64 ia64 ~mips ppc ppc64 sparc x86"
+IUSE=""
+
+S="${WORKDIR}/${MY_P}"
+
+src_compile() {
+   einfo "Recompiling regulatory.bin from db.txt would break CRDA verify. 
Installing unmodified binary version."
+}
+
+src_install() {
+   # This file is not ABI-specific, and crda itself always hardcodes
+   # this path.  So install into a common location for all ABIs to use.
+   insinto /usr/lib/crda
+   doins regulatory.bin
+
+   insinto /etc/wireless-regdb/pubkeys
+   doins sforshee.key.pub.pem
+
+   doman regulatory.bin.5
+   dodoc README db.txt
+}



[gentoo-commits] repo/gentoo: New branch: ejabberd-wip2

2016-05-02 Thread Amadeusz Piotr Żołnowski
commit: 
Commit: Amadeusz Piotr Żołnowski  gentoo  org>
CommitDate: Mon May  2 21:49:34 2016 +

New branch: ejabberd-wip2




[gentoo-commits] repo/gentoo:master commit in: dev-perl/SOAP-Lite/

2016-05-02 Thread Andreas Hüttel
commit: 143be37e853d0be12c558d8777ebbcaa8918d544
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Mon May  2 21:15:21 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Mon May  2 21:33:18 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=143be37e

dev-perl/SOAP-Lite: Shorten DESCRIPTION

Package-Manager: portage-2.2.28

 dev-perl/SOAP-Lite/SOAP-Lite-1.190.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-perl/SOAP-Lite/SOAP-Lite-1.190.0.ebuild 
b/dev-perl/SOAP-Lite/SOAP-Lite-1.190.0.ebuild
index b49da37..0554ef0 100644
--- a/dev-perl/SOAP-Lite/SOAP-Lite-1.190.0.ebuild
+++ b/dev-perl/SOAP-Lite/SOAP-Lite-1.190.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -8,7 +8,7 @@ MODULE_AUTHOR=PHRED
 MODULE_VERSION=1.19
 inherit perl-module eutils
 
-DESCRIPTION="Simple and lightweight interface to the SOAP protocol (sic) both 
on client and server side"
+DESCRIPTION="Lightweight interface to the SOAP protocol both on client and 
server side"
 
 IUSE="ssl test xmpp"
 SLOT="0"



[gentoo-commits] repo/gentoo:master commit in: dev-perl/SOAP-Lite/

2016-05-02 Thread Andreas Hüttel
commit: 8a27a6e27d157c8f3ea4003559d80958ba9ed639
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Mon May  2 21:22:30 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Mon May  2 21:33:18 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a27a6e2

dev-perl/SOAP-Lite: Tests work fine now. Seems one of the test modules needed 
an update...

Package-Manager: portage-2.2.28

 dev-perl/SOAP-Lite/SOAP-Lite-1.190.0.ebuild | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/dev-perl/SOAP-Lite/SOAP-Lite-1.190.0.ebuild 
b/dev-perl/SOAP-Lite/SOAP-Lite-1.190.0.ebuild
index 0554ef0..b098936 100644
--- a/dev-perl/SOAP-Lite/SOAP-Lite-1.190.0.ebuild
+++ b/dev-perl/SOAP-Lite/SOAP-Lite-1.190.0.ebuild
@@ -43,8 +43,7 @@ DEPEND="${RDEPEND}
)
 "
 
-#SRC_TEST="do parallel"
-# test fails because of \C deprecation warning
+SRC_TEST="do parallel"
 
 src_test() {
has_version '>=www-apache/mod_perl-2' && export MOD_PERL_API_VERSION=2



[gentoo-commits] repo/gentoo:master commit in: dev-perl/SOAP-Lite/

2016-05-02 Thread Andreas Hüttel
commit: 4a7caf61f516839893414a2ce73025f12a2f58e0
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Mon May  2 21:14:08 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Mon May  2 21:33:18 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a7caf61

dev-perl/SOAP-Lite: Remove old

Package-Manager: portage-2.2.28

 dev-perl/SOAP-Lite/Manifest |  1 -
 dev-perl/SOAP-Lite/SOAP-Lite-1.140.0.ebuild | 51 -
 2 files changed, 52 deletions(-)

diff --git a/dev-perl/SOAP-Lite/Manifest b/dev-perl/SOAP-Lite/Manifest
index c01ae08..f0d4a11 100644
--- a/dev-perl/SOAP-Lite/Manifest
+++ b/dev-perl/SOAP-Lite/Manifest
@@ -1,3 +1,2 @@
 DIST SOAP-Lite-1.04.tar.gz 222598 SHA256 
30dd8240cc79e58d3fa4d314f9bde174ca90a481ab5904f58c84bc8812bc7887 SHA512 
3f9ac332ff1b914b9de155c9662f46838aaec8c0a45b29f8eac383286eea63bebfc6a4a5124dec14292176c45c6cc35ba06657a03cc0d3b1331fe9a9d6f17eaa
 WHIRLPOOL 
5d1a9e595d83eaf82a2be4cb2a0afaf8c1fbe744433ab1e70e40ef8e522cb54e11ce0917ea1858a55d353da86290f95137690e2021d78f842c9ff4537f3df3c0
-DIST SOAP-Lite-1.14.tar.gz 276774 SHA256 
a201bed80db9b76a4ada9768281489c070fb8a25f4481d1296c92a5111ce1756 SHA512 
6ad26f69aeb7ebf1b05c64e30e42918f970a0eaaf6c764baa4cc21a931e13921ba3d4796175324bf3e4e5c11b05f59d84bb17a49d87a1579024b242e251255ab
 WHIRLPOOL 
260301ed3a9468e4a255842963dfc6094e1773575f7ddb80feeaad6b39325df5a361d0e329a40b8a5ed31af8f14ee4bb2930bfc0bf719eac3b1dc9f2bbb18a16
 DIST SOAP-Lite-1.19.tar.gz 271044 SHA256 
f56d8d2ea51832a317020f635e584e38515b6d60526fd722aca360b367f23729 SHA512 
530deba9011075b65e8eae4c64cac62c374cd17823e1d23b8383af2bc28075aa1e68809eb8b09a98b44c29cbd7398e6d24ffc9808badc39453f6b9e87a2e1a1d
 WHIRLPOOL 
c800649d2652835c709bd102e0468054794deab25e5dce68da9b6a28236b0580073828802d7b769baf276d3d4c6f98c6e545214a2378608b4ff81a3a67c7fa27

diff --git a/dev-perl/SOAP-Lite/SOAP-Lite-1.140.0.ebuild 
b/dev-perl/SOAP-Lite/SOAP-Lite-1.140.0.ebuild
deleted file mode 100644
index 5f764ad..000
--- a/dev-perl/SOAP-Lite/SOAP-Lite-1.140.0.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-MODULE_AUTHOR=PHRED
-MODULE_VERSION=1.14
-inherit perl-module eutils
-
-DESCRIPTION="Simple and lightweight interface to the SOAP protocol (sic) both 
on client and server side"
-
-IUSE="ssl test xmpp"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
-
-myconf="${myconf} --noprompt"
-
-RDEPEND="
-   dev-perl/Class-Inspector
-   >=dev-perl/IO-SessionData-1.30.0
-   dev-perl/libwww-perl
-   virtual/perl-MIME-Base64
-   virtual/perl-Scalar-List-Utils
-   dev-perl/Task-Weaken
-   dev-perl/URI
-   dev-perl/XML-Parser
-   dev-perl/MIME-tools
-   ssl? (
-   dev-perl/IO-Socket-SSL
-   dev-perl/LWP-Protocol-https
-   dev-perl/Crypt-SSLeay
-   )
-   xmpp? ( dev-perl/Net-Jabber )
-"
-DEPEND="${RDEPEND}
-   virtual/perl-ExtUtils-MakeMaker
-   test? (
-   virtual/perl-IO
-   virtual/perl-Test-Simple
-   dev-perl/Test-Warn
-   dev-perl/XML-Parser-Lite
-   )
-"
-
-SRC_TEST="do"
-
-src_test() {
-   has_version '>=www-apache/mod_perl-2' && export MOD_PERL_API_VERSION=2
-   perl-module_src_test
-}



[gentoo-commits] repo/gentoo:master commit in: dev-perl/SGMLSpm/

2016-05-02 Thread Andreas Hüttel
commit: d77d461b9c57d0e2d6c5775ff715144149584850
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Mon May  2 21:09:47 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Mon May  2 21:33:18 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d77d461b

dev-perl/SGMLSpm: Version bump

Package-Manager: portage-2.2.28

 dev-perl/SGMLSpm/Manifest   |  1 +
 dev-perl/SGMLSpm/SGMLSpm-1.1.ebuild | 16 
 2 files changed, 17 insertions(+)

diff --git a/dev-perl/SGMLSpm/Manifest b/dev-perl/SGMLSpm/Manifest
index 81728dc..59dccf1 100644
--- a/dev-perl/SGMLSpm/Manifest
+++ b/dev-perl/SGMLSpm/Manifest
@@ -1 +1,2 @@
 DIST SGMLSpm-1.03ii.tar.gz 93250 SHA256 
f06895c0206dada9f9e7f07ecaeb6a3651fd648f4820f49c1f76bfeaec2f2913 SHA512 
edbac8112561912d5d7a9faee2d920bf763576ace5a9bdef5fc3f235533805643ad8db5f57d96c34ce9ecbf1796399dc531f40ab4b2796a1e130a8f288c901d4
 WHIRLPOOL 
9a08d394026aedc6b3c3634f590a9a9c4bbc406f22537c8126ed5b857e787c13a2ccbc295ee10bb6f3299b38099a281e0efa36ab6579cc9f98a96ea2f7849186
+DIST SGMLSpm-1.1.tar.gz 114100 SHA256 
550c9245291c8df2242f7e88f7921a0f636c7eec92c644418e7d89cfea70b2bd SHA512 
0ca3f0f3265f20661ae88ad4764fbf82f226382f79f62c01653265cc7372524dfdf30ce5abffc0344624f5e6138e483952471f8c18d59794b40035af0b7526bc
 WHIRLPOOL 
4a0eaa6283959d9a1f4622c5d0abb128506bbd0a26d04387afe4205d46ad1287c531fd0a1be41d54dd89d9570dee6ad27059c021d5e7d92625443fdeabdc9390

diff --git a/dev-perl/SGMLSpm/SGMLSpm-1.1.ebuild 
b/dev-perl/SGMLSpm/SGMLSpm-1.1.ebuild
new file mode 100644
index 000..ad57317
--- /dev/null
+++ b/dev-perl/SGMLSpm/SGMLSpm-1.1.ebuild
@@ -0,0 +1,16 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DIST_AUTHOR=RAAB
+inherit eutils perl-module
+
+DESCRIPTION="Perl library for parsing the output of nsgmls"
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+IUSE=""
+
+DEPEND="dev-perl/Module-Build"



[gentoo-commits] proj/java:master commit in: dev-util/mtp/

2016-05-02 Thread James Le Cuirot
commit: 4ca9bf852733e50c6237ff720e2edcf3e8ecfa79
Author: James Le Cuirot  gentoo  org>
AuthorDate: Mon May  2 21:29:58 2016 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Mon May  2 21:29:58 2016 +
URL:https://gitweb.gentoo.org/proj/java.git/commit/?id=4ca9bf85

dev-util/mtp: Remove super ancient package

 dev-util/mtp/Manifest |   2 -
 dev-util/mtp/metadata.xml |   8 
 dev-util/mtp/mtp-0.2.1.ebuild | 102 --
 dev-util/mtp/mtp-0.3.1.ebuild | 102 --
 4 files changed, 214 deletions(-)

diff --git a/dev-util/mtp/Manifest b/dev-util/mtp/Manifest
deleted file mode 100644
index 2672da8..000
--- a/dev-util/mtp/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST mtp-0.2.1-src.tar.gz 656216 SHA256 
5df6ff9fda8a0d7e0436b6eeba965fd4b21a4b53c39bd99eb2421929944ddc83
-DIST mtp-0.3.1-src.tar.gz 667952 SHA256 
3105718484abdc21efd4adf7bc54fad9ad834ef999e7828abd5f4ae3067ab87e

diff --git a/dev-util/mtp/metadata.xml b/dev-util/mtp/metadata.xml
deleted file mode 100644
index 952a4b9..000
--- a/dev-util/mtp/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   j...@gentoo.org
-   Java
-   
-

diff --git a/dev-util/mtp/mtp-0.2.1.ebuild b/dev-util/mtp/mtp-0.2.1.ebuild
deleted file mode 100644
index 6192ea4..000
--- a/dev-util/mtp/mtp-0.2.1.ebuild
+++ /dev/null
@@ -1,102 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-inherit eutils java-pkg-2 java-ant-2
-
-DESCRIPTION="More Than Parsing - Parser and ASTs generator"
-HOMEPAGE="http://babel.ls.fi.upm.es/research/mtp;
-SRC_URI="http://babel.ls.fi.upm.es/software/mtp/${P}-src.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~x86"
-IUSE="doc examples"
-
-RDEPEND=">=virtual/jre-1.4
-   =dev-java/jsap-1.03a"
-DEPEND=">=virtual/jdk-1.5
-   dev-java/javacc
-   =dev-java/jsap-1.03a
-   >=dev-java/ant-core-1.6.2" # FIXME ant-core version
-
-src_unpack()
-{
-   unpack ${A}
-
-   cd ${S}/lib
-   java-pkg_jarfrom jsap jsap.jar JSAP_1.03a.jar
-
-}
-
-src_compile() {
-   # Apache ANT needs to know where JAVACC lives
-   local javaccjar=$(java-pkg_getjar --build-only javacc javacc.jar)
-   local javacc=$(dirname ${javaccjar})
-   if (use doc) && $(built_with_use jsap doc); then
-   local jsap_javadoc=$(javadoc-pkg_getjavadoc jsap)
-   fi
-   JAVACC=${javacc} JAVADOC_LINK=${jsap_javadoc} eant $(use_doc doc)
-}
-
-src_install() {
-   # .jar files
-   # TODO: patch ANT src/mtp/build.xml so that only one .jar file
-   # is generated
-   java-pkg_dojar lib/${PN}.jar
-   java-pkg_dojar lib/${PN}ast.jar
-   java-pkg_dojar lib/${PN}analysis.jar
-   java-pkg_dojar lib/${PN}log.jar
-   java-pkg_dojar lib/${PN}parser.jar
-   java-pkg_dojar lib/${PN}semantics.jar
-   java-pkg_dojar lib/${PN}synthesis.jar
-   java-pkg_dolauncher ${PN} --main ${PN}.${PN}
-   # Documentation
-   if use doc; then
-   dodoc README
-   ln -s docs api
-   java-pkg_dojavadoc api
-   fi
-   # Examples
-   if use examples; then
-   dodir /usr/share/doc/${PF}/examples
-   cp examples/* ${D}/usr/share/doc/${PF}/examples
-   fi
-}
-
-# 
--
-# @ebuild-function java-pkg_getjavadoc
-#
-# Get the path of the javadoc documentation for a given package
-# Returns -1 if no javadoc info is found
-# Javadoc needs this in order to properly link files from different libraries
-#
-# Example: Get the path for JSAP javadoc documentation
-#  java-pkg_getjars
-# Example Return:
-#  /usr/share/doc/JSAP-1.03a/doc/javadoc
-#
-# @param $1 - package to get the javadoc from
-# 
--
-javadoc-pkg_getjavadoc() {
-   debug-print-function ${FUNCNAME} $*
-
-   [[ ${#} -ne 1 ]] && die "One and only one argument needed"
-
-   local package_env=/usr/share/${1}/package.env
-   local javadoc_dir
-
-   javadoc_dir=-1
-   if [[ -r "${package_env}" ]]; then
-   exec 3<${package_env}
-   local LINE
-   while read LINE <&3 ; do
-   if [[ $LINE == JAVADOC_PATH* ]]; then
-   # Removing the JAVADOC_PATH=" part of the line
-   javadoc_dir=${LINE#*=\"}
-   javadoc_dir=${javadoc_dir/\"/}
-   fi;
-   done
-   fi
-   echo ${javadoc_dir}
-}

diff --git a/dev-util/mtp/mtp-0.3.1.ebuild b/dev-util/mtp/mtp-0.3.1.ebuild
deleted file mode 100644
index 6192ea4..000
--- a/dev-util/mtp/mtp-0.3.1.ebuild
+++ /dev/null
@@ -1,102 +0,0 @@
-# Copyright 1999-2015 Gentoo 

[gentoo-commits] proj/java:master commit in: dev-java/jsap/files/, dev-java/jsap/

2016-05-02 Thread James Le Cuirot
commit: 8844c2b7fe8eec6567b9231626196bd93a40c421
Author: James Le Cuirot  gentoo  org>
AuthorDate: Mon May  2 21:31:01 2016 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Mon May  2 21:31:01 2016 +
URL:https://gitweb.gentoo.org/proj/java.git/commit/?id=8844c2b7

dev-java/jsap: Remove super ancient package

mtp has gone so this is no longer needed.

 dev-java/jsap/Manifest |  1 -
 dev-java/jsap/files/jsap-1.03a-build.xml.patch | 19 
 dev-java/jsap/jsap-1.03a.ebuild| 60 --
 dev-java/jsap/metadata.xml | 12 --
 4 files changed, 92 deletions(-)

diff --git a/dev-java/jsap/Manifest b/dev-java/jsap/Manifest
deleted file mode 100644
index 05afaf2..000
--- a/dev-java/jsap/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST JSAP-1.03a-src.tar.gz 1007942 SHA256 
d547aa7a0decc2c52fe06abdc33da1e5354b0984cd9a5d7f4970d8593e7f73b8

diff --git a/dev-java/jsap/files/jsap-1.03a-build.xml.patch 
b/dev-java/jsap/files/jsap-1.03a-build.xml.patch
deleted file mode 100644
index 8836cff..000
--- a/dev-java/jsap/files/jsap-1.03a-build.xml.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-*** build.xml  2006-09-08 15:38:20.0 +0200
 build.xml.22006-09-08 15:50:10.0 +0200
-***
-*** 157,163 
-  
-  
-   
-! 
-  
-  
-   
 157,163 
-  
-  
-   
-! 
-  
-  
-   

diff --git a/dev-java/jsap/jsap-1.03a.ebuild b/dev-java/jsap/jsap-1.03a.ebuild
deleted file mode 100644
index eadecaf..000
--- a/dev-java/jsap/jsap-1.03a.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-inherit eutils java-pkg-2 java-ant-2
-
-DESCRIPTION="Java Simple Arguments Parser (JSAP)"
-HOMEPAGE="http://sourceforge.net/projects/jsap;
-SRC_URI="mirror://sourceforge/${PN}/JSAP-1.03a-src.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~x86"
-IUSE="doc test"
-
-DEPEND=">=virtual/jdk-1.4
-   >=dev-java/ant-core-1.5.4
-   =dev-java/snip-0.11
-   =dev-java/rundoc-0.11
-   test? ( dev-java/junit )"
-
-RDEPEND=">=virtual/jre-1.4"
-S=${WORKDIR}/JSAP-1.03a
-
-src_unpack()
-{
-   unpack ${A}
-
-   cd "${S}"
-   epatch "${FILESDIR}/${P}-build.xml.patch"
-
-   cd "${S}/lib"
-
-   rm ant.jar
-   rm junit.jar
-   java-pkg_jar-from --build-only snip snip.jar snip-0.11.jar
-   java-pkg_jar-from --build-only rundoc rundoc.jar rundoc-0.11.jar
-   if use test ; then
-   java-pkg_jar-from --build-only junit junit.jar
-   fi
-   cd "${S}"
-   eant clean
-}
-
-src_compile()
-{
-   eant jar $(use_doc javadoc manual)
-}
-
-src_install()
-{
-   java-pkg_newjar dist/JSAP_${PV}.jar ${PN}.jar
-
-   use doc && java-pkg_dohtml -r doc
-}
-
-src_test()
-{
-   eant test
-}

diff --git a/dev-java/jsap/metadata.xml b/dev-java/jsap/metadata.xml
deleted file mode 100644
index f4ca44e..000
--- a/dev-java/jsap/metadata.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   ipe...@babel.ls.fi.upm.es
-   Ivan Perez
-   
-
-   j...@gentoo.org
-   Java
-   
-



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

2016-05-02 Thread Tim Harder
commit: 65210f217303ca532ac9d588b4f4c204c24c6b85
Author: Tim Harder  gentoo  org>
AuthorDate: Mon May  2 21:29:08 2016 +
Commit: Tim Harder  gentoo  org>
CommitDate: Mon May  2 21:29:47 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65210f21

net-irc/weechat: version bump to 1.5

 net-irc/weechat/Manifest   |   1 +
 net-irc/weechat/weechat-1.5.ebuild | 143 +
 2 files changed, 144 insertions(+)

diff --git a/net-irc/weechat/Manifest b/net-irc/weechat/Manifest
index 4fe5d7f..2f5404a 100644
--- a/net-irc/weechat/Manifest
+++ b/net-irc/weechat/Manifest
@@ -2,3 +2,4 @@ DIST weechat-1.1.1.tar.bz2 2305377 SHA256 
810bf0584fd5888246797fc7f1bbc4facb064a
 DIST weechat-1.2.tar.bz2 2367277 SHA256 
7c4501401f3794d551331b3cede354895962858acc50437567ffd40fa7af684d SHA512 
dd806c1e63e5abab8fcc2f84a615eae8769fc9271f89abb19fae9ef4489e86e132a8d6a4843714a3c772c064c9060e4b63f7433fe6beddd3e675ba08a744a1f9
 WHIRLPOOL 
8d9d5db2f3628e41f7b186ae80189113645f64dff407b5b64f602deefcf821b2457225d57d2cb1dee6b4c014704013c48fbc26423f6a39b762a0c55439bfb908
 DIST weechat-1.3.tar.bz2 2402422 SHA256 
703dd771f74a2391bab656992712331d9151a227ac3210393a4ecf6458605148 SHA512 
82159f1c630bf389e7a3b8baf29b67c50711e1a767040440c71bfd7d3cd0c3005b7423e6dd53c2437512cc68953f540039971a4e6f6d7a4cdb4a4e74e4c3985b
 WHIRLPOOL 
325b0feec0571d07494b2b5c863999d4f0bfa8f9698144624e5b8ec4c3c3180a1c3bc252647f3ba52f4cc46de788a450a122f2f3ac028ca333cb0c124fb70d8c
 DIST weechat-1.4.tar.bz2 2464362 SHA256 
e06d9949ccececdd9692c95c41304c2f7fe9ec47b5eedd0d0a8529f6a3c1ddd4 SHA512 
4c4bf25da513c25a16b24d94c1a6971db12d5cf168c83aa9757053c634f7b25e92f1dbe54fefd09eeb69ece9ddc4be115bb6f6fc078ef7682dcb1df21f04
 WHIRLPOOL 
1db202131c1cd68e0f436f2e316ad73d0887d48533c417c1446a671bc620fdaaedb6198ac23876d62a51458ab55231d528635fc4e7fa2aa0067c60f656e3d6e5
+DIST weechat-1.5.tar.bz2 2546183 SHA256 
326e27c4f0548a7c6f21302516356f1e9e3541262b31058e37181f95205c8c58 SHA512 
8999ffd4f5034f973f790bf7e0e6b1bacd73ab588d7dce7dcbea15861efb766510d1a2f722b9fa86b52a8345aef37918f3c949b85a0451e19485cee4e76d45b2
 WHIRLPOOL 
51f91af5fccfe242712f5e21a9934d75747ca2a2ea31bd25194c6a37ba32e3dc519eb46da13fdf15f6483c2cc9bc0a80a1a6f296c0f31069b0339fe4fad6d5c3

diff --git a/net-irc/weechat/weechat-1.5.ebuild 
b/net-irc/weechat/weechat-1.5.ebuild
new file mode 100644
index 000..6c4d473
--- /dev/null
+++ b/net-irc/weechat/weechat-1.5.ebuild
@@ -0,0 +1,143 @@
+# Copyright 1999-2016 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,3_5} )
+inherit eutils python-single-r1 multilib cmake-utils
+
+if [[ ${PV} == "" ]] ; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/weechat/weechat.git;
+else
+   SRC_URI="https://weechat.org/files/src/${P}.tar.bz2;
+   KEYWORDS="~amd64 ~x86"
+fi
+
+DESCRIPTION="Portable and multi-interface IRC client"
+HOMEPAGE="http://weechat.org/;
+
+LICENSE="GPL-3"
+SLOT="0"
+
+NETWORKS="+irc"
+PLUGINS="+alias +charset +exec +fifo +logger +relay +scripts +spell +trigger 
+xfer"
+#INTERFACES="+ncurses gtk"
+# dev-lang/v8 was dropped from Gentoo so we can't enable javascript support
+SCRIPT_LANGS="guile lua +perl +python ruby tcl"
+LANGS=" cs de es fr hu it ja pl pt pt_BR ru tr"
+IUSE="doc nls +ssl test ${LANGS// / linguas_} ${SCRIPT_LANGS} ${PLUGINS} 
${INTERFACES} ${NETWORKS}"
+#REQUIRED_USE=" || ( ncurses gtk )"
+
+RDEPEND="
+   dev-libs/libgcrypt:0=
+   net-misc/curl[ssl]
+   sys-libs/ncurses:0=
+   sys-libs/zlib
+   charset? ( virtual/libiconv )
+   guile? ( dev-scheme/guile:12 )
+   lua? ( dev-lang/lua:0[deprecated] )
+   nls? ( virtual/libintl )
+   perl? ( dev-lang/perl )
+   python? ( ${PYTHON_DEPS} )
+   ruby? ( || ( dev-lang/ruby:2.3 dev-lang/ruby:2.2 dev-lang/ruby:2.1 
dev-lang/ruby:2.0 ) )
+   ssl? ( net-libs/gnutls )
+   spell? ( app-text/aspell )
+   tcl? ( >=dev-lang/tcl-8.4.15:0= )
+"
+#  ncurses? ( sys-libs/ncurses )
+#  gtk? ( x11-libs/gtk+:2 )
+DEPEND="${RDEPEND}
+   doc? (
+   app-text/asciidoc
+   dev-util/source-highlight
+   )
+   nls? ( >=sys-devel/gettext-0.15 )
+   test? ( dev-util/cpputest )
+"
+
+DOCS="AUTHORS.asciidoc ChangeLog.asciidoc ReleaseNotes.asciidoc 
README.asciidoc"
+
+# tests need to be fixed to not use system plugins if weechat is already 
installed
+RESTRICT="test"
+
+PATCHES=( "${FILESDIR}"/${PN}-1.2-tinfo.patch )
+
+pkg_setup() {
+   use python && python-single-r1_pkg_setup
+}
+
+src_prepare() {
+
+   epatch "${PATCHES[@]}"
+
+   # fix libdir placement
+   sed -i \
+   -e "s:lib/:$(get_libdir)/:g" \
+   -e "s:lib\":$(get_libdir)\":g" \
+   CMakeLists.txt || die "sed failed"
+
+   # install only required translations
+   local i
+   for i in ${LANGS} ; do
+   if ! 

[gentoo-commits] proj/java:master commit in: dev-java/j3d-core/

2016-05-02 Thread James Le Cuirot
commit: 4b6ee535a3994f1b9b7aecfc72e65cb0af23d1b9
Author: James Le Cuirot  gentoo  org>
AuthorDate: Mon May  2 20:52:07 2016 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Mon May  2 20:52:07 2016 +
URL:https://gitweb.gentoo.org/proj/java.git/commit/?id=4b6ee535

dev-java/j3d-core: Bump eclipse-ecj version again to 4.5

Untested again, sorry! :( It's already very broken anyway.

Package-Manager: portage-2.2.28

 dev-java/j3d-core/j3d-core-1.5.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-java/j3d-core/j3d-core-1.5.1.ebuild 
b/dev-java/j3d-core/j3d-core-1.5.1.ebuild
index e755a90..45f7e27 100644
--- a/dev-java/j3d-core/j3d-core-1.5.1.ebuild
+++ b/dev-java/j3d-core/j3d-core-1.5.1.ebuild
@@ -36,7 +36,7 @@ RDEPEND=">=virtual/jre-1.5
${COMMON_DEP}"
 DEPEND=">=virtual/jdk-1.5
app-arch/unzip
-   dev-java/eclipse-ecj:3.7[ant]
+   dev-java/eclipse-ecj:4.5[ant]
dev-java/vecmath
${COMMON_DEP}"
 
@@ -54,7 +54,7 @@ src_unpack() {
 EANT_BUILD_TARGET="jar-opt"
 EANT_DOC_TARGET="docs"
 ANT_OPTS="-Xmx1g"
-JAVA_PKG_FORCE_COMPILER="ecj-3.7"
+JAVA_PKG_FORCE_COMPILER="ecj-4.5"
 
 src_install() {
 



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

2016-05-02 Thread James Le Cuirot
commit: 73cdddfa014346b6fff29ce697cd87b4ef12c1c9
Author: James Le Cuirot  gentoo  org>
AuthorDate: Mon May  2 20:41:53 2016 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Mon May  2 20:41:53 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73cdddfa

profiles: Java 6 has been removed

 profiles/package.mask | 17 -
 1 file changed, 17 deletions(-)

diff --git a/profiles/package.mask b/profiles/package.mask
index dbf3f5f..497e0dc 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -223,23 +223,6 @@ x11-libs/libview
 # Masked for removal in 30 days.
 =app-forensics/chkrootkit-0.49
 
-# James Le Cuirot  (14 Mar 2016)
-# Bye bye Java 6! If you really still need it then gnu_andrew will
-# continue to maintain icedtea:6 in java-overlay but it is not
-# supported by Java team at all. IBM's JVM is still alive but
-# downloads are behind a registration wall and Java team does not wish
-# to support it. haubi may provide IBM updates though probably only
-# for ppc-aix. Removal in 30 days.
-dev-java/apple-jdk-bin
-dev-java/hp-jdk-bin
-dev-java/ibm-jdk-bin:1.6
-dev-java/ibm-jre-bin:1.6
-dev-java/icedtea-bin:6
- (14 Mar 2016)
 # Not compatible with ruby21+, no reverse dependencies.
 dev-ruby/extlib



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

2016-05-02 Thread James Le Cuirot
commit: 96c0a036fe3ba38038928b0444a50fcf80469c2c
Author: James Le Cuirot  gentoo  org>
AuthorDate: Mon May  2 20:41:05 2016 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Mon May  2 20:41:05 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96c0a036

profiles: dev-java/java-config-wrapper has been removed

 profiles/package.mask | 5 -
 1 file changed, 5 deletions(-)

diff --git a/profiles/package.mask b/profiles/package.mask
index 5c7fd16..dbf3f5f 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -177,11 +177,6 @@ dev-libs/ptypes
 =app-admin/logstash-bin-2.3.0*
 
 # James Le Cuirot  (03 Apr 2016)
-# Legacy migration package that is no longer needed. See
-# bug #549508. Removal in 30 days.
-dev-java/java-config-wrapper
-
-# James Le Cuirot  (03 Apr 2016)
 # Masking Spring Framework for the time being as 3.2.4 is old, has
 # multiple vulnerabilities, and we're not likely to update it
 # soon. Hopefully we can revisit it when the Maven stuff works out.



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

2016-05-02 Thread James Le Cuirot
commit: 0a822e472735d4da27dc8d3dd29a01299e89dc08
Author: James Le Cuirot  gentoo  org>
AuthorDate: Mon May  2 20:39:37 2016 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Mon May  2 20:39:37 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a822e47

dev-java/java-config-wrapper: Remove legacy migration package

 dev-java/java-config-wrapper/Manifest  |  1 -
 .../java-config-wrapper-0.16-r1.ebuild | 22 --
 .../java-config-wrapper-0.16.ebuild| 20 
 dev-java/java-config-wrapper/metadata.xml  |  8 
 4 files changed, 51 deletions(-)

diff --git a/dev-java/java-config-wrapper/Manifest 
b/dev-java/java-config-wrapper/Manifest
deleted file mode 100644
index 822f3c0..000
--- a/dev-java/java-config-wrapper/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST java-config-wrapper-0.16.tar.bz2 7421 SHA256 
26a9bddd2c4123bbe32cb52a248cfc8657ab9d414d4c330a10ec2bee3c3aa300 SHA512 
24dc96d18b71e59129f0e5a376b7ca412941ec7337d7f3cbd67f40c211318955234b480031047fc367875cfaf8613a0f4aca67d479d424de9b48592d5dcb3fbf
 WHIRLPOOL 
f7e2e4fdedf7c51529a90d69e6ed34a15b98c062005476e01d2e5aaeea2d113c40e3d879fdc0a825512460545333bd55caf3f6779421fd101a09d70f3edd9d06

diff --git a/dev-java/java-config-wrapper/java-config-wrapper-0.16-r1.ebuild 
b/dev-java/java-config-wrapper/java-config-wrapper-0.16-r1.ebuild
deleted file mode 100644
index 993c431..000
--- a/dev-java/java-config-wrapper/java-config-wrapper-0.16-r1.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-DESCRIPTION="Wrapper for java-config"
-HOMEPAGE="https://www.gentoo.org/proj/en/java;
-SRC_URI="mirror://gentoo/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
-IUSE=""
-
-DEPEND="!https://www.gentoo.org/proj/en/java;
-SRC_URI="mirror://gentoo/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 arm ~hppa ppc64 ~sparc x86 ~amd64-fbsd ~x86-fbsd"
-IUSE=""
-
-DEPEND="!
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   j...@gentoo.org
-   Java
-   
-



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

2016-05-02 Thread Johannes Huber
commit: 626da49fc643211ccc0eefeb8c98d6cc02207698
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Mon May  2 14:12:06 2016 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Mon May  2 20:36:39 2016 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=626da49f

kde-apps/messagelib: Block conflicting kdepim-addons

Upstream fix for missing headers without kdepim-addons causes
file collision with the latter, see also:

https://bugs.kde.org/show_bug.cgi?id=362100
https://quickgit.kde.org/?p=messagelib.git=commit=d3c47f200c96e04785d05af9fb086bcd5a68f251

Package-Manager: portage-2.2.27

Signed-off-by: Johannes Huber  gentoo.org>

 kde-apps/messagelib/messagelib-.ebuild | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/kde-apps/messagelib/messagelib-.ebuild 
b/kde-apps/messagelib/messagelib-.ebuild
index 642eec7..211890b 100644
--- a/kde-apps/messagelib/messagelib-.ebuild
+++ b/kde-apps/messagelib/messagelib-.ebuild
@@ -67,13 +67,14 @@ DEPEND="${COMMON_DEPEND}
 "
 RDEPEND="${COMMON_DEPEND}
!

[gentoo-commits] repo/gentoo:master commit in: net-fs/samba/

2016-05-02 Thread Lars Wendler
commit: 3fe1c417dc8daa78453fdd0232ec5a708ad623b3
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon May  2 19:50:31 2016 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon May  2 19:51:58 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3fe1c417

net-fs/samba: Bump to versions 4.2.12, 4.3.9 and 4.4.3

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

 net-fs/samba/Manifest|   5 +
 net-fs/samba/samba-4.2.12.ebuild | 256 +++
 net-fs/samba/samba-4.3.9.ebuild  | 248 +
 net-fs/samba/samba-4.4.3.ebuild  | 231 +++
 4 files changed, 740 insertions(+)

diff --git a/net-fs/samba/Manifest b/net-fs/samba/Manifest
index cb043f6..b2159bb 100644
--- a/net-fs/samba/Manifest
+++ b/net-fs/samba/Manifest
@@ -2,10 +2,15 @@ DIST samba-3.5.21.tar.gz 35377315 SHA256 
fd9a66056b1ba9496762394efff41fcaa0e58f2
 DIST samba-3.5.22.tar.gz 35385144 SHA256 
b4c98f77f5634478da109063334acd9b6ad7bcb38151a5b1cac6dc5feb6679dc SHA512 
0e1b4816d921ca82f0426a254cf103066634cc54e28d707a62da951118413f7f5ca5f87d60688cab802a58b0af87f797fbbe12f4e1284d5d7f545a98aba97616
 WHIRLPOOL 
6e59655dd7a537f0c7c889c43ddf5afb8060706e1ec79b3835698181c5c7478059f91c93eefbde50b03e0154a686eda35eabf807bb7ae01dd2b9b39648a009ae
 DIST samba-3.6.25.tar.gz 34121828 SHA256 
8f2c8a7f2bd89b0dfd228ed917815852f7c625b2bc0936304ac3ed63aaf83751 SHA512 
25a5c56dae4517e82e196b59fa301b661ec75db57effbb0ede35fb23b018f78cdea6513e8760966caf58abc43335fcebda77fe5bf5bb9d4b27fd3ca6e5a3b626
 WHIRLPOOL 
68c4a335b3912bf3c6baecae337b1131127515191052366ca9a04ec6d919f2fb69c912aefb087e2578134f3a9bde7b496ea880f2197a8dbf8221058dd1e8444d
 DIST samba-4.2.11.tar.gz 20875348 SHA256 
75bce53c922e51352933c9846f2c4b1e251fabb80927adb426a773a321ee01f8 SHA512 
293365f2718e756b66ccaec4b0dbce7044ade615b332f58968cf42dd1ec6b6445576590eaf5bd35fa00ba9aa4ba3be7720afc33763652e97731eebc3149f4820
 WHIRLPOOL 
1e04fd527e55c8d438c96a43d9a25a9b3e09a3edc504a2a5fe44bc8f9101c833c90e3ba3188b8872b046370916f3798e4fce0ffa7848b65f452b5c51ec7107f1
+DIST samba-4.2.12.tar.gz 20878216 SHA256 
b334a86a92a1c2759c0b3dce20965e7fe820f0abafee38e6fd82eb9c5cd80514 SHA512 
0edf606e03fbfbf8efda6e918f5ab0fd4284d38ae1b0c829f30ea01646eca73dd61b1239363960371a8dc64eaeaffbc4b1c216872ae431f7dfef2139b620e0be
 WHIRLPOOL 
f1de51eedd5172cc7c8fb3d0093be5aa1678de1f0b7a686be2c9eb962abb3219ed9232e79d03065c58a14f0b6482cb8bf5c8b3e166fec95911ace2b5dced0782
 DIST samba-4.2.9.tar.gz 20750339 SHA256 
ba0229485e8bebac22bd3ae98b1e393e7127f3a958cc90e205a6d752e575354c SHA512 
438196f268c0ca0b83e8e7e9eb8e9a8b503d6408d5e2b0dca1d041185e06cfc08147122d5495b72c46ce58dc3cb4be4766551f0101c69b2620b89e749d89ad98
 WHIRLPOOL 
aa7a655a3d2f2bf81d2747d83c86a0c7d464a31414b6e27a413461e1e0ad0ce3d3af5d756d8ce213e775f5141c44ef9c41a792e88d246bcab002b7623552260a
 DIST samba-4.3.8.tar.gz 20568773 SHA256 
379dc66c3a0a483bf5bed37be6e5d182934db7c4102b21929a6c4602b32b2b10 SHA512 
cb88b19733da2aad7c6843d31e5f017ac83e7021a4bf96e193661eec8d29be32512e04d0d427bea326c1ea955c120553e78bddca24bd354129ab65502c8afe43
 WHIRLPOOL 
5e8664e32d4cb5787d19729dc10208ef5ad0fa8ca8248a2e673a25271294d8c941a48cd680e369ec0fb4d07c3bcb4c6899c9f85614068c2721266fa140353df8
+DIST samba-4.3.9.tar.gz 20570849 SHA256 
1f22c61a7f24c5357a9ef4d10833a2cd161f40f3db03bcbe586d7cd3a56139f3 SHA512 
bc90c88d8defd3acec7c671e8ceacec31e3111540aabee7ec6f11cdeaf61bbd993525e2b765e3b50801c8079e1168cf496b3e5e6a56118d6493ae5da60d34c41
 WHIRLPOOL 
e33efba4bfbaab5278ec62cbadb5f14fe2220d4b4ad1e57a4d26233d8b6bdf4318ad86d839b2638a490a195c04aabb02dafff67bb1e2999fab4f116b3c6367cc
 DIST samba-4.4.2.tar.gz 20711230 SHA256 
eaecd41a85ebb9507b8db9856ada2a949376e9d53cf75664b5493658f6e5926a SHA512 
ba965ee32d9cfd9c54ef523fc2ed4179000de956a563fdd91625d2bbcf6f07dd787c8b7e3dc4c824f46c87eea0aa97e7123d759992080fdfb2fde8554d18e3b7
 WHIRLPOOL 
a4a51e8af98902bfed109fc126ad53c9222b498d947555bfe1223ae4dee5ea951561d8a4392e15221cf6010b2385df23688915b348852dbdc538dc84942a6b1d
+DIST samba-4.4.3.tar.gz 20705861 SHA256 
031e6ada6d15deae6850845eed41497af32207fb679d6c6c74f19acc99d437ba SHA512 
25c447f476a54c7e5992d3010957401373eb99b89bcab3e80d7a5aee08413fab87d0dc87d43e7c541b4fa1778a8707121639f56a208dd634e0b1f905eb8afa7c
 WHIRLPOOL 
4c62e58cf9d851ca114f3d3eea20350a589006acbe5fb9209c7be0617f435cee0c4a706906238a354a78d97aa6fdd45d40aef699a2c179ced3671f996fb2afc7
+DIST samba-disable-python-patches-4.2.12.tar.xz 6052 SHA256 
8903eacbabdfaf7b64cbde03d7c367d1efdc92e54090f0f4b9ed5d2a462b1c18 SHA512 
c527d0a052d3211e5b12c17bc94db56cc5e5545189ed65a760c0656c94c22e27a4b159e6439eb0370873e1619873a741f3b3bd10d3876b38eb3914a87eace372
 WHIRLPOOL 
ad63db55d5dc96f56e6c9b30c2092e2f6e206b0ed5d13c249879d10753c8db2f475c5d4e651e2fc042ad992b648d3b4465f1b28c6b4bbf821cf503d27f741f7e
 DIST samba-disable-python-patches-4.2.9.tar.xz 6016 SHA256 
222d0153f03e28a0b906ee2b27076223ac88b84a998aaa285f658861edfa SHA512 

[gentoo-commits] repo/gentoo:master commit in: net-fs/samba/

2016-05-02 Thread Lars Wendler
commit: f56707f471411831a59ee29b943ee0f8f43c934f
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon May  2 19:51:42 2016 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon May  2 19:52:01 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f56707f4

net-fs/samba: Removed old.

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

 net-fs/samba/Manifest   |   3 -
 net-fs/samba/samba-4.3.8.ebuild | 248 
 net-fs/samba/samba-4.4.2.ebuild | 231 -
 3 files changed, 482 deletions(-)

diff --git a/net-fs/samba/Manifest b/net-fs/samba/Manifest
index b2159bb..c5cadda 100644
--- a/net-fs/samba/Manifest
+++ b/net-fs/samba/Manifest
@@ -4,13 +4,10 @@ DIST samba-3.6.25.tar.gz 34121828 SHA256 
8f2c8a7f2bd89b0dfd228ed917815852f7c625b
 DIST samba-4.2.11.tar.gz 20875348 SHA256 
75bce53c922e51352933c9846f2c4b1e251fabb80927adb426a773a321ee01f8 SHA512 
293365f2718e756b66ccaec4b0dbce7044ade615b332f58968cf42dd1ec6b6445576590eaf5bd35fa00ba9aa4ba3be7720afc33763652e97731eebc3149f4820
 WHIRLPOOL 
1e04fd527e55c8d438c96a43d9a25a9b3e09a3edc504a2a5fe44bc8f9101c833c90e3ba3188b8872b046370916f3798e4fce0ffa7848b65f452b5c51ec7107f1
 DIST samba-4.2.12.tar.gz 20878216 SHA256 
b334a86a92a1c2759c0b3dce20965e7fe820f0abafee38e6fd82eb9c5cd80514 SHA512 
0edf606e03fbfbf8efda6e918f5ab0fd4284d38ae1b0c829f30ea01646eca73dd61b1239363960371a8dc64eaeaffbc4b1c216872ae431f7dfef2139b620e0be
 WHIRLPOOL 
f1de51eedd5172cc7c8fb3d0093be5aa1678de1f0b7a686be2c9eb962abb3219ed9232e79d03065c58a14f0b6482cb8bf5c8b3e166fec95911ace2b5dced0782
 DIST samba-4.2.9.tar.gz 20750339 SHA256 
ba0229485e8bebac22bd3ae98b1e393e7127f3a958cc90e205a6d752e575354c SHA512 
438196f268c0ca0b83e8e7e9eb8e9a8b503d6408d5e2b0dca1d041185e06cfc08147122d5495b72c46ce58dc3cb4be4766551f0101c69b2620b89e749d89ad98
 WHIRLPOOL 
aa7a655a3d2f2bf81d2747d83c86a0c7d464a31414b6e27a413461e1e0ad0ce3d3af5d756d8ce213e775f5141c44ef9c41a792e88d246bcab002b7623552260a
-DIST samba-4.3.8.tar.gz 20568773 SHA256 
379dc66c3a0a483bf5bed37be6e5d182934db7c4102b21929a6c4602b32b2b10 SHA512 
cb88b19733da2aad7c6843d31e5f017ac83e7021a4bf96e193661eec8d29be32512e04d0d427bea326c1ea955c120553e78bddca24bd354129ab65502c8afe43
 WHIRLPOOL 
5e8664e32d4cb5787d19729dc10208ef5ad0fa8ca8248a2e673a25271294d8c941a48cd680e369ec0fb4d07c3bcb4c6899c9f85614068c2721266fa140353df8
 DIST samba-4.3.9.tar.gz 20570849 SHA256 
1f22c61a7f24c5357a9ef4d10833a2cd161f40f3db03bcbe586d7cd3a56139f3 SHA512 
bc90c88d8defd3acec7c671e8ceacec31e3111540aabee7ec6f11cdeaf61bbd993525e2b765e3b50801c8079e1168cf496b3e5e6a56118d6493ae5da60d34c41
 WHIRLPOOL 
e33efba4bfbaab5278ec62cbadb5f14fe2220d4b4ad1e57a4d26233d8b6bdf4318ad86d839b2638a490a195c04aabb02dafff67bb1e2999fab4f116b3c6367cc
-DIST samba-4.4.2.tar.gz 20711230 SHA256 
eaecd41a85ebb9507b8db9856ada2a949376e9d53cf75664b5493658f6e5926a SHA512 
ba965ee32d9cfd9c54ef523fc2ed4179000de956a563fdd91625d2bbcf6f07dd787c8b7e3dc4c824f46c87eea0aa97e7123d759992080fdfb2fde8554d18e3b7
 WHIRLPOOL 
a4a51e8af98902bfed109fc126ad53c9222b498d947555bfe1223ae4dee5ea951561d8a4392e15221cf6010b2385df23688915b348852dbdc538dc84942a6b1d
 DIST samba-4.4.3.tar.gz 20705861 SHA256 
031e6ada6d15deae6850845eed41497af32207fb679d6c6c74f19acc99d437ba SHA512 
25c447f476a54c7e5992d3010957401373eb99b89bcab3e80d7a5aee08413fab87d0dc87d43e7c541b4fa1778a8707121639f56a208dd634e0b1f905eb8afa7c
 WHIRLPOOL 
4c62e58cf9d851ca114f3d3eea20350a589006acbe5fb9209c7be0617f435cee0c4a706906238a354a78d97aa6fdd45d40aef699a2c179ced3671f996fb2afc7
 DIST samba-disable-python-patches-4.2.12.tar.xz 6052 SHA256 
8903eacbabdfaf7b64cbde03d7c367d1efdc92e54090f0f4b9ed5d2a462b1c18 SHA512 
c527d0a052d3211e5b12c17bc94db56cc5e5545189ed65a760c0656c94c22e27a4b159e6439eb0370873e1619873a741f3b3bd10d3876b38eb3914a87eace372
 WHIRLPOOL 
ad63db55d5dc96f56e6c9b30c2092e2f6e206b0ed5d13c249879d10753c8db2f475c5d4e651e2fc042ad992b648d3b4465f1b28c6b4bbf821cf503d27f741f7e
 DIST samba-disable-python-patches-4.2.9.tar.xz 6016 SHA256 
222d0153f03e28a0b906ee2b27076223ac88b84a998aaa285f658861edfa SHA512 
02fc666a36f8e733e522663d80775d130fabee9d5fb4e1c261d28815e07be425ae8977213f9216c7af62dd8b2619e7e13d71f9a25780b058c8119901c2115a18
 WHIRLPOOL 
ebba3a6d41a41844621759672aa8c984d26f44d12007c8e929405470c381bc262523ec68d3972e86cf675c45f092fa287496167e42940e70d704790753e47b03
-DIST samba-disable-python-patches-4.3.6.tar.xz 6076 SHA256 
95f9194abcba917aa5e2e9623e897eb41127a8c74352ebf6a9bf0f4ba82fd1c0 SHA512 
601026aae1fd960e3f4cf53c0f68e843a118f6dd4fc776d9a6503fd16f9789e743eb92b7ebf84179d63aaff20d1ddb1989cb995fc1da3cd2e843f6830f04f08f
 WHIRLPOOL 
5afb076857f049469e65a13eb46af98f21b249d9c7ef9d731bd6f3aeb6e9512efc781b5392c0c7aaeb7a818e9e896f336a70b306122280d3ad432372bc6b0024
 DIST samba-disable-python-patches-4.3.9.tar.xz 6116 SHA256 
83206112e04c375e170e86ea6b29d6dc2c172b55ba9fb89130be14708d758cf5 SHA512 

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

2016-05-02 Thread Amy Winston
commit: b82344588e71fa110e32bc6bb387f5865df931b9
Author: Amy Winston  gentoo  org>
AuthorDate: Mon May  2 19:44:46 2016 +
Commit: Amy Winston  gentoo  org>
CommitDate: Mon May  2 19:44:46 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8234458

dev-python/vdirsyncer: version bump 0.10.0 bug #581756

Package-Manager: portage-2.2.26

 dev-python/vdirsyncer/Manifest |  1 +
 dev-python/vdirsyncer/vdirsyncer-0.10.0.ebuild | 29 ++
 2 files changed, 30 insertions(+)

diff --git a/dev-python/vdirsyncer/Manifest b/dev-python/vdirsyncer/Manifest
index 126608a..07009cf 100644
--- a/dev-python/vdirsyncer/Manifest
+++ b/dev-python/vdirsyncer/Manifest
@@ -1,3 +1,4 @@
+DIST vdirsyncer-0.10.0.tar.gz 95756 SHA256 
e8b894022beab6f98bde80c919e5fa99cb72698e2327e8d5271c70d39636c8bd SHA512 
dbc9b6062a09e5a408791a90277f719be4abc5315c226622f7d1d8f6ae13b04de18e4f26fc94e9c09529970b6d604ccd93a490ffb8ba0c98e0e450317a4c0d88
 WHIRLPOOL 
a6482c14cb916a38c319623c6f2fad28fec7044109d7e5682075fbdba2f7c83ef8c648a583e3ef17e29c1dfaa033b1322615b106791f600e1863d037910a313c
 DIST vdirsyncer-0.7.5.tar.gz 86669 SHA256 
3f51c1fabac7f231327deb098998185cbd77564dc1bfc29f4bc8d89226c96a37 SHA512 
4df4469c8bd6f29e7250ee10407e34e2badd1b6c6260f4f71dbc090ca55837207d22edbbc83b6d7a5e332fc64dba49a9b94002bb607e39ba8cb7dbba8a5b0a28
 WHIRLPOOL 
9d95dd2e18c347ec02cc8019226e0fb6c3726b04845bf2da3aafbb738b72628c8359f51d5095312b8bfd990a6e208260eef90ac55decac2798eca0ddae6fb91f
 DIST vdirsyncer-0.9.0.tar.gz 87186 SHA256 
c5101d8b29c4c0da37ef5542d5bcc53e6ce2266c955fd601ca19989db2e42a69 SHA512 
34446b588eae14f07055eab486db2386d04a12f71b35c41c27529cbd4dbd518067175236d961d97625c4b0b46f0cd24ed367b84aa33b2c42371c999aaba3cde6
 WHIRLPOOL 
2d735e1b32d1d42e5e32ce58e962a4c27665e32fb7181e4258716eeac594f74b23297e1af3833c8741552b5181a676d6f084f70f81b5071a6dd0336309d32f4e
 DIST vdirsyncer-0.9.3.tar.gz 92463 SHA256 
8ca2941bb99c5b67f0f9e7cae3dd65fcbd64b8969515c68d44e6f3cd9cfc50f2 SHA512 
ca1ccae7c90d1ce15581e047e776433835e5575b977ffdfc665f386d701ffb5a18928e753459cb0f8c8644a67165db370d1e24378ff67fc7a3c4f954ef71d550
 WHIRLPOOL 
34f291dd99b149ce9a0814d0bb51d31e3438ed98712fcd4042ad9dfef292ef6bba2d68aa49763445534455ab6458d01cce6356cdd2706f9b9b2b38c177b688da

diff --git a/dev-python/vdirsyncer/vdirsyncer-0.10.0.ebuild 
b/dev-python/vdirsyncer/vdirsyncer-0.10.0.ebuild
new file mode 100644
index 000..0c33126
--- /dev/null
+++ b/dev-python/vdirsyncer/vdirsyncer-0.10.0.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="6"
+
+PYTHON_COMPAT=( python3_{3,4} )
+
+inherit distutils-r1
+
+DESCRIPTION="Synchronize calendars and contacts"
+HOMEPAGE="https://github.com/pimutils/vdirsyncer;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+KEYWORDS="~amd64 ~x86"
+SLOT="0"
+IUSE=""
+
+DEPEND="dev-python/setuptools_scm[${PYTHON_USEDEP}]"
+RDEPEND=">=dev-python/click-5.0[${PYTHON_USEDEP}]
+   >=dev-python/click-log-0.1.3[${PYTHON_USEDEP}]
+   >=dev-python/click-threading-0.1.2[${PYTHON_USEDEP}]
+   >=dev-python/requests-2.4.1[${PYTHON_USEDEP}]
+   !=dev-python/requests-2.9.0[${PYTHON_USEDEP}]
+   >=dev-python/requests-toolbelt-0.5.0[${PYTHON_USEDEP}]
+   >=dev-python/atomicwrites-0.1.7[${PYTHON_USEDEP}]"
+
+DOCS=( AUTHORS.rst CHANGELOG.rst CONTRIBUTING.rst README.rst config.example )



[gentoo-commits] repo/gentoo:master commit in: dev-db/mariadb/

2016-05-02 Thread Brian Evans
commit: 3a5b769605823b8c7f9b8c38af6303616cd89f1b
Author: Brian Evans  gentoo  org>
AuthorDate: Mon May  2 18:53:38 2016 +
Commit: Brian Evans  gentoo  org>
CommitDate: Mon May  2 18:53:38 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a5b7696

dev-db/mariadb: Version bump for 10.0.25

Package-Manager: portage-2.2.28

 dev-db/mariadb/Manifest   |   1 +
 dev-db/mariadb/mariadb-10.0.25.ebuild | 186 ++
 2 files changed, 187 insertions(+)

diff --git a/dev-db/mariadb/Manifest b/dev-db/mariadb/Manifest
index 4f04398..b4ea24d 100644
--- a/dev-db/mariadb/Manifest
+++ b/dev-db/mariadb/Manifest
@@ -1,5 +1,6 @@
 DIST mariadb-10.0.23.tar.gz 57394548 SHA256 
156eed69892834be66736aebe0a17a76d5031fd1c2f481a82228ff33bb7ba274 SHA512 
c3b6d33efeb720bcffc3c20191726671c5c9ec96da0539d9a4df34051a16770e8fef07ee43efdd79e76be50b0e007519325d39b000de3843a8c6af3671e989a3
 WHIRLPOOL 
2de6816353c4d0873a038255dadd296433709b55cf794021f5107e8e5657afb98dadebc89e8d93747a105d70b03b9c02edae47be8986d206240d2d894fd83c8e
 DIST mariadb-10.0.24.tar.gz 57438082 SHA256 
65de16f5f9b1696e2a537bc7a99d122bc38fa77941ba2e65d8cdf363c8449094 SHA512 
57c91edd45e779401f934b18364bce3b933fc096647727e586c2fc6543ddcec60662b46ffaa4f950a84e927dac38f55547117761d9bd7a29e5c38abed7164482
 WHIRLPOOL 
1753a7fb407e4e39ceedb57fb7d22a19e64b586e675db03ed0449e119e2c314a13344714853d12f194306a9fa9496bd1e2a79fc1245fd0dd4eb607a0edf62d64
+DIST mariadb-10.0.25.tar.gz 57459461 SHA256 
4540832c18112a332f61f4eeb57140890c4e2188ae12b312f4e2e8a0363553e4 SHA512 
7d07834dcd5a89ac276c0a85ca3ab99c630cc3768d3576ac7c1038698e3633803ae0ec0f27619c271ccd79371885f6b3f2a67d36b17ecf76432ba90760fbb96d
 WHIRLPOOL 
011400ec5d2fc99d4426315cb5190cf2888d65f47535bfa7cc0c97b89915a029ec76d956dbc4635a18bcd42bc84905da08ea73c6c75eb9e955385b5f586c737c
 DIST mariadb-10.1.12.tar.gz 55254244 SHA256 
795f466ac0e4df148981b85df735855d41614abaedcda51520a513a4ad60f4e7 SHA512 
c0f28de80e22b7fc1f74946f309c364601036aefeea2bb464b11e3658e102dd80ef0d6d156d0af67af76e54741e60334be8c48630766141b01b885d53068b659
 WHIRLPOOL 
28ceaa2445a89c82c91ca4f6806fb78fd40705b823b95817625e6fc97112f9a5eddfd4e1d1527c5ad588a9fec33353e4f88174272409637090d8495175a8cd3d
 DIST mariadb-10.1.13.tar.gz 55272572 SHA256 
21e1c7da1421146c69f5e8077333aaac06778a87046a1943ee4f449fbcefc00d SHA512 
fdaa35f1a93e2a124339f3a4a85d7247c223ffec2cd7ed36f029f63a76bd348b8f41f491e5b2f81f53bed82ed79bc89b62dd6966d5a946910299070ece667b5e
 WHIRLPOOL 
0ff2891af910380749be8b31bdacec02777cc4f2b474172b3257cecc10b900222c3c089515c9fd4621ea75ea58179b1f1336b7c26185ec43282df0ce661e621d
 DIST mariadb-5.5.49.tar.gz 45738390 SHA256 
2c82f2af71b88a7940d5ff647498ed78922c92e88004942caa213131e20f4706 SHA512 
4eceb8ab4e1fb7144374f100440b83a8b3294fa9da61027086c27b02b8ff899e3f9d4511adbb02fb50ddab92a48bf6a39ad71ab9e00bc8be00022a4ea4e6fc2f
 WHIRLPOOL 
e757ff389b184fa235e39bebbfd4bd53e29a20da640a90a6a2454537a238edfff07f9a76da32e65a7756aa25421174d57f6f28d94924bb3ee0aa7ac6474d03c3

diff --git a/dev-db/mariadb/mariadb-10.0.25.ebuild 
b/dev-db/mariadb/mariadb-10.0.25.ebuild
new file mode 100644
index 000..22b5004
--- /dev/null
+++ b/dev-db/mariadb/mariadb-10.0.25.ebuild
@@ -0,0 +1,186 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="6"
+MY_EXTRAS_VER="20151223-1501Z"
+SUBSLOT="18"
+MYSQL_PV_MAJOR="5.6"
+
+inherit toolchain-funcs mysql-multilib-r1
+
+HOMEPAGE="http://mariadb.org/;
+DESCRIPTION="An enhanced, drop-in replacement for MySQL"
+
+IUSE="bindist odbc oqgraph pam sphinx tokudb xml"
+RESTRICT="!bindist? ( bindist )"
+
+REQUIRED_USE="server? ( tokudb? ( jemalloc ) ) static? ( !pam )"
+
+# REMEMBER: also update eclass/mysql*.eclass before committing!
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
+
+MY_PATCH_DIR="${WORKDIR}/mysql-extras-${MY_EXTRAS_VER}"
+PATCHES=(
+   "${MY_PATCH_DIR}/01050_all_mariadb_mysql_config_cleanup-5.5.41.patch"
+   "${MY_PATCH_DIR}/20004_all_mariadb-filter-tokudb-flags-10.0.23.patch"
+   "${MY_PATCH_DIR}/20006_all_cmake_elib-mariadb-10.0.15.patch"
+   "${MY_PATCH_DIR}/20009_all_mariadb_myodbc_symbol_fix-5.5.38.patch"
+   
"${MY_PATCH_DIR}/20018_all_mariadb-10.0.20-without-clientlibs-tools.patch"
+)
+COMMON_DEPEND="
+   !bindist? ( >=sys-libs/readline-4.1:0=  )
+   server? (
+   extraengine? (
+   odbc? ( dev-db/unixODBC:0= )
+   xml? ( dev-libs/libxml2:2= )
+   )
+   oqgraph? ( >=dev-libs/boost-1.40.0:0= dev-libs/judy:0= )
+   pam? ( virtual/pam:0= )
+   tokudb? ( app-arch/snappy )
+   )
+   >=dev-libs/libpcre-8.35:3=
+"
+DEPEND="|| ( >=sys-devel/gcc-3.4.6 >=sys-devel/gcc-apple-4.0 )
+   

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

2016-05-02 Thread Davide Pesavento
commit: ecb5c63359c01fc910a1e7a101c462d7e5e5a341
Author: Davide Pesavento  gentoo  org>
AuthorDate: Mon May  2 18:49:09 2016 +
Commit: Davide Pesavento  gentoo  org>
CommitDate: Mon May  2 18:49:45 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ecb5c633

net-p2p/qbittorrent: almost completely rewritten ebuild

  * EAPI 6
  * switch to qmake-utils.eclass
  * remove all python handling: it's a runtime-only, optional dep
  * drop USE=qt4 as per Qt project policy
  * add missing [ssl] USE dependency
  * use system qjson when building with qt4
  * drop obsolete boost workaround, now integrated upstream
  * use econf
  * install systemd unit file

Package-Manager: portage-2.2.28

 net-p2p/qbittorrent/qbittorrent-3.3.4-r1.ebuild | 81 +
 net-p2p/qbittorrent/qbittorrent-.ebuild | 78 +++-
 2 files changed, 118 insertions(+), 41 deletions(-)

diff --git a/net-p2p/qbittorrent/qbittorrent-3.3.4-r1.ebuild 
b/net-p2p/qbittorrent/qbittorrent-3.3.4-r1.ebuild
new file mode 100644
index 000..c98d0ca
--- /dev/null
+++ b/net-p2p/qbittorrent/qbittorrent-3.3.4-r1.ebuild
@@ -0,0 +1,81 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit qmake-utils
+
+DESCRIPTION="BitTorrent client in C++ and Qt"
+HOMEPAGE="http://www.qbittorrent.org/;
+
+if [[ ${PV} == * ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/${PN}/qBittorrent.git;
+else
+   MY_P=${P/_}
+   SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.xz"
+   KEYWORDS="~amd64 ~arm ~ppc64 ~x86"
+   S=${WORKDIR}/${MY_P}
+fi
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="+dbus debug +qt5 webui +X"
+REQUIRED_USE="
+   dbus? ( X )
+"
+
+RDEPEND="
+   dev-libs/boost:=
+   >=net-libs/rb_libtorrent-1.0.6
+   sys-libs/zlib
+   !qt5? (
+   >=dev-libs/qjson-0.8.1[qt4(+)]
+   dev-qt/qtcore:4[ssl]
+   >=dev-qt/qtsingleapplication-2.6.1_p20130904-r1[qt4,X?]
+   dbus? ( dev-qt/qtdbus:4 )
+   X? ( dev-qt/qtgui:4 )
+   )
+   qt5? (
+   dev-qt/qtconcurrent:5
+   dev-qt/qtcore:5
+   dev-qt/qtnetwork:5[ssl]
+   >=dev-qt/qtsingleapplication-2.6.1_p20130904-r1[qt5,X?]
+   dev-qt/qtxml:5
+   dbus? ( dev-qt/qtdbus:5 )
+   X? (
+   dev-qt/qtgui:5
+   dev-qt/qtwidgets:5
+   )
+   )
+"
+DEPEND="${RDEPEND}
+   qt5? ( dev-qt/linguist-tools:5 )
+   virtual/pkgconfig
+"
+
+DOCS=(AUTHORS Changelog CONTRIBUTING.md README.md TODO)
+
+src_configure() {
+   econf \
+   --with-qjson=system \
+   --with-qtsingleapplication=system \
+   $(use_enable dbus qt-dbus) \
+   $(use_enable debug) \
+   $(use_enable webui) \
+   $(use_enable X gui) \
+   $(use_enable !X systemd) \
+   $(use_with !qt5 qt4)
+
+   if use qt5; then
+   eqmake5
+   else
+   eqmake4
+   fi
+}
+
+src_install() {
+   emake INSTALL_ROOT="${D}" install
+   einstalldocs
+}

diff --git a/net-p2p/qbittorrent/qbittorrent-.ebuild 
b/net-p2p/qbittorrent/qbittorrent-.ebuild
index 786574f..c98d0ca 100644
--- a/net-p2p/qbittorrent/qbittorrent-.ebuild
+++ b/net-p2p/qbittorrent/qbittorrent-.ebuild
@@ -2,84 +2,80 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI=5
-PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
+EAPI=6
 
-inherit eutils python-r1 qt4-r2 flag-o-matic
+inherit qmake-utils
 
 DESCRIPTION="BitTorrent client in C++ and Qt"
 HOMEPAGE="http://www.qbittorrent.org/;
 
-MY_P=${P/_}
-if [[ ${PV} == ** ]]; then
+if [[ ${PV} == * ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/${PN}/qBittorrent.git;
 else
+   MY_P=${P/_}
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.xz"
KEYWORDS="~amd64 ~arm ~ppc64 ~x86"
+   S=${WORKDIR}/${MY_P}
 fi
 
 LICENSE="GPL-2"
 SLOT="0"
-IUSE="+dbus debug qt4 +qt5 webui +X"
+IUSE="+dbus debug +qt5 webui +X"
 REQUIRED_USE="
-   ^^ ( qt4 qt5 )
dbus? ( X )
 "
 
-CDEPEND="
+RDEPEND="
dev-libs/boost:=
-   >=dev-qt/qtsingleapplication-2.6.1_p20130904-r1[qt4?,qt5?,X?]
>=net-libs/rb_libtorrent-1.0.6
sys-libs/zlib
-   qt4? (
-   dev-qt/qtcore:4
+   !qt5? (
+   >=dev-libs/qjson-0.8.1[qt4(+)]
+   dev-qt/qtcore:4[ssl]
+   >=dev-qt/qtsingleapplication-2.6.1_p20130904-r1[qt4,X?]
dbus? ( dev-qt/qtdbus:4 )
X? ( dev-qt/qtgui:4 )
)
qt5? (
dev-qt/qtconcurrent:5
dev-qt/qtcore:5
-   dev-qt/qtnetwork:5
+   dev-qt/qtnetwork:5[ssl]
+   

[gentoo-commits] proj/mysql:master commit in: dev-db/mariadb/

2016-05-02 Thread Brian Evans
commit: eed1436473f24f4cf2b30a345a3c0fe4b11e017c
Author: Brian Evans  gentoo  org>
AuthorDate: Mon May  2 18:35:51 2016 +
Commit: Brian Evans  gentoo  org>
CommitDate: Mon May  2 18:35:51 2016 +
URL:https://gitweb.gentoo.org/proj/mysql.git/commit/?id=eed14364

dev-db/mariadb: Version bump for 10.0.25

Package-Manager: portage-2.2.28
Manifest-Sign-Key: D1F781EFF9F4A3B6

 dev-db/mariadb/ChangeLog   |  6 +
 dev-db/mariadb/Manifest| 30 +++---
 ...riadb-10.0.24.ebuild => mariadb-10.0.25.ebuild} | 17 +++-
 3 files changed, 31 insertions(+), 22 deletions(-)

diff --git a/dev-db/mariadb/ChangeLog b/dev-db/mariadb/ChangeLog
index 9027728..444b5fb 100644
--- a/dev-db/mariadb/ChangeLog
+++ b/dev-db/mariadb/ChangeLog
@@ -2,6 +2,12 @@
 # Copyright 1999-2016 Gentoo Foundation; Distributed under the GPL v2
 # $Id$
 
+*mariadb-10.0.25 (02 May 2016)
+
+  02 May 2016; Brian Evans  +mariadb-10.0.25.ebuild,
+  -mariadb-10.0.24.ebuild:
+  dev-db/mariadb: Version bump for 10.0.25
+
 *mariadb-5.5.49 (22 Apr 2016)
 
   22 Apr 2016; Brian Evans  +mariadb-5.5.49.ebuild,

diff --git a/dev-db/mariadb/Manifest b/dev-db/mariadb/Manifest
index 0ef0590..b3d1356 100644
--- a/dev-db/mariadb/Manifest
+++ b/dev-db/mariadb/Manifest
@@ -1,7 +1,7 @@
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA256
 
-DIST mariadb-10.0.24.tar.gz 57438082 SHA256 
65de16f5f9b1696e2a537bc7a99d122bc38fa77941ba2e65d8cdf363c8449094 SHA512 
57c91edd45e779401f934b18364bce3b933fc096647727e586c2fc6543ddcec60662b46ffaa4f950a84e927dac38f55547117761d9bd7a29e5c38abed7164482
 WHIRLPOOL 
1753a7fb407e4e39ceedb57fb7d22a19e64b586e675db03ed0449e119e2c314a13344714853d12f194306a9fa9496bd1e2a79fc1245fd0dd4eb607a0edf62d64
+DIST mariadb-10.0.25.tar.gz 57459461 SHA256 
4540832c18112a332f61f4eeb57140890c4e2188ae12b312f4e2e8a0363553e4 SHA512 
7d07834dcd5a89ac276c0a85ca3ab99c630cc3768d3576ac7c1038698e3633803ae0ec0f27619c271ccd79371885f6b3f2a67d36b17ecf76432ba90760fbb96d
 WHIRLPOOL 
011400ec5d2fc99d4426315cb5190cf2888d65f47535bfa7cc0c97b89915a029ec76d956dbc4635a18bcd42bc84905da08ea73c6c75eb9e955385b5f586c737c
 DIST mariadb-10.1.10.tar.gz 55158771 SHA256 
d2c26fc76ff7397bdf25924161174c30a2b7fbd59893048f50145fc0a8278f76 SHA512 
a33f813bf90380ce480cf5cb909032536629f7c06b68e90ceb061e13606a93824511196736ecf1149a15017026c098edfc4ce540d0e30f8ec2c69c7b0350c1b3
 WHIRLPOOL 
72110267deae404762756c500719f0bd6aaa648451bde3d83db869ed40ab402c71463044d52092dc8dbc031a808a50dc30fc13be37b16974294f8f94d780dbb8
 DIST mariadb-10.1.11.tar.gz 55184229 SHA256 
cd32927370343b4f14bcc6073bca163623c27843ae7bc59c8c6a9ebeda0325ce SHA512 
5963aa4a7ce468ae46296cd4f83ed5922b1c00274a5d678ad6d0c36754c6e3edb3adc7286d398aac31a5652fca6c5d5480320e4ebae5b4a78619b4bd358bd80b
 WHIRLPOOL 
2021b0457e296b8e20f4b2c1721bcc65383fd491ef8e90cb080dc1ef00ebfe054be32efaca829dec134fed78fd35b5283315ff1080ec9cf5e596efbe76290c54
 DIST mariadb-10.1.12.tar.gz 55254244 SHA256 
795f466ac0e4df148981b85df735855d41614abaedcda51520a513a4ad60f4e7 SHA512 
c0f28de80e22b7fc1f74946f309c364601036aefeea2bb464b11e3658e102dd80ef0d6d156d0af67af76e54741e60334be8c48630766141b01b885d53068b659
 WHIRLPOOL 
28ceaa2445a89c82c91ca4f6806fb78fd40705b823b95817625e6fc97112f9a5eddfd4e1d1527c5ad588a9fec33353e4f88174272409637090d8495175a8cd3d
@@ -17,19 +17,19 @@ DIST mysql-extras-20160131-0252Z.tar.bz2 295849 SHA256 
442966972d2f9d9bcc3a27c1d
 -BEGIN PGP SIGNATURE-
 Version: GnuPG v2.1
 
-iQJ8BAEBCABmBQJXGlm/XxSAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w
+iQJ8BAEBCABmBQJXJ54DXxSAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w
 ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQ2NkMyRTQ0RUQ5MEUzMjc1OEU3RDU1QzBE
-MUY3ODFFRkY5RjRBM0I2AAoJENH3ge/59KO2yd8P/0Fn0x2JKmP7CZlppQ67mqc7
-X+f/XWEdLebN9Iifs/C1NHMkKxzDg2pjsn8B+Uq3ITs4lv2hQ9htNSlNKlogLIUt
-B8bc54MUHM6wRm0HTF3AzklECE6aGFGqm++LXgOs0Ohn30gFDKCR9l6BSiGekKCw
-obiAW4FRi9HADqgSoMvgc/OTIMnbgkEbn+ZybH6OOYVOaYSqT00GEz8PvYBbS9vI
-ZYssxD2ilFwgn9/48F2hKF+Un510JW8fn85vgIXj/46BFcJs3gTLglka8bCb/t/q
-Vog5kevjWAs6429G1/q3zki+jIaxDh/H66yRwxBQKJPLNvU8PVTDs2SD29auguKI
-lKVXPAFRmL0WER78Pyj19j5bdoMLKHIOyU2XPYVPEFUV56b1F6h3nO6veSoJGdR0
-0ewO6nf58t2lFnf5lNRHsf4qpDHtvox3B7d6/J5u828KNf/fan/rhCP8ZRaTQcCG
-Qst2BrPStjec1R3nBxpu0MzTBWXwBZJp5j3FcKTuBOktyCsk413KAVELvpg9nJ+n
-onai45GzEgp5L0XmtLpV+eIV45mNzc8cBdSuari+5z4LLtEkpee+zeKwQQcSNgnr
-1o/VJvEk5ZRuglepR2q2GOSfoNvdl+55rT/sSFALyqNXilnDEd1DR8OCu4a92pAp
-wKCkUb5dOum97BQszjCi
-=1upL
+MUY3ODFFRkY5RjRBM0I2AAoJENH3ge/59KO2i8MP/06aVeYb7p2bd2ryEnKqT71/
+g8qxenMnaqgyTqtwP4dSR7+msli1dCxXyPWHtbilem57f7mtUCCE0CVX/lO1+MFW
+H4T7NVfy9PmnHSrACzKTddKdND/wp5GNejt+TnCeDqW2gT6uVt8qIBNc4ShjVAOK
+Sq43LZCkJlprHFdzkYO93JuoFyX6RlDqQFI88cFyBQD2JHY+wxh46V0DYduC2Xex
+4Z94wrLEBMUSqeNnF6rH+pRuAgag08Hl8550n0EFegQyS4TAIJfDvNvpB/2XmJf/
+Kshuwyle/QFpY/fEaCM4BxQ97KomeaUxmbe03MesBsenGF5wP8/vvzHy6umsujo3
+QqCGft9nhHZM9SIGuSzcgcQkjqWs/vzYD8jtESu0iEGd+2xQQFy32CKXT4SHVXL6

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

2016-05-02 Thread Mike Frysinger
commit: 3c00027c4fa83ddc5454d25f4ca6ed568013b944
Author: Mike Frysinger  gentoo  org>
AuthorDate: Mon May  2 18:27:06 2016 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Mon May  2 18:28:36 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c00027c

sys-apps/findutils: mark 4.6.0 arm64/m68k/s390/sh stable

 sys-apps/findutils/findutils-4.6.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/findutils/findutils-4.6.0.ebuild 
b/sys-apps/findutils/findutils-4.6.0.ebuild
index fb1ca2f..f7c3211 100644
--- a/sys-apps/findutils/findutils-4.6.0.ebuild
+++ b/sys-apps/findutils/findutils-4.6.0.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
 
 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 
~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 
~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 nls selinux static test"
 
 RDEPEND="selinux? ( sys-libs/libselinux )



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

2016-05-02 Thread Mike Frysinger
commit: dda20c71df35e61402bd0cd2125b66c66f0ee2ae
Author: Mike Frysinger  gentoo  org>
AuthorDate: Mon May  2 18:28:21 2016 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Mon May  2 18:28:36 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dda20c71

sys-apps/findutils: drop some old versions

 sys-apps/findutils/Manifest  |  2 -
 sys-apps/findutils/findutils-4.4.2-r1.ebuild | 54 
 sys-apps/findutils/findutils-4.5.16.ebuild   | 63 
 sys-apps/findutils/findutils-4.5.17.ebuild   | 63 
 4 files changed, 182 deletions(-)

diff --git a/sys-apps/findutils/Manifest b/sys-apps/findutils/Manifest
index de8b9f8..bd3e493 100644
--- a/sys-apps/findutils/Manifest
+++ b/sys-apps/findutils/Manifest
@@ -1,5 +1,3 @@
 DIST findutils-4.4.2.tar.gz 2149838 SHA256 
434f32d171cbc0a5e72cfc5372c6fc4cb0e681f8dce566a0de5b6fccd702b62a SHA512 
262d0a8301158e6541b9f24e4e043d8d8c1b196b18dbe59c3bedcf17b50c95708e33ab23a07e3bfb947ad495faafffdca3c296fb525794ca60f2dfd682f228c1
 WHIRLPOOL 
2af1467403ece2f290be6b9f69db013d386427ab553efcf750ce36bf608fab0d37708209c22bf61b8a82f41aa13bf25a247c62f78dc95446290b7a4bd35d3393
-DIST findutils-4.5.16.tar.gz 3869606 SHA256 
d116b48cf2a90a457726f58e24842bfa6078447d0c53be0fd1593f2555f7caae SHA512 
d03100ea0708448ac714e86b6bc8ae4d9667f46df1cf0d29e1cfad6f52656254a47a2dd7ef88aaa68f94f399e848cd9d0977e25eda3781cfcd20819dc9fa76d6
 WHIRLPOOL 
d42c7028eccdb38229aa725fade1a6aa2b2a57a65f317ccff83cf3da5594463f7810c17cc10fa5ced89a4213780133a57fd61948dc5d03b300a57f927e103eb2
-DIST findutils-4.5.17.tar.gz 3871981 SHA256 
a41f171f0e05b6960ae1081dc21fb87f58bf939395d6559e297b59a493136a4f SHA512 
a3f9a522e721e1d5c4d1b2839dcf85e829c531cb3eb63ec99765b0d5367c7a64b51ec4150e93be3fca5c620eebd3ca7a3bd7eee868663068658ee23b003bdd7a
 WHIRLPOOL 
da22ebab27435c32718d082a9991548745d13468558562590609e57478f586e7789a49e88138e9f23833189a4dc3d79fbbeaba8b3481f1cf812f1dd8a9db93b8
 DIST findutils-4.5.18.tar.gz 3870196 SHA256 
e3b570534c7897e8de117396345e2e20f17f704389b7e1daa7889fd089afbdd7 SHA512 
2ae70cef9aee81d4402298db11890efa0ec38dba561dfc11afc9c91af7c1c6a7cca221f669c45b00e65eba53a8b08f5124ed4e862d9e26bcf69c48a927e6b398
 WHIRLPOOL 
ece27a2830792e162ca5e53d7d0fefa8959292b6945180a331ac4dc1a999bd858649f761a5dee44bb35e85ffa0dd633b1b65aeeb294ac4a8846ad1cdbfaf351e
 DIST findutils-4.6.0.tar.gz 3780154 SHA256 
ded4c9f73731cd48fec3b6bdaccce896473b6d8e337e9612e16cf1431bb1169d SHA512 
41fcd4197c1efbd77f7420e5754e2cf9332dfef19f90c65a8fa1844bb4bc5d529c8393ee0ff979a054e9ac65ff71d7fe3921ea079f9960843412fc9a71f8afd4
 WHIRLPOOL 
2954024a0503a9234fd3a4776934b53d455fe48406c53945f8eed12a30f3fb2fa438315892ef9d040e8d6e8e13efbed0146d11956c3721c22558f8a2b392e370

diff --git a/sys-apps/findutils/findutils-4.4.2-r1.ebuild 
b/sys-apps/findutils/findutils-4.4.2-r1.ebuild
deleted file mode 100644
index fe80f76..000
--- a/sys-apps/findutils/findutils-4.4.2-r1.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-inherit eutils flag-o-matic toolchain-funcs multilib
-
-SELINUX_PATCH="findutils-4.4.2-selinux.diff"
-
-DESCRIPTION="GNU utilities for finding files"
-HOMEPAGE="https://www.gnu.org/software/findutils/;
-SRC_URI="mirror://gnu-alpha/${PN}/${P}.tar.gz
-   mirror://gnu/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86"
-IUSE="nls selinux static"
-
-RDEPEND="selinux? ( sys-libs/libselinux )
-   nls? ( virtual/libintl )"
-DEPEND="${RDEPEND}
-   nls? ( sys-devel/gettext )"
-
-src_unpack() {
-   unpack ${A}
-   cd "${S}"
-
-   epatch "${FILESDIR}"/${P}-gnulib-date-x32.patch
-
-   # Don't build or install locate because it conflicts with slocate,
-   # which is a secure version of locate.  See bug 18729
-   sed -i '/^SUBDIRS/s/locate//' Makefile.in
-
-   use selinux && epatch "${FILESDIR}/${SELINUX_PATCH}"
-}
-
-src_compile() {
-   use static && append-ldflags -static
-
-   local myconf
-   use userland_GNU || myconf=" --program-prefix=g"
-
-   econf \
-   $(use_enable nls) \
-   --libexecdir=/usr/$(get_libdir)/find \
-   ${myconf} \
-   || die "configure failed"
-   emake AR="$(tc-getAR)" || die "make failed"
-}
-
-src_install() {
-   emake DESTDIR="${D}" install || die
-   dodoc NEWS README TODO ChangeLog
-}

diff --git a/sys-apps/findutils/findutils-4.5.16.ebuild 
b/sys-apps/findutils/findutils-4.5.16.ebuild
deleted file mode 100644
index 7b49dce..000
--- a/sys-apps/findutils/findutils-4.5.16.ebuild
+++ /dev/null
@@ -1,63 +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 eutils 

[gentoo-commits] repo/gentoo:master commit in: dev-perl/Search-Xapian/

2016-05-02 Thread Andreas Hüttel
commit: c8f6108733ded521027d8776571057f8b859bf84
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Mon May  2 18:09:32 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Mon May  2 18:09:32 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8f61087

dev-perl/Search-Xapian: Disable tests; missing dependencies

Package-Manager: portage-2.2.28

 dev-perl/Search-Xapian/Search-Xapian-1.2.23.0.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/dev-perl/Search-Xapian/Search-Xapian-1.2.23.0.ebuild 
b/dev-perl/Search-Xapian/Search-Xapian-1.2.23.0.ebuild
index 3a1c0d5..b0defbd 100644
--- a/dev-perl/Search-Xapian/Search-Xapian-1.2.23.0.ebuild
+++ b/dev-perl/Search-Xapian/Search-Xapian-1.2.23.0.ebuild
@@ -22,7 +22,8 @@ RDEPEND="dev-libs/xapian:0/1.2.22
 DEPEND="${RDEPEND}
dev-perl/Module-Build"
 
-SRC_TEST="do"
+SRC_TEST=skip
+# missing dependencies; fixed in -r1
 
 myconf="CXX=$(tc-getCXX) CXXFLAGS=${CXXFLAGS}"
 



[gentoo-commits] repo/gentoo:master commit in: dev-perl/RPC-XML/

2016-05-02 Thread Andreas Hüttel
commit: cdefec84ea16ea598032d844afdf2ab98e4480b4
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Mon May  2 17:49:23 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Mon May  2 17:49:23 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cdefec84

dev-perl/RPC-XML: Remove old

Package-Manager: portage-2.2.28

 dev-perl/RPC-XML/Manifest   |  1 -
 dev-perl/RPC-XML/RPC-XML-0.780.0.ebuild | 52 -
 2 files changed, 53 deletions(-)

diff --git a/dev-perl/RPC-XML/Manifest b/dev-perl/RPC-XML/Manifest
index dd7b9ea..ebb2b66 100644
--- a/dev-perl/RPC-XML/Manifest
+++ b/dev-perl/RPC-XML/Manifest
@@ -1,3 +1,2 @@
 DIST RPC-XML-0.77.tar.gz 205679 SHA256 
e38c5d131e8c29f41ca39ac1e4b7abd33ed1c9b417e0d8ac1c24a056ce7e6f5a SHA512 
960625a387da279bab93d09f8b62d4e4f3e01a008abcc5503de3661171c1a4ffd4db9a4c10c4882e77bc7d12bb14071ca875c1988a3d3126fdf6ee70d68e80c9
 WHIRLPOOL 
aca53100c4e905eba8ad4ea763058c6e63401d6de14be5c79450143eea3167f8d335eb3ff47789396612099bce4b6eed0aeb2d2b39a3158c161a37b66f15a9dc
-DIST RPC-XML-0.78.tar.gz 207243 SHA256 
a2c02724a29f8f3183e396d1ca69fa76650cd913334d6d429a094321f588ec6a SHA512 
160c5e699d3de78fe61a2d7a307e094261054cc4936d2b909fd0d29af77ca57aa76cd62f421a714c39feb1b46f1d81b9561551884dfb7e4dc6ab560c8e3e2822
 WHIRLPOOL 
5c72f81b60a53ad3fe51001bb86a978a0eef8a09ef0302f54c84c4b32b89a99bcbeceed756ac4c667e4fe3716e5f3eee69327db73332651a485134e8d0f1e318
 DIST RPC-XML-0.79.tar.gz 209612 SHA256 
9822ffcfbea9c2bddef00507dc93f7acb83589e6ff6460ca7040f147aeebf9a9 SHA512 
541ee3abf4e44cff68a2b7b7c4f78095e8e4ec479d72b52d300503bc1688f64fd01a0ff3c2cdf8e18573d19af0bae467ac68befe7ad8756e6287ed494a50ce26
 WHIRLPOOL 
9e42d4c4fee850283bc692cf27915bcd562282e814778253bafa15e5936ab7b8f097e09cbd13ea3ceacbd2673c033e42dda24dc50dc08eeef1ac107cf606af69

diff --git a/dev-perl/RPC-XML/RPC-XML-0.780.0.ebuild 
b/dev-perl/RPC-XML/RPC-XML-0.780.0.ebuild
deleted file mode 100644
index 4e81efa..000
--- a/dev-perl/RPC-XML/RPC-XML-0.780.0.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-MODULE_AUTHOR=RJRAY
-MODULE_VERSION=0.78
-inherit perl-module
-
-DESCRIPTION="An implementation of XML-RPC"
-
-SLOT="0"
-LICENSE="|| ( Artistic-2 LGPL-2.1 )"
-KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
-IUSE="test"
-
-SRC_TEST="do"
-
-RDEPEND="
-   >=virtual/perl-File-Spec-0.800.0
-   >=dev-perl/libwww-perl-5.834.0
-   >=virtual/perl-Module-Load-0.240.0
-   >=virtual/perl-Scalar-List-Utils-1.200.0
-   >=dev-perl/XML-LibXML-1.850.0
-   >=dev-perl/XML-Parser-2.310.0
-"
-DEPEND="${RDEPEND}
-   virtual/perl-ExtUtils-MakeMaker
-   test? ( >=virtual/perl-Test-Simple-0.940.0 )
-"
-
-pkg_postinst() {
-   SETWARN=0
-   has_version '=www-servers/apache-2*' && HAVE_APACHE2=1
-   has_version '>=www-apache/mod_perl-2.0' && HAVE_MP2=2
-
-   [ -n "${HAVE_APACHE2}" ] && SETWARN=1
-   [ -n "${HAVE_MP2}" ] && SETWARN=1
-
-   if [ "${SETWARN}" == "1" ]; then
-   ewarn "Apache2 or mod_perl2 were detected."
-   ewarn ""
-   ewarn "NOTE FROM THE AUTHOR OF RPC-XML"
-   ewarn ""
-   ewarn "At present, this package does not work with Apache2 and the 
soon-to-be"
-   ewarn "mod_perl2. The changes to the API for location handlers are too 
drastic to"
-   ewarn "try and support both within the same class (I tried, using the 
compatibility"
-   ewarn "layer). Also, mp2 does not currently provide support for  
sections, which"
-   ewarn "are the real strength of the Apache::RPC::Server class."
-   fi
-}



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Schedule-Cron-Events/

2016-05-02 Thread Andreas Hüttel
commit: 2b5dbe616fbf47ed28e70612932c8aa23ef908f4
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Mon May  2 17:54:41 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Mon May  2 17:54:41 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b5dbe61

dev-perl/Schedule-Cron-Events: Remove old

Package-Manager: portage-2.2.28

 dev-perl/Schedule-Cron-Events/Manifest |  1 -
 .../Schedule-Cron-Events-1.930.0.ebuild| 24 --
 2 files changed, 25 deletions(-)

diff --git a/dev-perl/Schedule-Cron-Events/Manifest 
b/dev-perl/Schedule-Cron-Events/Manifest
index 6136285..f5a484b 100644
--- a/dev-perl/Schedule-Cron-Events/Manifest
+++ b/dev-perl/Schedule-Cron-Events/Manifest
@@ -1,2 +1 @@
-DIST Schedule-Cron-Events-1.93.tar.gz 10993 SHA256 
12f3894fca34a8745fc61baead7e775b8c0fff4ec3308ac26825a88927496d0b SHA512 
335522fb056f56b8c0a5bab08a6164a210ebf9fbac6aa36a45217d9dbc7424f10ca98c73ee8bfe221a901bb5e2da5881cb3a46eff6dcf517036fd10806d3e513
 WHIRLPOOL 
ad0ff33cfa5d90ac1d54a79ca19f653bcdfbe2fc53f63e9da51f1ac2d83a7454e03415a13b7096ed9b6e944784857a0418841db57cba09ee4bfeaffa326db92c
 DIST Schedule-Cron-Events-1.95.tar.gz 11350 SHA256 
fd12849863a9a6a9b0c6c2d8b8c96225c70875efaee80d8100d4f70c073c1bf5 SHA512 
19717a03112d168f2ae37dd9da6a99cb1b39e17a7af770623bb6fa89f5e82f5bcb54f3840ffc902005ec5c78a1cf37539c537961bd1b080350b95ddedd884dbe
 WHIRLPOOL 
79edd42d8cc23bc104e187fedab0481575003d67a9d57267cc3d17bbafedb9d73cf92d095157f00bea8e53462c9cdf86ef48140c01810ed206359c3a23bb77e8

diff --git a/dev-perl/Schedule-Cron-Events/Schedule-Cron-Events-1.930.0.ebuild 
b/dev-perl/Schedule-Cron-Events/Schedule-Cron-Events-1.930.0.ebuild
deleted file mode 100644
index 256a0b1..000
--- a/dev-perl/Schedule-Cron-Events/Schedule-Cron-Events-1.930.0.ebuild
+++ /dev/null
@@ -1,24 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-MODULE_AUTHOR="KOHTS"
-MODULE_VERSION="1.93"
-
-inherit perl-module
-
-DESCRIPTION="Take a line from a crontab and find out when events will occur"
-
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="test"
-
-RDEPEND="virtual/perl-Time-Local
-   dev-perl/Set-Crontab"
-DEPEND="${RDEPEND}
-   virtual/perl-ExtUtils-MakeMaker
-   test? ( dev-perl/Test-Deep )"
-
-SRC_TEST="do"



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Router-Simple/

2016-05-02 Thread Andreas Hüttel
commit: 53a17bc114f5f97769df3dfce69c18c8fe993d42
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Mon May  2 17:48:54 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Mon May  2 17:48:54 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53a17bc1

dev-perl/Router-Simple: Version bump

Package-Manager: portage-2.2.28

 dev-perl/Router-Simple/Manifest|  1 +
 .../Router-Simple/Router-Simple-0.170.0.ebuild | 25 ++
 2 files changed, 26 insertions(+)

diff --git a/dev-perl/Router-Simple/Manifest b/dev-perl/Router-Simple/Manifest
index 76289d6..1935524 100644
--- a/dev-perl/Router-Simple/Manifest
+++ b/dev-perl/Router-Simple/Manifest
@@ -1 +1,2 @@
 DIST Router-Simple-0.14.tar.gz 22909 SHA256 
fded4044bd3a27f510d5ae39f848af12e448b09a46ab6e98851de149239d716b SHA512 
8557a321d59c50ca4e4a971e3c90ecddeffdb543b7ba9bceb2ddf63d2c86d5e28774c9dbc5a0b3a312435a9e4acc602c667e12b77d6143a569979d2480a6d24f
 WHIRLPOOL 
de07edba5ff3f016b3ea7cc91d735d564bd4b225c280baeb8a3eaf4afc4312185fbc03aca108bac6898f1d4e076ee704800433cc7ef7f4c6df6f598be332e3d0
+DIST Router-Simple-0.17.tar.gz 19990 SHA256 
334615620f38eee15620ccdbf2dbd8b0a403ba1610e5b27d51737d8b0fb0c89d SHA512 
4fbc4fb375d873d7c06d18da49855b81336744bc712035c6557914e275099d93aee4ab787bb1e7b3b730a109b716b4f572fc538d1d574ff709968a1b3767a963
 WHIRLPOOL 
21aedfef688d23d54a342fc567ab0c8c6dd0e1f8212b6b8c25dcd55f56250b42d462740520e5fbcc55e4bfa8f3c9300e18a61d2dc2811352e6418e953d3bfc7b

diff --git a/dev-perl/Router-Simple/Router-Simple-0.170.0.ebuild 
b/dev-perl/Router-Simple/Router-Simple-0.170.0.ebuild
new file mode 100644
index 000..040de6c
--- /dev/null
+++ b/dev-perl/Router-Simple/Router-Simple-0.170.0.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DIST_AUTHOR=TOKUHIROM
+DIST_VERSION=0.17
+inherit perl-module
+
+DESCRIPTION="Simple HTTP router"
+
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND="
+   dev-perl/Class-Accessor-Lite
+   virtual/perl-Scalar-List-Utils
+   virtual/perl-parent
+"
+DEPEND="${RDEPEND}
+   dev-perl/Module-Build
+   test? ( >=virtual/perl-Test-Simple-0.980.0 )
+"



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Search-Xapian/

2016-05-02 Thread Andreas Hüttel
commit: 955de705dce88f2ebb8fd33f85422e4b952db3aa
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Mon May  2 18:12:15 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Mon May  2 18:12:15 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=955de705

dev-perl/Search-Xapian: Revision bump, EAPI=6 and added missing test deps

Package-Manager: portage-2.2.28

 .../Search-Xapian/Search-Xapian-1.2.23.0-r1.ebuild | 38 ++
 1 file changed, 38 insertions(+)

diff --git a/dev-perl/Search-Xapian/Search-Xapian-1.2.23.0-r1.ebuild 
b/dev-perl/Search-Xapian/Search-Xapian-1.2.23.0-r1.ebuild
new file mode 100644
index 000..4b1dc6b
--- /dev/null
+++ b/dev-perl/Search-Xapian/Search-Xapian-1.2.23.0-r1.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DIST_AUTHOR=OLLY
+inherit perl-module toolchain-funcs versionator
+
+VERSION=$(get_version_component_range 1-3)
+
+SRC_URI+=" http://oligarchy.co.uk/xapian/${VERSION}/${P}.tar.gz;
+DESCRIPTION="Perl XS frontend to the Xapian C++ search library"
+
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="examples test"
+
+RDEPEND="dev-libs/xapian:0/1.2.22
+   !dev-libs/xapian-bindings[perl]"
+DEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-MakeMaker
+   test? ( dev-perl/Devel-Leak )
+"
+
+DIST_TEST=do
+# parallel fails sometimes...
+
+myconf="CXX=$(tc-getCXX) CXXFLAGS=${CXXFLAGS}"
+
+src_install() {
+   perl-module_src_install
+
+   use examples && {
+   docinto examples
+   dodoc "${S}"/examples/*
+   }
+}



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Devel-Leak/

2016-05-02 Thread Andreas Hüttel
commit: 3b5c4bc790f89c568edba988b6f42f6593bac11c
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Mon May  2 18:03:07 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Mon May  2 18:03:07 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b5c4bc7

dev-perl/Devel-Leak: New package, needed for dev-perl/Search-Xapian

Package-Manager: portage-2.2.28

 dev-perl/Devel-Leak/Devel-Leak-0.30.0.ebuild | 16 
 dev-perl/Devel-Leak/Manifest |  1 +
 dev-perl/Devel-Leak/metadata.xml |  8 
 3 files changed, 25 insertions(+)

diff --git a/dev-perl/Devel-Leak/Devel-Leak-0.30.0.ebuild 
b/dev-perl/Devel-Leak/Devel-Leak-0.30.0.ebuild
new file mode 100644
index 000..c8b072e
--- /dev/null
+++ b/dev-perl/Devel-Leak/Devel-Leak-0.30.0.ebuild
@@ -0,0 +1,16 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DIST_AUTHOR=NI-S
+DIST_VERSION=0.03
+inherit perl-module
+
+DESCRIPTION="Utility for looking for perl objects that are not reclaimed"
+
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+DEPEND="virtual/perl-ExtUtils-MakeMaker"

diff --git a/dev-perl/Devel-Leak/Manifest b/dev-perl/Devel-Leak/Manifest
new file mode 100644
index 000..75d9bf5
--- /dev/null
+++ b/dev-perl/Devel-Leak/Manifest
@@ -0,0 +1 @@
+DIST Devel-Leak-0.03.tar.gz 3233 SHA256 
6f42c34f11e2b4e3ea2e0e6b9416a88a685add447910caf4d91dd2c178177252 SHA512 
177f64b87fa6ab08b93f7c5bfcbaf4421e8431bf795976a0a7efa0120828984fed29a2bc12918e5bea9ea3edccf6316ba8daf704f349aece84b45bdd11f57707
 WHIRLPOOL 
49031a2a4e8de22208730354f9bc917980280048efa8bdbbba180021c8d13e91e28126aca9bd0b28e180fc2ff3548a97690dba51e7f00a79a581dc326edf4dc3

diff --git a/dev-perl/Devel-Leak/metadata.xml b/dev-perl/Devel-Leak/metadata.xml
new file mode 100644
index 000..f53c778
--- /dev/null
+++ b/dev-perl/Devel-Leak/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+
+p...@gentoo.org
+Gentoo Perl Project
+
+



[gentoo-commits] repo/gentoo:master commit in: dev-perl/self/

2016-05-02 Thread Andreas Hüttel
commit: 0ba19648dbc47013749bc39c6ecf186edd17d303
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Mon May  2 18:21:24 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Mon May  2 18:21:24 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ba19648

dev-perl/self: Version bump

Package-Manager: portage-2.2.28

 dev-perl/self/Manifest|  1 +
 dev-perl/self/self-0.350.0.ebuild | 28 
 2 files changed, 29 insertions(+)

diff --git a/dev-perl/self/Manifest b/dev-perl/self/Manifest
index e6fef2e..fc44296 100644
--- a/dev-perl/self/Manifest
+++ b/dev-perl/self/Manifest
@@ -1 +1,2 @@
 DIST self-0.34.tar.gz 25218 SHA256 
2da2c1af4763c0456cbfd69908d59fc6fe62498e643a55fbcb5a9146e3bf464d SHA512 
300246ce649edb8bf03ad581f20cdec285f24d83cfad2c81125fee169df772dd77ebd9ebb4e75af02a017b0bb339d28a5204805bec4ed9a0307a2b8bc9ac5d11
 WHIRLPOOL 
1791608fa2b67487e7612cf4f81f8aa21c80c24cbf8c62947cd6dd929b57e1e81f41afcd0c3eb77f9ea86e03a0c5203c5148b11a0764bf33519647185e59a26f
+DIST self-0.35.tar.gz 25293 SHA256 
5301f92b4517dab56b2d2f6bbceaf8b47a94244b68e488439cd732e3d2ac6679 SHA512 
5b584d2928fa43bc2931e458081a1c72747e815269c317b6c9cda85008b53308208b6634842020534792b6f1a7093d49d822e30439bc3c818d8fc9747b623ad7
 WHIRLPOOL 
3b679633ba0735171fd8f062fc10f17e0ee21be2982bbf75f677136a689db580e55c1aa606e3609b9b540f99e8aaac97f68179aef7091187d657ac63a5b3d502

diff --git a/dev-perl/self/self-0.350.0.ebuild 
b/dev-perl/self/self-0.350.0.ebuild
new file mode 100644
index 000..87885fa
--- /dev/null
+++ b/dev-perl/self/self-0.350.0.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DIST_AUTHOR=GUGOD
+DIST_VERSION=0.35
+inherit perl-module
+
+DESCRIPTION="provides '\$self' in OO code"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+DEPEND="
+   >=dev-perl/B-Hooks-Parser-0.80.0
+   >=dev-perl/B-OPCheck-0.270.0
+   >=dev-perl/Devel-Declare-0.3.4
+   >=dev-perl/PadWalker-1.930.0
+   dev-perl/Sub-Exporter
+"
+RDEPEND="${DEPEND}
+   >=virtual/perl-ExtUtils-MakeMaker-6.590.0
+   test? ( >=virtual/perl-Test-Simple-0.420.0 )
+"



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Server-Starter/

2016-05-02 Thread Andreas Hüttel
commit: 0f627a187e3ea053d491b8fd213a8d4661dc3ba8
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Mon May  2 18:21:50 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Mon May  2 18:21:50 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f627a18

dev-perl/Server-Starter: Remove old

Package-Manager: portage-2.2.28

 dev-perl/Server-Starter/Manifest   |  1 -
 .../Server-Starter/Server-Starter-0.190.0.ebuild   | 30 --
 2 files changed, 31 deletions(-)

diff --git a/dev-perl/Server-Starter/Manifest b/dev-perl/Server-Starter/Manifest
index 2f3b53a..a15b688 100644
--- a/dev-perl/Server-Starter/Manifest
+++ b/dev-perl/Server-Starter/Manifest
@@ -1,2 +1 @@
-DIST Server-Starter-0.19.tar.gz 36943 SHA256 
ac11bf46867479ba997ef6396da59735c988a0fc0a54b84980cf03d65b9d5651 SHA512 
ebd212cc1fd6ae09b3a6517f1a8490a494a44173c7fcc1f45215e4dd4f5e079c4326b66c66614ada3187365eea760cd7954e1e7df394cb1162ebdabda6daff3d
 WHIRLPOOL 
bfcc710d505daf4dda0829179baea47553052eda9dec497dd1adec5e6e757acbe269a0b70a2e57b0539287b52a4f1eafac541aff96baf990c2729b61cb39a871
 DIST Server-Starter-0.32.tar.gz 23105 SHA256 
a8ecc19f05f3c3b079e1c7f2c007a6df2b9a2912b9848a8fb51bd78c7b13ac1a SHA512 
3bcf985e14f9af4578400c80cd8bcb4018f1a6d0be022539fd3bfb6cc8d50b8fa903851b38a7ce8ac05c9c35d4a64076414f8bea283ef227911f6fda41e559ea
 WHIRLPOOL 
9145adb568418ae8dc79cfe638de36446b07da8dfd44260a4d077f404ff5f652892abde7e4c7e73824fbc8439ce69164ccc4e4eec489b852f807e677d5a3b956

diff --git a/dev-perl/Server-Starter/Server-Starter-0.190.0.ebuild 
b/dev-perl/Server-Starter/Server-Starter-0.190.0.ebuild
deleted file mode 100644
index cf48619..000
--- a/dev-perl/Server-Starter/Server-Starter-0.190.0.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-MODULE_AUTHOR=KAZUHO
-MODULE_VERSION=0.19
-inherit perl-module
-
-DESCRIPTION="A superdaemon for hot-deploying server programs"
-
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-
-RDEPEND="
-   virtual/perl-Getopt-Long
-   dev-perl/List-MoreUtils
-   dev-perl/Proc-Wait3
-   dev-perl/Scope-Guard
-"
-DEPEND="${RDEPEND}
-   test? (
-   dev-perl/Test-SharedFork
-   >=dev-perl/Test-TCP-0.110.0
-   )
-"
-
-SRC_TEST="do"



[gentoo-commits] repo/proj/gen-b0rk:master commit in: xml-test/missing/

2016-05-02 Thread Brian Dolbec
commit: ccb678bc1cb8896182c0583724c497211284179b
Author: Göktürk Yüksek  binghamton  edu>
AuthorDate: Mon May  2 01:08:46 2016 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Mon May  2 17:33:31 2016 +
URL:https://gitweb.gentoo.org/repo/proj/gen-b0rk.git/commit/?id=ccb678bc

xml-test/missing: test for a package with missing metadata.xml

Signed-off-by: Göktürk Yüksek  binghamton.edu>

 xml-test/missing/missing-0.1.ebuild | 13 +
 1 file changed, 13 insertions(+)

diff --git a/xml-test/missing/missing-0.1.ebuild 
b/xml-test/missing/missing-0.1.ebuild
new file mode 100644
index 000..b08156e
--- /dev/null
+++ b/xml-test/missing/missing-0.1.ebuild
@@ -0,0 +1,13 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DESCRIPTION="Missing metadata.xml file"
+HOMEPAGE="https://gitweb.gentoo.org/repo/proj/gen-b0rk.git/;
+SRC_URI=""
+
+LICENSE="HPND"
+SLOT="0"
+KEYWORDS="~amd64"



[gentoo-commits] repo/proj/gen-b0rk:master commit in: xml-test/missing-attributes/

2016-05-02 Thread Brian Dolbec
commit: da26b7539b05d8d956dc9553afcdac2ebc1c47c5
Author: Göktürk Yüksek  binghamton  edu>
AuthorDate: Mon May  2 01:08:47 2016 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Mon May  2 17:33:44 2016 +
URL:https://gitweb.gentoo.org/repo/proj/gen-b0rk.git/commit/?id=da26b753

xml-test/missing-attributes: missing mandatory attributes for various tags

Check for:
- type attribute in 
- name attribute in 
- name attribute in 
- type attribute for 

Signed-off-by: Göktürk Yüksek  binghamton.edu>

 xml-test/missing-attributes/metadata.xml   | 23 ++
 .../missing-attributes-0.1.ebuild  | 13 
 2 files changed, 36 insertions(+)

diff --git a/xml-test/missing-attributes/metadata.xml 
b/xml-test/missing-attributes/metadata.xml
new file mode 100644
index 000..cf51afd
--- /dev/null
+++ b/xml-test/missing-attributes/metadata.xml
@@ -0,0 +1,23 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  
+  
+foo...@gentoo.org
+  
+  
+
+Bar slot
+  
+  
+
+Baz flag
+  
+  
+
+gentoo/gen-b0rk
+  
+  
+Tests for mandatory attributes for various tags
+  
+

diff --git a/xml-test/missing-attributes/missing-attributes-0.1.ebuild 
b/xml-test/missing-attributes/missing-attributes-0.1.ebuild
new file mode 100644
index 000..5733009
--- /dev/null
+++ b/xml-test/missing-attributes/missing-attributes-0.1.ebuild
@@ -0,0 +1,13 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DESCRIPTION="Missing various mandatory attributes in the metadata"
+HOMEPAGE="https://wiki.gentoo.org/wiki/GLEP:68;
+SRC_URI=""
+
+LICENSE="HPND"
+SLOT="0"
+KEYWORDS="~amd64"



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

2016-05-02 Thread Brian Dolbec
commit: 9624fda69403ad8bf0b0e989d57fcc73aba19aa3
Author: Brian Dolbec  gentoo  org>
AuthorDate: Mon May  2 17:28:46 2016 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Mon May  2 17:29:53 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9624fda6

app-portage/layman: Adjust ssl-fetch dep to correct version

Package-Manager: portage-2.2.28_p104

 app-portage/layman/layman-2.4.0.ebuild | 2 +-
 app-portage/layman/layman-.ebuild  | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/app-portage/layman/layman-2.4.0.ebuild 
b/app-portage/layman/layman-2.4.0.ebuild
index 47ad61c..79dcd8c 100644
--- a/app-portage/layman/layman-2.4.0.ebuild
+++ b/app-portage/layman/layman-2.4.0.ebuild
@@ -38,7 +38,7 @@ RDEPEND="
gpg? ( =dev-python/pyGPG-0.2 )
sync-plugin-portage?  ( >=sys-apps/portage-2.2.16[${PYTHON_USEDEP}] )
!sync-plugin-portage? ( sys-apps/portage[${PYTHON_USEDEP}] )
-   >=dev-python/ssl-fetch-0.2[${PYTHON_USEDEP}]
+   >=dev-python/ssl-fetch-0.4[${PYTHON_USEDEP}]
"
 
 layman_check_kernel_config() {

diff --git a/app-portage/layman/layman-.ebuild 
b/app-portage/layman/layman-.ebuild
index 5d9a010..c0f8f12 100644
--- a/app-portage/layman/layman-.ebuild
+++ b/app-portage/layman/layman-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -40,7 +40,7 @@ RDEPEND="
gpg? ( =dev-python/pyGPG- )
sync-plugin-portage?  ( >=sys-apps/portage-2.2.16[${PYTHON_USEDEP}] )
!sync-plugin-portage? ( sys-apps/portage[${PYTHON_USEDEP}] )
-   >=dev-python/ssl-fetch-0.2[${PYTHON_USEDEP}]
+   >=dev-python/ssl-fetch-0.4[${PYTHON_USEDEP}]
"
 
 layman_check_kernel_config() {



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

2016-05-02 Thread Johannes Huber
commit: 28b338093a6c63a91ae650184e2acbbf3aedb107
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Mon May  2 17:17:19 2016 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Mon May  2 17:18:15 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28b33809

kde4-meta.eclass: Support tar.gz snapshot from git

Signed-off-by: Johannes Huber  gentoo.org>

 eclass/kde4-meta.eclass | 8 +++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/eclass/kde4-meta.eclass b/eclass/kde4-meta.eclass
index df7dfa4..ba7114d 100644
--- a/eclass/kde4-meta.eclass
+++ b/eclass/kde4-meta.eclass
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 #
@@ -185,6 +185,9 @@ kde4-meta_src_extract() {
if [[ ${PV} =~ 4.4.11 ]]; then
postfix="bz2"
KMTARPARAMS+=" --bzip2"
+   elif [[ ${PV} =~ _pre ]]; then
+   postfix="gz"
+   KMTARPARAMS+=" --gz"
else
postfix="xz"
KMTARPARAMS+=" --xz"
@@ -198,6 +201,9 @@ kde4-meta_src_extract() {
# Detect real toplevel dir from tarball name - it will be used 
upon extraction
# and in _list_needed_subdirectories
topdir="${tarball%.tar.*}/"
+   if [[ ${topdir} =~ _pre ]]; then
+   topdir="${topdir%-$PV*}/"
+   fi
 
ebegin "Unpacking parts of ${tarball} to ${WORKDIR}"
 



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

2016-05-02 Thread Alexis Ballier
commit: ca36b0b3434b490ad02a932eefcc62c750339495
Author: Alexis Ballier  gentoo  org>
AuthorDate: Mon May  2 12:39:00 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Mon May  2 16:31:59 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca36b0b3

sci-electronics/gazebo: remove old

Package-Manager: portage-2.2.28

 sci-electronics/gazebo/Manifest |  3 --
 sci-electronics/gazebo/files/ffmpeg29.patch | 22 -
 sci-electronics/gazebo/gazebo-6.1.0.ebuild  | 70 --
 sci-electronics/gazebo/gazebo-6.5.1.ebuild  | 70 --
 sci-electronics/gazebo/gazebo-7.0.0.ebuild  | 76 -
 5 files changed, 241 deletions(-)

diff --git a/sci-electronics/gazebo/Manifest b/sci-electronics/gazebo/Manifest
index 61a5724..85db8fa 100644
--- a/sci-electronics/gazebo/Manifest
+++ b/sci-electronics/gazebo/Manifest
@@ -1,4 +1 @@
-DIST gazebo-6.1.0.tar.bz2 50795925 SHA256 
0460f1c706f609b6ff0e61a71bdd3cac2d55d714147edc01609b5226e7fb2904 SHA512 
ae41b53b0f33e81fe5b3baaaca8649e98c5b99c4701650414b0686f9a327d89e00c674e806cb9537aabfd933c9819d668e45b18e964d383d99325c5ddcdcf7ef
 WHIRLPOOL 
bfab23edc9c68ca02aefa4a20206bfdf2973cc5ee7750f4c017543979dca10434d9e38dad8836510b292dc67b97aa0514229c8b5fd9f73897075525e45a5bd74
-DIST gazebo-6.5.1.tar.bz2 50828358 SHA256 
96260aa23f1a1f24bc116f8e359d31f3bc65011033977cb7fb2c64d574321908 SHA512 
3d72da5c6b577e4a44b9cef32df64cb2329f04b498f7a21d3e733b52a93db35dd2f2f67c5d114624de15d5f054fd7c92ab11617f27beb1a39d8505deab70e5d6
 WHIRLPOOL 
cc6c913919bf8aa0df363bb53fb265a22e69052536044b55b2ffbac9d7a419dae5c796415abd1d0dc7a92363f8005e171b6e303eafbe756241c27b1531b0879b
-DIST gazebo-7.0.0.tar.bz2 51076734 SHA256 
74413e18d812abb3398af3124dc24e009af27e1f81c26d9698aaee39d213f888 SHA512 
578869659b5a148915ce83196890bf2f1093ee097ef61b2f7b7a3e0ccc0737ae89db794f7355387c495aea821f5d6186170c73b937dfdc52e4b981fffa9a0d51
 WHIRLPOOL 
6b61d43c3f1f237d48625253c04fa6f8d88b3641dd23532ab55ccdb8d50f873d719fd6591d72f59e9d1b1fc269728753fecbaebd3423ffb042f7ba6b61321f5b
 DIST gazebo-7.1.0.tar.bz2 51097678 SHA256 
93f75ec601bdafd2d4715d7200d81f52123979b00d547635ae38738e6405d863 SHA512 
573392d984a2770c2394234da9532d7e46517e8312091fab5a4b3df8ad6997ab2594c7648694cea858f8210938f1c1787c51df80910f554a2bfc005f8894c6fc
 WHIRLPOOL 
c5a0ed5ac645ad215f5bc8b1b96d8d2e20ab78b3d5546eb9a1cce5ae0a5941f809760b12f71b12f38b84cab755f95c3b152f0c9633a9815d8ca001f026281a21

diff --git a/sci-electronics/gazebo/files/ffmpeg29.patch 
b/sci-electronics/gazebo/files/ffmpeg29.patch
deleted file mode 100644
index df53cc7..000
--- a/sci-electronics/gazebo/files/ffmpeg29.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-Index: gazebo5_5.1.0/gazebo/common/Video.cc
-===
 gazebo5_5.1.0.orig/gazebo/common/Video.cc
-+++ gazebo5_5.1.0/gazebo/common/Video.cc
-@@ -147,7 +147,7 @@ bool Video::Load(const std::string &_fil
- return false;
-   }
- 
--  avpicture_alloc(this->pic, PIX_FMT_RGB24, this->codecCtx->width,
-+  avpicture_alloc(this->pic, AV_PIX_FMT_RGB24, this->codecCtx->width,
-   this->codecCtx->height);
- 
-   this->swsCtx = sws_getContext(
-@@ -156,7 +156,7 @@ bool Video::Load(const std::string &_fil
-   this->codecCtx->pix_fmt,
-   this->codecCtx->width,
-   this->codecCtx->height,
--  PIX_FMT_RGB24,
-+  AV_PIX_FMT_RGB24,
-   SWS_BICUBIC, NULL, NULL, NULL);
- 
-   if (this->swsCtx == NULL)

diff --git a/sci-electronics/gazebo/gazebo-6.1.0.ebuild 
b/sci-electronics/gazebo/gazebo-6.1.0.ebuild
deleted file mode 100644
index 4df9d14..000
--- a/sci-electronics/gazebo/gazebo-6.1.0.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit cmake-utils versionator vcs-snapshot flag-o-matic
-
-DESCRIPTION="A 3D multiple robot simulator with dynamics"
-HOMEPAGE="http://gazebosim.org/;
-SRC_URI="http://osrf-distributions.s3.amazonaws.com/gazebo/releases/${P}.tar.bz2;
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="cpu_flags_x86_sse2 libav test"
-
-RDEPEND="
-   >=dev-libs/protobuf-2.3.0
-   virtual/opengl
-   media-libs/openal
-   net-misc/curl
-   dev-libs/tinyxml
-   dev-libs/libtar
-   dev-cpp/tbb
-   >=dev-games/ogre-1.7.4
-   sci-libs/libccd
-   libav? ( media-video/libav:= )
-   !libav? ( media-video/ffmpeg:= )
-   sci-libs/gts
-   >=sci-physics/bullet-2.82
-   >=dev-libs/sdformat-3.1.0
-   dev-qt/qtcore:4
-   dev-qt/qtgui:4
-   dev-libs/boost:=[threads]
-   sci-libs/gdal
-   virtual/libusb:1
-   dev-libs/libspnav
-   media-libs/freeimage
-   sci-libs/hdf5:=
-   sys-apps/util-linux
-   media-gfx/graphviz
-   sci-libs/ignition-math:2=
-"
-DEPEND="${RDEPEND}
-   dev-qt/qttest:4
-   app-text/ronn
-   

[gentoo-commits] repo/gentoo:master commit in: sci-electronics/gazebo/

2016-05-02 Thread Alexis Ballier
commit: 2701c01be3353f22d3fbb10543081825a5d6f666
Author: Alexis Ballier  gentoo  org>
AuthorDate: Mon May  2 16:31:32 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Mon May  2 16:31:59 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2701c01b

sci-electronics/gazebo: pin dep to protobuf2 as it does not build with protobuf 
3

Package-Manager: portage-2.2.28

 sci-electronics/gazebo/gazebo-7.1.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-electronics/gazebo/gazebo-7.1.0.ebuild 
b/sci-electronics/gazebo/gazebo-7.1.0.ebuild
index 2836a48..615611c 100644
--- a/sci-electronics/gazebo/gazebo-7.1.0.ebuild
+++ b/sci-electronics/gazebo/gazebo-7.1.0.ebuild
@@ -16,7 +16,7 @@ KEYWORDS="~amd64"
 IUSE="cpu_flags_x86_sse2 libav test"
 
 RDEPEND="
-   >=dev-libs/protobuf-2.3.0
+   =dev-libs/protobuf-2*:=
virtual/opengl
media-libs/openal
net-misc/curl



[gentoo-commits] repo/gentoo:master commit in: dev-lisp/sbcl/

2016-05-02 Thread Andrey Grozin
commit: 382602cbefa329920158e7b22a66ca5f880c05bf
Author: Andrey Grozin  gentoo  org>
AuthorDate: Mon May  2 16:09:06 2016 +
Commit: Andrey Grozin  gentoo  org>
CommitDate: Mon May  2 16:09:06 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=382602cb

dev-lisp/sbcl: bump to 1.3.5

Package-Manager: portage-2.2.28

 dev-lisp/sbcl/Manifest  |   1 +
 dev-lisp/sbcl/sbcl-1.3.5.ebuild | 245 
 2 files changed, 246 insertions(+)

diff --git a/dev-lisp/sbcl/Manifest b/dev-lisp/sbcl/Manifest
index 093a7d6..98f3e61 100644
--- a/dev-lisp/sbcl/Manifest
+++ b/dev-lisp/sbcl/Manifest
@@ -19,3 +19,4 @@ DIST sbcl-1.3.3-source.tar.bz2 5740904 SHA256 
db38f600f2db5511566cbb53c3e6ac70b2
 DIST sbcl-1.3.3-x86-64-linux-binary.tar.bz2 9475261 SHA256 
e8b1730c42e4a702f9b4437d9842e91cb680b7246f88118c7443d7753e61da65 SHA512 
00800945d736180a7fee6d693162add6c7dbab576bc9918ee4dfecbeaa5223a9ef6e34d20b1118851f450703350b5547250ad9cf55431a03d9299d09277e6306
 WHIRLPOOL 
51f3f5c7280788b303b783b583cd81a02ded60ef2b157cdd0fd951efbf470f4e4e8336eab69b25a96998c850d83b706806aaf9b76a25599df597c6df66ad92bf
 DIST sbcl-1.3.4-source.tar.bz2 5740928 SHA256 
91e2fd975bbf729229a056882869e72468fc7896778d56b659815bd707f9a67f SHA512 
8a10ec17f89d2c046415e623286c68d2255d7849448fe549e36bfe5fc73d4f28a5a44ccab4e95f3cddf60c8b3b2032d612d837b69c1c245a341681dc54a9b001
 WHIRLPOOL 
6328f38875ca0a4fa3fc68c02580009fc122792e12e8572067f1a3eb624b77be4118fcb34bd4292560176a637d616171018dbe333a09f8a73e8327ff4e154f15
 DIST sbcl-1.3.4-x86-64-linux-binary.tar.bz2 9416604 SHA256 
b856ca671b869d37b08b60179b9bc87d45a3fb1521698815233a7d28ebbe5f93 SHA512 
4cadd0ece3877192105f970c2c21c12bb76431a948036a302890731a69d2fe18156cdb102c9fd1fecef8ac060893a7f1cd1e9a0cf551a9b4579fb23ef7e1d694
 WHIRLPOOL 
ec6db86bf5766fa7f1a92e53f390a2da10ec8455bfd7838bab6f8955925c4d50c5e0b9768a1885fe193e8b80e6b43593e8cafc902e4efd73d08ca18f85da
+DIST sbcl-1.3.5-source.tar.bz2 5741124 SHA256 
c8f1e16f8662313948531135b5e7d26eb57548e1bc4643832588b2c6f74a6e5c SHA512 
3474e5df2dce38db2dbb977143383b94a11ebdf520d2f23c536cd3bf86e1d507e86c39b338f40fb27d17368c1b390d0e50745b2223fdafc3b88c62024fd156a6
 WHIRLPOOL 
eecd5cf1c69f0e5229ffa1a909f4494a4e6b769b5abc2ade4272a1248b7fdf1f6411f7c4417b26b271bf41d8eca2fb53ac9fb70de6016a43993594fb04f56c46

diff --git a/dev-lisp/sbcl/sbcl-1.3.5.ebuild b/dev-lisp/sbcl/sbcl-1.3.5.ebuild
new file mode 100644
index 000..358a670
--- /dev/null
+++ b/dev-lisp/sbcl/sbcl-1.3.5.ebuild
@@ -0,0 +1,245 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+inherit multilib eutils flag-o-matic pax-utils
+
+#same order as http://www.sbcl.org/platform-table.html
+BV_X86=1.2.7
+BV_AMD64=1.3.4
+BV_PPC=1.2.7
+BV_SPARC=1.0.28
+BV_ALPHA=1.0.28
+BV_ARM=1.2.7
+BV_ARM64=1.3.4
+BV_PPC_MACOS=1.0.47
+BV_X86_MACOS=1.1.6
+BV_X64_MACOS=1.2.11
+BV_SPARC_SOLARIS=1.0.23
+BV_X86_SOLARIS=1.2.7
+BV_X64_SOLARIS=1.2.7
+
+DESCRIPTION="Steel Bank Common Lisp (SBCL) is an implementation of ANSI Common 
Lisp"
+HOMEPAGE="http://sbcl.sourceforge.net/;
+SRC_URI="mirror://sourceforge/sbcl/${P}-source.tar.bz2
+   x86? ( 
mirror://sourceforge/sbcl/${PN}-${BV_X86}-x86-linux-binary.tar.bz2 )
+   amd64? ( 
mirror://sourceforge/sbcl/${PN}-${BV_AMD64}-x86-64-linux-binary.tar.bz2 )
+   ppc? ( 
mirror://sourceforge/sbcl/${PN}-${BV_PPC}-powerpc-linux-binary.tar.bz2 )
+   sparc? ( 
mirror://sourceforge/sbcl/${PN}-${BV_SPARC}-sparc-linux-binary.tar.bz2 )
+   alpha? ( 
mirror://sourceforge/sbcl/${PN}-${BV_ALPHA}-alpha-linux-binary.tar.bz2 )
+   arm? ( 
mirror://sourceforge/sbcl/${PN}-${BV_ARM}-armhf-linux-binary.tar.bz2 )
+   ppc-macos? ( 
mirror://sourceforge/sbcl/${PN}-${BV_PPC_MACOS}-powerpc-darwin-binary.tar.bz2 )
+   x86-macos? ( 
mirror://sourceforge/sbcl/${PN}-${BV_X86_MACOS}-x86-darwin-binary.tar.bz2 )
+   x64-macos? ( 
mirror://sourceforge/sbcl/${PN}-${BV_X64_MACOS}-x86-64-darwin-binary.tar.bz2 )
+   sparc-solaris? ( 
mirror://sourceforge/sbcl/${PN}-${BV_SPARC_SOLARIS}-sparc-solaris-binary.tar.bz2
 )
+   x86-solaris? ( 
mirror://sourceforge/sbcl/${PN}-${BV_X86_SOLARIS}-x86-solaris-binary.tar.bz2 )
+   x64-solaris? ( 
mirror://sourceforge/sbcl/${PN}-${BV_X64_SOLARIS}-x86-64-solaris-binary.tar.bz2 
)"
+
+LICENSE="MIT"
+SLOT="0/${PV}"
+KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos 
~x86-macos ~x86-solaris"
+IUSE="debug doc source +threads +unicode pax_kernel zlib"
+
+CDEPEND=">=dev-lisp/asdf-3.1:="
+DEPEND="${CDEPEND}
+   doc? ( sys-apps/texinfo >=media-gfx/graphviz-2.26.0 )
+   pax_kernel? ( sys-apps/elfix )"
+RDEPEND="${CDEPEND}
+   !prefix? ( elibc_glibc? ( >=sys-libs/glibc-2.6 ) )"
+
+# Disable warnings about executable stacks, as this won't be fixed soon by 
upstream
+QA_EXECSTACK="usr/bin/sbcl"
+
+CONFIG="${S}/customize-target-features.lisp"
+ENVD="${T}/50sbcl"

[gentoo-commits] repo/gentoo:master commit in: media-libs/libafterimage/, media-libs/libafterimage/files/

2016-05-02 Thread Andrew Savchenko
commit: 3d5b16d3365e80c281e9131e011a6d88ddf61167
Author: Andrew Savchenko  gentoo  org>
AuthorDate: Mon May  2 15:51:22 2016 +
Commit: Andrew Savchenko  gentoo  org>
CommitDate: Mon May  2 15:51:43 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d5b16d3

media-libs/libafterimage-1.20-r1: fix bug 571654

- port to giflib-5 API;
- update ebuild to EAPI 6;
- add new USE flags and deps for previously ignored dependencies.

Package-Manager: portage-2.2.28
Signed-off-by: Andrew Savchenko  gentoo.org>

 .../files/libafterimage-giflib5.patch  | 382 +
 .../libafterimage/libafterimage-1.20-r1.ebuild | 108 ++
 media-libs/libafterimage/metadata.xml  |   4 +
 3 files changed, 494 insertions(+)

diff --git a/media-libs/libafterimage/files/libafterimage-giflib5.patch 
b/media-libs/libafterimage/files/libafterimage-giflib5.patch
new file mode 100644
index 000..32037d9
--- /dev/null
+++ b/media-libs/libafterimage/files/libafterimage-giflib5.patch
@@ -0,0 +1,382 @@
+diff -Naurd libAfterImage-1.20.orig/export.c libAfterImage-1.20/export.c
+--- libAfterImage-1.20.orig/export.c   2016-05-01 11:44:19.0 +0300
 libAfterImage-1.20/export.c2016-05-02 10:57:59.688984491 +0300
+@@ -1048,6 +1048,9 @@
+   Bool new_image = True ;
+   START_TIME(started);
+   int cmap_size = 1;
++#if (GIFLIB_MAJOR>=5)
++  int errcode;
++#endif
+ #define GIF_NETSCAPE_EXT_BYTES 3
+   unsigned char netscape_ext_bytes[GIF_NETSCAPE_EXT_BYTES] = { 0x1, 0x0, 
0x0};
+ #define GIF_GCE_BYTES 4   
+@@ -1086,10 +1089,18 @@
+ 
+   while( cmap_size < 256 && cmap_size < 
(int)cmap.count+(gce_bytes[0]&0x01) )
+   cmap_size = cmap_size<<1 ;
++#if (GIFLIB_MAJOR>=5)
++  if( (gif_cmap = GifMakeMapObject(cmap_size, NULL )) == NULL )
++#else
+   if( (gif_cmap = MakeMapObject(cmap_size, NULL )) == NULL )
++#endif
+   {
+   free( mapped_im );
++#if (GIFLIB_MAJOR>=5)
++  ASIM_PrintGifError(E_GIF_ERR_NOT_ENOUGH_MEM);
++#else
+   ASIM_PrintGifError();
++#endif
+   return False;
+   }
+   memcpy( &(gif_cmap->Colors[0]), &(cmap.entries[0]), 
MIN(cmap.count,(unsigned int)cmap_size)*3 );
+@@ -1101,13 +1112,25 @@
+   SavedImage *images = NULL ;
+   int count = 0 ;
+   /* TODO: do something about multiimage files !!! */
++#if (GIFLIB_MAJOR>=5)
++  gif = open_gif_read(infile, );
++#else
+   gif = open_gif_read(infile);
++#endif
+   if( gif == NULL || get_gif_saved_images(gif, -1, , 
) == GIF_ERROR)
+   {
++#if (GIFLIB_MAJOR>=5)
++  ASIM_PrintGifError(errcode);
++#else
+   ASIM_PrintGifError();
++#endif
+   if( gif )
+   {
++#if (GIFLIB_MAJOR>=5)
++  DGifCloseFile(gif, );
++#else
+   DGifCloseFile(gif);
++#endif
+   gif = NULL ;
+   }
+   if (infile)
+@@ -1123,14 +1146,22 @@
+   gif_src = *gif ;
+   gif->SColorMap = NULL ;
+   gif->Image.ColorMap = NULL ;
++#if (GIFLIB_MAJOR>=5)
++DGifCloseFile(gif, );
++#else
+   DGifCloseFile(gif);
++#endif
+   gif = NULL;
+   fclose (infile);
+   infile = NULL;
+   outfile = open_writeable_image_file( path );
+ 
+   if (outfile)
++#if (GIFLIB_MAJOR>=5)
++  gif = EGifOpenFileHandle(fileno(outfile), 
);
++#else
+   gif = EGifOpenFileHandle(fileno(outfile));
++#endif
+   
+   if (gif)
+   {
+@@ -1141,26 +1172,46 @@
+  
gif_src.SColorMap )) == GIF_OK )
+   status = write_gif_saved_images( gif, 
images, count );
+   if( status != GIF_OK )
++#if (GIFLIB_MAJOR>=5)
++  ASIM_PrintGifError(status);
++#else
+   ASIM_PrintGifError();
++#endif
+   }
+   if (gif_src.SColorMap)
+   {  /* we only want to save private colormap if it is 
any different from
+   * screen colormap ( saves us  768 bytes per image ) 
*/
+   if( gif_cmap->ColorCount == 
gif_src.SColorMap->ColorCount )
+   dont_save_cmap = ( memcmp( 
gif_cmap->Colors, gif_src.SColorMap->Colors, 
gif_cmap->ColorCount*sizeof(GifColorType)) == 0 );
++#if (GIFLIB_MAJOR>=5)
++  GifFreeMapObject(gif_src.SColorMap);

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

2016-05-02 Thread Andrew Savchenko
commit: 022acc88b2bdfe2e11cb4d94cff378572b9dc597
Author: Andrew Savchenko  gentoo  org>
AuthorDate: Mon May  2 15:47:23 2016 +
Commit: Andrew Savchenko  gentoo  org>
CommitDate: Mon May  2 15:51:43 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=022acc88

media-libs/libafterimage: update deps

- 1.20 doesn't work with giflib >= 5;
- add jpeg subslot dep.

Package-Manager: portage-2.2.28
Signed-off-by: Andrew Savchenko  gentoo.org>

 media-libs/libafterimage/libafterimage-1.20.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/media-libs/libafterimage/libafterimage-1.20.ebuild 
b/media-libs/libafterimage/libafterimage-1.20.ebuild
index 9b5da9c..16418da 100644
--- a/media-libs/libafterimage/libafterimage-1.20.ebuild
+++ b/media-libs/libafterimage/libafterimage-1.20.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -21,8 +21,8 @@ RDEPEND="
x11-libs/libXext
x11-libs/libXrender
png?  ( >=media-libs/libpng-1.4:0 )
-   jpeg? ( virtual/jpeg )
-   gif?  ( media-libs/giflib )
+   jpeg? ( virtual/jpeg:= )
+   gif?  ( 

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

2016-05-02 Thread Davide Pesavento
commit: 0540799fe49e1d5f64db4144639b58dc08f13e61
Author: Davide Pesavento  gentoo  org>
AuthorDate: Mon May  2 15:46:30 2016 +
Commit: Davide Pesavento  gentoo  org>
CommitDate: Mon May  2 15:46:30 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0540799f

net-p2p/qbittorrent: remove old versions

Package-Manager: portage-2.2.28

 net-p2p/qbittorrent/Manifest|  5 --
 net-p2p/qbittorrent/qbittorrent-3.2.0.ebuild| 81 ---
 net-p2p/qbittorrent/qbittorrent-3.2.3.ebuild| 81 ---
 net-p2p/qbittorrent/qbittorrent-3.2.4.ebuild| 81 ---
 net-p2p/qbittorrent/qbittorrent-3.2.5-r1.ebuild | 82 
 net-p2p/qbittorrent/qbittorrent-3.2.5.ebuild| 81 ---
 net-p2p/qbittorrent/qbittorrent-3.3.2.ebuild| 85 -
 7 files changed, 496 deletions(-)

diff --git a/net-p2p/qbittorrent/Manifest b/net-p2p/qbittorrent/Manifest
index 710878d..aa28aba 100644
--- a/net-p2p/qbittorrent/Manifest
+++ b/net-p2p/qbittorrent/Manifest
@@ -1,9 +1,4 @@
 DIST qbittorrent-3.1.12.tar.xz 2465744 SHA256 
d5d5b27958297f0b14cf03af8dd24a0d2a990e108c9a7a6159e4a2fbbc83 SHA512 
af7cbb1a3158cd1fd6c28f17f1dbb62d94c9d192068b5a683b6b0e19e43664f3d312da055c5c19de75b5849c812b7aa9a0c966a7e464c120e0006bb1ea5a6e5a
 WHIRLPOOL 
632fabec4c33104e55c73433028923033e65f37624aba37649e4f6f5593038fa9868e48787db7b1659690456835fc55dc542510d2f60732c66452d3c748508bf
 DIST qbittorrent-3.1.9.2.tar.xz 2231708 SHA256 
b07ccdbe1ae079f781c62aff21d47183ae35a8d4e96f43f90503978d1830a361 SHA512 
8437fb695fb720132d131e44727c28af46c651576d5321423142c190120c59cc6439f5df2e90486274956d253db657fcbd217a834e3ca53d7681919fee7a2504
 WHIRLPOOL 
e4b00027a57fbce49a9ddcaf6e60fccfabb65393531620afa0416249148e9e17d43398a1016fcf04695d0fa7d0a7b970e5beee0a4ab4e6ff06e6f8c23c90154f
-DIST qbittorrent-3.2.0.tar.xz 2595372 SHA256 
51781cb121ebeda041fb348e649c4bd97888ee8c1d18328bc547d447b960d1b3 SHA512 
0e652a4045d2e034611484009c1ce60c0b365fb6030356ac740555bca3e77f901228a24f21fddc87501f39b737ac15cfff4d3d9a18c913ab03df4d90ceb48634
 WHIRLPOOL 
5c3d215735a70fcbe01773d3a6676209719d91b25ee5ac68f12767fdfd1108626556802cb58f5e698a80607ad3550b5dea0c97670fdc3d6a4975546da3436b1b
-DIST qbittorrent-3.2.3.tar.xz 2638708 SHA256 
86a79f3772bd06736a4be104180187d76c5c8feb2c1cdf1054135b4ba602a914 SHA512 
304635f4942776f6be5987ad6a60e2e0e217c913bbe3637cef2dd0bfc65450b894e88c639c96d856d3e937f40d120acc62c194bcb29ae52070ad51e921edbdf7
 WHIRLPOOL 
33728a4679ef9731645a937c059633d18ff4673ded258185488bc31aab001fe720ab3e3aef23bd8d36f1cf12e98d96ed7383d5cc5b3ecbfa2b065028ddacc4ce
-DIST qbittorrent-3.2.4.tar.xz 2664248 SHA256 
7fc128e2809c3be4ea543cfaeefd922e0327cc430330eaad0d3ec7616df51871 SHA512 
c86098d791b64bd5f0ef6b465cf3eb6f1016402b33b18ba927279f521d768aa973d3f233794adb63820c5bca7e67672bf3c64fe65a7e5bf513219f860d2b2141
 WHIRLPOOL 
c5690fdf01a8841978404e61369a16da13dd27c151618cadbb4e16add7d5377d980d9a94cea68f82005c88bd4b637a23f0ea6fb2615c3921302c5847e0763272
-DIST qbittorrent-3.2.5.tar.xz 2665980 SHA256 
98f69c7324276c7c144738eb36b21a2d28d7f01a327104568f020887626e822b SHA512 
a98c1cf8607558990d0698c50d35cd217bceeb4deffe69c590f902b1a9dabc5431496805614dbd3bb734f764c309023ede2f8a5cb014f40796301fa14ba63e90
 WHIRLPOOL 
6539bde802919351836d1bb2d880d5b28d51c97b109674f2ae3e54c9aa9ab52c5e58436371a34b7388d119d041cf9b2a597656e338808243309cbf631e03fe2b
-DIST qbittorrent-3.3.2.tar.xz 2782172 SHA256 
e9330a63e0939fef79c70d5a66dba616f00206a70386efbb82fb7c620a19af58 SHA512 
2c09c1bbf18dfc181998343845e0f8164c29cb97eeccf3a7ab25753e8ccaa11cfb7372cf0ff1fc2a8c232a9ab4381a23c88aef791e37a3a7b4c0b92b537e25e6
 WHIRLPOOL 
a2bf3f6aee46dc5bc58357ea8eb214b9a69116f470faa0a4b5aed9fc0ffdd340712a1424b128ab96273e75d6b1c83707765d01c0089ec550040bb63df236176e
 DIST qbittorrent-3.3.3.tar.xz 2782616 SHA256 
9c8d8bdc3fb2632019cb3ee5f811baaa41b41fe7ce542c753c6771bcc110db53 SHA512 
2dd954e2518a2a99e271bf62d6db38a4e1788bb91c8b7552b94aab25dfb7b6cc7b4eb0ae49bb50d524127e8a357ea07b022c3a6e3b0593f6d2e7a2ce3abf6260
 WHIRLPOOL 
e794a50215f33c2088b4782fd8733e11c33b42a45b5df2424bdf0fcee3c0929445f0d47b1e8b3526341f4ee9a4b8cd081da54a0c3019f79dea9b50a3bb5dcbad
 DIST qbittorrent-3.3.4.tar.xz 2841268 SHA256 
c0d0d4b72c240f113b59a061146803bc1b7926d3d7f39b06b50a4d26f5ad91b8 SHA512 
5cb94b6463d4baa1a994bee7dd5f9aee823d86d5428aff2719011b5f5340db5aaf35436f4f3be7c773e5560eb5f8ea12ea889505bfd40071401dd7ebf9835ec1
 WHIRLPOOL 
4406703fc459c9115e1d2e04e2a6a69149f7359fabaab284001bd1fec9fbd21c0aadca6836562d09d80390abf42388c864f6bc206080ee50f9c8ab4b80cca4e8

diff --git a/net-p2p/qbittorrent/qbittorrent-3.2.0.ebuild 
b/net-p2p/qbittorrent/qbittorrent-3.2.0.ebuild
deleted file mode 100644
index c8c8e55..000
--- a/net-p2p/qbittorrent/qbittorrent-3.2.0.ebuild
+++ /dev/null
@@ -1,81 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-

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

2016-05-02 Thread Davide Pesavento
commit: 739b99a91cc2301a28cef8abbc93e504af2f79fd
Author: RobinDX  gmail  com>
AuthorDate: Mon May  2 00:59:31 2016 +
Commit: Davide Pesavento  gentoo  org>
CommitDate: Mon May  2 15:43:24 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=739b99a9

net-p2p/qbittorrent: Version bump

Closes: https://github.com/gentoo/gentoo/pull/1391

 net-p2p/qbittorrent/Manifest |  1 +
 net-p2p/qbittorrent/qbittorrent-3.3.4.ebuild | 85 
 2 files changed, 86 insertions(+)

diff --git a/net-p2p/qbittorrent/Manifest b/net-p2p/qbittorrent/Manifest
index 2cfa9cb..710878d 100644
--- a/net-p2p/qbittorrent/Manifest
+++ b/net-p2p/qbittorrent/Manifest
@@ -6,3 +6,4 @@ DIST qbittorrent-3.2.4.tar.xz 2664248 SHA256 
7fc128e2809c3be4ea543cfaeefd922e032
 DIST qbittorrent-3.2.5.tar.xz 2665980 SHA256 
98f69c7324276c7c144738eb36b21a2d28d7f01a327104568f020887626e822b SHA512 
a98c1cf8607558990d0698c50d35cd217bceeb4deffe69c590f902b1a9dabc5431496805614dbd3bb734f764c309023ede2f8a5cb014f40796301fa14ba63e90
 WHIRLPOOL 
6539bde802919351836d1bb2d880d5b28d51c97b109674f2ae3e54c9aa9ab52c5e58436371a34b7388d119d041cf9b2a597656e338808243309cbf631e03fe2b
 DIST qbittorrent-3.3.2.tar.xz 2782172 SHA256 
e9330a63e0939fef79c70d5a66dba616f00206a70386efbb82fb7c620a19af58 SHA512 
2c09c1bbf18dfc181998343845e0f8164c29cb97eeccf3a7ab25753e8ccaa11cfb7372cf0ff1fc2a8c232a9ab4381a23c88aef791e37a3a7b4c0b92b537e25e6
 WHIRLPOOL 
a2bf3f6aee46dc5bc58357ea8eb214b9a69116f470faa0a4b5aed9fc0ffdd340712a1424b128ab96273e75d6b1c83707765d01c0089ec550040bb63df236176e
 DIST qbittorrent-3.3.3.tar.xz 2782616 SHA256 
9c8d8bdc3fb2632019cb3ee5f811baaa41b41fe7ce542c753c6771bcc110db53 SHA512 
2dd954e2518a2a99e271bf62d6db38a4e1788bb91c8b7552b94aab25dfb7b6cc7b4eb0ae49bb50d524127e8a357ea07b022c3a6e3b0593f6d2e7a2ce3abf6260
 WHIRLPOOL 
e794a50215f33c2088b4782fd8733e11c33b42a45b5df2424bdf0fcee3c0929445f0d47b1e8b3526341f4ee9a4b8cd081da54a0c3019f79dea9b50a3bb5dcbad
+DIST qbittorrent-3.3.4.tar.xz 2841268 SHA256 
c0d0d4b72c240f113b59a061146803bc1b7926d3d7f39b06b50a4d26f5ad91b8 SHA512 
5cb94b6463d4baa1a994bee7dd5f9aee823d86d5428aff2719011b5f5340db5aaf35436f4f3be7c773e5560eb5f8ea12ea889505bfd40071401dd7ebf9835ec1
 WHIRLPOOL 
4406703fc459c9115e1d2e04e2a6a69149f7359fabaab284001bd1fec9fbd21c0aadca6836562d09d80390abf42388c864f6bc206080ee50f9c8ab4b80cca4e8

diff --git a/net-p2p/qbittorrent/qbittorrent-3.3.4.ebuild 
b/net-p2p/qbittorrent/qbittorrent-3.3.4.ebuild
new file mode 100644
index 000..786574f
--- /dev/null
+++ b/net-p2p/qbittorrent/qbittorrent-3.3.4.ebuild
@@ -0,0 +1,85 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
+
+inherit eutils python-r1 qt4-r2 flag-o-matic
+
+DESCRIPTION="BitTorrent client in C++ and Qt"
+HOMEPAGE="http://www.qbittorrent.org/;
+
+MY_P=${P/_}
+if [[ ${PV} == ** ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/${PN}/qBittorrent.git;
+else
+   SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.xz"
+   KEYWORDS="~amd64 ~arm ~ppc64 ~x86"
+fi
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="+dbus debug qt4 +qt5 webui +X"
+REQUIRED_USE="
+   ^^ ( qt4 qt5 )
+   dbus? ( X )
+"
+
+CDEPEND="
+   dev-libs/boost:=
+   >=dev-qt/qtsingleapplication-2.6.1_p20130904-r1[qt4?,qt5?,X?]
+   >=net-libs/rb_libtorrent-1.0.6
+   sys-libs/zlib
+   qt4? (
+   dev-qt/qtcore:4
+   dbus? ( dev-qt/qtdbus:4 )
+   X? ( dev-qt/qtgui:4 )
+   )
+   qt5? (
+   dev-qt/qtconcurrent:5
+   dev-qt/qtcore:5
+   dev-qt/qtnetwork:5
+   dev-qt/qtxml:5
+   dbus? ( dev-qt/qtdbus:5 )
+   X? ( dev-qt/qtgui:5
+   dev-qt/qtwidgets:5 )
+   )
+"
+DEPEND="${CDEPEND}
+   qt5? ( dev-qt/linguist-tools:5 )
+   virtual/pkgconfig
+"
+RDEPEND="${CDEPEND}
+   ${PYTHON_DEPS}"
+
+S=${WORKDIR}/${MY_P}
+DOCS=(AUTHORS Changelog README.md TODO)
+
+src_prepare() {
+   epatch_user
+   qt4-r2_src_prepare
+}
+
+src_configure() {
+   # See bug 569062
+   append-cppflags "-DBOOST_NO_CXX11_REF_QUALIFIERS"
+
+   # Custom configure script, econf fails
+   local myconf=(
+   ./configure
+   --prefix="${EPREFIX}/usr"
+   --with-qtsingleapplication=system
+   $(use dbus  || echo --disable-qt-dbus)
+   $(use debug && echo --enable-debug)
+   $(use qt4   && echo --with-qt4)
+   $(use webui || echo --disable-webui)
+   $(use X || echo --disable-gui)
+   )
+
+   echo "${myconf[@]}"
+   "${myconf[@]}" || die "configure failed"
+   use qt4 && eqmake4
+   use qt5 && eqmake5
+}



[gentoo-commits] proj/qt:master commit in: dev-qt/qtwebsockets/

2016-05-02 Thread Davide Pesavento
commit: 14c89fac8716dba293f194616131a32b5acf9fec
Author: Davide Pesavento  gentoo  org>
AuthorDate: Mon May  2 15:12:11 2016 +
Commit: Davide Pesavento  gentoo  org>
CommitDate: Mon May  2 15:12:11 2016 +
URL:https://gitweb.gentoo.org/proj/qt.git/commit/?id=14c89fac

dev-qt/qtwebsockets: fix automagic dependency on qtnetwork[ssl]

Package-Manager: portage-2.2.28

 dev-qt/qtwebsockets/qtwebsockets-5.6..ebuild   | 9 +++--
 dev-qt/qtwebsockets/qtwebsockets-5.7.0_beta.ebuild | 9 +++--
 dev-qt/qtwebsockets/qtwebsockets-5.7..ebuild   | 9 +++--
 dev-qt/qtwebsockets/qtwebsockets-5..ebuild | 9 +++--
 4 files changed, 28 insertions(+), 8 deletions(-)

diff --git a/dev-qt/qtwebsockets/qtwebsockets-5.6..ebuild 
b/dev-qt/qtwebsockets/qtwebsockets-5.6..ebuild
index 75687e8..26a4d92 100644
--- a/dev-qt/qtwebsockets/qtwebsockets-5.6..ebuild
+++ b/dev-qt/qtwebsockets/qtwebsockets-5.6..ebuild
@@ -11,11 +11,11 @@ if [[ ${QT5_BUILD_TYPE} == release ]]; then
KEYWORDS="~amd64 ~arm ~hppa ~ppc64 ~x86"
 fi
 
-IUSE="qml"
+IUSE="qml +ssl"
 
 DEPEND="
~dev-qt/qtcore-${PV}
-   ~dev-qt/qtnetwork-${PV}
+   ~dev-qt/qtnetwork-${PV}[ssl?]
qml? ( ~dev-qt/qtdeclarative-${PV} )
 
 "
@@ -24,5 +24,10 @@ RDEPEND="${DEPEND}"
 src_prepare() {
qt_use_disable_mod qml quick src/src.pro
 
+   if ! use ssl; then
+   sed -i -e '/contains(QT_CONFIG.*ssl)/ c\false{' \
+   src/websockets/websockets.pro || die
+   fi
+
qt5-build_src_prepare
 }

diff --git a/dev-qt/qtwebsockets/qtwebsockets-5.7.0_beta.ebuild 
b/dev-qt/qtwebsockets/qtwebsockets-5.7.0_beta.ebuild
index 75687e8..26a4d92 100644
--- a/dev-qt/qtwebsockets/qtwebsockets-5.7.0_beta.ebuild
+++ b/dev-qt/qtwebsockets/qtwebsockets-5.7.0_beta.ebuild
@@ -11,11 +11,11 @@ if [[ ${QT5_BUILD_TYPE} == release ]]; then
KEYWORDS="~amd64 ~arm ~hppa ~ppc64 ~x86"
 fi
 
-IUSE="qml"
+IUSE="qml +ssl"
 
 DEPEND="
~dev-qt/qtcore-${PV}
-   ~dev-qt/qtnetwork-${PV}
+   ~dev-qt/qtnetwork-${PV}[ssl?]
qml? ( ~dev-qt/qtdeclarative-${PV} )
 
 "
@@ -24,5 +24,10 @@ RDEPEND="${DEPEND}"
 src_prepare() {
qt_use_disable_mod qml quick src/src.pro
 
+   if ! use ssl; then
+   sed -i -e '/contains(QT_CONFIG.*ssl)/ c\false{' \
+   src/websockets/websockets.pro || die
+   fi
+
qt5-build_src_prepare
 }

diff --git a/dev-qt/qtwebsockets/qtwebsockets-5.7..ebuild 
b/dev-qt/qtwebsockets/qtwebsockets-5.7..ebuild
index 75687e8..26a4d92 100644
--- a/dev-qt/qtwebsockets/qtwebsockets-5.7..ebuild
+++ b/dev-qt/qtwebsockets/qtwebsockets-5.7..ebuild
@@ -11,11 +11,11 @@ if [[ ${QT5_BUILD_TYPE} == release ]]; then
KEYWORDS="~amd64 ~arm ~hppa ~ppc64 ~x86"
 fi
 
-IUSE="qml"
+IUSE="qml +ssl"
 
 DEPEND="
~dev-qt/qtcore-${PV}
-   ~dev-qt/qtnetwork-${PV}
+   ~dev-qt/qtnetwork-${PV}[ssl?]
qml? ( ~dev-qt/qtdeclarative-${PV} )
 
 "
@@ -24,5 +24,10 @@ RDEPEND="${DEPEND}"
 src_prepare() {
qt_use_disable_mod qml quick src/src.pro
 
+   if ! use ssl; then
+   sed -i -e '/contains(QT_CONFIG.*ssl)/ c\false{' \
+   src/websockets/websockets.pro || die
+   fi
+
qt5-build_src_prepare
 }

diff --git a/dev-qt/qtwebsockets/qtwebsockets-5..ebuild 
b/dev-qt/qtwebsockets/qtwebsockets-5..ebuild
index 75687e8..26a4d92 100644
--- a/dev-qt/qtwebsockets/qtwebsockets-5..ebuild
+++ b/dev-qt/qtwebsockets/qtwebsockets-5..ebuild
@@ -11,11 +11,11 @@ if [[ ${QT5_BUILD_TYPE} == release ]]; then
KEYWORDS="~amd64 ~arm ~hppa ~ppc64 ~x86"
 fi
 
-IUSE="qml"
+IUSE="qml +ssl"
 
 DEPEND="
~dev-qt/qtcore-${PV}
-   ~dev-qt/qtnetwork-${PV}
+   ~dev-qt/qtnetwork-${PV}[ssl?]
qml? ( ~dev-qt/qtdeclarative-${PV} )
 
 "
@@ -24,5 +24,10 @@ RDEPEND="${DEPEND}"
 src_prepare() {
qt_use_disable_mod qml quick src/src.pro
 
+   if ! use ssl; then
+   sed -i -e '/contains(QT_CONFIG.*ssl)/ c\false{' \
+   src/websockets/websockets.pro || die
+   fi
+
qt5-build_src_prepare
 }



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtwebsockets/

2016-05-02 Thread Davide Pesavento
commit: af3eca38517b6fce72eb01850b1791323f8a8e24
Author: Davide Pesavento  gentoo  org>
AuthorDate: Mon May  2 15:09:40 2016 +
Commit: Davide Pesavento  gentoo  org>
CommitDate: Mon May  2 15:10:04 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af3eca38

dev-qt/qtwebsockets: fix automagic dependency on qtnetwork[ssl]

Package-Manager: portage-2.2.28

 ...ebsockets-5.5.1-r1.ebuild => qtwebsockets-5.5.1-r2.ebuild} | 11 ---
 ...qtwebsockets-5.6.0.ebuild => qtwebsockets-5.6.0-r1.ebuild} |  9 +++--
 2 files changed, 15 insertions(+), 5 deletions(-)

diff --git a/dev-qt/qtwebsockets/qtwebsockets-5.5.1-r1.ebuild 
b/dev-qt/qtwebsockets/qtwebsockets-5.5.1-r2.ebuild
similarity index 68%
rename from dev-qt/qtwebsockets/qtwebsockets-5.5.1-r1.ebuild
rename to dev-qt/qtwebsockets/qtwebsockets-5.5.1-r2.ebuild
index 5dc250a..e9a9241 100644
--- a/dev-qt/qtwebsockets/qtwebsockets-5.5.1-r1.ebuild
+++ b/dev-qt/qtwebsockets/qtwebsockets-5.5.1-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -11,11 +11,11 @@ if [[ ${QT5_BUILD_TYPE} == release ]]; then
KEYWORDS="~amd64 ~arm ~hppa ~ppc64 ~x86"
 fi
 
-IUSE="qml"
+IUSE="qml +ssl"
 
 DEPEND="
~dev-qt/qtcore-${PV}
-   ~dev-qt/qtnetwork-${PV}
+   ~dev-qt/qtnetwork-${PV}[ssl?]
qml? ( ~dev-qt/qtdeclarative-${PV} )
 
 "
@@ -24,5 +24,10 @@ RDEPEND="${DEPEND}"
 src_prepare() {
qt_use_disable_mod qml quick src/src.pro
 
+   if ! use ssl; then
+   sed -i -e '/contains(QT_CONFIG.*ssl)/ c\false{' \
+   src/websockets/websockets.pro || die
+   fi
+
qt5-build_src_prepare
 }

diff --git a/dev-qt/qtwebsockets/qtwebsockets-5.6.0.ebuild 
b/dev-qt/qtwebsockets/qtwebsockets-5.6.0-r1.ebuild
similarity index 74%
rename from dev-qt/qtwebsockets/qtwebsockets-5.6.0.ebuild
rename to dev-qt/qtwebsockets/qtwebsockets-5.6.0-r1.ebuild
index 75687e8..26a4d92 100644
--- a/dev-qt/qtwebsockets/qtwebsockets-5.6.0.ebuild
+++ b/dev-qt/qtwebsockets/qtwebsockets-5.6.0-r1.ebuild
@@ -11,11 +11,11 @@ if [[ ${QT5_BUILD_TYPE} == release ]]; then
KEYWORDS="~amd64 ~arm ~hppa ~ppc64 ~x86"
 fi
 
-IUSE="qml"
+IUSE="qml +ssl"
 
 DEPEND="
~dev-qt/qtcore-${PV}
-   ~dev-qt/qtnetwork-${PV}
+   ~dev-qt/qtnetwork-${PV}[ssl?]
qml? ( ~dev-qt/qtdeclarative-${PV} )
 
 "
@@ -24,5 +24,10 @@ RDEPEND="${DEPEND}"
 src_prepare() {
qt_use_disable_mod qml quick src/src.pro
 
+   if ! use ssl; then
+   sed -i -e '/contains(QT_CONFIG.*ssl)/ c\false{' \
+   src/websockets/websockets.pro || die
+   fi
+
qt5-build_src_prepare
 }



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

2016-05-02 Thread Patrick Lauer
commit: 1c8d153084880e74bf9d98c6cebc81ec00528675
Author: Patrick Lauer  gentoo  org>
AuthorDate: Mon May  2 14:23:18 2016 +
Commit: Patrick Lauer  gentoo  org>
CommitDate: Mon May  2 14:56:30 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c8d1530

dev-lang/nqp: Bump

Package-Manager: portage-2.2.28

 dev-lang/nqp/Manifest   |  1 +
 dev-lang/nqp/nqp-2016.04.ebuild | 64 +
 2 files changed, 65 insertions(+)

diff --git a/dev-lang/nqp/Manifest b/dev-lang/nqp/Manifest
index fe18590..31cdb1c 100644
--- a/dev-lang/nqp/Manifest
+++ b/dev-lang/nqp/Manifest
@@ -1,3 +1,4 @@
 DIST nqp-2016.01.tar.gz 5117110 SHA256 
87875120af7167093643f2a35869d66a61f735220a9348627ba89cf294387c8b SHA512 
e79668f7f5f3679fe3b93f63e1151da1eab109ef4acc6f8ae3da3d9e5c3da814440dd43279978b1a13f30647d7c52bda5575b02f366bd928965b06b47c6d6d91
 WHIRLPOOL 
d2369417707332d8bc045f6f93da81e1301ec2599f197664d80e6edeefc1bc7a2147ad3b7e893eef0fb6b96adf2f68f5ab44b948801e266e68d99552253abeda
 DIST nqp-2016.02.tar.gz 5121833 SHA256 
051ddd4bab8f73a688836d896340320ff7043a6ecbd5c53be099249e75e33b8d SHA512 
9a3233e351ebdf73ed27d3eade2052936d1a49ea95d32a8176e426e7126c720e4a3f69dedc4067925272293329b08ab397f6a7523b9e4129952847fbd86fcf0d
 WHIRLPOOL 
1bad2dc420d59f07c3d9b8d9dcc78d51a772ed2672419fc53e427c68e24fce5645a0dcfd4a4e138e6333f9e909297b49fafe190e6dc763cca8e52dce20309ec5
 DIST nqp-2016.03.tar.gz 5126687 SHA256 
50731983cfc0800015bf73a2174000f5631ad09b551ff190153fba00a448067f SHA512 
707701e22752cb43b0694c8c57ec834cfee3d2a50c2b6ae3ee36af5881728c94ae1d03d07c624367edb6cf58bba18abd26dcc18656b0483f4f979db5dd26a07e
 WHIRLPOOL 
364abefc3d7b005b89fd3a3180e66971dbc56851377b93e38d2a8b2ed546121ec730628e0f93947f77e8f12346d64e60b4af8ffa720dc0a05810fae846b262a4
+DIST nqp-2016.04.tar.gz 5156494 SHA256 
9176422eb2a99db24ab520bc78686f3a2c008ba73bf8c7091a790985f5061019 SHA512 
5dcb685a90b26fee3e8dac3ca24da11bd967d034b5328232d18d9db37e27645b57259cabf54ef8e10b3ac508b1aa784072f0a9542d30168d3017f86e610c3cee
 WHIRLPOOL 
0711e1471740b0ed181f9e4504f810a084056e74650c0ffb1c6c17e2976b2c1facb6a7e73df5d991d9ffe43f055fe844f0756dbd816375708b4d499a0f7a9162

diff --git a/dev-lang/nqp/nqp-2016.04.ebuild b/dev-lang/nqp/nqp-2016.04.ebuild
new file mode 100644
index 000..4a45644
--- /dev/null
+++ b/dev-lang/nqp/nqp-2016.04.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+# still not working
+RESTRICT="test"
+
+inherit eutils multilib versionator
+
+GITCRAP=10d3ecc
+
+DESCRIPTION="Not Quite Perl, a Perl 6 bootstrapping compiler"
+HOMEPAGE="http://rakudo.org/;
+SRC_URI="https://github.com/perl6/${PN}/tarball/${PV} -> ${P}.tar.gz"
+
+LICENSE="Artistic-2"
+SLOT="0"
+KEYWORDS="~x86 ~amd64"
+IUSE="doc java +moar"
+REQUIRED_USE="|| ( java moar )"
+
+RDEPEND="
+   java? ( >=virtual/jre-1.7 )
+   moar? ( ~dev-lang/moarvm-${PV} )
+   dev-libs/libffi"
+DEPEND="${RDEPEND}
+   java? ( >=virtual/jdk-1.7 )
+   dev-lang/perl"
+
+S=${WORKDIR}/perl6-nqp-${GITCRAP}
+
+src_configure() {
+   use java && myconf+="jvm,"
+   use moar && myconf+="moar,"
+   perl Configure.pl --backend=${myconf} --prefix=/usr || die
+   # dirty hack to make dyncall not fail
+   sed -i -e 's/-Werror=missing-prototypes//' Makefile || die
+   sed -i -e 's/-Werror=missing-declarations//' Makefile || die
+   sed -i -e 's/-Werror=strict-prototypes//' Makefile || die
+
+   # more dirty hack to allow building with newer gcc
+   sed -i -e 's/-Werror=implicit-function-declaration//' Makefile || die
+   sed -i -e 's/-Werror=nested-externs//' Makefile || die
+}
+
+src_compile() {
+   emake -j1 || die
+}
+
+src_test() {
+   emake -j1 test || die
+}
+
+src_install() {
+   emake DESTDIR="${ED}" install || die
+
+   dodoc CREDITS README.pod || die
+
+   if use doc; then
+   dodoc -r docs/* || die
+   fi
+}



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

2016-05-02 Thread Patrick Lauer
commit: 4644c7bccfe16d0fa5f86b108ac3cfa8288d802b
Author: Patrick Lauer  gentoo  org>
AuthorDate: Mon May  2 14:09:00 2016 +
Commit: Patrick Lauer  gentoo  org>
CommitDate: Mon May  2 14:56:30 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4644c7bc

dev-lang/moarvm: Bump, use sytem pkgs where possible

Package-Manager: portage-2.2.28

 dev-lang/moarvm/Manifest  |  1 +
 dev-lang/moarvm/moarvm-2016.04.ebuild | 35 +++
 2 files changed, 36 insertions(+)

diff --git a/dev-lang/moarvm/Manifest b/dev-lang/moarvm/Manifest
index 748cc98..8841bc0 100644
--- a/dev-lang/moarvm/Manifest
+++ b/dev-lang/moarvm/Manifest
@@ -1,3 +1,4 @@
 DIST MoarVM-2016.01.tar.gz 3314742 SHA256 
d409b684c7c92b144b31cf7f0408f30ccbb033ce646f57d7fbaeb9683773e37b SHA512 
019433a985c8245c231d533b8310fceda185a694681aaecb922602ad98897c636c40fbe1a36ba656af4c242b28315611f656454eb41f25e0f891b652210eb435
 WHIRLPOOL 
f603e1f60667771e0200e731b37ff854346d00a0de484a9b3072f83e0ee624bc2b7d7e862c872d9062a4397adb5bfab31d835754966a7fe44490312c82a37e8e
 DIST MoarVM-2016.02.tar.gz 3313448 SHA256 
3bdacebba98e6b2d3d10f12af0ab514dec27fb24b15ed00aef479b7d190ce40a SHA512 
fdeb107e071bcd7a893f15f105e722543010a87710cbd2ac4ce322000c96c9dae5c5e661dd8d60e712c4fe22d860650a003485d75f95a5b19fcde266f8fe483d
 WHIRLPOOL 
9ccb54d147d558b4fa52bfe9b098384b3d61dffba598db803828bb0cbbc8bae9fd6a527d093c07a421cd97a59952e11ffaf9c6cef93ce9b48778009558e96732
 DIST MoarVM-2016.03.tar.gz 3318299 SHA256 
dfc3914e609f30ff06f14267bcbb4fcc6da3d85782d35c1838701a5ea41d8f2f SHA512 
358c48f6b1803e39841e9f287f2fe3cdde743962d9d9c34e629c18b1b7290fd8a713917f24233dd092ed68adf9a6d0aadb25bda22b3e353d40bd57ae58d70216
 WHIRLPOOL 
e68dfbc40bda23a49c28089fe8396e5a182afc0ac2550f9ab5d9f1564943af163fcc68b466feaf0778a2df57cd472c87f0853d47882b9b625434c7740ec5aec4
+DIST MoarVM-2016.04.tar.gz 3332850 SHA256 
6fe9000daada59535747f2557cc73573241ba8a6044271caf1647aa37be33c6d SHA512 
ef22145c9f7c32d7d12192cee63f286544500adff40fc2dbaad677d57108bc6efedc348fe8ddf460fe12d2c6b282e885bcb74fb3bcaa1e06b7719754175afe7d
 WHIRLPOOL 
e314f80cd785d31768630798647d7f445831bb29aaded88ef32326df3f4705a5d3fba2da00fce6888a2256b57aeb838922e94c3096250d30112f2be2bfacbb92

diff --git a/dev-lang/moarvm/moarvm-2016.04.ebuild 
b/dev-lang/moarvm/moarvm-2016.04.ebuild
new file mode 100644
index 000..9ce8da2
--- /dev/null
+++ b/dev-lang/moarvm/moarvm-2016.04.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit eutils multilib
+
+MY_PN="MoarVM"
+
+DESCRIPTION="A 6model-based VM for NQP and Rakudo Perl 6"
+HOMEPAGE="http://moarvm.org;
+SRC_URI="http://moarvm.org/releases/${MY_PN}-${PV}.tar.gz;
+LICENSE="Artistic-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc"
+
+RDEPEND="dev-libs/libuv
+   dev-libs/libtommath
+   dev-libs/libatomic_ops
+   dev-libs/libuv
+   "
+DEPEND="${RDEPEND}
+   dev-lang/perl"
+
+S="${WORKDIR}/MoarVM-${PV}"
+
+src_configure() {
+   perl Configure.pl --prefix="/usr" --has-libtommath --has-libatomic_ops 
--has-libuv || die
+}
+
+src_install() {
+   emake DESTDIR="${D}" install
+}



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

2016-05-02 Thread Patrick Lauer
commit: ff342d80d1da8b1c51e6a3528c988d5415eec624
Author: Patrick Lauer  gentoo  org>
AuthorDate: Mon May  2 14:55:20 2016 +
Commit: Patrick Lauer  gentoo  org>
CommitDate: Mon May  2 14:56:30 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff342d80

dev-lang/rakudo: Bump

Package-Manager: portage-2.2.28

 dev-lang/rakudo/Manifest  |  1 +
 dev-lang/rakudo/rakudo-2016.04.ebuild | 34 ++
 2 files changed, 35 insertions(+)

diff --git a/dev-lang/rakudo/Manifest b/dev-lang/rakudo/Manifest
index b19f9e9..0738835 100644
--- a/dev-lang/rakudo/Manifest
+++ b/dev-lang/rakudo/Manifest
@@ -1,3 +1,4 @@
 DIST rakudo-2016.01.1.tar.gz 2687265 SHA256 
897d01bcb27c209bd51918bb5be6adc6e6ea9dbc2c6b65414f9ac081aa8c5d7b SHA512 
31228d49577f5d25b306a987650af0ae11bb2fa80fcaeee421dbe88dc9812edd5a39f8727dee11d74177b7b9bca0290e26c4240c7baed35fabb4c912f85f
 WHIRLPOOL 
52b2d7d1a0461883b1d07bbb492994f7eb8930a8726565d9a473e16510fc052dc066bf8443e09042548d76a3f3ca1cb17be8baa23b16f5742eb52f33c39b
 DIST rakudo-2016.02.tar.gz 2691766 SHA256 
8ccfbf24f49bf4f5aa0304ffa69abbd90b97dc59f2c65e2384c6b609e3d3f00a SHA512 
9fa891a84e882626050772231dee15ad20f1c2d84b5b9ff985964efbff45f18e0a1940dad2cc1fbb8b91f69d9f7f2a3034998819e8ddbf0c380684b326d299ca
 WHIRLPOOL 
2a55ec29df905ec79fee842f84394ac8733d1b116fc90c29a06e8953a77b15bfc193d974a804f99d41ee0b9fce87d4b07ff6e367f03243d08d03f20340fe766e
 DIST rakudo-2016.03.tar.gz 2702229 SHA256 
d77b58acb09f34c99af94f32db92698df88cda7015c7630ddb1392adbf703471 SHA512 
53619288655edf72f986cb5fe7b72cd70ed88a6b18421d46d5d70a8932ca22eb1067be5ddf98264e576f7d81a84d9bbaca2ac5ac3241e582d2f4672589ba7ab1
 WHIRLPOOL 
43696dda25214aa9e30be7c1c3323dee8ea0f1c50a5754ca2a08d421b4c59cac5001fa4a63d8086ce0cb97801eb098d4e854ca4b801eaf7d277099bf6d86b655
+DIST rakudo-2016.04.tar.gz 2706659 SHA256 
207d723c9b2d524daf6008a3ed026ea06773d937e76e0fe79b89bfb7dcd0d92b SHA512 
08e718643cfa89edbb8995ab9f350f69053e41cff97b33530dd2eb202d2ab2116d219ef1385717b48f5883665c73a181b1b054c1300db302fba31c6081e97532
 WHIRLPOOL 
d49791b696114f57b685221be5cfe1873a88507810819b2a9aace07da2c2d7535eeaecc6c830df3265ecd1ff352effa509cbb3f24cba7e8afc0dc1468553cce6

diff --git a/dev-lang/rakudo/rakudo-2016.04.ebuild 
b/dev-lang/rakudo/rakudo-2016.04.ebuild
new file mode 100644
index 000..4903a0a
--- /dev/null
+++ b/dev-lang/rakudo/rakudo-2016.04.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DESCRIPTION="A compiler for the Perl 6 programming language"
+HOMEPAGE="http://rakudo.org;
+
+if [[ ${PV} == "" ]]; then
+   EGIT_REPO_URI="https://github.com/rakudo/${PN}.git;
+   inherit git-r3
+else
+   SRC_URI="${HOMEPAGE}/downloads/${PN}/${P}.tar.gz"
+fi
+
+LICENSE="Artistic-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+# TODO: add USE="javascript" once that's usable in nqp
+IUSE="test"
+
+RDEPEND="=dev-lang/nqp-${PV}:=[moar]"
+DEPEND="${RDEPEND}
+   >=dev-lang/perl-5.10"
+
+src_configure() {
+   perl Configure.pl --prefix=/usr --sysroot=/usr --backends=moar
+}
+
+src_test() {
+   export RAKUDO_PRECOMP_PREFIX=$(mktemp -d)
+   default
+}



[gentoo-commits] proj/java:master commit in: dev-java/h2/files/, dev-java/h2/

2016-05-02 Thread James Le Cuirot
commit: 1be22fc2540af3d5a9023fde3255b3d53db1958a
Author: James Le Cuirot  gentoo  org>
AuthorDate: Mon May  2 14:41:19 2016 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Mon May  2 14:41:19 2016 +
URL:https://gitweb.gentoo.org/proj/java.git/commit/?id=1be22fc2

dev-java/h2: Version bump to 1.3.176

Package-Manager: portage-2.2.28

 dev-java/h2/Manifest   |  2 +-
 dev-java/h2/files/osgi-5.patch | 21 +++
 .../h2/{h2-1.3.161.ebuild => h2-1.3.176.ebuild}| 44 +++---
 3 files changed, 44 insertions(+), 23 deletions(-)

diff --git a/dev-java/h2/Manifest b/dev-java/h2/Manifest
index 4ef6aa1..91bafa6 100644
--- a/dev-java/h2/Manifest
+++ b/dev-java/h2/Manifest
@@ -1 +1 @@
-DIST h2-2011-10-28.zip 6008034 SHA256 
83b3b9a92a84d192ccf450618b1d52b76ff8fb940e8ceab6e18918a60d3e67ef
+DIST h2-2014-04-05.zip 7791840 SHA256 
0febacc399c405e4b58f945f57ac5a38ed6f6c64c049b2fec73f258874a1d346 SHA512 
fa778e7d0d3fd1f69a11fa55b0668b6a8e06bc0ea811b904342c92108326f7339ed3e0bb8c86dfff9a16e8954a8c153958f0ebdb2789c8830753330a105159b9
 WHIRLPOOL 
595a1a2833d16073c0e126b6d5ecaabc9dc8e12e59665553cdc698b757fd1a6b8bcbef1f020fd7d7f319532c022382aec07555d8103786f82450027d344bfb29

diff --git a/dev-java/h2/files/osgi-5.patch b/dev-java/h2/files/osgi-5.patch
new file mode 100644
index 000..7250d2e
--- /dev/null
+++ b/dev-java/h2/files/osgi-5.patch
@@ -0,0 +1,21 @@
+--- src/main/org/h2/util/DbDriverActivator.java.orig   2016-05-01 
22:56:54.730869535 +0100
 src/main/org/h2/util/DbDriverActivator.java2016-05-01 
23:03:37.354040220 +0100
+@@ -6,7 +6,8 @@
+  */
+ package org.h2.util;
+ 
+-import java.util.Properties;
++import java.util.Dictionary;
++import java.util.Hashtable;
+ import org.h2.engine.Constants;
+ import org.osgi.framework.BundleActivator;
+ import org.osgi.framework.BundleContext;
+@@ -27,7 +28,7 @@
+ @Override
+ public void start(BundleContext bundleContext) {
+ org.h2.Driver driver = org.h2.Driver.load();
+-Properties properties = new Properties();
++Dictionary properties = new Hashtable();
+ properties.put(
+ DataSourceFactory.OSGI_JDBC_DRIVER_CLASS,
+ org.h2.Driver.class.getName());

diff --git a/dev-java/h2/h2-1.3.161.ebuild b/dev-java/h2/h2-1.3.176.ebuild
similarity index 63%
rename from dev-java/h2/h2-1.3.161.ebuild
rename to dev-java/h2/h2-1.3.176.ebuild
index 1c03830..acbc657 100644
--- a/dev-java/h2/h2-1.3.161.ebuild
+++ b/dev-java/h2/h2-1.3.176.ebuild
@@ -1,14 +1,13 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI="4"
-MY_PV="2011-10-28"
+EAPI=5
 
+MY_PV="2014-04-05"
 JAVA_PKG_IUSE="doc"
-JAVA_PKG_WANT_BOOTCLASSPATH="1.5"
 
-inherit java-pkg-2 java-pkg-simple
+inherit eutils java-pkg-2 java-pkg-simple
 
 DESCRIPTION="Java SQL Database"
 HOMEPAGE="http://www.h2database.com/;
@@ -16,36 +15,36 @@ SRC_URI="http://www.h2database.com/${PN}-${MY_PV}.zip;
 LICENSE="EPL-1.0 H2-1.0"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE=""
 
-# Some tests fail even outside of Portage using upstream's own
-# scripts. The failures we get here appear to be the same.
+# The tests are highly explosive, even using upstream's scripts, and
+# take ages to run. They seem to require quite a particular environment.
 RESTRICT="test"
 
-CDEPEND="dev-java/lucene:3.0
+CDEPEND="dev-java/jts-core:0
+   dev-java/lucene:3.6
+   dev-java/osgi-core-api:0
+   dev-java/osgi-enterprise-api:0
dev-java/slf4j-api:0
-   dev-java/tomcat-servlet-api:2.4"
+   java-virtuals/servlet-api:2.4"
 
 DEPEND="${CDEPEND}
app-arch/unzip
app-arch/zip
-   >=virtual/jdk-1.6"
+   >=virtual/jdk-1.7"
 
 RDEPEND="${CDEPEND}
-   >=virtual/jre-1.6"
+   >=virtual/jre-1.7"
 
 S="${WORKDIR}/${PN}"
 JAVA_SRC_DIR="src/main src/tools/org/h2/dev src/tools/org/h2/jaqu 
src/tools/org/h2/mode"
-JAVA_GENTOO_CLASSPATH="lucene-3.0,slf4j-api,tomcat-servlet-api-2.4"
+JAVA_GENTOO_CLASSPATH="jts-core,lucene-3.6,osgi-core-api,osgi-enterprise-api,servlet-api-2.4,slf4j-api"
 
 java_prepare() {
-   if use test; then
-   # This test uses way too much RAM and dies? But isn't that the 
point?
-   sed -i "/TestOutOfMemory/d" "src/test/org/h2/test/TestAll.java" 
|| die
-   fi
+   # Compatibility with OSGi 5.
+   epatch "${FILESDIR}/osgi-5.patch"
 
-   # Avoid the OSGi Framework stuff.
-   rm -v "src/main/org/h2/util/DbDriverActivator.java" || die
+   # Uncomment the Java 7 methods as we are at least targeting that.
+   find -name "*.java" -exec sed -i "/\/\*## Java 1\.7 ##/s:/*://:" {} + 
|| die
 
# Extract metadata from the binary.
mkdir -p target/classes || die
@@ -54,7 +53,7 @@ java_prepare() {
 }
 
 src_compile() {
-   

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

2016-05-02 Thread Lars Wendler
commit: 060647cd95b37f5545ed8082c94352f91352fcf9
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon May  2 14:12:58 2016 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon May  2 14:12:58 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=060647cd

sys-apps/file: USE="python" requires dev-python/setuptools (bug #581610)

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

 sys-apps/file/file-5.26-r1.ebuild | 25 +++--
 1 file changed, 15 insertions(+), 10 deletions(-)

diff --git a/sys-apps/file/file-5.26-r1.ebuild 
b/sys-apps/file/file-5.26-r1.ebuild
index ff3216a..fb300b3 100644
--- a/sys-apps/file/file-5.26-r1.ebuild
+++ b/sys-apps/file/file-5.26-r1.ebuild
@@ -24,21 +24,26 @@ LICENSE="BSD-2"
 SLOT="0"
 IUSE="python static-libs zlib"
 
-DEPEND="python? ( ${PYTHON_DEPS} )
+DEPEND="python? ( ${PYTHON_DEPS}
+   dev-python/setuptools )
zlib? ( >=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}] )"
 RDEPEND="${DEPEND}
python? ( !dev-python/python-magic )"
 
+PATCHES=(
+   "${FILESDIR}"/${P}-header-define.patch
+   "${FILESDIR}"/${P}-nes-magic.patch
+   "${FILESDIR}"/${P}-php-magic.patch
+   "${FILESDIR}"/${P}-msoffice-magic.patch
+   "${FILESDIR}"/${P}-stdin-rpm.patch
+   "${FILESDIR}"/${P}-tests-fatal.patch
+   "${FILESDIR}"/${P}-stdin-test.patch
+   "${FILESDIR}"/${P}-compress-1.patch
+   "${FILESDIR}"/${P}-compress-2.patch
+)
+
 src_prepare() {
-   epatch "${FILESDIR}"/${P}-header-define.patch
-   epatch "${FILESDIR}"/${P}-nes-magic.patch
-   epatch "${FILESDIR}"/${P}-php-magic.patch
-   epatch "${FILESDIR}"/${P}-msoffice-magic.patch
-   epatch "${FILESDIR}"/${P}-stdin-rpm.patch
-   epatch "${FILESDIR}"/${P}-tests-fatal.patch
-   epatch "${FILESDIR}"/${P}-stdin-test.patch
-   epatch "${FILESDIR}"/${P}-compress-1.patch
-   epatch "${FILESDIR}"/${P}-compress-2.patch
+   epatch "${PATCHES[@]}"
[[ ${PV} == "" ]] && eautoreconf
elibtoolize
 



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

2016-05-02 Thread Sergei Trofimovich
commit: f3476b3f26fb9209c9ca6d3ee4fb3cd2e1839c2c
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon May  2 13:58:36 2016 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon May  2 13:58:36 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3476b3f

dev-util/bdelta: drop live ebuild

Package-Manager: portage-2.2.28

 dev-util/bdelta/bdelta-.ebuild | 41 --
 1 file changed, 41 deletions(-)

diff --git a/dev-util/bdelta/bdelta-.ebuild 
b/dev-util/bdelta/bdelta-.ebuild
deleted file mode 100644
index a7cdf5a..000
--- a/dev-util/bdelta/bdelta-.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=4
-
-if [[ ${PV} = ** ]]; then
-   EGIT_REPO_URI="git://github.com/jjwhitney/BDelta.git"
-   UNPACKER_ECLASS="git-2"
-   LIVE_EBUILD=yes
-else
-   UNPACKER_ECLASS="vcs-snapshot"
-fi
-
-inherit multilib toolchain-funcs ${UNPACKER_ECLASS}
-
-if [[ -z ${LIVE_EBUILD} ]]; then
-   KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86 ~x86-linux"
-   SRC_URI="https://github.com/jjwhitney/BDelta/tarball/v${PV} -> 
${P}.tar.gz"
-fi
-
-DESCRIPTION="Binary Delta - Efficient difference algorithm and format"
-HOMEPAGE="http://bdelta.org;
-
-SLOT="0"
-LICENSE="MPL-2.0"
-IUSE=""
-
-src_compile() {
-   emake -C src \
-   CXX="$(tc-getCXX)" \
-   CXXFLAGS="${CXXFLAGS}"
-}
-
-src_install() {
-   emake -C src install \
-   DESTDIR="${D}" \
-   PREFIX="${EPREFIX}/usr" \
-   LIBDIR="${EPREFIX}/usr/$(get_libdir)"
-   dodoc README
-}



[gentoo-commits] repo/gentoo:master commit in: sys-fs/btrfs-progs/

2016-05-02 Thread Sergei Trofimovich
commit: b998a1d17aaac2eb5002f0411f02be5453c7ce17
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon May  2 13:44:25 2016 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon May  2 13:44:25 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b998a1d1

sys-fs/btrfs-progs: bump up to 4.5.2

Package-Manager: portage-2.2.28

 sys-fs/btrfs-progs/Manifest |  1 +
 sys-fs/btrfs-progs/btrfs-progs-4.5.2.ebuild | 94 +
 2 files changed, 95 insertions(+)

diff --git a/sys-fs/btrfs-progs/Manifest b/sys-fs/btrfs-progs/Manifest
index 95e0c31..a43e194 100644
--- a/sys-fs/btrfs-progs/Manifest
+++ b/sys-fs/btrfs-progs/Manifest
@@ -12,3 +12,4 @@ DIST btrfs-progs-v4.2.tar.xz 1130488 SHA256 
25233c3e94c52bf433e8749c17dad2acd800
 DIST btrfs-progs-v4.3.1.tar.xz 1184416 SHA256 
0cb5ff15deed01cdf5a77f3f61b7dc9d2cd6787bcf6b6b7dcef424d16e8afd3a SHA512 
661c7c05ee3527cc34f3aa08e88e252e6e836a86752f7e607e3f6dc0a9a861d3bc645a6fa0a5af5f6abfe4f3f2f7e193cffc2bb1c53595e0b7f99c3ff59daeff
 WHIRLPOOL 
503ab00d8362ab2b4b9b91a8de18cca9eba1d76f2331f54cbecc7e89cc491dce3cfbd761d8e6e37773499cea7ef67a66dc7f544d7590d0c82acbef90ebe0c824
 DIST btrfs-progs-v4.4.1.tar.xz 1173248 SHA256 
9964e3ae4fb64692e109ddd733de4554e708348ffa18f0fc16a0cbd4bf40a8fc SHA512 
3086e2e0385d9e14edcfa25e1aee1ed98087dd5b91a66aa450786c932d79841b5c4ee3f9a40b8fdecee0ba1e386196b89679d28e58e4924ce66cd78c5e3c0d4a
 WHIRLPOOL 
188c4dec4f699262b023268e4a582312443aeaf0ea798446105d7288f6375cbad92ea2e8514def0b22cc8991c3ca9aefc5220dd8b6922aa4b506572da973ec33
 DIST btrfs-progs-v4.5.1.tar.xz 1183872 SHA256 
eef87b2d0e231656afbffab35718c79a7774cc0101d33165abeb9bb2e017cefe SHA512 
d97e74a04256f5b7d925a77635465d6b968bedaa8f2d13f30312835c5156c060052335ead9181148d28cb5a19c4f808629bb019c8a89c08ff7caf53cdd91622f
 WHIRLPOOL 
98a6b878ecfe8afa62bbfb7b182747fb33a70d21335f614daf167eb9c108e74abc9843c85daf65be003bae7bb7f0350c71cbb8730eee418b0eb4cef6d71a029d
+DIST btrfs-progs-v4.5.2.tar.xz 1189928 SHA256 
aefb8914f72926706b54e5619a36c9b95ebb0283ba6bb032cdc3a3dfe2f81227 SHA512 
4c73f90265ea1791651e83d3fa8b0515d39f3fe0a61665501ee16a0c343792efb39d84b4b4747757faacf451c77a0f88b85d9aa9fc83917571b9f1e6e9f2fafe
 WHIRLPOOL 
b2455dbe38ccf74ca4c3c3fc1808e18ca3033ec92beafa77509ab88e7fc71eb4b2d0e41e63a63dbdad3e5cd0770a1d64e065a07080359d8088680389a6d0c983

diff --git a/sys-fs/btrfs-progs/btrfs-progs-4.5.2.ebuild 
b/sys-fs/btrfs-progs/btrfs-progs-4.5.2.ebuild
new file mode 100644
index 000..d7b3291
--- /dev/null
+++ b/sys-fs/btrfs-progs/btrfs-progs-4.5.2.ebuild
@@ -0,0 +1,94 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit bash-completion-r1
+
+libbtrfs_soname=0
+
+if [[ ${PV} !=  ]]; then
+   MY_PV=v${PV}
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+   
SRC_URI="https://www.kernel.org/pub/linux/kernel/people/kdave/${PN}/${PN}-${MY_PV}.tar.xz;
+   S="${WORKDIR}"/${PN}-${MY_PV}
+else
+   WANT_LIBTOOL=none
+   inherit autotools git-r3
+   EGIT_REPO_URI="git://repo.or.cz/btrfs-progs-unstable/devel.git"
+   EGIT_BRANCH="devel"
+fi
+
+DESCRIPTION="Btrfs filesystem utilities"
+HOMEPAGE="https://btrfs.wiki.kernel.org;
+
+LICENSE="GPL-2"
+SLOT="0/${libbtrfs_soname}"
+IUSE="+convert static static-libs"
+
+RESTRICT=test # tries to mount repared filesystems
+
+RDEPEND="
+   dev-libs/lzo:2=
+   sys-apps/util-linux:0=[static-libs(+)?]
+   sys-libs/zlib:0=
+   convert? (
+   sys-fs/e2fsprogs:0=
+   sys-libs/e2fsprogs-libs:0=
+   )
+"
+DEPEND="${RDEPEND}
+   convert? ( sys-apps/acl )
+   app-text/asciidoc
+   app-text/docbook-xml-dtd:4.5
+   app-text/xmlto
+   static? (
+   dev-libs/lzo:2[static-libs(+)]
+   sys-apps/util-linux:0[static-libs(+)]
+   sys-libs/zlib:0[static-libs(+)]
+   convert? (
+   sys-fs/e2fsprogs:0[static-libs(+)]
+   sys-libs/e2fsprogs-libs:0[static-libs(+)]
+   )
+   )
+"
+
+if [[ ${PV} ==  ]]; then
+   DEPEND+=" sys-devel/gnuconfig"
+fi
+
+src_prepare() {
+   default
+   if [[ ${PV} ==  ]]; then
+   eautoreconf
+   mkdir config || die
+   local automakedir="$(autotools_run_tool --at-output automake 
--print-libdir)"
+   [[ -e ${automakedir} ]] || die "Could not locate automake 
directory"
+   ln -s "${automakedir}"/install-sh config/install-sh || die
+   ln -s "${EPREFIX}"/usr/share/gnuconfig/config.guess 
config/config.guess || die
+   ln -s "${EPREFIX}"/usr/share/gnuconfig/config.sub 
config/config.sub || die
+   fi
+}
+
+src_configure() {
+   local myeconfargs=(
+   --bindir="${EPREFIX}"/sbin
+   $(use_enable convert)
+   $(use_enable 

[gentoo-commits] repo/gentoo:master commit in: sys-process/memwatch/

2016-05-02 Thread Patrice Clement
commit: 29515227f22e28799c46e87d00c3d8466b102788
Author: Patrice Clement  gentoo  org>
AuthorDate: Mon May  2 13:23:43 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon May  2 13:24:26 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29515227

sys-process/memwatch: Version bump.

Gentoo-Bug: https://bugs.gentoo.org/581838

Package-Manager: portage-2.2.26

 sys-process/memwatch/Manifest  |  1 +
 sys-process/memwatch/memwatch-0.2.0.ebuild | 32 ++
 2 files changed, 33 insertions(+)

diff --git a/sys-process/memwatch/Manifest b/sys-process/memwatch/Manifest
index 05afdd1..060107f 100644
--- a/sys-process/memwatch/Manifest
+++ b/sys-process/memwatch/Manifest
@@ -1,2 +1,3 @@
 DIST memwatch-0.0.2.tar.gz 3342 SHA256 
7eab256e6e2ebd1e302b5f40567b849b8e0f33e08179c9e35d4cfa55b194cf59 SHA512 
79af7056023128a1a27150ba02d29fdd51dbfe79ae44acf36a149dded6940ba209967ef1729e77063e93cf4d85861d993eb44f38cdb5b42254ed4d8bc77e5235
 WHIRLPOOL 
8005051534441497a4494b12ee85a87c88c39396a47fe8794be241758f0a3963bd8623e4c083c8e3c8be6c966a05687741595a8ed23d698d273081aedbb9
 DIST memwatch-0.1.0.tar.gz 6733 SHA256 
72002e7d9c3a9053404710982bb782cfcdc20abe8b6c0fabdcb78d8a3a69ddb9 SHA512 
9adcc65640fcbc252b15a48502ddd705e6f3b2bcf5e3cbd3ad61e640d6921af29f9fb5f086cb71e6badecda3d2f64e76b308d65b70a0d9b70dafb4f608f1f0f0
 WHIRLPOOL 
8d8fe7aa9cfeec42f012b6d2a34622776dd2d1b1e1900a754acca7990c4c1205db0bdf12709e643f8ddfaed7d1e3efe14c2075ef43e1ca955ddb504b26caf8f5
+DIST memwatch-0.2.0.tar.gz 10278 SHA256 
391159b4ec01c7d66dc81480d838a3ef2a7baa2781c007cce87a3c8fdb743b07 SHA512 
f2b0f72258802877887d3c2367a04a42a9fcb1be72777a3744dc98fe78d4b1b7f5cf426b9355b1d3ccf5b2cd690c33885e557c8ceac4732d91c6fc3c61c2c1ca
 WHIRLPOOL 
fd0fa9a56131674cb4fe538eda10a58ef96c1a04bc4e116528bc62e7b4b15184d2335888696acf6ffc0b6b62f76a13b7bbf6b9b00748e6a30cc467c9c7b98f8b

diff --git a/sys-process/memwatch/memwatch-0.2.0.ebuild 
b/sys-process/memwatch/memwatch-0.2.0.ebuild
new file mode 100644
index 000..cde6dc6
--- /dev/null
+++ b/sys-process/memwatch/memwatch-0.2.0.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit cmake-utils
+
+DESCRIPTION="Interactive memory viewer"
+HOMEPAGE="https://bitbucket.org/PascalRD/memwatch/;
+SRC_URI="http://unixdev.ru/src/${P}.tar.gz;
+
+LICENSE="WTFPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="sys-libs/ncurses:0="
+
+RDEPEND="${DEPEND}"
+
+src_configure() {
+   cmake-utils_src_configure
+}
+
+src_compile() {
+   cmake-utils_src_compile
+}
+
+src_install() {
+   cmake-utils_src_install
+}



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

2016-05-02 Thread Lars Wendler
commit: 326c138ce47d02ffba9533c77bce59af2a1bf220
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon May  2 10:48:43 2016 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon May  2 13:25:58 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=326c138c

app-admin/keepassx: Removed old.

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

 app-admin/keepassx/Manifest  |  3 ---
 app-admin/keepassx/keepassx-0.4.3.ebuild | 43 
 app-admin/keepassx/keepassx-2.0.1.ebuild | 36 --
 app-admin/keepassx/keepassx-2.0.ebuild   | 36 --
 4 files changed, 118 deletions(-)

diff --git a/app-admin/keepassx/Manifest b/app-admin/keepassx/Manifest
index 9fb887e..364742b 100644
--- a/app-admin/keepassx/Manifest
+++ b/app-admin/keepassx/Manifest
@@ -1,5 +1,2 @@
-DIST keepassx-0.4.3.tar.gz 1368766 SHA256 
cd901a0611ce57e62cf6df7eeeb1b690b5232302bdad8626994eb54adcfa1e85 SHA512 
8ce1bc252694e11a8b0da94bb00a4e5ca2837fe099f2f992aa9a93bacc4d94f33970cec687bd73a7a7762e86220a0541fe85a6708a2d4ad1bb3aef5f19935ccc
 WHIRLPOOL 
e2f54832eeb8eb3c7b7874e2deb97843a9ef1a92f027ec540fd197cf850d313be5d8959595e122b24a286973747d3b71bd33537de601b31ba3d45a16a095747b
 DIST keepassx-0.4.4.tar.gz 1371560 SHA256 
3e27068ca85e68705347f0921c6b3c9248d7c5a84c79c0483daf22d141c0adc4 SHA512 
2fc93d77f5576a0cce6514b39ee9b319efaa72b475762438eed5601c5e3edb7693a5fbb9c1e741be1e5d3a08849bc54b0cff90fe3a86cf240129febc0cc703d8
 WHIRLPOOL 
41c987607c8b233292eac5c5d654974caa1ae2a0d277468081ad4a6e9fcd248314239162ba23dc414f0854a5f6ba09e1c1f9d3aa078756438650a0e9151e81d2
-DIST keepassx-2.0.1.tar.gz 1530861 SHA256 
b3779fd90353f12d8d72e89b1c901db35096358032626bbf062f433798c97e82 SHA512 
ad10ce3877c0c06a9b1050ea3fb33ce205e2a289a8f8afb28be906a93c26c7da9fdd2b5ae9f5db260525c939013e20fa1b0092bc3c5081cc8b22a44946d633b8
 WHIRLPOOL 
e413244baa9449de4a26ff8c54af168c01a5aec5082793076e1f60b3607182a302011141b7db52bdf571d295a10f81656d71857a634460fef91690fd14df0f70
 DIST keepassx-2.0.2.tar.gz 1532353 SHA256 
204bdcf49c72078cd6f02b4f29b062923cca9e7b2d3551f2bf352763daa236b8 SHA512 
3f661d3b5807c5acafc65310ecd8bd4d0bcd51a0c919e219bba616cb3f54434f8f81ba533ab5ccec00d454838355ff048f4ffbc308442fad4f973d1766b95072
 WHIRLPOOL 
0d793bb3ce4ba015ea9cabc1625c61bdf0cc7fabfe5be67fe09ea180a5fb3654ef850531bff7e09bdc47107d69bf06f5e94fa308dbb0b8d5f9468b3c02349810
-DIST keepassx-2.0.tar.gz 1524638 SHA256 
0eb40fac3a44d8283dfc1ee28cc6de5c660b22ab975472de82c2b04675c822e6 SHA512 
6c8b8ee6a22cab5da5f262b281ed914e9cce99607312124b068a3386d9da560a3584acea4ce1be6700e40087febcc269273ab67ea472b99e6d3f75048d164788
 WHIRLPOOL 
d325c491687b70e256f9312548451250dadfdda0c659b9b16a6fd8e0d39bdf5ced905e11646730619cf217e3afe3ad885428bf4cff3204dcf68bdd33510cb467

diff --git a/app-admin/keepassx/keepassx-0.4.3.ebuild 
b/app-admin/keepassx/keepassx-0.4.3.ebuild
deleted file mode 100644
index 333f485..000
--- a/app-admin/keepassx/keepassx-0.4.3.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=4
-inherit qt4-r2
-
-DESCRIPTION="Qt password manager compatible with its Win32 and Pocket PC 
versions"
-HOMEPAGE="http://www.keepassx.org/;
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux"
-IUSE="debug pch"
-
-DEPEND="dev-qt/qtcore:4
-   dev-qt/qtgui:4
-   dev-qt/qtxmlpatterns:4
-   || ( >=x11-libs/libXtst-1.1.0 http://www.keepassx.org/;
-SRC_URI="https://www.keepassx.org/releases/${PV}/${P}.tar.gz;
-
-LICENSE="|| ( GPL-2 GPL-3 ) BSD GPL-2 LGPL-2.1 LGPL-3+ CC0-1.0 public-domain 
|| ( LGPL-2.1 GPL-3 )"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
-IUSE="test"
-
-DEPEND="
-   dev-libs/libgcrypt:0=
-   dev-qt/qtcore:4
-   dev-qt/qtgui:4
-   dev-qt/qttest:4
-   sys-libs/zlib
-   x11-libs/libX11
-   x11-libs/libXtst
-"
-RDEPEND="${DEPEND}"
-
-DOCS=(CHANGELOG)
-
-src_configure() {
-   local mycmakeargs=(
-   -DWITH_TESTS="$(usex test)"
-   )
-   cmake-utils_src_configure
-}

diff --git a/app-admin/keepassx/keepassx-2.0.ebuild 
b/app-admin/keepassx/keepassx-2.0.ebuild
deleted file mode 100644
index dba0453..000
--- a/app-admin/keepassx/keepassx-2.0.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit cmake-utils vcs-snapshot
-
-DESCRIPTION="Qt password manager compatible with its Win32 and Pocket PC 
versions"
-HOMEPAGE="http://www.keepassx.org/;
-SRC_URI="https://github.com/${PN}/${PN}/archive/${PV/_/-}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="|| ( GPL-2 GPL-3 ) BSD GPL-2 LGPL-2.1 LGPL-3+ CC0-1.0 public-domain 
|| ( LGPL-2.1 GPL-3 )"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
-IUSE="test"
-

  1   2   >