[gentoo-commits] repo/gentoo:master commit in: dev-db/sqldeveloper/, dev-db/sqldeveloper/files/

2016-02-06 Thread James Le Cuirot
commit: e1eb6d22bab9c31d956c7f0b2142808c96cde914
Author: James Le Cuirot  gentoo  org>
AuthorDate: Sat Feb  6 13:59:35 2016 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Sat Feb  6 21:04:19 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e1eb6d22

dev-db/sqldeveloper: Use jtds:1.3, auto select 1.8 JVM, other fixes

Java team needs to remove Java 6 ASAP and jtds:1.2 is holding this
back. Upstream suggests 1.2 but 1.3 is reported to work. I wasn't able
to test against a real database but it did at least try to connect.

Asking users to manually switch their JVM before using this isn't very
polite and not usually necessary thanks to Gentoo's launcher
scripts. Those scripts cannot feasibly be used here but we can at
least write package.env and use gjl to select the JVM intelligently.

Other fixes:

 * Remove java-config from RDEPEND, it's implied by java-pkg-2 eclass.
 * Add some missing dies and remove some unnecessary dies.
 * Use newicon instead of mv + doicon.
 * Use exec in launcher to prevent lingering process.

Package-Manager: portage-2.2.27

 dev-db/sqldeveloper/files/sqldeveloper-r1  | 10 +++
 .../sqldeveloper-4.1.3.20.78-r1.ebuild | 98 ++
 2 files changed, 108 insertions(+)

diff --git a/dev-db/sqldeveloper/files/sqldeveloper-r1 
b/dev-db/sqldeveloper/files/sqldeveloper-r1
new file mode 100644
index 000..7173cbb
--- /dev/null
+++ b/dev-db/sqldeveloper/files/sqldeveloper-r1
@@ -0,0 +1,10 @@
+#!/bin/bash
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+# skip their stupid [ -f `which java` ] test, which will always fail on Gentoo
+export APP_SKIP_J2SE_TEST=1
+export GENTOO_VM=$( eval $(gjl --get-vm -p sqldeveloper) && echo ${gjl_vm} )
+export JAVA_HOME=$(java-config -o)
+
+cd /opt/sqldeveloper/sqldeveloper/bin && exec bash sqldeveloper $@

diff --git a/dev-db/sqldeveloper/sqldeveloper-4.1.3.20.78-r1.ebuild 
b/dev-db/sqldeveloper/sqldeveloper-4.1.3.20.78-r1.ebuild
new file mode 100644
index 000..3cf5aa2
--- /dev/null
+++ b/dev-db/sqldeveloper/sqldeveloper-4.1.3.20.78-r1.ebuild
@@ -0,0 +1,98 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit eutils java-pkg-2
+
+DESCRIPTION="Oracle SQL Developer is a graphical tool for database development"
+HOMEPAGE="http://www.oracle.com/technetwork/developer-tools/sql-developer/overview/index.html;
+SRC_URI="${P}-no-jre.zip"
+
+RESTRICT="fetch"
+
+LICENSE="OTN"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+IUSE="mssql mysql sybase"
+
+DEPEND="mssql? ( dev-java/jtds:1.3 )
+   mysql? ( dev-java/jdbc-mysql:0 )
+   sybase? ( dev-java/jtds:1.3 )"
+RDEPEND=">=virtual/jdk-1.8
+   ${DEPEND}"
+
+S="${WORKDIR}/${PN}"
+
+QA_PREBUILT="
+opt/${PN}/netbeans/platform/modules/lib/amd64/linux/*.so
+opt/${PN}/netbeans/platform/modules/lib/i386/linux/*.so
+"
+
+pkg_nofetch() {
+   eerror "Please go to"
+   eerror "${HOMEPAGE}"
+   eerror "and download"
+   eerror "Oracle SQL Developer for other platforms"
+   eerror "${SRC_URI}"
+   eerror "and move it to ${DISTDIR}"
+}
+
+src_prepare() {
+   # we don't need these, do we?
+   find ./ \( -iname "*.exe" -or -iname "*.dll" -or -iname "*.bat" \) 
-exec rm {} +
+
+   # they both use jtds, enabling one of them also enables the other one
+   if use mssql && ! use sybase; then
+   einfo "You requested MSSQL support, this also enables Sybase 
support."
+   fi
+   if use sybase && ! use mssql; then
+   einfo "You requested Sybase support, this also enables MSSQL 
support."
+   fi
+
+   if use mssql || use sybase; then
+   echo "AddJavaLibFile $(java-pkg_getjars jtds-1.3)" >> 
sqldeveloper/bin/sqldeveloper.conf || die
+   fi
+
+   if use mysql; then
+   echo "AddJavaLibFile $(java-pkg_getjars jdbc-mysql)" >> 
sqldeveloper/bin/sqldeveloper.conf || die
+   fi
+}
+
+src_install() {
+   dodir /opt/${PN}
+   # NOTE For future version to get that line (what to copy) go to the 
unpacked sources dir
+   # using `bash` and press Meta+_ (i.e. Meta+Shift+-) -- that is a 
builtin bash feature ;-)
+   cp -r 
{configuration,d{ataminer,ropins,vt},e{quinox,xternal},ide,j{avavm,d{bc,ev},lib,views},modules,netbeans,ords,rdbms,s{leepycat,ql{developer,j},vnkit}}
 \
+   "${D}"/opt/${PN}/ || die "Install failed"
+
+   newbin "${FILESDIR}"/${PN}-r1 ${PN}
+
+   newicon icon.png ${PN}-32x32.png
+   make_desktop_entry ${PN} "Oracle SQL Developer" ${PN}-32x32
+
+   # This is normally called automatically by java-pkg_dojar, which
+   # hasn't been used above. We need to create package.env to help the
+   # launcher select the correct VM.
+   java-pkg_do_write_
+}
+
+pkg_postinst() {
+   # this temporary fixes 

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

2016-02-06 Thread Matt Thode
commit: cf7be0c9212a335e846b42bf331802627d2b1df6
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Feb  6 23:31:12 2016 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sat Feb  6 23:31:12 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf7be0c9

net-analyzer/pnp4nagios: fixing typo

Package-Manager: portage-2.2.26

 net-analyzer/pnp4nagios/pnp4nagios-0.6.25-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-analyzer/pnp4nagios/pnp4nagios-0.6.25-r2.ebuild 
b/net-analyzer/pnp4nagios/pnp4nagios-0.6.25-r2.ebuild
index 4e25195..d8e657b 100644
--- a/net-analyzer/pnp4nagios/pnp4nagios-0.6.25-r2.ebuild
+++ b/net-analyzer/pnp4nagios/pnp4nagios-0.6.25-r2.ebuild
@@ -52,7 +52,7 @@ src_configure() {
var_dir=/var/nagios/
user_group=nagios
elif has_version net-analyzer/icinga2; then
-   var_dir=/var/lib/icing2/
+   var_dir=/var/lib/icinga2/
user_group=icinga
else
var_dir=/var/lib/icinga/



[gentoo-commits] proj/eselect-python:master commit in: /

2016-02-06 Thread Michał Górny
commit: 6b28659d519a7e2ea91109702f0d85e5dfac0364
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Feb  6 21:00:28 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Feb  6 21:00:28 2016 +
URL:
https://gitweb.gentoo.org/proj/eselect-python.git/commit/?id=6b28659d

edit: Run post_update after editing the file

 python.eselect.in | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/python.eselect.in b/python.eselect.in
index 0945c63..cc2f672 100644
--- a/python.eselect.in
+++ b/python.eselect.in
@@ -182,6 +182,8 @@ do_edit() {
[[ ${EDITOR} ]] || die "EDITOR is not set"
 
${EDITOR} "${CONFIG_PATH}"
+
+   post_update
 }
 
 ### show action ###



[gentoo-commits] proj/eselect-python:master commit in: /

2016-02-06 Thread Michał Górny
commit: b70420d4010d3f7bae763faaea3fc4020fd6b12d
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Feb  6 21:30:08 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Feb  6 21:30:08 2016 +
URL:
https://gitweb.gentoo.org/proj/eselect-python.git/commit/?id=b70420d4

Support PyPy & Jython

 python.eselect.in | 9 -
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/python.eselect.in b/python.eselect.in
index 37a824c..e542f5e 100644
--- a/python.eselect.in
+++ b/python.eselect.in
@@ -14,7 +14,14 @@ MAN_PATH="${EROOT%/}/usr/share/man/man1"
 # Get list of all installed Python interpreters, in lexical order.
 # $1 can be --pyN to filter results to pythonN.?.
 get_installed_pythons() {
-   local exes=( "${INTERPRETER_DIR}"/python?.?@EXEEXT@ )
+   local exes=(
+   # note: order *matters*
+   # TODO: get them outta python-exec
+   "${INTERPRETER_DIR}"/jython?.?@EXEEXT@
+   "${INTERPRETER_DIR}"/pypy{,3}@EXEEXT@
+   "${INTERPRETER_DIR}"/python?.?@EXEEXT@
+   )
+
local i
for (( i = ${#exes[@]}-1; i >= 0; --i )); do
local exe=${exes[i]}



[gentoo-commits] proj/eselect-python:master commit in: /

2016-02-06 Thread Michał Górny
commit: 59862908e0557b7ed34a9cbf0b83de0690c4276d
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Feb  6 21:06:45 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Feb  6 21:06:45 2016 +
URL:
https://gitweb.gentoo.org/proj/eselect-python.git/commit/?id=59862908

Add --cpython filter to filter out non-CPython preferences

 python.eselect.in | 36 ++--
 1 file changed, 26 insertions(+), 10 deletions(-)

diff --git a/python.eselect.in b/python.eselect.in
index cc2f672..5f22614 100644
--- a/python.eselect.in
+++ b/python.eselect.in
@@ -22,7 +22,7 @@ get_installed_pythons() {
exe=${exe##*/}
exe=${exe%@EXEEXT@}
# apply filters
-   [[ ${1} == --py? && ${exe} != python${1:4}* ]] && continue
+   [[ ${1} == --py* && ${exe} != python${1:4}* ]] && continue
 
echo "${exe}"
done
@@ -53,7 +53,7 @@ get_preferred_pythons() {
# skip negative entries
[[ ${i} == -* ]] && continue
# apply filters
-   [[ ${1} == --py? && ${i} != python${1:4}* ]] && continue
+   [[ ${1} == --py* && ${i} != python${1:4}* ]] && continue
 
echo "${i}"
done
@@ -194,9 +194,10 @@ describe_show() {
 
 describe_show_options() {
echo "--ABI : use PYTHON_ABI variable format (deprecated)"
+   echo "--cpython : show the preferred version of CPython"
echo "--pref-only   : consider only explicitly preferred impls"
-   echo "--python2 : show the preferred version of Python 2"
-   echo "--python3 : show the preferred version of Python 3"
+   echo "--python2 : show the preferred version of CPython 2"
+   echo "--python3 : show the preferred version of CPython 3"
 }
 
 do_show() {
@@ -206,6 +207,9 @@ do_show() {
--ABI)
abi=1
;;
+   --cpython|--py)
+   filter=--py
+   ;;
--pref-only)
pref_only=1
;;
@@ -251,14 +255,18 @@ describe_list() {
 }
 
 describe_list_options() {
-   echo "--python2 : list only Python 2 interpreters"
-   echo "--python3 : list only Python 3 interpreters"
+   echo "--cpython : list only CPython interpreters"
+   echo "--python2 : list only CPython 2 interpreters"
+   echo "--python3 : list only CPython 3 interpreters"
 }
 
 do_list() {
local filter
while [[ ${#} -gt 0 ]]; do
case ${1} in
+   --cpython|--py)
+   filter=--py
+   ;;
--python2|--py2)
filter=--py2
;;
@@ -295,8 +303,9 @@ describe_set() {
 }
 
 describe_set_options() {
-   echo "--python2 : update preference for Python 2 versions only"
-   echo "--python3 : update preference for Python 3 versions only"
+   echo "--cpython : update preference for CPython versions only"
+   echo "--python2 : update preference for CPython 2 versions only"
+   echo "--python3 : update preference for CPython 3 versions only"
 }
 
 describe_set_parameters() {
@@ -307,6 +316,9 @@ do_set() {
local filter
while [[ ${#} -gt 0 ]]; do
case ${1} in
+   --cpython|--py)
+   filter=--py
+   ;;
--python2|--py2)
filter=--py2
;;
@@ -369,8 +381,9 @@ describe_update() {
 describe_update_options() {
echo "--if-unset: do not alter preferences unless there is no valid 
preference set"
echo "--ignore SLOT : ignore specified Python slots"
-   echo "--python2 : update only Python 2 preferences (ignored)"
-   echo "--python3 : update only Python 3 preferences"
+   echo "--cpython : update only CPython preferences"
+   echo "--python2 : update only CPython 2 preferences (ignored)"
+   echo "--python3 : update only CPython 3 preferences"
 }
 
 do_update() {
@@ -384,6 +397,9 @@ do_update() {
ignored_slots+=( "${2}" )
shift
;;
+   --cpython|--py)
+   filter=--py
+   ;;
--python2|--py2)
filter=--py2
echo "Ignoring Python 2 preference update as 
non-meaningful"



[gentoo-commits] proj/eselect-python:master commit in: /

2016-02-06 Thread Michał Górny
commit: f3ef3c17ac1fb2bb53050a28a0e409c30282c5d2
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Feb  6 21:07:09 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Feb  6 21:07:09 2016 +
URL:
https://gitweb.gentoo.org/proj/eselect-python.git/commit/?id=f3ef3c17

post_update: Use only CPython for manpages, frameworks and python-docs

 python.eselect.in | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/python.eselect.in b/python.eselect.in
index 5f22614..37a824c 100644
--- a/python.eselect.in
+++ b/python.eselect.in
@@ -163,13 +163,13 @@ set_python_docs() {
 
 # Perform all necessary updates following preference list change.
 post_update() {
-   local main_interp=$(do_show)
+   local main_cpython=$(do_show --cpython)
 
# TODO: update only when necessary
 
-   set_man_symlink "${main_interp}"
-   set_osx_framework "${main_interp}"
-   set_python_docs "${main_interp}"
+   set_man_symlink "${main_cpython}"
+   set_osx_framework "${main_cpython}"
+   set_python_docs "${main_cpython}"
 }
 
 ### edit action ###



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

2016-02-06 Thread Robin H. Johnson
commit: 82308a7977d661c3254cc1c65bc13228f0d252b5
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Sat Feb  6 22:27:32 2016 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Sat Feb  6 22:27:47 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82308a79

sys-kernel/genkernel: early testing, 3.5.0.0 represents major kernel config 
changes vs the prior release, further early 3.5.x releases will land major 
updates; 3.5.0.0 should NOT be a stable candidate.

Package-Manager: portage-2.2.27

 sys-kernel/genkernel/Manifest| 1 +
 .../genkernel/{genkernel-.ebuild => genkernel-3.5.0.0.ebuild}| 5 +++--
 sys-kernel/genkernel/genkernel-.ebuild   | 2 +-
 3 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/sys-kernel/genkernel/Manifest b/sys-kernel/genkernel/Manifest
index aa83300..2452938 100644
--- a/sys-kernel/genkernel/Manifest
+++ b/sys-kernel/genkernel/Manifest
@@ -10,6 +10,7 @@ DIST genkernel-3.4.51.4.tar.xz 250400 SHA256 
72062b11628eb967690691a7003625fffcd
 DIST genkernel-3.4.52.2.tar.xz 278792 SHA256 
3bb893bcf6b3bcf11ded61127a4321df8d4405d196ae256873b9c6680310cb6e SHA512 
af8c93b77bdc7601e102311e1a2e168400a83ebf0d664d67fa99e0f4891835c62627cbce5be0e2d14b7e16389441643e90386fe258b4164c1ea414edba7a8557
 WHIRLPOOL 
d2d527a64db46386af6f3b09d37aca0aef6aaecda7249c9247c7c81e6f31d4cec1160473feb5a55750331e80232c140b70ad9cf77f6026fb4173f539cdc170b4
 DIST genkernel-3.4.52.3.tar.xz 282976 SHA256 
7873c7ff94f3a36f2c71f4915e82b92afd16f1ecd29af290c5d3e8d300857bf5 SHA512 
a68b0149b9a69f59ab3e8d772f35f12643b9500c0c684d4824ca1f3c669b0ea01989a55643cd5b413f35d6fff284cd5ede7183971e202b3788caeb399259191f
 WHIRLPOOL 
6212b7df42755784ade2741150e7093c3dea440cc89897991985fb867d46a05b56931d1a7b083f141fd71ffe96237b1cd26d53ce4e35a155f28508a8e131c03f
 DIST genkernel-3.4.52.4.tar.xz 284064 SHA256 
3a2fd217c4817f4b8a4a1bef7051c373f10fddd6983125b61050a134c4a78c2a SHA512 
2dcdf2acb19c868ea7bfd5a0f9c7c3b179ac0f9f31b74306641dd8a1e8b076f5122e60a96c006e20f634e9e540d51723ef94bf91d8e28217dbb2159ff4d896dc
 WHIRLPOOL 
92ec9850ec67e3b227dc8689a494fb31554872ad772fdfdb152fe2033fcaff9c34669b3a76806171bb3971e34e2ea63d118ab268220d18669b298574e976edda
+DIST genkernel-3.5.0.0.tar.xz 283880 SHA256 
11d20c45d9dd0b75de1526805d11c578d8d4003e9e0761e4caa42f36021b568f SHA512 
8c54981da2b98ae20f96a27e7a7583ea53e75b24d8e787a469e8ff4252c1f66feb7726657e48f5afc26f08d091aec81271670d02e048121e4c96018c91be38a7
 WHIRLPOOL 
4a7c36cee89d98bea05bd5fc626a744b7b519bc4a4dde6f6edb001ee9ba2a7fc33e7addf066a30d755d1088a1c6b6cdbe89fee4ae71f56bb960a3b0b2710256b
 DIST gnupg-1.4.11.tar.bz2 3407075 SHA256 
d18ceeac16e554a501170b9bfde611625252d0fe9448685a69c93bf149ee6ef6 SHA512 
97e7b8b0f972cc2f7cabdb0e013cbee1c33e7d48407d040cca5c2037e32abe1c2100194be7d3b569d4f05eb16b24c205a5b83f06718f0241f8d4ee174f1c37ae
 WHIRLPOOL 
6f914627e2f527f6616e1f99d2ae06942b734f839d03a45ffa45bf67516a81d58f89e6a85612cf8e5fd83be04ab0b6bc2da8f81114143dad7523e5fcea62366b
 DIST mdadm-3.1.5.tar.bz2 292709 SHA256 
1d547d0b36a88968e9fc9fb08b0e64de54a53f3d1cfa3656a9f319180f0727d3 SHA512 
6fcf426d63ede01f99ebeee9be686857a04f9b601b37f76722c091ae2999b3ff66fdba52d47323f27900553125a897fc1815fe7be850aa9cc991dd5fa91a5d5d
 WHIRLPOOL 
003595a1338b3a95ccc176b07a31f26dd5fda9460f2c4d3513b9ca09cdab1c91dab05f8914f2354047fccff42c4dcfc6131a383c84467c2838ac7b1af2f9bef8
 DIST open-iscsi-2.0-872.tar.gz 900081 SHA256 
37753697a170223ac02a292b3a23a315a3c747b490c42480e4057b676c9f8d4f SHA512 
d26c87772b0b1d13a8bd2eea9db86b3c61af83efbb788116c01ab6a914ff3de634a7b1bff56c1161b28965315543edbfc2735b6c7fbd3f7797471fde63b69cc0
 WHIRLPOOL 
4b04c8481c6c5f094ca6f7761828006a84eda7a22a6b3a4d65e7b3e4b39e73ef839ec710b491e7ca731b047fa8c74a9c03a17e85519a62dfbeb95222cfbdd935

diff --git a/sys-kernel/genkernel/genkernel-.ebuild 
b/sys-kernel/genkernel/genkernel-3.5.0.0.ebuild
similarity index 97%
copy from sys-kernel/genkernel/genkernel-.ebuild
copy to sys-kernel/genkernel/genkernel-3.5.0.0.ebuild
index 0d94e27..2d84b8f 100644
--- a/sys-kernel/genkernel/genkernel-.ebuild
+++ b/sys-kernel/genkernel/genkernel-3.5.0.0.ebuild
@@ -41,9 +41,10 @@ then
KEYWORDS=""
 else
inherit bash-completion-r1 eutils
-   SRC_URI="mirror://gentoo/${P}.tar.bz2
+   SRC_URI="mirror://gentoo/${P}.tar.xz
${COMMON_URI}"
-   KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86"
+   #KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86"
+   KEYWORDS=""
 fi
 
 DESCRIPTION="Gentoo automatic kernel building scripts"

diff --git a/sys-kernel/genkernel/genkernel-.ebuild 
b/sys-kernel/genkernel/genkernel-.ebuild
index 0d94e27..86ff466 100644
--- a/sys-kernel/genkernel/genkernel-.ebuild
+++ b/sys-kernel/genkernel/genkernel-.ebuild
@@ -43,7 +43,7 @@ else
inherit bash-completion-r1 eutils

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

2016-02-06 Thread Christoph Junghans
commit: 7154b7ed05e18fed2557c2811a9f9111d506fb26
Author: Christoph Junghans  gentoo  org>
AuthorDate: Sat Feb  6 22:44:59 2016 +
Commit: Christoph Junghans  gentoo  org>
CommitDate: Sat Feb  6 22:46:37 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7154b7ed

net-misc/grive: version bump (bug #573910)

Package-Manager: portage-2.2.26

 net-misc/grive/Manifest   |  1 +
 net-misc/grive/grive-0.5.1_pre20160114.ebuild | 36 +++
 2 files changed, 37 insertions(+)

diff --git a/net-misc/grive/Manifest b/net-misc/grive/Manifest
index d20b0d5..9b1f791 100644
--- a/net-misc/grive/Manifest
+++ b/net-misc/grive/Manifest
@@ -1,2 +1,3 @@
 DIST grive-0.4.0_pre20150905.tar.gz 158858 SHA256 
c488e9956a48fa5416e1f6082ede649ae9d541b57a5170a4f6ff555e9e92e2aa SHA512 
2a6842c742d79345ff805f92e74990de624d656c1f16fd98b2611e2359b051d6dfebef07590390eee3ea07e60143ca9e66ceecd675a3a75d6a099dcb0070ab46
 WHIRLPOOL 
22d25ea2913568d5132247f3472ca09ee5d291028b8303bd2f6784f1930e3308219f72e7a15b95a5e5a19637fb73e3d60181925afaa21e15f4fdaacc6d7769d4
 DIST grive-0.4.0_pre20151011.tar.gz 160502 SHA256 
0e480a0f5aa1ba008d8e7e3f8cb0198728f6c67bf1e588a66a6d68bb39cff573 SHA512 
c5b59a8740ee0886d95f64278c1dd8e0c80df8c53b982f0720fd3a9caa82503ce0ef75987afeafa8735b4e88ef6fea6b5266671516165b288156b1ab543dc3f7
 WHIRLPOOL 
8c888a218732c9be77d5ae407074f59e0c61d4facb70a8caee97f25e1f46fc5c618aeb09510e23ad18e7604cc17f645df9a9245fac96e1f3dff7279b8f0d2626
+DIST grive-0.5.1_pre20160114.tar.gz 162888 SHA256 
20c15d84894a2943c50e6a9c1c95d1d29b5ca7240427dcd32e96113e5246a420 SHA512 
8d10a9c1f36149def23326f3edd4350b156c59d6c2caa3d9ea262d9f61e174f0af2264a0c8d57592625c0e7cd5f9e7e171d01ff0c6a879a5605e44bb4c9a62d7
 WHIRLPOOL 
782fd3160f8970b837b989129993cfdb4e12327df46806c66aa8a5417ef9295373fe7e6acebfe7c30a00c936be67d127d8b886cb7cd3b4bfd79c8b71437bc91c

diff --git a/net-misc/grive/grive-0.5.1_pre20160114.ebuild 
b/net-misc/grive/grive-0.5.1_pre20160114.ebuild
new file mode 100644
index 000..44a011e
--- /dev/null
+++ b/net-misc/grive/grive-0.5.1_pre20160114.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit cmake-utils
+
+if [[ ${PV} = * ]]; then
+   inherit git-2
+   EGIT_REPO_URI="git://github.com/vitalif/${PN}2.git"
+else
+   inherit vcs-snapshot
+   COMMIT="cfb8ff08b300d1fa57e12cdc85f724e3e25c906d"
+   SRC_URI="https://github.com/vitalif/${PN}2/archive/${COMMIT}.tar.gz -> 
${P}.tar.gz"
+fi
+
+DESCRIPTION="An open source Linux client for Google Drive"
+HOMEPAGE="https://github.com/vitalif/grive2;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="
+   dev-libs/boost:=
+   dev-libs/expat
+   >=dev-libs/json-c-0.11-r1:=
+   dev-libs/libgcrypt:0=
+   net-misc/curl
+   sys-libs/binutils-libs:0=
+   sys-libs/glibc
+   dev-libs/yajl
+"
+DEPEND="${RDEPEND}"



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

2016-02-06 Thread Michał Górny
commit: 1ef1c999e139a2cdf6de4cd905234b191a101b9a
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Feb  6 22:03:47 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Feb  6 22:45:07 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ef1c999

dev-python/pypy3-bin: Fix ncurses-6 compat, #564454

 dev-python/pypy3-bin/files/2.4.0-ncurses6.patch |  34 +
 dev-python/pypy3-bin/pypy3-bin-2.4.0-r2.ebuild  | 177 
 2 files changed, 211 insertions(+)

diff --git a/dev-python/pypy3-bin/files/2.4.0-ncurses6.patch 
b/dev-python/pypy3-bin/files/2.4.0-ncurses6.patch
new file mode 100644
index 000..63a450f
--- /dev/null
+++ b/dev-python/pypy3-bin/files/2.4.0-ncurses6.patch
@@ -0,0 +1,34 @@
+Patch by Vadim A. Misbakh-Soloviov (mva)
+https://bugs.gentoo.org/show_bug.cgi?id=564454
+
+--- lib_pypy/_curses.py.old 2016-01-18 19:13:00.241886442 +
 lib_pypy/_curses.py 2016-01-18 19:26:01.061885605 +
+@@ -1,6 +1,7 @@
+ """Reimplementation of the standard extension module '_curses' using cffi."""
+
+ import sys
++import platform
+ if sys.platform == 'win32':
+ #This module does not exist in windows
+ raise ImportError('No module named _curses')
+@@ -10,12 +11,18 @@
+
+ ffi = FFI()
+
++# Monkeypatch to make it build against ncurses-6.
++# Inspired by https://goo.gl/xvjQcd
++_type = "uint32_t"
++if platform.machine() == "x86_64":
++_type = "unsigned"
++
+ ffi.cdef("""
+ typedef ... WINDOW;
+ typedef ... SCREEN;
+-typedef unsigned long mmask_t;
++typedef """+_type+""" mmask_t;
+ typedef unsigned char bool;
+-typedef unsigned long chtype;
++typedef """+_type+""" chtype;
+ typedef chtype attr_t;
+
+ typedef struct

diff --git a/dev-python/pypy3-bin/pypy3-bin-2.4.0-r2.ebuild 
b/dev-python/pypy3-bin/pypy3-bin-2.4.0-r2.ebuild
new file mode 100644
index 000..aa19868
--- /dev/null
+++ b/dev-python/pypy3-bin/pypy3-bin-2.4.0-r2.ebuild
@@ -0,0 +1,177 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+# some random parts need python 2...
+PYTHON_COMPAT=( python2_7 pypy )
+inherit eutils multilib pax-utils python-any-r1 versionator
+
+BINHOST="https://dev.gentoo.org/~mgorny/dist/pypy-bin/${PV};
+
+DESCRIPTION="A fast, compliant alternative implementation of Python 3 (binary 
package)"
+HOMEPAGE="http://pypy.org/;
+SRC_URI="https://bitbucket.org/pypy/pypy/downloads/pypy3-${PV}-src.tar.bz2
+   amd64? (
+   jit? ( shadowstack? (
+   
${BINHOST}/${P}-amd64+bzip2+jit+ncurses+shadowstack.tar.xz
+   ) )
+   jit? ( !shadowstack? (
+   ${BINHOST}/${P}-amd64+bzip2+jit+ncurses.tar.xz
+   ) )
+   !jit? ( !shadowstack? (
+   ${BINHOST}/${P}-amd64+bzip2+ncurses.tar.xz
+   ) )
+   )
+   x86? (
+   cpu_flags_x86_sse2? (
+   jit? ( shadowstack? (
+   
${BINHOST}/${P}-x86+bzip2+jit+ncurses+shadowstack+sse2.tar.xz
+   ) )
+   jit? ( !shadowstack? (
+   
${BINHOST}/${P}-x86+bzip2+jit+ncurses+sse2.tar.xz
+   ) )
+   !jit? ( !shadowstack? (
+   ${BINHOST}/${P}-x86+bzip2+ncurses+sse2.tar.xz
+   ) )
+   )
+   !cpu_flags_x86_sse2? (
+   !jit? ( !shadowstack? (
+   ${BINHOST}/${P}-x86+bzip2+ncurses.tar.xz
+   ) )
+   )
+   )"
+
+# Supported variants
+REQUIRED_USE="!jit? ( !shadowstack )
+   x86? ( !cpu_flags_x86_sse2? ( !jit !shadowstack ) )"
+
+LICENSE="MIT"
+SLOT="0/$(get_version_component_range 1-2 ${PV})"
+KEYWORDS="~amd64 ~x86"
+IUSE="gdbm +jit +shadowstack sqlite cpu_flags_x86_sse2 test tk"
+
+# yep, world would be easier if people started filling subslots...
+RDEPEND="
+   app-arch/bzip2:0
+   dev-libs/expat:0
+   dev-libs/libffi:0
+   dev-libs/openssl:0
+   sys-libs/glibc:2.2
+   sys-libs/ncurses:0/6
+   sys-libs/zlib:0
+   gdbm? ( sys-libs/gdbm:0= )
+   sqlite? ( dev-db/sqlite:3= )
+   tk? (
+   dev-lang/tk:0=
+   dev-tcltk/tix:0=
+   )
+   !dev-python/pypy3:0"
+DEPEND="app-arch/xz-utils
+   test? ( ${RDEPEND}
+   ${PYTHON_DEPS} )"
+#  doc? ( ${PYTHON_DEPS}
+#  dev-python/sphinx )
+PDEPEND="app-admin/python-updater"
+
+S=${WORKDIR}/pypy3-${PV}-src
+
+src_prepare() {
+   epatch "${FILESDIR}/1.9-scripts-location.patch" \
+   
"${FILESDIR}/1.9-distutils.unixccompiler.UnixCCompiler.runtime_library_dir_option.patch"
 \
+   "${FILESDIR}/2.4.0-ncurses6.patch"
+
+   epatch_user
+}
+
+src_compile() {
+   # Tadaam! PyPy compiled!
+   mv "${WORKDIR}"/${P}*/{libpypy-c.so,pypy-c} 

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

2016-02-06 Thread Michał Górny
commit: 44b2bf1075d2cd868887f1e1aa6ac13bc070ab77
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Feb  6 22:38:39 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Feb  6 22:45:07 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44b2bf10

dev-python/pypy3-bin: Copy Gentoo path fixes from dev-python/pypy

 dev-python/pypy3-bin/files/4.0.0-gentoo-path.patch | 50 ++
 dev-python/pypy3-bin/pypy3-bin-2.4.0-r2.ebuild |  2 +-
 2 files changed, 51 insertions(+), 1 deletion(-)

diff --git a/dev-python/pypy3-bin/files/4.0.0-gentoo-path.patch 
b/dev-python/pypy3-bin/files/4.0.0-gentoo-path.patch
new file mode 100644
index 000..cf96d3f
--- /dev/null
+++ b/dev-python/pypy3-bin/files/4.0.0-gentoo-path.patch
@@ -0,0 +1,50 @@
+From 165e05bbdc93e54411217c0198d0a5cbb9de4e33 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= 
+Date: Fri, 27 Nov 2015 17:02:42 +0100
+Subject: [PATCH] Gentoo: override paths for system-wide install based on
+ sys.prefix
+
+Override all default distutils install paths to ones suitable for
+system-wide install when sys.prefix indicates we're running the Gentoo
+system-wide install of PyPy with no prefix overrides (e.g. virtualenv).
+
+Fixes: https://bugs.gentoo.org/462306
+Fixes: https://bugs.gentoo.org/465546
+---
+ lib-python/3/distutils/command/install.py | 13 -
+ 1 file changed, 12 insertions(+), 1 deletion(-)
+
+diff --git a/lib-python/3/distutils/command/install.py 
b/lib-python/3/distutils/command/install.py
+index fc43951..fed5218 100644
+--- a/lib-python/3/distutils/command/install.py
 b/lib-python/3/distutils/command/install.py
+@@ -90,6 +90,13 @@ INSTALL_SCHEMES = {
+ 'scripts': '$base/bin',
+ 'data'   : '$base',
+ },
++'gentoo': {
++'purelib': '$base/site-packages',
++'platlib': '$base/site-packages',
++'headers': '$base/include',
++'scripts': '@EPREFIX@/usr/bin',
++'data'   : '@EPREFIX@/usr',
++},
+ }
+ 
+ # The keys to an installation scheme; if any new types of files are to be
+@@ -476,7 +483,11 @@ class install (Command):
+ # it's the caller's problem if they supply a bad name!
+ if (hasattr(sys, 'pypy_version_info') and
+ not name.endswith(('_user', '_home'))):
+-name = 'pypy'
++if self.install_base == 
os.path.normpath('@EPREFIX@/usr/@libdir@/pypy3'):
++# override paths for system-wide install
++name = 'gentoo'
++else:
++name = 'pypy'
+ scheme = INSTALL_SCHEMES[name]
+ for key in SCHEME_KEYS:
+ attrname = 'install_' + key
+-- 
+2.6.3
+

diff --git a/dev-python/pypy3-bin/pypy3-bin-2.4.0-r2.ebuild 
b/dev-python/pypy3-bin/pypy3-bin-2.4.0-r2.ebuild
index aa19868..fd93b92 100644
--- a/dev-python/pypy3-bin/pypy3-bin-2.4.0-r2.ebuild
+++ b/dev-python/pypy3-bin/pypy3-bin-2.4.0-r2.ebuild
@@ -78,7 +78,7 @@ PDEPEND="app-admin/python-updater"
 S=${WORKDIR}/pypy3-${PV}-src
 
 src_prepare() {
-   epatch "${FILESDIR}/1.9-scripts-location.patch" \
+   epatch "${FILESDIR}/4.0.0-gentoo-path.patch" \

"${FILESDIR}/1.9-distutils.unixccompiler.UnixCCompiler.runtime_library_dir_option.patch"
 \
"${FILESDIR}/2.4.0-ncurses6.patch"
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/pypy3-bin/files/

2016-02-06 Thread Michał Górny
commit: 36d068cc5e8122ce79b5132181e3a6738bfeee24
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Feb  6 22:03:28 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Feb  6 22:45:07 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36d068cc

dev-python/pypy3-bin: Remove unused patch

 dev-python/pypy3-bin/files/2.3.1-shared-lib.patch | 11 ---
 1 file changed, 11 deletions(-)

diff --git a/dev-python/pypy3-bin/files/2.3.1-shared-lib.patch 
b/dev-python/pypy3-bin/files/2.3.1-shared-lib.patch
deleted file mode 100644
index ae1139f..000
--- a/dev-python/pypy3-bin/files/2.3.1-shared-lib.patch
+++ /dev/null
@@ -1,11 +0,0 @@
 rpython/translator/platform/posix.py
-+++ rpython/translator/platform/posix.py
-@@ -180,7 +180,7 @@
-'int main(int argc, char* argv[]) '
-'{ return $(PYPY_MAIN_FUNCTION)(argc, argv); }" > $@')
- m.rule('$(DEFAULT_TARGET)', ['$(TARGET)', 'main.o'],
--   '$(CC_LINK) $(LDFLAGS_LINK) main.o -L. 
-l$(SHARED_IMPORT_LIB) -o $@')
-+   '$(CC_LINK) $(LDFLAGS_LINK) main.o -L. 
-l$(SHARED_IMPORT_LIB) \'-Wl,-rpath,$$ORIGIN\' -o $@')
- 
- return m
- 



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

2016-02-06 Thread Michał Górny
commit: 9938841b329055a1c46cb469a91faec9b7538788
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Feb  6 22:39:53 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Feb  6 22:45:07 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9938841b

dev-python/pypy3: Fix Gentoo path fix to check for correct PyPy3 dir

 dev-python/pypy3/files/4.0.0-gentoo-path.patch | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pypy3/files/4.0.0-gentoo-path.patch 
b/dev-python/pypy3/files/4.0.0-gentoo-path.patch
index 1c0270d..cf96d3f 100644
--- a/dev-python/pypy3/files/4.0.0-gentoo-path.patch
+++ b/dev-python/pypy3/files/4.0.0-gentoo-path.patch
@@ -37,7 +37,7 @@ index fc43951..fed5218 100644
  if (hasattr(sys, 'pypy_version_info') and
  not name.endswith(('_user', '_home'))):
 -name = 'pypy'
-+if self.install_base == 
os.path.normpath('@EPREFIX@/usr/@libdir@/pypy'):
++if self.install_base == 
os.path.normpath('@EPREFIX@/usr/@libdir@/pypy3'):
 +# override paths for system-wide install
 +name = 'gentoo'
 +else:



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

2016-02-06 Thread Michał Górny
commit: 6bf196ac851d5427e020ceb9b79cbb40ea0ecba4
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Feb  6 22:42:07 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Feb  6 22:45:07 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6bf196ac

dev-python/pypy3: Apply fix for ncurses-6, #564454

 dev-python/pypy3/files/2.4.0-ncurses6.patch |  34 
 dev-python/pypy3/pypy3-2.4.0-r1.ebuild  | 232 
 2 files changed, 266 insertions(+)

diff --git a/dev-python/pypy3/files/2.4.0-ncurses6.patch 
b/dev-python/pypy3/files/2.4.0-ncurses6.patch
new file mode 100644
index 000..63a450f
--- /dev/null
+++ b/dev-python/pypy3/files/2.4.0-ncurses6.patch
@@ -0,0 +1,34 @@
+Patch by Vadim A. Misbakh-Soloviov (mva)
+https://bugs.gentoo.org/show_bug.cgi?id=564454
+
+--- lib_pypy/_curses.py.old 2016-01-18 19:13:00.241886442 +
 lib_pypy/_curses.py 2016-01-18 19:26:01.061885605 +
+@@ -1,6 +1,7 @@
+ """Reimplementation of the standard extension module '_curses' using cffi."""
+
+ import sys
++import platform
+ if sys.platform == 'win32':
+ #This module does not exist in windows
+ raise ImportError('No module named _curses')
+@@ -10,12 +11,18 @@
+
+ ffi = FFI()
+
++# Monkeypatch to make it build against ncurses-6.
++# Inspired by https://goo.gl/xvjQcd
++_type = "uint32_t"
++if platform.machine() == "x86_64":
++_type = "unsigned"
++
+ ffi.cdef("""
+ typedef ... WINDOW;
+ typedef ... SCREEN;
+-typedef unsigned long mmask_t;
++typedef """+_type+""" mmask_t;
+ typedef unsigned char bool;
+-typedef unsigned long chtype;
++typedef """+_type+""" chtype;
+ typedef chtype attr_t;
+
+ typedef struct

diff --git a/dev-python/pypy3/pypy3-2.4.0-r1.ebuild 
b/dev-python/pypy3/pypy3-2.4.0-r1.ebuild
new file mode 100644
index 000..e555175
--- /dev/null
+++ b/dev-python/pypy3/pypy3-2.4.0-r1.ebuild
@@ -0,0 +1,232 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+# pypy3 needs to be built using python 2
+PYTHON_COMPAT=( python2_7 pypy )
+inherit check-reqs eutils multilib multiprocessing pax-utils \
+   python-any-r1 toolchain-funcs versionator
+
+DESCRIPTION="A fast, compliant alternative implementation of Python 3"
+HOMEPAGE="http://pypy.org/;
+SRC_URI="https://bitbucket.org/pypy/pypy/downloads/${P}-src.tar.bz2;
+
+LICENSE="MIT"
+SLOT="0/$(get_version_component_range 1-2 ${PV})"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="bzip2 gdbm +jit libressl low-memory ncurses sandbox +shadowstack sqlite 
cpu_flags_x86_sse2 tk"
+
+RDEPEND=">=sys-libs/zlib-1.1.3:0=
+   virtual/libffi:0=
+   virtual/libintl:0=
+   dev-libs/expat:0=
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:= )
+   bzip2? ( app-arch/bzip2:0= )
+   gdbm? ( sys-libs/gdbm:0= )
+   ncurses? ( >=sys-libs/ncurses-6.0:0= )
+   sqlite? ( dev-db/sqlite:3= )
+   tk? (
+   dev-lang/tk:0=
+   dev-tcltk/tix:0=
+   )
+   !dev-python/pypy3-bin:0"
+DEPEND="${RDEPEND}
+   low-memory? ( virtual/pypy:0 )
+   !low-memory? ( ${PYTHON_DEPS} )"
+#  doc? ( dev-python/sphinx )
+PDEPEND="app-admin/python-updater"
+
+S="${WORKDIR}/${P}-src"
+
+pkg_pretend() {
+   if [[ ${MERGE_TYPE} != binary ]]; then
+   if use low-memory; then
+   CHECKREQS_MEMORY="1750M"
+   use amd64 && CHECKREQS_MEMORY="3500M"
+   else
+   CHECKREQS_MEMORY="3G"
+   use amd64 && CHECKREQS_MEMORY="6G"
+   fi
+   fi
+
+   check-reqs_pkg_pretend
+}
+
+pkg_setup() {
+   if [[ ${MERGE_TYPE} != binary ]]; then
+   pkg_pretend
+
+   # unset to allow forcing pypy below :)
+   use low-memory && local EPYTHON=
+   if python_is_installed pypy && [[ ! ${EPYTHON} || ${EPYTHON} == 
pypy ]]; then
+   einfo "Using PyPy to perform the translation."
+   local EPYTHON=pypy
+   else
+   einfo "Using ${EPYTHON:-python2} to perform the 
translation. Please note that upstream"
+   einfo "recommends using PyPy for that. If you wish to 
do so, please install"
+   einfo "virtual/pypy and ensure that EPYTHON variable is 
unset."
+   fi
+
+   python-any-r1_pkg_setup
+   fi
+}
+
+src_prepare() {
+   epatch \
+   "${FILESDIR}"/${P}-gcc-4.9.patch \
+   "${FILESDIR}/1.9-scripts-location.patch" \
+   
"${FILESDIR}/1.9-distutils.unixccompiler.UnixCCompiler.runtime_library_dir_option.patch"
 \
+   "${FILESDIR}"/2.3.1-shared-lib.patch# 517002
+   epatch "${FILESDIR}/2.4.0-ncurses6.patch"
+   epatch "${FILESDIR}"/${PN}-2.4.0-libressl.patch
+
+   epatch_user
+}
+
+src_compile() {
+   

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

2016-02-06 Thread Michał Górny
commit: 6ca391c19b0e7f7f8aefcfd7d2973978f5164a82
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Feb  6 22:43:02 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Feb  6 22:45:07 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ca391c1

dev-python/pypy3: Use the new Gentoo path patch on 2.4.0-r1

 dev-python/pypy3/pypy3-2.4.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pypy3/pypy3-2.4.0-r1.ebuild 
b/dev-python/pypy3/pypy3-2.4.0-r1.ebuild
index e555175..c2c6e90 100644
--- a/dev-python/pypy3/pypy3-2.4.0-r1.ebuild
+++ b/dev-python/pypy3/pypy3-2.4.0-r1.ebuild
@@ -77,7 +77,7 @@ pkg_setup() {
 src_prepare() {
epatch \
"${FILESDIR}"/${P}-gcc-4.9.patch \
-   "${FILESDIR}/1.9-scripts-location.patch" \
+   "${FILESDIR}/4.0.0-gentoo-path.patch" \

"${FILESDIR}/1.9-distutils.unixccompiler.UnixCCompiler.runtime_library_dir_option.patch"
 \
"${FILESDIR}"/2.3.1-shared-lib.patch# 517002
epatch "${FILESDIR}/2.4.0-ncurses6.patch"



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

2016-02-06 Thread Robin H. Johnson
commit: 12a3311954f3533b6fb02b404ff81401d9d8e390
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Sat Feb  6 22:56:17 2016 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Sat Feb  6 22:56:29 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12a33119

sys-kernel/genkernel: be clearer with genkernel git versions.

Package-Manager: portage-2.2.27

 sys-kernel/genkernel/genkernel-.ebuild | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/sys-kernel/genkernel/genkernel-.ebuild 
b/sys-kernel/genkernel/genkernel-.ebuild
index 86ff466..77d5d22 100644
--- a/sys-kernel/genkernel/genkernel-.ebuild
+++ b/sys-kernel/genkernel/genkernel-.ebuild
@@ -87,6 +87,9 @@ src_unpack() {
 
 src_prepare() {
if [[ ${PV} == * ]] ; then
+   einfo "Updating version tag"
+   GK_V=$(git describe --tags)
+   sed "/^GK_V/s,=.*,='${GK_V}',g" -i "${S}"/genkernel
einfo "Producing ChangeLog from Git history..."
pushd "${S}/.git" >/dev/null || die
git log > "${S}"/ChangeLog || die



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

2016-02-06 Thread Patrice Clement
commit: dad76f21dd6036140870b5d7ca39720a8e71b829
Author: Patrice Clement  gentoo  org>
AuthorDate: Sat Feb  6 23:18:02 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sat Feb  6 23:57:52 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dad76f21

dev-java/htmlparser: Stable for amd64+x86.

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

 dev-java/htmlparser/htmlparser-1.4-r1.ebuild | 16 ++--
 1 file changed, 10 insertions(+), 6 deletions(-)

diff --git a/dev-java/htmlparser/htmlparser-1.4-r1.ebuild 
b/dev-java/htmlparser/htmlparser-1.4-r1.ebuild
index 21ac42e..7615a41 100644
--- a/dev-java/htmlparser/htmlparser-1.4-r1.ebuild
+++ b/dev-java/htmlparser/htmlparser-1.4-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$
 
@@ -14,18 +14,22 @@ SRC_URI="http://about.validator.nu/${PN}/${P}.zip;
 
 LICENSE="W3C"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE=""
 
 CDEPEND="
dev-java/icu4j:52
dev-java/jchardet:0
dev-java/xom:0"
-RDEPEND="${CDEPEND}
+
+RDEPEND="
+   ${CDEPEND}
>=virtual/jre-1.6"
-DEPEND="${CDEPEND}
-   >=virtual/jdk-1.6
-   app-arch/unzip"
+
+DEPEND="
+   ${CDEPEND}
+   app-arch/unzip
+   >=virtual/jdk-1.6"
 
 java_prepare() {
java-pkg_clean



[gentoo-commits] repo/gentoo:master commit in: app-emulation/grub-xen-host/

2016-02-06 Thread Doug Goldstein
commit: 3387c0a6f28f10d691dee9c96cca9c17c17b62f8
Author: Doug Goldstein  gentoo  org>
AuthorDate: Sun Jan  3 20:16:07 2016 +
Commit: Doug Goldstein  gentoo  org>
CommitDate: Sat Feb  6 21:42:44 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3387c0a6

app-emulation/grub-xen-host: initial version

Initial version to provide a dom0 host PV grub based on grub 2.

Package-Manager: portage-2.2.26
Signed-off-by: Doug Goldstein  gentoo.org>

 .../grub-xen-host/grub-xen-host-1.0.ebuild | 74 ++
 app-emulation/grub-xen-host/metadata.xml   | 15 +
 2 files changed, 89 insertions(+)

diff --git a/app-emulation/grub-xen-host/grub-xen-host-1.0.ebuild 
b/app-emulation/grub-xen-host/grub-xen-host-1.0.ebuild
new file mode 100644
index 000..292c338
--- /dev/null
+++ b/app-emulation/grub-xen-host/grub-xen-host-1.0.ebuild
@@ -0,0 +1,74 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+DESCRIPTION="Grub2 built as a PV grub per the Xen PV Boot Protocol"
+HOMEPAGE="https://blog.xenproject.org/2015/01/07/using-grub-2-as-a-bootloader-for-xen-pv-guests/;
+SRC_URI=""
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="amd64"
+IUSE=""
+
+DEPEND="sys-boot/grub:2=[grub_platforms_xen]
+   app-emulation/xen-tools:="
+RDEPEND="${DEPEND}"
+
+S="${WORKDIR}"
+
+STRIP_MASK="usr/libexec/xen/bin/grub-x86_64-xen.bin"
+QA_EXECSTACK="usr/libexec/xen/bin/grub-x86_64-xen.bin"
+QA_WX_LOAD="usr/libexec/xen/bin/grub-x86_64-xen.bin"
+QA_PRESTRIPPED="usr/libexec/xen/bin/grub-x86_64-xen.bin"
+RESTRICT="test"
+
+src_configure() {
+   :
+}
+
+src_compile() {
+   cat > "${S}/grub-bootstrap.cfg" <<- EOF
+   normal (memdisk)/grub.cfg
+   EOF
+
+   cat > "${S}/grub.cfg" <<- EOF
+   if search -s -f /boot/xen/pvboot-x86_64.elf ; then
+   echo "Chainloading (${root})/boot/xen/pvboot-x86_64.elf"
+   multiboot "/boot/xen/pvboot-x86_64.elf"
+   boot
+   fi
+
+   if search -s -f /xen/pvboot-x86_64.elf ; then
+   echo "Chainloading (${root})/xen/pvboot-x86_64.elf"
+   multiboot "/xen/pvboot-x86_64.elf"
+   boot
+   fi
+
+   if search -s -f /boot/grub/grub.cfg ; then
+   echo "Reading (${root})/boot/grub/grub.cfg"
+   configfile /boot/grub/grub.cfg
+   fi
+
+   if search -s -f /grub/grub.cfg ; then
+   echo "Reading (${root})/grub/grub.cfg"
+   configfile /grub/grub.cfg
+   fi
+   EOF
+
+   tar cf memdisk.tar grub.cfg || die "failed to tar"
+
+   grub2-mkimage -O x86_64-xen \
+   -c grub-bootstrap.cfg \
+   -m memdisk.tar \
+   -o grub-x86_64-xen.bin \
+   /usr/lib/grub/x86_64-xen/*.mod \
+   || die "failed to grub-mkimage"
+}
+
+src_install() {
+   exeinto /usr/libexec/xen/bin
+   doexe grub-x86_64-xen.bin
+}

diff --git a/app-emulation/grub-xen-host/metadata.xml 
b/app-emulation/grub-xen-host/metadata.xml
new file mode 100644
index 000..d1cd780
--- /dev/null
+++ b/app-emulation/grub-xen-host/metadata.xml
@@ -0,0 +1,15 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   x...@gentoo.org
+   
+   
+   car...@gentoo.org
+   
+   
+   A grub 2 built to run in dom0 which is a PV grub that can chain 
load
+   a guest installed PV grub (grub legacy or grub 2) or handle a 
guest
+   supplied grub 2 config file.
+   
+



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

2016-02-06 Thread Manuel Rüger
commit: 1d4a31615b8971b511ad1b3f4ccfc465fd779ab0
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sat Feb  6 22:14:40 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sat Feb  6 22:14:40 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d4a3161

dev-lang/mono: Version bump

Package-Manager: portage-2.2.27

 dev-lang/mono/Manifest |   1 +
 dev-lang/mono/mono-4.2.2.30.ebuild | 116 +
 2 files changed, 117 insertions(+)

diff --git a/dev-lang/mono/Manifest b/dev-lang/mono/Manifest
index 21fc800..0556794 100644
--- a/dev-lang/mono/Manifest
+++ b/dev-lang/mono/Manifest
@@ -3,3 +3,4 @@ DIST mono-3.12.1.tar.bz2 73487974 SHA256 
5d8cf153af2948c06bc9fbf5088f6834868e4db
 DIST mono-4.0.5.1.tar.bz2 96533206 SHA256 
c2f42944dded3196c6449f90e79990f1951070a361a0dcc2350fc56e945bc229 SHA512 
c0783f7b2e344ca00ea354d2723821636a2594345f7e1fd93bf84e9ba1b5501848d4f49b1538279aac9f6f333d296394322e08a9749fe2208340104aa594cd09
 WHIRLPOOL 
ae9b0758c019003fc9ecdbd051974d547c59c24a4505e71c1fc7db8095bc98cdb486405e2ba1794bfb34ecc6bebeb8b5165a97ba8f596897887eb7f2da806b89
 DIST mono-4.2.1.124.tar.bz2 96235544 SHA256 
6098476ce5c74685b23e7a96be8fe28a27db4167375fee103a275820054d647c SHA512 
56515fdd0ad047756804f2440c302e93f2eaec42dc462680035d0f9c4ea2c3974572b926a468629a49743837beeb8286ff0058392b45a89e9b1fb3ba5299fb8b
 WHIRLPOOL 
fe8c6c365d4ab91a1812c7b79a9d0b176eb42aa6515fe486e6de71199be7eaa52dbfd0dad6c31df78bd1a33847dbc45caa4b3928853810e5d354aed16ef6ca13
 DIST mono-4.2.2.10.tar.bz2 96232441 SHA256 
c772db0be6f108e6832103675c41a3b31439e0203e77a9b321e48ac3bbb9fd25 SHA512 
a50082a872e5866d264c1627477accd28539274af1488d0ad92e9fb0d4da56fe35fbe25f57062d7d570a527b9dd6df0d44c586633210c2c7a1fd34ae537bfc62
 WHIRLPOOL 
40c050a12ccd62ee3ae38ad74d3f0034e341a2d2d4936ff3a73610b265fe946df75741496d655b88e7bc61022d90cae174fc10ada07e93193337dd753b7939f6
+DIST mono-4.2.2.30.tar.bz2 78365827 SHA256 
57858cd033be9915d7abdc5158c1faae8fa05757c3b7117cab3d703aa696c56b SHA512 
5aa93b362da84970310cc35bf02300718a20d2b508c263f45224d89f7aee84ead90c6fd7230ee2f17a2c02d480e3a8f7d2c9308cec0062a8f4c107f674a7c752
 WHIRLPOOL 
fed4edbc5a724777bfe32edd4493c95904983e295c5c093f36231dfcdd9466daa8a21ed79c2686f8f0c6c5bbef8dafd88e82b3131e69e2d31e99fdc36de5aaf5

diff --git a/dev-lang/mono/mono-4.2.2.30.ebuild 
b/dev-lang/mono/mono-4.2.2.30.ebuild
new file mode 100644
index 000..1db98fc
--- /dev/null
+++ b/dev-lang/mono/mono-4.2.2.30.ebuild
@@ -0,0 +1,116 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+AUTOTOOLS_PRUNE_LIBTOOL_FILES="all"
+AUTOTOOLS_AUTORECONF=1
+
+inherit eutils linux-info mono-env flag-o-matic pax-utils autotools-utils 
versionator
+
+DESCRIPTION="Mono runtime and class libraries, a C# compiler/interpreter"
+HOMEPAGE="http://www.mono-project.com/Main_Page;
+SRC_URI="http://download.mono-project.com/sources/${PN}/${P}.tar.bz2;
+
+LICENSE="MIT LGPL-2.1 GPL-2 BSD-4 NPL-1.1 Ms-PL GPL-2-with-linking-exception 
IDPL"
+SLOT="0"
+
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux"
+
+IUSE="nls minimal pax_kernel xen doc"
+
+COMMONDEPEND="
+   !minimal? ( >=dev-dotnet/libgdiplus-2.10 )
+   ia64? ( sys-libs/libunwind )
+   nls? ( sys-devel/gettext )
+"
+RDEPEND="${COMMONDEPEND}
+   || ( www-client/links www-client/lynx )
+"
+DEPEND="${COMMONDEPEND}
+   sys-devel/bc
+   virtual/yacc
+   pax_kernel? ( sys-apps/elfix )
+   !dev-lang/mono-basic
+"
+
+MAKEOPTS="${MAKEOPTS} -j1" #nowarn
+S="${WORKDIR}/${PN}-$(get_version_component_range 1-3)"
+
+pkg_pretend() {
+   # If CONFIG_SYSVIPC is not set in your kernel .config, mono will hang 
while compiling.
+   # See http://bugs.gentoo.org/261869 for more info."
+   CONFIG_CHECK="SYSVIPC"
+   use kernel_linux && check_extra_config
+}
+
+pkg_setup() {
+   linux-info_pkg_setup
+   mono-env_pkg_setup
+}
+
+src_prepare() {
+   # we need to sed in the paxctl-ng -mr in the runtime/mono-wrapper.in so 
it don't
+   # get killed in the build proces when MPROTECT is enable. #286280
+   # RANDMMAP kill the build proces to #347365
+   # use paxmark.sh to get PT/XT logic #532244
+   if use pax_kernel ; then
+   ewarn "We are disabling MPROTECT on the mono binary."
+
+   # issue 9 : https://github.com/Heather/gentoo-dotnet/issues/9
+   sed '/exec "/ i\paxmark.sh -mr "$r/@mono_runtime@"' -i 
"${S}"/runtime/mono-wrapper.in || die "Failed to sed mono-wrapper.in"
+   fi
+
+   # mono build system can fail otherwise
+   strip-flags
+
+   # Fix VB targets
+   # http://osdir.com/ml/general/2015-05/msg20808.html
+   epatch "${FILESDIR}/add_missing_vb_portable_targets.patch"
+
+   # Fix build when sgen disabled
+   # https://bugzilla.xamarin.com/show_bug.cgi?id=32015
+   epatch 

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

2016-02-06 Thread Michał Górny
commit: ab6a4a2f5347e69108ade31c06f750263d83c8b6
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Feb  6 21:23:06 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Feb  6 21:27:31 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab6a4a2f

python-utils-r1.eclass: Do not prefer Jython & PyPy over CPython

Fix _PYTHON_ALL_IMPLS to list Jython & PyPy before CPython versions,
therefore causing them not to be implicitly preferred over CPython.

The implementation reordering done in b284e54 ("reorder implementations
in semi-ascending order") has caused PyPy & Jython to be listed after
CPython. While seemingly it was more intuitive to list third-party
implementations after the reference one, it also implicitly caused them
to be preferred by python-exec.

 eclass/python-utils-r1.eclass | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/eclass/python-utils-r1.eclass b/eclass/python-utils-r1.eclass
index 89a7cbf..9488966 100644
--- a/eclass/python-utils-r1.eclass
+++ b/eclass/python-utils-r1.eclass
@@ -41,10 +41,10 @@ inherit toolchain-funcs
 # @DESCRIPTION:
 # All supported Python implementations, most preferred last.
 _PYTHON_ALL_IMPLS=(
+   jython2_7
+   pypy pypy3
python2_7
python3_3 python3_4 python3_5
-   pypy pypy3
-   jython2_7
 )
 readonly _PYTHON_ALL_IMPLS
 



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

2016-02-06 Thread Richard Farina
commit: 68279d4111761608dcbb004ae72e4b88e688d8a8
Author: Zero_Chaos  gentoo  org>
AuthorDate: Sat Feb  6 21:40:31 2016 +
Commit: Richard Farina  gentoo  org>
CommitDate: Sat Feb  6 21:41:02 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68279d41

dev-ruby/rkelly-remix: metasploit users are stuck with 0.0.6 and may want 
ruby22 support, so add ruby22 to 0.0.6

Package-Manager: portage-2.2.27

 dev-ruby/rkelly-remix/rkelly-remix-0.0.6.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/rkelly-remix/rkelly-remix-0.0.6.ebuild 
b/dev-ruby/rkelly-remix/rkelly-remix-0.0.6.ebuild
index 9d42419..5e4c052 100644
--- a/dev-ruby/rkelly-remix/rkelly-remix-0.0.6.ebuild
+++ b/dev-ruby/rkelly-remix/rkelly-remix-0.0.6.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI=5
 
-USE_RUBY="ruby19 ruby20 ruby21"
+USE_RUBY="ruby20 ruby21 ruby22"
 
 RUBY_FAKEGEM_RECIPE_DOC="rdoc"
 



[gentoo-commits] proj/genkernel: New tag: v3.5.0.0

2016-02-06 Thread Robin H. Johnson
commit: 
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Sat Feb  6 22:15:13 2016 +

New tag: v3.5.0.0




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

2016-02-06 Thread Robin H. Johnson
commit: 29716ce46c58e5c6f33e35b4b575227298f054da
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Sat Feb  6 22:14:05 2016 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Sat Feb  6 22:14:05 2016 +
URL:https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=29716ce4

Major version bump: due to kernel changes this is considered a major unstable 
bump.

Signed-off-by: Robin H. Johnson  gentoo.org>

 genkernel | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/genkernel b/genkernel
index 95965b1..60300f2 100755
--- a/genkernel
+++ b/genkernel
@@ -2,7 +2,7 @@
 # $Id$
 
 PATH="${PATH}:/sbin:/usr/sbin"
-GK_V='3.4.52.4'
+GK_V='3.5.0.0'
 
 # Set the default for TMPDIR.  May be modified by genkernel.conf or the
 # --tempdir command line option.



[gentoo-commits] repo/gentoo:master commit in: app-emulation/grub-xen-host/

2016-02-06 Thread Doug Goldstein
commit: 20a70888182a436925bd216490873fb702d942e7
Author: Doug Goldstein  gentoo  org>
AuthorDate: Sat Feb  6 22:27:12 2016 +
Commit: Doug Goldstein  gentoo  org>
CommitDate: Sat Feb  6 22:27:12 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20a70888

app-emulation/grub-xen-host: update metadata

Package-Manager: portage-2.2.26
Signed-off-by: Doug Goldstein  gentoo.org>

 app-emulation/grub-xen-host/metadata.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-emulation/grub-xen-host/metadata.xml 
b/app-emulation/grub-xen-host/metadata.xml
index d1cd780..bddad78 100644
--- a/app-emulation/grub-xen-host/metadata.xml
+++ b/app-emulation/grub-xen-host/metadata.xml
@@ -1,10 +1,10 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
+   
x...@gentoo.org

-   
+   
car...@gentoo.org





[gentoo-commits] repo/gentoo:master commit in: x11-drivers/xf86-video-intel/

2016-02-06 Thread Manuel Rüger
commit: 02f6c85c43eb4bd983e16cc6bd03cf141b4d9dfd
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sat Feb  6 14:13:55 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sat Feb  6 14:13:55 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02f6c85c

x11-drivers/xf86-video-intel: Remove old

Package-Manager: portage-2.2.27

 x11-drivers/xf86-video-intel/Manifest  |  2 -
 .../xf86-video-intel-2.19.0.ebuild | 56 ---
 .../xf86-video-intel-2.20.13.ebuild| 65 --
 3 files changed, 123 deletions(-)

diff --git a/x11-drivers/xf86-video-intel/Manifest 
b/x11-drivers/xf86-video-intel/Manifest
index 38a0c94..0d36747 100644
--- a/x11-drivers/xf86-video-intel/Manifest
+++ b/x11-drivers/xf86-video-intel/Manifest
@@ -1,5 +1,3 @@
-DIST xf86-video-intel-2.19.0.tar.bz2 1463260 SHA256 
32133d61b14ce3b45b83a60e4ed8eb75159259d708f056144250aaeabf16e4bc SHA512 
988f231570cdd7e5c60880472c8bee765def040addf1fa6e5bc9e8a8722b5500d4ae2b798383dc90f2ca3df439e230c4df2d7e3f7cb50341d2d3d38486520292
 WHIRLPOOL 
a19605d2473e72fc4e81a7a327a9b8e9534bdfceca64b44a3d0fd62bf031c9ec10c7d12379b9ca327bde8bc90e15c73cee7ef2de71de00c92bc70969f2a91d37
-DIST xf86-video-intel-2.20.13.tar.bz2 1649369 SHA256 
0151104b58ff3509ecd05ac4ee2c5d81a78506c97afbed511fed6b263060dce3 SHA512 
4f70ba1e794d26f8cbbb52c4936cfc8cdf4f43a353d9f921bf519a02a0c7f1b1eec6b3aa706ee6fc333a89b152416b9526f5d951ddea23ed70400e975c59febe
 WHIRLPOOL 
101dff2402c75d0a48243ce1e3ac11e529f2d26a8d81321ae9ec528b6d35a3ed7647c342a2cf60389a69d677c29798c84e3252932b64f905966ef5af695cffbf
 DIST xf86-video-intel-2.21.15.tar.bz2 1977431 SHA256 
7d5a140f82a72fd1cbc8a664d66c3d4eca47ee240ca4927b8a98d7af6f65d6fc SHA512 
ca9680716445d0e9ba1a5d87433455f7a5f558802b4d214d79496426dbfd3e598968f784b531de024df30fefcc114d6e40cc9c6da94604beb48cd4430bf9e491
 WHIRLPOOL 
352b114b1030d1fbe2d33f028e7c03be8b4a6a4b0e4cb4fd7c890dd4cc5594ebf1fd6477c9319c1e2ff5033fc3276fb9caa8d91d1d3ba6b0c2f1734b60d3efed
 DIST xf86-video-intel-2.9.1.tar.bz2 789001 SHA256 
95347c88854c2b41c07ab3bcdfadd1b8d27fb181a20520f185892877eb8d9d76 SHA512 
62a7c1852b2d0b89be93536e7852caf398fc743e11a12c5071baed5e767b29c382ff5eb9d6c3ab453fc4d94aa16245b607ef33b94198bf7c7626746772fcc290
 WHIRLPOOL 
7e61c5d1396829aa354c9fdfbe5a21723171390d86b3307a2a331061e128a9866408993410090fe5d607609d245c55843633730bc4521e9cb0ec478c8d6ede1c
 DIST xf86-video-intel-2.99.917.tar.bz2 2259040 SHA256 
00b781eea055582820a123c47b62411bdf6aabf4f03dc0568faec55faf9667c9 SHA512 
cbf4d46ad1ad5e5587c0f1f620ff534ef0645270517b60056b9f03e83d8216e2f456de46352a06c37c0c46963cc4ed20b71b815b20ec1bf680ff046e535f580f
 WHIRLPOOL 
b26f1b303a27825120e1036f15493119e8869ebae74a2663204fe1ee63cf9fc217e593c469d6c33151a73c9ea6e9df88d0e3a0bb74ece5109b51593785fd4d7d

diff --git a/x11-drivers/xf86-video-intel/xf86-video-intel-2.19.0.ebuild 
b/x11-drivers/xf86-video-intel/xf86-video-intel-2.19.0.ebuild
deleted file mode 100644
index 9205a0f..000
--- a/x11-drivers/xf86-video-intel/xf86-video-intel-2.19.0.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=4
-
-XORG_DRI=dri
-inherit linux-info xorg-2
-
-DESCRIPTION="X.Org driver for Intel cards"
-
-KEYWORDS="amd64 x86 ~amd64-fbsd -x86-fbsd"
-IUSE="glamor sna"
-
-RDEPEND="=x11-libs/libxcb-1.5
-   >=x11-libs/pixman-0.24
-   x11-libs/xcb-util
-   >=x11-libs/libdrm-2.4.29[video_cards_intel]
-   glamor? (
-   x11-libs/glamor
-   )
-   sna? (
-   >=x11-base/xorg-server-1.10
-   )"
-DEPEND="${RDEPEND}
-   >=x11-proto/dri2proto-2.6"
-
-pkg_setup() {
-   linux-info_pkg_setup
-   xorg-2_pkg_setup
-   XORG_CONFIGURE_OPTIONS=(
-   $(use_enable dri)
-   $(use_enable glamor)
-   $(use_enable sna)
-   --enable-xvmc
-   )
-}
-
-pkg_postinst() {
-   if linux_config_exists \
-   && ! linux_chkconfig_present DRM_I915_KMS; then
-   echo
-   ewarn "This driver requires KMS support in your kernel"
-   ewarn "  Device Drivers --->"
-   ewarn "Graphics support --->"
-   ewarn "  Direct Rendering Manager (XFree86 4.1.0 and higher 
DRI support)  --->"
-   ewarn "  <*>   Intel 830M, 845G, 852GM, 855GM, 865G (i915 
driver)  --->"
-   ewarn "  i915 driver"
-   ewarn "  [*]   Enable modesetting on intel by default"
-   echo
-   fi
-}

diff --git a/x11-drivers/xf86-video-intel/xf86-video-intel-2.20.13.ebuild 
b/x11-drivers/xf86-video-intel/xf86-video-intel-2.20.13.ebuild
deleted file mode 100644
index 0cde804..000
--- a/x11-drivers/xf86-video-intel/xf86-video-intel-2.20.13.ebuild
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of 

[gentoo-commits] repo/gentoo:master commit in: x11-drivers/xf86-video-intel/

2016-02-06 Thread Manuel Rüger
commit: fdf6639d46ae953d569dc0968e5f8b4de968b437
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sat Feb  6 14:13:15 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sat Feb  6 14:13:15 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fdf6639d

x11-drivers/xf86-video-intel: Update snapshot

Package-Manager: portage-2.2.27

 x11-drivers/xf86-video-intel/Manifest  |  1 +
 .../xf86-video-intel-2.99.917_p20160203.ebuild | 74 ++
 2 files changed, 75 insertions(+)

diff --git a/x11-drivers/xf86-video-intel/Manifest 
b/x11-drivers/xf86-video-intel/Manifest
index 6ac1b18..38a0c94 100644
--- a/x11-drivers/xf86-video-intel/Manifest
+++ b/x11-drivers/xf86-video-intel/Manifest
@@ -4,3 +4,4 @@ DIST xf86-video-intel-2.21.15.tar.bz2 1977431 SHA256 
7d5a140f82a72fd1cbc8a664d66
 DIST xf86-video-intel-2.9.1.tar.bz2 789001 SHA256 
95347c88854c2b41c07ab3bcdfadd1b8d27fb181a20520f185892877eb8d9d76 SHA512 
62a7c1852b2d0b89be93536e7852caf398fc743e11a12c5071baed5e767b29c382ff5eb9d6c3ab453fc4d94aa16245b607ef33b94198bf7c7626746772fcc290
 WHIRLPOOL 
7e61c5d1396829aa354c9fdfbe5a21723171390d86b3307a2a331061e128a9866408993410090fe5d607609d245c55843633730bc4521e9cb0ec478c8d6ede1c
 DIST xf86-video-intel-2.99.917.tar.bz2 2259040 SHA256 
00b781eea055582820a123c47b62411bdf6aabf4f03dc0568faec55faf9667c9 SHA512 
cbf4d46ad1ad5e5587c0f1f620ff534ef0645270517b60056b9f03e83d8216e2f456de46352a06c37c0c46963cc4ed20b71b815b20ec1bf680ff046e535f580f
 WHIRLPOOL 
b26f1b303a27825120e1036f15493119e8869ebae74a2663204fe1ee63cf9fc217e593c469d6c33151a73c9ea6e9df88d0e3a0bb74ece5109b51593785fd4d7d
 DIST xf86-video-intel-2.99.917_p20160122.tar.xz 931472 SHA256 
7e1b9b9a183078c5c11d9962ad8782a0f8ba6d64dd8267a457563a91bc90a990 SHA512 
e109826b6a08cbd8d9ae7918e0c3fa1f47a56715691552d293e50dbcd92efd3e1a49f3a0db44209fec1e2cce885cc930d520f24bcd5ecb7fb83e5b71a87b1d17
 WHIRLPOOL 
5eee92198c63dad7883b746cfd01025391fab6176f0e61e784fc4be70903533583312c71058660043a0b6ec2624cdeaf30d723c52acd369358451fc8e1a4
+DIST xf86-video-intel-2.99.917_p20160203.tar.xz 932800 SHA256 
a40792f8bcb7d48593d60d4a97a957dd0a2b505e13f15638087abd20ba98df60 SHA512 
e0bdbcbe297686c3d05573932ad929d7681de52bf9b02e37b51550da55ae0841f515b740dd67bf9053048acb8b6be05eb3b7d6121d7021abbae2b31dd2a30698
 WHIRLPOOL 
3ede81189f4040d26e6ab4b33d539a67ee0f11553a7db84eb6e15d6f6d6cb5345244e1515e072c48874689bc07ed159ee01f9544aabc7690320e017b245ad1dc

diff --git 
a/x11-drivers/xf86-video-intel/xf86-video-intel-2.99.917_p20160203.ebuild 
b/x11-drivers/xf86-video-intel/xf86-video-intel-2.99.917_p20160203.ebuild
new file mode 100644
index 000..921b933
--- /dev/null
+++ b/x11-drivers/xf86-video-intel/xf86-video-intel-2.99.917_p20160203.ebuild
@@ -0,0 +1,74 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+XORG_DRI=dri
+inherit linux-info xorg-2
+
+DESCRIPTION="X.Org driver for Intel cards"
+
+KEYWORDS="~amd64 ~x86 ~amd64-fbsd -x86-fbsd"
+IUSE="debug +sna +udev uxa xvmc"
+COMMIT_ID="8b8c9a36828e90e46ad0755c6861df85f5307fb5"
+SRC_URI="http://cgit.freedesktop.org/xorg/driver/xf86-video-intel/snapshot/${COMMIT_ID}.tar.xz
 -> ${P}.tar.xz"
+
+S=${WORKDIR}/${COMMIT_ID}
+
+REQUIRED_USE="
+   || ( sna uxa )
+"
+RDEPEND="x11-libs/libXext
+   x11-libs/libXfixes
+   >=x11-libs/pixman-0.27.1
+   >=x11-libs/libdrm-2.4.29[video_cards_intel]
+   sna? (
+   >=x11-base/xorg-server-1.10
+   )
+   udev? (
+   virtual/udev
+   )
+   xvmc? (
+   x11-libs/libXvMC
+   >=x11-libs/libxcb-1.5
+   x11-libs/xcb-util
+   )
+"
+DEPEND="${RDEPEND}
+   >=x11-proto/dri2proto-2.6
+   x11-proto/dri3proto
+   x11-proto/presentproto
+   x11-proto/resourceproto"
+
+src_prepare() {
+   eautoreconf
+}
+
+src_configure() {
+   XORG_CONFIGURE_OPTIONS=(
+   $(use_enable debug)
+   $(use_enable dri)
+   $(use_enable sna)
+   $(use_enable uxa)
+   $(use_enable udev)
+   $(use_enable xvmc)
+   --disable-dri3
+   )
+   xorg-2_src_configure
+}
+
+pkg_postinst() {
+   if linux_config_exists \
+   && ! linux_chkconfig_present DRM_I915_KMS; then
+   echo
+   ewarn "This driver requires KMS support in your kernel"
+   ewarn "  Device Drivers --->"
+   ewarn "Graphics support --->"
+   ewarn "  Direct Rendering Manager (XFree86 4.1.0 and higher 
DRI support)  --->"
+   ewarn "  <*>   Intel 830M, 845G, 852GM, 855GM, 865G (i915 
driver)  --->"
+   ewarn "   i915 driver"
+   ewarn "  [*]   Enable modesetting on intel by default"
+   echo
+   fi
+}



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

2016-02-06 Thread Sergei Trofimovich
commit: ad970f2f0cd3ca5763024e66878254af59f2e4b8
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sat Feb  6 14:29:03 2016 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat Feb  6 14:29:55 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad970f2f

app-portage/fquery: bump up to 0.2.2

Package-Manager: portage-2.2.27

 app-portage/fquery/Manifest|  1 +
 app-portage/fquery/fquery-0.2.2.ebuild | 28 
 2 files changed, 29 insertions(+)

diff --git a/app-portage/fquery/Manifest b/app-portage/fquery/Manifest
index a6738dc..d9d38bd 100644
--- a/app-portage/fquery/Manifest
+++ b/app-portage/fquery/Manifest
@@ -1,2 +1,3 @@
 DIST fquery-0.2.1.4.tar.gz 13229 SHA256 
e19ba8bff5414f990fbcc4852fcefc59cad25de02d1114737e32f19499833764 SHA512 
bead28fa66b053ce13d6622dd93a212ad99a9183b0caafb36d5a594b529f6a14102305e0fd22197f7b5bfe47126f3e230efd3886fedbbfa223e075e69ee8edd9
 WHIRLPOOL 
785697f7fb381d13cf588067365f6a17de09ddf59b400017a45c4870042075ff9c44a4530fcb8c0f2fbd1082bb366d18c8e8a2da034a200500e7ee334182313d
 DIST fquery-0.2.1.5.tar.gz 13242 SHA256 
f124de95a18d2e177ed1fae3493ad093c8c365d513c0cc958227fc59f2ca38ec SHA512 
33282f12b4fd6c62e3ba3abe39c53442fce53b010a85a769f3f5b8107949ddb87e19c0350a0c23c938ec869b33be46de1505efcf44133a4ddecffdf00519013e
 WHIRLPOOL 
0c83bf58866d3cdde602ac8847eb6ae6fb927ec539c76fb16f7d8367d27199455aca3f788481f46eb78b9b81b3572c32c4bb249063f7ad8b721f073979309cb7
+DIST fquery-0.2.2.tar.gz 14489 SHA256 
5641c8748ff11e5ba37175eac76ee4b14739a3d4d4711ea5ce023bc8d8559cbe SHA512 
d8560a043a3e9d489232427c5911b650cca932cda1c2185c881834c8fd54d316bc650bf4d187da53cd9785adf17381e1cb7cddaf21e73d89f7854cbb33738587
 WHIRLPOOL 
5d7390e941ab1ecdfb06a68a5f7e483b20d52044fce358f296ec5652ffa98c96db13292da7baebce47bee4d142f91be8e2916dce2dda6c6cebad0ab8091fd19b

diff --git a/app-portage/fquery/fquery-0.2.2.ebuild 
b/app-portage/fquery/fquery-0.2.2.ebuild
new file mode 100644
index 000..2c6eb11
--- /dev/null
+++ b/app-portage/fquery/fquery-0.2.2.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+# ebuild generated by hackport 0.4.6.
+
+CABAL_FEATURES="bin"
+inherit haskell-cabal
+
+DESCRIPTION="Installed package query tool for Gentoo Linux"
+HOMEPAGE="http://hackage.haskell.org/package/fquery;
+SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
+
+LICENSE="ZLIB"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="dev-haskell/hashtables:=
+   dev-haskell/parsec:=
+   dev-haskell/regex-compat:=
+   >=dev-lang/ghc-7.4.1:=
+"
+DEPEND="${RDEPEND}
+   >=dev-haskell/cabal-1.6
+"



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

2016-02-06 Thread Ian Delaney
commit: 9a6455efe89939009f57c41fd17aebc8c26de5a0
Author: Matthew Brewer  sina  cn>
AuthorDate: Sat Feb  6 05:52:42 2016 +
Commit: Ian Delaney  gentoo  org>
CommitDate: Sat Feb  6 05:52:42 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a6455ef

app-text/sigil: version bump 0.9.3

Package-Manager: portage-2.2.26
RepoMan-Options: --ignore-arches

 app-text/sigil/Manifest   | 2 +-
 app-text/sigil/{sigil-0.9.2.ebuild => sigil-0.9.3.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/sigil/Manifest b/app-text/sigil/Manifest
index c4e6f8a..f99e278 100644
--- a/app-text/sigil/Manifest
+++ b/app-text/sigil/Manifest
@@ -1,2 +1,2 @@
 DIST sigil-0.8.7.tar.gz 19394061 SHA256 
0352cc46714ebb5067a0fbdbbc76dded8f10ea0f4f43374c7dbcac6eba49e104 SHA512 
24b74c835ae1f8fb887c9d2c59b3ccc6720ce1fe8d19a6b0056754ab5ea6e63c34c4b229f4e4b3a880e722876d288e58385f5a0ad15b295f147b77b1acf28652
 WHIRLPOOL 
2cb7a8a928069a2f005396faa9bdacde1f77f3cca3a3ba2458b8562e48298a127b9de9d7ecea5f106ad68865d5074b13fff5a234497b2b6655ac1a3c3edef827
-DIST sigil-0.9.2.tar.gz 17448786 SHA256 
d3c34ba1b63b080cb889dc5f11ba28f4db246151fbc3de162178290c8b9b3304 SHA512 
8adc9571f653f126bf287a264325b3bf231c2022ddc9b1350e0e31125883c1d6b7b983660ccf2b1838ae2f3b15f968cee1e751afd51e2923f291e08f457315f9
 WHIRLPOOL 
2ee6fd609b9ffbd1c380a34ea0e5001a2ba92ba565dc1023ec0d02e90c3e693194792c962db516924578db82c7b56f97c01852f96e6ea3d0f80d05bc4a393acc
+DIST sigil-0.9.3.tar.gz 18095814 SHA256 
714417ec2ac8aa21a29dcc9fd5054479fcba965029c1b881f8229ca76781c404 SHA512 
c3463e0b16188b9d15f2f00e2b4fb8c565c0281cde144b840e49dbf7026462251d44ad8b5ae4b0ac8f88569ce73c6a9bcd781864283f3b5b8b25be7962b0f9b1
 WHIRLPOOL 
29cbf950015a562c247a127c527dd09f45328d799b710f9715d720798a89e77e781758978c683a1b85fe55690679cc8aa99f71c24786e4a7e534515664335644

diff --git a/app-text/sigil/sigil-0.9.2.ebuild 
b/app-text/sigil/sigil-0.9.3.ebuild
similarity index 100%
rename from app-text/sigil/sigil-0.9.2.ebuild
rename to app-text/sigil/sigil-0.9.3.ebuild



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

2016-02-06 Thread Andreas Hüttel
commit: eb1057153cbc096f8576f29a3a9ce6190375724d
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sun Jan 24 22:43:50 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Sat Feb  6 15:58:32 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb105715

kde-apps/akregator: Version bump

Package-Manager: portage-2.2.27

 kde-apps/akregator/Manifest |  1 +
 kde-apps/akregator/akregator-4.4.2016.01.ebuild | 23 +++
 2 files changed, 24 insertions(+)

diff --git a/kde-apps/akregator/Manifest b/kde-apps/akregator/Manifest
index 6508138..cbcb87d 100644
--- a/kde-apps/akregator/Manifest
+++ b/kde-apps/akregator/Manifest
@@ -1,3 +1,4 @@
 DIST kdepim-4.14.10.tar.xz 14585020 SHA256 
edad865b81259331780a25906127e105d06fda8aa56f6f11cfee4bc8f85bb7e2 SHA512 
aa7e5a488964d11d37e89053993bb0bed4860072dbb8ae1851df881713a15ec5aa4e428de9b85a8bef678ace307b33f186314fe5a8011521e30331a1691b
 WHIRLPOOL 
358589e29baeb2f7bf648d1bbccb9bbf37c4c1a447f05a2eff472b50282d7d5118ad40ced2f93ac7f47f2c394f745216632d33be389e82f88efd69386f6ab57d
 DIST kdepim-4.14.8.tar.xz 14575884 SHA256 
52b4174924387030c1b3803267f099f3534aa8ccde796953d6cf34b4aabbe3a7 SHA512 
687b0db97476e692718039153a1ee60cf9ddab8d9adad06abba702a170d49488f60f0fe050a339db2da2a5996d1bdbe1faec73c1c2e2b655fa9ea66aa538899c
 WHIRLPOOL 
4ce31c3c526a0eed7819137cb5c29450da75fac8a7f4f74e25794b6617bbd7e12987bb45983408ae87bd892a57508d171941b9c4e1a75324773611d950fe55e4
 DIST kdepim-4.4.2015.06.tar.xz 8901968 SHA256 
d9153c57e697ca33d0bd82f1f93ed2befdabbe3822189c1c8acbdf7bf9bbaec6 SHA512 
10e89ff1bb22ef03ae2128b800f87c76da945703fa98c07fa0ac29deb17c724beeca84995c50b067138ab7cf0543112173eb850d897b38c512a25974bfc15e1e
 WHIRLPOOL 
543b9d629380e9923b38c414cf6e7390437a48acfb31b9ed934e9655bb1efb1f480065942775dc68d8382e639e4df122f953388dad90a9fadb3734d2f2fe72f0
+DIST kdepim-4.4.2016.01.tar.xz 8964248 SHA256 
19f4d6ab4bcddf5a0e6acae50c20d0b8fbb482503e47e75c86955637d249cefa SHA512 
a04737cc89f96e3635a19c492c9f3f31e7554aa8a237fb0ad8f5fe8c02e7e30911dd5d93bf0f27fd38603e496e02f3ef1d3064e159c99c71dea379199d1e0e03
 WHIRLPOOL 
9f02f5799b3a10a9b18b4c8cb34084051991cb7240d2b818cd2b58bde05abde2ef3126b3960f2554c7e5c4930266e561c1715c21fe72136654e28184b5083089

diff --git a/kde-apps/akregator/akregator-4.4.2016.01.ebuild 
b/kde-apps/akregator/akregator-4.4.2016.01.ebuild
new file mode 100644
index 000..3199642
--- /dev/null
+++ b/kde-apps/akregator/akregator-4.4.2016.01.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+KMNAME="kdepim"
+KDE_HANDBOOK=optional
+inherit kde4-meta
+
+DESCRIPTION="KDE news feed aggregator (noakonadi branch)"
+HOMEPAGE="https://www.kde.org/applications/internet/akregator;
+KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
+IUSE="debug"
+
+DEPEND="
+   $(add_kdebase_dep kdelibs '' 4.6)
+   $(add_kdeapps_dep kdepimlibs '' 4.6)
+   $(add_kdeapps_dep libkdepim '' 4.4.2015)
+"
+RDEPEND="${DEPEND}"
+
+KMLOADLIBS="libkdepim"



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

2016-02-06 Thread Andreas Hüttel
commit: 959c3d90100633adce95c624c8807bce48536ab6
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sun Jan 24 23:17:46 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Sat Feb  6 15:58:32 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=959c3d90

kde-apps/kdepim-wizards: Version bump

Package-Manager: portage-2.2.27

 kde-apps/kdepim-wizards/Manifest   |  1 +
 .../kdepim-wizards-4.4.2016.01.ebuild  | 39 ++
 2 files changed, 40 insertions(+)

diff --git a/kde-apps/kdepim-wizards/Manifest b/kde-apps/kdepim-wizards/Manifest
index 9847602..a776469 100644
--- a/kde-apps/kdepim-wizards/Manifest
+++ b/kde-apps/kdepim-wizards/Manifest
@@ -1 +1,2 @@
 DIST kdepim-4.4.2015.06.tar.xz 8901968 SHA256 
d9153c57e697ca33d0bd82f1f93ed2befdabbe3822189c1c8acbdf7bf9bbaec6 SHA512 
10e89ff1bb22ef03ae2128b800f87c76da945703fa98c07fa0ac29deb17c724beeca84995c50b067138ab7cf0543112173eb850d897b38c512a25974bfc15e1e
 WHIRLPOOL 
543b9d629380e9923b38c414cf6e7390437a48acfb31b9ed934e9655bb1efb1f480065942775dc68d8382e639e4df122f953388dad90a9fadb3734d2f2fe72f0
+DIST kdepim-4.4.2016.01.tar.xz 8964248 SHA256 
19f4d6ab4bcddf5a0e6acae50c20d0b8fbb482503e47e75c86955637d249cefa SHA512 
a04737cc89f96e3635a19c492c9f3f31e7554aa8a237fb0ad8f5fe8c02e7e30911dd5d93bf0f27fd38603e496e02f3ef1d3064e159c99c71dea379199d1e0e03
 WHIRLPOOL 
9f02f5799b3a10a9b18b4c8cb34084051991cb7240d2b818cd2b58bde05abde2ef3126b3960f2554c7e5c4930266e561c1715c21fe72136654e28184b5083089

diff --git a/kde-apps/kdepim-wizards/kdepim-wizards-4.4.2016.01.ebuild 
b/kde-apps/kdepim-wizards/kdepim-wizards-4.4.2016.01.ebuild
new file mode 100644
index 000..772d39c
--- /dev/null
+++ b/kde-apps/kdepim-wizards/kdepim-wizards-4.4.2016.01.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+KMNAME="kdepim"
+KMMODULE="wizards"
+inherit kde4-meta
+
+DESCRIPTION="KDE PIM wizards (noakonadi branch)"
+IUSE="debug"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+
+DEPEND="
+   $(add_kdeapps_dep kdepimlibs '' 4.6)
+   $(add_kdeapps_dep kdepim-kresources '' 4.4.2015)
+   $(add_kdeapps_dep libkdepim '' 4.4.2015)
+"
+RDEPEND="${DEPEND}"
+
+KMEXTRACTONLY="
+   kmail/
+   knotes/
+   kresources/groupwise/
+   kresources/kolab/
+   kresources/slox/
+"
+
+src_prepare() {
+   ln -s 
"${EKDEDIR}"/include/kdepim-kresources/{kabcsloxprefs.h,kcalsloxprefs.h} \
+   kresources/slox/ \
+   || die "Failed to link extra_headers."
+   ln -s 
"${EKDEDIR}"/include/kdepim-kresources/{kabc_groupwiseprefs,kcal_groupwiseprefsbase}.h
 \
+   kresources/groupwise/ \
+   || die "Failed to link extra_headers."
+
+   kde4-meta_src_prepare
+}



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

2016-02-06 Thread Andreas Hüttel
commit: aee2a3e4d4695b7987d4718e099a41084cac63eb
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat Feb  6 14:37:15 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Sat Feb  6 15:58:32 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aee2a3e4

kde-apps/libkpgp: Version bump

Package-Manager: portage-2.2.27

 kde-apps/libkpgp/Manifest   |  1 +
 kde-apps/libkpgp/libkpgp-4.4.2016.01.ebuild | 13 +
 2 files changed, 14 insertions(+)

diff --git a/kde-apps/libkpgp/Manifest b/kde-apps/libkpgp/Manifest
index 9847602..a776469 100644
--- a/kde-apps/libkpgp/Manifest
+++ b/kde-apps/libkpgp/Manifest
@@ -1 +1,2 @@
 DIST kdepim-4.4.2015.06.tar.xz 8901968 SHA256 
d9153c57e697ca33d0bd82f1f93ed2befdabbe3822189c1c8acbdf7bf9bbaec6 SHA512 
10e89ff1bb22ef03ae2128b800f87c76da945703fa98c07fa0ac29deb17c724beeca84995c50b067138ab7cf0543112173eb850d897b38c512a25974bfc15e1e
 WHIRLPOOL 
543b9d629380e9923b38c414cf6e7390437a48acfb31b9ed934e9655bb1efb1f480065942775dc68d8382e639e4df122f953388dad90a9fadb3734d2f2fe72f0
+DIST kdepim-4.4.2016.01.tar.xz 8964248 SHA256 
19f4d6ab4bcddf5a0e6acae50c20d0b8fbb482503e47e75c86955637d249cefa SHA512 
a04737cc89f96e3635a19c492c9f3f31e7554aa8a237fb0ad8f5fe8c02e7e30911dd5d93bf0f27fd38603e496e02f3ef1d3064e159c99c71dea379199d1e0e03
 WHIRLPOOL 
9f02f5799b3a10a9b18b4c8cb34084051991cb7240d2b818cd2b58bde05abde2ef3126b3960f2554c7e5c4930266e561c1715c21fe72136654e28184b5083089

diff --git a/kde-apps/libkpgp/libkpgp-4.4.2016.01.ebuild 
b/kde-apps/libkpgp/libkpgp-4.4.2016.01.ebuild
new file mode 100644
index 000..609970f
--- /dev/null
+++ b/kde-apps/libkpgp/libkpgp-4.4.2016.01.ebuild
@@ -0,0 +1,13 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+KDE_MINIMAL="4.6"
+KMNAME="kdepim"
+inherit kde4-meta
+
+DESCRIPTION="KDE pgp abstraction library"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="debug"



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

2016-02-06 Thread Andreas Hüttel
commit: dbf56afc88f94295231c4f0bb2f84634a7d649dc
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Mon Feb  1 23:56:39 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Sat Feb  6 15:58:32 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dbf56afc

kde-apps/kjots: Version bump

Package-Manager: portage-2.2.27

 kde-apps/kjots/Manifest |  1 +
 kde-apps/kjots/kjots-4.4.2016.01.ebuild | 19 +++
 2 files changed, 20 insertions(+)

diff --git a/kde-apps/kjots/Manifest b/kde-apps/kjots/Manifest
index 6508138..cbcb87d 100644
--- a/kde-apps/kjots/Manifest
+++ b/kde-apps/kjots/Manifest
@@ -1,3 +1,4 @@
 DIST kdepim-4.14.10.tar.xz 14585020 SHA256 
edad865b81259331780a25906127e105d06fda8aa56f6f11cfee4bc8f85bb7e2 SHA512 
aa7e5a488964d11d37e89053993bb0bed4860072dbb8ae1851df881713a15ec5aa4e428de9b85a8bef678ace307b33f186314fe5a8011521e30331a1691b
 WHIRLPOOL 
358589e29baeb2f7bf648d1bbccb9bbf37c4c1a447f05a2eff472b50282d7d5118ad40ced2f93ac7f47f2c394f745216632d33be389e82f88efd69386f6ab57d
 DIST kdepim-4.14.8.tar.xz 14575884 SHA256 
52b4174924387030c1b3803267f099f3534aa8ccde796953d6cf34b4aabbe3a7 SHA512 
687b0db97476e692718039153a1ee60cf9ddab8d9adad06abba702a170d49488f60f0fe050a339db2da2a5996d1bdbe1faec73c1c2e2b655fa9ea66aa538899c
 WHIRLPOOL 
4ce31c3c526a0eed7819137cb5c29450da75fac8a7f4f74e25794b6617bbd7e12987bb45983408ae87bd892a57508d171941b9c4e1a75324773611d950fe55e4
 DIST kdepim-4.4.2015.06.tar.xz 8901968 SHA256 
d9153c57e697ca33d0bd82f1f93ed2befdabbe3822189c1c8acbdf7bf9bbaec6 SHA512 
10e89ff1bb22ef03ae2128b800f87c76da945703fa98c07fa0ac29deb17c724beeca84995c50b067138ab7cf0543112173eb850d897b38c512a25974bfc15e1e
 WHIRLPOOL 
543b9d629380e9923b38c414cf6e7390437a48acfb31b9ed934e9655bb1efb1f480065942775dc68d8382e639e4df122f953388dad90a9fadb3734d2f2fe72f0
+DIST kdepim-4.4.2016.01.tar.xz 8964248 SHA256 
19f4d6ab4bcddf5a0e6acae50c20d0b8fbb482503e47e75c86955637d249cefa SHA512 
a04737cc89f96e3635a19c492c9f3f31e7554aa8a237fb0ad8f5fe8c02e7e30911dd5d93bf0f27fd38603e496e02f3ef1d3064e159c99c71dea379199d1e0e03
 WHIRLPOOL 
9f02f5799b3a10a9b18b4c8cb34084051991cb7240d2b818cd2b58bde05abde2ef3126b3960f2554c7e5c4930266e561c1715c21fe72136654e28184b5083089

diff --git a/kde-apps/kjots/kjots-4.4.2016.01.ebuild 
b/kde-apps/kjots/kjots-4.4.2016.01.ebuild
new file mode 100644
index 000..de7e413
--- /dev/null
+++ b/kde-apps/kjots/kjots-4.4.2016.01.ebuild
@@ -0,0 +1,19 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+KMNAME="kdepim"
+KDE_HANDBOOK=optional
+inherit kde4-meta
+
+DESCRIPTION="KDE note taking utility (noakonadi branch)"
+KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
+IUSE="debug"
+
+DEPEND="
+   $(add_kdeapps_dep kdepimlibs '' 4.6)
+   $(add_kdeapps_dep libkdepim '' 4.4.2015)
+"
+RDEPEND="${DEPEND}"



[gentoo-commits] repo/gentoo:master commit in: www-apps/jekyll-sitemap/

2016-02-06 Thread Manuel Rüger
commit: dbc2c88e11eea4e70b7f17459746b68018deae70
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sat Feb  6 15:57:11 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sat Feb  6 15:57:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dbc2c88e

www-apps/jekyll-sitemap: Remove old

Package-Manager: portage-2.2.27

 www-apps/jekyll-sitemap/Manifest   |  1 -
 .../jekyll-sitemap/jekyll-sitemap-0.9.0.ebuild | 23 --
 2 files changed, 24 deletions(-)

diff --git a/www-apps/jekyll-sitemap/Manifest b/www-apps/jekyll-sitemap/Manifest
index d7ce4be..cbb9c77 100644
--- a/www-apps/jekyll-sitemap/Manifest
+++ b/www-apps/jekyll-sitemap/Manifest
@@ -1,2 +1 @@
 DIST jekyll-sitemap-0.10.0.tar.gz 63435 SHA256 
143dcacd0556ef326380f16c2315827435282a760ec28e543ba10c8f8a523a85 SHA512 
a609ab04d05a8ef947cf5de1a118eb4f28d00aa9392bbfb25b6a635ddb4ef8e45fbc50fc028ea8bdfe901605b2f20c5fcc1603281be861d1e9e4ee794a4aa975
 WHIRLPOOL 
64453bd112e766c6e0d84365d890b84412f98df8a509e3c5a2594ba3c3ffb62b4600cd4de7bf5f0c336082f1b1c6c22f2618058a130a7b09573c85a72792e4d2
-DIST jekyll-sitemap-0.9.0.tar.gz 62710 SHA256 
db437f1794ca32c13ef235becc3fffa53bb922ab0fc108f7c511dd04b3ce1107 SHA512 
2c55f2869050c0e0d279e3974554dbdb03c6db25c5fa2997c12cd0c6615707ff8d53ef05cffed57dc8eb2e261677d5f86ebc889083989b7a7723e7d92922c1ba
 WHIRLPOOL 
d2e54098853f722e9052607425d7db735ed9604fcd24833cba8d13bb169c67a88368372e5795eb6c8419b60e3d1fc192ba2c03401bee0195607f8c83bfe68c3e

diff --git a/www-apps/jekyll-sitemap/jekyll-sitemap-0.9.0.ebuild 
b/www-apps/jekyll-sitemap/jekyll-sitemap-0.9.0.ebuild
deleted file mode 100644
index 63aa52c..000
--- a/www-apps/jekyll-sitemap/jekyll-sitemap-0.9.0.ebuild
+++ /dev/null
@@ -1,23 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-USE_RUBY="ruby20 ruby21"
-
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
-RUBY_FAKEGEM_TASK_DOC=""
-RUBY_FAKEGEM_EXTRADOC="README.md History.markdown"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Automatically generate a sitemap.xml for your Jekyll site"
-HOMEPAGE="https://github.com/jekyll/jekyll-sitemap;
-SRC_URI="https://github.com/jekyll/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE=""
-
-ruby_add_bdepend "test? ( >=www-apps/jekyll-2 )"



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

2016-02-06 Thread Andreas Hüttel
commit: 2cf2bd6180e54141898d61b77e4233b5f1225098
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sun Jan 24 23:06:19 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Sat Feb  6 15:58:32 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2cf2bd61

kde-apps/kalarm: Version bump

Package-Manager: portage-2.2.27

 kde-apps/kalarm/Manifest  |  1 +
 kde-apps/kalarm/kalarm-4.4.2016.01.ebuild | 38 +++
 2 files changed, 39 insertions(+)

diff --git a/kde-apps/kalarm/Manifest b/kde-apps/kalarm/Manifest
index 6508138..cbcb87d 100644
--- a/kde-apps/kalarm/Manifest
+++ b/kde-apps/kalarm/Manifest
@@ -1,3 +1,4 @@
 DIST kdepim-4.14.10.tar.xz 14585020 SHA256 
edad865b81259331780a25906127e105d06fda8aa56f6f11cfee4bc8f85bb7e2 SHA512 
aa7e5a488964d11d37e89053993bb0bed4860072dbb8ae1851df881713a15ec5aa4e428de9b85a8bef678ace307b33f186314fe5a8011521e30331a1691b
 WHIRLPOOL 
358589e29baeb2f7bf648d1bbccb9bbf37c4c1a447f05a2eff472b50282d7d5118ad40ced2f93ac7f47f2c394f745216632d33be389e82f88efd69386f6ab57d
 DIST kdepim-4.14.8.tar.xz 14575884 SHA256 
52b4174924387030c1b3803267f099f3534aa8ccde796953d6cf34b4aabbe3a7 SHA512 
687b0db97476e692718039153a1ee60cf9ddab8d9adad06abba702a170d49488f60f0fe050a339db2da2a5996d1bdbe1faec73c1c2e2b655fa9ea66aa538899c
 WHIRLPOOL 
4ce31c3c526a0eed7819137cb5c29450da75fac8a7f4f74e25794b6617bbd7e12987bb45983408ae87bd892a57508d171941b9c4e1a75324773611d950fe55e4
 DIST kdepim-4.4.2015.06.tar.xz 8901968 SHA256 
d9153c57e697ca33d0bd82f1f93ed2befdabbe3822189c1c8acbdf7bf9bbaec6 SHA512 
10e89ff1bb22ef03ae2128b800f87c76da945703fa98c07fa0ac29deb17c724beeca84995c50b067138ab7cf0543112173eb850d897b38c512a25974bfc15e1e
 WHIRLPOOL 
543b9d629380e9923b38c414cf6e7390437a48acfb31b9ed934e9655bb1efb1f480065942775dc68d8382e639e4df122f953388dad90a9fadb3734d2f2fe72f0
+DIST kdepim-4.4.2016.01.tar.xz 8964248 SHA256 
19f4d6ab4bcddf5a0e6acae50c20d0b8fbb482503e47e75c86955637d249cefa SHA512 
a04737cc89f96e3635a19c492c9f3f31e7554aa8a237fb0ad8f5fe8c02e7e30911dd5d93bf0f27fd38603e496e02f3ef1d3064e159c99c71dea379199d1e0e03
 WHIRLPOOL 
9f02f5799b3a10a9b18b4c8cb34084051991cb7240d2b818cd2b58bde05abde2ef3126b3960f2554c7e5c4930266e561c1715c21fe72136654e28184b5083089

diff --git a/kde-apps/kalarm/kalarm-4.4.2016.01.ebuild 
b/kde-apps/kalarm/kalarm-4.4.2016.01.ebuild
new file mode 100644
index 000..0a3dbdd
--- /dev/null
+++ b/kde-apps/kalarm/kalarm-4.4.2016.01.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+KMNAME="kdepim"
+KDE_HANDBOOK=optional
+inherit kde4-meta
+
+DESCRIPTION="Personal alarm message, command and email scheduler for KDE 
(noakonadi branch)"
+KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
+IUSE="debug"
+
+RDEPEND="
+   $(add_kdeapps_dep kdepimlibs '' 4.6)
+   $(add_kdeapps_dep libkdepim '' 4.4.2015)
+"
+DEPEND="${RDEPEND}
+   dev-libs/boost:=
+   dev-libs/libxslt
+"
+
+KMEXTRACTONLY="
+   kmail/
+"
+
+PATCHES=(
+   "${FILESDIR}/${PN}-4.4.11.1-underlinking.patch"
+)
+
+src_configure() {
+   mycmakeargs=(
+   -DBUILD_akonadi=OFF
+   -DXSLTPROC_EXECUTABLE="${EPREFIX}"/usr/bin/xsltproc
+   )
+   kde4-meta_src_configure
+}



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

2016-02-06 Thread Andreas Hüttel
commit: cbf6801f219e8a8444b537ccaac4d8713a79b2a5
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sun Jan 24 22:45:26 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Sat Feb  6 15:58:32 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cbf6801f

kde-apps/blogilo: Version bump

Package-Manager: portage-2.2.27

 kde-apps/blogilo/Manifest   |  1 +
 kde-apps/blogilo/blogilo-4.4.2016.01.ebuild | 22 ++
 2 files changed, 23 insertions(+)

diff --git a/kde-apps/blogilo/Manifest b/kde-apps/blogilo/Manifest
index 6508138..cbcb87d 100644
--- a/kde-apps/blogilo/Manifest
+++ b/kde-apps/blogilo/Manifest
@@ -1,3 +1,4 @@
 DIST kdepim-4.14.10.tar.xz 14585020 SHA256 
edad865b81259331780a25906127e105d06fda8aa56f6f11cfee4bc8f85bb7e2 SHA512 
aa7e5a488964d11d37e89053993bb0bed4860072dbb8ae1851df881713a15ec5aa4e428de9b85a8bef678ace307b33f186314fe5a8011521e30331a1691b
 WHIRLPOOL 
358589e29baeb2f7bf648d1bbccb9bbf37c4c1a447f05a2eff472b50282d7d5118ad40ced2f93ac7f47f2c394f745216632d33be389e82f88efd69386f6ab57d
 DIST kdepim-4.14.8.tar.xz 14575884 SHA256 
52b4174924387030c1b3803267f099f3534aa8ccde796953d6cf34b4aabbe3a7 SHA512 
687b0db97476e692718039153a1ee60cf9ddab8d9adad06abba702a170d49488f60f0fe050a339db2da2a5996d1bdbe1faec73c1c2e2b655fa9ea66aa538899c
 WHIRLPOOL 
4ce31c3c526a0eed7819137cb5c29450da75fac8a7f4f74e25794b6617bbd7e12987bb45983408ae87bd892a57508d171941b9c4e1a75324773611d950fe55e4
 DIST kdepim-4.4.2015.06.tar.xz 8901968 SHA256 
d9153c57e697ca33d0bd82f1f93ed2befdabbe3822189c1c8acbdf7bf9bbaec6 SHA512 
10e89ff1bb22ef03ae2128b800f87c76da945703fa98c07fa0ac29deb17c724beeca84995c50b067138ab7cf0543112173eb850d897b38c512a25974bfc15e1e
 WHIRLPOOL 
543b9d629380e9923b38c414cf6e7390437a48acfb31b9ed934e9655bb1efb1f480065942775dc68d8382e639e4df122f953388dad90a9fadb3734d2f2fe72f0
+DIST kdepim-4.4.2016.01.tar.xz 8964248 SHA256 
19f4d6ab4bcddf5a0e6acae50c20d0b8fbb482503e47e75c86955637d249cefa SHA512 
a04737cc89f96e3635a19c492c9f3f31e7554aa8a237fb0ad8f5fe8c02e7e30911dd5d93bf0f27fd38603e496e02f3ef1d3064e159c99c71dea379199d1e0e03
 WHIRLPOOL 
9f02f5799b3a10a9b18b4c8cb34084051991cb7240d2b818cd2b58bde05abde2ef3126b3960f2554c7e5c4930266e561c1715c21fe72136654e28184b5083089

diff --git a/kde-apps/blogilo/blogilo-4.4.2016.01.ebuild 
b/kde-apps/blogilo/blogilo-4.4.2016.01.ebuild
new file mode 100644
index 000..821d94e
--- /dev/null
+++ b/kde-apps/blogilo/blogilo-4.4.2016.01.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+KMNAME="kdepim"
+KDE_HANDBOOK=optional
+inherit kde4-meta
+
+DESCRIPTION="KDE Blogging Client (noakonadi branch)"
+HOMEPAGE="https://www.kde.org/applications/internet/blogilo;
+KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
+IUSE="debug"
+
+DEPEND="
+   $(add_kdeapps_dep kdepimlibs '' 4.6)
+"
+RDEPEND="${DEPEND}
+   !kde-misc/bilbo
+   !kde-misc/blogilo
+"



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

2016-02-06 Thread Andreas Hüttel
commit: 2bda2534b836e7023ab104cae2485b19188b71b5
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sun Jan 24 23:02:23 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Sat Feb  6 15:58:32 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2bda2534

kde-apps/kabcclient: Version bump

Package-Manager: portage-2.2.27

 kde-apps/kabcclient/Manifest  |  1 +
 kde-apps/kabcclient/kabcclient-4.4.2016.01.ebuild | 26 +++
 2 files changed, 27 insertions(+)

diff --git a/kde-apps/kabcclient/Manifest b/kde-apps/kabcclient/Manifest
index 6508138..cbcb87d 100644
--- a/kde-apps/kabcclient/Manifest
+++ b/kde-apps/kabcclient/Manifest
@@ -1,3 +1,4 @@
 DIST kdepim-4.14.10.tar.xz 14585020 SHA256 
edad865b81259331780a25906127e105d06fda8aa56f6f11cfee4bc8f85bb7e2 SHA512 
aa7e5a488964d11d37e89053993bb0bed4860072dbb8ae1851df881713a15ec5aa4e428de9b85a8bef678ace307b33f186314fe5a8011521e30331a1691b
 WHIRLPOOL 
358589e29baeb2f7bf648d1bbccb9bbf37c4c1a447f05a2eff472b50282d7d5118ad40ced2f93ac7f47f2c394f745216632d33be389e82f88efd69386f6ab57d
 DIST kdepim-4.14.8.tar.xz 14575884 SHA256 
52b4174924387030c1b3803267f099f3534aa8ccde796953d6cf34b4aabbe3a7 SHA512 
687b0db97476e692718039153a1ee60cf9ddab8d9adad06abba702a170d49488f60f0fe050a339db2da2a5996d1bdbe1faec73c1c2e2b655fa9ea66aa538899c
 WHIRLPOOL 
4ce31c3c526a0eed7819137cb5c29450da75fac8a7f4f74e25794b6617bbd7e12987bb45983408ae87bd892a57508d171941b9c4e1a75324773611d950fe55e4
 DIST kdepim-4.4.2015.06.tar.xz 8901968 SHA256 
d9153c57e697ca33d0bd82f1f93ed2befdabbe3822189c1c8acbdf7bf9bbaec6 SHA512 
10e89ff1bb22ef03ae2128b800f87c76da945703fa98c07fa0ac29deb17c724beeca84995c50b067138ab7cf0543112173eb850d897b38c512a25974bfc15e1e
 WHIRLPOOL 
543b9d629380e9923b38c414cf6e7390437a48acfb31b9ed934e9655bb1efb1f480065942775dc68d8382e639e4df122f953388dad90a9fadb3734d2f2fe72f0
+DIST kdepim-4.4.2016.01.tar.xz 8964248 SHA256 
19f4d6ab4bcddf5a0e6acae50c20d0b8fbb482503e47e75c86955637d249cefa SHA512 
a04737cc89f96e3635a19c492c9f3f31e7554aa8a237fb0ad8f5fe8c02e7e30911dd5d93bf0f27fd38603e496e02f3ef1d3064e159c99c71dea379199d1e0e03
 WHIRLPOOL 
9f02f5799b3a10a9b18b4c8cb34084051991cb7240d2b818cd2b58bde05abde2ef3126b3960f2554c7e5c4930266e561c1715c21fe72136654e28184b5083089

diff --git a/kde-apps/kabcclient/kabcclient-4.4.2016.01.ebuild 
b/kde-apps/kabcclient/kabcclient-4.4.2016.01.ebuild
new file mode 100644
index 000..e5393a1
--- /dev/null
+++ b/kde-apps/kabcclient/kabcclient-4.4.2016.01.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+KMNAME="kdepim"
+KMMODULE="console/${PN}"
+KDE_HANDBOOK=optional
+inherit kde4-meta
+
+DESCRIPTION="A command line client for accessing the KDE addressbook 
(noakonadi branch)"
+KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
+IUSE="debug"
+
+DEPEND="
+   $(add_kdeapps_dep kdepimlibs '' 4.6)
+"
+RDEPEND="${DEPEND}"
+
+src_install() {
+   kde4-meta_src_install
+
+   # work around NULL DT_RPATH in kabc2mutt
+   dosym kabcclient ${PREFIX}/bin/kabc2mutt || die "couldn't symlink 
kabc2mutt to kabcclient"
+}



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

2016-02-06 Thread Jeroen Roovers
commit: 2bfe6f0d3d8a4a6d2496468084c273caf59fe41c
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sat Feb  6 16:11:09 2016 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sat Feb  6 16:11:09 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2bfe6f0d

dev-python/pillow: Stable for PPC64 (bug #573958).

Package-Manager: portage-2.2.27
RepoMan-Options: --ignore-arches

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

diff --git a/dev-python/pillow/pillow-3.1.1.ebuild 
b/dev-python/pillow/pillow-3.1.1.ebuild
index 43e930c..1ec18e9 100644
--- a/dev-python/pillow/pillow-3.1.1.ebuild
+++ b/dev-python/pillow/pillow-3.1.1.ebuild
@@ -18,7 +18,7 @@ SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.zip"
 
 LICENSE="HPND"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~ppc ppc64 ~sparc ~x86 ~x86-fbsd 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
 IUSE="doc examples jpeg jpeg2k lcms test tiff tk truetype webp zlib"
 
 REQUIRED_USE="test? ( jpeg tiff )"



[gentoo-commits] proj/lisp:master commit in: dev-lisp/newlisp/

2016-02-06 Thread José María Alonso
commit: 3cf69b029db5168bec4417bb1388344a0b14a126
Author: Chema Alonso Josa  gentoo  org>
AuthorDate: Sat Feb  6 16:43:14 2016 +
Commit: José María Alonso  gentoo  org>
CommitDate: Sat Feb  6 16:43:14 2016 +
URL:https://gitweb.gentoo.org/proj/lisp.git/commit/?id=3cf69b02

dev-lisp/newlisp: Update header

 dev-lisp/newlisp/newlisp-10.1.6.ebuild | 4 ++--
 dev-lisp/newlisp/newlisp-10.5.4.ebuild | 4 ++--
 dev-lisp/newlisp/newlisp-10.6.2.ebuild | 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/dev-lisp/newlisp/newlisp-10.1.6.ebuild 
b/dev-lisp/newlisp/newlisp-10.1.6.ebuild
index 6f90950..7156390 100644
--- a/dev-lisp/newlisp/newlisp-10.1.6.ebuild
+++ b/dev-lisp/newlisp/newlisp-10.1.6.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: $
+# $Id$
 
 EAPI=2
 

diff --git a/dev-lisp/newlisp/newlisp-10.5.4.ebuild 
b/dev-lisp/newlisp/newlisp-10.5.4.ebuild
index d54fe8d..2bc3a12 100644
--- a/dev-lisp/newlisp/newlisp-10.5.4.ebuild
+++ b/dev-lisp/newlisp/newlisp-10.5.4.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: $
+# $Id$
 
 EAPI=5
 

diff --git a/dev-lisp/newlisp/newlisp-10.6.2.ebuild 
b/dev-lisp/newlisp/newlisp-10.6.2.ebuild
index ee9e41b..a0959f9 100644
--- a/dev-lisp/newlisp/newlisp-10.6.2.ebuild
+++ b/dev-lisp/newlisp/newlisp-10.6.2.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: $
+# $Id$
 
 EAPI=5
 



[gentoo-commits] repo/gentoo:master commit in: dev-vcs/git-annex/

2016-02-06 Thread Sergei Trofimovich
commit: ec6018fa7403251a97322f2ce32996b336598231
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sat Feb  6 16:50:04 2016 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat Feb  6 16:51:54 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec6018fa

dev-vcs/git-annex: drop old

Package-Manager: portage-2.2.27

 dev-vcs/git-annex/Manifest|   8 --
 dev-vcs/git-annex/git-annex-5.20140927.ebuild | 162 ---
 dev-vcs/git-annex/git-annex-5.20141125.ebuild | 162 ---
 dev-vcs/git-annex/git-annex-5.20141203.ebuild | 165 
 dev-vcs/git-annex/git-annex-5.20141231.ebuild | 173 -
 dev-vcs/git-annex/git-annex-5.20150219.ebuild | 172 -
 dev-vcs/git-annex/git-annex-5.20150327.ebuild | 172 -
 dev-vcs/git-annex/git-annex-5.20150617.ebuild | 178 --
 dev-vcs/git-annex/git-annex-5.20150710.ebuild | 178 --
 9 files changed, 1370 deletions(-)

diff --git a/dev-vcs/git-annex/Manifest b/dev-vcs/git-annex/Manifest
index 14b9723..e13637c 100644
--- a/dev-vcs/git-annex/Manifest
+++ b/dev-vcs/git-annex/Manifest
@@ -1,11 +1,3 @@
-DIST git-annex-5.20140927.tar.gz 4547006 SHA256 
532b36a4a33909b9835a19888b1678251a0b99b1a1f82e94755bb5cc2e7af50b SHA512 
7851b773a296efc3c4d3ae36ce240ca466b42d87d32f8635ae1dc8457064c20b2521c0fe3c123554e0d2e2e35346f03a3c25ae94f47f2a2d902a73629f0c6535
 WHIRLPOOL 
bc30b2b7833f46a5633012f072a901142c2a6bc5fbca198c3d391fe336c2c88d3ae2491a439692fe32eb1b217d8a9c6b8baad931f462660b0c4a3cccb1ba44b0
-DIST git-annex-5.20141125.tar.gz 4580886 SHA256 
ba26d0459d74d818b7ecc8153856ffccfcd7068dbea344334438a698dd689a66 SHA512 
44feb1ecfe6c0f08c8c69b11efa9b81b5e420019321f27b825ae831c04e0e8ad307cea73e6c52ab1f73f2bebdd6476012e5eab1e823a9ded7d6c865e7fd24350
 WHIRLPOOL 
57ed46a1a8bd43fd12c05c2eee9da2bad529cde7ba424e7607858637e9394b280789edba5ae5c9e0547ad6d6a4ee48fd920c29cab87aacfebf4cf3b527aa58ce
-DIST git-annex-5.20141203.tar.gz 4611768 SHA256 
d36d07fe592b27e7e4e363de3ddccb5cc4a8f189c30c58cfdb4524837473f105 SHA512 
a16cc0d000cde3cc7ebad1a8eac17ba2d3efed2ac11090c1d8247a30c341fcb38bc32dccf6a8f6fe05c31fd22dc50ea2a292711a2edb43ab96275fd157030481
 WHIRLPOOL 
a4c393e29d441b36ca56c88f1690235fc1939af0ad1834239d2a80896ae8e8cb0dc1586d87b4493803d0984dc5666550a69f1d03f44488cadcb1430f7e003225
-DIST git-annex-5.20141231.tar.gz 4635173 SHA256 
ce7f8e1a6f9049e9864a125a10672d577605ecbb45bb83401af6d6c128533c67 SHA512 
d9b0db8084f08a8a2408ea1af1bc95c20591e573cddef866a9eed84319a7fff774d482d464a390c10468436dabb69fdd2cf177afb4600ef2300ae0f08b284e6e
 WHIRLPOOL 
053b76ee765cc5b01900a7c3c115a736dff67e50b4847e552e6e1adae10344219698f59969509f2248e589ea7a6eb32991d2e4646c02b2b1a703c8269fdc1352
-DIST git-annex-5.20150219.tar.gz 4688334 SHA256 
46c1d2a338a4f54774060b39fe5e864551d047b0d04eee158b3c2cb947085d5f SHA512 
006ef74ba687bd97f93fb91f3ee675551abecfe019e45696bdc783523e8559ffeb9a8e521b488b695518b2fb001b2db2826ad53c5af2199d487cd664f2a9ee13
 WHIRLPOOL 
1e2f16af86915ec433c38eedad994538b13f56d7f0e3b35d648bc2872abef78acdac4b19b4983101f697dd138a3deaa60451196ad13a8b083dd0c6dc1c712de1
-DIST git-annex-5.20150327.tar.gz 4764485 SHA256 
1e309466627eb634816805004391c5407dd9eee280e2f21a48de9617a35918fa SHA512 
638ed0c97d0f67cd26699826c9ff5192fd2d089932e06fe8305c536fcbad06239f8d745c350938089827ae4b7058f1e2c3156ab7f5f133e7b4a38a2e6cd69544
 WHIRLPOOL 
a03f2d28b36eff595ba2780ed70fee8204dceb8aef087871f650dd3482865e30d2644e29b9c7d5763cc79ffe8357e81b5b1b7fb1091fa3cb1d171634af37ac77
-DIST git-annex-5.20150617.tar.gz 5047577 SHA256 
2d37c49866880803886fe77be17ac154c84acc0c344e4fefea577a59e55f8d54 SHA512 
25f42ab403d3fd39a689af74cd8a26dc5de761d5a8a79c8d7050194c2094f65de9681b4189076c484fb5c644408918140cf1fcb0109a6a2195f1d547e307abfc
 WHIRLPOOL 
89410f048f5773256cac6525f1a42e3845a5106a1d0b82e031d1f70136375479efc180b21907036e191243f55aee7d94b041cc1d994dea403a1640e7310f6f4d
-DIST git-annex-5.20150710.tar.gz 5080419 SHA256 
970f953a278401863fb1006679d216891ae556f80434b587deb08dfd6644f860 SHA512 
35240f1d78561dab02ae014e4d00b8645c33c526b0d36a28253b9129198ea53b784949c7b47fd3b97f056842430a5e8b0d312b8ba6985bbb3228c73a4dfa21ea
 WHIRLPOOL 
06b824031aeef38468e17ef239aa1501a2236a084a9c54e4c81001247c62b8621cdc6bc090f2b1a516df000823951acee784000aa6dc5b4de5dc4bcd5a2bda59
 DIST git-annex-5.20150731.tar.gz 5096183 SHA256 
a2eefd4c273f5510e8ee384cc4fb512bf10c76cc4b84f6fff5c255223bd853a1 SHA512 
edad8fb6aa98ad08cfe8406e2c7b794b0cc3a437f28ed43b5863bbba59a1633e2d6b3a94b6f942494ef7bd912650f7c89ad2a3d54920ff405f4d8d173e1027e9
 WHIRLPOOL 
945600b49b9f240da37d4642849395fc9ef9a615701a8088b6fb573e098e9b4de5a4bde8714974105a36a963e19a78137abdc513f9a0335ff5fe36981d12be25
 DIST git-annex-5.20151218.tar.gz 5233343 SHA256 
d8aed73cbc1d1eefcbe6de7790c83f1d6458b4ac1e910d9a34b22782d16142ca SHA512 

[gentoo-commits] repo/gentoo:master commit in: dev-vcs/git-annex/

2016-02-06 Thread Sergei Trofimovich
commit: 16923880692f85bdf0267429cc7ef4df7eebcd9f
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sat Feb  6 16:49:15 2016 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat Feb  6 16:51:53 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16923880

dev-vcs/git-annex: bump up to 6.20160126, bug #572996

While at it restored dependencies on non-haskell packages:
git, ikiwiki, perl, rsync

Reported-by: Toralf Förster
Bug: https://bugs.gentoo.org/572996

Package-Manager: portage-2.2.27

 dev-vcs/git-annex/Manifest|   1 +
 dev-vcs/git-annex/git-annex-6.20160126.ebuild | 168 ++
 dev-vcs/git-annex/metadata.xml|   7 +-
 3 files changed, 170 insertions(+), 6 deletions(-)

diff --git a/dev-vcs/git-annex/Manifest b/dev-vcs/git-annex/Manifest
index 89e19fc..14b9723 100644
--- a/dev-vcs/git-annex/Manifest
+++ b/dev-vcs/git-annex/Manifest
@@ -8,3 +8,4 @@ DIST git-annex-5.20150617.tar.gz 5047577 SHA256 
2d37c49866880803886fe77be17ac154
 DIST git-annex-5.20150710.tar.gz 5080419 SHA256 
970f953a278401863fb1006679d216891ae556f80434b587deb08dfd6644f860 SHA512 
35240f1d78561dab02ae014e4d00b8645c33c526b0d36a28253b9129198ea53b784949c7b47fd3b97f056842430a5e8b0d312b8ba6985bbb3228c73a4dfa21ea
 WHIRLPOOL 
06b824031aeef38468e17ef239aa1501a2236a084a9c54e4c81001247c62b8621cdc6bc090f2b1a516df000823951acee784000aa6dc5b4de5dc4bcd5a2bda59
 DIST git-annex-5.20150731.tar.gz 5096183 SHA256 
a2eefd4c273f5510e8ee384cc4fb512bf10c76cc4b84f6fff5c255223bd853a1 SHA512 
edad8fb6aa98ad08cfe8406e2c7b794b0cc3a437f28ed43b5863bbba59a1633e2d6b3a94b6f942494ef7bd912650f7c89ad2a3d54920ff405f4d8d173e1027e9
 WHIRLPOOL 
945600b49b9f240da37d4642849395fc9ef9a615701a8088b6fb573e098e9b4de5a4bde8714974105a36a963e19a78137abdc513f9a0335ff5fe36981d12be25
 DIST git-annex-5.20151218.tar.gz 5233343 SHA256 
d8aed73cbc1d1eefcbe6de7790c83f1d6458b4ac1e910d9a34b22782d16142ca SHA512 
6c572b40f53dc4e8b72a14daf16a94bdf8c53618bbe85d797f2f440ceab42066376e681b228699a76da3a93965cd166aa68c020a48e2fdb1de964ca27aed55a0
 WHIRLPOOL 
62e24e29e5e2dfc8b6b9c7815fea57d720bd7183ec513b23dd0d8ac9f8182eaa1178b4017ea9e4d221baac3684c67ede1d3809956aabe5ce77ed3600b175bbbf
+DIST git-annex-6.20160126.tar.gz 5146331 SHA256 
dc59f670a3d0bdb90db8fc6cadba8003708219bb0dc3d56867a9246d825c0d11 SHA512 
45828b5e9968ce037e48366deb537353368dbac9145fc93d56921444210c9f0d4af1460c047bcae3e85244ecdf7e272fb65860656a19c449add09bf697c0a37d
 WHIRLPOOL 
f9b350968e8e82f7e4523648d5aefd03689123165424e15fee71eaa67345d38a0efe71ea4fc1388b5b683925bc8f638dba130371c4f324ac5910d7a051ae5548

diff --git a/dev-vcs/git-annex/git-annex-6.20160126.ebuild 
b/dev-vcs/git-annex/git-annex-6.20160126.ebuild
new file mode 100644
index 000..cabccbd
--- /dev/null
+++ b/dev-vcs/git-annex/git-annex-6.20160126.ebuild
@@ -0,0 +1,168 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+# ebuild generated by hackport 0.4.6.
+#hackport: flags: -production,-android,-androidsplice,-testsuite
+
+CABAL_FEATURES="bin"
+inherit haskell-cabal
+
+DESCRIPTION="manage files with git, without checking their contents into git"
+HOMEPAGE="http://git-annex.branchable.com/;
+SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
+RESTRICT="test"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux"
+IUSE="+assistant benchmark +concurrentoutput +cryptonite doc ekg +network-uri 
+pairing +s3 +torrentparser +webapp +webdav"
+
+RDEPEND="dev-haskell/aeson:=
+   dev-haskell/async:=
+   dev-haskell/bloomfilter:=
+   dev-haskell/case-insensitive:=
+   dev-haskell/data-default:=
+   >=dev-haskell/dbus-0.10.7:=
+   dev-haskell/dlist:=
+   dev-haskell/edit-distance:=
+   dev-haskell/esqueleto:=
+   >=dev-haskell/exceptions-0.6:=
+   >=dev-haskell/fdo-notify-0.3:=
+   dev-haskell/feed:=
+   >=dev-haskell/gnutls-0.1.4:=
+   dev-haskell/hslogger:=
+   dev-haskell/http-client:=
+   dev-haskell/http-conduit:=
+   dev-haskell/http-types:=
+   dev-haskell/ifelse:=
+   dev-haskell/json:=
+   dev-haskell/missingh:=
+   dev-haskell/monad-control:=
+   dev-haskell/monad-logger:=
+   >=dev-haskell/mtl-2:=
+   dev-haskell/network-protocol-xmpp:=
+   dev-haskell/old-locale:=
+   >=dev-haskell/optparse-applicative-0.11.0:=
+   dev-haskell/persistent:=
+   dev-haskell/persistent-sqlite:=
+   dev-haskell/persistent-template:=
+   >=dev-haskell/quickcheck-2.1:2=
+   dev-haskell/random:=
+   dev-haskell/regex-tdfa:=
+   dev-haskell/resourcet:=
+   dev-haskell/safesemaphore:=
+   dev-haskell/sandi:=
+   >=dev-haskell/stm-2.3:=
+   dev-haskell/text:=
+   dev-haskell/transformers:=
+   dev-haskell/unix-compat:=
+   dev-haskell/utf8-string:=
+   dev-haskell/uuid:=
+   dev-haskell/xml-types:=
+   

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

2016-02-06 Thread Manuel Rüger
commit: c0539cd3ffe20250f6a903e649e3098b2ad5bf1b
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sat Feb  6 17:04:50 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sat Feb  6 17:08:19 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0539cd3

net-misc/openvpn: Version bump

Package-Manager: portage-2.2.27

 net-misc/openvpn/Manifest  |   1 +
 net-misc/openvpn/openvpn-2.3.10.ebuild | 132 +
 2 files changed, 133 insertions(+)

diff --git a/net-misc/openvpn/Manifest b/net-misc/openvpn/Manifest
index 8f37fed..56f2495 100644
--- a/net-misc/openvpn/Manifest
+++ b/net-misc/openvpn/Manifest
@@ -1,2 +1,3 @@
+DIST openvpn-2.3.10.tar.gz 1225636 SHA256 
f8b0b5b92e35bbca1db1a7e6b49e04639e45634e9accd460459b40b2c99ec8f6 SHA512 
13f7cfb8e5a7485f930d13830691a937da40b4cc881c403ab613132cb94aba0a30b1727debdfa1b8d7d761b447ccbcf0d1c2d56ca82f6a6ce7e2eec9642fd13f
 WHIRLPOOL 
ce52f9d89c0512a76ccc71a4c227e8f098ffdd00d4a0ed4518f35b1f86c53c638e2805e1b32e87c664ba7ceeb1a7e50875effa3c302a5e53e1b7143ac9a68685
 DIST openvpn-2.3.8.tar.gz 1214843 SHA256 
532435eff61c14b44a583f27b72f93e7864e96c95fe51134ec0ad4b1b1107c51 SHA512 
b619283d87eea2e47a2f0dfdbf0ffd1d10388fbdaadb33b43c7a2743748a4814f869fad6215d32fab156664d554ae94af456e7bf496890c68e6729b153d76db9
 WHIRLPOOL 
4868c735ca5e65b34f477457ea38eb6db45fae80563490d1e39ece9bf29b13976dd82d50d054da70c4ee146cb2e88e847bafc3f7ff47112d4494fa0f408d65d0
 DIST openvpn-2.3.9.tar.gz 1222797 SHA256 
2c12fe9ea641ac1291e70322cc500641c84e5903dd4f40bf2eda7e9f209b2f9c SHA512 
597ad93caf5e4489bfdc78413756af516cad88679460ebadbef91358c6ca505dd0d5c3bb508b463fd34008be80d37f464271db0beec8439619510d7cf3b3b000
 WHIRLPOOL 
81e06b9d27f8443a7e1ceb9037f4f84521e97e50805e134fa773219768f8e5af8d775f515a4a90f0450ea01ce90eab48e04f3d027e7be8e796388af26e057752

diff --git a/net-misc/openvpn/openvpn-2.3.10.ebuild 
b/net-misc/openvpn/openvpn-2.3.10.ebuild
new file mode 100644
index 000..2af8d05
--- /dev/null
+++ b/net-misc/openvpn/openvpn-2.3.10.ebuild
@@ -0,0 +1,132 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit multilib flag-o-matic user systemd
+
+DESCRIPTION="Robust and highly flexible tunneling application compatible with 
many OSes"
+SRC_URI="http://swupdate.openvpn.net/community/releases/${P}.tar.gz;
+HOMEPAGE="http://openvpn.net/;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~arm-linux ~x86-linux"
+IUSE="examples down-root iproute2 libressl +lzo pam pkcs11 +plugins polarssl 
selinux socks +ssl static systemd userland_BSD"
+
+REQUIRED_USE="static? ( !plugins !pkcs11 )
+   polarssl? ( ssl !libressl )
+   pkcs11? ( ssl )
+   !plugins? ( !pam !down-root )"
+
+DEPEND="
+   kernel_linux? (
+   iproute2? ( sys-apps/iproute2[-minimal] ) !iproute2? ( 
sys-apps/net-tools )
+   )
+   pam? ( virtual/pam )
+   ssl? (
+   !polarssl? (
+   !libressl? ( >=dev-libs/openssl-0.9.7:* )
+   libressl? ( dev-libs/libressl )
+   )
+   polarssl? ( >=net-libs/polarssl-1.3.8 )
+   )
+   lzo? ( >=dev-libs/lzo-1.07 )
+   pkcs11? ( >=dev-libs/pkcs11-helper-1.11 )
+   systemd? ( sys-apps/systemd )"
+RDEPEND="${DEPEND}
+   selinux? ( sec-policy/selinux-openvpn )
+"
+
+src_configure() {
+   use static && LDFLAGS="${LDFLAGS} -Xcompiler -static"
+   local myconf
+   use polarssl && myconf="--with-crypto-library=polarssl"
+   econf \
+   ${myconf} \
+   --docdir="${EPREFIX}/usr/share/doc/${PF}" \
+   --with-plugindir="${ROOT}/usr/$(get_libdir)/$PN" \
+   $(use_enable ssl) \
+   $(use_enable ssl crypto) \
+   $(use_enable lzo) \
+   $(use_enable pkcs11) \
+   $(use_enable plugins) \
+   $(use_enable iproute2) \
+   $(use_enable socks) \
+   $(use_enable pam plugin-auth-pam) \
+   $(use_enable down-root plugin-down-root) \
+   $(use_enable systemd)
+}
+
+src_install() {
+   default
+   find "${ED}/usr" -name '*.la' -delete
+   # install documentation
+   dodoc AUTHORS ChangeLog PORTS README README.IPv6
+
+   # Install some helper scripts
+   keepdir /etc/openvpn
+   exeinto /etc/openvpn
+   doexe "${FILESDIR}/up.sh"
+   doexe "${FILESDIR}/down.sh"
+
+   # Install the init script and config file
+   newinitd "${FILESDIR}/${PN}-2.1.init" openvpn
+   newconfd "${FILESDIR}/${PN}-2.1.conf" openvpn
+
+   # install examples, controlled by the respective useflag
+   if use examples ; then
+   # dodoc does not supportly support directory traversal, #15193

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

2016-02-06 Thread Manuel Rüger
commit: 23385a7ae0619e0852b9dc7cfbdd03ed66a0fcfe
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sat Feb  6 16:56:07 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sat Feb  6 17:08:19 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23385a7a

net-misc/openvpn: Add myself as a maintainer, remove djc

Package-Manager: portage-2.2.27

 net-misc/openvpn/metadata.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-misc/openvpn/metadata.xml b/net-misc/openvpn/metadata.xml
index 8969781..0264801 100644
--- a/net-misc/openvpn/metadata.xml
+++ b/net-misc/openvpn/metadata.xml
@@ -2,8 +2,8 @@
 http://www.gentoo.org/dtd/metadata.dtd;>
 
   
-d...@gentoo.org
-Dirkjan Ochtman
+mr...@gentoo.org
+Manuel Rüger
   
   OpenVPN is an easy-to-use, robust and highly
 configurable VPN daemon which can be used to securely link two or more



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

2016-02-06 Thread Sergei Trofimovich
commit: 7834d06d7f0b1a5f1937d8b0a8269f3f6fe323fe
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sat Feb  6 17:42:27 2016 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat Feb  6 17:42:34 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7834d06d

dev-util/ltrace: added myself to maintainers

Package-Manager: portage-2.2.27

 dev-util/ltrace/metadata.xml | 4 
 1 file changed, 4 insertions(+)

diff --git a/dev-util/ltrace/metadata.xml b/dev-util/ltrace/metadata.xml
index dabd15d..e3ce665 100644
--- a/dev-util/ltrace/metadata.xml
+++ b/dev-util/ltrace/metadata.xml
@@ -1,6 +1,10 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
+   
+   sly...@gentoo.org
+   Sergei Trofimovich
+   

Use sys-libs/libunwind for frame 
unwinding support




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

2016-02-06 Thread Wolfram Schlich
commit: d49f6380b901cf31e953feba6c14cfdc70eafe20
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Sat Feb  6 18:02:14 2016 +
Commit: Wolfram Schlich  gentoo  org>
CommitDate: Sat Feb  6 18:02:21 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d49f6380

net-im/mcabber: remove unnecessary comment lines, fix KEYWORDS. 
mcabber-.ebuild was based upon the pull-request from Andrey Utkin :)

Package-Manager: portage-2.2.27

 net-im/mcabber/mcabber-.ebuild | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/net-im/mcabber/mcabber-.ebuild 
b/net-im/mcabber/mcabber-.ebuild
index b4affe7..ecad5cf 100644
--- a/net-im/mcabber/mcabber-.ebuild
+++ b/net-im/mcabber/mcabber-.ebuild
@@ -8,8 +8,6 @@ inherit flag-o-matic autotools-utils mercurial
 
 DESCRIPTION="A small Jabber console client with various features, like MUC, 
SSL, PGP"
 HOMEPAGE="http://mcabber.com/;
-#REV="a18e1b488f1c"
-#SRC_URI="http://mcabber.com/hg/index.cgi/archive/${REV}.tar.gz -> ${P}.tar.gz"
 EHG_REPO_URI="https://bitbucket.org/McKael/mcabber;
 EHG_CHECKOUT_DIR="${WORKDIR}"
 EHG_BOOTSTRAP="autogen.sh"
@@ -17,7 +15,7 @@ S="${WORKDIR}/${PN}"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="-* ~alpha ~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="~alpha ~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
 
 IUSE="aspell crypt idn modules otr spell ssl vim-syntax"
 



[gentoo-commits] repo/gentoo:master commit in: dev-java/istack-commons-tools/

2016-02-06 Thread Manuel Rüger
commit: aa8a916f12b13b888c8e59905d4792677a898c89
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sat Feb  6 15:41:36 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sat Feb  6 15:42:30 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa8a916f

dev-java/istack-commons-tools: Remove package

Gentoo-Bug: 298700

 dev-java/istack-commons-tools/Manifest |  1 -
 .../istack-commons-tools-2.22.ebuild   | 27 --
 dev-java/istack-commons-tools/metadata.xml |  8 ---
 3 files changed, 36 deletions(-)

diff --git a/dev-java/istack-commons-tools/Manifest 
b/dev-java/istack-commons-tools/Manifest
deleted file mode 100644
index 304b542..000
--- a/dev-java/istack-commons-tools/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST istack-commons-tools-2.22-sources.jar 15106 SHA256 
8287f624b188dd70551907728deb9fd73c9e4bf4362458e6c2e84b6ff626a1c3 SHA512 
daded38bcc64a8639813e607126867a515cf26c57b709062e32dc1c507e02f1592e496d028dbb36fb40e1aa04a82fb8c1a94d66818fed6680a32790a4a9b802f
 WHIRLPOOL 
881e528c81f636a40de81491a5b5f106af42b7b8dfb709339f23c2626e54a522c0394dc3bca7477e2e437e62592ce9f0f7c70dae1de6d8b7ebec3aa73ae17621

diff --git a/dev-java/istack-commons-tools/istack-commons-tools-2.22.ebuild 
b/dev-java/istack-commons-tools/istack-commons-tools-2.22.ebuild
deleted file mode 100644
index 7bdef4a..000
--- a/dev-java/istack-commons-tools/istack-commons-tools-2.22.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit java-pkg-2 java-pkg-simple
-
-MY_PN=${PN%%-*}
-
-DESCRIPTION="IStack Commons - Tools jar"
-HOMEPAGE="https://istack-commons.java.net;
-SRC_URI="https://maven.java.net/content/repositories/releases/com/sun/${MY_PN}/${PN}/${PV}/${P}-sources.jar;
-
-LICENSE="CDDL"
-SLOT="0"
-KEYWORDS="amd64 ppc64 x86"
-IUSE=""
-
-CDEPEND="dev-java/ant-core:0"
-RDEPEND=">=virtual/jre-1.6
-   ${CDEPEND}"
-DEPEND=">=virtual/jdk-1.6
-   app-arch/unzip
-   ${CDEPEND}"
-
-JAVA_GENTOO_CLASSPATH="ant-core"

diff --git a/dev-java/istack-commons-tools/metadata.xml 
b/dev-java/istack-commons-tools/metadata.xml
deleted file mode 100644
index 37998bf..000
--- a/dev-java/istack-commons-tools/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-  
-j...@gentoo.org
-Java
-  
-



[gentoo-commits] repo/gentoo:master commit in: dev-java/jaxb-tools/files/, dev-java/jaxb-tools/

2016-02-06 Thread Manuel Rüger
commit: 15c0abf1e16ef315bc9b7f618c90f9f29eed7c1c
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sat Feb  6 15:37:57 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sat Feb  6 15:42:30 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15c0abf1

dev-java/jaxb-tools: Remove package

Gentoo-Bug: 566232

 dev-java/jaxb-tools/Manifest|  1 -
 dev-java/jaxb-tools/files/build.xml-2.1.2   | 20 ---
 dev-java/jaxb-tools/jaxb-tools-2.1.2.ebuild | 89 -
 dev-java/jaxb-tools/metadata.xml|  8 ---
 4 files changed, 118 deletions(-)

diff --git a/dev-java/jaxb-tools/Manifest b/dev-java/jaxb-tools/Manifest
deleted file mode 100644
index 472c8df..000
--- a/dev-java/jaxb-tools/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST JAXB2_src_20070125.jar 3089194 SHA256 
26bec14fa220b111b7153f9889926b86a9cdc8a73aa2541149dadd7d7151afa1 SHA512 
5d6c3dec6d7d9010ec6eed1785211338ce781eb13e492fcc7417d9acab6a0259abc7d23e22dc749d201793f632cfabff3f065e422b99f0af9395d881afea81bf
 WHIRLPOOL 
4a7bcfd66383081a831ac4c1dd5fbff3e46dd1247dc59c6840e7bd029d9780b94d0d3f35f836b5d5b596b808970a41d48fbfc49770db9924a797a5766b540123

diff --git a/dev-java/jaxb-tools/files/build.xml-2.1.2 
b/dev-java/jaxb-tools/files/build.xml-2.1.2
deleted file mode 100644
index bcda106..000
--- a/dev-java/jaxb-tools/files/build.xml-2.1.2
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-  
-
-
-  
-
-  
-
-
-  
-
-  
-  
-
-  
-  
-
-  
-

diff --git a/dev-java/jaxb-tools/jaxb-tools-2.1.2.ebuild 
b/dev-java/jaxb-tools/jaxb-tools-2.1.2.ebuild
deleted file mode 100644
index 5050436..000
--- a/dev-java/jaxb-tools/jaxb-tools-2.1.2.ebuild
+++ /dev/null
@@ -1,89 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="1"
-JAVA_PKG_IUSE="source"
-
-inherit java-pkg-2 java-ant-2
-
-DESCRIPTION="Reference implementation of the JAXB specification"
-HOMEPAGE="http://jaxb.dev.java.net/;
-SRC_URI="https://jaxb.dev.java.net/${PV}/JAXB2_src_20070125.jar;
-
-LICENSE="CDDL"
-SLOT="2"
-KEYWORDS="amd64 x86 ~x86-fbsd"
-IUSE=""
-
-COMMON_DEP="dev-java/codemodel:2
-   dev-java/iso-relax:0
-   dev-java/istack-commons-runtime:0
-   dev-java/istack-commons-tools:0
-   dev-java/jaxb:2
-   dev-java/jsr173:0
-   dev-java/msv:0
-   dev-java/relaxng-datatype:0
-   dev-java/rngom:0
-   dev-java/sun-dtdparser:0
-   dev-java/sun-jaf:0
-   dev-java/txw2-runtime:0
-   dev-java/xml-commons-resolver:0
-   dev-java/xsdlib:0
-   dev-java/xsom:0"
-DEPEND=">=virtual/jdk-1.5
-   ${COMMON_DEP}"
-RDEPEND=">=virtual/jre-1.5
-   ${COMMON_DEP}"
-
-S="${WORKDIR}/jaxb-ri-20070125"
-
-src_unpack() {
-
-   cd "${WORKDIR}"
-   echo "A" | java -jar "${DISTDIR}/${A}" -console > /dev/null || die 
"unpack failed"
-
-   cd "${S}/lib"
-   rm -v *.jar || die
-
-   java-pkg_jarfrom --build-only ant-core
-   java-pkg_jarfrom codemodel-2
-   java-pkg_jarfrom iso-relax
-   java-pkg_jarfrom istack-commons-runtime
-   java-pkg_jarfrom istack-commons-tools
-   java-pkg_jarfrom jaxb-2
-   java-pkg_jarfrom jsr173
-   java-pkg_jarfrom msv
-   java-pkg_jarfrom relaxng-datatype
-   java-pkg_jarfrom rngom
-   java-pkg_jarfrom sun-dtdparser
-   java-pkg_jarfrom sun-jaf
-   java-pkg_jarfrom txw2-runtime
-   java-pkg_jarfrom xml-commons-resolver
-   java-pkg_jarfrom xsdlib
-   java-pkg_jarfrom xsom
-   ln -s $(java-config --tools) || die
-
-   cd "${S}/src/com/sun/"
-   rm -rf codemodel # in dev-java/codemodel
-   rm -rf xml # in dev-java/jaxb
-
-   cd "${S}"
-   # Their build.xml does not do everything we want
-   cp -v "${FILESDIR}/build.xml-${PV}" build.xml || die "cp failed"
-
-   find src -name '*.java' -exec \
-   sed -i \
-   -e 
's,com.sun.org.apache.xml.internal.resolver,org.apache.xml.resolver,g' \
-   {} \;
-
-}
-
-src_install() {
-   java-pkg_dojar jaxb-tools.jar
-   java-pkg_dolauncher "xjc-${SLOT}" \
-   --main com.sun.tools.xjc.Driver
-
-   use source && java-pkg_dosrc src/*
-
-}

diff --git a/dev-java/jaxb-tools/metadata.xml b/dev-java/jaxb-tools/metadata.xml
deleted file mode 100644
index 37998bf..000
--- a/dev-java/jaxb-tools/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-  
-j...@gentoo.org
-Java
-  
-



[gentoo-commits] repo/gentoo:master commit in: dev-java/jax-ws-tools/files/, dev-java/jax-ws-tools/

2016-02-06 Thread Manuel Rüger
commit: 33356ae4794d8c5c1e1cb1c40ea2b70c561bf382
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sat Feb  6 15:40:14 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sat Feb  6 15:42:30 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33356ae4

dev-java/jax-ws-tools: Remove package

Gentoo-Bug: 566224

 dev-java/jax-ws-tools/Manifest |  1 -
 .../files/jax-ws-tools-2.0.1-gentoo.patch  | 30 
 ...-ws-tools-2.0.1-remove-unused-saaj-import.patch | 11 ---
 dev-java/jax-ws-tools/jax-ws-tools-2.0.1-r1.ebuild | 85 --
 dev-java/jax-ws-tools/metadata.xml |  8 --
 5 files changed, 135 deletions(-)

diff --git a/dev-java/jax-ws-tools/Manifest b/dev-java/jax-ws-tools/Manifest
deleted file mode 100644
index 7359ea9..000
--- a/dev-java/jax-ws-tools/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST JAXWS2.0.1m1_source_20060817.jar 8993405 SHA256 
9725cfb91cecff833055d7af45c3413ca9d1a818a4cfdb86211ed82f383f3865 SHA512 
55454a8270310b9778c69aad8b8ace45dc4ba3059b33ac48dcfd5d771fade2d6e4c46a5a65a522ae5cca0438f159ba84c90d8e74d54731a9c6c0caa9d84a0314
 WHIRLPOOL 
fe0727935c592b538b7042808fffa987ea5ae47554367ea0cfc91f65d765bd234713aaa142b2297988d74eec01fce9cd4bedceb0fb7b0068eb38084a1d5f5ba7

diff --git a/dev-java/jax-ws-tools/files/jax-ws-tools-2.0.1-gentoo.patch 
b/dev-java/jax-ws-tools/files/jax-ws-tools-2.0.1-gentoo.patch
deleted file mode 100644
index 723b548..000
--- a/dev-java/jax-ws-tools/files/jax-ws-tools-2.0.1-gentoo.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-diff -Nru jaxws-si.vanilla/build.xml jaxws-si/build.xml
 jaxws-si.vanilla/build.xml 2007-04-16 20:09:54.0 +0200
-+++ jaxws-si/build.xml 2007-04-16 20:27:39.0 +0200
-@@ -69,16 +69,6 @@
- 
- 
- 
--
--  
--
--  
--
--
--
--  
--
--
- 
-   
- 
-@@ -88,6 +78,9 @@
- 
-   
- 
-+
-+  
-+
-   
- 
- 

diff --git 
a/dev-java/jax-ws-tools/files/jax-ws-tools-2.0.1-remove-unused-saaj-import.patch
 
b/dev-java/jax-ws-tools/files/jax-ws-tools-2.0.1-remove-unused-saaj-import.patch
deleted file mode 100644
index ee4ff8f..000
--- 
a/dev-java/jax-ws-tools/files/jax-ws-tools-2.0.1-remove-unused-saaj-import.patch
+++ /dev/null
@@ -1,11 +0,0 @@
-diff -ur 
jaxws-si.old/src/tools/wscompile/src/com/sun/tools/ws/util/xml/XmlUtil.java 
jaxws-si/src/tools/wscompile/src/com/sun/tools/ws/util/xml/XmlUtil.java
 
jaxws-si.old/src/tools/wscompile/src/com/sun/tools/ws/util/xml/XmlUtil.java 
   2008-10-05 12:32:27.0 +0300
-+++ jaxws-si/src/tools/wscompile/src/com/sun/tools/ws/util/xml/XmlUtil.java
2008-10-05 12:32:42.0 +0300
-@@ -44,7 +44,6 @@
- import org.w3c.dom.NodeList;
- import org.w3c.dom.Text;
- 
--import com.sun.xml.messaging.saaj.util.ByteInputStream;
- import com.sun.tools.ws.util.WSDLParseException;
- import com.sun.xml.ws.util.xml.NamedNodeMapIterator;
- import com.sun.xml.ws.util.xml.NodeListIterator;

diff --git a/dev-java/jax-ws-tools/jax-ws-tools-2.0.1-r1.ebuild 
b/dev-java/jax-ws-tools/jax-ws-tools-2.0.1-r1.ebuild
deleted file mode 100644
index c5e469f..000
--- a/dev-java/jax-ws-tools/jax-ws-tools-2.0.1-r1.ebuild
+++ /dev/null
@@ -1,85 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=1
-JAVA_PKG_IUSE="source"
-
-inherit java-pkg-2 java-ant-2 eutils
-
-DESCRIPTION="Reference implementation of the Java API for XML Web Services"
-HOMEPAGE="http://jax-ws.dev.java.net/;
-DATE="20060817"
-MY_P="JAXWS${PV}m1_source_${DATE}.jar"
-SRC_URI="https://jax-ws.dev.java.net/jax-ws-201-m1/${MY_P};
-
-LICENSE="CDDL"
-SLOT="2"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-COMMON_DEP="dev-java/istack-commons-runtime:0
-   dev-java/istack-commons-tools:0
-   dev-java/jaxb:2
-   dev-java/jaxb-tools:2
-   dev-java/txw2-runtime:0
-   dev-java/jsr173:0
-   >=dev-java/jsr181-1.0:0
-   dev-java/jax-ws-api:2
-   dev-java/jax-ws:2
-   dev-java/codemodel:2
-   dev-java/apt-mirror:0"
-DEPEND=">=virtual/jdk-1.5
-   app-arch/unzip
-   ${COMMON_DEP}"
-RDEPEND=">=virtual/jre-1.5
-   ${COMMON_DEP}"
-
-S="${WORKDIR}/jaxws-si"
-
-src_unpack() {
-   echo "A" | java -jar "${DISTDIR}/${A}" -console > /dev/null || die 
"unpack failed"
-
-   unpack ./jaxws-src.zip || die "unzip failed"
-
-   cd "${S}/lib"
-   rm -v *.jar || die
-
-   java-pkg_jarfrom istack-commons-runtime
-   java-pkg_jarfrom istack-commons-tools
-   java-pkg_jarfrom jaxb-2
-   java-pkg_jarfrom jaxb-tools-2
-   java-pkg_jarfrom txw2-runtime
-   java-pkg_jarfrom jsr173
-   java-pkg_jarfrom jsr181
-   java-pkg_jarfrom jax-ws-api-2
-   java-pkg_jarfrom jax-ws-2
-   java-pkg_jarfrom codemodel-2
-   java-pkg_jarfrom apt-mirror
-   java-pkg_jarfrom --build-only ant-core
-   ln -s $(java-config --tools) || die
-
-   cp 

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

2016-02-06 Thread Andreas Hüttel
commit: 3e9e26f6117c6f9375d31850f04b9b116091515b
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sun Jan 24 23:14:42 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Sat Feb  6 15:58:32 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e9e26f6

kde-apps/kdepim-meta: Version bump

Package-Manager: portage-2.2.27

 .../kdepim-meta/kdepim-meta-4.4.2016.01.ebuild | 40 ++
 1 file changed, 40 insertions(+)

diff --git a/kde-apps/kdepim-meta/kdepim-meta-4.4.2016.01.ebuild 
b/kde-apps/kdepim-meta/kdepim-meta-4.4.2016.01.ebuild
new file mode 100644
index 000..686a8b6
--- /dev/null
+++ b/kde-apps/kdepim-meta/kdepim-meta-4.4.2016.01.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+KDE_OVERRIDE_MINIMAL="${PV}"
+inherit kde4-meta-pkg
+
+DESCRIPTION="kdepim - merge this to pull in all kdepim-derived packages"
+KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
+IUSE="nls"
+
+RDEPEND="
+   $(add_kdeapps_dep akregator)
+   $(add_kdeapps_dep blogilo)
+   $(add_kdeapps_dep kabcclient)
+   $(add_kdeapps_dep kaddressbook)
+   $(add_kdeapps_dep kalarm)
+   $(add_kdeapps_dep kdepim-icons)
+   $(add_kdeapps_dep kdepim-kresources)
+   $(add_kdeapps_dep kdepim-wizards)
+   $(add_kdeapps_dep kjots)
+   $(add_kdeapps_dep kleopatra)
+   $(add_kdeapps_dep kmail)
+   $(add_kdeapps_dep knode)
+   $(add_kdeapps_dep knotes)
+   $(add_kdeapps_dep konsolekalendar)
+   $(add_kdeapps_dep kontact)
+   $(add_kdeapps_dep korganizer)
+   $(add_kdeapps_dep ktimetracker)
+   $(add_kdeapps_dep libkdepim)
+   $(add_kdeapps_dep libkleo)
+   $(add_kdeapps_dep libkpgp)
+   nls? (
+   $(add_kdeapps_dep kde4-l10n '' 4.14.3)
+   $(add_kdeapps_dep kdepim-l10n '' 4.4.11.1-r1)
+   )
+   !kde-apps/kdepim-runtime
+"



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

2016-02-06 Thread Andreas Hüttel
commit: 4cc4607dfe16c3bfce71a7f99b9bf035afb1b364
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat Feb  6 14:24:18 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Sat Feb  6 15:58:32 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4cc4607d

kde-apps/knotes: Version bump

Package-Manager: portage-2.2.27

 kde-apps/knotes/Manifest  |  1 +
 kde-apps/knotes/knotes-4.4.2016.01.ebuild | 21 +
 2 files changed, 22 insertions(+)

diff --git a/kde-apps/knotes/Manifest b/kde-apps/knotes/Manifest
index 6508138..cbcb87d 100644
--- a/kde-apps/knotes/Manifest
+++ b/kde-apps/knotes/Manifest
@@ -1,3 +1,4 @@
 DIST kdepim-4.14.10.tar.xz 14585020 SHA256 
edad865b81259331780a25906127e105d06fda8aa56f6f11cfee4bc8f85bb7e2 SHA512 
aa7e5a488964d11d37e89053993bb0bed4860072dbb8ae1851df881713a15ec5aa4e428de9b85a8bef678ace307b33f186314fe5a8011521e30331a1691b
 WHIRLPOOL 
358589e29baeb2f7bf648d1bbccb9bbf37c4c1a447f05a2eff472b50282d7d5118ad40ced2f93ac7f47f2c394f745216632d33be389e82f88efd69386f6ab57d
 DIST kdepim-4.14.8.tar.xz 14575884 SHA256 
52b4174924387030c1b3803267f099f3534aa8ccde796953d6cf34b4aabbe3a7 SHA512 
687b0db97476e692718039153a1ee60cf9ddab8d9adad06abba702a170d49488f60f0fe050a339db2da2a5996d1bdbe1faec73c1c2e2b655fa9ea66aa538899c
 WHIRLPOOL 
4ce31c3c526a0eed7819137cb5c29450da75fac8a7f4f74e25794b6617bbd7e12987bb45983408ae87bd892a57508d171941b9c4e1a75324773611d950fe55e4
 DIST kdepim-4.4.2015.06.tar.xz 8901968 SHA256 
d9153c57e697ca33d0bd82f1f93ed2befdabbe3822189c1c8acbdf7bf9bbaec6 SHA512 
10e89ff1bb22ef03ae2128b800f87c76da945703fa98c07fa0ac29deb17c724beeca84995c50b067138ab7cf0543112173eb850d897b38c512a25974bfc15e1e
 WHIRLPOOL 
543b9d629380e9923b38c414cf6e7390437a48acfb31b9ed934e9655bb1efb1f480065942775dc68d8382e639e4df122f953388dad90a9fadb3734d2f2fe72f0
+DIST kdepim-4.4.2016.01.tar.xz 8964248 SHA256 
19f4d6ab4bcddf5a0e6acae50c20d0b8fbb482503e47e75c86955637d249cefa SHA512 
a04737cc89f96e3635a19c492c9f3f31e7554aa8a237fb0ad8f5fe8c02e7e30911dd5d93bf0f27fd38603e496e02f3ef1d3064e159c99c71dea379199d1e0e03
 WHIRLPOOL 
9f02f5799b3a10a9b18b4c8cb34084051991cb7240d2b818cd2b58bde05abde2ef3126b3960f2554c7e5c4930266e561c1715c21fe72136654e28184b5083089

diff --git a/kde-apps/knotes/knotes-4.4.2016.01.ebuild 
b/kde-apps/knotes/knotes-4.4.2016.01.ebuild
new file mode 100644
index 000..cb24466
--- /dev/null
+++ b/kde-apps/knotes/knotes-4.4.2016.01.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+KMNAME="kdepim"
+KDE_HANDBOOK=optional
+inherit kde4-meta
+
+DESCRIPTION="KDE Notes application (noakonadi branch)"
+KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
+IUSE="debug +handbook"
+
+DEPEND="
+   $(add_kdeapps_dep kdepimlibs '' 4.6)
+   $(add_kdeapps_dep libkdepim '' 4.4.2015)
+"
+RDEPEND="${DEPEND}"
+
+KMLOADLIBS="libkdepim"



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

2016-02-06 Thread Andreas Hüttel
commit: 86296f454418b65b1e5f4f22e3401d2f2f1ea1ea
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat Feb  6 14:22:27 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Sat Feb  6 15:58:32 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86296f45

kde-apps/knode: Version bump

Package-Manager: portage-2.2.27

 kde-apps/knode/Manifest |  1 +
 kde-apps/knode/knode-4.4.2016.01.ebuild | 39 +
 2 files changed, 40 insertions(+)

diff --git a/kde-apps/knode/Manifest b/kde-apps/knode/Manifest
index 6508138..cbcb87d 100644
--- a/kde-apps/knode/Manifest
+++ b/kde-apps/knode/Manifest
@@ -1,3 +1,4 @@
 DIST kdepim-4.14.10.tar.xz 14585020 SHA256 
edad865b81259331780a25906127e105d06fda8aa56f6f11cfee4bc8f85bb7e2 SHA512 
aa7e5a488964d11d37e89053993bb0bed4860072dbb8ae1851df881713a15ec5aa4e428de9b85a8bef678ace307b33f186314fe5a8011521e30331a1691b
 WHIRLPOOL 
358589e29baeb2f7bf648d1bbccb9bbf37c4c1a447f05a2eff472b50282d7d5118ad40ced2f93ac7f47f2c394f745216632d33be389e82f88efd69386f6ab57d
 DIST kdepim-4.14.8.tar.xz 14575884 SHA256 
52b4174924387030c1b3803267f099f3534aa8ccde796953d6cf34b4aabbe3a7 SHA512 
687b0db97476e692718039153a1ee60cf9ddab8d9adad06abba702a170d49488f60f0fe050a339db2da2a5996d1bdbe1faec73c1c2e2b655fa9ea66aa538899c
 WHIRLPOOL 
4ce31c3c526a0eed7819137cb5c29450da75fac8a7f4f74e25794b6617bbd7e12987bb45983408ae87bd892a57508d171941b9c4e1a75324773611d950fe55e4
 DIST kdepim-4.4.2015.06.tar.xz 8901968 SHA256 
d9153c57e697ca33d0bd82f1f93ed2befdabbe3822189c1c8acbdf7bf9bbaec6 SHA512 
10e89ff1bb22ef03ae2128b800f87c76da945703fa98c07fa0ac29deb17c724beeca84995c50b067138ab7cf0543112173eb850d897b38c512a25974bfc15e1e
 WHIRLPOOL 
543b9d629380e9923b38c414cf6e7390437a48acfb31b9ed934e9655bb1efb1f480065942775dc68d8382e639e4df122f953388dad90a9fadb3734d2f2fe72f0
+DIST kdepim-4.4.2016.01.tar.xz 8964248 SHA256 
19f4d6ab4bcddf5a0e6acae50c20d0b8fbb482503e47e75c86955637d249cefa SHA512 
a04737cc89f96e3635a19c492c9f3f31e7554aa8a237fb0ad8f5fe8c02e7e30911dd5d93bf0f27fd38603e496e02f3ef1d3064e159c99c71dea379199d1e0e03
 WHIRLPOOL 
9f02f5799b3a10a9b18b4c8cb34084051991cb7240d2b818cd2b58bde05abde2ef3126b3960f2554c7e5c4930266e561c1715c21fe72136654e28184b5083089

diff --git a/kde-apps/knode/knode-4.4.2016.01.ebuild 
b/kde-apps/knode/knode-4.4.2016.01.ebuild
new file mode 100644
index 000..bec0322
--- /dev/null
+++ b/kde-apps/knode/knode-4.4.2016.01.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+KMNAME="kdepim"
+KDE_HANDBOOK=optional
+inherit kde4-meta
+
+DESCRIPTION="A newsreader for KDE (noakonadi branch)"
+KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
+IUSE="debug"
+
+# test fails, last checked for 4.2.96
+RESTRICT=test
+
+DEPEND="
+   $(add_kdeapps_dep kdepimlibs '' 4.6)
+   $(add_kdeapps_dep libkdepim '' 4.4.2015)
+   $(add_kdeapps_dep libkpgp '' 4.4.2015)
+"
+RDEPEND="${DEPEND}"
+
+KMEXTRACTONLY="
+   libkpgp/
+"
+
+KMLOADLIBS="libkdepim"
+
+src_unpack() {
+   if use handbook; then
+   KMEXTRA="
+   doc/kioslave/news
+   "
+   fi
+
+   kde4-meta_src_unpack
+}



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

2016-02-06 Thread Andreas Hüttel
commit: 81381f8c4d0a6555ca9ae440f6a34874035c1cdb
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sun Jan 24 23:08:16 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Sat Feb  6 15:58:32 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81381f8c

kde-apps/kdepim-icons: Version bump

Package-Manager: portage-2.2.27

 kde-apps/kdepim-icons/Manifest|  1 +
 kde-apps/kdepim-icons/kdepim-icons-4.4.2016.01.ebuild | 19 +++
 2 files changed, 20 insertions(+)

diff --git a/kde-apps/kdepim-icons/Manifest b/kde-apps/kdepim-icons/Manifest
index 6508138..cbcb87d 100644
--- a/kde-apps/kdepim-icons/Manifest
+++ b/kde-apps/kdepim-icons/Manifest
@@ -1,3 +1,4 @@
 DIST kdepim-4.14.10.tar.xz 14585020 SHA256 
edad865b81259331780a25906127e105d06fda8aa56f6f11cfee4bc8f85bb7e2 SHA512 
aa7e5a488964d11d37e89053993bb0bed4860072dbb8ae1851df881713a15ec5aa4e428de9b85a8bef678ace307b33f186314fe5a8011521e30331a1691b
 WHIRLPOOL 
358589e29baeb2f7bf648d1bbccb9bbf37c4c1a447f05a2eff472b50282d7d5118ad40ced2f93ac7f47f2c394f745216632d33be389e82f88efd69386f6ab57d
 DIST kdepim-4.14.8.tar.xz 14575884 SHA256 
52b4174924387030c1b3803267f099f3534aa8ccde796953d6cf34b4aabbe3a7 SHA512 
687b0db97476e692718039153a1ee60cf9ddab8d9adad06abba702a170d49488f60f0fe050a339db2da2a5996d1bdbe1faec73c1c2e2b655fa9ea66aa538899c
 WHIRLPOOL 
4ce31c3c526a0eed7819137cb5c29450da75fac8a7f4f74e25794b6617bbd7e12987bb45983408ae87bd892a57508d171941b9c4e1a75324773611d950fe55e4
 DIST kdepim-4.4.2015.06.tar.xz 8901968 SHA256 
d9153c57e697ca33d0bd82f1f93ed2befdabbe3822189c1c8acbdf7bf9bbaec6 SHA512 
10e89ff1bb22ef03ae2128b800f87c76da945703fa98c07fa0ac29deb17c724beeca84995c50b067138ab7cf0543112173eb850d897b38c512a25974bfc15e1e
 WHIRLPOOL 
543b9d629380e9923b38c414cf6e7390437a48acfb31b9ed934e9655bb1efb1f480065942775dc68d8382e639e4df122f953388dad90a9fadb3734d2f2fe72f0
+DIST kdepim-4.4.2016.01.tar.xz 8964248 SHA256 
19f4d6ab4bcddf5a0e6acae50c20d0b8fbb482503e47e75c86955637d249cefa SHA512 
a04737cc89f96e3635a19c492c9f3f31e7554aa8a237fb0ad8f5fe8c02e7e30911dd5d93bf0f27fd38603e496e02f3ef1d3064e159c99c71dea379199d1e0e03
 WHIRLPOOL 
9f02f5799b3a10a9b18b4c8cb34084051991cb7240d2b818cd2b58bde05abde2ef3126b3960f2554c7e5c4930266e561c1715c21fe72136654e28184b5083089

diff --git a/kde-apps/kdepim-icons/kdepim-icons-4.4.2016.01.ebuild 
b/kde-apps/kdepim-icons/kdepim-icons-4.4.2016.01.ebuild
new file mode 100644
index 000..3425a60
--- /dev/null
+++ b/kde-apps/kdepim-icons/kdepim-icons-4.4.2016.01.ebuild
@@ -0,0 +1,19 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+KMNAME="kdepim"
+KMMODULE="icons"
+inherit kde4-meta
+
+DESCRIPTION="KDE PIM icons (noakonadi branch)"
+IUSE=""
+KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
+
+src_install() {
+   kde4-meta_src_install
+   # colliding with oxygen icons
+   rm -rf 
"${ED}"/${KDEDIR}/share/icons/oxygen/16x16/status/meeting-organizer.png
+}



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

2016-02-06 Thread Andreas Hüttel
commit: 3107b1c75ce5d4c8ae20274d074f1675f4820096
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sun Jan 24 23:04:31 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Sat Feb  6 15:58:32 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3107b1c7

kde-apps/kaddressbook: Version bump

Package-Manager: portage-2.2.27

 kde-apps/kaddressbook/Manifest |  1 +
 .../kaddressbook/kaddressbook-4.4.2016.01.ebuild   | 53 ++
 2 files changed, 54 insertions(+)

diff --git a/kde-apps/kaddressbook/Manifest b/kde-apps/kaddressbook/Manifest
index 6508138..cbcb87d 100644
--- a/kde-apps/kaddressbook/Manifest
+++ b/kde-apps/kaddressbook/Manifest
@@ -1,3 +1,4 @@
 DIST kdepim-4.14.10.tar.xz 14585020 SHA256 
edad865b81259331780a25906127e105d06fda8aa56f6f11cfee4bc8f85bb7e2 SHA512 
aa7e5a488964d11d37e89053993bb0bed4860072dbb8ae1851df881713a15ec5aa4e428de9b85a8bef678ace307b33f186314fe5a8011521e30331a1691b
 WHIRLPOOL 
358589e29baeb2f7bf648d1bbccb9bbf37c4c1a447f05a2eff472b50282d7d5118ad40ced2f93ac7f47f2c394f745216632d33be389e82f88efd69386f6ab57d
 DIST kdepim-4.14.8.tar.xz 14575884 SHA256 
52b4174924387030c1b3803267f099f3534aa8ccde796953d6cf34b4aabbe3a7 SHA512 
687b0db97476e692718039153a1ee60cf9ddab8d9adad06abba702a170d49488f60f0fe050a339db2da2a5996d1bdbe1faec73c1c2e2b655fa9ea66aa538899c
 WHIRLPOOL 
4ce31c3c526a0eed7819137cb5c29450da75fac8a7f4f74e25794b6617bbd7e12987bb45983408ae87bd892a57508d171941b9c4e1a75324773611d950fe55e4
 DIST kdepim-4.4.2015.06.tar.xz 8901968 SHA256 
d9153c57e697ca33d0bd82f1f93ed2befdabbe3822189c1c8acbdf7bf9bbaec6 SHA512 
10e89ff1bb22ef03ae2128b800f87c76da945703fa98c07fa0ac29deb17c724beeca84995c50b067138ab7cf0543112173eb850d897b38c512a25974bfc15e1e
 WHIRLPOOL 
543b9d629380e9923b38c414cf6e7390437a48acfb31b9ed934e9655bb1efb1f480065942775dc68d8382e639e4df122f953388dad90a9fadb3734d2f2fe72f0
+DIST kdepim-4.4.2016.01.tar.xz 8964248 SHA256 
19f4d6ab4bcddf5a0e6acae50c20d0b8fbb482503e47e75c86955637d249cefa SHA512 
a04737cc89f96e3635a19c492c9f3f31e7554aa8a237fb0ad8f5fe8c02e7e30911dd5d93bf0f27fd38603e496e02f3ef1d3064e159c99c71dea379199d1e0e03
 WHIRLPOOL 
9f02f5799b3a10a9b18b4c8cb34084051991cb7240d2b818cd2b58bde05abde2ef3126b3960f2554c7e5c4930266e561c1715c21fe72136654e28184b5083089

diff --git a/kde-apps/kaddressbook/kaddressbook-4.4.2016.01.ebuild 
b/kde-apps/kaddressbook/kaddressbook-4.4.2016.01.ebuild
new file mode 100644
index 000..b9521e8
--- /dev/null
+++ b/kde-apps/kaddressbook/kaddressbook-4.4.2016.01.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+KMNAME="kdepim"
+KDE_HANDBOOK=optional
+inherit kde4-meta
+
+DESCRIPTION="The KDE Address Book (noakonadi branch)"
+KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
+IUSE="debug"
+
+DEPEND="
+   $(add_kdebase_dep kdelibs '' 4.13.1)
+   $(add_kdeapps_dep kdepimlibs '' 4.13.1)
+   $(add_kdeapps_dep libkdepim '' 4.4.2015)
+   $(add_kdeapps_dep libkleo '' 4.4.2015)
+"
+RDEPEND="${DEPEND}"
+
+KMEXTRA="
+   plugins/kaddressbook/
+   plugins/ktexteditor/
+"
+KMEXTRACTONLY="
+   libkleo/
+"
+
+KMLOADLIBS="libkdepim"
+
+src_install() {
+   kde4-meta_src_install
+
+   # file collision with kde-apps/kdepimlibs-4.14.9
+   rm -f "${ED}usr/share/kde4/servicetypes/kaddressbookimprotocol.desktop" 
|| die
+
+   # install additional headers needed by kresources
+   insinto "${KDEDIR}"/include/${PN}
+   doins "${CMAKE_BUILD_DIR}"/${PN}/common/*.h
+   doins "${S}"/${PN}/common/*.h
+}
+
+pkg_postinst() {
+   kde4-meta_pkg_postinst
+
+   if ! has_version kde-apps/kdepim-kresources:${SLOT}; then
+   echo
+   elog "For groupware functionality, please install 
kde-apps/kdepim-kresources:${SLOT}"
+   echo
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: kde-apps/kdepim-meta/, kde-apps/korganizer/, kde-apps/kdepim-kresources/, ...

2016-02-06 Thread Andreas Hüttel
commit: 0692e8d32ccfeb521f84565d3ff67107408c547a
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat Feb  6 15:02:23 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Sat Feb  6 15:58:32 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0692e8d3

kde-apps: Add HOMEPAGE setting to kdepim 4.4 noakonadi branch

 kde-apps/akregator/akregator-4.4.2016.01.ebuild | 4 ++--
 kde-apps/blogilo/blogilo-4.4.2016.01.ebuild | 2 +-
 kde-apps/kabcclient/kabcclient-4.4.2016.01.ebuild   | 1 +
 kde-apps/kaddressbook/kaddressbook-4.4.2016.01.ebuild   | 1 +
 kde-apps/kalarm/kalarm-4.4.2016.01.ebuild   | 1 +
 kde-apps/kdepim-icons/kdepim-icons-4.4.2016.01.ebuild   | 1 +
 kde-apps/kdepim-kresources/kdepim-kresources-4.4.2016.01.ebuild | 1 +
 kde-apps/kdepim-meta/kdepim-meta-4.4.2016.01.ebuild | 1 +
 kde-apps/kdepim-wizards/kdepim-wizards-4.4.2016.01.ebuild   | 1 +
 kde-apps/kjots/kjots-4.4.2016.01.ebuild | 1 +
 kde-apps/kleopatra/kleopatra-4.4.2016.01.ebuild | 1 +
 kde-apps/kmail/kmail-4.4.2016.01.ebuild | 1 +
 kde-apps/knode/knode-4.4.2016.01.ebuild | 1 +
 kde-apps/knotes/knotes-4.4.2016.01.ebuild   | 1 +
 kde-apps/konsolekalendar/konsolekalendar-4.4.2016.01.ebuild | 1 +
 kde-apps/kontact/kontact-4.4.2016.01.ebuild | 1 +
 kde-apps/korganizer/korganizer-4.4.2016.01.ebuild   | 1 +
 kde-apps/ktimetracker/ktimetracker-4.4.2016.01.ebuild   | 1 +
 kde-apps/libkdepim/libkdepim-4.4.2016.01.ebuild | 1 +
 kde-apps/libkleo/libkleo-4.4.2016.01.ebuild | 1 +
 kde-apps/libkpgp/libkpgp-4.4.2016.01.ebuild | 1 +
 21 files changed, 22 insertions(+), 3 deletions(-)

diff --git a/kde-apps/akregator/akregator-4.4.2016.01.ebuild 
b/kde-apps/akregator/akregator-4.4.2016.01.ebuild
index 3199642..8d7b76b 100644
--- a/kde-apps/akregator/akregator-4.4.2016.01.ebuild
+++ b/kde-apps/akregator/akregator-4.4.2016.01.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$
 
@@ -9,7 +9,7 @@ KDE_HANDBOOK=optional
 inherit kde4-meta
 
 DESCRIPTION="KDE news feed aggregator (noakonadi branch)"
-HOMEPAGE="https://www.kde.org/applications/internet/akregator;
+HOMEPAGE="https://launchpad.net/~pali/+archive/ubuntu/kdepim-noakonadi;
 KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
 IUSE="debug"
 

diff --git a/kde-apps/blogilo/blogilo-4.4.2016.01.ebuild 
b/kde-apps/blogilo/blogilo-4.4.2016.01.ebuild
index 821d94e..c63bb07 100644
--- a/kde-apps/blogilo/blogilo-4.4.2016.01.ebuild
+++ b/kde-apps/blogilo/blogilo-4.4.2016.01.ebuild
@@ -9,7 +9,7 @@ KDE_HANDBOOK=optional
 inherit kde4-meta
 
 DESCRIPTION="KDE Blogging Client (noakonadi branch)"
-HOMEPAGE="https://www.kde.org/applications/internet/blogilo;
+HOMEPAGE="https://launchpad.net/~pali/+archive/ubuntu/kdepim-noakonadi;
 KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
 IUSE="debug"
 

diff --git a/kde-apps/kabcclient/kabcclient-4.4.2016.01.ebuild 
b/kde-apps/kabcclient/kabcclient-4.4.2016.01.ebuild
index e5393a1..fa0800c 100644
--- a/kde-apps/kabcclient/kabcclient-4.4.2016.01.ebuild
+++ b/kde-apps/kabcclient/kabcclient-4.4.2016.01.ebuild
@@ -10,6 +10,7 @@ KDE_HANDBOOK=optional
 inherit kde4-meta
 
 DESCRIPTION="A command line client for accessing the KDE addressbook 
(noakonadi branch)"
+HOMEPAGE="https://launchpad.net/~pali/+archive/ubuntu/kdepim-noakonadi;
 KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
 IUSE="debug"
 

diff --git a/kde-apps/kaddressbook/kaddressbook-4.4.2016.01.ebuild 
b/kde-apps/kaddressbook/kaddressbook-4.4.2016.01.ebuild
index b9521e8..7766b55 100644
--- a/kde-apps/kaddressbook/kaddressbook-4.4.2016.01.ebuild
+++ b/kde-apps/kaddressbook/kaddressbook-4.4.2016.01.ebuild
@@ -9,6 +9,7 @@ KDE_HANDBOOK=optional
 inherit kde4-meta
 
 DESCRIPTION="The KDE Address Book (noakonadi branch)"
+HOMEPAGE="https://launchpad.net/~pali/+archive/ubuntu/kdepim-noakonadi;
 KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
 IUSE="debug"
 

diff --git a/kde-apps/kalarm/kalarm-4.4.2016.01.ebuild 
b/kde-apps/kalarm/kalarm-4.4.2016.01.ebuild
index 0a3dbdd..ae3e443 100644
--- a/kde-apps/kalarm/kalarm-4.4.2016.01.ebuild
+++ b/kde-apps/kalarm/kalarm-4.4.2016.01.ebuild
@@ -9,6 +9,7 @@ KDE_HANDBOOK=optional
 inherit kde4-meta
 
 DESCRIPTION="Personal alarm message, command and email scheduler for KDE 
(noakonadi branch)"
+HOMEPAGE="https://launchpad.net/~pali/+archive/ubuntu/kdepim-noakonadi;
 KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
 IUSE="debug"
 

diff --git a/kde-apps/kdepim-icons/kdepim-icons-4.4.2016.01.ebuild 
b/kde-apps/kdepim-icons/kdepim-icons-4.4.2016.01.ebuild
index 3425a60..7d5c086 100644
--- 

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

2016-02-06 Thread Andreas Hüttel
commit: 0a4005a7f9a3a0090b960418eb2b1eefe1b8d683
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sun Jan 24 23:13:15 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Sat Feb  6 15:58:32 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a4005a7

kde-apps/kdepim-kresources: Version bump

Package-Manager: portage-2.2.27

 kde-apps/kdepim-kresources/Manifest|  1 +
 .../kdepim-kresources-4.4.2016.01.ebuild   | 48 ++
 2 files changed, 49 insertions(+)

diff --git a/kde-apps/kdepim-kresources/Manifest 
b/kde-apps/kdepim-kresources/Manifest
index 6508138..cbcb87d 100644
--- a/kde-apps/kdepim-kresources/Manifest
+++ b/kde-apps/kdepim-kresources/Manifest
@@ -1,3 +1,4 @@
 DIST kdepim-4.14.10.tar.xz 14585020 SHA256 
edad865b81259331780a25906127e105d06fda8aa56f6f11cfee4bc8f85bb7e2 SHA512 
aa7e5a488964d11d37e89053993bb0bed4860072dbb8ae1851df881713a15ec5aa4e428de9b85a8bef678ace307b33f186314fe5a8011521e30331a1691b
 WHIRLPOOL 
358589e29baeb2f7bf648d1bbccb9bbf37c4c1a447f05a2eff472b50282d7d5118ad40ced2f93ac7f47f2c394f745216632d33be389e82f88efd69386f6ab57d
 DIST kdepim-4.14.8.tar.xz 14575884 SHA256 
52b4174924387030c1b3803267f099f3534aa8ccde796953d6cf34b4aabbe3a7 SHA512 
687b0db97476e692718039153a1ee60cf9ddab8d9adad06abba702a170d49488f60f0fe050a339db2da2a5996d1bdbe1faec73c1c2e2b655fa9ea66aa538899c
 WHIRLPOOL 
4ce31c3c526a0eed7819137cb5c29450da75fac8a7f4f74e25794b6617bbd7e12987bb45983408ae87bd892a57508d171941b9c4e1a75324773611d950fe55e4
 DIST kdepim-4.4.2015.06.tar.xz 8901968 SHA256 
d9153c57e697ca33d0bd82f1f93ed2befdabbe3822189c1c8acbdf7bf9bbaec6 SHA512 
10e89ff1bb22ef03ae2128b800f87c76da945703fa98c07fa0ac29deb17c724beeca84995c50b067138ab7cf0543112173eb850d897b38c512a25974bfc15e1e
 WHIRLPOOL 
543b9d629380e9923b38c414cf6e7390437a48acfb31b9ed934e9655bb1efb1f480065942775dc68d8382e639e4df122f953388dad90a9fadb3734d2f2fe72f0
+DIST kdepim-4.4.2016.01.tar.xz 8964248 SHA256 
19f4d6ab4bcddf5a0e6acae50c20d0b8fbb482503e47e75c86955637d249cefa SHA512 
a04737cc89f96e3635a19c492c9f3f31e7554aa8a237fb0ad8f5fe8c02e7e30911dd5d93bf0f27fd38603e496e02f3ef1d3064e159c99c71dea379199d1e0e03
 WHIRLPOOL 
9f02f5799b3a10a9b18b4c8cb34084051991cb7240d2b818cd2b58bde05abde2ef3126b3960f2554c7e5c4930266e561c1715c21fe72136654e28184b5083089

diff --git a/kde-apps/kdepim-kresources/kdepim-kresources-4.4.2016.01.ebuild 
b/kde-apps/kdepim-kresources/kdepim-kresources-4.4.2016.01.ebuild
new file mode 100644
index 000..dd4d2b7
--- /dev/null
+++ b/kde-apps/kdepim-kresources/kdepim-kresources-4.4.2016.01.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+KMNAME="kdepim"
+KMMODULE="kresources"
+inherit kde4-meta
+
+DESCRIPTION="KDE PIM groupware plugin collection (noakonadi branch)"
+IUSE="debug"
+KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
+
+DEPEND="
+   $(add_kdeapps_dep kdepimlibs '' 4.6)
+   $(add_kdeapps_dep libkdepim '' 4.4.2015)
+   $(add_kdeapps_dep kaddressbook '' 4.4.2015)
+"
+RDEPEND="${DEPEND}"
+
+KMEXTRACTONLY="
+   kaddressbook/common/
+   kmail/
+   knotes/
+   korganizer/version.h
+"
+
+KMLOADLIBS="libkdepim"
+
+src_prepare() {
+   local kconfig_compiler="${EKDEDIR}/bin/kconfig_compiler"
+
+   pushd kaddressbook/common
+   # create the kabprefs_base.h file
+   "${kconfig_compiler}" kaddressbook.kcfg kabprefs_base.kcfgc
+   popd
+
+   kde4-meta_src_prepare
+}
+
+src_install() {
+   kde4-meta_src_install
+
+   # Install headers needed by kdepim-wizards, egroupware stuff gone
+   insinto "${PREFIX}"/include/${PN}
+   doins "${CMAKE_BUILD_DIR}"/${KMMODULE}/{groupwise,slox}/*.h
+}



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

2016-02-06 Thread Andreas Hüttel
commit: 78f8c10660fac17b9135cb899283f400a0904199
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat Feb  6 14:35:04 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Sat Feb  6 15:58:32 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78f8c106

kde-apps/libkleo: Version bump

Package-Manager: portage-2.2.27

 kde-apps/libkleo/Manifest   |  1 +
 kde-apps/libkleo/libkleo-4.4.2016.01.ebuild | 23 +++
 2 files changed, 24 insertions(+)

diff --git a/kde-apps/libkleo/Manifest b/kde-apps/libkleo/Manifest
index 9847602..a776469 100644
--- a/kde-apps/libkleo/Manifest
+++ b/kde-apps/libkleo/Manifest
@@ -1 +1,2 @@
 DIST kdepim-4.4.2015.06.tar.xz 8901968 SHA256 
d9153c57e697ca33d0bd82f1f93ed2befdabbe3822189c1c8acbdf7bf9bbaec6 SHA512 
10e89ff1bb22ef03ae2128b800f87c76da945703fa98c07fa0ac29deb17c724beeca84995c50b067138ab7cf0543112173eb850d897b38c512a25974bfc15e1e
 WHIRLPOOL 
543b9d629380e9923b38c414cf6e7390437a48acfb31b9ed934e9655bb1efb1f480065942775dc68d8382e639e4df122f953388dad90a9fadb3734d2f2fe72f0
+DIST kdepim-4.4.2016.01.tar.xz 8964248 SHA256 
19f4d6ab4bcddf5a0e6acae50c20d0b8fbb482503e47e75c86955637d249cefa SHA512 
a04737cc89f96e3635a19c492c9f3f31e7554aa8a237fb0ad8f5fe8c02e7e30911dd5d93bf0f27fd38603e496e02f3ef1d3064e159c99c71dea379199d1e0e03
 WHIRLPOOL 
9f02f5799b3a10a9b18b4c8cb34084051991cb7240d2b818cd2b58bde05abde2ef3126b3960f2554c7e5c4930266e561c1715c21fe72136654e28184b5083089

diff --git a/kde-apps/libkleo/libkleo-4.4.2016.01.ebuild 
b/kde-apps/libkleo/libkleo-4.4.2016.01.ebuild
new file mode 100644
index 000..e279ec2
--- /dev/null
+++ b/kde-apps/libkleo/libkleo-4.4.2016.01.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+KMNAME="kdepim"
+inherit kde4-meta
+
+DESCRIPTION="KDE library for encryption handling"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="debug"
+
+DEPEND="
+   app-crypt/gpgme
+   $(add_kdeapps_dep kdepimlibs '' 4.6)
+"
+RDEPEND="${DEPEND}
+   app-crypt/gnupg
+"
+
+KMSAVELIBS="true"
+KMEXTRACTONLY="kleopatra/"



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

2016-02-06 Thread Andreas Hüttel
commit: 776677f833329f53d1356d3f3201266573808c98
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Tue Feb  2 00:00:52 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Sat Feb  6 15:58:32 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=776677f8

kde-apps/kleopatra: Version bump

Package-Manager: portage-2.2.27

 kde-apps/kleopatra/Manifest |  1 +
 kde-apps/kleopatra/kleopatra-4.4.2016.01.ebuild | 51 +
 2 files changed, 52 insertions(+)

diff --git a/kde-apps/kleopatra/Manifest b/kde-apps/kleopatra/Manifest
index 69e0972..fde4927 100644
--- a/kde-apps/kleopatra/Manifest
+++ b/kde-apps/kleopatra/Manifest
@@ -1,4 +1,5 @@
 DIST kdepim-4.14.10.tar.xz 14585020 SHA256 
edad865b81259331780a25906127e105d06fda8aa56f6f11cfee4bc8f85bb7e2 SHA512 
aa7e5a488964d11d37e89053993bb0bed4860072dbb8ae1851df881713a15ec5aa4e428de9b85a8bef678ace307b33f186314fe5a8011521e30331a1691b
 WHIRLPOOL 
358589e29baeb2f7bf648d1bbccb9bbf37c4c1a447f05a2eff472b50282d7d5118ad40ced2f93ac7f47f2c394f745216632d33be389e82f88efd69386f6ab57d
 DIST kdepim-4.14.8.tar.xz 14575884 SHA256 
52b4174924387030c1b3803267f099f3534aa8ccde796953d6cf34b4aabbe3a7 SHA512 
687b0db97476e692718039153a1ee60cf9ddab8d9adad06abba702a170d49488f60f0fe050a339db2da2a5996d1bdbe1faec73c1c2e2b655fa9ea66aa538899c
 WHIRLPOOL 
4ce31c3c526a0eed7819137cb5c29450da75fac8a7f4f74e25794b6617bbd7e12987bb45983408ae87bd892a57508d171941b9c4e1a75324773611d950fe55e4
 DIST kdepim-4.4.2015.06.tar.xz 8901968 SHA256 
d9153c57e697ca33d0bd82f1f93ed2befdabbe3822189c1c8acbdf7bf9bbaec6 SHA512 
10e89ff1bb22ef03ae2128b800f87c76da945703fa98c07fa0ac29deb17c724beeca84995c50b067138ab7cf0543112173eb850d897b38c512a25974bfc15e1e
 WHIRLPOOL 
543b9d629380e9923b38c414cf6e7390437a48acfb31b9ed934e9655bb1efb1f480065942775dc68d8382e639e4df122f953388dad90a9fadb3734d2f2fe72f0
+DIST kdepim-4.4.2016.01.tar.xz 8964248 SHA256 
19f4d6ab4bcddf5a0e6acae50c20d0b8fbb482503e47e75c86955637d249cefa SHA512 
a04737cc89f96e3635a19c492c9f3f31e7554aa8a237fb0ad8f5fe8c02e7e30911dd5d93bf0f27fd38603e496e02f3ef1d3064e159c99c71dea379199d1e0e03
 WHIRLPOOL 
9f02f5799b3a10a9b18b4c8cb34084051991cb7240d2b818cd2b58bde05abde2ef3126b3960f2554c7e5c4930266e561c1715c21fe72136654e28184b5083089
 DIST kleopatra-4.4.11.1-libassuan2.patch.bz2 9404 SHA256 
83d6930917e59450690394ee948b30fe138d631928d4afffc8be25d1a41e75c2 SHA512 
4f514e6dfbe89d777604485d3144ada9a600b1c3c031a732b34b0cb7533eadae545e67a2819e43fafd4b7ada84845c25e1f93b01b06fc169daf48734684893de
 WHIRLPOOL 
f749ee88b13a905138a0c63a5833c71470f77923125f6c93e09fd83d399edfd1497342112ef420c7823d570d867117b5f821f46ed0d1ad961c9497142252

diff --git a/kde-apps/kleopatra/kleopatra-4.4.2016.01.ebuild 
b/kde-apps/kleopatra/kleopatra-4.4.2016.01.ebuild
new file mode 100644
index 000..abf6565
--- /dev/null
+++ b/kde-apps/kleopatra/kleopatra-4.4.2016.01.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+KMNAME="kdepim"
+KDE_HANDBOOK=optional
+inherit kde4-meta
+
+DESCRIPTION="Kleopatra - KDE X.509 key manager (noakonadi branch)"
+KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
+IUSE="debug"
+
+DEPEND="
+   app-crypt/gpgme
+   >=dev-libs/libassuan-2.0.0
+   dev-libs/libgpg-error
+   $(add_kdeapps_dep kdepimlibs '' 4.6)
+   $(add_kdeapps_dep libkdepim '' 4.4.2015)
+   $(add_kdeapps_dep libkleo '' 4.4.2015)
+"
+RDEPEND="${DEPEND}
+   app-crypt/gnupg
+"
+
+RESTRICT=test
+# bug 399431
+
+KMEXTRACTONLY="
+   libkleo
+"
+KMLOADLIBS="libkleo"
+
+src_unpack() {
+   if use handbook; then
+   KMEXTRA="
+   doc/kwatchgnupg
+   "
+   fi
+
+   kde4-meta_src_unpack
+}
+
+src_configure() {
+   mycmakeargs=(
+   -DWITH_QGPGME=ON
+   )
+
+   kde4-meta_src_configure
+}



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

2016-02-06 Thread Andreas Hüttel
commit: 547324020194eb816ceeca9f57dc7396a4bda753
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat Feb  6 14:33:13 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Sat Feb  6 15:58:32 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54732402

kde-apps/libkdepim: Version bump

Package-Manager: portage-2.2.27

 kde-apps/libkdepim/Manifest |  1 +
 kde-apps/libkdepim/libkdepim-4.4.2016.01.ebuild | 38 +
 2 files changed, 39 insertions(+)

diff --git a/kde-apps/libkdepim/Manifest b/kde-apps/libkdepim/Manifest
index 9847602..a776469 100644
--- a/kde-apps/libkdepim/Manifest
+++ b/kde-apps/libkdepim/Manifest
@@ -1 +1,2 @@
 DIST kdepim-4.4.2015.06.tar.xz 8901968 SHA256 
d9153c57e697ca33d0bd82f1f93ed2befdabbe3822189c1c8acbdf7bf9bbaec6 SHA512 
10e89ff1bb22ef03ae2128b800f87c76da945703fa98c07fa0ac29deb17c724beeca84995c50b067138ab7cf0543112173eb850d897b38c512a25974bfc15e1e
 WHIRLPOOL 
543b9d629380e9923b38c414cf6e7390437a48acfb31b9ed934e9655bb1efb1f480065942775dc68d8382e639e4df122f953388dad90a9fadb3734d2f2fe72f0
+DIST kdepim-4.4.2016.01.tar.xz 8964248 SHA256 
19f4d6ab4bcddf5a0e6acae50c20d0b8fbb482503e47e75c86955637d249cefa SHA512 
a04737cc89f96e3635a19c492c9f3f31e7554aa8a237fb0ad8f5fe8c02e7e30911dd5d93bf0f27fd38603e496e02f3ef1d3064e159c99c71dea379199d1e0e03
 WHIRLPOOL 
9f02f5799b3a10a9b18b4c8cb34084051991cb7240d2b818cd2b58bde05abde2ef3126b3960f2554c7e5c4930266e561c1715c21fe72136654e28184b5083089

diff --git a/kde-apps/libkdepim/libkdepim-4.4.2016.01.ebuild 
b/kde-apps/libkdepim/libkdepim-4.4.2016.01.ebuild
new file mode 100644
index 000..8f3c2f1
--- /dev/null
+++ b/kde-apps/libkdepim/libkdepim-4.4.2016.01.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+KMNAME="kdepim"
+inherit kde4-meta
+
+DESCRIPTION="Common library for KDE PIM apps (noakonadi branch)"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="debug"
+
+DEPEND="
+   $(add_kdeapps_dep kdepimlibs '' 4.6)
+"
+RDEPEND="${DEPEND}"
+
+KMEXTRACTONLY="
+   korganizer/korgac/org.kde.korganizer.KOrgac.xml
+   kaddressbook/org.kde.KAddressbook.Core.xml
+"
+
+KMSAVELIBS="true"
+
+# the one test that can be run requires a dbus session bus
+RESTRICT=test
+
+src_install() {
+   kde4-meta_src_install
+
+   # install additional generated headers that are needed by other 
packages that
+   # are derived from kdepim. e.g. kmail.
+   pushd "${CMAKE_BUILD_DIR}/libkdepim/" 2>/dev/null || die "pushd 
libkdepim failed"
+   insinto "${PREFIX}/include"
+   doins ui_addresspicker.h ui_categoryselectdialog_base.h || die "Failed 
to install extra header files."
+   popd 2>/dev/null
+}



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

2016-02-06 Thread Andreas Hüttel
commit: 410ce4ad4fe73b34f5da8724c30404051a0ad1a7
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat Feb  6 14:29:38 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Sat Feb  6 15:58:32 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=410ce4ad

kde-apps/korganizer: Version bump

Package-Manager: portage-2.2.27

 kde-apps/korganizer/Manifest  |  1 +
 kde-apps/korganizer/korganizer-4.4.2016.01.ebuild | 62 +++
 2 files changed, 63 insertions(+)

diff --git a/kde-apps/korganizer/Manifest b/kde-apps/korganizer/Manifest
index 6508138..cbcb87d 100644
--- a/kde-apps/korganizer/Manifest
+++ b/kde-apps/korganizer/Manifest
@@ -1,3 +1,4 @@
 DIST kdepim-4.14.10.tar.xz 14585020 SHA256 
edad865b81259331780a25906127e105d06fda8aa56f6f11cfee4bc8f85bb7e2 SHA512 
aa7e5a488964d11d37e89053993bb0bed4860072dbb8ae1851df881713a15ec5aa4e428de9b85a8bef678ace307b33f186314fe5a8011521e30331a1691b
 WHIRLPOOL 
358589e29baeb2f7bf648d1bbccb9bbf37c4c1a447f05a2eff472b50282d7d5118ad40ced2f93ac7f47f2c394f745216632d33be389e82f88efd69386f6ab57d
 DIST kdepim-4.14.8.tar.xz 14575884 SHA256 
52b4174924387030c1b3803267f099f3534aa8ccde796953d6cf34b4aabbe3a7 SHA512 
687b0db97476e692718039153a1ee60cf9ddab8d9adad06abba702a170d49488f60f0fe050a339db2da2a5996d1bdbe1faec73c1c2e2b655fa9ea66aa538899c
 WHIRLPOOL 
4ce31c3c526a0eed7819137cb5c29450da75fac8a7f4f74e25794b6617bbd7e12987bb45983408ae87bd892a57508d171941b9c4e1a75324773611d950fe55e4
 DIST kdepim-4.4.2015.06.tar.xz 8901968 SHA256 
d9153c57e697ca33d0bd82f1f93ed2befdabbe3822189c1c8acbdf7bf9bbaec6 SHA512 
10e89ff1bb22ef03ae2128b800f87c76da945703fa98c07fa0ac29deb17c724beeca84995c50b067138ab7cf0543112173eb850d897b38c512a25974bfc15e1e
 WHIRLPOOL 
543b9d629380e9923b38c414cf6e7390437a48acfb31b9ed934e9655bb1efb1f480065942775dc68d8382e639e4df122f953388dad90a9fadb3734d2f2fe72f0
+DIST kdepim-4.4.2016.01.tar.xz 8964248 SHA256 
19f4d6ab4bcddf5a0e6acae50c20d0b8fbb482503e47e75c86955637d249cefa SHA512 
a04737cc89f96e3635a19c492c9f3f31e7554aa8a237fb0ad8f5fe8c02e7e30911dd5d93bf0f27fd38603e496e02f3ef1d3064e159c99c71dea379199d1e0e03
 WHIRLPOOL 
9f02f5799b3a10a9b18b4c8cb34084051991cb7240d2b818cd2b58bde05abde2ef3126b3960f2554c7e5c4930266e561c1715c21fe72136654e28184b5083089

diff --git a/kde-apps/korganizer/korganizer-4.4.2016.01.ebuild 
b/kde-apps/korganizer/korganizer-4.4.2016.01.ebuild
new file mode 100644
index 000..4416476
--- /dev/null
+++ b/kde-apps/korganizer/korganizer-4.4.2016.01.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+KMNAME="kdepim"
+KDE_HANDBOOK=optional
+inherit kde4-meta
+
+DESCRIPTION="A Personal Organizer for KDE (noakonadi branch)"
+KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
+IUSE="debug"
+
+DEPEND="
+   $(add_kdeapps_dep kdepimlibs '' 4.6)
+   $(add_kdeapps_dep libkdepim '' 4.4.2015)
+   sys-libs/zlib
+"
+RDEPEND="${DEPEND}
+   $(add_kdeapps_dep ktimezoned '' 4.14.3)
+"
+
+KMLOADLIBS="libkdepim"
+KMEXTRA="kdgantt1"
+
+# xml targets from kmail are being uncommented by kde4-meta.eclass
+KMEXTRACTONLY="
+   kmail/
+   knode/org.kde.knode.xml
+   kaddressbook/org.kde.KAddressbook.Core.xml
+"
+
+# bug 378151
+RESTRICT=test
+
+src_unpack() {
+   if use kontact; then
+   KMEXTRA="${KMEXTRA}
+   kontact/plugins/planner/
+   kontact/plugins/specialdates/
+   "
+   fi
+
+   kde4-meta_src_unpack
+}
+
+src_prepare() {
+   use handbook && epatch "${FILESDIR}/${PN}-4.4.2015.06-handbook.patch"
+
+   kde4-meta_src_prepare
+}
+
+pkg_postinst() {
+   kde4-meta_pkg_postinst
+
+   if ! has_version kde-apps/kdepim-kresources:${SLOT}; then
+   echo
+   elog "For groupware functionality, please install 
kde-apps/kdepim-kresources:${SLOT}"
+   echo
+   fi
+}



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

2016-02-06 Thread Andreas Hüttel
commit: faf20415cf609b2726bc1ba6de42b413ff974fac
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat Feb  6 14:27:13 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Sat Feb  6 15:58:32 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=faf20415

kde-apps/kontact: Version bump

Package-Manager: portage-2.2.27

 kde-apps/kontact/Manifest   |  1 +
 kde-apps/kontact/kontact-4.4.2016.01.ebuild | 51 +
 2 files changed, 52 insertions(+)

diff --git a/kde-apps/kontact/Manifest b/kde-apps/kontact/Manifest
index 6508138..cbcb87d 100644
--- a/kde-apps/kontact/Manifest
+++ b/kde-apps/kontact/Manifest
@@ -1,3 +1,4 @@
 DIST kdepim-4.14.10.tar.xz 14585020 SHA256 
edad865b81259331780a25906127e105d06fda8aa56f6f11cfee4bc8f85bb7e2 SHA512 
aa7e5a488964d11d37e89053993bb0bed4860072dbb8ae1851df881713a15ec5aa4e428de9b85a8bef678ace307b33f186314fe5a8011521e30331a1691b
 WHIRLPOOL 
358589e29baeb2f7bf648d1bbccb9bbf37c4c1a447f05a2eff472b50282d7d5118ad40ced2f93ac7f47f2c394f745216632d33be389e82f88efd69386f6ab57d
 DIST kdepim-4.14.8.tar.xz 14575884 SHA256 
52b4174924387030c1b3803267f099f3534aa8ccde796953d6cf34b4aabbe3a7 SHA512 
687b0db97476e692718039153a1ee60cf9ddab8d9adad06abba702a170d49488f60f0fe050a339db2da2a5996d1bdbe1faec73c1c2e2b655fa9ea66aa538899c
 WHIRLPOOL 
4ce31c3c526a0eed7819137cb5c29450da75fac8a7f4f74e25794b6617bbd7e12987bb45983408ae87bd892a57508d171941b9c4e1a75324773611d950fe55e4
 DIST kdepim-4.4.2015.06.tar.xz 8901968 SHA256 
d9153c57e697ca33d0bd82f1f93ed2befdabbe3822189c1c8acbdf7bf9bbaec6 SHA512 
10e89ff1bb22ef03ae2128b800f87c76da945703fa98c07fa0ac29deb17c724beeca84995c50b067138ab7cf0543112173eb850d897b38c512a25974bfc15e1e
 WHIRLPOOL 
543b9d629380e9923b38c414cf6e7390437a48acfb31b9ed934e9655bb1efb1f480065942775dc68d8382e639e4df122f953388dad90a9fadb3734d2f2fe72f0
+DIST kdepim-4.4.2016.01.tar.xz 8964248 SHA256 
19f4d6ab4bcddf5a0e6acae50c20d0b8fbb482503e47e75c86955637d249cefa SHA512 
a04737cc89f96e3635a19c492c9f3f31e7554aa8a237fb0ad8f5fe8c02e7e30911dd5d93bf0f27fd38603e496e02f3ef1d3064e159c99c71dea379199d1e0e03
 WHIRLPOOL 
9f02f5799b3a10a9b18b4c8cb34084051991cb7240d2b818cd2b58bde05abde2ef3126b3960f2554c7e5c4930266e561c1715c21fe72136654e28184b5083089

diff --git a/kde-apps/kontact/kontact-4.4.2016.01.ebuild 
b/kde-apps/kontact/kontact-4.4.2016.01.ebuild
new file mode 100644
index 000..9c4aef1
--- /dev/null
+++ b/kde-apps/kontact/kontact-4.4.2016.01.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+KMNAME="kdepim"
+KDE_HANDBOOK=optional
+inherit kde4-meta
+
+DESCRIPTION="KDE personal information manager (noakonadi branch)"
+KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
+IUSE="debug"
+
+DEPEND="
+   $(add_kdeapps_dep kdepimlibs '' 4.6)
+   $(add_kdeapps_dep libkdepim '' 4.4.2015)
+"
+RDEPEND="${DEPEND}"
+
+KMLOADLIBS="libkdepim"
+KMSAVELIBS="true"
+
+# We remove plugins that are related to external kdepim programs. This way
+# kontact doesn't have to depend on all programs it has plugins for.
+# kcontactmanager gone from kdesvn
+#
+# xml targets from kmail/ are being uncommented by kde4-meta.eclass
+KMEXTRACTONLY="
+   kmail/
+   kontact/plugins/akregator/
+   kontact/plugins/kaddressbook/
+   kontact/plugins/kjots/
+   kontact/plugins/kmail/
+   kontact/plugins/knode/
+   kontact/plugins/knotes/
+   kontact/plugins/korganizer/
+   kontact/plugins/ktimetracker/
+   kontact/plugins/planner/
+   kontact/plugins/specialdates/
+"
+
+src_unpack() {
+   if use handbook; then
+   KMEXTRA+="
+   doc/kontact-admin/
+   "
+   fi
+
+   kde4-meta_src_unpack
+}



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

2016-02-06 Thread Andreas Hüttel
commit: 37b153636e6fd38738c6bafc5ba102b9fc223f15
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Tue Feb  2 00:04:18 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Sat Feb  6 15:58:32 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37b15363

kde-apps/kmail: Version bump

Package-Manager: portage-2.2.27

 kde-apps/kmail/Manifest |  1 +
 kde-apps/kmail/kmail-4.4.2016.01.ebuild | 75 +
 2 files changed, 76 insertions(+)

diff --git a/kde-apps/kmail/Manifest b/kde-apps/kmail/Manifest
index 6508138..cbcb87d 100644
--- a/kde-apps/kmail/Manifest
+++ b/kde-apps/kmail/Manifest
@@ -1,3 +1,4 @@
 DIST kdepim-4.14.10.tar.xz 14585020 SHA256 
edad865b81259331780a25906127e105d06fda8aa56f6f11cfee4bc8f85bb7e2 SHA512 
aa7e5a488964d11d37e89053993bb0bed4860072dbb8ae1851df881713a15ec5aa4e428de9b85a8bef678ace307b33f186314fe5a8011521e30331a1691b
 WHIRLPOOL 
358589e29baeb2f7bf648d1bbccb9bbf37c4c1a447f05a2eff472b50282d7d5118ad40ced2f93ac7f47f2c394f745216632d33be389e82f88efd69386f6ab57d
 DIST kdepim-4.14.8.tar.xz 14575884 SHA256 
52b4174924387030c1b3803267f099f3534aa8ccde796953d6cf34b4aabbe3a7 SHA512 
687b0db97476e692718039153a1ee60cf9ddab8d9adad06abba702a170d49488f60f0fe050a339db2da2a5996d1bdbe1faec73c1c2e2b655fa9ea66aa538899c
 WHIRLPOOL 
4ce31c3c526a0eed7819137cb5c29450da75fac8a7f4f74e25794b6617bbd7e12987bb45983408ae87bd892a57508d171941b9c4e1a75324773611d950fe55e4
 DIST kdepim-4.4.2015.06.tar.xz 8901968 SHA256 
d9153c57e697ca33d0bd82f1f93ed2befdabbe3822189c1c8acbdf7bf9bbaec6 SHA512 
10e89ff1bb22ef03ae2128b800f87c76da945703fa98c07fa0ac29deb17c724beeca84995c50b067138ab7cf0543112173eb850d897b38c512a25974bfc15e1e
 WHIRLPOOL 
543b9d629380e9923b38c414cf6e7390437a48acfb31b9ed934e9655bb1efb1f480065942775dc68d8382e639e4df122f953388dad90a9fadb3734d2f2fe72f0
+DIST kdepim-4.4.2016.01.tar.xz 8964248 SHA256 
19f4d6ab4bcddf5a0e6acae50c20d0b8fbb482503e47e75c86955637d249cefa SHA512 
a04737cc89f96e3635a19c492c9f3f31e7554aa8a237fb0ad8f5fe8c02e7e30911dd5d93bf0f27fd38603e496e02f3ef1d3064e159c99c71dea379199d1e0e03
 WHIRLPOOL 
9f02f5799b3a10a9b18b4c8cb34084051991cb7240d2b818cd2b58bde05abde2ef3126b3960f2554c7e5c4930266e561c1715c21fe72136654e28184b5083089

diff --git a/kde-apps/kmail/kmail-4.4.2016.01.ebuild 
b/kde-apps/kmail/kmail-4.4.2016.01.ebuild
new file mode 100644
index 000..9b49b62
--- /dev/null
+++ b/kde-apps/kmail/kmail-4.4.2016.01.ebuild
@@ -0,0 +1,75 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+KMNAME="kdepim"
+KDE_HANDBOOK=optional
+VIRTUALX_REQUIRED=test
+inherit flag-o-matic kde4-meta
+
+DESCRIPTION="Email component of Kontact, the integrated personal information 
manager of KDE (noakonadi branch)"
+KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
+IUSE="debug"
+
+DEPEND="
+   $(add_kdebase_dep kdelibs '' 4.13.1)
+   $(add_kdeapps_dep kdepimlibs '' 4.13.1)
+   $(add_kdeapps_dep libkdepim '' 4.4.11.1-r1)
+   $(add_kdeapps_dep libkleo '' 4.4.2015)
+   $(add_kdeapps_dep libkpgp '' 4.4.2015)
+"
+RDEPEND="${DEPEND}"
+
+KMEXTRACTONLY="
+   korganizer/org.kde.Korganizer.Calendar.xml
+   libkleo/
+   libkpgp/
+"
+KMEXTRA="
+   kmailcvt/
+   ksendemail/
+   libksieve/
+   messagecore/
+   messagelist/
+   messageviewer/
+   mimelib/
+   plugins/kmail/
+"
+KMLOADLIBS="libkdepim"
+
+PATCHES=(
+   "${FILESDIR}/${PN}-4.4.9-nodbus.patch"
+)
+
+src_configure() {
+   # Bug 308903
+   use ppc64 && append-flags -mminimal-toc
+
+   mycmakeargs=(
+   -DWITH_IndicateQt=OFF
+   )
+
+   kde4-meta_src_configure
+}
+
+src_compile() {
+   kde4-meta_src_compile kmail_xml
+   kde4-meta_src_compile
+}
+
+pkg_postinst() {
+   kde4-meta_pkg_postinst
+
+   if ! has_version kde-apps/kdepim-kresources:${SLOT}; then
+   echo
+   elog "For groupware functionality, please install 
kde-apps/kdepim-kresources:${SLOT}"
+   echo
+   fi
+   if ! has_version kde-base/kleopatra:${SLOT}; then
+   echo
+   elog "For certificate management and the gnupg log viewer, 
please install kde-base/kleopatra:${SLOT}"
+   echo
+   fi
+}



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

2016-02-06 Thread Andreas Hüttel
commit: c4bd212f48d498111768b01b4dd43be896b5fdb8
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat Feb  6 15:03:56 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Sat Feb  6 15:58:32 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4bd212f

kde-apps/kmail: Shorten DESCRIPTION

Package-Manager: portage-2.2.27

 kde-apps/kmail/kmail-4.4.2015.06.ebuild | 4 ++--
 kde-apps/kmail/kmail-4.4.2016.01.ebuild | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/kde-apps/kmail/kmail-4.4.2015.06.ebuild 
b/kde-apps/kmail/kmail-4.4.2015.06.ebuild
index f0bb077..99b1ef1 100644
--- a/kde-apps/kmail/kmail-4.4.2015.06.ebuild
+++ b/kde-apps/kmail/kmail-4.4.2015.06.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$
 
@@ -9,7 +9,7 @@ KDE_HANDBOOK=optional
 VIRTUALX_REQUIRED=test
 inherit flag-o-matic kde4-meta
 
-DESCRIPTION="Email component of Kontact, the integrated personal information 
manager of KDE (noakonadi branch)"
+DESCRIPTION="Email component of Kontact (noakonadi branch)"
 KEYWORDS="amd64 ~ppc x86 ~amd64-linux ~x86-linux"
 IUSE="debug"
 

diff --git a/kde-apps/kmail/kmail-4.4.2016.01.ebuild 
b/kde-apps/kmail/kmail-4.4.2016.01.ebuild
index aa44a9c..670e394 100644
--- a/kde-apps/kmail/kmail-4.4.2016.01.ebuild
+++ b/kde-apps/kmail/kmail-4.4.2016.01.ebuild
@@ -9,7 +9,7 @@ KDE_HANDBOOK=optional
 VIRTUALX_REQUIRED=test
 inherit flag-o-matic kde4-meta
 
-DESCRIPTION="Email component of Kontact, the integrated personal information 
manager of KDE (noakonadi branch)"
+DESCRIPTION="Email component of Kontact (noakonadi branch)"
 HOMEPAGE="https://launchpad.net/~pali/+archive/ubuntu/kdepim-noakonadi;
 KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
 IUSE="debug"



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

2016-02-06 Thread Andreas Hüttel
commit: a0b4b2de0a450c4452a9cecfcd199f98eb9b8862
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat Feb  6 14:31:40 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Sat Feb  6 15:58:32 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0b4b2de

kde-apps/ktimetracker: Version bump

Package-Manager: portage-2.2.27

 kde-apps/ktimetracker/Manifest |  1 +
 .../ktimetracker/ktimetracker-4.4.2016.01.ebuild   | 37 ++
 2 files changed, 38 insertions(+)

diff --git a/kde-apps/ktimetracker/Manifest b/kde-apps/ktimetracker/Manifest
index 6508138..cbcb87d 100644
--- a/kde-apps/ktimetracker/Manifest
+++ b/kde-apps/ktimetracker/Manifest
@@ -1,3 +1,4 @@
 DIST kdepim-4.14.10.tar.xz 14585020 SHA256 
edad865b81259331780a25906127e105d06fda8aa56f6f11cfee4bc8f85bb7e2 SHA512 
aa7e5a488964d11d37e89053993bb0bed4860072dbb8ae1851df881713a15ec5aa4e428de9b85a8bef678ace307b33f186314fe5a8011521e30331a1691b
 WHIRLPOOL 
358589e29baeb2f7bf648d1bbccb9bbf37c4c1a447f05a2eff472b50282d7d5118ad40ced2f93ac7f47f2c394f745216632d33be389e82f88efd69386f6ab57d
 DIST kdepim-4.14.8.tar.xz 14575884 SHA256 
52b4174924387030c1b3803267f099f3534aa8ccde796953d6cf34b4aabbe3a7 SHA512 
687b0db97476e692718039153a1ee60cf9ddab8d9adad06abba702a170d49488f60f0fe050a339db2da2a5996d1bdbe1faec73c1c2e2b655fa9ea66aa538899c
 WHIRLPOOL 
4ce31c3c526a0eed7819137cb5c29450da75fac8a7f4f74e25794b6617bbd7e12987bb45983408ae87bd892a57508d171941b9c4e1a75324773611d950fe55e4
 DIST kdepim-4.4.2015.06.tar.xz 8901968 SHA256 
d9153c57e697ca33d0bd82f1f93ed2befdabbe3822189c1c8acbdf7bf9bbaec6 SHA512 
10e89ff1bb22ef03ae2128b800f87c76da945703fa98c07fa0ac29deb17c724beeca84995c50b067138ab7cf0543112173eb850d897b38c512a25974bfc15e1e
 WHIRLPOOL 
543b9d629380e9923b38c414cf6e7390437a48acfb31b9ed934e9655bb1efb1f480065942775dc68d8382e639e4df122f953388dad90a9fadb3734d2f2fe72f0
+DIST kdepim-4.4.2016.01.tar.xz 8964248 SHA256 
19f4d6ab4bcddf5a0e6acae50c20d0b8fbb482503e47e75c86955637d249cefa SHA512 
a04737cc89f96e3635a19c492c9f3f31e7554aa8a237fb0ad8f5fe8c02e7e30911dd5d93bf0f27fd38603e496e02f3ef1d3064e159c99c71dea379199d1e0e03
 WHIRLPOOL 
9f02f5799b3a10a9b18b4c8cb34084051991cb7240d2b818cd2b58bde05abde2ef3126b3960f2554c7e5c4930266e561c1715c21fe72136654e28184b5083089

diff --git a/kde-apps/ktimetracker/ktimetracker-4.4.2016.01.ebuild 
b/kde-apps/ktimetracker/ktimetracker-4.4.2016.01.ebuild
new file mode 100644
index 000..b276d53
--- /dev/null
+++ b/kde-apps/ktimetracker/ktimetracker-4.4.2016.01.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+KMNAME="kdepim"
+KDE_HANDBOOK=optional
+inherit kde4-meta
+
+DESCRIPTION="KTimeTracker tracks time spent on various tasks (noakonadi 
branch)"
+KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
+IUSE="debug"
+
+RDEPEND="
+   $(add_kdeapps_dep kdepim-kresources '' 4.4.2015)
+   $(add_kdeapps_dep kdepimlibs '' 4.6)
+   $(add_kdeapps_dep libkdepim '' 4.4.2015)
+   x11-libs/libXScrnSaver
+"
+DEPEND="${RDEPEND}
+   x11-proto/scrnsaverproto
+"
+
+KMEXTRACTONLY="
+   kresources/
+"
+
+KMLOADLIBS="libkdepim"
+
+src_unpack() {
+   if use kontact; then
+   KMEXTRA="${KMEXTRA} kontact/plugins/ktimetracker"
+   fi
+
+   kde4-meta_src_unpack
+}



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

2016-02-06 Thread Andreas Hüttel
commit: 2a63b9e085b2c724776141bce2310353a92ec6d5
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat Feb  6 14:25:59 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Sat Feb  6 15:58:32 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a63b9e0

kde-apps/konsolekalendar: Version bump

Package-Manager: portage-2.2.27

 kde-apps/konsolekalendar/Manifest |  1 +
 .../konsolekalendar-4.4.2016.01.ebuild| 19 +++
 2 files changed, 20 insertions(+)

diff --git a/kde-apps/konsolekalendar/Manifest 
b/kde-apps/konsolekalendar/Manifest
index 6508138..cbcb87d 100644
--- a/kde-apps/konsolekalendar/Manifest
+++ b/kde-apps/konsolekalendar/Manifest
@@ -1,3 +1,4 @@
 DIST kdepim-4.14.10.tar.xz 14585020 SHA256 
edad865b81259331780a25906127e105d06fda8aa56f6f11cfee4bc8f85bb7e2 SHA512 
aa7e5a488964d11d37e89053993bb0bed4860072dbb8ae1851df881713a15ec5aa4e428de9b85a8bef678ace307b33f186314fe5a8011521e30331a1691b
 WHIRLPOOL 
358589e29baeb2f7bf648d1bbccb9bbf37c4c1a447f05a2eff472b50282d7d5118ad40ced2f93ac7f47f2c394f745216632d33be389e82f88efd69386f6ab57d
 DIST kdepim-4.14.8.tar.xz 14575884 SHA256 
52b4174924387030c1b3803267f099f3534aa8ccde796953d6cf34b4aabbe3a7 SHA512 
687b0db97476e692718039153a1ee60cf9ddab8d9adad06abba702a170d49488f60f0fe050a339db2da2a5996d1bdbe1faec73c1c2e2b655fa9ea66aa538899c
 WHIRLPOOL 
4ce31c3c526a0eed7819137cb5c29450da75fac8a7f4f74e25794b6617bbd7e12987bb45983408ae87bd892a57508d171941b9c4e1a75324773611d950fe55e4
 DIST kdepim-4.4.2015.06.tar.xz 8901968 SHA256 
d9153c57e697ca33d0bd82f1f93ed2befdabbe3822189c1c8acbdf7bf9bbaec6 SHA512 
10e89ff1bb22ef03ae2128b800f87c76da945703fa98c07fa0ac29deb17c724beeca84995c50b067138ab7cf0543112173eb850d897b38c512a25974bfc15e1e
 WHIRLPOOL 
543b9d629380e9923b38c414cf6e7390437a48acfb31b9ed934e9655bb1efb1f480065942775dc68d8382e639e4df122f953388dad90a9fadb3734d2f2fe72f0
+DIST kdepim-4.4.2016.01.tar.xz 8964248 SHA256 
19f4d6ab4bcddf5a0e6acae50c20d0b8fbb482503e47e75c86955637d249cefa SHA512 
a04737cc89f96e3635a19c492c9f3f31e7554aa8a237fb0ad8f5fe8c02e7e30911dd5d93bf0f27fd38603e496e02f3ef1d3064e159c99c71dea379199d1e0e03
 WHIRLPOOL 
9f02f5799b3a10a9b18b4c8cb34084051991cb7240d2b818cd2b58bde05abde2ef3126b3960f2554c7e5c4930266e561c1715c21fe72136654e28184b5083089

diff --git a/kde-apps/konsolekalendar/konsolekalendar-4.4.2016.01.ebuild 
b/kde-apps/konsolekalendar/konsolekalendar-4.4.2016.01.ebuild
new file mode 100644
index 000..12fdca0
--- /dev/null
+++ b/kde-apps/konsolekalendar/konsolekalendar-4.4.2016.01.ebuild
@@ -0,0 +1,19 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+KMNAME="kdepim"
+KMMODULE="console/${PN}"
+KDE_HANDBOOK=optional
+inherit kde4-meta
+
+DESCRIPTION="A command line interface to KDE calendars (noakonadi branch)"
+KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
+IUSE="debug"
+
+DEPEND="
+   $(add_kdeapps_dep kdepimlibs '' 4.6)
+"
+RDEPEND="${DEPEND}"



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

2016-02-06 Thread Robin H. Johnson
commit: df8a6319ba7178d08fc1a299d6745a1a105e599c
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Thu Feb  4 22:31:10 2016 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Sat Feb  6 16:28:35 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df8a6319

app-misc/ca-certificates: bump.

Package-Manager: portage-2.2.27

 app-misc/ca-certificates/Manifest  |   1 +
 .../ca-certificates-20160104.3.21.ebuild   | 184 +
 2 files changed, 185 insertions(+)

diff --git a/app-misc/ca-certificates/Manifest 
b/app-misc/ca-certificates/Manifest
index 6a4d23e..ba808a2 100644
--- a/app-misc/ca-certificates/Manifest
+++ b/app-misc/ca-certificates/Manifest
@@ -2,6 +2,7 @@ DIST ca-certificates_20140927.tar.xz 288824 SHA256 
e582724ebb9d5d6fe02d02db1773c
 DIST ca-certificates_20141019.tar.xz 289092 SHA256 
684902d3f4e9ad27829f4af0d9d2d588afed03667997579b9c2be86fcd1eb73a SHA512 
5b0e8fb917f5642a5a2b4fde46a706db0c652ff3fb31a5053d9123a5b670b50c6e3cf2496915cc01c613dcbe964d6432f393c12d8a697baedfad58f9d13e568b
 WHIRLPOOL 
6d3c0ccfbd4b1598ed529cb07390baaf741e24c8fd4762aa1786ada7188ec0c4e327513047bca2b93a488681e80b5a8fabc37b98b7f6e5e92cba62580c4cf74f
 DIST ca-certificates_20150426.tar.xz 303256 SHA256 
37dbaa93ed64cc4ae93ac295f9248fbc741bd51376438cfb1257f17efab5494f SHA512 
920dfc512c018c5338bf07b6a6afcb664d9bfba659d4233ca9e87471d5e0ed05de054c96f3d7e6091549aa6deb46106a79f7f982696081f9b2164e18133eb34d
 WHIRLPOOL 
6d068fa13ffdb1b232b1cdb99063e52e52ee9f4cd44917f4eca263f36b5d4fa3c261b45bbf51143fc08965937adc477afd88c9a909300b619d42ae72b4c4acd9
 DIST ca-certificates_20151214.tar.xz 293672 SHA256 
59286e6403f482a24c672e09b810c7d089a73153d4772ff4a66e86053a920525 SHA512 
acee5565aa7d1f0cc120a6abb6503e0ac4b4e12f5fd1cb12442ec1374ae1570ec6dc3a8f3a247fad6835a29d96e856f12c664f466e92344db3aa1ae6292a27ac
 WHIRLPOOL 
c03d214fb15a791c14f235c58296fb06f1408c98bb78049f58b3ebf7bc1c1cea4662f90a031d86de2548267feacf6a9e3fef957aa44a19e29e9a6ba803aaa3fa
+DIST ca-certificates_20160104.tar.xz 293632 SHA256 
09eb770122e23260316120c0cbbddc8a1d33e7147210ce44e146084d5d5abcdd SHA512 
4291ba58057b66d56853162b71862832135eab6f444a5e2cf3dd1089495d44624246dc0c540871851fe9aaceb42054516309402525c8f16a88911d3af9c3518a
 WHIRLPOOL 
8a45acdf2c0673156bc546808df5160ebbfc3a85d775cefa8918c5b64ea6ba905e89017689a407a20444f3e550133c2af228f4d4a878670af50d88fc4739edeb
 DIST nss-3.14.1-add_spi+cacerts_ca_certs.patch 25018 SHA256 
82ca25982828fd7153ad15fc6e81408c115476eeeb4045d3a71469380b56824b SHA512 
2aafbd972b073061bfd66a66a4b50060691957f2910f716f7a69d22d655c499f186f05db2101bea5248a00949f339327ba8bfffec024c61c8ee908766201ae00
 WHIRLPOOL 
c9fe397e316dac7983b187acf7227078ebd8f8da5df53f77f2564489e85f123c4d2afb88d56e8dc14b9ebfffe8a71ade4724b3c1ea683c5c4c487cb3a64eda43
 DIST nss-3.17.2.tar.gz 6927414 SHA256 
134929e44e44b968a4883f4ee513a71ae45d55b486cee41ee8e26c3cc84dab8b SHA512 
a3d165bb2c578e7b5d90349729e85a2fce09260d069093080c76cce3b8a996c6489232324fd6a0c69b959321bcdf5f1806054f165cd6ce851fe4ffeb2883ae7f
 WHIRLPOOL 
01b3cc546aa2dd0974caa2267aa9874b01cf6096f307a114393ba5a98adc216e0f2b217631b89b20752be5881f70fc1a7e94e0e90618707d5f9b9d18fd55d859
 DIST nss-3.17.4.tar.gz 6924699 SHA256 
1d98ad1881a4237ec98cbe472fc851480f0b0e954dfe224d047811fb96ff9d79 SHA512 
dfc44e28c303743a72b4553f471089bc991c3cb61d5f3071082c16400d5e4f216f84a2e44536570316fe0e798c14ca370c875dad791a873034595b9e4dd70b89
 WHIRLPOOL 
bb6e1027c5237d12fe58b4c520536022d8d4e83183a78c3421fd46bf9c3503b1f0ca4644240e383f216ec1e5174c0ae4148372db68fb9f1c10275954559d5bbf

diff --git a/app-misc/ca-certificates/ca-certificates-20160104.3.21.ebuild 
b/app-misc/ca-certificates/ca-certificates-20160104.3.21.ebuild
new file mode 100644
index 000..86a6882
--- /dev/null
+++ b/app-misc/ca-certificates/ca-certificates-20160104.3.21.ebuild
@@ -0,0 +1,184 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+# The Debian ca-certificates package merely takes the CA database as it exists
+# in the nss package and repackages it for use by openssl.
+#
+# The issue with using the compiled debs directly is two fold:
+# - they do not update frequently enough for us to rely on them
+# - they pull the CA database from nss tip of tree rather than the release
+#
+# So we take the Debian source tools and combine them with the latest nss
+# release to produce (largely) the same end result.  The difference is that
+# now we know our cert database is kept in sync with nss and, if need be,
+# can be sync with nss tip of tree more frequently to respond to bugs.
+
+# When triaging bugs from users, here's some handy tips:
+# - To see what cert is hitting errors, use openssl:
+#   openssl s_client -port 443 -CApath /etc/ssl/certs/ -host $HOSTNAME
+#   Focus on the errors written to stderr.
+#
+# - Look at the upstream log as to why certs were added/removed:
+#   

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

2016-02-06 Thread Wolfram Schlich
commit: 4ae8021e0a2edb8d240cc418a4be783ccba9467d
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Sat Feb  6 17:27:44 2016 +
Commit: Wolfram Schlich  gentoo  org>
CommitDate: Sat Feb  6 17:27:44 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ae8021e

profiles/package.mask: added mask for net-im/mcabber live ebuild

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 0bceef0..cb9bfa8 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -30,6 +30,10 @@
 
 #--- END OF EXAMPLES ---
 
+# Wolfram Schlich  (06 Feb 2016)
+# Mask live ebuild
+=net-im/mcabber-
+
 # Davide Pesavento  (06 Feb 2016)
 # Masked for removal in 30 days. Doesn't build against recent PyQt4
 # versions, bug 527572, not trivial to fix. Upstream doesn't seem to



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

2016-02-06 Thread Wolfram Schlich
commit: c8f77c70cf139c7b197803f9c9cdfa72962b5bdc
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Sat Feb  6 17:27:04 2016 +
Commit: Wolfram Schlich  gentoo  org>
CommitDate: Sat Feb  6 17:27:04 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8f77c70

net-im/mcabber: add live ebuild wrt https://github.com/gentoo/gentoo/pull/361

Package-Manager: portage-2.2.27

 net-im/mcabber/mcabber-.ebuild | 120 +
 1 file changed, 120 insertions(+)

diff --git a/net-im/mcabber/mcabber-.ebuild 
b/net-im/mcabber/mcabber-.ebuild
new file mode 100644
index 000..b4affe7
--- /dev/null
+++ b/net-im/mcabber/mcabber-.ebuild
@@ -0,0 +1,120 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit flag-o-matic autotools-utils mercurial
+
+DESCRIPTION="A small Jabber console client with various features, like MUC, 
SSL, PGP"
+HOMEPAGE="http://mcabber.com/;
+#REV="a18e1b488f1c"
+#SRC_URI="http://mcabber.com/hg/index.cgi/archive/${REV}.tar.gz -> ${P}.tar.gz"
+EHG_REPO_URI="https://bitbucket.org/McKael/mcabber;
+EHG_CHECKOUT_DIR="${WORKDIR}"
+EHG_BOOTSTRAP="autogen.sh"
+S="${WORKDIR}/${PN}"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="-* ~alpha ~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+
+IUSE="aspell crypt idn modules otr spell ssl vim-syntax"
+
+LANGS="cs de fr it nl pl ru uk"
+# localized help versions are installed only, when LINGUAS var is set
+for i in ${LANGS}; do
+   IUSE="${IUSE} linguas_${i}"
+done;
+
+RDEPEND="crypt? ( >=app-crypt/gpgme-1.0.0 )
+   otr? ( >=net-libs/libotr-3.1.0 )
+   aspell? ( app-text/aspell )
+   vim-syntax? ( || ( app-editors/vim app-editors/gvim ) )
+   idn? ( net-dns/libidn  )
+   spell? ( app-text/enchant )
+   dev-libs/glib:2
+   sys-libs/ncurses:0=
+   >=net-libs/loudmouth-1.4.3-r1[ssl?]"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig"
+
+## autotools-utils.eclass settings
+AUTOTOOLS_AUTORECONF="1"
+AUTOTOOLS_IN_SOURCE_BUILD="1"
+DOCS=( AUTHORS ChangeLog NEWS README TODO mcabberrc.example doc/README_PGP.txt 
)
+PATCHES=(
+   "${FILESDIR}/${PN}-0.10.3-vim-ftdetect.patch"
+)
+
+pkg_setup() {
+   if use aspell && use spell; then
+   ewarn "NOTE: You have both USE flags 'aspell' and 'spell' 
enabled, enchant (USE flag 'spell') will be preferred."
+   fi
+}
+
+src_configure() {
+   local myeconfargs=(
+   $(use_enable crypt gpgme) \
+   $(use_enable otr) \
+   $(use_enable aspell) \
+   $(use_enable spell enchant) \
+   $(use_enable modules) \
+   $(use_with idn libidn)
+   )
+   autotools-utils_src_configure
+}
+
+src_install() {
+   autotools-utils_src_install
+
+   # clean unneeded language documentation
+   for i in ${LANGS}; do
+   use linguas_${i} || rm -rf "${ED}"/usr/share/${PN}/help/${i}
+   done
+
+   # contrib themes
+   insinto /usr/share/${PN}/themes
+   doins "${S}"/contrib/themes/*
+
+   # contrib generic scripts
+   exeinto /usr/share/${PN}/scripts
+   doexe "${S}"/contrib/*.{pl,py}
+
+   # contrib event scripts
+   exeinto /usr/share/${PN}/scripts/events
+   doexe "${S}"/contrib/events/*
+
+   if use vim-syntax; then
+   cd contrib/vim/ || die
+
+   insinto /usr/share/vim/vimfiles/syntax
+   doins mcabber_log-syntax.vim
+
+   insinto /usr/share/vim/vimfiles/ftdetect
+   doins mcabber_log-ftdetect.vim
+   fi
+}
+
+pkg_postinst() {
+   elog
+   elog "MCabber requires you to create a subdirectory .mcabber in your 
home"
+   elog "directory and to place a configuration file there."
+   elog "An example mcabberrc was installed as part of the documentation."
+   elog "To create a new mcabberrc based on the example mcabberrc, execute 
the"
+   elog "following commands:"
+   elog
+   elog "  mkdir -p ~/.mcabber"
+   elog "  bzcat ${EROOT}usr/share/doc/${PF}/mcabberrc.example.bz2 
>~/.mcabber/mcabberrc"
+   elog
+   elog "Then edit ~/.mcabber/mcabberrc with your favorite editor."
+   elog
+   elog "See the CONFIGURATION FILE and FILES sections of the mcabber"
+   elog "manual page (section 1) for more information."
+   elog
+   elog "From version 0.9.0 on, MCabber supports PGP encryption of 
messages."
+   elog "See README_PGP.txt for details."
+   echo
+   einfo "Check out ${EROOT}usr/share/${PN} for contributed themes and 
event scripts."
+   echo
+}



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

2016-02-06 Thread Alexis Ballier
commit: b0ee0213b072261f673fc410cdd8d7e2891e2554
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Feb  6 15:20:30 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sat Feb  6 15:39:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0ee0213

dev-ml/ppx_deriving: Use opam-installer to install it properly

Package-Manager: portage-2.2.27
Signed-off-by: Alexis Ballier  gentoo.org>

 .../{ppx_deriving-3.0.ebuild => ppx_deriving-3.0-r1.ebuild} | 13 +++--
 1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/dev-ml/ppx_deriving/ppx_deriving-3.0.ebuild 
b/dev-ml/ppx_deriving/ppx_deriving-3.0-r1.ebuild
similarity index 80%
rename from dev-ml/ppx_deriving/ppx_deriving-3.0.ebuild
rename to dev-ml/ppx_deriving/ppx_deriving-3.0-r1.ebuild
index 933139f..0099ce5 100644
--- a/dev-ml/ppx_deriving/ppx_deriving-3.0.ebuild
+++ b/dev-ml/ppx_deriving/ppx_deriving-3.0-r1.ebuild
@@ -19,6 +19,7 @@ DEPEND="dev-ml/ppx_tools:=
>=dev-lang/ocaml-4.02.3:=[ocamlopt?]"
 RDEPEND="${DEPEND}"
 DEPEND="${RDEPEND}
+   dev-ml/opam
test? ( dev-ml/ounit )"
 
 src_compile() {
@@ -40,12 +41,12 @@ src_test() {
 }
 
 src_install() {
-   findlib_src_preinst
-   # Copied from upstream makefile
-   grep -E '^[[:space:]]+' ppx_deriving.install | \
-   awk '{ print $1 }' | \
-   sed -e 's:"?*::g'  | \
-   xargs ocamlfind install ppx_deriving || die
+   opam-installer -i \
+   --prefix="${ED}/usr" \
+   --libdir="${D}/$(ocamlc -where)" \
+   --docdir="${ED}/usr/share/doc/${PF}" \
+   ${PN}.install || die
+   mv "${ED}/usr/lib/ppx_deriving/ppx_deriving" "${D}/$(ocamlc 
-where)/ppx_deriving/" || die
 
use doc && dohtml api.docdir/*
 



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

2016-02-06 Thread Alexis Ballier
commit: a9075b53a9bb36659878fbab65721fc4209497c5
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Feb  6 15:39:03 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sat Feb  6 15:39:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9075b53

dev-ml/js_of_ocaml: add ppx-deriving useflag

Package-Manager: portage-2.2.27
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-ml/js_of_ocaml/js_of_ocaml-2.7.ebuild | 4 +++-
 dev-ml/js_of_ocaml/metadata.xml   | 1 +
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/dev-ml/js_of_ocaml/js_of_ocaml-2.7.ebuild 
b/dev-ml/js_of_ocaml/js_of_ocaml-2.7.ebuild
index 1f8b9b0..8967f79 100644
--- a/dev-ml/js_of_ocaml/js_of_ocaml-2.7.ebuild
+++ b/dev-ml/js_of_ocaml/js_of_ocaml-2.7.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/ocsigen/js_of_ocaml/archive/${PV}.tar.gz -> ${P}.tar
 LICENSE="LGPL-2.1-with-linking-exception"
 SLOT="0/${PV}"
 KEYWORDS="~amd64"
-IUSE="+ocamlopt doc +deriving +ppx +react +xml X"
+IUSE="+ocamlopt doc +deriving +ppx +ppx-deriving +react +xml X"
 
 DEPEND="
>=dev-lang/ocaml-3.12:=[ocamlopt?,X?]
@@ -21,6 +21,7 @@ DEPEND="
react? ( dev-ml/react:=  dev-ml/reactiveData:= )
xml? ( >=dev-ml/tyxml-3.6:= )
ppx? ( dev-ml/ppx_tools:= )
+   ppx-deriving? ( dev-ml/ppx_deriving:= )
dev-ml/cmdliner:=
dev-ml/menhir:=
dev-ml/ocaml-base64:=
@@ -37,6 +38,7 @@ src_configure() {
use X || echo "WITH_GRAPHICS := NO" >> Makefile.conf
use react || echo "WITH_REACT := NO" >> Makefile.conf
use ppx || echo "WITH_PPX := NO" >> Makefile.conf
+   use ppx-deriving || echo "WITH_PPX_PPX_DERIVING := NO" >> Makefile.conf
 }
 
 src_compile() {

diff --git a/dev-ml/js_of_ocaml/metadata.xml b/dev-ml/js_of_ocaml/metadata.xml
index 904a7a4..0b34c19 100644
--- a/dev-ml/js_of_ocaml/metadata.xml
+++ b/dev-ml/js_of_ocaml/metadata.xml
@@ -8,6 +8,7 @@
   
 Enable dev-ml/deriving support for 
improving the type safety.
Enables the ppx syntax extension
+   Enables deriving support through ppx syntax 
extensions.
Enable functionnal reactive programming 
support.
   
   



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

2016-02-06 Thread Alexis Ballier
commit: 4ff20e362115e87f35719268388563706007e6e9
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Feb  6 15:27:12 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sat Feb  6 15:39:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ff20e36

dev-ml/js_of_ocaml: add react useflag

Package-Manager: portage-2.2.27
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-ml/js_of_ocaml/js_of_ocaml-2.7.ebuild | 6 +++---
 dev-ml/js_of_ocaml/metadata.xml   | 1 +
 2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/dev-ml/js_of_ocaml/js_of_ocaml-2.7.ebuild 
b/dev-ml/js_of_ocaml/js_of_ocaml-2.7.ebuild
index 3d6298a..1bf41b5 100644
--- a/dev-ml/js_of_ocaml/js_of_ocaml-2.7.ebuild
+++ b/dev-ml/js_of_ocaml/js_of_ocaml-2.7.ebuild
@@ -13,13 +13,12 @@ 
SRC_URI="https://github.com/ocsigen/js_of_ocaml/archive/${PV}.tar.gz -> ${P}.tar
 LICENSE="LGPL-2.1-with-linking-exception"
 SLOT="0/${PV}"
 KEYWORDS="~amd64"
-IUSE="+ocamlopt doc +deriving X"
+IUSE="+ocamlopt doc +deriving +react X"
 
 DEPEND="
>=dev-lang/ocaml-3.12:=[ocamlopt?,X?]
>=dev-ml/lwt-2.4.4:=
-   dev-ml/react:=
-   dev-ml/reactiveData:=
+   react? ( dev-ml/react:=  dev-ml/reactiveData:= )
>=dev-ml/tyxml-3.6:=
dev-ml/cmdliner:=
dev-ml/menhir:=
@@ -35,6 +34,7 @@ src_configure() {
use ocamlopt || echo "NATDYNLINK := NO" >> Makefile.conf
use deriving || echo "WITH_DERIVING := NO" >> Makefile.conf
use X || echo "WITH_GRAPHICS := NO" >> Makefile.conf
+   use react || echo "WITH_REACT := NO" >> Makefile.conf
 }
 
 src_compile() {

diff --git a/dev-ml/js_of_ocaml/metadata.xml b/dev-ml/js_of_ocaml/metadata.xml
index 2a56cab..d3fd68e 100644
--- a/dev-ml/js_of_ocaml/metadata.xml
+++ b/dev-ml/js_of_ocaml/metadata.xml
@@ -7,6 +7,7 @@
   
   
 Enable dev-ml/deriving support for 
improving the type safety.
+   Enable functionnal reactive programming 
support.
   
   
 ocsigen/js_of_ocaml



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

2016-02-06 Thread Alexis Ballier
commit: 5452ff7ec75d38c1819fbb8175f482e28cc35041
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Feb  6 15:22:43 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sat Feb  6 15:39:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5452ff7e

dev-ml/js_of_ocaml: Add X useflag

Package-Manager: portage-2.2.27
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-ml/js_of_ocaml/js_of_ocaml-2.7.ebuild | 8 ++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/dev-ml/js_of_ocaml/js_of_ocaml-2.7.ebuild 
b/dev-ml/js_of_ocaml/js_of_ocaml-2.7.ebuild
index 4f423b9..3d6298a 100644
--- a/dev-ml/js_of_ocaml/js_of_ocaml-2.7.ebuild
+++ b/dev-ml/js_of_ocaml/js_of_ocaml-2.7.ebuild
@@ -13,9 +13,10 @@ 
SRC_URI="https://github.com/ocsigen/js_of_ocaml/archive/${PV}.tar.gz -> ${P}.tar
 LICENSE="LGPL-2.1-with-linking-exception"
 SLOT="0/${PV}"
 KEYWORDS="~amd64"
-IUSE="+ocamlopt doc +deriving"
+IUSE="+ocamlopt doc +deriving X"
 
-DEPEND=">=dev-lang/ocaml-3.12:=[ocamlopt?]
+DEPEND="
+   >=dev-lang/ocaml-3.12:=[ocamlopt?,X?]
>=dev-ml/lwt-2.4.4:=
dev-ml/react:=
dev-ml/reactiveData:=
@@ -29,8 +30,11 @@ DEPEND=">=dev-lang/ocaml-3.12:=[ocamlopt?]
 RDEPEND="${DEPEND}"
 
 src_configure() {
+   printf "\n\n" >> Makefile.conf
use ocamlopt || echo "BEST := byte" >> Makefile.conf
+   use ocamlopt || echo "NATDYNLINK := NO" >> Makefile.conf
use deriving || echo "WITH_DERIVING := NO" >> Makefile.conf
+   use X || echo "WITH_GRAPHICS := NO" >> Makefile.conf
 }
 
 src_compile() {



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

2016-02-06 Thread Alexis Ballier
commit: 167d4fb62fa65b0b5cbdc46af73ae971519401d1
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Feb  6 15:29:44 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sat Feb  6 15:39:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=167d4fb6

dev-ml/js_of_ocaml: add xml useflag

Package-Manager: portage-2.2.27
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-ml/js_of_ocaml/js_of_ocaml-2.7.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ml/js_of_ocaml/js_of_ocaml-2.7.ebuild 
b/dev-ml/js_of_ocaml/js_of_ocaml-2.7.ebuild
index 1bf41b5..060d3ca 100644
--- a/dev-ml/js_of_ocaml/js_of_ocaml-2.7.ebuild
+++ b/dev-ml/js_of_ocaml/js_of_ocaml-2.7.ebuild
@@ -13,13 +13,13 @@ 
SRC_URI="https://github.com/ocsigen/js_of_ocaml/archive/${PV}.tar.gz -> ${P}.tar
 LICENSE="LGPL-2.1-with-linking-exception"
 SLOT="0/${PV}"
 KEYWORDS="~amd64"
-IUSE="+ocamlopt doc +deriving +react X"
+IUSE="+ocamlopt doc +deriving +react +xml X"
 
 DEPEND="
>=dev-lang/ocaml-3.12:=[ocamlopt?,X?]
>=dev-ml/lwt-2.4.4:=
react? ( dev-ml/react:=  dev-ml/reactiveData:= )
-   >=dev-ml/tyxml-3.6:=
+   xml? ( >=dev-ml/tyxml-3.6:= )
dev-ml/cmdliner:=
dev-ml/menhir:=
dev-ml/ocaml-base64:=



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

2016-02-06 Thread Alexis Ballier
commit: 555d2144ffdac351bab4b7f67a8a2e832a2ca659
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Feb  6 15:33:29 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sat Feb  6 15:39:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=555d2144

dev-ml/js_of_ocaml: add ppx useflag

Package-Manager: portage-2.2.27
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-ml/js_of_ocaml/js_of_ocaml-2.7.ebuild | 4 +++-
 dev-ml/js_of_ocaml/metadata.xml   | 1 +
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/dev-ml/js_of_ocaml/js_of_ocaml-2.7.ebuild 
b/dev-ml/js_of_ocaml/js_of_ocaml-2.7.ebuild
index 060d3ca..1f8b9b0 100644
--- a/dev-ml/js_of_ocaml/js_of_ocaml-2.7.ebuild
+++ b/dev-ml/js_of_ocaml/js_of_ocaml-2.7.ebuild
@@ -13,13 +13,14 @@ 
SRC_URI="https://github.com/ocsigen/js_of_ocaml/archive/${PV}.tar.gz -> ${P}.tar
 LICENSE="LGPL-2.1-with-linking-exception"
 SLOT="0/${PV}"
 KEYWORDS="~amd64"
-IUSE="+ocamlopt doc +deriving +react +xml X"
+IUSE="+ocamlopt doc +deriving +ppx +react +xml X"
 
 DEPEND="
>=dev-lang/ocaml-3.12:=[ocamlopt?,X?]
>=dev-ml/lwt-2.4.4:=
react? ( dev-ml/react:=  dev-ml/reactiveData:= )
xml? ( >=dev-ml/tyxml-3.6:= )
+   ppx? ( dev-ml/ppx_tools:= )
dev-ml/cmdliner:=
dev-ml/menhir:=
dev-ml/ocaml-base64:=
@@ -35,6 +36,7 @@ src_configure() {
use deriving || echo "WITH_DERIVING := NO" >> Makefile.conf
use X || echo "WITH_GRAPHICS := NO" >> Makefile.conf
use react || echo "WITH_REACT := NO" >> Makefile.conf
+   use ppx || echo "WITH_PPX := NO" >> Makefile.conf
 }
 
 src_compile() {

diff --git a/dev-ml/js_of_ocaml/metadata.xml b/dev-ml/js_of_ocaml/metadata.xml
index d3fd68e..904a7a4 100644
--- a/dev-ml/js_of_ocaml/metadata.xml
+++ b/dev-ml/js_of_ocaml/metadata.xml
@@ -7,6 +7,7 @@
   
   
 Enable dev-ml/deriving support for 
improving the type safety.
+   Enables the ppx syntax extension
Enable functionnal reactive programming 
support.
   
   



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

2016-02-06 Thread Alex Brandt
commit: f0f7649cf68634a9838195e82e87e267ae869779
Author: Alex Brandt  gentoo  org>
AuthorDate: Sat Feb  6 15:44:03 2016 +
Commit: Alex Brandt  gentoo  org>
CommitDate: Sat Feb  6 15:44:48 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0f7649c

app-admin/fleet: re-assign to maintainer-needed

Package-Manager: portage-2.2.27

 app-admin/fleet/metadata.xml | 7 +--
 1 file changed, 1 insertion(+), 6 deletions(-)

diff --git a/app-admin/fleet/metadata.xml b/app-admin/fleet/metadata.xml
index 67da141..dd062b3 100644
--- a/app-admin/fleet/metadata.xml
+++ b/app-admin/fleet/metadata.xml
@@ -2,12 +2,7 @@
 http://www.gentoo.org/dtd/metadata.dtd;>
 
   
-alund...@gentoo.org
-Alex Brandt
-  
-  
-m...@stefanjunker.de
-Stefan Junker
+maintainer-nee...@gentoo.org
   
   




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

2016-02-06 Thread Alex Brandt
commit: ad35d6d3fe25585d23c3863e69b32c50a349249e
Author: Alex Brandt  gentoo  org>
AuthorDate: Sat Feb  6 15:41:31 2016 +
Commit: Alex Brandt  gentoo  org>
CommitDate: Sat Feb  6 15:44:48 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad35d6d3

app-backup/rdiff-backup: re-assign to maintainer-needed

Package-Manager: portage-2.2.27

 app-backup/rdiff-backup/metadata.xml | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/app-backup/rdiff-backup/metadata.xml 
b/app-backup/rdiff-backup/metadata.xml
index 7288f15..defaad0 100644
--- a/app-backup/rdiff-backup/metadata.xml
+++ b/app-backup/rdiff-backup/metadata.xml
@@ -2,7 +2,6 @@
 http://www.gentoo.org/dtd/metadata.dtd;>
 

-   alund...@gentoo.org
-   Alex Brandt
+   maintainer-nee...@gentoo.org

 



[gentoo-commits] repo/gentoo:master commit in: www-apps/jekyll-watch/

2016-02-06 Thread Manuel Rüger
commit: 38dac1efce511aefed9be59eeac2e64370a2cd97
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sat Feb  6 15:56:50 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sat Feb  6 15:56:50 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38dac1ef

www-apps/jekyll-watch: Remove old

Package-Manager: portage-2.2.27

 www-apps/jekyll-watch/Manifest  |  1 -
 www-apps/jekyll-watch/jekyll-watch-1.3.0.ebuild | 28 -
 2 files changed, 29 deletions(-)

diff --git a/www-apps/jekyll-watch/Manifest b/www-apps/jekyll-watch/Manifest
index 347167a..d0970d3 100644
--- a/www-apps/jekyll-watch/Manifest
+++ b/www-apps/jekyll-watch/Manifest
@@ -1,2 +1 @@
-DIST jekyll-watch-1.3.0.tar.gz 13882 SHA256 
a87b9e76e575ec394525b6b804bf8aa430eb51df2e309f34b0f2f46129b9c353 SHA512 
91950cdeba568ef368ea5f91f3ec3208073786f12e7a8587e2560c92be9108d5d97d9ddc517eb681df3335bcdc0f8b85c9425fbe289b39912c3c4c6ef8d641e2
 WHIRLPOOL 
a5e18c641921f561e42557cbd902100fac085d2fd320771581d507122fa6fa77bf60cf9e26a7444eac0387227c1e131ab611cee814178cd1748c2e74912a67d1
 DIST jekyll-watch-1.3.1.tar.gz 14735 SHA256 
6912621ac177c8ed09e4f79e15f7f378feddc5e14a500c82784c3da6704dc1cd SHA512 
ce54f4367cd2c5a63ce823b234584a84798fe0234165cb038f3af301b7ddef39ef1a983aad41843e51d1af9366e495a83112f6b55bd58127d1c95eaf5600eee4
 WHIRLPOOL 
c406990fd077c0cd46af8a36624d57c7dca91888d0305f25fb682fe4301c970b59fcc583aec637ec4bec13cca57b2a16891f1ec0b5336375a0dbd94732612f3f

diff --git a/www-apps/jekyll-watch/jekyll-watch-1.3.0.ebuild 
b/www-apps/jekyll-watch/jekyll-watch-1.3.0.ebuild
deleted file mode 100644
index 9b6a4fe..000
--- a/www-apps/jekyll-watch/jekyll-watch-1.3.0.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-USE_RUBY="ruby20 ruby21"
-
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
-RUBY_FAKEGEM_TASK_DOC=""
-RUBY_FAKEGEM_EXTRADOC="README.md History.markdown"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Rebuild your Jekyll site when a file changes with the --watch 
switch"
-HOMEPAGE="https://github.com/jekyll/jekyll-watch;
-SRC_URI="https://github.com/jekyll/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE=""
-
-ruby_add_rdepend ">=dev-ruby/listen-3.0"
-ruby_add_bdepend "test? ( >=www-apps/jekyll-2 )"
-
-all_ruby_prepare() {
-   rm Rakefile || die
-}



[gentoo-commits] repo/gentoo:master commit in: sci-visualization/pythonprop/

2016-02-06 Thread Thomas Beierlein
commit: 12a7a212fba784a6061a29c902310c3aa06bc255
Author: Thomas Beierlein  gentoo  org>
AuthorDate: Sat Feb  6 16:08:00 2016 +
Commit: Thomas Beierlein  gentoo  org>
CommitDate: Sat Feb  6 16:08:00 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12a7a212

sci-visualization/pythonprop: Version bump

Package-Manager: portage-2.2.27

 sci-visualization/pythonprop/Manifest  |  1 +
 .../pythonprop/pythonprop-0.18.ebuild  | 32 ++
 2 files changed, 33 insertions(+)

diff --git a/sci-visualization/pythonprop/Manifest 
b/sci-visualization/pythonprop/Manifest
index 90f7bcb..de9f484 100644
--- a/sci-visualization/pythonprop/Manifest
+++ b/sci-visualization/pythonprop/Manifest
@@ -1 +1,2 @@
 DIST pythonprop-0.13.tar.gz 217721 SHA256 
c89aa97876755679ccb2fa9baf7b1d20dc7a36f4b8aa4aa35cbf338e7370cbf5 SHA512 
b637f48369c926c8dd680a433d46236dc4fa70be79b2325d8f82e320b2d75b1e6d7d992bd81022d27fb6ab118d92178c7ad5ad94f6011a396e4a28d7431bbf2b
 WHIRLPOOL 
b6e43058d0495cf54cc7b0f3755531ac06b6c196adc6b76ac1ccd0e60a4b46be477c06d6c480d6822ba75d8da1594c9d727996d52cf4ef80daecaa6df1bd5ec4
+DIST pythonprop-0.18.tar.gz 1158035 SHA256 
51689ce55a73ad4568c34ea882ce0e1dcae9364aa9628804256b31d33163f048 SHA512 
2ca796f215e5aab33bee7dd161358c3065b464587597363dee9f03758cf666cca1b70f5b83e8ac266e21f77b806711cb6f48a1d7c3cd0b97f1461e897f5f9f80
 WHIRLPOOL 
43dfd007fb6f43308e8c29159bd3ffa9ab498c7b4cfe3ff02634df78da5484bf77f4f6d30323e6f866266f36a6358e32259f9f9946ed97ed0208232fe196c608

diff --git a/sci-visualization/pythonprop/pythonprop-0.18.ebuild 
b/sci-visualization/pythonprop/pythonprop-0.18.ebuild
new file mode 100644
index 000..2377cd0
--- /dev/null
+++ b/sci-visualization/pythonprop/pythonprop-0.18.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 )
+
+inherit python-single-r1
+
+DESCRIPTION="Scripts to prepare and plot VOACAP propagation predictions"
+HOMEPAGE="http://www.qsl.net/hz1jw/pythonprop;
+SRC_URI="http://www.qsl.net/h/hz1jw/${PN}/downloads/${P}.tar.gz;
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="
+   dev-python/matplotlib[${PYTHON_USEDEP}]
+   dev-python/basemap[${PYTHON_USEDEP}]
+   sci-electronics/voacapl
+"
+DEPEND="${RDEPEND}"
+
+src_prepare() {
+   # do not call update_destop_database here
+   sed -ie "s/UPDATE_DESKTOP = /UPDATE_DESKTOP = # /g" data/Makefile.in || 
die
+   # fix Desktop Entry
+   sed -ie "s/HamRadio/HamRadio;/g" data/voacapgui.desktop.in || die
+}



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

2016-02-06 Thread Alexis Ballier
commit: ae4155880c0ec18683e3920c71db5b33e523062d
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Feb  6 16:23:09 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sat Feb  6 16:23:09 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae415588

dev-ml/pcre-ocaml: remove old

Package-Manager: portage-2.2.27
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-ml/pcre-ocaml/Manifest|  4 
 dev-ml/pcre-ocaml/pcre-ocaml-7.0.2.ebuild | 31 ---
 dev-ml/pcre-ocaml/pcre-ocaml-7.0.4.ebuild | 31 ---
 dev-ml/pcre-ocaml/pcre-ocaml-7.1.3.ebuild | 31 ---
 dev-ml/pcre-ocaml/pcre-ocaml-7.1.5.ebuild | 31 ---
 5 files changed, 128 deletions(-)

diff --git a/dev-ml/pcre-ocaml/Manifest b/dev-ml/pcre-ocaml/Manifest
index df68ecf..2884110 100644
--- a/dev-ml/pcre-ocaml/Manifest
+++ b/dev-ml/pcre-ocaml/Manifest
@@ -1,6 +1,2 @@
 DIST pcre-ocaml-6.2.5.tar.gz 60724 SHA256 
f1774028a4525d22d1f4cf4ce0121c99d85a75aed7a498c3e8ab0f5e39888e47 SHA512 
9665643165beea8515f22d90a6a0f079108826ec46ce89248c795e982f9b4ddecc0e882a32a9893acac1001d810aad7f3bc7d7b6162ab1260fa4f698c91e04b9
 WHIRLPOOL 
c99da092f8e78de19ea624a021a088b3e19b1accd2b33bc084179f7c1b88e8ac2b51c143321a792067e325568d6ea4c059fc57ac9da477e998cda3936140567c
-DIST pcre-ocaml-7.0.2.tar.gz 81910 SHA256 
052a2fdd8da597724ac8ca474fdd40772b461888e3ff8ef75cc71e43a65766ea SHA512 
13ed6534005d819c62a2d70c4800bc4a8f019026d2d56175d0b10a130636a092f9053665382cca2c819c75dcc25fe26ff85fa0c51878b0c1c58d5f77cb45cbe9
 WHIRLPOOL 
bf635d30a6a93b00144f092dcc0cb19d7f5bfd1b5700319f9ea7fbd59d0a62656227fae96781282563702c4872b4e6a7577435ad6469c8639c98d284bb8641f2
-DIST pcre-ocaml-7.0.4.tar.gz 84956 SHA256 
fc56b0e0f7ab5d159af77d1a51f67d0dd0b86ef30eccc0e9cbef4f79d4a75840 SHA512 
2b00a784bcda8c476014875c87cb12b2dc111f0c003c4fa3aedc4963ed1a75fc7cde22b20bdf071e2637bdfe7bf0fe094e5073a141644acaefdecddca6b6af72
 WHIRLPOOL 
c3352fe803924649867b8f63da137ab81a15b4c12f3855610097513bf093df43d6d9a1c7d0992ff0a1a4ccca873b538b28285811218d6a833faf6a994026bb69
-DIST pcre-ocaml-7.1.3.tar.gz 88056 SHA256 
43f8e20a55d4c079f202234781f9eaee48e938eea55fa68aa6a7cdcb3fce7896 SHA512 
6cc51205b04fa65cb03b9b3064deabd2d9995e8ae88281519df56d27025158f9c1ae64a9e194643681d7481dc56aa0edd65b13a4c04ad64b83e1c201e5137484
 WHIRLPOOL 
897643040952a9f3007e67bdc1046b37a3dd4a8fb9bd83074c588f21ab09dc7a42bb1154b6b1e9d64a4dfd72ec85d0bf7159d95021c437feb38c49b7d394c316
-DIST pcre-ocaml-7.1.5.tar.gz 88068 SHA256 
6495ecf25ed6a69fd14fda472f9fac9853dde2aee9944f6b6c0111d458c1039b SHA512 
5b02c62af248834dfbcf4e6ff052ec70e7c43ef8a82f7a4f0e900060f37f4fcdebf4234c5c3afdfb780b12d4a562855d8a904c87f2d20f671831f62313cb20cc
 WHIRLPOOL 
9a1dd4552c45178e7f2c9357dd5349c030f7416fa774a116f53a8a7e3eb46d594314ee5c1c8c7de5b7d50dc2114cf368bb1cb8c4791fba3b9606a62d1867b90b
 DIST pcre-ocaml-7.1.6.tar.gz 88104 SHA256 
7f88d1fb44a394026f20c692170d36f7331cbeea20ca95b841334b8c188efbef SHA512 
604bf27324eab3548c8320bee91cd8c8d0c6459aa7c02b576149b6a2beb43ddd9733e7e344c20c100241cabc84be61ef8c4a5515cdd994a7c3105dd3da74782d
 WHIRLPOOL 
25ba4642e4d10300d849993dd5cb18cb9c8216ba17b07756bca866b46460b8cc7399c91cc6390e44250765d40aa81a5ff3c0372bb3ead614c27c9b4a4f3da3d2

diff --git a/dev-ml/pcre-ocaml/pcre-ocaml-7.0.2.ebuild 
b/dev-ml/pcre-ocaml/pcre-ocaml-7.0.2.ebuild
deleted file mode 100644
index e61e331..000
--- a/dev-ml/pcre-ocaml/pcre-ocaml-7.0.2.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-OASIS_BUILD_DOCS=1
-
-inherit oasis
-
-DESCRIPTION="Perl Compatibility Regular Expressions for O'Caml"
-HOMEPAGE="https://bitbucket.org/mmottl/pcre-ocaml;
-SRC_URI="https://bitbucket.org/mmottl/pcre-ocaml/downloads/${P}.tar.gz;
-LICENSE="LGPL-2.1-with-linking-exception"
-IUSE="examples"
-SLOT="0/${PV}"
-KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
-
-RDEPEND=">=dev-libs/libpcre-4.5
-   >=dev-lang/ocaml-4:="
-DEPEND="${RDEPEND}"
-
-DOCS=( "AUTHORS.txt" "CHANGES.txt" "README.md" )
-
-src_install() {
-   oasis_src_install
-   if use examples ; then
-   insinto /usr/share/doc/${PF}
-   doins -r examples
-   fi
-}

diff --git a/dev-ml/pcre-ocaml/pcre-ocaml-7.0.4.ebuild 
b/dev-ml/pcre-ocaml/pcre-ocaml-7.0.4.ebuild
deleted file mode 100644
index 6561f18..000
--- a/dev-ml/pcre-ocaml/pcre-ocaml-7.0.4.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-OASIS_BUILD_DOCS=1
-
-inherit oasis
-
-DESCRIPTION="Perl Compatibility Regular Expressions for O'Caml"
-HOMEPAGE="https://bitbucket.org/mmottl/pcre-ocaml;
-SRC_URI="https://bitbucket.org/mmottl/pcre-ocaml/downloads/${P}.tar.gz;
-LICENSE="LGPL-2.1-with-linking-exception"
-IUSE="examples"
-SLOT="0/${PV}"

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

2016-02-06 Thread Alexis Ballier
commit: db168afc05389765d6a29dd9bf6629ea02885992
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Feb  6 16:21:13 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sat Feb  6 16:21:13 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db168afc

dev-ml/bson: add proper subslot

Package-Manager: portage-2.2.27
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-ml/bson/bson-0.89.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ml/bson/bson-0.89.3.ebuild b/dev-ml/bson/bson-0.89.3.ebuild
index 04c9f15..51e96cf 100644
--- a/dev-ml/bson/bson-0.89.3.ebuild
+++ b/dev-ml/bson/bson-0.89.3.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="http://massd.github.io/;
 SRC_URI="https://github.com/MassD/bson/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="MIT"
-SLOT="0"
+SLOT="0/${PV}"
 KEYWORDS="~amd64"
 IUSE=""
 



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

2016-02-06 Thread Alexis Ballier
commit: 359e906aece668d2030d03c1ee95e1da7dc476f5
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Feb  6 16:22:08 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sat Feb  6 16:22:08 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=359e906a

dev-ml/cppo: add proper subslot

Package-Manager: portage-2.2.27
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-ml/cppo/cppo-1.3.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ml/cppo/cppo-1.3.1.ebuild b/dev-ml/cppo/cppo-1.3.1.ebuild
index 2ff1f6d..b89094c 100644
--- a/dev-ml/cppo/cppo-1.3.1.ebuild
+++ b/dev-ml/cppo/cppo-1.3.1.ebuild
@@ -10,7 +10,7 @@ DESCRIPTION="An equivalent of the C preprocessor for OCaml 
programs"
 HOMEPAGE="http://mjambon.com/cppo.html;
 SRC_URI="https://github.com/mjambon/cppo/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
-SLOT="0"
+SLOT="0/${PV}"
 LICENSE="BSD"
 KEYWORDS="~amd64"
 



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

2016-02-06 Thread Alexis Ballier
commit: e2a3631f17a129ad448b72ee8ad2c9727c4e6a36
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Feb  6 16:23:58 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sat Feb  6 16:23:58 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2a3631f

dev-ml/mongo: add proper subslot

Package-Manager: portage-2.2.27
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-ml/mongo/mongo-0.67.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ml/mongo/mongo-0.67.2.ebuild b/dev-ml/mongo/mongo-0.67.2.ebuild
index 9c43349..08ac2cb 100644
--- a/dev-ml/mongo/mongo-0.67.2.ebuild
+++ b/dev-ml/mongo/mongo-0.67.2.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="http://massd.github.io/;
 SRC_URI="https://github.com/MassD/mongo/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="MIT"
-SLOT="0"
+SLOT="0/${PV}"
 KEYWORDS="~amd64"
 IUSE=""
 



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

2016-02-06 Thread Alexis Ballier
commit: ba4e5eaaa2d882c3320fe74b70e8eca5fc85ad5b
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Feb  6 16:21:46 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sat Feb  6 16:21:46 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba4e5eaa

dev-ml/cppo: remove old

Package-Manager: portage-2.2.27
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-ml/cppo/Manifest  |  1 -
 dev-ml/cppo/cppo-1.3.0.ebuild | 31 ---
 2 files changed, 32 deletions(-)

diff --git a/dev-ml/cppo/Manifest b/dev-ml/cppo/Manifest
index 9acf374..2926ae3 100644
--- a/dev-ml/cppo/Manifest
+++ b/dev-ml/cppo/Manifest
@@ -1,2 +1 @@
-DIST cppo-1.3.0.tar.gz 26012 SHA256 
042180a1c4c0d141025685977ac866c5c26505b2913c4cb1fdc2affa4fd21d7e SHA512 
cbed2323b3458fd793df6d945e9f4dcd9ede61ad1df566d83027079f6abdd0c505bb03c3cc3f1dccf841afa8cd30052bfa0eab756e338b4c487c7a11413c7527
 WHIRLPOOL 
dc726c557edc34f3c96d7f3d1973b237719ec3011734776176b3908fb21576a8301bb0497668eb7a839dd647b4f12403147d89f90f30660997630a7396c595be
 DIST cppo-1.3.1.tar.gz 26259 SHA256 
2e3e658b0ba24d7217c59e76df3e92d4e03866143da8d206b3267cebccfefc69 SHA512 
0e5180ce21bb605733ca4bfd64f1917ccb8772f6d078a23d39710b4dc1c5ede32dcaa3bd30116f17683c4040a7cfc41a4ca541e9c973265ec1dd988e2ec67238
 WHIRLPOOL 
37cc6699aaabd2642b55e00d3c55bfe442c978eb540889ee396ebecd5e5343e45b7e4322cff65e5add8ea3cf18f379d1d7632389742bac1f30b7cfa67c5af172

diff --git a/dev-ml/cppo/cppo-1.3.0.ebuild b/dev-ml/cppo/cppo-1.3.0.ebuild
deleted file mode 100644
index 2ff1f6d..000
--- a/dev-ml/cppo/cppo-1.3.0.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-inherit findlib
-
-DESCRIPTION="An equivalent of the C preprocessor for OCaml programs"
-HOMEPAGE="http://mjambon.com/cppo.html;
-SRC_URI="https://github.com/mjambon/cppo/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-SLOT="0"
-LICENSE="BSD"
-KEYWORDS="~amd64"
-
-IUSE="examples"
-
-RDEPEND=">=dev-lang/ocaml-3.12:="
-DEPEND="${RDEPEND}"
-
-src_install() {
-   findlib_src_preinst
-   mkdir -p "${ED}"/usr/bin
-   emake PREFIX="${ED}"/usr install
-   dodoc README.md Changes
-   if use examples ; then
-   dodoc -r examples
-   docompress -x /usr/share/doc/${PF}/examples
-   fi
-}



[gentoo-commits] repo/gentoo:master commit in: x11-misc/matchbox-panel-manager/

2016-02-06 Thread Manuel Rüger
commit: bc6d2103fd4dbbfdd0cb5b1863515c2d0fc84e5b
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sat Feb  6 17:13:33 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sat Feb  6 17:13:33 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc6d2103

x11-misc/matchbox-panel-manager: Remove package

Gentoo-Bug: 514832

 x11-misc/matchbox-panel-manager/Manifest   |  1 -
 .../matchbox-panel-manager-0.1.ebuild  | 34 --
 x11-misc/matchbox-panel-manager/metadata.xml   |  4 ---
 3 files changed, 39 deletions(-)

diff --git a/x11-misc/matchbox-panel-manager/Manifest 
b/x11-misc/matchbox-panel-manager/Manifest
deleted file mode 100644
index eec39d2..000
--- a/x11-misc/matchbox-panel-manager/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST matchbox-panel-manager-0.1.tar.bz2 64068 SHA256 
32136aaaf66ff0083158476707f69aa5ee128bc4b3bd62a2be9f9db2dc5804b6 SHA512 
3197d0253c2f35b9916ec374eb04ddfbf5021f7d3cf5729c81620b9a4b16feffdca242385085707a9f02540c55eae36e1f1749669b27fe889eec82bf3c651c79
 WHIRLPOOL 
06c216186359889be16280b544aa5ed4abcd8ae5f65282be79b48e8daa200468e8dfdabc550c429c6b5832dc83898ebc927194d2b1dd7f8856fbd74e4cbdd89d

diff --git a/x11-misc/matchbox-panel-manager/matchbox-panel-manager-0.1.ebuild 
b/x11-misc/matchbox-panel-manager/matchbox-panel-manager-0.1.ebuild
deleted file mode 100644
index 5330862..000
--- a/x11-misc/matchbox-panel-manager/matchbox-panel-manager-0.1.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=1
-
-inherit versionator
-
-DESCRIPTION="Matchbox panel configuration utility"
-HOMEPAGE="http://matchbox-project.org/;
-SRC_URI="http://matchbox-project.org/sources/${PN}/$(get_version_component_range
 1-2)/${P}.tar.bz2"
-LICENSE="GPL-2"
-SLOT="0"
-
-KEYWORDS="amd64 ~arm ~hppa ppc x86"
-IUSE=""
-
-DEPEND=">=x11-libs/libmatchbox-1.5
-   x11-libs/gtk+:2"
-
-RDEPEND="${DEPEND}
-   x11-wm/matchbox-panel"
-
-src_compile() {
-   econf || die "Configuration failed"
-
-   emake || die "Compilation failed"
-}
-
-src_install() {
-   make DESTDIR="${D}" install || die "Installation failed"
-
-   dodoc AUTHORS ChangeLog INSTALL NEWS README
-}

diff --git a/x11-misc/matchbox-panel-manager/metadata.xml 
b/x11-misc/matchbox-panel-manager/metadata.xml
deleted file mode 100644
index 097975e..000
--- a/x11-misc/matchbox-panel-manager/metadata.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-



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

2016-02-06 Thread Manuel Rüger
commit: 01ca1c3cd4de6a92f8d793dfd48e648b8647edd5
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sat Feb  6 17:14:52 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sat Feb  6 17:14:52 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01ca1c3c

profiles: Update package.mask

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

diff --git a/profiles/package.mask b/profiles/package.mask
index bd57e59..0bceef0 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -260,10 +260,6 @@ media-sound/mimd
 sys-cluster/gfs-kernel
 
 # Pacho Ramos  (06 Jan 2016)
-# Fails to build, bug #514832. Removal in a month.
-x11-misc/matchbox-panel-manager
-
-# Pacho Ramos  (06 Jan 2016)
 # Unmaintained, security issues, bug #515272. Removal in a month.
 net-misc/italc
 



[gentoo-commits] proj/lisp:master commit in: dev-lisp/newlisp/files/, dev-lisp/newlisp/

2016-02-06 Thread José María Alonso
commit: 70f8c03298b907b83c8e9a483ce8a069250447ff
Author: Chema Alonso Josa  gentoo  org>
AuthorDate: Sat Feb  6 16:45:39 2016 +
Commit: José María Alonso  gentoo  org>
CommitDate: Sat Feb  6 16:45:39 2016 +
URL:https://gitweb.gentoo.org/proj/lisp.git/commit/?id=70f8c032

dev-lisp/newlisp: Bump to version 10.7.0. Thanks to coseltech

 .../files/newlisp-makefile-install-10.7.0.patch|  14 +
 dev-lisp/newlisp/files/newlisp-path-10.7.0.patch   | 732 +
 dev-lisp/newlisp/newlisp-10.7.0.ebuild |  68 ++
 3 files changed, 814 insertions(+)

diff --git a/dev-lisp/newlisp/files/newlisp-makefile-install-10.7.0.patch 
b/dev-lisp/newlisp/files/newlisp-makefile-install-10.7.0.patch
new file mode 100644
index 000..c3b9215
--- /dev/null
+++ b/dev-lisp/newlisp/files/newlisp-makefile-install-10.7.0.patch
@@ -0,0 +1,14 @@
+diff -Nuar a/makefile_original_install b/makefile_original_install
+--- a/makefile_original_install2015-01-19 18:10:12.0 +0100
 b/makefile_original_install2015-06-22 12:59:33.639980437 +0200
+@@ -31,7 +31,9 @@
+   -install -d $(datadir)/newlisp/modules
+   -install -d $(datadir)/newlisp/util
+   -install -d $(datadir)/doc/newlisp
+-  -rm $(bindir)/newlisp
++  -install -d $(datadir)/man
++  -install -d $(datadir)/man/man1
++  -install -d $(bindir)
+   -install -m 755  newlisp $(bindir)/newlisp-$(VERSION)
+   -ln -s $(bindir)/newlisp-$(VERSION) $(bindir)/newlisp
+   -install -m 755 util/newlispdoc $(bindir)/newlispdoc

diff --git a/dev-lisp/newlisp/files/newlisp-path-10.7.0.patch 
b/dev-lisp/newlisp/files/newlisp-path-10.7.0.patch
new file mode 100644
index 000..c603e53
--- /dev/null
+++ b/dev-lisp/newlisp/files/newlisp-path-10.7.0.patch
@@ -0,0 +1,732 @@
+diff --git a/newlisp-10.7.0/Makefile b/newlisp-10.7.0/Makefile
+index 31dd127..43c85e5 100644
+--- a/newlisp-10.7.0/Makefile
 b/newlisp-10.7.0/Makefile
+@@ -9,7 +9,7 @@
+ #
+ # for 'make install' you have to login as 'root' else do 'make install_home'
+ # note that 'make install_home' will not install guiserver files which
+-# must be in /usr/local/share/newlisp in MacOX X and UNIX machines
++# must be in /usr/share/newlisp in MacOX X and UNIX machines
+ #
+ # to make the distribution archive:  'make dist'
+ #
+@@ -39,8 +39,8 @@ help:
+   @echo "\nDo one of the following:"
+   @echo "  make # auto-select one of the predefined 
makefiles and build newLISP"
+   @echo "  make help# display this help"
+-  @echo "  make install # install on LINUX/UNIX in /usr/local/bin 
and /usr/local/share (need to be root)"
+-  @echo "  make uninstall   # uninstall on LINUX/UNIX from 
/usr/local/bin and /usr/local/share (need to be root)"
++  @echo "  make install # install on LINUX/UNIX in /usr/bin and 
/usr/share (need to be root)"
++  @echo "  make uninstall   # uninstall on LINUX/UNIX from /usr/bin 
and /usr/share (need to be root)"
+   @echo "  make install_home# install on LINUX/UNIX in users home 
directory "
+   @echo "  make uninstall_home  # uninstall on LINUX/UNIX from users home 
directory "
+   @echo
+diff --git a/newlisp-10.7.0/README b/newlisp-10.7.0/README
+index d16f1b3..3a274b3 100644
+--- a/newlisp-10.7.0/README
 b/newlisp-10.7.0/README
+@@ -100,7 +100,7 @@ MINIMUM INSTALL
+ Note that for a minumum install only the executable newlisp or newlisp.exe
+ in Win32 is necessary.
+ 
+-On Mac OS X or other UNIX copy  newlisp to /usr/local/bin or /usr/bin or 
~/bin 
++On Mac OS X or other UNIX copy  newlisp to /usr/bin or /usr/bin or ~/bin 
+ and give it executable permissions.
+ 
+ 
+diff --git a/newlisp-10.7.0/configure b/newlisp-10.7.0/configure
+index edd06f8..7343ec2 100755
+--- a/newlisp-10.7.0/configure
 b/newlisp-10.7.0/configure
+@@ -90,7 +90,7 @@ elif [ ${os_type} = LINUX ] ; then
+   fi
+ elif [ ${os_type} = _BSD ] ; then
+   if [ ${memory_model} = LP64 ] ; then
+-  if [ -f /usr/local/include/ffi.h ] ; then
++  if [ -f /usr/include/ffi.h ] ; then
+   cp makefile_bsdLP64_utf8_ffi makefile_build
+   else
+   cp makefile_bsdLP64_utf8 makefile_build
+diff --git a/newlisp-10.7.0/configure-alt b/newlisp-10.7.0/configure-alt
+index d1bdd8f..2676701 100755
+--- a/newlisp-10.7.0/configure-alt
 b/newlisp-10.7.0/configure-alt
+@@ -328,7 +328,7 @@ EOF
+ esac
+ done
+ 
+-if [ -z "$prefix" ] ; then prefix="/usr/local"; fi
++if [ -z "$prefix" ] ; then prefix="/usr"; fi
+ if [ -z "$exec_prefix" ] ; then exec_prefix="$prefix"; fi
+ if [ -z "$bindir" ] ; then bindir="${exec_prefix}/bin"; fi
+ if [ -z "$datarootdir" ] ; then datarootdir="${prefix}/share"; fi
+diff --git a/newlisp-10.7.0/guiserver/Makefile 
b/newlisp-10.7.0/guiserver/Makefile
+index 18ccd88..0cda244 100644
+--- a/newlisp-10.7.0/guiserver/Makefile
 

[gentoo-commits] repo/gentoo:master commit in: x11-drivers/nvidia-drivers/

2016-02-06 Thread Jeroen Roovers
commit: 33d344ceb2646333818a3208becbfd3356341ce6
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sat Feb  6 16:53:46 2016 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sat Feb  6 16:54:04 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33d344ce

x11-drivers/nvidia-drivers: Add the driver download URL for easier branch 
selection

This would arguably help people find out which branch to pick for their
hardware, yet it wasn't documented properly anywhere.

Package-Manager: portage-2.2.27

 x11-drivers/nvidia-drivers/nvidia-drivers-173.14.39-r1.ebuild | 2 +-
 x11-drivers/nvidia-drivers/nvidia-drivers-304.131-r1.ebuild   | 2 +-
 x11-drivers/nvidia-drivers/nvidia-drivers-304.131-r3.ebuild   | 2 +-
 x11-drivers/nvidia-drivers/nvidia-drivers-304.131.ebuild  | 2 +-
 x11-drivers/nvidia-drivers/nvidia-drivers-340.93-r1.ebuild| 2 +-
 x11-drivers/nvidia-drivers/nvidia-drivers-340.96-r4.ebuild| 2 +-
 x11-drivers/nvidia-drivers/nvidia-drivers-340.96.ebuild   | 2 +-
 x11-drivers/nvidia-drivers/nvidia-drivers-346.96-r1.ebuild| 2 +-
 x11-drivers/nvidia-drivers/nvidia-drivers-346.96-r5.ebuild| 2 +-
 x11-drivers/nvidia-drivers/nvidia-drivers-352.63.ebuild   | 2 +-
 x11-drivers/nvidia-drivers/nvidia-drivers-352.79-r3.ebuild| 2 +-
 x11-drivers/nvidia-drivers/nvidia-drivers-352.79.ebuild   | 2 +-
 x11-drivers/nvidia-drivers/nvidia-drivers-355.11-r2.ebuild| 2 +-
 x11-drivers/nvidia-drivers/nvidia-drivers-355.11-r3.ebuild| 2 +-
 x11-drivers/nvidia-drivers/nvidia-drivers-358.16-r1.ebuild| 2 +-
 x11-drivers/nvidia-drivers/nvidia-drivers-358.16-r4.ebuild| 2 +-
 x11-drivers/nvidia-drivers/nvidia-drivers-361.18-r1.ebuild| 2 +-
 x11-drivers/nvidia-drivers/nvidia-drivers-361.18-r4.ebuild| 2 +-
 x11-drivers/nvidia-drivers/nvidia-drivers-96.43.23-r1.ebuild  | 2 +-
 19 files changed, 19 insertions(+), 19 deletions(-)

diff --git a/x11-drivers/nvidia-drivers/nvidia-drivers-173.14.39-r1.ebuild 
b/x11-drivers/nvidia-drivers/nvidia-drivers-173.14.39-r1.ebuild
index 00fbdc7..af4528e 100644
--- a/x11-drivers/nvidia-drivers/nvidia-drivers-173.14.39-r1.ebuild
+++ b/x11-drivers/nvidia-drivers/nvidia-drivers-173.14.39-r1.ebuild
@@ -12,7 +12,7 @@ AMD64_NV_PACKAGE="NVIDIA-Linux-x86_64-${PV}"
 X86_FBSD_NV_PACKAGE="NVIDIA-FreeBSD-x86-${PV}"
 
 DESCRIPTION="NVIDIA Accelerated Graphics Driver"
-HOMEPAGE="http://www.nvidia.com/;
+HOMEPAGE="http://www.nvidia.com/ http://www.nvidia.com/Download/Find.aspx;
 SRC_URI="x86? ( 
http://us.download.nvidia.com/XFree86/Linux-x86/${PV}/${X86_NV_PACKAGE}-pkg0.run
 )
 amd64? ( 
http://us.download.nvidia.com/XFree86/Linux-x86_64/${PV}/${AMD64_NV_PACKAGE}-pkg2.run
 )
 x86-fbsd? ( 
http://us.download.nvidia.com/freebsd/${PV}/${X86_FBSD_NV_PACKAGE}.tar.gz )"

diff --git a/x11-drivers/nvidia-drivers/nvidia-drivers-304.131-r1.ebuild 
b/x11-drivers/nvidia-drivers/nvidia-drivers-304.131-r1.ebuild
index efc0aae..8abc9eb 100644
--- a/x11-drivers/nvidia-drivers/nvidia-drivers-304.131-r1.ebuild
+++ b/x11-drivers/nvidia-drivers/nvidia-drivers-304.131-r1.ebuild
@@ -13,7 +13,7 @@ X86_FBSD_NV_PACKAGE="NVIDIA-FreeBSD-x86-${PV}"
 AMD64_FBSD_NV_PACKAGE="NVIDIA-FreeBSD-x86_64-${PV}"
 
 DESCRIPTION="NVIDIA Accelerated Graphics Driver"
-HOMEPAGE="http://www.nvidia.com/;
+HOMEPAGE="http://www.nvidia.com/ http://www.nvidia.com/Download/Find.aspx;
 SRC_URI="
amd64-fbsd? ( 
${NV_URI}FreeBSD-x86_64/${PV}/${AMD64_FBSD_NV_PACKAGE}.tar.gz )
amd64? ( ${NV_URI}Linux-x86_64/${PV}/${AMD64_NV_PACKAGE}.run )

diff --git a/x11-drivers/nvidia-drivers/nvidia-drivers-304.131-r3.ebuild 
b/x11-drivers/nvidia-drivers/nvidia-drivers-304.131-r3.ebuild
index 31b8b3a..e50b6a6 100644
--- a/x11-drivers/nvidia-drivers/nvidia-drivers-304.131-r3.ebuild
+++ b/x11-drivers/nvidia-drivers/nvidia-drivers-304.131-r3.ebuild
@@ -13,7 +13,7 @@ X86_FBSD_NV_PACKAGE="NVIDIA-FreeBSD-x86-${PV}"
 AMD64_FBSD_NV_PACKAGE="NVIDIA-FreeBSD-x86_64-${PV}"
 
 DESCRIPTION="NVIDIA Accelerated Graphics Driver"
-HOMEPAGE="http://www.nvidia.com/;
+HOMEPAGE="http://www.nvidia.com/ http://www.nvidia.com/Download/Find.aspx;
 SRC_URI="
amd64-fbsd? ( 
${NV_URI}FreeBSD-x86_64/${PV}/${AMD64_FBSD_NV_PACKAGE}.tar.gz )
amd64? ( ${NV_URI}Linux-x86_64/${PV}/${AMD64_NV_PACKAGE}.run )

diff --git a/x11-drivers/nvidia-drivers/nvidia-drivers-304.131.ebuild 
b/x11-drivers/nvidia-drivers/nvidia-drivers-304.131.ebuild
index 6bbf3de..c6c80a2 100644
--- a/x11-drivers/nvidia-drivers/nvidia-drivers-304.131.ebuild
+++ b/x11-drivers/nvidia-drivers/nvidia-drivers-304.131.ebuild
@@ -13,7 +13,7 @@ X86_FBSD_NV_PACKAGE="NVIDIA-FreeBSD-x86-${PV}"
 AMD64_FBSD_NV_PACKAGE="NVIDIA-FreeBSD-x86_64-${PV}"
 
 DESCRIPTION="NVIDIA Accelerated Graphics Driver"
-HOMEPAGE="http://www.nvidia.com/;
+HOMEPAGE="http://www.nvidia.com/ http://www.nvidia.com/Download/Find.aspx;
 SRC_URI="
amd64-fbsd? ( 
${NV_URI}FreeBSD-x86_64/${PV}/${AMD64_FBSD_NV_PACKAGE}.tar.gz )

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

2016-02-06 Thread Alexis Ballier
commit: 3fc68d2793c4c4a2381226bdd9548874fb272f7c
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Feb  6 15:56:56 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sat Feb  6 16:16:05 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3fc68d27

dev-ml/bson: initial import; ebuild by me

Package-Manager: portage-2.2.27
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-ml/bson/Manifest   |  1 +
 dev-ml/bson/bson-0.89.3.ebuild | 19 +++
 dev-ml/bson/metadata.xml   |  8 
 3 files changed, 28 insertions(+)

diff --git a/dev-ml/bson/Manifest b/dev-ml/bson/Manifest
new file mode 100644
index 000..c780a8a
--- /dev/null
+++ b/dev-ml/bson/Manifest
@@ -0,0 +1 @@
+DIST bson-0.89.3.tar.gz 64461 SHA256 
07357968334bb8e854c1775008471f0428f72f24f836f54852e9e24bb6cf0948 SHA512 
013f082a3f053525981d3cd6b0daabacfe094061ee37345927e040981d74735c2927af2c3b16f7c4734a13599eb04366f0c0fc40e4aa60f122bdfacfe0dc01d3
 WHIRLPOOL 
27911b862da2d56ea9bf8c469dfabbc20505a5f1b938e7486c6c7ab86d98ac7babda4bdd7c51fa9c6f24b9e682432808d541122e8dbebcfde2e91db3aa9cb0bc

diff --git a/dev-ml/bson/bson-0.89.3.ebuild b/dev-ml/bson/bson-0.89.3.ebuild
new file mode 100644
index 000..04c9f15
--- /dev/null
+++ b/dev-ml/bson/bson-0.89.3.ebuild
@@ -0,0 +1,19 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit oasis
+
+DESCRIPTION="An ocaml implementation for bson"
+HOMEPAGE="http://massd.github.io/;
+SRC_URI="https://github.com/MassD/bson/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+DEPEND="dev-ml/camlp4:="
+RDEPEND="${DEPEND}"

diff --git a/dev-ml/bson/metadata.xml b/dev-ml/bson/metadata.xml
new file mode 100644
index 000..ffac4d7
--- /dev/null
+++ b/dev-ml/bson/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+
+   m...@gentoo.org
+   Gentoo ML Project
+
+



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

2016-02-06 Thread Alexis Ballier
commit: e42c939857ecade76de7bb5cd0e7642139acea2c
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Feb  6 16:24:31 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sat Feb  6 16:24:31 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e42c9398

dev-ml/opam: remove old

Package-Manager: portage-2.2.27
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-ml/opam/Manifest  |  2 --
 dev-ml/opam/opam-1.2.0.ebuild | 51 ---
 dev-ml/opam/opam-1.2.1.ebuild | 51 ---
 3 files changed, 104 deletions(-)

diff --git a/dev-ml/opam/Manifest b/dev-ml/opam/Manifest
index a3c6dce..19c 100644
--- a/dev-ml/opam/Manifest
+++ b/dev-ml/opam/Manifest
@@ -1,3 +1 @@
-DIST opam-1.2.0.tar.gz 596525 SHA256 
f64800d027cc78448a8c5d701fd6f13a4986ca8796e5f2b362c9787b3e8a9c61 SHA512 
eed6e1f9242b5264f4874c00b3a4b319f5838a620782905a891a4dbaed2fef0366fad00808ffadb80ace82f419331d9bc6fc914c179ca5983cf178b44b2e4cba
 WHIRLPOOL 
950d4f2780b81f9f121738c9ca2ef57a0fe59560427ceafe3f912ec3264e873ee7c0c20c96d3e10a10ad53d494e6e64ac147c7f1c68b27959002b4d8c845
-DIST opam-1.2.1.tar.gz 638007 SHA256 
dfb17667ba371637f8d5f6a2b1993224ce8a641cf530e2ce0a7544d76aee0f42 SHA512 
4bb3ce5a578eb54475015d9941c4e6763f1d7cfe18a0873825529d31fd492c2ad2956654024f896af1c85d57c1ba324a2aa38617f27f04e1a32e0d51dfe984f8
 WHIRLPOOL 
0b45f8e18c153743bf0d10c802e0c0c687fcb9489b68fa1cde68e9c43a4e577f1e7f85a0efb1aa8b42ea14dfb509d5429f442a82db3e2d2c6619551e90e53ab1
 DIST opam-1.2.2.tar.gz 648951 SHA256 
3e4a05df6ff8deecba019d885ebe902eb933acb6e2fc7784ffee1ee14871e36a SHA512 
12105b5219a14d4c4cb29c387dd5af858d2b4a2a1bad7dcd70e4c284fc52848df82933396571b85251d904b3c14cdf02db55060c1ba29dc34b8bab3721d05f54
 WHIRLPOOL 
97d6ab75620a4ed18b45d80e88e77564af457606cbb8dd4591030574bfdbff5c16d508e81438b78198b87511151b1b030e6a51c2370e3110ae21216846f37836

diff --git a/dev-ml/opam/opam-1.2.0.ebuild b/dev-ml/opam/opam-1.2.0.ebuild
deleted file mode 100644
index 61981b2..000
--- a/dev-ml/opam/opam-1.2.0.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit eutils
-
-DESCRIPTION="A source-based package manager for OCaml"
-HOMEPAGE="http://opam.ocaml.org/;
-LICENSE="LGPL-3-with-linking-exception"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE=""
-
-if [[ ${PV} !=  ]]; then
-   SRC_URI="https://github.com/ocaml/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-else
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/ocaml/opam.git;
-fi
-
-DEPEND="dev-lang/ocaml:=
-   || ( net-misc/wget net-misc/curl )
-   dev-ml/extlib:=
-   dev-ml/ocaml-re:=
-   dev-ml/ocamlgraph:=
-   dev-ml/cmdliner:=
-   dev-ml/cudf:=
-   dev-ml/dose3:=
-   dev-ml/uutf:=
-   dev-ml/jsonm:=
-"
-RDEPEND="${DEPEND}
-   dev-ml/findlib
-"
-
-src_compile() {
-   emake -j1
-   cd doc
-   emake man
-}
-
-src_test() {
-   EMAIL=f...@bar.com emake -j1 tests
-}
-
-src_install() {
-   default
-   emake DESTDIR="${D}" OPAMINSTALLER_FLAGS="--prefix=\"${ED}/usr\" 
--libdir=\"${D}/$(ocamlc -where)\"" libinstall
-}

diff --git a/dev-ml/opam/opam-1.2.1.ebuild b/dev-ml/opam/opam-1.2.1.ebuild
deleted file mode 100644
index 416dff6..000
--- a/dev-ml/opam/opam-1.2.1.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
-
-inherit eutils
-
-DESCRIPTION="A source-based package manager for OCaml"
-HOMEPAGE="http://opam.ocaml.org/;
-LICENSE="LGPL-3-with-linking-exception"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE=""
-
-if [[ ${PV} !=  ]]; then
-   SRC_URI="https://github.com/ocaml/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-else
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/ocaml/opam.git;
-fi
-
-DEPEND="dev-lang/ocaml:=
-   || ( net-misc/wget net-misc/curl )
-   dev-ml/extlib:=
-   dev-ml/ocaml-re:=
-   dev-ml/ocamlgraph:=
-   dev-ml/cmdliner:=
-   dev-ml/cudf:=
-   dev-ml/dose3:=
-   dev-ml/uutf:=
-   dev-ml/jsonm:=
-"
-RDEPEND="${DEPEND}
-   dev-ml/findlib
-"
-
-src_compile() {
-   emake -j1
-   cd doc
-   emake man
-}
-
-src_test() {
-   EMAIL=f...@bar.com emake -j1 tests
-}
-
-src_install() {
-   default
-   emake DESTDIR="${D}" OPAMINSTALLER_FLAGS="--prefix=\"${ED}/usr\" 
--libdir=\"${D}/$(ocamlc -where)\"" libinstall
-}



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

2016-02-06 Thread Alexis Ballier
commit: b53aaf47cd52c85cb6fade48c9d58cd3cbc60ce3
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Feb  6 16:25:10 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sat Feb  6 16:25:10 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b53aaf47

dev-ml/ocaml-ipaddr: add proper subslot

Package-Manager: portage-2.2.27
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-ml/ocaml-ipaddr/ocaml-ipaddr-2.6.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ml/ocaml-ipaddr/ocaml-ipaddr-2.6.1.ebuild 
b/dev-ml/ocaml-ipaddr/ocaml-ipaddr-2.6.1.ebuild
index a4f8b7c..644bd00 100644
--- a/dev-ml/ocaml-ipaddr/ocaml-ipaddr-2.6.1.ebuild
+++ b/dev-ml/ocaml-ipaddr/ocaml-ipaddr-2.6.1.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="https://github.com/mirage/ocaml-ipaddr;
 SRC_URI="https://github.com/mirage/ocaml-ipaddr/archive/${PV}.tar.gz -> 
${P}.tar.gz"
 
 LICENSE="ISC"
-SLOT="0"
+SLOT="0/${PV}"
 KEYWORDS="~amd64"
 IUSE=""
 



[gentoo-commits] repo/gentoo:master commit in: www-servers/nginx/

2016-02-06 Thread Manuel Rüger
commit: cd04ea1d698e2596af0004fed7a79d6cb7ab1e1b
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sat Feb  6 14:59:35 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sat Feb  6 15:30:59 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd04ea1d

www-servers/nginx: Remove old

Package-Manager: portage-2.2.27

 www-servers/nginx/nginx-1.9.10-r1.ebuild | 758 ---
 1 file changed, 758 deletions(-)

diff --git a/www-servers/nginx/nginx-1.9.10-r1.ebuild 
b/www-servers/nginx/nginx-1.9.10-r1.ebuild
deleted file mode 100644
index 2d4504b..000
--- a/www-servers/nginx/nginx-1.9.10-r1.ebuild
+++ /dev/null
@@ -1,758 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-# Maintainer notes:
-# - http_rewrite-independent pcre-support makes sense for matching locations 
without an actual rewrite
-# - any http-module activates the main http-functionality and overrides 
USE=-http
-# - keep the following requirements in mind before adding external modules:
-#  * alive upstream
-#  * sane packaging
-#  * builds cleanly
-#  * does not need a patch for nginx core
-# - TODO: test the google-perftools module (included in vanilla tarball)
-
-# prevent perl-module from adding automagic perl DEPENDs
-GENTOO_DEPEND_ON_PERL="no"
-
-# devel_kit (https://github.com/simpl/ngx_devel_kit, BSD license)
-DEVEL_KIT_MODULE_PV="0.2.19"
-DEVEL_KIT_MODULE_P="ngx_devel_kit-${DEVEL_KIT_MODULE_PV}-r1"
-DEVEL_KIT_MODULE_URI="https://github.com/simpl/ngx_devel_kit/archive/v${DEVEL_KIT_MODULE_PV}.tar.gz;
-DEVEL_KIT_MODULE_WD="${WORKDIR}/ngx_devel_kit-${DEVEL_KIT_MODULE_PV}"
-
-# http_uploadprogress 
(https://github.com/masterzen/nginx-upload-progress-module, BSD-2 license)
-HTTP_UPLOAD_PROGRESS_MODULE_PV="0.9.1"
-HTTP_UPLOAD_PROGRESS_MODULE_P="ngx_http_upload_progress-${HTTP_UPLOAD_PROGRESS_MODULE_PV}-r1"
-HTTP_UPLOAD_PROGRESS_MODULE_URI="https://github.com/masterzen/nginx-upload-progress-module/archive/v${HTTP_UPLOAD_PROGRESS_MODULE_PV}.tar.gz;
-HTTP_UPLOAD_PROGRESS_MODULE_WD="${WORKDIR}/nginx-upload-progress-module-${HTTP_UPLOAD_PROGRESS_MODULE_PV}"
-
-# http_headers_more (https://github.com/agentzh/headers-more-nginx-module, BSD 
license)
-HTTP_HEADERS_MORE_MODULE_PV="0.29"
-HTTP_HEADERS_MORE_MODULE_P="ngx_http_headers_more-${HTTP_HEADERS_MORE_MODULE_PV}"
-HTTP_HEADERS_MORE_MODULE_URI="https://github.com/agentzh/headers-more-nginx-module/archive/v${HTTP_HEADERS_MORE_MODULE_PV}.tar.gz;
-HTTP_HEADERS_MORE_MODULE_WD="${WORKDIR}/headers-more-nginx-module-${HTTP_HEADERS_MORE_MODULE_PV}"
-
-# http_cache_purge (http://labs.frickle.com/nginx_ngx_cache_purge/, BSD-2 
license)
-HTTP_CACHE_PURGE_MODULE_PV="2.3"
-HTTP_CACHE_PURGE_MODULE_P="ngx_http_cache_purge-${HTTP_CACHE_PURGE_MODULE_PV}"
-HTTP_CACHE_PURGE_MODULE_URI="http://labs.frickle.com/files/ngx_cache_purge-${HTTP_CACHE_PURGE_MODULE_PV}.tar.gz;
-HTTP_CACHE_PURGE_MODULE_WD="${WORKDIR}/ngx_cache_purge-${HTTP_CACHE_PURGE_MODULE_PV}"
-
-# http_slowfs_cache (http://labs.frickle.com/nginx_ngx_slowfs_cache/, BSD-2 
license)
-HTTP_SLOWFS_CACHE_MODULE_PV="1.10"
-HTTP_SLOWFS_CACHE_MODULE_P="ngx_http_slowfs_cache-${HTTP_SLOWFS_CACHE_MODULE_PV}"
-HTTP_SLOWFS_CACHE_MODULE_URI="http://labs.frickle.com/files/ngx_slowfs_cache-${HTTP_SLOWFS_CACHE_MODULE_PV}.tar.gz;
-HTTP_SLOWFS_CACHE_MODULE_WD="${WORKDIR}/ngx_slowfs_cache-${HTTP_SLOWFS_CACHE_MODULE_PV}"
-
-# http_fancyindex (https://github.com/aperezdc/ngx-fancyindex, BSD license)
-HTTP_FANCYINDEX_MODULE_PV="0.3.5"
-HTTP_FANCYINDEX_MODULE_P="ngx_http_fancyindex-${HTTP_FANCYINDEX_MODULE_PV}"
-HTTP_FANCYINDEX_MODULE_URI="https://github.com/aperezdc/ngx-fancyindex/archive/v${HTTP_FANCYINDEX_MODULE_PV}.tar.gz;
-HTTP_FANCYINDEX_MODULE_WD="${WORKDIR}/ngx-fancyindex-${HTTP_FANCYINDEX_MODULE_PV}"
-
-# http_lua (https://github.com/openresty/lua-nginx-module, BSD license)
-HTTP_LUA_MODULE_PV="0.10.0"
-HTTP_LUA_MODULE_P="ngx_http_lua-${HTTP_LUA_MODULE_PV}"
-HTTP_LUA_MODULE_URI="https://github.com/openresty/lua-nginx-module/archive/v${HTTP_LUA_MODULE_PV}.tar.gz;
-HTTP_LUA_MODULE_WD="${WORKDIR}/lua-nginx-module-${HTTP_LUA_MODULE_PV}"
-
-# http_auth_pam (https://github.com/stogh/ngx_http_auth_pam_module/, 
http://web.iti.upv.es/~sto/nginx/, BSD-2 license)
-HTTP_AUTH_PAM_MODULE_PV="1.4"
-HTTP_AUTH_PAM_MODULE_P="ngx_http_auth_pam-${HTTP_AUTH_PAM_MODULE_PV}"
-HTTP_AUTH_PAM_MODULE_URI="https://github.com/stogh/ngx_http_auth_pam_module/archive/v${HTTP_AUTH_PAM_MODULE_PV}.tar.gz;
-HTTP_AUTH_PAM_MODULE_WD="${WORKDIR}/ngx_http_auth_pam_module-${HTTP_AUTH_PAM_MODULE_PV}"
-
-# http_upstream_check 
(https://github.com/yaoweibin/nginx_upstream_check_module, BSD license)
-HTTP_UPSTREAM_CHECK_MODULE_PV="0.3.0"
-HTTP_UPSTREAM_CHECK_MODULE_P="ngx_http_upstream_check-${HTTP_UPSTREAM_CHECK_MODULE_PV}"

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

2016-02-06 Thread Manuel Rüger
commit: 8d7b00ff4d3a949ef97717c73296ff175fb288eb
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sat Feb  6 15:46:53 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sat Feb  6 15:47:22 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d7b00ff

profiles: Update package.mask

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 85e4b4f..bd57e59 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -652,13 +652,6 @@ dev-util/cocom
 dev-ada/booch_components
 
 # Pacho Ramos  (01 Jan 2016)
-# Fails to build, bug #298700
-# Removal in a month.
-dev-java/istack-commons-tools
-dev-java/jax-ws-tools
-dev-java/jaxb-tools
-
-# Pacho Ramos  (01 Jan 2016)
 # Unresolved security issues, bug #324017
 # Removal in a month.
 sys-libs/nss-db



[gentoo-commits] repo/gentoo:master commit in: dev-ml/mongo/, dev-ml/mongo/files/

2016-02-06 Thread Alexis Ballier
commit: 9cce3179beb1d14edde2af712f295562481e41dd
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Feb  6 16:04:44 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sat Feb  6 16:16:05 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9cce3179

dev-ml/mongo: initial import; ebuild by me

Package-Manager: portage-2.2.27
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-ml/mongo/Manifest  |  1 +
 dev-ml/mongo/files/noinstalltest.patch |  9 +
 dev-ml/mongo/metadata.xml  |  8 
 dev-ml/mongo/mongo-0.67.2.ebuild   | 27 +++
 4 files changed, 45 insertions(+)

diff --git a/dev-ml/mongo/Manifest b/dev-ml/mongo/Manifest
new file mode 100644
index 000..67a5734
--- /dev/null
+++ b/dev-ml/mongo/Manifest
@@ -0,0 +1 @@
+DIST mongo-0.67.2.tar.gz 81611 SHA256 
e79636dd9f32655f25c07d5fa64533932c3c0d1b2070dfdb44cfb12f5bd74b00 SHA512 
779e214b10eb50fe06b9336cd515566b8091bd678b86ad91f5d437dd25b81d3e6996f2f09226061b836fad5c994a9c30edafdb76b7ef5d617fb701d830191c9d
 WHIRLPOOL 
51e3ed11e8dc5399705eb50c72f7d172f3131f91475b352088c72292c1b75d611809e68e0178c281de0b60e797610ead418146712cadfd4c423f26201ba2

diff --git a/dev-ml/mongo/files/noinstalltest.patch 
b/dev-ml/mongo/files/noinstalltest.patch
new file mode 100644
index 000..4166a70
--- /dev/null
+++ b/dev-ml/mongo/files/noinstalltest.patch
@@ -0,0 +1,9 @@
+Index: mongo-0.67.2/_oasis
+===
+--- mongo-0.67.2.orig/_oasis
 mongo-0.67.2/_oasis
+@@ -51,3 +51,4 @@ Executable test
+   BuildTools:ocamlbuild
+   BuildDepends:  unix, mongo, bson
+   CompiledObject: native
++  Install: false

diff --git a/dev-ml/mongo/metadata.xml b/dev-ml/mongo/metadata.xml
new file mode 100644
index 000..ffac4d7
--- /dev/null
+++ b/dev-ml/mongo/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+
+   m...@gentoo.org
+   Gentoo ML Project
+
+

diff --git a/dev-ml/mongo/mongo-0.67.2.ebuild b/dev-ml/mongo/mongo-0.67.2.ebuild
new file mode 100644
index 000..9c43349
--- /dev/null
+++ b/dev-ml/mongo/mongo-0.67.2.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit oasis
+
+DESCRIPTION="An ocaml driver for mongodb"
+HOMEPAGE="http://massd.github.io/;
+SRC_URI="https://github.com/MassD/mongo/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+RDEPEND="
+   dev-ml/bson:=
+   dev-ml/lwt:=
+"
+DEPEND="${RDEPEND} dev-ml/oasis"
+
+src_prepare() {
+   epatch "${FILESDIR}/noinstalltest.patch"
+   oasis setup || die
+}



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

2016-02-06 Thread Alexis Ballier
commit: f7c9abd9fad7e0e9224ed7bd0106fac3b97c719e
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Feb  6 16:32:16 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sat Feb  6 16:32:26 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7c9abd9

dev-ml/ocaml-cairo: initial import; ebuild by me

Package-Manager: portage-2.2.27
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-ml/ocaml-cairo/Manifest   |  1 +
 dev-ml/ocaml-cairo/metadata.xml   |  8 
 dev-ml/ocaml-cairo/ocaml-cairo-0.5.ebuild | 29 +
 3 files changed, 38 insertions(+)

diff --git a/dev-ml/ocaml-cairo/Manifest b/dev-ml/ocaml-cairo/Manifest
new file mode 100644
index 000..b1f9a47
--- /dev/null
+++ b/dev-ml/ocaml-cairo/Manifest
@@ -0,0 +1 @@
+DIST ocaml-cairo-0.5.tar.gz 137433 SHA256 
12b2468ebc8af481f2f01de0817410a1b880ab87d76498d8d904fe4c8e6ba994 SHA512 
c946739e4d0e7ca1c7f2ffa547c138ad47265bc7f59da17242ee8a78a31b7a2ce777835dc3f4070963a7303891d2fba831171e0252a5bd908083e66515aba083
 WHIRLPOOL 
798dfd135f5646858b8b7583605be571375e8586a1c205f60add54343617ce3fa76ead720999d40c3350ac668d3629ee8d1bafd48a5c17e328058a5669d1324a

diff --git a/dev-ml/ocaml-cairo/metadata.xml b/dev-ml/ocaml-cairo/metadata.xml
new file mode 100644
index 000..ffac4d7
--- /dev/null
+++ b/dev-ml/ocaml-cairo/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+
+   m...@gentoo.org
+   Gentoo ML Project
+
+

diff --git a/dev-ml/ocaml-cairo/ocaml-cairo-0.5.ebuild 
b/dev-ml/ocaml-cairo/ocaml-cairo-0.5.ebuild
new file mode 100644
index 000..e412bd3
--- /dev/null
+++ b/dev-ml/ocaml-cairo/ocaml-cairo-0.5.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+OASIS_BUILD_DOCS=1
+
+inherit oasis
+
+DESCRIPTION="OCaml Binding to Cairo"
+HOMEPAGE="https://github.com/Chris00/ocaml-cairo;
+SRC_URI="https://github.com/Chris00/ocaml-cairo/releases/download/0.5/cairo2-${PV}.tar.gz
 -> ${P}.tar.gz"
+
+LICENSE="LGPL-3-with-linking-exception"
+SLOT="0/${PV}"
+KEYWORDS="~amd64"
+IUSE="gtk"
+
+DEPEND="
+   gtk? ( dev-ml/lablgtk:= )
+   x11-libs/cairo
+"
+RDEPEND="${DEPEND}"
+DOCS=( README.md )
+S="${WORKDIR}/cairo2-${PV}/"
+
+src_configure() {
+   oasis_configure_opts="$(use_enable gtk lablgtk2)" oasis_src_configure
+}



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

2016-02-06 Thread Robin H. Johnson
commit: dc12240978f6bfcf26ae4291d92690856b0567af
Author: jakeogh  v6y  net>
AuthorDate: Fri Feb  5 23:22:05 2016 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Sat Feb  6 16:38:20 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc122409

eclass/rpm.eclass: add xz support to rpm_src_unpack

Signed-off-by: Robin H. Johnson  gentoo.org>

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

diff --git a/eclass/rpm.eclass b/eclass/rpm.eclass
index b646206..079e459 100644
--- a/eclass/rpm.eclass
+++ b/eclass/rpm.eclass
@@ -51,7 +51,7 @@ srcrpm_unpack() {
 
# unpack everything
local a
-   for a in *.tar.{gz,bz2} *.t{gz,bz2} *.zip *.ZIP ; do
+   for a in *.tar.{gz,bz2,xz} *.t{gz,bz2,xz,pxz} *.zip *.ZIP ; do
unpack "./${a}"
rm -f "${a}"
done



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

2016-02-06 Thread Sergei Trofimovich
commit: 669ce0758b8edee23092029015b407e4e2ac29ef
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sat Feb  6 18:21:14 2016 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat Feb  6 18:27:52 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=669ce075

dev-haskell/hashable: drop old, bug #572666

Reported-by: Toralf Förster
Bug: https://bugs.gentoo.org/572666

Package-Manager: portage-2.2.27

 dev-haskell/hashable/Manifest|  1 -
 dev-haskell/hashable/hashable-1.1.2.5.ebuild | 29 
 2 files changed, 30 deletions(-)

diff --git a/dev-haskell/hashable/Manifest b/dev-haskell/hashable/Manifest
index 5baaf3d..caf0d6d 100644
--- a/dev-haskell/hashable/Manifest
+++ b/dev-haskell/hashable/Manifest
@@ -1,3 +1,2 @@
-DIST hashable-1.1.2.5.tar.gz 9129 SHA256 
3fb5d430c9289ebada4991a76fd78f028aaaf17957dc666ddc7b89c98a54713d SHA512 
dc6acab7a17709ed483bbc22cb7e29f5518e34102e6ffddbac4dabc2a854d595cf7517fc776e47e55d41c23107636b796150804ef8099dd4545e33f6df1ab0b6
 WHIRLPOOL 
9de525387fb8fdf9a6262171f15ecec7af4f9592e98782100d75c263137cfc3796156bea90745fdf052ad91c16ce216cfb5594dce0de20528a60486ced8b7ad9
 DIST hashable-1.2.1.0.tar.gz 22389 SHA256 
4ec07479fe37174e694b8d54cfc2111648e325fd1d7dce92366ed4ce2e7da126 SHA512 
343f6b9eb40d089f0f2187427af7d7b5dbe15884649ddc8e0b140db129f21fc44f6bf41a262a3b2a0c74d967be6f603799472802d835e48a442f836dd8142607
 WHIRLPOOL 
7c8d174b48b5124f6cc52151d3d47f3da22adf61525a080048eee5ee4aa54598adccd2d189979c3631d72ce2c9312505ec3991748276058342c59e450f1f92fe
 DIST hashable-1.2.4.0.tar.gz 24491 SHA256 
fb9671db0c39cd48d38e2e13e3352e2bf7dfa6341edfe68789a1753d21bb3cf3 SHA512 
992027ce617e347414e328e05afe69b8621fb1af21fef58836761d2002a1f9f7f97c981ff3c4fe8699a1da124771df575717ed4e3fd0bbe5c62d81be1322dbf6
 WHIRLPOOL 
b1c783aec82470e4af78d2a7d3edafb69343a8f73a93ef3f32871066cd48226e973cebc07891836f2e6256239404c4c76e2009fc3f16c74e1714a5e4d47ecebc

diff --git a/dev-haskell/hashable/hashable-1.1.2.5.ebuild 
b/dev-haskell/hashable/hashable-1.1.2.5.ebuild
deleted file mode 100644
index 020b54a..000
--- a/dev-haskell/hashable/hashable-1.1.2.5.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-# ebuild generated by hackport 0.3.
-
-CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite"
-inherit haskell-cabal
-
-DESCRIPTION="A class for types that can be converted to a hash value"
-HOMEPAGE="https://github.com/tibbe/hashable;
-SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0/${PV}"
-KEYWORDS="alpha amd64 ia64 ppc ppc64 sparc x86"
-IUSE=""
-
-RDEPEND=">=dev-haskell/text-0.11.0.5:=[profile?]
-   >=dev-lang/ghc-6.10.1:="
-DEPEND="${RDEPEND}
-   test? ( >=dev-haskell/quickcheck-2.4.0.1
-   =dev-haskell/random-1.0*
-   >=dev-haskell/test-framework-0.3.3
-   >=dev-haskell/test-framework-quickcheck2-0.2.9
-   )
-   >=dev-haskell/cabal-1.8"



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

2016-02-06 Thread Sergei Trofimovich
commit: 72d902ebc0c6355fdfaec6ff5a465222613b5f6c
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sat Feb  6 18:15:14 2016 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat Feb  6 18:27:52 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72d902eb

dev-haskell/hashable: drop old

Package-Manager: portage-2.2.27

 dev-haskell/hashable/Manifest|  3 --
 dev-haskell/hashable/hashable-1.2.3.1.ebuild | 41 
 dev-haskell/hashable/hashable-1.2.3.2.ebuild | 40 ---
 dev-haskell/hashable/hashable-1.2.3.3.ebuild | 40 ---
 4 files changed, 124 deletions(-)

diff --git a/dev-haskell/hashable/Manifest b/dev-haskell/hashable/Manifest
index d87ee89..5baaf3d 100644
--- a/dev-haskell/hashable/Manifest
+++ b/dev-haskell/hashable/Manifest
@@ -1,6 +1,3 @@
 DIST hashable-1.1.2.5.tar.gz 9129 SHA256 
3fb5d430c9289ebada4991a76fd78f028aaaf17957dc666ddc7b89c98a54713d SHA512 
dc6acab7a17709ed483bbc22cb7e29f5518e34102e6ffddbac4dabc2a854d595cf7517fc776e47e55d41c23107636b796150804ef8099dd4545e33f6df1ab0b6
 WHIRLPOOL 
9de525387fb8fdf9a6262171f15ecec7af4f9592e98782100d75c263137cfc3796156bea90745fdf052ad91c16ce216cfb5594dce0de20528a60486ced8b7ad9
 DIST hashable-1.2.1.0.tar.gz 22389 SHA256 
4ec07479fe37174e694b8d54cfc2111648e325fd1d7dce92366ed4ce2e7da126 SHA512 
343f6b9eb40d089f0f2187427af7d7b5dbe15884649ddc8e0b140db129f21fc44f6bf41a262a3b2a0c74d967be6f603799472802d835e48a442f836dd8142607
 WHIRLPOOL 
7c8d174b48b5124f6cc52151d3d47f3da22adf61525a080048eee5ee4aa54598adccd2d189979c3631d72ce2c9312505ec3991748276058342c59e450f1f92fe
-DIST hashable-1.2.3.1.tar.gz 23845 SHA256 
d5bf53df132e56671a3a4533c89324b327e1b47181b3961cffa87f5aea6f7af9 SHA512 
e8518490a89aa42c283adbda038754a2d0ad4ebcf9c28fa5203be69616f9c6d12befd472874d34e3892d70cfa6de6e0f5be9dddae9b78a8fdfb83106074825d3
 WHIRLPOOL 
7ae107a0bf4710b1d558a3eaa05ac0542c29fb4cf8353366fd8afa64fd60cf1ce47cd6dcab7706f5ecbab11186509af88b6786668cae9c9b122f9ba106314ece
-DIST hashable-1.2.3.2.tar.gz 23903 SHA256 
8c66fc70f75c5e1eaa8278c2c624a8cf5a73d5127df1cb2956eb69b16f492241 SHA512 
e5c646881ebe3c73c598ee4c24f5454524867c823137702ab3010b346ee8dec6b93623834838e43413d19d97c3c011bcc54e915d1055d76f90d2315fc25a600b
 WHIRLPOOL 
0ee669fa904e45ae9d9e279c55e904470646ffc782d5953a27e0f92bc35a0c9b961a552b3a4816d8a5741c38b8f7fd59678cbe81e4ec4ad0b00edef6c05cc3d0
-DIST hashable-1.2.3.3.tar.gz 23944 SHA256 
fc923f7d1fdc0062416a61f6ab96b4e1958e1aee1ddf1c71fa2cc6d08154e44e SHA512 
f2e693ecdd96591b703f584b501818215379ce56e8fc7591307fe15d2745d1eb7d2ca7c130dde84a66337c81089c783f227f6215d868958caecc58bf996c7a22
 WHIRLPOOL 
8177001510bf326787f3af676d4f62796bc5371a715ab6beb3604fac77a64eaa74ffda449dfb2c69200afea964b380e549c5c9782ea52c8ced8f32380e1f30a3
 DIST hashable-1.2.4.0.tar.gz 24491 SHA256 
fb9671db0c39cd48d38e2e13e3352e2bf7dfa6341edfe68789a1753d21bb3cf3 SHA512 
992027ce617e347414e328e05afe69b8621fb1af21fef58836761d2002a1f9f7f97c981ff3c4fe8699a1da124771df575717ed4e3fd0bbe5c62d81be1322dbf6
 WHIRLPOOL 
b1c783aec82470e4af78d2a7d3edafb69343a8f73a93ef3f32871066cd48226e973cebc07891836f2e6256239404c4c76e2009fc3f16c74e1714a5e4d47ecebc

diff --git a/dev-haskell/hashable/hashable-1.2.3.1.ebuild 
b/dev-haskell/hashable/hashable-1.2.3.1.ebuild
deleted file mode 100644
index c79d11b..000
--- a/dev-haskell/hashable/hashable-1.2.3.1.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-# ebuild generated by hackport 0.4.
-#hackport: flags: sse4_1:sse41 gmp:integer-gmp
-
-CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite"
-inherit haskell-cabal
-
-DESCRIPTION="A class for types that can be converted to a hash value"
-HOMEPAGE="https://github.com/tibbe/hashable;
-SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0/${PV}"
-KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
-IUSE="+gmp +cpu_flags_x86_sse2 cpu_flags_x86_sse4_1"
-
-RDEPEND=">=dev-haskell/text-0.11.0.5:=[profile?]
-   >=dev-lang/ghc-7.4.1:=
-"
-DEPEND="${RDEPEND}
-   >=dev-haskell/cabal-1.8
-   test? ( dev-haskell/hunit
-   >=dev-haskell/quickcheck-2.4.0.1
-   >=dev-haskell/random-1.0 =dev-haskell/test-framework-0.3.3
-   dev-haskell/test-framework-hunit
-   >=dev-haskell/test-framework-quickcheck2-0.2.9
-   >=dev-haskell/text-0.11.0.5 )
-"
-
-src_configure() {
-   haskell-cabal_src_configure \
-   $(cabal_flag gmp integer-gmp) \
-   $(cabal_flag cpu_flags_x86_sse2 sse2) \
-   $(cabal_flag cpu_flags_x86_sse4_1 sse41)
-}

diff --git a/dev-haskell/hashable/hashable-1.2.3.2.ebuild 
b/dev-haskell/hashable/hashable-1.2.3.2.ebuild
deleted file mode 100644
index 6cb7a2c..000
--- a/dev-haskell/hashable/hashable-1.2.3.2.ebuild
+++ /dev/null
@@ -1,40 

[gentoo-commits] repo/gentoo:master commit in: dev-java/idm-console-framework/

2016-02-06 Thread NP Hardass
commit: 9fb68d217ba71d262567e7d3755ef25a92ac3014
Author: NP-Hardass  gentoo  org>
AuthorDate: Sun Feb  7 02:32:03 2016 +
Commit: NP Hardass  gentoo  org>
CommitDate: Sun Feb  7 02:38:08 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9fb68d21

dev-java/idm-console-framework: Add proxied maintainers.

Package-Manager: portage-2.2.26

 dev-java/idm-console-framework/metadata.xml | 14 ++
 1 file changed, 14 insertions(+)

diff --git a/dev-java/idm-console-framework/metadata.xml 
b/dev-java/idm-console-framework/metadata.xml
index 5472d9c..c4db442 100644
--- a/dev-java/idm-console-framework/metadata.xml
+++ b/dev-java/idm-console-framework/metadata.xml
@@ -1,6 +1,20 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
+   
+   wibr...@redhat.com
+   William Brown
+   Proxy maintainer. Part of the 389-ds core 
team.
+   
+   
+   w...@sol1.com.au
+   Wes
+   Proxy maintainer.
+   
+   
+   proxy-ma...@gentoo.org
+   Proxy Maintainers
+   
 A Java Management Console framework used for remote server
management. 
 



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

2016-02-06 Thread Brian Dolbec
commit: 531bdc14699e2acc48c7c8942f46b99582008aa8
Author: Brian Dolbec  gentoo  org>
AuthorDate: Sun Feb  7 05:36:43 2016 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Sun Feb  7 05:38:31 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=531bdc14

dev-util/catalyst: First release of the 3.0 codebase

Update the  ebuild.

Package-Manager: portage-2.2.27_p58_p97174

 dev-util/catalyst/Manifest | 1 +
 .../catalyst/{catalyst-.ebuild => catalyst-3.0_rc1.ebuild} | 7 ---
 dev-util/catalyst/catalyst-.ebuild | 3 ++-
 3 files changed, 7 insertions(+), 4 deletions(-)

diff --git a/dev-util/catalyst/Manifest b/dev-util/catalyst/Manifest
index 822c3d4..b4e9fbc 100644
--- a/dev-util/catalyst/Manifest
+++ b/dev-util/catalyst/Manifest
@@ -1 +1,2 @@
 DIST catalyst-2.0.18.tar.bz2 861398 SHA256 
f3c2583fb8da425a9c57d3a00aac559e6bfde5951f1c7ef30ddf4fa00d6bedbd SHA512 
5a1408ffe06ce5c06a6bca8f0e3ecd91c17cdc36e2dfa37881d843432bdfe987fd2cfd988cd5719bdf378c18c2e79ee59e281c3b4dba4ae9edfc2dd654b8ee4a
 WHIRLPOOL 
73abb541bd9984e26e43dbeee3156ca84104aedfe16a027b97790274aaffa8678a29677da4ada908fe9c2184268eb9c266a8961a5e0681fccc463c47a6d83542
+DIST catalyst-3.0_rc1.tar.bz2 874429 SHA256 
b21eabc059ef618b617fdd0fa7c558878393d58ff66ce77a7fc6ff87384608c6 SHA512 
ca33a1142785f10471e675c9dce784e1f92d6029f2fcf82d2fb1a14292e7aa9063e7942e187faa5d4253f316c032b066a6aba0f32e29cc0125ef757654cbd845
 WHIRLPOOL 
f7b3e7ea61c1e590141cc2ff1ec1883e8b07727ee52c2e1d64f8fd371312d1ef84806f5b40fc16d2178b4b9ffcdcaa3d4d3cac0e4ef52625e5f41c8b0a3ec25e

diff --git a/dev-util/catalyst/catalyst-.ebuild 
b/dev-util/catalyst/catalyst-3.0_rc1.ebuild
similarity index 84%
copy from dev-util/catalyst/catalyst-.ebuild
copy to dev-util/catalyst/catalyst-3.0_rc1.ebuild
index 5586792..338d0a7 100644
--- a/dev-util/catalyst/catalyst-.ebuild
+++ b/dev-util/catalyst/catalyst-3.0_rc1.ebuild
@@ -11,12 +11,13 @@ if [[ ${PV} == ** ]]; then
S="${WORKDIR}/${PN}"
 else
SRC_URI="mirror://gentoo/${P}.tar.bz2
+   https://dev.gentoo.org/~dolsen/releases/catalyst/${P}.tar.bz2
https://dev.gentoo.org/~jmbsvicetto/distfiles/${P}.tar.bz2
https://dev.gentoo.org/~zerochaos/distfiles/${P}.tar.bz2;
-   KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sh sparc 
x86 ~x86-fbsd"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~x86-fbsd"
 fi
 
-PYTHON_COMPAT=( python{2_7,3_4} )
+PYTHON_COMPAT=( python{2_7,3_4,3_5} )
 
 inherit distutils-r1 multilib ${SRC_ECLASS}
 
@@ -32,7 +33,7 @@ DEPEND="
>=dev-python/snakeoil-0.6.5[${PYTHON_USEDEP}]
 "
 RDEPEND="
-   =dev-python/pydecomp-[${PYTHON_USEDEP}]
+   >=dev-python/pydecomp-0.1[${PYTHON_USEDEP}]
app-arch/lbzip2
app-crypt/shash
app-arch/tar[xattr]

diff --git a/dev-util/catalyst/catalyst-.ebuild 
b/dev-util/catalyst/catalyst-.ebuild
index 5586792..3bc86e6 100644
--- a/dev-util/catalyst/catalyst-.ebuild
+++ b/dev-util/catalyst/catalyst-.ebuild
@@ -11,12 +11,13 @@ if [[ ${PV} == ** ]]; then
S="${WORKDIR}/${PN}"
 else
SRC_URI="mirror://gentoo/${P}.tar.bz2
+   https://dev.gentoo.org/~dolsen/releases/catalyst/${P}.tar.bz2
https://dev.gentoo.org/~jmbsvicetto/distfiles/${P}.tar.bz2
https://dev.gentoo.org/~zerochaos/distfiles/${P}.tar.bz2;
KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sh sparc 
x86 ~x86-fbsd"
 fi
 
-PYTHON_COMPAT=( python{2_7,3_4} )
+PYTHON_COMPAT=( python{2_7,3_4,3_5} )
 
 inherit distutils-r1 multilib ${SRC_ECLASS}
 



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

2016-02-06 Thread Brian Dolbec
commit: d9d6960b8dddb032ced4ce396d5b557101302084
Author: Brian Dolbec  gentoo  org>
AuthorDate: Sat Feb  6 23:54:09 2016 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Sun Feb  7 05:38:31 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9d6960b

dev-python/pydecomp: First release

Update ebuilds SRC_URI, DECSRIPTION.
Fix typo in metadata.xml.
This is a new catalyst developed pkg & dep, adding all catalyst keywords as 
~arch.

Package-Manager: portage-2.2.27

 dev-python/pydecomp/Manifest  |  1 +
 dev-python/pydecomp/metadata.xml  |  2 +-
 .../pydecomp/{pydecomp-.ebuild => pydecomp-0.1.ebuild}| 11 ++-
 dev-python/pydecomp/pydecomp-.ebuild  | 11 ++-
 4 files changed, 14 insertions(+), 11 deletions(-)

diff --git a/dev-python/pydecomp/Manifest b/dev-python/pydecomp/Manifest
new file mode 100644
index 000..de66e53
--- /dev/null
+++ b/dev-python/pydecomp/Manifest
@@ -0,0 +1 @@
+DIST pydecomp-0.1.tar.gz 8793 SHA256 
4abff74b3d8814bb48be523d3d3ae91eb28e9d8e7fc887d909dcab09f857d6d6 SHA512 
027925589da745bc34f87bf7845dd34f1feb61221bc48b3490e56145f3aef5856dbbce16ea36cc0a65e913b7fa8c042a914fbf9e1e3d82e26f98f8a6fbc6da5c
 WHIRLPOOL 
7f5469291f9c19557adafe14d1dac894d5066391d759c2053f0c600b1bf2fae7543575586fda197af77be2c282a370814331ca07d376ca6d6b7495fdec234321

diff --git a/dev-python/pydecomp/metadata.xml b/dev-python/pydecomp/metadata.xml
index 116f970..adf744d 100644
--- a/dev-python/pydecomp/metadata.xml
+++ b/dev-python/pydecomp/metadata.xml
@@ -12,7 +12,7 @@
A python interface library for common compression ,
decompression and contents generation.  It aims to create a 
simple,
easily extended and configurable common interface to various 
compressison
-   routines.  It can easily be extended with with custom 
compression,
+   routines.  It can easily be extended with custom compression,
decompression, and contents definitions.

pyDeComp

diff --git a/dev-python/pydecomp/pydecomp-.ebuild 
b/dev-python/pydecomp/pydecomp-0.1.ebuild
similarity index 74%
copy from dev-python/pydecomp/pydecomp-.ebuild
copy to dev-python/pydecomp/pydecomp-0.1.ebuild
index a2395e8..8282aa2 100644
--- a/dev-python/pydecomp/pydecomp-.ebuild
+++ b/dev-python/pydecomp/pydecomp-0.1.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2015 Gentoo Foundation
+# 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} )
+PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} )
 
 inherit distutils-r1 python-r1
 
@@ -13,11 +13,12 @@ if [[ ${PV} == "" ]] ; then
EGIT_REPO_URI="git://github.com/dol-sen/pyDeComp.git"
inherit git-2
 else
-   SRC_URI="https://github.com/dol-sen/pyDeComp/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+   
SRC_URI="https://dev.gentoo.org/~dolsen/releases/${PN}/pyDeComp-${PV}.tar.gz -> 
${P}.tar.gz"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~x86-fbsd"
+   S="${WORKDIR}/pyDeComp-${PV}"
 fi
 
-DESCRIPTION="A python interface library for common compression, decompression 
and contents handling"
+DESCRIPTION="A python library of common (de)compression and contents handling"
 HOMEPAGE="https://github.com/dol-sen/pyDeComp;
 
 LICENSE="BSD"
@@ -30,7 +31,7 @@ python_install_all() {
 
 pkg_postinst() {
einfo
-   einfo "This is experimental software."
+   einfo "This is new software."
einfo "The API's it installs should be considered unstable"
einfo "and are subject to change."
einfo

diff --git a/dev-python/pydecomp/pydecomp-.ebuild 
b/dev-python/pydecomp/pydecomp-.ebuild
index a2395e8..8282aa2 100644
--- a/dev-python/pydecomp/pydecomp-.ebuild
+++ b/dev-python/pydecomp/pydecomp-.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2015 Gentoo Foundation
+# 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} )
+PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} )
 
 inherit distutils-r1 python-r1
 
@@ -13,11 +13,12 @@ if [[ ${PV} == "" ]] ; then
EGIT_REPO_URI="git://github.com/dol-sen/pyDeComp.git"
inherit git-2
 else
-   SRC_URI="https://github.com/dol-sen/pyDeComp/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+   
SRC_URI="https://dev.gentoo.org/~dolsen/releases/${PN}/pyDeComp-${PV}.tar.gz -> 
${P}.tar.gz"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~x86-fbsd"
+   S="${WORKDIR}/pyDeComp-${PV}"
 fi
 
-DESCRIPTION="A python interface library for common compression, decompression 
and contents handling"
+DESCRIPTION="A python library of common (de)compression and contents handling"
 

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

2016-02-06 Thread Robin H. Johnson
commit: f9324a84796a5dbcac9d3a3fe2bead24f2853aa1
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Sun Feb  7 01:30:15 2016 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Sun Feb  7 01:30:15 2016 +
URL:https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=f9324a84

Use KERNEL_OUTPUTDIR more consistently.

Signed-off-by: Robin H. Johnson  gentoo.org>

 gen_compile.sh  |  2 +-
 gen_configkernel.sh | 49 ++---
 gen_initramfs.sh|  8 
 gen_moddeps.sh  |  6 +++---
 4 files changed, 34 insertions(+), 31 deletions(-)

diff --git a/gen_compile.sh b/gen_compile.sh
index c26a652..8d8f04a 100755
--- a/gen_compile.sh
+++ b/gen_compile.sh
@@ -697,7 +697,7 @@ compile_iscsi() {
KEXT=$(modules_kext)
for modname in iscsi_tcp libiscsi scsi_transport_iscsi
do
-   module=${CMD_KERNEL_DIR}/drivers/scsi/${modname}${KEXT}
+   
module=${KERNEL_OUTPUTDIR}/drivers/scsi/${modname}${KEXT}
if [ -e "${module}" ]
then
cp $module 
"${TEMP}/initramfs-iscsi-temp/lib/modules/${KV}/kernel/drivers/scsi/"

diff --git a/gen_configkernel.sh b/gen_configkernel.sh
index ac29852..81b2b52 100755
--- a/gen_configkernel.sh
+++ b/gen_configkernel.sh
@@ -32,6 +32,15 @@ determine_config_file() {
fi
 }
 
+function kconfig_set_opt() {
+   kconfig="$1"
+   optname="$2"
+   optval="$3"
+   sed -i "${kconfig}" \
+   -e "s/^#\? \?${optname}[ =].*/${optname}=${optval}/g" \
+   gen_die "Failed to set ${optname}=${optval} in $kconfig"
+}
+
 config_kernel() {
determine_config_file
cd "${KERNEL_DIR}" || gen_die 'Could not switch to the kernel 
directory!'
@@ -110,30 +119,29 @@ config_kernel() {
if isTrue ${CMD_GENZIMAGE}
then
# Make sure Ext2 support is on...
-   sed -e 's/#\? \?CONFIG_EXT2_FS[ =].*/CONFIG_EXT2_FS=y/g' \
-   -i ${KERNEL_OUTPUTDIR}/.config
+   kconfig_set_opt "${KERNEL_OUTPUTDIR}/.config" "CONFIG_EXT2_FS" 
"y"
fi
 
# Make sure lvm modules are on if --lvm
if isTrue ${CMD_LVM}
then
-   sed -i ${KERNEL_OUTPUTDIR}/.config -e 's/#\? 
\?CONFIG_BLK_DEV_DM is.*/CONFIG_BLK_DEV_DM=m/g'
-   sed -i ${KERNEL_OUTPUTDIR}/.config -e 's/#\? 
\?CONFIG_DM_SNAPSHOT is.*/CONFIG_DM_SNAPSHOT=m/g'
-   sed -i ${KERNEL_OUTPUTDIR}/.config -e 's/#\? \?CONFIG_DM_MIRROR 
is.*/CONFIG_DM_MIRROR=m/g'
+   kconfig_set_opt "${KERNEL_OUTPUTDIR}/.config" 
"CONFIG_BLK_DEV_DM" "m"
+   kconfig_set_opt "${KERNEL_OUTPUTDIR}/.config" 
"CONFIG_DM_SNAPSHOT" "m"
+   kconfig_set_opt "${KERNEL_OUTPUTDIR}/.config" 
"CONFIG_DM_MIRROR" "m"
fi
 
# Multipath
if isTrue ${CMD_MULTIPATH}
then
-   sed -i ${KERNEL_DIR}/.config -e 's/#\? \?CONFIG_BLK_DEV_DM 
is.*/CONFIG_BLK_DEV_DM=m/g'
-   sed -i ${KERNEL_DIR}/.config -e 's/#\? \?CONFIG_DM_MULTIPATH 
is.*/CONFIG_DM_MULTIPATH=m/g'
-   sed -i ${KERNEL_DIR}/.config -e 's/#\? 
\?CONFIG_DM_MULTIPATH_RDAC is.*/CONFIG_DM_MULTIPATH_RDAC=m/g'
+   kconfig_set_opt "${KERNEL_OUTPUTDIR}/.config" 
"CONFIG_BLK_DEV_DM" "m"
+   kconfig_set_opt "${KERNEL_OUTPUTDIR}/.config" 
"CONFIG_DM_MULTIPATH" "m"
+   kconfig_set_opt "${KERNEL_OUTPUTDIR}/.config" 
"CONFIG_DM_MULTIPATH_RDAC" "m"
fi
 
# Make sure dmraid modules are on if --dmraid
if isTrue ${CMD_DMRAID}
then
-   sed -i ${KERNEL_OUTPUTDIR}/.config -e 's/#\? 
\?CONFIG_BLK_DEV_DM is.*/CONFIG_BLK_DEV_DM=m/g'
+   kconfig_set_opt "${KERNEL_OUTPUTDIR}/.config" 
"CONFIG_BLK_DEV_DM" "m"
fi
 
# Make sure iSCSI modules are enabled in the kernel, if --iscsi
@@ -141,28 +149,23 @@ config_kernel() {
# CONFIG_ISCSI_TCP
if isTrue ${CMD_ISCSI}
then
-   sed -i ${KERNEL_OUTPUTDIR}/.config -e 's/\# CONFIG_ISCSI_TCP is 
not set/CONFIG_ISCSI_TCP=m/g'
-   sed -i ${KERNEL_OUTPUTDIR}/.config -e 's/\# 
CONFIG_SCSI_ISCSI_ATTRS is not set/CONFIG_SCSI_ISCSI_ATTRS=m/g'
-
-   sed -i ${KERNEL_OUTPUTDIR}/.config -e 
's/CONFIG_ISCSI_TCP=y/CONFIG_ISCSI_TCP=m/g'
-   sed -i ${KERNEL_OUTPUTDIR}/.config -e 
's/CONFIG_SCSI_ISCSI_ATTRS=y/CONFIG_SCSI_ISCSI_ATTRS=m/g'
+   kconfig_set_opt "${KERNEL_OUTPUTDIR}/.config" 
"CONFIG_ISCSI_TCP" "m"
+   kconfig_set_opt "${KERNEL_OUTPUTDIR}/.config" 
"CONFIG_SCSI_ISCSI_ATTRS" "m"
fi
 
if isTrue ${SPLASH}
then
-   sed -i ${KERNEL_OUTPUTDIR}/.config -e 's/#\? \?CONFIG_FB_SPLASH 
is.*/CONFIG_FB_SPLASH=y/g'
+   kconfig_set_opt "${KERNEL_OUTPUTDIR}/.config" 
"CONFIG_FB_SPLASH" "y"
fi
 
# VirtIO
if 

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

2016-02-06 Thread Hans de Graaff
commit: a4f4b5cc25b798d9b31045a8e63ad4fbe6775c63
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Feb  7 07:21:46 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Feb  7 07:21:46 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4f4b5cc

dev-ruby/twitter-text: add 1.13.3

Package-Manager: portage-2.2.26

 dev-ruby/twitter-text/Manifest   |  1 +
 dev-ruby/twitter-text/twitter-text-1.13.3.ebuild | 29 
 2 files changed, 30 insertions(+)

diff --git a/dev-ruby/twitter-text/Manifest b/dev-ruby/twitter-text/Manifest
index e92705a..64bbb55 100644
--- a/dev-ruby/twitter-text/Manifest
+++ b/dev-ruby/twitter-text/Manifest
@@ -1 +1,2 @@
 DIST twitter-text-1.13.0.gem 44544 SHA256 
11c44fabb6f3a3c298f614328ed6ae7f42e14c46d87c01191599b8e2d428205b SHA512 
bfd4315e827149a6a7c34ad26fe6026fd17ebca39557edbab0dfe59380f14528f927c7b9332f28e24cf6a12e00b703b9edb94122fae60757f179f1a71a0e2ea7
 WHIRLPOOL 
a981da96b7b4b27d48159e5d62899d753974b0e3fe53b4bfa31929ee170ee70ce60f011141a3234b9657bf9686938e368cfbf7575c74052078ab576ce9566425
+DIST twitter-text-1.13.3.gem 44544 SHA256 
fa526bf9ec6acd67ec28cd8047be4f37e56b949c413ba1fd27680d6c6d765636 SHA512 
263ec8c1ca418a733019e0a96b68dfc7a8af461a5d363f3c28ff46e0d28e1454163f139dfe73a0d95d451c22de41eabbaf726a5532006391e5028567707d4048
 WHIRLPOOL 
30b272b494a48b405b6e7ead138b12473de57e5439cfc079cc8c8b7b798a94d80f3f65d184094eca667364523633990d94a510bb642ecfc9bf8f0f296999bae2

diff --git a/dev-ruby/twitter-text/twitter-text-1.13.3.ebuild 
b/dev-ruby/twitter-text/twitter-text-1.13.3.ebuild
new file mode 100644
index 000..522abf2
--- /dev/null
+++ b/dev-ruby/twitter-text/twitter-text-1.13.3.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+USE_RUBY="ruby20 ruby21 ruby22"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec"
+
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+RUBY_FAKEGEM_EXTRADOC="README.rdoc"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Text handling for Twitter"
+HOMEPAGE="https://github.com/twitter/twitter-text;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+ruby_add_rdepend "=dev-ruby/unf-0.1*"
+
+ruby_add_bdepend "test? ( >=dev-ruby/nokogiri-1.5.10 )"
+
+all_ruby_prepare() {
+   sed -i -e '/simplecov/,/end/ s:^:#:' spec/spec_helper.rb || die
+}



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

2016-02-06 Thread Hans de Graaff
commit: ebd9976c5507aa54456665d2b85be3e1f6533630
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Feb  7 07:01:22 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Feb  7 07:01:22 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ebd9976c

dev-ruby/mini_magick: cleanup

Package-Manager: portage-2.2.26

 dev-ruby/mini_magick/Manifest  |  3 --
 dev-ruby/mini_magick/mini_magick-4.2.10.ebuild | 45 --
 dev-ruby/mini_magick/mini_magick-4.3.3.ebuild  | 45 --
 dev-ruby/mini_magick/mini_magick-4.3.5.ebuild  | 45 --
 4 files changed, 138 deletions(-)

diff --git a/dev-ruby/mini_magick/Manifest b/dev-ruby/mini_magick/Manifest
index 0561a89..cb6bd8a 100644
--- a/dev-ruby/mini_magick/Manifest
+++ b/dev-ruby/mini_magick/Manifest
@@ -1,4 +1 @@
-DIST mini_magick-4.2.10.tar.gz 1060057 SHA256 
b8f694648ff15729338f7534b057bc1be3fa47bc73fd935f78f872e2f6186996 SHA512 
90ac378d7e9b4eb2fef7d2f036e90ea17e7b1fb42e4f022dd9921af818becbb7041e82796e84cefc05f25e42c1705bd9d623f28d9cda437821d0f7801f731168
 WHIRLPOOL 
9f96b85b3af696a65c80ca5ef4e3754ae993af86532bf624ee351c428c7faca14415e03a4eb7747bcff1a45fc60b7889e31eb0d98c715d29834ac9db9fe0ae4f
-DIST mini_magick-4.3.3.tar.gz 1106623 SHA256 
1ec9ee60cdd88839a958a1fccc82db20887607dc385d618aefcb81cdc577c33e SHA512 
e451d5fc3fe6331698858350d1c6b704f6f3e601228b635a2469403f2b4457606144e04b5020daf67a21ff055d6aed4b138a1f107dc29cc02613541411ed0872
 WHIRLPOOL 
f0783edc683931521a2dcd0f0d4594cc61e65a411650bbbc5223c33da80f9455087127bce4f1f36b0889b6d98ccaeda90b956bb59c789dde171cf8e28186118c
-DIST mini_magick-4.3.5.tar.gz 1106688 SHA256 
2d891e22bd882fb0fd88846f7d3436944a38205af6c8205fa0cb25e9eaba2e05 SHA512 
7d914cd87c9d14aa0680c9b008b93cc1e996df2793c13c004a23b6f813f9c3999d8bb52322661f57ef70c6af12821d3ae5cc92eef2e24896fe50bc9f27d3270b
 WHIRLPOOL 
468048e55ba991466f99efdd598a79b65cc4324c15a9a63f1d79a4bd0068b7dfc616943824ee507839898c6ce690b6fed78ab8b21c8829cc14f90e4cafd40cbe
 DIST mini_magick-4.3.6.tar.gz 1106887 SHA256 
a1316effe107c6b3cbee5bfbd295aad40d5b218e29cdafa71244aecc66e4e189 SHA512 
91ed5628d9d23e28061498e1001a97439ce7124286cd6687675d9d9b0b83a09a894ffa50b1bb6f6c772070f7a3586633cec2841ea3096a5cff94d4f3f2baff8b
 WHIRLPOOL 
2df9e934836bda02a0e42065fa82646238f5119ca03153905068148dac21dca64fe223d1a81ea423b51b35362e1b5a070aae28f5e8468161ea3d25dcc6cbf3c2

diff --git a/dev-ruby/mini_magick/mini_magick-4.2.10.ebuild 
b/dev-ruby/mini_magick/mini_magick-4.2.10.ebuild
deleted file mode 100644
index 4de4e09..000
--- a/dev-ruby/mini_magick/mini_magick-4.2.10.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-USE_RUBY="ruby19 ruby20 ruby21 ruby22"
-
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
-RUBY_FAKEGEM_RECIPE_DOC="rdoc"
-RUBY_FAKEGEM_EXTRADOC="README.md"
-
-RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
-
-RUBY_FAKEGEM_BINWRAP=""
-
-inherit ruby-fakegem eutils
-
-DESCRIPTION="Manipulate images with minimal use of memory"
-HOMEPAGE="https://github.com/minimagick/minimagick;
-SRC_URI="https://github.com/minimagick/minimagick/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-RUBY_S="minimagick-${PV}"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE=""
-
-# It's only used at runtime in this case because this extension only
-# _calls_ the commands. But when we run tests we're going to need tiff
-# and jpeg support at a minimum.
-RDEPEND+=" media-gfx/imagemagick"
-DEPEND+=" test? ( media-gfx/imagemagick[tiff,jpeg,png] 
>=media-gfx/graphicsmagick-1.3.20[tiff,jpeg,png] )"
-
-ruby_add_bdepend "test? ( dev-ruby/mocha dev-ruby/posix-spawn )"
-
-all_ruby_prepare() {
-   # remove executable bit from all files
-   find "${S}" -type f -exec chmod -x {} +
-
-   sed -i -e '/\([Bb]undler\|pry\)/ s:^:#:' spec/spec_helper.rb || die
-
-   # Don't force a specific formatter but use overall Gentoo defaults.
-   sed -i -e '/config.formatter/d' spec/spec_helper.rb || die
-}

diff --git a/dev-ruby/mini_magick/mini_magick-4.3.3.ebuild 
b/dev-ruby/mini_magick/mini_magick-4.3.3.ebuild
deleted file mode 100644
index 4de4e09..000
--- a/dev-ruby/mini_magick/mini_magick-4.3.3.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-USE_RUBY="ruby19 ruby20 ruby21 ruby22"
-
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
-RUBY_FAKEGEM_RECIPE_DOC="rdoc"
-RUBY_FAKEGEM_EXTRADOC="README.md"
-
-RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
-
-RUBY_FAKEGEM_BINWRAP=""
-
-inherit ruby-fakegem eutils
-
-DESCRIPTION="Manipulate images with minimal use of memory"
-HOMEPAGE="https://github.com/minimagick/minimagick;
-SRC_URI="https://github.com/minimagick/minimagick/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-RUBY_S="minimagick-${PV}"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE=""
-
-# It's only used 

  1   2   >