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

2017-01-11 Thread Amy Winston
commit: 47f634e69d4c12058b7f51b7efad1ea1607c66be
Author: Chris Mayo  gmail  com>
AuthorDate: Sun Jan  8 20:31:13 2017 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Wed Jan 11 16:29:53 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47f634e6

sci-geosciences/qgis: install full set of icons and MIME types

Closes:#3302

Package-Manager: portage-2.3.3

 sci-geosciences/qgis/qgis-2.18.2-r3.ebuild | 187 +
 1 file changed, 187 insertions(+)

diff --git a/sci-geosciences/qgis/qgis-2.18.2-r3.ebuild 
b/sci-geosciences/qgis/qgis-2.18.2-r3.ebuild
new file mode 100644
index ..084b555
--- /dev/null
+++ b/sci-geosciences/qgis/qgis-2.18.2-r3.ebuild
@@ -0,0 +1,187 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="6"
+
+PYTHON_COMPAT=( python2_7 )
+PYTHON_REQ_USE="sqlite"
+
+inherit eutils fdo-mime gnome2-utils cmake-utils python-single-r1
+
+DESCRIPTION="User friendly Geographic Information System"
+HOMEPAGE="http://www.qgis.org/;
+SRC_URI="
+   http://qgis.org/downloads/qgis-${PV}.tar.bz2
+   examples? ( http://download.osgeo.org/qgis/data/qgis_sample_data.tar.gz 
)"
+
+LICENSE="GPL-2+ GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="examples georeferencer grass mapserver oracle postgres python"
+
+REQUIRED_USE="
+   python? ( ${PYTHON_REQUIRED_USE} )
+   mapserver? ( python )"
+
+RDEPEND="
+   ${PYTHON_DEPS}
+   dev-libs/expat
+   sci-geosciences/gpsbabel
+   >=sci-libs/gdal-1.6.1:=[geos,oracle?,python?,${PYTHON_USEDEP}]
+   sci-libs/geos
+   sci-libs/libspatialindex:=
+   sci-libs/proj
+   dev-libs/qjson
+   dev-qt/designer:4
+   dev-qt/qtcore:4
+   dev-qt/qtgui:4
+   dev-qt/qtscript:4
+   dev-qt/qtsvg:4
+   dev-qt/qtsql:4
+   dev-qt/qtwebkit:4
+   x11-libs/qscintilla:=[qt4(-)]
+   || (
+   ( || ( =x11-libs/qwt-6.1.2:6[svg,qt4] ) >=x11-libs/qwtpolar-1 )
+   ( x11-libs/qwt:5[svg] =sci-geosciences/grass-7.0.0:= ) )
+   mapserver? ( dev-libs/fcgi )
+   oracle? ( dev-db/oracle-instantclient:= )
+   postgres? ( dev-db/postgresql:= )
+   python? (
+   dev-python/PyQt4[X,sql,svg,webkit,${PYTHON_USEDEP}]
+   =dev-db/spatialite-4.1.0
+   app-crypt/qca:2[qt4,ssl]
+"
+
+DEPEND="${RDEPEND}
+   sys-devel/bison
+   sys-devel/flex"
+
+# Disabling test suite because upstream disallow running from install path
+RESTRICT="test"
+
+pkg_setup() {
+   python-single-r1_pkg_setup
+}
+
+src_prepare() {
+   cmake-utils_src_prepare
+
+   cd src/plugins || die
+   use georeferencer || cmake_comment_add_subdirectory "georeferencer"
+}
+
+src_configure() {
+   local mycmakeargs=(
+   -DQGIS_MANUAL_SUBDIR=/share/man/
+   -DBUILD_SHARED_LIBS=ON
+   -DQGIS_LIB_SUBDIR=$(get_libdir)
+   -DQGIS_PLUGIN_SUBDIR=$(get_libdir)/qgis
+   -DWITH_INTERNAL_DATEUTIL=OFF
+   -DWITH_INTERNAL_HTTPLIB2=OFF
+   -DWITH_INTERNAL_JINJA2=OFF
+   -DWITH_INTERNAL_MARKUPSAFE=OFF
+   -DWITH_INTERNAL_PYGMENTS=OFF
+   -DWITH_INTERNAL_PYTZ=OFF
+   -DWITH_INTERNAL_QWTPOLAR=OFF
+   -DWITH_INTERNAL_SIX=OFF
+   -DPEDANTIC=OFF
+   -DWITH_APIDOC=OFF
+   -DWITH_QSPATIALITE=ON
+   -DENABLE_TESTS=OFF
+   -DWITH_BINDINGS="$(usex python)"
+   -DWITH_GRASS7="$(usex grass)"
+   $(usex grass "-DGRASS_PREFIX=/usr/" "")
+   -DWITH_ORACLE="$(usex oracle)"
+   -DWITH_POSTGRESQL="$(usex postgres)"
+   -DWITH_PYSPATIALITE="$(usex python)"
+   -DWITH_SERVER="$(usex mapserver)"
+   )
+
+   if has_version '>=x11-libs/qwtpolar-1' &&  has_version 'x11-libs/qwt:5' 
; then
+   elog "Both >=x11-libs/qwtpolar-1 and x11-libs/qwt:5 installed. 
Force build with qwt6"
+   mycmakeargs+=( "-DQWT_INCLUDE_DIR=/usr/include/qwt6" )
+   if has_version '>=x11-libs/qwt-6.1.2' ; then
+   mycmakeargs+=( 
"-DQWT_LIBRARY=/usr/$(get_libdir)/libqwt6-qt4.so" )
+   else
+   mycmakeargs+=( 
"-DQWT_LIBRARY=/usr/$(get_libdir)/libqwt6.so" )
+   fi
+   fi
+
+   cmake-utils_src_configure
+}
+
+src_install() {
+   cmake-utils_src_install
+
+   domenu debian/qgis.desktop
+
+   local size type
+   for size in 16 22 24 32 48 64 96 128 256; do
+   newicon -s ${size} debian/${PN}-icon${size}x${size}

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

2017-01-08 Thread Amy Winston
commit: 7586b3c31b0195b079db37f881ddb28b7e55e53f
Author: Amy Liffey  gentoo  org>
AuthorDate: Sun Jan  8 13:30:07 2017 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Sun Jan  8 13:30:07 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7586b3c3

sci-geosciences/qgis: remove old

Package-Manager: portage-2.3.0

 sci-geosciences/qgis/Manifest  |   2 -
 sci-geosciences/qgis/qgis-2.12.1-r1.ebuild | 153 -
 sci-geosciences/qgis/qgis-2.12.2-r1.ebuild | 172 -
 3 files changed, 327 deletions(-)

diff --git a/sci-geosciences/qgis/Manifest b/sci-geosciences/qgis/Manifest
index cb89ae5..b7bd640 100644
--- a/sci-geosciences/qgis/Manifest
+++ b/sci-geosciences/qgis/Manifest
@@ -1,6 +1,4 @@
 DIST qgis-1.8.0.tar.bz2 29997204 SHA256 
700be4f81c4a6b6335a0217a6c476328c0ea02543d579a06dc1aaf60201303ab SHA512 
475c2087164b325bd6efe49bdca9e5eb563645ea556c34f644cff00fd6bcc0585e9e39daa2e62f0a706db58bc1551af786fc2cb6c17ad90f5734ebea5044e57c
 WHIRLPOOL 
ef1fc2832bd20398afdee9eb4c1e81baa3c8c792acc76c0b609a74ae0d61301b00f105221fa27b74b26c68fd8b5d849ea7612e960a8684b885cb8f31d0c71a1c
-DIST qgis-2.12.1.tar.bz2 69088412 SHA256 
96b9bb6ef62ec042b938e4b3112cc8e2e96caad36d6615b484ad757a65e80429 SHA512 
647ad827f6b139a301a5fd1387333842d0187390db1906a37713b41a24bd97e37624ba2b1b500b473132d17e0d856efd0a033b2159930d005c9f74845547958e
 WHIRLPOOL 
05895935df656937b3a1848a07eee8ee96692a8a34d30515d143b2f08cd652640b5116a81025e822497cc26d0e6f6347a6344657272a4c6c6de5d128792b98ad
-DIST qgis-2.12.2.tar.bz2 69110973 SHA256 
5fd0e944497d663d836d30670874a80c2e0ae8214d014d08f11e0d2dac2b4931 SHA512 
75681f99af713439157df573bea009fc6972e4d869ecd44857101051fda35baae09504426fc726ba0c8d833eb2bf69a4de3f9d6b75e25fb4fde620a8bfce8fd1
 WHIRLPOOL 
4d9cffb7a861c92a4640b2a156dbb02865c5218c057e48ab8e2ff2ccbb334bb8a42b48c00b517ace279ca9638047037043ceb44cda56e22eec9b045a82ab346f
 DIST qgis-2.14.5.tar.bz2 74336261 SHA256 
acc1bc1b1c838503e072b3c80de075185f6059d75bb8a686da7a6ab9264b514d SHA512 
d493c83a96eeea2e52199c9a8812989ea89c3357e2f984fdc92f0a05b240770f7ed2d77b1bdbb0e57975c37916acbd6cc4115db5fe11f63897957e8baf6a5586
 WHIRLPOOL 
3cecafad597ae793acd97648987bb130f17bfc8392cde5fd55f093f54786312a2389cdc754c67b47eb0b9512dc981f95cd85cc5dbaaf178c674a477273e83927
 DIST qgis-2.18.2.tar.bz2 83593908 SHA256 
e218ecc2c0b983a95bba0dc46788661e803cf870f5740cbcfaa1ea39a71f02a0 SHA512 
b78bc4f109015f943fa019f0c03208496626d8eae1887eddf975f5fdf81f455db47428b8051a3d02ae46e0482bd7c955871b7d5ead5a70205f6525f085dcbf7f
 WHIRLPOOL 
97629355706241f84152142793881cbd973a269b3fdf5aa9786b4c0d49af7d26c089461638472a977d1a649f6881599467579706837f1ab69e7be3e5cae96cfb
 DIST qgis_sample_data.tar.gz 13601736 SHA256 
a31c54056776e8476e1f959870830f850423645cfb80d88811f3b365c29f2b4a SHA512 
5847d7b32e5f75e771adf6b959847024f55b2360c307bd80e5628595fc53f5aaca18adf6cb00fa027a7e7b326c7f72bab58df16674daf20b77c676e163d93f78
 WHIRLPOOL 
fe7746f8a72807742427c6fb70f1453e195be75322d5784adc484ac14b0eae55569dbded7468ea2ba0c34781fe14918e07a5a187dca82bff551c6117f941d7f5

diff --git a/sci-geosciences/qgis/qgis-2.12.1-r1.ebuild 
b/sci-geosciences/qgis/qgis-2.12.1-r1.ebuild
deleted file mode 100644
index a243e54..
--- a/sci-geosciences/qgis/qgis-2.12.1-r1.ebuild
+++ /dev/null
@@ -1,153 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-PYTHON_REQ_USE="sqlite"
-
-inherit eutils multilib gnome2-utils cmake-utils python-single-r1
-
-DESCRIPTION="User friendly Geographic Information System"
-HOMEPAGE="http://www.qgis.org/;
-SRC_URI="
-   http://qgis.org/downloads/qgis-${PV}.tar.bz2
-   examples? ( http://download.osgeo.org/qgis/data/qgis_sample_data.tar.gz 
)"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="examples grass gsl mapserver postgres python test"
-
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )
-   mapserver? ( python )"
-
-RDEPEND="
-   ${PYTHON_DEPS}
-   dev-libs/expat
-   sci-geosciences/gpsbabel
-   >=sci-libs/gdal-1.6.1[geos,python?,${PYTHON_USEDEP}]
-   sci-libs/geos
-   gsl? ( sci-libs/gsl )
-   sci-libs/libspatialindex
-   sci-libs/proj
-   dev-qt/qtcore:4
-   dev-qt/qtgui:4
-   dev-qt/qtsvg:4
-   dev-qt/qtsql:4
-   dev-qt/qtwebkit:4
-   dev-qt/designer:4
-   x11-libs/qscintilla:=[qt4(-)]
-   || (
-   ( || ( =x11-libs/qwt-6.1.2:6[svg,qt4] ) >=x11-libs/qwtpolar-1 )
-   ( x11-libs/qwt:5[svg] =sci-geosciences/grass-7.0.0 ) )
-   mapserver? ( dev-libs/fcgi )
-   postgres? ( dev-db/postgresql:* )
-   python? (
-   dev-python/PyQt4[X,sql,svg,webkit,${PYTHON_USEDEP}]
-   dev-python/sip[${PYTHON_USEDEP}]
-   dev-pytho

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

2017-01-01 Thread Amy Winston
commit: b240880559f28d3175eef3309713d64b467cb447
Author: Chris Mayo  gmail  com>
AuthorDate: Sun Jan  1 20:38:28 2017 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Mon Jan  2 07:31:24 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2408805

sci-geosciences/qgis: fix Python and Oracle dependencies and icons

Closes:#3299

Package-Manager: portage-2.3.3

 sci-geosciences/qgis/qgis-2.18.2-r2.ebuild | 181 +
 1 file changed, 181 insertions(+)

diff --git a/sci-geosciences/qgis/qgis-2.18.2-r2.ebuild 
b/sci-geosciences/qgis/qgis-2.18.2-r2.ebuild
new file mode 100644
index ..2dddf93
--- /dev/null
+++ b/sci-geosciences/qgis/qgis-2.18.2-r2.ebuild
@@ -0,0 +1,181 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="6"
+
+PYTHON_COMPAT=( python2_7 )
+PYTHON_REQ_USE="sqlite"
+
+inherit eutils gnome2-utils cmake-utils python-single-r1
+
+DESCRIPTION="User friendly Geographic Information System"
+HOMEPAGE="http://www.qgis.org/;
+SRC_URI="
+   http://qgis.org/downloads/qgis-${PV}.tar.bz2
+   examples? ( http://download.osgeo.org/qgis/data/qgis_sample_data.tar.gz 
)"
+
+LICENSE="GPL-2+ GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="examples georeferencer grass mapserver oracle postgres python"
+
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )
+   mapserver? ( python )"
+
+RDEPEND="
+   ${PYTHON_DEPS}
+   dev-libs/expat
+   sci-geosciences/gpsbabel
+   >=sci-libs/gdal-1.6.1:=[geos,oracle?,python?,${PYTHON_USEDEP}]
+   sci-libs/geos
+   sci-libs/libspatialindex:=
+   sci-libs/proj
+   dev-libs/qjson
+   dev-qt/designer:4
+   dev-qt/qtcore:4
+   dev-qt/qtgui:4
+   dev-qt/qtscript:4
+   dev-qt/qtsvg:4
+   dev-qt/qtsql:4
+   dev-qt/qtwebkit:4
+   x11-libs/qscintilla:=[qt4(-)]
+   || (
+   ( || ( =x11-libs/qwt-6.1.2:6[svg,qt4] ) >=x11-libs/qwtpolar-1 )
+   ( x11-libs/qwt:5[svg] =sci-geosciences/grass-7.0.0:= ) )
+   mapserver? ( dev-libs/fcgi )
+   oracle? ( dev-db/oracle-instantclient:= )
+   postgres? ( dev-db/postgresql:= )
+   python? (
+   dev-python/PyQt4[X,sql,svg,webkit,${PYTHON_USEDEP}]
+   =dev-db/spatialite-4.1.0
+   app-crypt/qca:2[qt4,ssl]
+"
+
+DEPEND="${RDEPEND}
+   sys-devel/bison
+   sys-devel/flex"
+
+DOCS=( BUGS ChangeLog NEWS )
+
+# Disabling test suite because upstream disallow running from install path
+RESTRICT="test"
+
+pkg_setup() {
+   python-single-r1_pkg_setup
+}
+
+src_prepare() {
+   default
+
+   cd src/plugins || die
+   use georeferencer || cmake_comment_add_subdirectory "georeferencer"
+}
+
+src_configure() {
+   local mycmakeargs=(
+   -DQGIS_MANUAL_SUBDIR=/share/man/
+   -DBUILD_SHARED_LIBS=ON
+   -DQGIS_LIB_SUBDIR=$(get_libdir)
+   -DQGIS_PLUGIN_SUBDIR=$(get_libdir)/qgis
+   -DWITH_INTERNAL_DATEUTIL=OFF
+   -DWITH_INTERNAL_HTTPLIB2=OFF
+   -DWITH_INTERNAL_JINJA2=OFF
+   -DWITH_INTERNAL_MARKUPSAFE=OFF
+   -DWITH_INTERNAL_PYGMENTS=OFF
+   -DWITH_INTERNAL_PYTZ=OFF
+   -DWITH_INTERNAL_QWTPOLAR=OFF
+   -DWITH_INTERNAL_SIX=OFF
+   -DPEDANTIC=OFF
+   -DWITH_APIDOC=OFF
+   -DWITH_QSPATIALITE=ON
+   -DENABLE_TESTS=OFF
+   -DWITH_BINDINGS="$(usex python)"
+   -DWITH_GRASS7="$(usex grass)"
+   $(usex grass "-DGRASS_PREFIX=/usr/" "")
+   -DWITH_ORACLE="$(usex oracle)"
+   -DWITH_POSTGRESQL="$(usex postgres)"
+   -DWITH_PYSPATIALITE="$(usex python)"
+   -DWITH_SERVER="$(usex mapserver)"
+   )
+
+   if has_version '>=x11-libs/qwtpolar-1' &&  has_version 'x11-libs/qwt:5' 
; then
+   elog "Both >=x11-libs/qwtpolar-1 and x11-libs/qwt:5 installed. 
Force build with qwt6"
+   if has_version '>=x11-libs/qwt-6.1.2' ; then
+   mycmakeargs+=(
+   "-DQWT_INCLUDE_DIR=/usr/include/qwt6"
+   
"-DQWT_LIBRARY=/usr/$(get_libdir)/libqwt6-qt4.so"
+   )
+   else
+   mycmakeargs+=(
+   "-DQWT_INCLUDE_DIR=/usr/include/qwt6"
+   "-DQWT_LIBRARY=/usr/$(get_libdir)/libqwt6.so"
+   )
+   fi
+   fi
+
+   cmake-utils_src_configure
+}
+
+src_install() {
+   cmake-utils_src_install

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

2016-12-26 Thread Amy Winston
commit: fa37f12e43c3e736eeafd74d71172df08734d875
Author: Amy Winston  gentoo  org>
AuthorDate: Mon Dec 26 18:38:07 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Mon Dec 26 18:38:07 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa37f12e

dev-python/click-log: version bump 0.1.8

Package-Manager: portage-2.3.0

 dev-python/click-log/Manifest   |  1 +
 dev-python/click-log/click-log-0.1.8.ebuild | 22 ++
 2 files changed, 23 insertions(+)

diff --git a/dev-python/click-log/Manifest b/dev-python/click-log/Manifest
index 331af2a..7d8e995 100644
--- a/dev-python/click-log/Manifest
+++ b/dev-python/click-log/Manifest
@@ -1,2 +1,3 @@
 DIST click-log-0.1.3.tar.gz 3377 SHA256 
fd8dc8d65947ce6d6ee8ab3101fb0bb9015b9070730ada3f73ec761beb0ead4d SHA512 
7accdd5be62c7c76ec9b862d8dc91710473a46669778f39cb7e8e5fa56020ce0bd619fbe30453338a05d87cef971916f2c4f6d5c9cb9e4982ae32e7a885bd722
 WHIRLPOOL 
0c21711ced16b4263470e43765fd5787a0e3776150e7f0188a0eddc005c9d9d330c196565c273974a1e8b65d7ba42ca99b24ce3a4000bb5aeab431d7ecb78f90
 DIST click-log-0.1.4.tar.gz 9004 SHA256 
dc6275b7d8f87512a22d9806ccc845f474825edd82ad37925a36ba156c887570 SHA512 
0bd81c5ef8c5636b0321807f5bbfb1318480da865a5bde0235679dc053ff5ac7a662bf014cb2d444ccf8b7d840b576756536de2702ae4e43afe91a72653b678c
 WHIRLPOOL 
6aee5b5df76f3873dfe7e8af53816b85edf795bf49e7f8061461eb6cb4a72fe0b1af35bd1b38d73ac08f714beed393d20849f6d760150d75297ff7fb1cdfd2d5
+DIST click-log-0.1.8.tar.gz 9277 SHA256 
57271008c12e2dc16d413373bedd7fd3ff17c57434e168650dc27dfb9c743392 SHA512 
35baaabc54502f203da2fee02f6f63478f4f902bf31b6ef9ae4b9d1677020ef0dce9f24f64e6e48bfc31280b72882f7cdf1f42ecf2cd941256d2e96a40e1
 WHIRLPOOL 
6c03c54f52b770cd1f61f6066c36ff963b2bc89e25b12d25cebb899731693ca9cd82f97d0b254a6fd0b49d9f2b3e4522294ae192eb728c3949483a5338355755

diff --git a/dev-python/click-log/click-log-0.1.8.ebuild 
b/dev-python/click-log/click-log-0.1.8.ebuild
new file mode 100644
index ..8846786
--- /dev/null
+++ b/dev-python/click-log/click-log-0.1.8.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+PYTHON_COMPAT=( python{2_7,3_4} )
+
+inherit distutils-r1
+
+DESCRIPTION="Logging integration for Click."
+HOMEPAGE="https://github.com/click-contrib/click-log 
https://pypi.python.org/pypi/click-log;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="dev-python/click"
+RDEPEND="${DEPEND}"
+
+DOCS=( README.rst )



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

2016-12-24 Thread Amy Winston
commit: 0b1317c792c717e86b5cf8a9d0c6e340574fd134
Author: Amy Winston  gentoo  org>
AuthorDate: Sat Dec 24 12:04:35 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Sat Dec 24 12:04:35 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b1317c7

app-misc/khal: version bump 0.8.4 bug #603086

Package-Manager: portage-2.3.0

 app-misc/khal/Manifest  |  1 +
 app-misc/khal/khal-0.8.4.ebuild | 44 +
 2 files changed, 45 insertions(+)

diff --git a/app-misc/khal/Manifest b/app-misc/khal/Manifest
index 777c482..04138e8 100644
--- a/app-misc/khal/Manifest
+++ b/app-misc/khal/Manifest
@@ -1,2 +1,3 @@
 DIST khal-0.8.1.tar.gz 125681 SHA256 
9d352e4aa6256e493d5aea69540f642158bdcab75d2383e1e43506bf89982094 SHA512 
01b24b7fb041a78443eb1ede80797ca689c2141bf6bb6b171f49931de7440055c38efc4611c483fe85da90794d074e4d08224ce633878ca2f7b8d66799391033
 WHIRLPOOL 
cbcff5dec339ea97ee7bc83860b4f0c0f75801553e191d5856d30758c95936b2a156cea09ae9bd5a2ea96a3914b454f84ce0123970d1d74693be75caa23cbd27
 DIST khal-0.8.3.tar.gz 126656 SHA256 
1ec6940a9fbd207c41428b103bac1d1555129b9b4eca2b843c544bd48ac63ee3 SHA512 
f49e57a6cc9abfcf8dbc5811c2fe00661fd09a8a6d1a64bae4df5ce9c1d01c6f325adeef68a7b45eed3a34bd797b801c00fcd8fa4fdf378335d5273629f0a165
 WHIRLPOOL 
20963f12d9419f2421680548a6de22261e4d9c4482f6a28937b4339335b5a4965178bae0624cc5172da98c534603d3cd0ed5337e03c04190195a478b34b4a34f
+DIST khal-0.8.4.tar.gz 129251 SHA256 
2e5c41eadf83c8f175dc05816571e747da921b025e4acc6b287c109b6e237e0f SHA512 
8a1066f137db1b3a9c2cc246ea17baf6745efd3db9dadacb76b287546137da363bcd78a4ac2acd2c659fbf25f16b155cc993099067a736ef3b68b2e8512d7b83
 WHIRLPOOL 
094c9ec2a0343d557ba70956239d5fa719d9fd08c7038d542b173f18ebce30b11761ac2e09780381fb55a9942cb885fd63b46d6c32573c94ed52990f34841e7b

diff --git a/app-misc/khal/khal-0.8.4.ebuild b/app-misc/khal/khal-0.8.4.ebuild
new file mode 100644
index ..b75fe0b
--- /dev/null
+++ b/app-misc/khal/khal-0.8.4.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="6"
+
+PYTHON_COMPAT=( python3_4 )
+PYTHON_REQ_USE="sqlite"
+
+inherit distutils-r1
+
+DESCRIPTION="A CalDAV based calendar"
+HOMEPAGE="http://lostpackets.de/khal/;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+KEYWORDS="~amd64 ~x86"
+SLOT="0"
+IUSE="zsh-completion"
+
+RDEPEND=">=dev-python/click-3.2[${PYTHON_USEDEP}]
+   dev-python/icalendar[${PYTHON_USEDEP}]
+   dev-python/urwid[${PYTHON_USEDEP}]
+   dev-python/pyxdg[${PYTHON_USEDEP}]
+   dev-python/pytz[${PYTHON_USEDEP}]
+   dev-python/vdirsyncer[${PYTHON_USEDEP}]
+   dev-python/pkginfo[${PYTHON_USEDEP}]
+   dev-python/python-dateutil[${PYTHON_USEDEP}]
+   dev-python/configobj[${PYTHON_USEDEP}]
+   >=dev-python/tzlocal-1.0[${PYTHON_USEDEP}]
+   dev-python/setproctitle[${PYTHON_USEDEP}]
+   zsh-completion? ( app-shells/zsh )"
+
+DEPEND="dev-python/setuptools_scm[${PYTHON_USEDEP}]"
+
+DOCS=( AUTHORS.txt CHANGELOG.rst CONTRIBUTING.txt README.rst khal.conf.sample )
+
+src_install() {
+   distutils-r1_src_install
+   if use zsh-completion; then
+   insinto /usr/share/zsh/site-functions
+   doins misc/__khal
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: dev-scheme/guile/files/

2016-12-20 Thread Amy Winston
commit: a4e5b7cfbfa70f4c0408ed7ac22ec5bd7ebcaf99
Author: Amy Winston  gentoo  org>
AuthorDate: Tue Dec 20 10:38:59 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Tue Dec 20 10:40:36 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4e5b7cf

dev-scheme/guile: clean unused patches

Package-Manager: portage-2.3.0

 .../guile/files/guile-2.0.12-build_includes2.patch | 48 
 ...uile-2.0.12-workaround-ice-ssa-corruption.patch | 64 --
 2 files changed, 112 deletions(-)

diff --git a/dev-scheme/guile/files/guile-2.0.12-build_includes2.patch 
b/dev-scheme/guile/files/guile-2.0.12-build_includes2.patch
deleted file mode 100644
index 320abb3..
--- a/dev-scheme/guile/files/guile-2.0.12-build_includes2.patch
+++ /dev/null
@@ -1,48 +0,0 @@
-From 9eb8c3652d6a424a9c60da03584b8056497d1fdf Mon Sep 17 00:00:00 2001
-From: Mark H Weaver <m...@netris.org>
-Date: Thu, 11 Aug 2016 03:59:40 -0400
-Subject: build: .x and .doc files depend on generated includes.
-
-Fixes <https://bugs.gentoo.org/show_bug.cgi?id=590528>.
-
-* libguile/Makefile.am (BUILT_INCLUDES): New variable.
-(BUILT_SOURCES): Put .i and other generated .h to BUILT_INCLUDES.
-(DOT_X_FILES, EXTRA_DOT_X_FILES, DOT_DOC_FILES, EXTRA_DOT_DOC_FILES):
-Depend on $(BUILT_INCLUDES), in place of scmconfig.h which is included
-in $(BUILT_INCLUDES).

- libguile/Makefile.am | 10 +-
- 1 file changed, 5 insertions(+), 5 deletions(-)
-
-diff --git a/libguile/Makefile.am b/libguile/Makefile.am
-index cd85604..1383c13 100644
 a/libguile/Makefile.am
-+++ b/libguile/Makefile.am
-@@ -430,9 +430,9 @@ DOT_I_FILES = vm-i-system.i vm-i-scheme.i vm-i-loader.i
- .c.i:
-   $(AM_V_GEN)$(GREP) '^VM_DEFINE' $< > $@
- 
--BUILT_SOURCES = cpp-E.c cpp-SIG.c libpath.h \
--scmconfig.h \
--$(DOT_I_FILES) $(DOT_X_FILES) $(EXTRA_DOT_X_FILES)
-+BUILT_INCLUDES = $(DOT_I_FILES) scmconfig.h
-+BUILT_SOURCES = cpp-E.c cpp-SIG.c libpath.h $(BUILT_INCLUDES) \
-+$(DOT_X_FILES) $(EXTRA_DOT_X_FILES)
- 
- # Force the generation of `guile-procedures.texi' because the top-level
- # Makefile expects it to be built.
-@@ -735,9 +735,9 @@ SUFFIXES = .x .doc
- .c.doc:
-   $(AM_V_SNARF)./guile-snarf-docs -o $@ $< -- $(snarfcppopts)
- 
--$(DOT_X_FILES) $(EXTRA_DOT_X_FILES): scmconfig.h snarf.h guile-snarf.in 
version.h
-+$(DOT_X_FILES) $(EXTRA_DOT_X_FILES): $(BUILT_INCLUDES) snarf.h guile-snarf.in 
version.h
- 
--$(DOT_DOC_FILES) $(EXTRA_DOT_DOC_FILES): scmconfig.h snarf.h 
guile-snarf-docs.in guile_filter_doc_snarfage$(EXEEXT)
-+$(DOT_DOC_FILES) $(EXTRA_DOT_DOC_FILES): $(BUILT_INCLUDES) snarf.h 
guile-snarf-docs.in guile_filter_doc_snarfage$(EXEEXT)
- 
- error.x: cpp-E.c
- posix.x: cpp-SIG.c
--- 
-cgit v1.0
-

diff --git 
a/dev-scheme/guile/files/guile-2.0.12-workaround-ice-ssa-corruption.patch 
b/dev-scheme/guile/files/guile-2.0.12-workaround-ice-ssa-corruption.patch
deleted file mode 100644
index 54f3158..
--- a/dev-scheme/guile/files/guile-2.0.12-workaround-ice-ssa-corruption.patch
+++ /dev/null
@@ -1,64 +0,0 @@
-libguile/vm-i-system.c: workaround ice ssa corruption while compiling with 
option -g -O
-
-While compiling with option -g -O, there was a ssa corruption:
-..
-Unable to coalesce ssa_names 48 and 3476 which are marked as MUST COALESCE.
-sp_48(ab) and  sp_3476(ab)
-guile-2.0.11/libguile/vm-engine.c: In function 'vm_debug_engine':
-guile-2.0.11/libguile/vm.c:673:19: internal compiler error: SSA corruption
- #define VM_NAME   vm_debug_engine
-   ^
-guile-2.0.11/libguile/vm-engine.c:39:1: note: in expansion of macro 'VM_NAME'
- VM_NAME (SCM vm, SCM program, SCM *argv, int nargs)
- ^
-Please submit a full bug report,
-with preprocessed source if appropriate.
-See <http://gcc.gnu.org/bugs.html> for instructions.
-...
-
-Tweak libguile/vm-i-system.c to add boundary value check to workaround it.
-
-Upstream-Status: Pending
-
-Signed-off-by: Hongxu Jia <hongxu@windriver.com>
-
-Fixes Buildroot autobuilder failures on AArch64.
-
-Signed-off-by: Thomas Petazzoni <thomas.petazz...@free-electrons.com>

- libguile/vm-i-system.c | 20 
- 1 file changed, 16 insertions(+), 4 deletions(-)
-
-diff --git a/libguile/vm-i-system.c b/libguile/vm-i-system.c
 a/libguile/vm-i-system.c
-+++ b/libguile/vm-i-system.c
-@@ -625,10 +625,22 @@ VM_DEFINE_INSTRUCTION (47, bind_optionals_shuffle, 
"bind-optionals/shuffle", 6,
-   /* now shuffle up, from walk to ntotal */
-   {
- scm_t_ptrdiff nshuf = sp - walk + 1, i;
--sp = (fp - 1) + ntotal + nshuf;
--CHECK_OVERFLOW ();
--for (i = 0; i < nshuf; i++)
--  sp[-i] = walk[nshuf-i-1];
-+/* check the value of nshuf to workaround ice ssa corruption */
-+/* while compiling with -O -g */
-+if (nshuf > 0)
-+{
-+  sp = (fp - 1) + ntotal + nshuf;
-+  CHECK_OVERFLOW ();
-+  for (i = 0; i < nshuf; i++)
-+sp[-i

[gentoo-commits] repo/gentoo:master commit in: dev-scheme/guile/

2016-12-20 Thread Amy Winston
commit: c8a92cf2629cb44be78fcaea749d662795164b8e
Author: Amy Winston  gentoo  org>
AuthorDate: Tue Dec 20 10:08:46 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Tue Dec 20 10:08:46 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8a92cf2

dev-scheme/guile: clean up sec bug #596864

Package-Manager: portage-2.3.0

 dev-scheme/guile/guile-1.8.8-r1.ebuild | 115 -
 dev-scheme/guile/guile-1.8.8-r2.ebuild | 130 -
 2 files changed, 245 deletions(-)

diff --git a/dev-scheme/guile/guile-1.8.8-r1.ebuild 
b/dev-scheme/guile/guile-1.8.8-r1.ebuild
deleted file mode 100644
index 1ab0f08..
--- a/dev-scheme/guile/guile-1.8.8-r1.ebuild
+++ /dev/null
@@ -1,115 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-inherit eutils autotools flag-o-matic elisp-common
-
-DESCRIPTION="Scheme interpreter"
-HOMEPAGE="https://www.gnu.org/software/guile/;
-SRC_URI="mirror://gnu/guile/${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
-IUSE="networking +regex discouraged +deprecated emacs nls debug-freelist 
debug-malloc debug +threads"
-RESTRICT="!regex? ( test )"
-
-RDEPEND="
-   >=dev-libs/gmp-4.1:0=
-   >=sys-devel/libtool-1.5.6
-   sys-devel/gettext
-   sys-libs/ncurses:0=
-   emacs? ( virtual/emacs )"
-DEPEND="${RDEPEND}
-   sys-apps/texinfo"
-
-# Guile seems to contain some slotting support, /usr/share/guile/ is slotted,
-# but there are lots of collisions. Most in /usr/share/libguile. Therefore
-# I'm slotting this in the same slot as guile-1.6* for now.
-SLOT="12"
-MAJOR="1.8"
-
-src_prepare() {
-   epatch "${FILESDIR}/${P}-fix_guile-config.patch" \
-   "${FILESDIR}/${P}-gcc46.patch" \
-   "${FILESDIR}/${P}-makeinfo-5.patch" \
-   "${FILESDIR}/${P}-gtexinfo-5.patch"
-   sed \
-   -e "s/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/g" \
-   -e "/AM_PROG_CC_STDC/d" \
-   -i guile-readline/configure.in
-   eautoreconf
-}
-
-src_configure() {
-   # see bug #178499
-   filter-flags -ftree-vectorize
-
-   #will fail for me if posix is disabled or without modules -- hkBst
-   econf \
-   --disable-error-on-warning \
-   --disable-static \
-   --enable-posix \
-   $(use_enable networking) \
-   $(use_enable regex) \
-   $(use deprecated || use_enable discouraged) \
-   $(use_enable deprecated) \
-   $(use_enable emacs elisp) \
-   $(use_enable nls) \
-   --disable-rpath \
-   $(use_enable debug-freelist) \
-   $(use_enable debug-malloc) \
-   $(use_enable debug guile-debug) \
-   $(use_with threads) \
-   --with-modules \
-   EMACS=no
-}
-
-src_compile()  {
-   emake
-
-   # Above we have disabled the build system's Emacs support;
-   # for USE=emacs we compile (and install) the files manually
-   if use emacs; then
-   cd emacs
-   elisp-compile *.el || die
-   fi
-}
-
-src_install() {
-   einstall
-
-   dodoc AUTHORS ChangeLog GUILE-VERSION HACKING NEWS README THANKS
-
-   # texmacs needs this, closing bug #23493
-   dodir /etc/env.d
-   echo "GUILE_LOAD_PATH=\"${EPREFIX}/usr/share/guile/${MAJOR}\"" > 
"${ED}"/etc/env.d/50guile
-
-   # necessary for registering slib, see bug 206896
-   keepdir /usr/share/guile/site
-
-   if use emacs; then
-   elisp-install ${PN} emacs/*.{el,elc} || die
-   elisp-site-file-install "${FILESDIR}/50${PN}-gentoo.el" || die
-   fi
-}
-
-pkg_postinst() {
-   [ "${EROOT}" == "/" ] && pkg_config
-   use emacs && elisp-site-regen
-}
-
-pkg_postrm() {
-   use emacs && elisp-site-regen
-}
-
-pkg_config() {
-   if has_version dev-scheme/slib; then
-   einfo "Registering slib with guile"
-   install_slib_for_guile
-   fi
-}
-
-_pkg_prerm() {
-   rm -f "${EROOT}"/usr/share/guile/site/slibcat
-}

diff --git a/dev-scheme/guile/guile-1.8.8-r2.ebuild 
b/dev-scheme/guile/guile-1.8.8-r2.ebuild
deleted file mode 100644
index a7d74c4..
--- a/dev-scheme/guile/guile-1.8.8-r2.ebuild
+++ /dev/null
@@ -1,130 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public L

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

2016-12-19 Thread Amy Winston
commit: 0b14c529889e95400a83374ca7f235cd7a45ccb4
Author: Amy Winston  gentoo  org>
AuthorDate: Mon Dec 19 09:38:52 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Mon Dec 19 09:38:52 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b14c529

sci-geosciences/qgis: fix deps

GithubPR: #3136

Package-Manager: portage-2.3.0

 sci-geosciences/qgis/qgis-2.18.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-geosciences/qgis/qgis-2.18.2.ebuild 
b/sci-geosciences/qgis/qgis-2.18.2.ebuild
index ef7bada..4985e33 100644
--- a/sci-geosciences/qgis/qgis-2.18.2.ebuild
+++ b/sci-geosciences/qgis/qgis-2.18.2.ebuild
@@ -29,7 +29,7 @@ RDEPEND="
sci-geosciences/gpsbabel
>=sci-libs/gdal-1.6.1:=[geos,python?,${PYTHON_USEDEP}]
sci-libs/geos
-   >=sci-libs/libspatialindex-1.8.5:=
+   sci-libs/libspatialindex:=
sci-libs/proj
dev-libs/qjson
dev-qt/designer:4



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

2016-12-19 Thread Amy Winston
commit: 738d7df08da4f978ead2c0107a749e766e2d061c
Author: Amy Winston  gentoo  org>
AuthorDate: Mon Dec 19 09:34:18 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Mon Dec 19 09:34:55 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=738d7df0

sci-geosciences/qgis: fix deps by fedeliallalinea

GithubPR: #3136

Package-Manager: portage-2.3.0

 sci-geosciences/qgis/qgis-2.18.2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sci-geosciences/qgis/qgis-2.18.2.ebuild 
b/sci-geosciences/qgis/qgis-2.18.2.ebuild
index bab1eab..ef7bada 100644
--- a/sci-geosciences/qgis/qgis-2.18.2.ebuild
+++ b/sci-geosciences/qgis/qgis-2.18.2.ebuild
@@ -29,7 +29,7 @@ RDEPEND="
sci-geosciences/gpsbabel
>=sci-libs/gdal-1.6.1:=[geos,python?,${PYTHON_USEDEP}]
sci-libs/geos
-   sci-libs/libspatialindex:=
+   >=sci-libs/libspatialindex-1.8.5:=
sci-libs/proj
dev-libs/qjson
dev-qt/designer:4
@@ -64,7 +64,7 @@ RDEPEND="
${PYTHON_DEPS}
)
dev-db/sqlite:3
-   dev-db/spatialite
+   >=dev-db/spatialite-4.1.0
app-crypt/qca:2[qt4,ssl]
 "
 



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

2016-12-18 Thread Amy Winston
commit: 7c7de1b272fd57383359334b499b0a6352bb9b77
Author: Amy Winston  gentoo  org>
AuthorDate: Sun Dec 18 14:32:18 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Sun Dec 18 14:32:18 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c7de1b2

media-gfx/slic3r: fix patch lines bug #602976

Suggested-by: Philippe Trottier (tchiwam  gmail.com)

Package-Manager: portage-2.3.0

 media-gfx/slic3r/files/slic3r--adjust_var_path.patch | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/media-gfx/slic3r/files/slic3r--adjust_var_path.patch 
b/media-gfx/slic3r/files/slic3r--adjust_var_path.patch
index 4769cc6..ff22b24 100644
--- a/media-gfx/slic3r/files/slic3r--adjust_var_path.patch
+++ b/media-gfx/slic3r/files/slic3r--adjust_var_path.patch
@@ -1,9 +1,9 @@
 a/lib/Slic3r.pm2016-07-22 11:52:51.423390877 -0400
-+++ b/lib/Slic3r.pm2016-07-22 12:00:57.272715174 -0400
-@@ -30,7 +30,7 @@
- if $^V == v5.16;
+--- a/lib/Slic3r.pm2016-12-18 15:24:37.52000 +0100
 b/lib/Slic3r.pm2016-12-18 15:25:23.43000 +0100
+@@ -42,7 +42,7 @@
  
  use FindBin;
+ # Path to the images.
 -our $var = sub { decode_path($FindBin::Bin) . "/var/" . $_[0] };
 +our $var = sub { decode_path($FindBin::RealBin) . "/var/" . $_[0] };
  



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

2016-12-18 Thread Amy Winston
commit: ab146b0cb173db0b72c0ee3a9b76a5680538d962
Author: Chris Mayo  gmail  com>
AuthorDate: Sun Dec 18 09:07:05 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Sun Dec 18 12:43:34 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab146b0c

sci-geosciences/qgis: Version bump 2.18.2

Closes: #3136

Package-Manager: portage-2.3.3

 sci-geosciences/qgis/Manifest   |   1 +
 sci-geosciences/qgis/metadata.xml   |   1 +
 sci-geosciences/qgis/qgis-2.18.2.ebuild | 178 
 3 files changed, 180 insertions(+)

diff --git a/sci-geosciences/qgis/Manifest b/sci-geosciences/qgis/Manifest
index ede351c..cb89ae5 100644
--- a/sci-geosciences/qgis/Manifest
+++ b/sci-geosciences/qgis/Manifest
@@ -2,4 +2,5 @@ DIST qgis-1.8.0.tar.bz2 29997204 SHA256 
700be4f81c4a6b6335a0217a6c476328c0ea0254
 DIST qgis-2.12.1.tar.bz2 69088412 SHA256 
96b9bb6ef62ec042b938e4b3112cc8e2e96caad36d6615b484ad757a65e80429 SHA512 
647ad827f6b139a301a5fd1387333842d0187390db1906a37713b41a24bd97e37624ba2b1b500b473132d17e0d856efd0a033b2159930d005c9f74845547958e
 WHIRLPOOL 
05895935df656937b3a1848a07eee8ee96692a8a34d30515d143b2f08cd652640b5116a81025e822497cc26d0e6f6347a6344657272a4c6c6de5d128792b98ad
 DIST qgis-2.12.2.tar.bz2 69110973 SHA256 
5fd0e944497d663d836d30670874a80c2e0ae8214d014d08f11e0d2dac2b4931 SHA512 
75681f99af713439157df573bea009fc6972e4d869ecd44857101051fda35baae09504426fc726ba0c8d833eb2bf69a4de3f9d6b75e25fb4fde620a8bfce8fd1
 WHIRLPOOL 
4d9cffb7a861c92a4640b2a156dbb02865c5218c057e48ab8e2ff2ccbb334bb8a42b48c00b517ace279ca9638047037043ceb44cda56e22eec9b045a82ab346f
 DIST qgis-2.14.5.tar.bz2 74336261 SHA256 
acc1bc1b1c838503e072b3c80de075185f6059d75bb8a686da7a6ab9264b514d SHA512 
d493c83a96eeea2e52199c9a8812989ea89c3357e2f984fdc92f0a05b240770f7ed2d77b1bdbb0e57975c37916acbd6cc4115db5fe11f63897957e8baf6a5586
 WHIRLPOOL 
3cecafad597ae793acd97648987bb130f17bfc8392cde5fd55f093f54786312a2389cdc754c67b47eb0b9512dc981f95cd85cc5dbaaf178c674a477273e83927
+DIST qgis-2.18.2.tar.bz2 83593908 SHA256 
e218ecc2c0b983a95bba0dc46788661e803cf870f5740cbcfaa1ea39a71f02a0 SHA512 
b78bc4f109015f943fa019f0c03208496626d8eae1887eddf975f5fdf81f455db47428b8051a3d02ae46e0482bd7c955871b7d5ead5a70205f6525f085dcbf7f
 WHIRLPOOL 
97629355706241f84152142793881cbd973a269b3fdf5aa9786b4c0d49af7d26c089461638472a977d1a649f6881599467579706837f1ab69e7be3e5cae96cfb
 DIST qgis_sample_data.tar.gz 13601736 SHA256 
a31c54056776e8476e1f959870830f850423645cfb80d88811f3b365c29f2b4a SHA512 
5847d7b32e5f75e771adf6b959847024f55b2360c307bd80e5628595fc53f5aaca18adf6cb00fa027a7e7b326c7f72bab58df16674daf20b77c676e163d93f78
 WHIRLPOOL 
fe7746f8a72807742427c6fb70f1453e195be75322d5784adc484ac14b0eae55569dbded7468ea2ba0c34781fe14918e07a5a187dca82bff551c6117f941d7f5

diff --git a/sci-geosciences/qgis/metadata.xml 
b/sci-geosciences/qgis/metadata.xml
index 220280f..dca8b5f 100644
--- a/sci-geosciences/qgis/metadata.xml
+++ b/sci-geosciences/qgis/metadata.xml
@@ -18,5 +18,6 @@
 Enable Spatial DBMS over sqlite 
dev-db/spatialite
 Add support for sci-geosciences/grass
 Determines whether mapserver should be built
+Determines whether georeferencer plugin should 
be built
   
 

diff --git a/sci-geosciences/qgis/qgis-2.18.2.ebuild 
b/sci-geosciences/qgis/qgis-2.18.2.ebuild
new file mode 100644
index ..bab1eab
--- /dev/null
+++ b/sci-geosciences/qgis/qgis-2.18.2.ebuild
@@ -0,0 +1,178 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="6"
+
+PYTHON_COMPAT=( python2_7 )
+PYTHON_REQ_USE="sqlite"
+
+inherit eutils gnome2-utils cmake-utils python-single-r1
+
+DESCRIPTION="User friendly Geographic Information System"
+HOMEPAGE="http://www.qgis.org/;
+SRC_URI="
+   http://qgis.org/downloads/qgis-${PV}.tar.bz2
+   examples? ( http://download.osgeo.org/qgis/data/qgis_sample_data.tar.gz 
)"
+
+LICENSE="GPL-2+ GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="examples georeferencer grass mapserver oracle postgres python"
+
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )
+   mapserver? ( python )"
+
+RDEPEND="
+   ${PYTHON_DEPS}
+   dev-libs/expat
+   sci-geosciences/gpsbabel
+   >=sci-libs/gdal-1.6.1:=[geos,python?,${PYTHON_USEDEP}]
+   sci-libs/geos
+   sci-libs/libspatialindex:=
+   sci-libs/proj
+   dev-libs/qjson
+   dev-qt/designer:4
+   dev-qt/qtcore:4
+   dev-qt/qtgui:4
+   dev-qt/qtscript:4
+   dev-qt/qtsvg:4
+   dev-qt/qtsql:4
+   dev-qt/qtwebkit:4
+   x11-libs/qscintilla:=
+   || (
+   ( || ( =x11-libs/qwt-6.1.2:6[svg,qt4] ) >=x11-libs/qwtpolar-1 )
+   ( x11-libs/qwt:5[svg] =sci-geosciences/grass-7.0.0:= ) )
+   mapserver? ( dev-libs/fcgi )
+   oracle? ( dev-db/oracle-instantclient:= )
+   postg

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

2016-12-16 Thread Amy Winston
commit: 547c4484c51fc63b5757f48150009ce7b220e9f2
Author: Amy Winston  gentoo  org>
AuthorDate: Fri Dec 16 21:14:09 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Fri Dec 16 21:22:14 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=547c4484

sci-geosciences/qgis: fix accidentally added multilib

Package-Manager: portage-2.3.0

 sci-geosciences/qgis/qgis-2.14.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-geosciences/qgis/qgis-2.14.5.ebuild 
b/sci-geosciences/qgis/qgis-2.14.5.ebuild
index 9884dff..0e8baaf 100644
--- a/sci-geosciences/qgis/qgis-2.14.5.ebuild
+++ b/sci-geosciences/qgis/qgis-2.14.5.ebuild
@@ -7,7 +7,7 @@ EAPI="6"
 PYTHON_COMPAT=( python2_7 )
 PYTHON_REQ_USE="sqlite"
 
-inherit eutils multilib gnome2-utils cmake-utils python-single-r1
+inherit eutils gnome2-utils cmake-utils python-single-r1
 
 DESCRIPTION="User friendly Geographic Information System"
 HOMEPAGE="http://www.qgis.org/;



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

2016-12-15 Thread Amy Winston
commit: 1ec8a98a7e988b2de80d7285834def2c819bbfe8
Author: Amy Winston  gentoo  org>
AuthorDate: Thu Dec 15 10:57:26 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Thu Dec 15 10:57:26 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ec8a98a

sci-geosciences/qgis: fix grass flag bug #601380 by Chris Mayo

Package-Manager: portage-2.3.0

 sci-geosciences/qgis/qgis-2.14.5.ebuild | 8 +++-
 1 file changed, 3 insertions(+), 5 deletions(-)

diff --git a/sci-geosciences/qgis/qgis-2.14.5.ebuild 
b/sci-geosciences/qgis/qgis-2.14.5.ebuild
index d4088cd..9884dff 100644
--- a/sci-geosciences/qgis/qgis-2.14.5.ebuild
+++ b/sci-geosciences/qgis/qgis-2.14.5.ebuild
@@ -7,7 +7,7 @@ EAPI="6"
 PYTHON_COMPAT=( python2_7 )
 PYTHON_REQ_USE="sqlite"
 
-inherit eutils gnome2-utils cmake-utils python-single-r1
+inherit eutils multilib gnome2-utils cmake-utils python-single-r1
 
 DESCRIPTION="User friendly Geographic Information System"
 HOMEPAGE="http://www.qgis.org/;
@@ -96,12 +96,10 @@ src_configure() {
"-DWITH_INTERNAL_SIX=OFF"
"-DPEDANTIC=OFF"
"-DWITH_APIDOC=OFF"
-   "-DWITH_SPATIALITE=ON"
-   "-DWITH_INTERNAL_SPATIALITE=OFF"
+   "-WITH_QSPATIALITE=ON"
-DENABLE_TESTS=no
-DWITH_BINDINGS="$(usex python)"
-   -DWITH_BINDINGS_GLOBAL_INSTALL="$(usex python)"
-   -DWITH_GRASS="$(usex grass)"
+   -DWITH_GRASS7="$(usex grass)"
$(usex grass "-DGRASS_PREFIX=/usr/" "")
-DWITH_GSL="$(usex gsl)"
-DWITH_ORACLE="$(usex oracle)"



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

2016-12-14 Thread Amy Winston
commit: 9988ee34ddbe72fc1aad5982ba8b6f7c6423a666
Author: Amy Winston  gentoo  org>
AuthorDate: Wed Dec 14 23:30:11 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Wed Dec 14 23:30:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9988ee34

media-libs/opencv: version bump 2.4.13 bug #601810

Package-Manager: portage-2.3.0

 media-libs/opencv/Manifest |   1 +
 media-libs/opencv/opencv-2.4.13.ebuild | 241 +
 2 files changed, 242 insertions(+)

diff --git a/media-libs/opencv/Manifest b/media-libs/opencv/Manifest
index 9838733..985f9f1 100644
--- a/media-libs/opencv/Manifest
+++ b/media-libs/opencv/Manifest
@@ -1,3 +1,4 @@
 DIST opencv-2.4.12.zip 93261101 SHA256 
2a7e47da87b9119be922f010a1059539e96130c242f4d38e2dbb445ccbeccbc1 SHA512 
3f9142ef23181f93200413b456c11235ecac11c322ccf3f89cc3740bfa9d9228508948cee245583103029e9f6abf1c5d0c5d249eff400e65b3655153bc6dbb05
 WHIRLPOOL 
86488d91cfac4c980e4f794d6d7e40bf93803f4d79defc991647af742198b845db796b1578b5d79a12a71ecbb04d8430a49c1538d6f86f1288c2a31efefc2548
+DIST opencv-2.4.13.zip 94319943 SHA256 
fa6a45f635f4e1dbc982b8ccc93206650e7fc584b2f3dd945759ce28b047b94f SHA512 
b5ccaa22deabfedd29b697296d265a32c7db959f2e94ca3643c1cde65fb84463809535f2e6bd49c4baa06958fa223a32bbfdd7234b8e160ec333fd9cd7800d3b
 WHIRLPOOL 
86f7690b460dbcf70dec30c29784d96b2bb99e43ba70fe967d18b375fcee4f8934591f0d9fe2ff6717346eb9be8628766658d589eae9943d528352d1ce1df455
 DIST opencv-3.1.0.tar.gz 76135587 SHA256 
f00b3c4f42acda07d89031a2ebb5ebe390764a133502c03a511f67b78bbd4fbf SHA512 
57e0fe41e3d5d1dc036e7fc5673523e53d54f5f62e4d3bcb95238a9cd53e79da7c1704dc136ce632f7cfce369ebf5eb27f629a9b6ac4f7fa34120b80b5c7438f
 WHIRLPOOL 
b2825d5cafa87e0fe9cacd093ddb969913d916c0370819073b2bde3c598798efcf23c406aae2116f2628c564ca99e5f871a448a3ece97d8d29ec73841ac283b4
 DIST opencv-3.1.0_contrib-75b3ea9.tar.gz 54277105 SHA256 
478f742457d3f4e96f857b726e35b28a8d20a1de8e5f51b8671251bc896d443b SHA512 
d1d11520b8729fbaf0257c927654251ff9ac1ba5cf937af9dd973ec39f483d1ee08aff7ad3f1a9941fef921a35dc466ac5574918197ddecd3f6c66b682bf671a
 WHIRLPOOL 
18b70014428c4fa532658ca5ac332bffaae049b468f46cb027a6972f21f5b2bd17d02b33d68c43b84f821a77fa09efb9c372499cfa4f645a0516b93acb858353

diff --git a/media-libs/opencv/opencv-2.4.13.ebuild 
b/media-libs/opencv/opencv-2.4.13.ebuild
new file mode 100644
index ..2f594ee
--- /dev/null
+++ b/media-libs/opencv/opencv-2.4.13.ebuild
@@ -0,0 +1,241 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 )
+
+inherit toolchain-funcs cmake-utils python-single-r1 java-pkg-opt-2 java-ant-2
+
+DESCRIPTION="A collection of algorithms and sample code for various computer 
vision problems"
+HOMEPAGE="http://opencv.org;
+
+SRC_URI="https://github.com/Itseez/opencv/archive/${PV}.zip -> ${P}.zip"
+
+LICENSE="BSD"
+SLOT="0/2.4"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux"
+IUSE="cuda +eigen examples ffmpeg gstreamer gtk ieee1394 ipp jpeg jpeg2k libav 
opencl openexr opengl openmp pch png +python qt4 qt5 testprograms threads tiff 
v4l vtk xine"
+REQUIRED_USE="
+   python? ( ${PYTHON_REQUIRED_USE} )
+   ?? ( qt4 qt5 )
+"
+
+# The following logic is intrinsic in the build system, but we do not enforce
+# it on the useflags since this just blocks emerging pointlessly:
+#  gtk? ( !qt4 )
+#  opengl? ( || ( gtk qt4 ) )
+#  openmp? ( !threads )
+
+RDEPEND="
+   app-arch/bzip2
+   sys-libs/zlib
+   cuda? ( >=dev-util/nvidia-cuda-toolkit-5.5 )
+   ffmpeg? (
+   libav? ( media-video/libav:0= )
+   !libav? ( media-video/ffmpeg:0= )
+   )
+   gstreamer? (
+   media-libs/gstreamer:1.0
+   media-libs/gst-plugins-base:1.0
+   )
+   gtk? (
+   dev-libs/glib:2
+   x11-libs/gtk+:2
+   opengl? ( x11-libs/gtkglext )
+   )
+   java? ( >=virtual/jre-1.6:* )
+   jpeg? ( virtual/jpeg:0 )
+   jpeg2k? ( media-libs/jasper:= )
+   ieee1394? (
+   media-libs/libdc1394
+   sys-libs/libraw1394
+   )
+   ipp? ( sci-libs/ipp )
+   opencl? ( virtual/opencl )
+   openexr? ( media-libs/openexr )
+   opengl? ( virtual/opengl virtual/glu )
+   png? ( media-libs/libpng:0= )
+   python? ( ${PYTHON_DEPS} dev-python/numpy[${PYTHON_USEDEP}] )
+   qt4? (
+   dev-qt/qtgui:4
+   dev-qt/qttest:4
+   opengl? ( dev-qt/qtopengl:4 )
+   )
+   qt5? (
+   dev-qt/qtgui:5
+   dev-qt/qttest:5
+   dev-qt/qtconcurrent:5
+   opengl? ( dev-qt/qtopengl:5 )
+   )
+   threads? ( dev-cpp/tbb )
+   tiff? ( media-libs/tiff:0 )
+   v4l? ( >=media-libs/libv4l-0.8.3 )
+ 

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

2016-12-11 Thread Amy Winston
commit: 4759aaa4c9c3cb967746fe706953b6b519d211ec
Author: Horea Christian  yandex  com>
AuthorDate: Fri Dec  9 19:41:02 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Sun Dec 11 09:52:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4759aaa4

dev-lang/lazarus: version bump 1.6.2

Closes: #3066

Package-Manager: portage-2.3.3

 dev-lang/lazarus/Manifest |  1 +
 dev-lang/lazarus/lazarus-1.6.2.ebuild | 76 +++
 2 files changed, 77 insertions(+)

diff --git a/dev-lang/lazarus/Manifest b/dev-lang/lazarus/Manifest
index 13df310..489c2d4 100644
--- a/dev-lang/lazarus/Manifest
+++ b/dev-lang/lazarus/Manifest
@@ -3,3 +3,4 @@ DIST lazarus-1.2.2-0.tar.gz 51558117 SHA256 
ac2154c38b3918a08d762977073e606c272c
 DIST lazarus-1.2.4-0.tar.gz 51606253 SHA256 
e8622f2b29988514c9b7b7ff6cf2058a8b73e9ef0fd7998c82e1e958d2347d28 SHA512 
c1858a2b89402d3cfb4baa704cdeb51dc541bf5dcac91230f93f62035988b5e5fec3851bf033876128db5da18713389a9eb6ca73c944dae36c0d6fb30e7727f8
 WHIRLPOOL 
fddb4d650e3400b2fe1cfde1d431be3d752f81dbe715b821f55368628097225ce9156e4065f58c27346cba5a041127c25e7cc80ca15b77aab9e6188cfdd3b215
 DIST lazarus-1.2.6-0.tar.gz 51618690 SHA256 
c0c7e648716f27edd6f1adf908fd5733654c3cd3db6458582ccd4343a8605eea SHA512 
f7f227621ee69b7056dd87dab19e2217496ac2f280e3aa6dacdac890e55dfb9595a0562c06e50cb4b4f50d021739785d840eb19ec6d77040febb86fe78a5a47a
 WHIRLPOOL 
aff1abb59380553e92d956d35393689eed55bd8684a8c182b048cea774236defe9107b0449131a7868526721658f72e7d0c68578a55d56e53e3a68dc7d51fe3a
 DIST lazarus-1.6.0-0.tar.gz 55911739 SHA256 
cbce02be1ed902a4978a1316023d955c0db69a1dba42c93a83b8a24f3ca8 SHA512 
6ac84325aa2caf7896b3cb55df72199ab04bf25320257510b288cde8fb679161834dca9ad3d07d39c164c05ab35c0cd248651a13c826d454c0dc84a558589576
 WHIRLPOOL 
2e3b1ac39fd79dcb457bfbe22c73ddcf781e9e5f0c263d88bd9b6e2ff9e417f2e1094702e1bc190788a1f5a86470b8165bc586f22d02a8b370db9245cfd9131e
+DIST lazarus-1.6.2-0.tar.gz 55949169 SHA256 
eae73ac1d50456d191e13601ea5c333a8816732f6fcd0b849c3685da869cc1ef SHA512 
9fb428ac5b38c0c37f909aaf06a43343f3231e9209318faf565cc08ac498c0dfb136a2f6266d437f93b5cf81e6281d747a234fef399fc6d2cb044b13397562d9
 WHIRLPOOL 
62917479986e85d68af5c73c77a5d1b05262f48bfab08f23b6ef8144ae04bb6b4d6935446a3d9cb582a404452eae024f947680550591ed70f0ae3bf0babbfe99

diff --git a/dev-lang/lazarus/lazarus-1.6.2.ebuild 
b/dev-lang/lazarus/lazarus-1.6.2.ebuild
new file mode 100644
index ..65d1eaa
--- /dev/null
+++ b/dev-lang/lazarus/lazarus-1.6.2.ebuild
@@ -0,0 +1,76 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+inherit eutils
+
+FPCVER="3.0.0"
+
+DESCRIPTION="Lazarus IDE is a feature rich visual programming environment 
emulating Delphi"
+HOMEPAGE="http://www.lazarus.freepascal.org/;
+SRC_URI="https://sourceforge.net/projects/${PN}/files/Lazarus%20Zip%20_%20GZip/Lazarus%201.6.2/${P}-0.tar.gz;
+
+LICENSE="GPL-2 LGPL-2.1-with-linking-exception"
+SLOT="0" # Note: Slotting Lazarus needs slotting fpc, see DEPEND.
+KEYWORDS="~amd64 ~x86"
+IUSE="minimal"
+
+DEPEND=">=dev-lang/fpc-${FPCVER}[source]
+   net-misc/rsync
+   x11-libs/gtk+:2
+   >=sys-devel/binutils-2.19.1-r1:="
+RDEPEND="${DEPEND}
+   !=gnome-base/librsvg-2.16.1"
+
+RESTRICT="strip" #269221
+
+S=${WORKDIR}/${PN}
+
+PATCHES=( "${FILESDIR}"/${PN}-0.9.26-fpcsrc.patch )
+
+src_prepare() {
+   default
+   # Use default configuration (minus stripping) unless specifically 
requested otherwise
+   if ! test ${PPC_CONFIG_PATH+set} ; then
+   local FPCVER=$(fpc -iV)
+   export PPC_CONFIG_PATH="${WORKDIR}"
+   sed -e 's/^FPBIN=/#&/' /usr/lib/fpc/${FPCVER}/samplecfg |
+   sh -s /usr/lib/fpc/${FPCVER} "${PPC_CONFIG_PATH}" || die
+   #sed -i -e '/^-Xs/d' "${PPC_CONFIG_PATH}"/fpc.cfg || die
+   fi
+}
+
+src_compile() {
+   LCL_PLATFORM=gtk2 emake \
+   $(usex minimal "" "bigide") \
+   -j1
+}
+
+src_install() {
+   diropts -m0755
+   dodir /usr/share
+   # Using rsync to avoid unnecessary copies and cleaning...
+   # Note: *.o and *.ppu are needed
+   rsync -a \
+   --exclude="CVS" --exclude=".cvsignore" \
+   --exclude="*.ppw"   --exclude="*.ppl" \
+   --exclude="*.ow"--exclude="*.a"\
+   --exclude="*.rst"   --exclude=".#*" \
+   --exclude="*.~*"--exclude="*.bak" \
+   --exclude="*.orig"  --exclude="*.rej" \
+   --exclude=".xvpics" --exclude="*.compiled" \
+

[gentoo-commits] repo/gentoo:master commit in: sci-libs/gdal/files/, sci-libs/gdal/

2016-12-03 Thread Amy Winston
commit: f6d0b15b0e40546b0cb66930e2cd8a95a4001d24
Author: Amy Winston  gentoo  org>
AuthorDate: Sat Dec  3 10:26:23 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Sat Dec  3 10:26:23 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6d0b15b

sci-libs/gdal: add jasper patch bug #599626

Package-Manager: portage-2.3.0

 sci-libs/gdal/files/gdal-2.0.2-jasper2.patch | 62 
 sci-libs/gdal/gdal-2.0.2-r3.ebuild   |  1 +
 2 files changed, 63 insertions(+)

diff --git a/sci-libs/gdal/files/gdal-2.0.2-jasper2.patch 
b/sci-libs/gdal/files/gdal-2.0.2-jasper2.patch
new file mode 100644
index ..a418e41
--- /dev/null
+++ b/sci-libs/gdal/files/gdal-2.0.2-jasper2.patch
@@ -0,0 +1,62 @@
+diff -urN orig/frmts/jpeg2000/jpeg2000_vsil_io.cpp 
dwok/frmts/jpeg2000/jpeg2000_vsil_io.cpp
+--- orig/frmts/jpeg2000/jpeg2000_vsil_io.cpp   2016-01-26 16:21:48.0 
+0100
 dwok/frmts/jpeg2000/jpeg2000_vsil_io.cpp   2016-11-16 21:53:15.280302723 
+0100
+@@ -179,40 +179,25 @@
+ * Buffer initialization code.
+ 
\**/
+ 
+-static void JPEG2000_VSIL_jas_stream_initbuf(jas_stream_t *stream, int 
bufmode, char *buf,
+-  int bufsize)
++static void JPEG2000_VSIL_jas_stream_initbuf(jas_stream_t *stream, int 
bufmode)
+ {
+   /* If this function is being called, the buffer should not have been
+ initialized yet. */
+   assert(!stream->bufbase_);
+ 
+   if (bufmode != JAS_STREAM_UNBUF) {
+-  /* The full- or line-buffered mode is being employed. */
+-  if (!buf) {
+-  /* The caller has not specified a buffer to employ, so 
allocate
+-one. */
+-  if ((stream->bufbase_ = (unsigned 
char*)jas_malloc(JAS_STREAM_BUFSIZE +
+-JAS_STREAM_MAXPUTBACK))) {
+-  stream->bufmode_ |= JAS_STREAM_FREEBUF;
+-  stream->bufsize_ = JAS_STREAM_BUFSIZE;
+-  } else {
+-  /* The buffer allocation has failed.  Resort to 
unbuffered
+-operation. */
+-  stream->bufbase_ = stream->tinybuf_;
+-  stream->bufsize_ = 1;
+-  }
++  if ((stream->bufbase_ = (unsigned 
char*)jas_malloc(JAS_STREAM_BUFSIZE +
++JAS_STREAM_MAXPUTBACK))) {
++  stream->bufmode_ |= JAS_STREAM_FREEBUF;
++  stream->bufsize_ = JAS_STREAM_BUFSIZE;
+   } else {
+-  /* The caller has specified a buffer to employ. */
+-  /* The buffer must be large enough to accommodate 
maximum
+-putback. */
+-  assert(bufsize > JAS_STREAM_MAXPUTBACK);
+-  stream->bufbase_ = JAS_CAST(uchar *, buf);
+-  stream->bufsize_ = bufsize - JAS_STREAM_MAXPUTBACK;
++  /* The buffer allocation has failed.  Resort to 
unbuffered
++operation. */
++  stream->bufbase_ = stream->tinybuf_;
++  stream->bufsize_ = 1;
+   }
+   } else {
+   /* The unbuffered mode is being employed. */
+-  /* A buffer should not have been supplied by the caller. */
+-  assert(!buf);
+   /* Use a trivial one-character buffer. */
+   stream->bufbase_ = stream->tinybuf_;
+   stream->bufsize_ = 1;
+@@ -282,7 +267,7 @@
+   }
+ 
+   /* By default, use full buffering for this type of stream. */
+-  JPEG2000_VSIL_jas_stream_initbuf(stream, JAS_STREAM_FULLBUF, 0, 0);
++  JPEG2000_VSIL_jas_stream_initbuf(stream, JAS_STREAM_FULLBUF);
+ 
+   return stream;
+ }

diff --git a/sci-libs/gdal/gdal-2.0.2-r3.ebuild 
b/sci-libs/gdal/gdal-2.0.2-r3.ebuild
index 2dae2cd..f8a672c 100644
--- a/sci-libs/gdal/gdal-2.0.2-r3.ebuild
+++ b/sci-libs/gdal/gdal-2.0.2-r3.ebuild
@@ -87,6 +87,7 @@ src_prepare() {
 
if use jpeg2k; then
epatch "${FILESDIR}"/${P}-jasper.patch
+   epatch "${FILESDIR}"/${P}-jasper2.patch #bug 599626
fi
 
# -soname is only accepted by GNU ld/ELF



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

2016-11-26 Thread Amy Winston
commit: 21dda216d1a1bff5f0374903ddb8048caaad49c7
Author: Amy Winston  gentoo  org>
AuthorDate: Sat Nov 26 10:07:56 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Sat Nov 26 10:08:51 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21dda216

app-misc/khal: remove old

Package-Manager: portage-2.3.0

 app-misc/khal/Manifest  |  1 -
 app-misc/khal/khal-0.7.0.ebuild | 44 -
 2 files changed, 45 deletions(-)

diff --git a/app-misc/khal/Manifest b/app-misc/khal/Manifest
index 466f4e9..777c482 100644
--- a/app-misc/khal/Manifest
+++ b/app-misc/khal/Manifest
@@ -1,3 +1,2 @@
-DIST khal-0.7.0.tar.gz 109801 SHA256 
c6b0c81df56133e4592f02d8e9b60702079da2affd1b09ba96358ccd8eec9402 SHA512 
cad0bd8c5e869ffb5333e62747f0c5f71ae4a82adf60889922fcc61b4befefd926b0d642fcb8aec471aafc3fab6f042fa4253d381936c229582a8196319a1505
 WHIRLPOOL 
bd265e0c2ff84014ae7b706722e8b850221458ad4c24dd9137321c06048ed1b5442eb93b7d18338a97f201b6e598bef2be3abe375b80f9530306e2617c73cfbd
 DIST khal-0.8.1.tar.gz 125681 SHA256 
9d352e4aa6256e493d5aea69540f642158bdcab75d2383e1e43506bf89982094 SHA512 
01b24b7fb041a78443eb1ede80797ca689c2141bf6bb6b171f49931de7440055c38efc4611c483fe85da90794d074e4d08224ce633878ca2f7b8d66799391033
 WHIRLPOOL 
cbcff5dec339ea97ee7bc83860b4f0c0f75801553e191d5856d30758c95936b2a156cea09ae9bd5a2ea96a3914b454f84ce0123970d1d74693be75caa23cbd27
 DIST khal-0.8.3.tar.gz 126656 SHA256 
1ec6940a9fbd207c41428b103bac1d1555129b9b4eca2b843c544bd48ac63ee3 SHA512 
f49e57a6cc9abfcf8dbc5811c2fe00661fd09a8a6d1a64bae4df5ce9c1d01c6f325adeef68a7b45eed3a34bd797b801c00fcd8fa4fdf378335d5273629f0a165
 WHIRLPOOL 
20963f12d9419f2421680548a6de22261e4d9c4482f6a28937b4339335b5a4965178bae0624cc5172da98c534603d3cd0ed5337e03c04190195a478b34b4a34f

diff --git a/app-misc/khal/khal-0.7.0.ebuild b/app-misc/khal/khal-0.7.0.ebuild
deleted file mode 100644
index d338656..
--- a/app-misc/khal/khal-0.7.0.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# 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_4} )
-PYTHON_REQ_USE="sqlite"
-
-inherit distutils-r1
-
-DESCRIPTION="A CalDAV based calendar"
-HOMEPAGE="http://lostpackets.de/khal/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-KEYWORDS="~amd64 ~x86"
-SLOT="0"
-IUSE="zsh-completion"
-
-RDEPEND=">=dev-python/click-3.2[${PYTHON_USEDEP}]
-   dev-python/icalendar[${PYTHON_USEDEP}]
-   dev-python/urwid[${PYTHON_USEDEP}]
-   dev-python/pyxdg[${PYTHON_USEDEP}]
-   dev-python/pytz[${PYTHON_USEDEP}]
-   dev-python/vdirsyncer[${PYTHON_USEDEP}]
-   dev-python/pkginfo[${PYTHON_USEDEP}]
-   dev-python/python-dateutil[${PYTHON_USEDEP}]
-   dev-python/configobj[${PYTHON_USEDEP}]
-   dev-python/tzlocal[${PYTHON_USEDEP}]
-   dev-python/setproctitle[${PYTHON_USEDEP}]
-   zsh-completion? ( app-shells/zsh )"
-
-DEPEND="dev-python/setuptools_scm[${PYTHON_USEDEP}]"
-
-DOCS=( AUTHORS.txt CHANGELOG.rst CONTRIBUTING.txt README.rst khal.conf.sample )
-
-src_install() {
-   distutils-r1_src_install
-   if use zsh-completion; then
-   insinto /usr/share/zsh/site-functions
-   doins misc/__khal
-   fi
-}



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

2016-11-26 Thread Amy Winston
commit: be739193a53c5b4324098be85f6fae35ae794966
Author: Amy Winston  gentoo  org>
AuthorDate: Sat Nov 26 08:54:47 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Sat Nov 26 08:54:47 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be739193

dev-python/vdirsyncer: remove old

Package-Manager: portage-2.3.0

 dev-python/vdirsyncer/Manifest |  5 -
 dev-python/vdirsyncer/vdirsyncer-0.10.0.ebuild | 29 
 dev-python/vdirsyncer/vdirsyncer-0.11.2.ebuild | 29 
 dev-python/vdirsyncer/vdirsyncer-0.7.5.ebuild  | 31 --
 dev-python/vdirsyncer/vdirsyncer-0.9.0.ebuild  | 30 -
 dev-python/vdirsyncer/vdirsyncer-0.9.3.ebuild  | 30 -
 6 files changed, 154 deletions(-)

diff --git a/dev-python/vdirsyncer/Manifest b/dev-python/vdirsyncer/Manifest
index 63d9a69..dd47fdf 100644
--- a/dev-python/vdirsyncer/Manifest
+++ b/dev-python/vdirsyncer/Manifest
@@ -1,6 +1 @@
-DIST vdirsyncer-0.10.0.tar.gz 95756 SHA256 
e8b894022beab6f98bde80c919e5fa99cb72698e2327e8d5271c70d39636c8bd SHA512 
dbc9b6062a09e5a408791a90277f719be4abc5315c226622f7d1d8f6ae13b04de18e4f26fc94e9c09529970b6d604ccd93a490ffb8ba0c98e0e450317a4c0d88
 WHIRLPOOL 
a6482c14cb916a38c319623c6f2fad28fec7044109d7e5682075fbdba2f7c83ef8c648a583e3ef17e29c1dfaa033b1322615b106791f600e1863d037910a313c
-DIST vdirsyncer-0.11.2.tar.gz 98819 SHA256 
b21ecfd791e73399bbc56120c7179aa8548179452dc9c64710b13b09a5e03a96 SHA512 
bfd142d1b9f2a5ac87b538fdf4aa2d0b3a6d1aab1370907c74f024ebb7ed73606db0867330b8442bfc8daa45971b472d68754e927a02bff0d6056768259603a5
 WHIRLPOOL 
1168a62f74c2099a47c5a015e949ee19ff8f67f68bc459e37bfa8b20c3a4a3b4a29562bb791b59361ea67e4bcbc97790d147f5e73b952ee2923a949f8bd3a875
 DIST vdirsyncer-0.14.0.tar.gz 105839 SHA256 
28211a857c03ea6cdad22ca74505758a743dbb8bc224e5bcd558a73efd1370d5 SHA512 
e8a9f74032bc625db60206a210d7c00fad224b7eccfd1caeabbb97b443fd90ae8a00e2fdfabfd6118864dd9b6d8922eb9906091a8e341334848f66e55ed5fcdd
 WHIRLPOOL 
c1823b0db07e1b2deaed5cf2b69a86bb025d47d9ba79d408fdddfa81706f9046b43f8076f4ea418037639a5a52b9fff33e75bae1cfbf9c01f4920139a5e36d99
-DIST vdirsyncer-0.7.5.tar.gz 86669 SHA256 
3f51c1fabac7f231327deb098998185cbd77564dc1bfc29f4bc8d89226c96a37 SHA512 
4df4469c8bd6f29e7250ee10407e34e2badd1b6c6260f4f71dbc090ca55837207d22edbbc83b6d7a5e332fc64dba49a9b94002bb607e39ba8cb7dbba8a5b0a28
 WHIRLPOOL 
9d95dd2e18c347ec02cc8019226e0fb6c3726b04845bf2da3aafbb738b72628c8359f51d5095312b8bfd990a6e208260eef90ac55decac2798eca0ddae6fb91f
-DIST vdirsyncer-0.9.0.tar.gz 87186 SHA256 
c5101d8b29c4c0da37ef5542d5bcc53e6ce2266c955fd601ca19989db2e42a69 SHA512 
34446b588eae14f07055eab486db2386d04a12f71b35c41c27529cbd4dbd518067175236d961d97625c4b0b46f0cd24ed367b84aa33b2c42371c999aaba3cde6
 WHIRLPOOL 
2d735e1b32d1d42e5e32ce58e962a4c27665e32fb7181e4258716eeac594f74b23297e1af3833c8741552b5181a676d6f084f70f81b5071a6dd0336309d32f4e
-DIST vdirsyncer-0.9.3.tar.gz 92463 SHA256 
8ca2941bb99c5b67f0f9e7cae3dd65fcbd64b8969515c68d44e6f3cd9cfc50f2 SHA512 
ca1ccae7c90d1ce15581e047e776433835e5575b977ffdfc665f386d701ffb5a18928e753459cb0f8c8644a67165db370d1e24378ff67fc7a3c4f954ef71d550
 WHIRLPOOL 
34f291dd99b149ce9a0814d0bb51d31e3438ed98712fcd4042ad9dfef292ef6bba2d68aa49763445534455ab6458d01cce6356cdd2706f9b9b2b38c177b688da

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

diff --git a/dev-python/vdirsyncer/vdirsyncer-0.11.2.ebuild 
b/dev-python/vdirsyncer/vdirsyncer-0.11.2.ebuild
deleted file mode 100644
index 874a7a7..
--- a/dev-python/vdirsyncer/vdirsyncer-0.11.2.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the 

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

2016-11-25 Thread Amy Winston
commit: cd3616695c7b0a0097f7b609946b77aa40c209e7
Author: Amy Winston  gentoo  org>
AuthorDate: Fri Nov 25 11:30:08 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Fri Nov 25 11:30:57 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd361669

dev-python/vdirsyncer: version bump 0.14.0 bug #595948

Package-Manager: portage-2.3.0

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

diff --git a/dev-python/vdirsyncer/Manifest b/dev-python/vdirsyncer/Manifest
index 3e784ea..63d9a69 100644
--- a/dev-python/vdirsyncer/Manifest
+++ b/dev-python/vdirsyncer/Manifest
@@ -1,5 +1,6 @@
 DIST vdirsyncer-0.10.0.tar.gz 95756 SHA256 
e8b894022beab6f98bde80c919e5fa99cb72698e2327e8d5271c70d39636c8bd SHA512 
dbc9b6062a09e5a408791a90277f719be4abc5315c226622f7d1d8f6ae13b04de18e4f26fc94e9c09529970b6d604ccd93a490ffb8ba0c98e0e450317a4c0d88
 WHIRLPOOL 
a6482c14cb916a38c319623c6f2fad28fec7044109d7e5682075fbdba2f7c83ef8c648a583e3ef17e29c1dfaa033b1322615b106791f600e1863d037910a313c
 DIST vdirsyncer-0.11.2.tar.gz 98819 SHA256 
b21ecfd791e73399bbc56120c7179aa8548179452dc9c64710b13b09a5e03a96 SHA512 
bfd142d1b9f2a5ac87b538fdf4aa2d0b3a6d1aab1370907c74f024ebb7ed73606db0867330b8442bfc8daa45971b472d68754e927a02bff0d6056768259603a5
 WHIRLPOOL 
1168a62f74c2099a47c5a015e949ee19ff8f67f68bc459e37bfa8b20c3a4a3b4a29562bb791b59361ea67e4bcbc97790d147f5e73b952ee2923a949f8bd3a875
+DIST vdirsyncer-0.14.0.tar.gz 105839 SHA256 
28211a857c03ea6cdad22ca74505758a743dbb8bc224e5bcd558a73efd1370d5 SHA512 
e8a9f74032bc625db60206a210d7c00fad224b7eccfd1caeabbb97b443fd90ae8a00e2fdfabfd6118864dd9b6d8922eb9906091a8e341334848f66e55ed5fcdd
 WHIRLPOOL 
c1823b0db07e1b2deaed5cf2b69a86bb025d47d9ba79d408fdddfa81706f9046b43f8076f4ea418037639a5a52b9fff33e75bae1cfbf9c01f4920139a5e36d99
 DIST vdirsyncer-0.7.5.tar.gz 86669 SHA256 
3f51c1fabac7f231327deb098998185cbd77564dc1bfc29f4bc8d89226c96a37 SHA512 
4df4469c8bd6f29e7250ee10407e34e2badd1b6c6260f4f71dbc090ca55837207d22edbbc83b6d7a5e332fc64dba49a9b94002bb607e39ba8cb7dbba8a5b0a28
 WHIRLPOOL 
9d95dd2e18c347ec02cc8019226e0fb6c3726b04845bf2da3aafbb738b72628c8359f51d5095312b8bfd990a6e208260eef90ac55decac2798eca0ddae6fb91f
 DIST vdirsyncer-0.9.0.tar.gz 87186 SHA256 
c5101d8b29c4c0da37ef5542d5bcc53e6ce2266c955fd601ca19989db2e42a69 SHA512 
34446b588eae14f07055eab486db2386d04a12f71b35c41c27529cbd4dbd518067175236d961d97625c4b0b46f0cd24ed367b84aa33b2c42371c999aaba3cde6
 WHIRLPOOL 
2d735e1b32d1d42e5e32ce58e962a4c27665e32fb7181e4258716eeac594f74b23297e1af3833c8741552b5181a676d6f084f70f81b5071a6dd0336309d32f4e
 DIST vdirsyncer-0.9.3.tar.gz 92463 SHA256 
8ca2941bb99c5b67f0f9e7cae3dd65fcbd64b8969515c68d44e6f3cd9cfc50f2 SHA512 
ca1ccae7c90d1ce15581e047e776433835e5575b977ffdfc665f386d701ffb5a18928e753459cb0f8c8644a67165db370d1e24378ff67fc7a3c4f954ef71d550
 WHIRLPOOL 
34f291dd99b149ce9a0814d0bb51d31e3438ed98712fcd4042ad9dfef292ef6bba2d68aa49763445534455ab6458d01cce6356cdd2706f9b9b2b38c177b688da

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



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

2016-11-16 Thread Amy Winston
commit: a8b34129eedef739e16abf6279f2702303b3e7c3
Author: Amy Winston  gentoo  org>
AuthorDate: Wed Nov 16 19:50:43 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Wed Nov 16 19:50:43 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a8b34129

Revert "dev-vcs/bzr: remove old"

This reverts commit 16a6aade2e851cd49240894dc40c951e17094123.

 dev-vcs/bzr/bzr-2.5.1.ebuild | 88 
 1 file changed, 88 insertions(+)

diff --git a/dev-vcs/bzr/bzr-2.5.1.ebuild b/dev-vcs/bzr/bzr-2.5.1.ebuild
new file mode 100644
index ..6ba611d
--- /dev/null
+++ b/dev-vcs/bzr/bzr-2.5.1.ebuild
@@ -0,0 +1,88 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="4"
+PYTHON_DEPEND="2:2.6"
+PYTHON_USE_WITH="threads ssl"
+SUPPORT_PYTHON_ABIS="1"
+RESTRICT_PYTHON_ABIS="2.[45] 3.* 2.7-pypy-*"
+
+inherit bash-completion-r1 distutils eutils versionator
+
+MY_P=${PN}-${PV}
+SERIES=$(get_version_component_range 1-2)
+
+DESCRIPTION="Bazaar is a next generation distributed version control system"
+HOMEPAGE="http://bazaar-vcs.org/;
+#SRC_URI="http://bazaar-vcs.org/releases/src/${MY_P}.tar.gz;
+SRC_URI="https://launchpad.net/bzr/${SERIES}/${PV}/+download/${MY_P}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris"
+IUSE="curl doc +sftp test"
+
+RDEPEND="|| ( dev-lang/python:2.7[xml] dev-lang/python:2.6[xml] 
dev-python/celementtree )
+   curl? ( dev-python/pycurl )
+   sftp? ( dev-python/paramiko )"
+
+DEPEND="test? (
+   ${RDEPEND}
+   >=dev-python/pyftpdlib-0.7.0
+   dev-python/subunit
+   >=dev-python/testtools-0.9.5
+   )"
+
+S="${WORKDIR}/${MY_P}"
+
+PYTHON_CFLAGS=("2.* + -fno-strict-aliasing")
+
+DOCS="doc/*.txt"
+PYTHON_MODNAME="bzrlib"
+
+src_prepare() {
+   distutils_src_prepare
+
+   # Don't regenerate .c files from .pyx when pyrex is found.
+   epatch "${FILESDIR}/${PN}-2.4.2-no-pyrex-citon.patch"
+
+   epatch "${FILESDIR}/${P}-sphinx-test-failures.patch"
+}
+
+src_test() {
+   # Some tests expect the usual pyc compiling behaviour.
+   python_enable_pyc
+
+   # Define tests which are known to fail below.
+   local skip_tests="("
+   # https://bugs.launchpad.net/bzr/+bug/850676
+   skip_tests+="per_transport.TransportTests.test_unicode_paths.*"
+   skip_tests+=")"
+   if [[ -n ${skip_tests} ]]; then
+   einfo "Skipping tests known to fail: ${skip_tests}"
+   fi
+
+   testing() {
+   LC_ALL="C" "$(PYTHON)" bzr --no-plugins selftest 
${skip_tests:+-x} ${skip_tests}
+   }
+   python_execute_function testing
+
+   # Just to make sure we don't hit any errors on later stages.
+   python_disable_pyc
+}
+
+src_install() {
+   distutils_src_install --install-data "${EPREFIX}/usr/share"
+
+   if use doc; then
+   docinto developers
+   dodoc -r doc/developers/* || die
+   for doc in mini-tutorial tutorials user-{guide,reference}; do
+   docinto ${doc}
+   dodoc -r doc/en/${doc}/* || die
+   done
+   fi
+
+   dobashcomp contrib/bash/bzr || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-vcs/bzr/files/

2016-11-16 Thread Amy Winston
commit: 857a2b70948aaba3753f559ad9b4bf339241987c
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Mon Nov 14 17:12:57 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Wed Nov 16 18:04:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=857a2b70

dev-vcs/bzr: remove unused patch/file

Closes: #2834

 dev-vcs/bzr/files/71bzr-gentoo.el|  5 
 dev-vcs/bzr/files/bzr-2.4.0-no-pyrex-citon.patch | 33 
 2 files changed, 38 deletions(-)

diff --git a/dev-vcs/bzr/files/71bzr-gentoo.el 
b/dev-vcs/bzr/files/71bzr-gentoo.el
deleted file mode 100644
index e8af05f..
--- a/dev-vcs/bzr/files/71bzr-gentoo.el
+++ /dev/null
@@ -1,5 +0,0 @@
-
-;;; dev-util/bzr site-lisp configuration
-
-(unless (fboundp 'vc-bzr-registered)
- (add-to-list 'load-path "@SITELISP@"))

diff --git a/dev-vcs/bzr/files/bzr-2.4.0-no-pyrex-citon.patch 
b/dev-vcs/bzr/files/bzr-2.4.0-no-pyrex-citon.patch
deleted file mode 100644
index da5b3c8..
--- a/dev-vcs/bzr/files/bzr-2.4.0-no-pyrex-citon.patch
+++ /dev/null
@@ -1,33 +0,0 @@
 setup.py.orig  2011-08-16 17:18:11.280853205 +0200
-+++ setup.py   2011-08-16 17:20:12.597637778 +0200
-@@ -178,28 +178,8 @@
- from distutils.errors import CCompilerError, DistutilsPlatformError
- from distutils.extension import Extension
- ext_modules = []
--try:
--try:
--from Cython.Distutils import build_ext
--from Cython.Compiler.Version import version as pyrex_version
--except ImportError:
--print("No Cython, trying Pyrex...")
--from Pyrex.Distutils import build_ext
--from Pyrex.Compiler.Version import version as pyrex_version
--except ImportError:
--have_pyrex = False
--# try to build the extension from the prior generated source.
--print("")
--print("The python package 'Pyrex' is not available."
--  " If the .c files are available,")
--print("they will be built,"
--  " but modifying the .pyx files will not rebuild them.")
--print("")
--from distutils.command.build_ext import build_ext
--else:
--have_pyrex = True
--pyrex_version_info = tuple(map(int, pyrex_version.split('.')))
--
-+have_pyrex = False
-+from distutils.command.build_ext import build_ext
- 
- class build_ext_if_possible(build_ext):
- 



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

2016-11-16 Thread Amy Winston
commit: 16a6aade2e851cd49240894dc40c951e17094123
Author: Amy Winston  gentoo  org>
AuthorDate: Wed Nov 16 18:05:27 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Wed Nov 16 18:05:27 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16a6aade

dev-vcs/bzr: remove old

Package-Manager: portage-2.3.0

 dev-vcs/bzr/bzr-2.5.1.ebuild | 88 
 1 file changed, 88 deletions(-)

diff --git a/dev-vcs/bzr/bzr-2.5.1.ebuild b/dev-vcs/bzr/bzr-2.5.1.ebuild
deleted file mode 100644
index 6ba611d..
--- a/dev-vcs/bzr/bzr-2.5.1.ebuild
+++ /dev/null
@@ -1,88 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="4"
-PYTHON_DEPEND="2:2.6"
-PYTHON_USE_WITH="threads ssl"
-SUPPORT_PYTHON_ABIS="1"
-RESTRICT_PYTHON_ABIS="2.[45] 3.* 2.7-pypy-*"
-
-inherit bash-completion-r1 distutils eutils versionator
-
-MY_P=${PN}-${PV}
-SERIES=$(get_version_component_range 1-2)
-
-DESCRIPTION="Bazaar is a next generation distributed version control system"
-HOMEPAGE="http://bazaar-vcs.org/;
-#SRC_URI="http://bazaar-vcs.org/releases/src/${MY_P}.tar.gz;
-SRC_URI="https://launchpad.net/bzr/${SERIES}/${PV}/+download/${MY_P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris"
-IUSE="curl doc +sftp test"
-
-RDEPEND="|| ( dev-lang/python:2.7[xml] dev-lang/python:2.6[xml] 
dev-python/celementtree )
-   curl? ( dev-python/pycurl )
-   sftp? ( dev-python/paramiko )"
-
-DEPEND="test? (
-   ${RDEPEND}
-   >=dev-python/pyftpdlib-0.7.0
-   dev-python/subunit
-   >=dev-python/testtools-0.9.5
-   )"
-
-S="${WORKDIR}/${MY_P}"
-
-PYTHON_CFLAGS=("2.* + -fno-strict-aliasing")
-
-DOCS="doc/*.txt"
-PYTHON_MODNAME="bzrlib"
-
-src_prepare() {
-   distutils_src_prepare
-
-   # Don't regenerate .c files from .pyx when pyrex is found.
-   epatch "${FILESDIR}/${PN}-2.4.2-no-pyrex-citon.patch"
-
-   epatch "${FILESDIR}/${P}-sphinx-test-failures.patch"
-}
-
-src_test() {
-   # Some tests expect the usual pyc compiling behaviour.
-   python_enable_pyc
-
-   # Define tests which are known to fail below.
-   local skip_tests="("
-   # https://bugs.launchpad.net/bzr/+bug/850676
-   skip_tests+="per_transport.TransportTests.test_unicode_paths.*"
-   skip_tests+=")"
-   if [[ -n ${skip_tests} ]]; then
-   einfo "Skipping tests known to fail: ${skip_tests}"
-   fi
-
-   testing() {
-   LC_ALL="C" "$(PYTHON)" bzr --no-plugins selftest 
${skip_tests:+-x} ${skip_tests}
-   }
-   python_execute_function testing
-
-   # Just to make sure we don't hit any errors on later stages.
-   python_disable_pyc
-}
-
-src_install() {
-   distutils_src_install --install-data "${EPREFIX}/usr/share"
-
-   if use doc; then
-   docinto developers
-   dodoc -r doc/developers/* || die
-   for doc in mini-tutorial tutorials user-{guide,reference}; do
-   docinto ${doc}
-   dodoc -r doc/en/${doc}/* || die
-   done
-   fi
-
-   dobashcomp contrib/bash/bzr || die
-}



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

2016-11-08 Thread Amy Winston
commit: 05d80b9e4935caa4b4b3e2bdc32a50284a70d298
Author: Amy Winston  gentoo  org>
AuthorDate: Tue Nov  8 16:38:08 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Tue Nov  8 16:40:24 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05d80b9e

media-video/qgifer: fix dependencies, remove broken version

- Fix subslot dependencies
- Remove broken version
- Change patch to p1

Package-Manager: portage-2.3.0

 .../qgifer/files/qgifer-0.2.1-desktop.patch|  4 +-
 media-video/qgifer/qgifer-0.2.1-r2.ebuild  | 46 --
 ...ifer-0.2.1-r3.ebuild => qgifer-0.2.1-r4.ebuild} | 16 
 3 files changed, 9 insertions(+), 57 deletions(-)

diff --git a/media-video/qgifer/files/qgifer-0.2.1-desktop.patch 
b/media-video/qgifer/files/qgifer-0.2.1-desktop.patch
index 2804cae..8e02163 100644
--- a/media-video/qgifer/files/qgifer-0.2.1-desktop.patch
+++ b/media-video/qgifer/files/qgifer-0.2.1-desktop.patch
@@ -1,7 +1,7 @@
 Index: doc/qgifer.desktop
 ===
 doc/qgifer.desktop (revision 91)
-+++ doc/qgifer.desktop (working copy)
+--- a/doc/qgifer.desktop   (revision 91)
 b/doc/qgifer.desktop   (working copy)
 @@ -3,7 +3,7 @@
  Name=QGifer
  Icon=/usr/share/icons/qgifer.xpm

diff --git a/media-video/qgifer/qgifer-0.2.1-r2.ebuild 
b/media-video/qgifer/qgifer-0.2.1-r2.ebuild
deleted file mode 100644
index 0303568..
--- a/media-video/qgifer/qgifer-0.2.1-r2.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-inherit cmake-utils
-
-DESCRIPTION="A video-based animated GIF creator"
-HOMEPAGE="https://sourceforge.net/projects/qgifer/;
-SRC_URI="mirror://sourceforge/${PN}/${P}-source.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-IUSE="debug imagemagick opencv3"
-
-RDEPEND="media-libs/giflib:0
-   dev-qt/qtcore:4
-   dev-qt/qtgui:4
-   imagemagick? ( media-gfx/imagemagick:0 )
-   !opencv3? ( media-libs/opencv:0/2.4[ffmpeg] )
-   opencv3? ( media-libs/opencv:0/3.0[ffmpeg] )
-   virtual/ffmpeg:0"
-
-DEPEND="${RDEPEND}
-   >=dev-util/cmake-2.8:0"
-
-S="${WORKDIR}/${P}-source"
-
-src_prepare() {
-   epatch "${FILESDIR}"/${P}-desktop.patch
-
-   if use opencv3 ; then
-   epatch "${FILESDIR}"/${P}-opencv3.patch
-   fi
-}
-
-src_configure() {
-   local mycmakeargs
-
-   use debug && mycmakeargs=( -DRELEASE_MODE=OFF )
-
-   cmake-utils_src_configure
-}

diff --git a/media-video/qgifer/qgifer-0.2.1-r3.ebuild 
b/media-video/qgifer/qgifer-0.2.1-r4.ebuild
similarity index 75%
rename from media-video/qgifer/qgifer-0.2.1-r3.ebuild
rename to media-video/qgifer/qgifer-0.2.1-r4.ebuild
index 721698e..e0ddb0a 100644
--- a/media-video/qgifer/qgifer-0.2.1-r3.ebuild
+++ b/media-video/qgifer/qgifer-0.2.1-r4.ebuild
@@ -20,25 +20,23 @@ RDEPEND="=media-libs/opencv-3.0.0:0[ffmpeg] )
virtual/ffmpeg:0"
 
 DEPEND="${RDEPEND}"
 
 S="${WORKDIR}/${P}-source"
 
-src_prepare() {
-   eapply -p0 "${FILESDIR}/${P}-desktop.patch"
+PATCHES=( "${FILESDIR}/${P}-desktop.patch" )
 
-   if use opencv3 ; then
-   eapply "${FILESDIR}/${P}-opencv3.patch"
-   fi
+src_prepare(){
+   use opencv3 && PATCHES+=( "${FILESDIR}/${P}-opencv3.patch" )
+
+   cmake-utils_src_prepare
 
# Fix the doc path
sed -i -e "s|share/doc/qgifer|share/doc/${PF}|" CMakeLists.txt || die
-
-   eapply_user
 }
 
 src_configure() {



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

2016-11-07 Thread Amy Winston
commit: 7701033807a21a0c5c52780efa1a1b059e3e9b95
Author: Jonathan Scruggs  gmail  com>
AuthorDate: Mon Nov  7 12:47:07 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Tue Nov  8 06:51:30 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77010338

media-libs/opencv: revision bump to 3.1.0-r6

* Update SRC_URI to the new URLs
* Switch to downloading the tar.gz instead zip file
* Add git hash to end of contrib download to allow revision bumps
* Updated revision of contrib modules to fix various errors
* Remove Qt 4 support to follow the new Gentoo standard
* Use new OpenMP test logic
* Added patch to build against CUDA v8.
  Patch based on one submitted by Sven Eden
  Gentoo-bug: 598674
  Gentoo-bug: 597754
* Added Tesseract use flag and fixed building against it.
  Gentoo-bug: 572836
  Gentoo-bug: 584428
* Added use flag for the SFM module because of dependencies
  on several Google libraries
  Gentoo-bug: 597166
* Added use flag for the HDF module because of a dependency
  on media-libs/hdaf5
  Gentoo-bug: 596212
* Added use flag for the CVV module because it will silently
  fail if Qt 5 is not installed.
* Added patch to fix the finding of certain libraries
  Gentoo-Bug: 584478

Signed-off by: Jonathan Scruggs (j.scruggs  gmail.com)

 media-libs/opencv/Manifest |   2 +
 .../files/opencv-3.1.0-find-libraries-fix.patch|  48 
 .../opencv-3.1.0-remove-graphcut-for-cuda-8.patch  |  23 ++
 media-libs/opencv/metadata.xml |   6 +
 media-libs/opencv/opencv-3.1.0-r6.ebuild   | 296 +
 5 files changed, 375 insertions(+)

diff --git a/media-libs/opencv/Manifest b/media-libs/opencv/Manifest
index 82a9d48..624ef49 100644
--- a/media-libs/opencv/Manifest
+++ b/media-libs/opencv/Manifest
@@ -1,5 +1,7 @@
 DIST opencv-2.4.12.zip 93261101 SHA256 
2a7e47da87b9119be922f010a1059539e96130c242f4d38e2dbb445ccbeccbc1 SHA512 
3f9142ef23181f93200413b456c11235ecac11c322ccf3f89cc3740bfa9d9228508948cee245583103029e9f6abf1c5d0c5d249eff400e65b3655153bc6dbb05
 WHIRLPOOL 
86488d91cfac4c980e4f794d6d7e40bf93803f4d79defc991647af742198b845db796b1578b5d79a12a71ecbb04d8430a49c1538d6f86f1288c2a31efefc2548
 DIST opencv-3.0.0.zip 100980799 SHA256 
07094ea2f996f2622d572f0f3a162d698c8a547520341ca9109fbaf9363fb001 SHA512 
108d0fdcc60b5688ebf61c930fb965ec81f0d3c36bb1797f6cc571fac35331f540773207fd1cb81b12c05c8f4d1af20c4a2452d9f75cd0cae4acd8131be92375
 WHIRLPOOL 
61cbbf5201b1dea75ffa998d1f55ee35f098bb8f76591cc9705de13b9f05eaefd19dcc74e93d2643d9b721e62483a36547617ec2e3d14fa6a2522e18ccf06747
+DIST opencv-3.1.0.tar.gz 76135587 SHA256 
f00b3c4f42acda07d89031a2ebb5ebe390764a133502c03a511f67b78bbd4fbf SHA512 
57e0fe41e3d5d1dc036e7fc5673523e53d54f5f62e4d3bcb95238a9cd53e79da7c1704dc136ce632f7cfce369ebf5eb27f629a9b6ac4f7fa34120b80b5c7438f
 WHIRLPOOL 
b2825d5cafa87e0fe9cacd093ddb969913d916c0370819073b2bde3c598798efcf23c406aae2116f2628c564ca99e5f871a448a3ece97d8d29ec73841ac283b4
 DIST opencv-3.1.0.zip 79186131 SHA256 
1f6990249fdb82804fff40e96fa6d99949023ab0e3277eae4bd459b374e622a4 SHA512 
b4915e8838fce8ba9e1af8b11e46678624435e9a41592e645413dfdc830993eaa017d337fe4c212a49f096421a6317a1892546087fbc3cfdab554522336c0f1a
 WHIRLPOOL 
3c38715e2abc431781b724199c2cf06f844c7a889c51a06ecb64889a8ca36d9fd370a0738deec2995e24e453cb64f5db228238681714f62daf6eac50d95a4914
+DIST opencv-3.1.0_contrib-75b3ea9.tar.gz 54277105 SHA256 
478f742457d3f4e96f857b726e35b28a8d20a1de8e5f51b8671251bc896d443b SHA512 
d1d11520b8729fbaf0257c927654251ff9ac1ba5cf937af9dd973ec39f483d1ee08aff7ad3f1a9941fef921a35dc466ac5574918197ddecd3f6c66b682bf671a
 WHIRLPOOL 
18b70014428c4fa532658ca5ac332bffaae049b468f46cb027a6972f21f5b2bd17d02b33d68c43b84f821a77fa09efb9c372499cfa4f645a0516b93acb858353
 DIST opencv-3.1.0_contrib.zip 55182211 SHA256 
5082b5df7179ff71f4681747c482169f0d5d5b77605816cfe5b93c588021fbb4 SHA512 
f0ceb8d9ed85efe948a40071793d164a82391a462c52ca71a6029e8b119afdab8b1453baaed2cd7d540001559849a62ec4b745d41345db225acff0531c76e762
 WHIRLPOOL 
589294c849a00426f4c52d07ab652e71e8bbc74efd0878fbaea2e089051fd118217b1a04f33258fcef2abe1729147282eb17a98c5463691aa3fd56af264ea6a0
 DIST opencv_contrib.zip 76144299 SHA256 
ba780e61e9659aac299055d68c9fe40258e3fab7cb167892163eb5732387c4bb SHA512 
9253a9d209368da5bea5f0138c55379132467b840d25fc5eaa1bc0103e6da61d6facf206456ff3f4bb68482d9c6381e23a566cb4dd155ac9ff9a259e54f7ffbf
 WHIRLPOOL 
411febd3d5912ea28b570b217e3af41bee2d48daf5f47b0de6125b40cfbf435216c668545b3e0dfa48e4eef8d4a86135058ee72dc7b5a4244b661130a6916843

diff --git a/media-libs/opencv/files/opencv-3.1.0-find-libraries-fix.patch 
b/media-libs/opencv/files/opencv-3.1.0-find-libraries-fix.patch
new file mode 100644
index ..52f4db6
--- /dev/null
+++ b/media-libs/opencv/files/opencv-3.1.0-find-libraries-fix.patch
@@ -0,0 +1,48 @@
+diff -purN a/cmake/OpenCVFindLibsGrfmt.cmake b/cmake/OpenCVFindLibsGrfmt.cmake
+--- a/cmake/OpenCVFindLibsGrfmt.cmake  2015-12-18 15:02:16.0

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

2016-11-07 Thread Amy Winston
commit: a6629e1c0dbbbc67db09b096ca7a2c54eae73dc1
Author: Jonathan Scruggs  gmail  com>
AuthorDate: Mon Nov  7 17:43:43 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Tue Nov  8 06:52:08 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6629e1c

media-libs/opencv: Remove old ebuilds and patches Some ebuilds don't work, so 
there's no point in keeping them.

Since OpenCV 3.0.0 is no longer in the tree, the following can
be closed:
Gentoo-bug: 566080
Gentoo-bug: 557328

Signed-off by: Jonathan Scruggs (j.scruggs  gmail.com)

 media-libs/opencv/Manifest |   4 -
 .../files/opencv-2.4.11-git-autodetect.patch   |  57 ---
 .../opencv/files/opencv-3.0.0-git-autodetect.patch |  41 ---
 .../files/opencv-3.1.0-fix-hal-headers.patch   |  91 -
 .../files/opencv-3.1.0-fix-ocl-declaration.patch   | 214 ---
 .../files/opencv-3.1.0-invalid-string-usage.patch  |  75 
 .../files/opencv-contrib-find-hdf5-fix.patch   | 392 -
 media-libs/opencv/opencv-2.4.12.ebuild | 217 
 media-libs/opencv/opencv-3.0.0.ebuild  | 221 
 media-libs/opencv/opencv-3.1.0-r4.ebuild   | 268 --
 media-libs/opencv/opencv-3.1.0-r5.ebuild   | 300 
 11 files changed, 1880 deletions(-)

diff --git a/media-libs/opencv/Manifest b/media-libs/opencv/Manifest
index 624ef49..9838733 100644
--- a/media-libs/opencv/Manifest
+++ b/media-libs/opencv/Manifest
@@ -1,7 +1,3 @@
 DIST opencv-2.4.12.zip 93261101 SHA256 
2a7e47da87b9119be922f010a1059539e96130c242f4d38e2dbb445ccbeccbc1 SHA512 
3f9142ef23181f93200413b456c11235ecac11c322ccf3f89cc3740bfa9d9228508948cee245583103029e9f6abf1c5d0c5d249eff400e65b3655153bc6dbb05
 WHIRLPOOL 
86488d91cfac4c980e4f794d6d7e40bf93803f4d79defc991647af742198b845db796b1578b5d79a12a71ecbb04d8430a49c1538d6f86f1288c2a31efefc2548
-DIST opencv-3.0.0.zip 100980799 SHA256 
07094ea2f996f2622d572f0f3a162d698c8a547520341ca9109fbaf9363fb001 SHA512 
108d0fdcc60b5688ebf61c930fb965ec81f0d3c36bb1797f6cc571fac35331f540773207fd1cb81b12c05c8f4d1af20c4a2452d9f75cd0cae4acd8131be92375
 WHIRLPOOL 
61cbbf5201b1dea75ffa998d1f55ee35f098bb8f76591cc9705de13b9f05eaefd19dcc74e93d2643d9b721e62483a36547617ec2e3d14fa6a2522e18ccf06747
 DIST opencv-3.1.0.tar.gz 76135587 SHA256 
f00b3c4f42acda07d89031a2ebb5ebe390764a133502c03a511f67b78bbd4fbf SHA512 
57e0fe41e3d5d1dc036e7fc5673523e53d54f5f62e4d3bcb95238a9cd53e79da7c1704dc136ce632f7cfce369ebf5eb27f629a9b6ac4f7fa34120b80b5c7438f
 WHIRLPOOL 
b2825d5cafa87e0fe9cacd093ddb969913d916c0370819073b2bde3c598798efcf23c406aae2116f2628c564ca99e5f871a448a3ece97d8d29ec73841ac283b4
-DIST opencv-3.1.0.zip 79186131 SHA256 
1f6990249fdb82804fff40e96fa6d99949023ab0e3277eae4bd459b374e622a4 SHA512 
b4915e8838fce8ba9e1af8b11e46678624435e9a41592e645413dfdc830993eaa017d337fe4c212a49f096421a6317a1892546087fbc3cfdab554522336c0f1a
 WHIRLPOOL 
3c38715e2abc431781b724199c2cf06f844c7a889c51a06ecb64889a8ca36d9fd370a0738deec2995e24e453cb64f5db228238681714f62daf6eac50d95a4914
 DIST opencv-3.1.0_contrib-75b3ea9.tar.gz 54277105 SHA256 
478f742457d3f4e96f857b726e35b28a8d20a1de8e5f51b8671251bc896d443b SHA512 
d1d11520b8729fbaf0257c927654251ff9ac1ba5cf937af9dd973ec39f483d1ee08aff7ad3f1a9941fef921a35dc466ac5574918197ddecd3f6c66b682bf671a
 WHIRLPOOL 
18b70014428c4fa532658ca5ac332bffaae049b468f46cb027a6972f21f5b2bd17d02b33d68c43b84f821a77fa09efb9c372499cfa4f645a0516b93acb858353
-DIST opencv-3.1.0_contrib.zip 55182211 SHA256 
5082b5df7179ff71f4681747c482169f0d5d5b77605816cfe5b93c588021fbb4 SHA512 
f0ceb8d9ed85efe948a40071793d164a82391a462c52ca71a6029e8b119afdab8b1453baaed2cd7d540001559849a62ec4b745d41345db225acff0531c76e762
 WHIRLPOOL 
589294c849a00426f4c52d07ab652e71e8bbc74efd0878fbaea2e089051fd118217b1a04f33258fcef2abe1729147282eb17a98c5463691aa3fd56af264ea6a0
-DIST opencv_contrib.zip 76144299 SHA256 
ba780e61e9659aac299055d68c9fe40258e3fab7cb167892163eb5732387c4bb SHA512 
9253a9d209368da5bea5f0138c55379132467b840d25fc5eaa1bc0103e6da61d6facf206456ff3f4bb68482d9c6381e23a566cb4dd155ac9ff9a259e54f7ffbf
 WHIRLPOOL 
411febd3d5912ea28b570b217e3af41bee2d48daf5f47b0de6125b40cfbf435216c668545b3e0dfa48e4eef8d4a86135058ee72dc7b5a4244b661130a6916843

diff --git a/media-libs/opencv/files/opencv-2.4.11-git-autodetect.patch 
b/media-libs/opencv/files/opencv-2.4.11-git-autodetect.patch
deleted file mode 100644
index 12a5ca0..
--- a/media-libs/opencv/files/opencv-2.4.11-git-autodetect.patch
+++ /dev/null
@@ -1,57 +0,0 @@
 opencv-2.4.11/work/opencv-2.4.11/CMakeLists.txt.old2016-04-07 
14:20:23.874972922 +0200
-+++ opencv-2.4.11/work/opencv-2.4.11/CMakeLists.txt2016-04-07 
14:21:15.689970743 +0200
-@@ -382,32 +382,32 @@
- # 
- 
- # don't use FindGit because it requires CMake 2.8.2
--set(git_names git eg) # eg = easy git
-+#set(git_names git eg) # eg = easy git
- # Prefe

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

2016-11-07 Thread Amy Winston
commit: 0806943c3b9e7350d6202b1509ed1438978d5ae6
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Mon Nov  7 14:45:44 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Mon Nov  7 16:10:59 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0806943c

dev-util/tkdiff: remove unused patch

Closes: #2771

 dev-util/tkdiff/files/tkdiff-4.1.4-hg.patch | 143 
 1 file changed, 143 deletions(-)

diff --git a/dev-util/tkdiff/files/tkdiff-4.1.4-hg.patch 
b/dev-util/tkdiff/files/tkdiff-4.1.4-hg.patch
deleted file mode 100644
index d179b4e..
--- a/dev-util/tkdiff/files/tkdiff-4.1.4-hg.patch
+++ /dev/null
@@ -1,143 +0,0 @@
-Added support for Mercurial (hg) source control.  Mercurial is an
-open-source distributed source control system, conceptually similar to
-Git, Bazaar (bzr), Darcs, and the commercial system BitKeeper 
-(which tkdiff already supports).  
-
-While Mercurial already comes with a tkdiff wrapper called "hgdiff",
-this script does not support arbitrary revisions in the way that the
-actual hg diff command does (e.g. "hg diff -r2 -r5 filename).  This
-patch gives tkdiff support for all the revision numbers that "hg diff"
-supports.
-
-The code changes are small and mostly boilerplate, but I did add one
-new procedure called "is-mercurial-repository".  This was added
-because mercurial uses a single ".hg" directory at the top-level
-directory of a repository rather than having a directory at each
-different directory inside the repository.  The new procedure simply
-traverses up the parent directories until it either finds a .hg
-directory (indicating that we're in a Mercurial repository) or hits
-the root directory (indicating that we're not).
-
-Since the list of supported source control systems is getting large, I
-alphabetized the list in the command-line help text and also modified
-other parts of this help text to say things like "RCS, CVS, etc."
-rather than exhaustively listing all the supported systems yet again.
-
-More information on Mercurial can be found at
-  http://www.selenic.com/mercurial/wiki/ and
-  http://en.wikipedia.org/wiki/Mercurial_(software)
-
-diff -r 92c7c897cdd3 -r d32253d0cd0f tkdiff
 a/tkdiff   Sat Jan 05 00:42:06 2008 -0800
-+++ b/tkdiff   Wed Jan 09 06:05:01 2008 -0800
-@@ -743,6 +743,7 @@ proc get-file-rev {f index {r ""}} {
- set bkopt ""
- set pvcsopt ""
- set p4file "$f"
-+set hgopt ""
- } else {
- set rev "r$r"
- set acrev "\"$r\""
-@@ -754,6 +755,7 @@ proc get-file-rev {f index {r ""}} {
- set bkopt "-r$r"
- set pvcsopt "-r$r"
- set p4file "$f#$r"
-+set hgopt "-r$r"
- }
- 
- set finfo(pth,$index) [tmpfile $index]
-@@ -907,6 +909,23 @@ proc get-file-rev {f index {r ""}} {
- puts "Couldn't deal with $f, exiting..."
- exit
- }
-+} elseif {[is-mercurial-repository $dirname]} {
-+# mercurial support
-+set cmd "hg"
-+if {$::tcl_platform(platform) == "windows"} {
-+append cmd ".exe"
-+}
-+if {"$r" == "" || "$rev" == "PARENT"} {
-+# in hg, the revision for cat defaults to the parent revision
-+# of the working directory
-+set finfo(lbl,$index) "$f (HG PARENT)"
-+debug-info "  Setting lbl $finfo(lbl,$index)"
-+die-unless "exec $cmd cat $f" $finfo(pth,$index)
-+} else {
-+set finfo(lbl,$index) "$f (HG $rev)"
-+debug-info "  Setting lbl $finfo(lbl,$index)"
-+die-unless "exec $cmd cat $hgopt $f" $finfo(pth,$index)
-+}
- } else {
- fatal-error "File '$f' is not part of a revision control system"
- }
-@@ -916,6 +935,19 @@ proc get-file-rev {f index {r ""}} {
- set finfo(lbl,$index) $finfo(userlbl,$index)
- debug-info "  User label: $finfo(lbl,$index)"
- }
-+}
-+
-+proc is-mercurial-repository {dirname} {
-+# check for a .hg directory in all parent directories
-+set dirname [file normalize $dirname]
-+set prevdir {}
-+while {$dirname != $prevdir} {
-+set hgfilename [file join $dirname .hg]
-+if {[file isdirectory $hgfilename]} { return true }
-+set prevdir $dirname
-+set dirname [file dirname $dirname]
-+}
-+return false
- }
- 
- proc sccs-is-bk {} {
-@@ -6105,8 +6137,8 @@ proc do-usage {mode} {
- Plain file with conflict markers:
-   tkdiff -conflict FILE
- 
--Source control (AccuRev, BitKeeper, CVS, Subversion,

[gentoo-commits] repo/gentoo:master commit in: sci-libs/gdal/files/, sci-libs/gdal/

2016-11-07 Thread Amy Winston
commit: aaa9c7d2432d2eb89c7980d7d3ab933b71f8cdd7
Author: Amy Winston  gentoo  org>
AuthorDate: Mon Nov  7 13:49:14 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Mon Nov  7 13:55:55 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aaa9c7d2

sci-libs/gdal: remove old versions

Package-Manager: portage-2.3.0

 sci-libs/gdal/Manifest |   2 -
 .../files/gdal-2.0.0-glibc-2.22-backport.patch |  14 -
 sci-libs/gdal/gdal-2.0.0-r2.ebuild | 318 -
 sci-libs/gdal/gdal-2.0.1-r1.ebuild | 315 
 4 files changed, 649 deletions(-)

diff --git a/sci-libs/gdal/Manifest b/sci-libs/gdal/Manifest
index 1e86ee9..fbc1190 100644
--- a/sci-libs/gdal/Manifest
+++ b/sci-libs/gdal/Manifest
@@ -1,5 +1,3 @@
 DIST gdal-1.11.1.tar.gz 10731242 SHA256 
f46b5944a8cabc8516673f231f466131cdfd2cdc6677dbee5d96ec7fc58a3340 SHA512 
17214ae17a5199d73477d17cf8680396aee8a28d4333cf55818bdd869548dc6a4d7535d7e05949696db31a7be4a511c5ca73199af3dda48d9a40d5640618e9c3
 WHIRLPOOL 
1f07ee4acccf58552ddef6b5a306b9dbe832014f6890d353f195ab0d47dfc4e81164b7c8b9cefc9915035d113d2f28818f05e89918728eadb0e80e43e7220b5b
 DIST gdal-1.11.2.tar.gz 10746847 SHA256 
66bc8192d24e314a66ed69285186d46e6999beb44fc97eeb9c76d82a117c0845 SHA512 
f1f025de5a618cc2458b6d1f066647341ad4ded1cc2a08e4b78756d96d38715ddd8ba34b7c263369bde66cb20c7919195e13b60a1ecadee25ef80db79f3eb7da
 WHIRLPOOL 
77274f6f9b9bb29fc21c6f274512bccebc7748420c31e3e626d26087194f69b9606354603b393b77903451b073d034f2508403193fdf738f5b099d7808771653
-DIST gdal-2.0.0.tar.gz 11582325 SHA256 
53761563ff53c5bf27bff7c4d6cab8bb1634baccefda05348e0f3b7acaf4c9e6 SHA512 
74ae9d01a69652c92a16bc91f71b4c8416697d5f7aa137d385f58b7dc63c165c26330464c98891ac66b09475de24fbbff61f506ad1c9ecf64ffe08f1429fbad5
 WHIRLPOOL 
7d4a27e94e41ea53050ae3b8f1f06720e13626885455897caf6659a88c87bf61c087102963182b580e56a8840e3b57b6fbb8adadde64fd4679d5c37c3aa682c7
-DIST gdal-2.0.1.tar.gz 11592723 SHA256 
b55f794768e104a2fd0304eaa61bb8bda3dc7c4e14f2c9d0913baca3e55b83ab SHA512 
b3b22e53b6e4b68911d84260d79ed382625f9d71722759a89f49fdd736d1f1ad183bda99e0f09d3f368fead89b509df58daa35a367473dfd5628855d331efa23
 WHIRLPOOL 
1b1218d5d6c84e41051475c38b412ebb49511c4a1ae948f56edb5939d9eb9599546b9bd89a3cb6b2517d205723201e77bde64955bb3eb0b5bccfda799d5bffe3
 DIST gdal-2.0.2.tar.gz 11643726 SHA256 
db7722caf8d9dd798ec18012b9cacf40a518918466126a88b9fd277bd7d40cc4 SHA512 
b3fedc8d1d0522d2a6fd22fbc722c551ebf2e4326f64b76c9c43cd3848f7c97a0636c691ee383b3f3c872dc79cd0e216527d3985c6aac3103395fde657db1266
 WHIRLPOOL 
889b35d0c2d972681d30eb33b731498b58951ed64a37d0152b15f8d9c3e414703158498cc6eb1bc75a3cd598a567738e4e937fffa6a55cdff2b6cf87338e25e6

diff --git a/sci-libs/gdal/files/gdal-2.0.0-glibc-2.22-backport.patch 
b/sci-libs/gdal/files/gdal-2.0.0-glibc-2.22-backport.patch
deleted file mode 100644
index f23ff76..
--- a/sci-libs/gdal/files/gdal-2.0.0-glibc-2.22-backport.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-Index: /branches/2.0/gdal/apps/gdalserver.c
-===
 /branches/2.0/gdal/apps/gdalserver.c   (revision 29667)
-+++ /branches/2.0/gdal/apps/gdalserver.c   (revision 29668)
-@@ -28,7 +28,6 @@
-  /
- 
--#if defined(__STDC_VERSION__)
--#define _XOPEN_SOURCE
--#endif
-+// So that __USE_XOPEN2K is defined to have getaddrinfo
-+#define _XOPEN_SOURCE 600
- 
- #include "cpl_port.h"

diff --git a/sci-libs/gdal/gdal-2.0.0-r2.ebuild 
b/sci-libs/gdal/gdal-2.0.0-r2.ebuild
deleted file mode 100644
index 82224a5..
--- a/sci-libs/gdal/gdal-2.0.0-r2.ebuild
+++ /dev/null
@@ -1,318 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-WANT_AUTOCONF="2.5"
-
-GENTOO_DEPEND_ON_PERL="no"
-PYTHON_COMPAT=( python2_7 python3_4 )
-DISTUTILS_OPTIONAL=1
-
-inherit autotools eutils libtool perl-module distutils-r1 python-r1 
toolchain-funcs java-pkg-opt-2
-
-DESCRIPTION="Translator library for raster geospatial data formats (includes 
OGR support)"
-HOMEPAGE="http://www.gdal.org/;
-SRC_URI="http://download.osgeo.org/${PN}/${PV}/${P}.tar.gz;
-
-SLOT="0/2"
-LICENSE="BSD Info-ZIP MIT"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x86-macos"
-IUSE="armadillo +aux_xml curl debug doc fits geos gif gml hdf5 java jpeg 
jpeg2k mdb mysql netcdf odbc ogdi opencl pdf perl png postgres python 
spatialite sqlite threads xls"
-
-RDEPEND="
-   dev-libs/expat
-   dev-libs/json-c
-   dev-libs/libpcre
-   dev-libs/libxml2
-   media-libs/tiff:0=
-   sci-libs/libgeotiff
-   sys-libs/zlib[minizip(+)]
-   armadillo? ( sci-libs/armadillo[lapack] )
-   curl? ( net-misc/curl )
-   

[gentoo-commits] repo/gentoo:master commit in: sci-libs/gdal/, sci-libs/gdal/files/

2016-11-07 Thread Amy Winston
commit: 33c636fd5f8adad1a38696dcc01252b29a77c616
Author: Amy Winston  gentoo  org>
AuthorDate: Mon Nov  7 13:43:44 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Mon Nov  7 13:55:55 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33c636fd

sci-libs/gdal: fix jasper bug #598597

Package-Manager: portage-2.3.0

 sci-libs/gdal/files/gdal-2.0.2-jasper.patch |  13 ++
 sci-libs/gdal/gdal-2.0.2-r2.ebuild  | 317 
 2 files changed, 330 insertions(+)

diff --git a/sci-libs/gdal/files/gdal-2.0.2-jasper.patch 
b/sci-libs/gdal/files/gdal-2.0.2-jasper.patch
new file mode 100644
index ..00cf5c1
--- /dev/null
+++ b/sci-libs/gdal/files/gdal-2.0.2-jasper.patch
@@ -0,0 +1,13 @@
+diff -urpN gdal-2.0.2.orig/frmts/jpeg2000/jpeg2000_vsil_io.h 
gdal-2.0.2/frmts/jpeg2000/jpeg2000_vsil_io.h
+--- gdal-2.0.2.orig/frmts/jpeg2000/jpeg2000_vsil_io.h  2016-01-26 
07:21:48.0 -0800
 gdal-2.0.2/frmts/jpeg2000/jpeg2000_vsil_io.h   2016-10-31 
23:45:28.939407322 -0700
+@@ -29,7 +29,8 @@
+ 
+ #ifndef JPEG2000_VSIL_IO_H
+ #define JPEG2000_VSIL_IO_H
+- 
++
++#include 
+ #include 
+ 
+ jas_stream_t *JPEG2000_VSIL_fopen(const char *filename, const char *mode);

diff --git a/sci-libs/gdal/gdal-2.0.2-r2.ebuild 
b/sci-libs/gdal/gdal-2.0.2-r2.ebuild
new file mode 100644
index ..ff4d810
--- /dev/null
+++ b/sci-libs/gdal/gdal-2.0.2-r2.ebuild
@@ -0,0 +1,317 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+WANT_AUTOCONF="2.5"
+
+GENTOO_DEPEND_ON_PERL="no"
+PYTHON_COMPAT=( python2_7 python3_4 )
+DISTUTILS_OPTIONAL=1
+
+inherit autotools eutils libtool perl-module distutils-r1 python-r1 
toolchain-funcs java-pkg-opt-2
+
+DESCRIPTION="Translator library for raster geospatial data formats (includes 
OGR support)"
+HOMEPAGE="http://www.gdal.org/;
+SRC_URI="http://download.osgeo.org/${PN}/${PV}/${P}.tar.gz;
+
+SLOT="0/2"
+LICENSE="BSD Info-ZIP MIT"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x86-macos"
+IUSE="armadillo +aux_xml curl debug doc fits geos gif gml hdf5 java jpeg 
jpeg2k mdb mysql netcdf odbc ogdi opencl pdf perl png postgres python 
spatialite sqlite threads xls"
+
+RDEPEND="
+   dev-libs/expat
+   dev-libs/json-c
+   dev-libs/libpcre
+   dev-libs/libxml2
+   media-libs/tiff:0=
+   sci-libs/libgeotiff
+   sys-libs/zlib[minizip(+)]
+   armadillo? ( sci-libs/armadillo[lapack] )
+   curl? ( net-misc/curl )
+   fits? ( sci-libs/cfitsio )
+   geos?   ( >=sci-libs/geos-2.2.1 )
+   gif? ( media-libs/giflib:= )
+   gml? ( >=dev-libs/xerces-c-3 )
+   hdf5? ( >=sci-libs/hdf5-1.6.4[szip] )
+   java? ( >=virtual/jre-1.6:* )
+   jpeg? ( virtual/jpeg:0= )
+   jpeg2k? ( media-libs/jasper:= )
+   mysql? ( virtual/mysql )
+   netcdf? ( sci-libs/netcdf )
+   odbc?   ( dev-db/unixODBC )
+   ogdi? ( sci-libs/ogdi )
+   opencl? ( virtual/opencl )
+   pdf? ( >=app-text/poppler-0.24.3:= )
+   perl? ( dev-lang/perl:= )
+   png? ( media-libs/libpng:0= )
+   postgres? ( >=dev-db/postgresql-8.4:= )
+   python? (
+   ${PYTHON_DEPS}
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   dev-python/numpy[${PYTHON_USEDEP}]
+   )
+   sqlite? ( dev-db/sqlite:3 )
+   spatialite? ( dev-db/spatialite )
+   xls? ( dev-libs/freexl )
+"
+
+DEPEND="${RDEPEND}
+   doc? ( app-doc/doxygen )
+   java? ( >=virtual/jdk-1.6 )
+   perl? ( dev-lang/swig:0 )
+   python? ( dev-lang/swig:0 )"
+
+AT_M4DIR="${S}/m4"
+
+REQUIRED_USE="
+   spatialite? ( sqlite )
+   mdb? ( java )
+"
+
+pkg_setup() {
+   java-pkg-opt-2_pkg_setup
+}
+
+src_prepare() {
+   java-pkg-opt-2_src_prepare
+
+   # fix datadir and docdir placement
+   sed -i \
+   -e "s:@datadir@:@datadir@/gdal:" \
+   -e "s:@exec_prefix@/doc:@exec_prefix@/share/doc/${PF}/html:g" \
+   "${S}"/GDALmake.opt.in || die
+
+   # the second sed expression should fix bug 371075
+   sed -i \
+   -e "s:setup.py install:setup.py install --root=\$(DESTDIR):" \
+   -e "s:--prefix=\$(DESTDIR):--prefix=:" \
+   "${S}"/swig/python/GNUmakefile || die
+
+   if use jpeg2k; then
+   epatch "${FILESDIR}"/${P}-jasper.patch
+   fi
+
+   # -soname is only accepted by GNU ld/ELF
+   [[ ${CHOST} == *-darwin* ]] \
+   && epatch "${FILESDIR}"/${PN}-1.5.0-install_name.patch \
+   || epatch "${FILESDIR}"/${PN}-1.5.0-soname.patch
+
+   # Fix spatialite/sqlite include issue
+  

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

2016-11-06 Thread Amy Winston
commit: 1409cf65b5c911951acb5dd3845a32143a99158f
Author: Amy Winston  gentoo  org>
AuthorDate: Sun Nov  6 21:20:15 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Sun Nov  6 21:20:15 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1409cf65

app-misc/khal: fix python_compat

Package-Manager: portage-2.3.0

 app-misc/khal/khal-0.8.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/khal/khal-0.8.3.ebuild b/app-misc/khal/khal-0.8.3.ebuild
index 9bda347..b75fe0b 100644
--- a/app-misc/khal/khal-0.8.3.ebuild
+++ b/app-misc/khal/khal-0.8.3.ebuild
@@ -4,7 +4,7 @@
 
 EAPI="6"
 
-PYTHON_COMPAT=( python3_{3,4} )
+PYTHON_COMPAT=( python3_4 )
 PYTHON_REQ_USE="sqlite"
 
 inherit distutils-r1



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

2016-11-06 Thread Amy Winston
commit: eee8ee8453c9cbdbffa5e6c7ef0a5a4bcfcc18e4
Author: Amy Winston  gentoo  org>
AuthorDate: Sun Nov  6 20:45:29 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Sun Nov  6 20:45:29 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eee8ee84

app-misc/khal: version bump 0.8.3 bug #592372

Package-Manager: portage-2.3.0

 app-misc/khal/Manifest  |  1 +
 app-misc/khal/khal-0.8.3.ebuild | 44 +
 2 files changed, 45 insertions(+)

diff --git a/app-misc/khal/Manifest b/app-misc/khal/Manifest
index c816ae1..466f4e9 100644
--- a/app-misc/khal/Manifest
+++ b/app-misc/khal/Manifest
@@ -1,2 +1,3 @@
 DIST khal-0.7.0.tar.gz 109801 SHA256 
c6b0c81df56133e4592f02d8e9b60702079da2affd1b09ba96358ccd8eec9402 SHA512 
cad0bd8c5e869ffb5333e62747f0c5f71ae4a82adf60889922fcc61b4befefd926b0d642fcb8aec471aafc3fab6f042fa4253d381936c229582a8196319a1505
 WHIRLPOOL 
bd265e0c2ff84014ae7b706722e8b850221458ad4c24dd9137321c06048ed1b5442eb93b7d18338a97f201b6e598bef2be3abe375b80f9530306e2617c73cfbd
 DIST khal-0.8.1.tar.gz 125681 SHA256 
9d352e4aa6256e493d5aea69540f642158bdcab75d2383e1e43506bf89982094 SHA512 
01b24b7fb041a78443eb1ede80797ca689c2141bf6bb6b171f49931de7440055c38efc4611c483fe85da90794d074e4d08224ce633878ca2f7b8d66799391033
 WHIRLPOOL 
cbcff5dec339ea97ee7bc83860b4f0c0f75801553e191d5856d30758c95936b2a156cea09ae9bd5a2ea96a3914b454f84ce0123970d1d74693be75caa23cbd27
+DIST khal-0.8.3.tar.gz 126656 SHA256 
1ec6940a9fbd207c41428b103bac1d1555129b9b4eca2b843c544bd48ac63ee3 SHA512 
f49e57a6cc9abfcf8dbc5811c2fe00661fd09a8a6d1a64bae4df5ce9c1d01c6f325adeef68a7b45eed3a34bd797b801c00fcd8fa4fdf378335d5273629f0a165
 WHIRLPOOL 
20963f12d9419f2421680548a6de22261e4d9c4482f6a28937b4339335b5a4965178bae0624cc5172da98c534603d3cd0ed5337e03c04190195a478b34b4a34f

diff --git a/app-misc/khal/khal-0.8.3.ebuild b/app-misc/khal/khal-0.8.3.ebuild
new file mode 100644
index ..9bda347
--- /dev/null
+++ b/app-misc/khal/khal-0.8.3.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="6"
+
+PYTHON_COMPAT=( python3_{3,4} )
+PYTHON_REQ_USE="sqlite"
+
+inherit distutils-r1
+
+DESCRIPTION="A CalDAV based calendar"
+HOMEPAGE="http://lostpackets.de/khal/;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+KEYWORDS="~amd64 ~x86"
+SLOT="0"
+IUSE="zsh-completion"
+
+RDEPEND=">=dev-python/click-3.2[${PYTHON_USEDEP}]
+   dev-python/icalendar[${PYTHON_USEDEP}]
+   dev-python/urwid[${PYTHON_USEDEP}]
+   dev-python/pyxdg[${PYTHON_USEDEP}]
+   dev-python/pytz[${PYTHON_USEDEP}]
+   dev-python/vdirsyncer[${PYTHON_USEDEP}]
+   dev-python/pkginfo[${PYTHON_USEDEP}]
+   dev-python/python-dateutil[${PYTHON_USEDEP}]
+   dev-python/configobj[${PYTHON_USEDEP}]
+   >=dev-python/tzlocal-1.0[${PYTHON_USEDEP}]
+   dev-python/setproctitle[${PYTHON_USEDEP}]
+   zsh-completion? ( app-shells/zsh )"
+
+DEPEND="dev-python/setuptools_scm[${PYTHON_USEDEP}]"
+
+DOCS=( AUTHORS.txt CHANGELOG.rst CONTRIBUTING.txt README.rst khal.conf.sample )
+
+src_install() {
+   distutils-r1_src_install
+   if use zsh-completion; then
+   insinto /usr/share/zsh/site-functions
+   doins misc/__khal
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: dev-scheme/guile/

2016-11-06 Thread Amy Winston
commit: 7094e02e6a1ab9cf92ee3d8dbf76922ae736a3b6
Author: Amy Winston  gentoo  org>
AuthorDate: Sun Nov  6 19:25:18 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Sun Nov  6 19:25:43 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7094e02e

dev-scheme/guile: remove unused line

Package-Manager: portage-2.3.0

 dev-scheme/guile/guile-1.8.8-r3.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/dev-scheme/guile/guile-1.8.8-r3.ebuild 
b/dev-scheme/guile/guile-1.8.8-r3.ebuild
index 5d5a73f..932b6d2 100644
--- a/dev-scheme/guile/guile-1.8.8-r3.ebuild
+++ b/dev-scheme/guile/guile-1.8.8-r3.ebuild
@@ -111,7 +111,6 @@ src_install() {
 }
 
 pkg_postinst() {
-   [ "${EROOT}" == "/" ] && pkg_config
use emacs && elisp-site-regen
 }
 



[gentoo-commits] repo/gentoo:master commit in: dev-scheme/guile/files/, dev-scheme/guile/

2016-11-06 Thread Amy Winston
commit: 5fda0962579cd0d6ec0e7ebf22bec1b4685be0bd
Author: Amy Winston  gentoo  org>
AuthorDate: Sun Nov  6 19:08:45 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Sun Nov  6 19:13:23 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5fda0962

dev-scheme/guile: add unmask patch bug #596864

Package-Manager: portage-2.3.0

 .../guile/files/guile-1.8.8-mkdir-mask.patch   |  35 ++
 dev-scheme/guile/guile-1.8.8-r3.ebuild | 120 +
 2 files changed, 155 insertions(+)

diff --git a/dev-scheme/guile/files/guile-1.8.8-mkdir-mask.patch 
b/dev-scheme/guile/files/guile-1.8.8-mkdir-mask.patch
new file mode 100644
index ..7d1c703
--- /dev/null
+++ b/dev-scheme/guile/files/guile-1.8.8-mkdir-mask.patch
@@ -0,0 +1,35 @@
+--- a/libguile/filesys.c   2016-11-05 15:03:52.131894648 +0100
 b/libguile/filesys.c   2016-11-05 15:07:13.275894481 +0100
+@@ -791,24 +791,18 @@
+ SCM_DEFINE (scm_mkdir, "mkdir", 1, 1, 0,
+ (SCM path, SCM mode),
+   "Create a new directory named by @var{path}.  If @var{mode} is 
omitted\n"
+-  "then the permissions of the directory file are set using the 
current\n"
+-  "umask.  Otherwise they are set to the decimal value specified 
with\n"
+-  "@var{mode}.  The return value is unspecified.")
++  "then the permissions of the directory are set to @code{#o777}\n"
++  "masked with the current umask (@pxref{Processes, @code{umask}}).\n"
++  "Otherwise they are set to the value specified with @var{mode}.\n"
++  "The return value is unspecified.")
+ #define FUNC_NAME s_scm_mkdir
+ {
+   int rv;
+-  mode_t mask;
++  mode_t c_mode;
+ 
+-  if (SCM_UNBNDP (mode))
+-{
+-  mask = umask (0);
+-  umask (mask);
+-  STRING_SYSCALL (path, c_path, rv = mkdir (c_path, 0777 ^ mask));
+-}
+-  else
+-{
+-  STRING_SYSCALL (path, c_path, rv = mkdir (c_path, scm_to_uint (mode)));
+-}
++  c_mode = SCM_UNBNDP (mode) ? 0777 : scm_to_uint (mode);
++
++  STRING_SYSCALL (path, c_path, rv = mkdir (c_path, c_mode));
+   if (rv != 0)
+ SCM_SYSERROR;
+   return SCM_UNSPECIFIED;

diff --git a/dev-scheme/guile/guile-1.8.8-r3.ebuild 
b/dev-scheme/guile/guile-1.8.8-r3.ebuild
new file mode 100644
index ..5d5a73f
--- /dev/null
+++ b/dev-scheme/guile/guile-1.8.8-r3.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 eutils autotools flag-o-matic elisp-common
+
+DESCRIPTION="Scheme interpreter"
+HOMEPAGE="https://www.gnu.org/software/guile/;
+SRC_URI="mirror://gnu/guile/${P}.tar.gz"
+
+LICENSE="LGPL-2.1"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux 
~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+IUSE="debug debug-freelist debug-malloc +deprecated discouraged emacs 
networking nls readline +regex +threads"
+
+RESTRICT="!regex? ( test )"
+
+RDEPEND="
+   >=dev-libs/gmp-4.1:0=
+   dev-libs/libltdl:0=
+   sys-devel/gettext
+   sys-libs/ncurses:0=
+   emacs? ( virtual/emacs )
+   readline? ( sys-libs/readline:0= )"
+DEPEND="${RDEPEND}
+   sys-apps/texinfo
+   sys-devel/libtool"
+
+# Guile seems to contain some slotting support, /usr/share/guile/ is slotted,
+# but there are lots of collisions. Most in /usr/share/libguile. Therefore
+# I'm slotting this in the same slot as guile-1.6* for now.
+SLOT="12/8"
+MAJOR="1.8"
+
+src_prepare() {
+   epatch "${FILESDIR}/${P}-fix_guile-config.patch" \
+   "${FILESDIR}/${P}-gcc46.patch" \
+   "${FILESDIR}/${P}-gcc5.patch" \
+   "${FILESDIR}/${P}-makeinfo-5.patch" \
+   "${FILESDIR}/${P}-gtexinfo-5.patch" \
+   "${FILESDIR}/${P}-readline.patch" \
+   "${FILESDIR}/${P}-tinfo.patch" \
+   "${FILESDIR}/${P}-sandbox.patch" \
+   "${FILESDIR}/${P}-mkdir-mask.patch"
+
+   sed \
+   -e "s/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/g" \
+   -e "/AM_PROG_CC_STDC/d" \
+   -i guile-readline/configure.in || die
+
+   epatch_user
+
+   mv "${S}"/configure.{in,ac} || die
+   mv "${S}"/guile-readline/configure.{in,ac} || die
+
+   eautoreconf
+}
+
+src_configure() {
+   # see bug #178499
+   filter-flags -ftree-vectorize
+
+   #will fail for me if posix is disabled or without modules -- hkBst
+   econf \
+   --disable-error-on-warning \
+

[gentoo-commits] repo/gentoo:master commit in: dev-scheme/guile/

2016-11-06 Thread Amy Winston
commit: 857729aac64d4c4a007fefdb66d2d461adac7110
Author: Amy Winston  gentoo  org>
AuthorDate: Sun Nov  6 19:12:49 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Sun Nov  6 19:13:23 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=857729aa

dev-scheme/guile: remove old 2.0.12

Package-Manager: portage-2.3.0

 dev-scheme/guile/Manifest   |  1 -
 dev-scheme/guile/guile-2.0.12-r1.ebuild | 96 -
 2 files changed, 97 deletions(-)

diff --git a/dev-scheme/guile/Manifest b/dev-scheme/guile/Manifest
index 3712cc3..362cf3e 100644
--- a/dev-scheme/guile/Manifest
+++ b/dev-scheme/guile/Manifest
@@ -1,3 +1,2 @@
 DIST guile-1.8.8.tar.gz 3956654 SHA256 
c3471fed2e72e5b04ad133bbaaf16369e8360283679bcf19800bc1b381024050 SHA512 
ede6feb90cd419d8763feb8c5169275490a653919573c4dfced025b74cf591072b3a10ffb9a3f6ee3fe7b0a0956ffcf434e0859b421455c8349cea56bf427db0
 WHIRLPOOL 
104810030b5dae16805595a5b398e5a7e600771b64b08d5ff686036e2f273dcec3829a16e4cdb1dbb9db5813f2e225476f83e0535a789bc570fc2fc15a76dbe2
-DIST guile-2.0.12.tar.gz 7421088 SHA256 
8e382930ea17bc547b22349bba819caf61313f6de9ed110e7d87f1ec68349026 SHA512 
638562b18bca8f5192ea116f89de5802c1193440c6394bbc2aad873a5b897dc9a2a05f05208c089437626d25ea4ab016bea56feb04a8cdea26d7e495cd5b3a7b
 WHIRLPOOL 
4485e2820c9ce73370d6eb41fe81e8d6135d4e266dce396c4ec42c0ac214f3c36d9fa36c8456ef6587f0213577c89d8cbd9cc2a8e3de9665a3a4b97736ac731e
 DIST guile-2.0.13.tar.gz 7808173 SHA256 
ee8073c4582bb4f06412452fdf5dd185aae607441f1313c824f44bdd668b0bde SHA512 
79fd5fda5064331eb687934ec3eaf07943f5b23bd05fbce23ab5ee3698864250b33746e33b8f074692b56f7b428dac42ed5d3f5b9dc17d171aa6dfadc1625b00
 WHIRLPOOL 
5f8b8e0f0e5fd2cde8fd4b1ca89ebe0231dd5f746945d71412a9d1ce57094013882972d9791511ef47e9bf1f2e9eff77a515dab8b4a6c0316122cb9ef49b5a7d

diff --git a/dev-scheme/guile/guile-2.0.12-r1.ebuild 
b/dev-scheme/guile/guile-2.0.12-r1.ebuild
deleted file mode 100644
index a69152a3..
--- a/dev-scheme/guile/guile-2.0.12-r1.ebuild
+++ /dev/null
@@ -1,96 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-inherit flag-o-matic autotools
-
-DESCRIPTION="GNU Ubiquitous Intelligent Language for Extensions"
-HOMEPAGE="https://www.gnu.org/software/guile/;
-SRC_URI="mirror://gnu/guile/${P}.tar.gz"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux 
~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
-LICENSE="LGPL-3+"
-IUSE="debug debug-malloc +deprecated +networking +nls +regex +threads" # 
upstream recommended +networking +nls
-
-# emacs useflag removal not working
-
-RDEPEND="
-   >=dev-libs/boehm-gc-7.0[threads?]
-   dev-libs/gmp:=
-   virtual/libffi
-   dev-libs/libltdl:=
-   dev-libs/libunistring
-   sys-devel/libtool
-   sys-libs/ncurses:0=
-   sys-libs/readline:0="
-DEPEND="${RDEPEND}
-   virtual/pkgconfig
-   sys-apps/texinfo
-   sys-devel/gettext"
-
-SLOT="12/22" # subslot is soname version
-MAJOR="2.0"
-
-PATCHES=( "${FILESDIR}/${P}-build_includes2.patch"
- "${FILESDIR}/${P}-workaround-ice-ssa-corruption.patch" ) # includes2 
bug 590528 patched by upstream, bug 594010
-DOCS=( GUILE-VERSION HACKING README )
-
-src_prepare() {
-   default
-   eautoreconf
-}
-
-src_configure() {
-   # see bug #178499
-   filter-flags -ftree-vectorize
-
-   # will fail for me if posix is disabled or without modules -- hkBst
-   econf \
-   --disable-error-on-warning \
-   --disable-rpath \
-   --enable-posix \
-   --with-modules \
-   --without-libgmp-prefix \
-   --without-libiconv-prefix \
-   --without-libintl-prefix \
-   --without-libltdl-prefix \
-   --without-libreadline-prefix \
-   --without-libunistring-prefix \
-   $(use_enable debug guile-debug) \
-   $(use_enable debug-malloc) \
-   $(use_enable deprecated) \
-   $(use_enable networking) \
-   $(use_enable nls) \
-   $(use_enable regex) \
-   $(use_with threads)
-}
-
-src_install() {
-   default
-
-   # From Novell
-   #   https://bugzilla.novell.com/show_bug.cgi?id=874028#c0
-   dodir /usr/share/gdb/auto-load/$(get_libdir)
-   mv "${ED}"/usr/$(get_libdir)/libguile-*-gdb.scm 
"${ED}"/usr/share/gdb/auto-load/$(get_libdir) || die
-
-   # texmacs needs this, closing bug #23493
-   dodir /etc/env.d
-   echo "GUILE_LOAD_PATH=\"${EPREFIX}/usr/share/guile/${MAJOR}\"" > 
"${ED}"/etc/env.d/50guile || die
-
-   # ne

[gentoo-commits] repo/gentoo:master commit in: dev-scheme/guile/

2016-11-05 Thread Amy Winston
commit: 9cac286e9a93372087841b8b3cc78b3caa5e6625
Author: Amy Winston  gentoo  org>
AuthorDate: Sat Nov  5 13:02:51 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Sat Nov  5 13:03:26 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9cac286e

dev-scheme/guile: fix slot bug #553956

Package-Manager: portage-2.2.28

 dev-scheme/guile/guile-2.0.13.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-scheme/guile/guile-2.0.13.ebuild 
b/dev-scheme/guile/guile-2.0.13.ebuild
index c616d38..efa0918 100644
--- a/dev-scheme/guile/guile-2.0.13.ebuild
+++ b/dev-scheme/guile/guile-2.0.13.ebuild
@@ -19,7 +19,7 @@ RDEPEND="
dev-libs/gmp:=
virtual/libffi
dev-libs/libltdl:=
-   dev-libs/libunistring
+   dev-libs/libunistring:0=
sys-devel/libtool
sys-libs/ncurses:0=
sys-libs/readline:0="



[gentoo-commits] repo/gentoo:master commit in: dev-scheme/guile/

2016-11-05 Thread Amy Winston
commit: f4acb8b7ed70914fc98bbb7532b44b7087b85048
Author: Amy Winston  gentoo  org>
AuthorDate: Sat Nov  5 12:44:54 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Sat Nov  5 12:55:59 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4acb8b7

dev-scheme/guile: version bump 2.0.13

Bugs: 597216,596864,596876

Package-Manager: portage-2.2.28

 dev-scheme/guile/Manifest|  1 +
 dev-scheme/guile/guile-2.0.13.ebuild | 82 
 2 files changed, 83 insertions(+)

diff --git a/dev-scheme/guile/Manifest b/dev-scheme/guile/Manifest
index de8aa34..3712cc3 100644
--- a/dev-scheme/guile/Manifest
+++ b/dev-scheme/guile/Manifest
@@ -1,2 +1,3 @@
 DIST guile-1.8.8.tar.gz 3956654 SHA256 
c3471fed2e72e5b04ad133bbaaf16369e8360283679bcf19800bc1b381024050 SHA512 
ede6feb90cd419d8763feb8c5169275490a653919573c4dfced025b74cf591072b3a10ffb9a3f6ee3fe7b0a0956ffcf434e0859b421455c8349cea56bf427db0
 WHIRLPOOL 
104810030b5dae16805595a5b398e5a7e600771b64b08d5ff686036e2f273dcec3829a16e4cdb1dbb9db5813f2e225476f83e0535a789bc570fc2fc15a76dbe2
 DIST guile-2.0.12.tar.gz 7421088 SHA256 
8e382930ea17bc547b22349bba819caf61313f6de9ed110e7d87f1ec68349026 SHA512 
638562b18bca8f5192ea116f89de5802c1193440c6394bbc2aad873a5b897dc9a2a05f05208c089437626d25ea4ab016bea56feb04a8cdea26d7e495cd5b3a7b
 WHIRLPOOL 
4485e2820c9ce73370d6eb41fe81e8d6135d4e266dce396c4ec42c0ac214f3c36d9fa36c8456ef6587f0213577c89d8cbd9cc2a8e3de9665a3a4b97736ac731e
+DIST guile-2.0.13.tar.gz 7808173 SHA256 
ee8073c4582bb4f06412452fdf5dd185aae607441f1313c824f44bdd668b0bde SHA512 
79fd5fda5064331eb687934ec3eaf07943f5b23bd05fbce23ab5ee3698864250b33746e33b8f074692b56f7b428dac42ed5d3f5b9dc17d171aa6dfadc1625b00
 WHIRLPOOL 
5f8b8e0f0e5fd2cde8fd4b1ca89ebe0231dd5f746945d71412a9d1ce57094013882972d9791511ef47e9bf1f2e9eff77a515dab8b4a6c0316122cb9ef49b5a7d

diff --git a/dev-scheme/guile/guile-2.0.13.ebuild 
b/dev-scheme/guile/guile-2.0.13.ebuild
new file mode 100644
index ..c616d38
--- /dev/null
+++ b/dev-scheme/guile/guile-2.0.13.ebuild
@@ -0,0 +1,82 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+inherit flag-o-matic autotools
+
+DESCRIPTION="GNU Ubiquitous Intelligent Language for Extensions"
+HOMEPAGE="https://www.gnu.org/software/guile/;
+SRC_URI="mirror://gnu/guile/${P}.tar.gz"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux 
~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+LICENSE="LGPL-3+"
+IUSE="debug debug-malloc +deprecated +networking +nls +regex +threads" # 
upstream recommended +networking +nls
+
+# emacs useflag removal not working
+
+RDEPEND="
+   >=dev-libs/boehm-gc-7.0[threads?]
+   dev-libs/gmp:=
+   virtual/libffi
+   dev-libs/libltdl:=
+   dev-libs/libunistring
+   sys-devel/libtool
+   sys-libs/ncurses:0=
+   sys-libs/readline:0="
+DEPEND="${RDEPEND}
+   virtual/pkgconfig
+   sys-apps/texinfo
+   sys-devel/gettext"
+
+SLOT="12/22" # subslot is soname version
+MAJOR="2.0"
+
+DOCS=( GUILE-VERSION HACKING README )
+
+src_prepare() {
+   default
+   eautoreconf
+}
+
+src_configure() {
+   # see bug #178499
+   filter-flags -ftree-vectorize
+
+   econf \
+   --disable-error-on-warning \
+   --disable-dependency-tracking \
+   --disable-rpath \
+   --enable-posix \
+   --without-libgmp-prefix \
+   --without-libiconv-prefix \
+   --without-libintl-prefix \
+   --without-libltdl-prefix \
+   --without-libreadline-prefix \
+   --without-libunistring-prefix \
+   $(use_enable debug guile-debug) \
+   $(use_enable debug-malloc) \
+   $(use_enable deprecated) \
+   $(use_enable networking) \
+   $(use_enable nls) \
+   $(use_enable regex) \
+   $(use_with threads)
+}
+
+src_install() {
+   default
+
+   # From Novell
+   #   https://bugzilla.novell.com/show_bug.cgi?id=874028#c0
+   dodir /usr/share/gdb/auto-load/$(get_libdir)
+   mv "${ED}"/usr/$(get_libdir)/libguile-*-gdb.scm 
"${ED}"/usr/share/gdb/auto-load/$(get_libdir) || die
+
+   # texmacs needs this, closing bug #23493
+   dodir /etc/env.d
+   echo "GUILE_LOAD_PATH=\"${EPREFIX}/usr/share/guile/${MAJOR}\"" > 
"${ED}"/etc/env.d/50guile || die
+
+   # necessary for registering slib, see bug 206896
+   keepdir /usr/share/guile/site
+
+   # Dark magic necessary for some deps
+   dosym libguile-2.0.so /usr/$(get_libdir)/libguile.so
+}



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

2016-11-02 Thread Amy Winston
commit: 63e8ccd481287903730d25f0350915d8a572dafb
Author: Amy Winston  gentoo  org>
AuthorDate: Wed Nov  2 06:53:23 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Wed Nov  2 06:53:23 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63e8ccd4

media-libs/libebur128: fix subslot

Package-Manager: portage-2.2.28

 .../libebur128/{libebur128-1.2.0.ebuild => libebur128-1.2.0-r1.ebuild}  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/libebur128/libebur128-1.2.0.ebuild 
b/media-libs/libebur128/libebur128-1.2.0-r1.ebuild
similarity index 98%
rename from media-libs/libebur128/libebur128-1.2.0.ebuild
rename to media-libs/libebur128/libebur128-1.2.0-r1.ebuild
index 7b5cb59..116e228 100644
--- a/media-libs/libebur128/libebur128-1.2.0.ebuild
+++ b/media-libs/libebur128/libebur128-1.2.0-r1.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/jiixyj/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz
test? ( 
https://tech.ebu.ch/files/live/sites/tech/files/shared/testmaterial/ebu-loudness-test-setv05.zip
 )"
 
 LICENSE="MIT"
-SLOT="0/2"
+SLOT="0/1"
 KEYWORDS="~amd64 ~x86"
 IUSE="static-libs test"
 



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

2016-11-01 Thread Amy Winston
commit: 2ff6aefcad9750bbdfaa06c8939dd19b9e7d25f8
Author: Diogo Pereira  gmail  com>
AuthorDate: Tue Nov  1 15:02:13 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Tue Nov  1 15:57:32 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ff6aefc

media-libs/libebur128: bump to 1.2.0

- Bump to EAPI 6
- Drop the dependency on media-libs/speex

Closes: #2713

 media-libs/libebur128/Manifest|  2 ++
 media-libs/libebur128/libebur128-1.2.0.ebuild | 35 +++
 2 files changed, 37 insertions(+)

diff --git a/media-libs/libebur128/Manifest b/media-libs/libebur128/Manifest
index 0f92a2a..76e751e 100644
--- a/media-libs/libebur128/Manifest
+++ b/media-libs/libebur128/Manifest
@@ -1,4 +1,6 @@
 DIST ebu-loudness-test-setv03.zip 80837115 SHA256 
c97e8e1f962ee0a97dca37d205418b3469dd0d1e2a627fa9f505f2f1c01f54ec SHA512 
ffa60e3f17370a7436614269ce33b2e3c8ec84c2477f05bd42b436bbd07b7018ae9ef935c9fd75ccff731bdf24b8231397ccc95fd003cdf6e04578ee62a663d5
 WHIRLPOOL 
d4d128c90759c6462c1d76183960d46eae8f434a47059c1e448d8550e9ba04daef3452d9a7bd2b38f1a85ac5551ae2983bd5fa6bcd66f7df6a88dcbc38bf3bd3
+DIST ebu-loudness-test-setv05.zip 91631421 SHA256 
9cc500b4df83f7c21855c74dce795ef5209a752bf884253ae57d0ce512efb062 SHA512 
60d022fdac47ad0be2688411be9daecbff85da994d6fa4921bba6cffab841b081d8b15d9ce284ad2253efb686463450a84a0d19cb0bad7a934546cc52dd73771
 WHIRLPOOL 
bc167598f13c12633e019cdbf315ee69a68c508ed86bbeb1831911540e16b02f5d79c8a911dc8d89a10318137ef5c12ab89f0447f2a9321d1515c64f454ab0e5
 DIST libebur128-1.0.2.tar.gz 29794 SHA256 
9b334d31a26b47ba6740bb7bbee7a24461d535f426b1ed42368c187e27c08323 SHA512 
10f0248db9ebae48c0b3a62f5bab668d77bf10cd004267593b0cec1c5fcd5b1223fff2ae82d6753db7329210a0d7feb5a65a1c030e92607805d05c1b9885416a
 WHIRLPOOL 
4656d8e05d98d2a1b8d286602b2671d2016ec0b8e35f66689d97ad700c61fcb1234e85308ab00f01a6ac51d741232054b251da04594f646138eb5d0103564585
 DIST libebur128-1.0.3.tar.gz 19804 SHA256 
dd90d0e44bd4db1e038d990b4538a7317b2f44f29eaf2e206c247663234d9d52 SHA512 
586ae80c31b9ef1d315821cef6901edd3f3d5309299411e969cce18cdc1911639971ad249b3b49edae9195b428557dbfa3281a5dc22da20a245e66c497eb0422
 WHIRLPOOL 
c5d62232ed6bc05bf909a809fc38c15d79d1278ecc708ca94d4b41e37d38985d50764eeff9a6c5a4582baf3963864d512ba90d6b7a90c363b3bb334ebb860fda
 DIST libebur128-1.1.0.tar.gz 19318 SHA256 
c60e78f4bfda387a0895c64a4fc9850445e3a4425cc98f9140885966ce17c1d1 SHA512 
13a0d92eae8d991a15cb090e5f3ca34fbe285bf7e8e01e10b5ccc8be4f066e8bbff6920370d4506284f02dbfca3a5189ddfe9135f195179d356257055768c08a
 WHIRLPOOL 
0775f4b220a690310f736dccd1748fe48c643cf0889378b4238b7aa4cc57967fb77c81f28cd4bdd4de220e832c220d45524fd63834e6e5ce37cfe381118cc0eb
+DIST libebur128-1.2.0.tar.gz 21690 SHA256 
f4c4ce732ae085214bcc47349f89b61ed53c13721c097e01cb966533ee6b1e5b SHA512 
70bae021e4a9c60e1eee5dd2ffb357bda007b9f29cda0a25b9ae453cf389661a238e6300a2bbfb323afe9b0955d2b8468fff91eb1bf2a3d665c9e32c5e80631d
 WHIRLPOOL 
50a861a61bcb7028d6cf94ac669d3876199680f696eff09a699713cbc5047d863f337cebd54988e3061daa420f92454148f642c16fa4abe4e50da6ad1ff76c17

diff --git a/media-libs/libebur128/libebur128-1.2.0.ebuild 
b/media-libs/libebur128/libebur128-1.2.0.ebuild
new file mode 100644
index ..7b5cb59
--- /dev/null
+++ b/media-libs/libebur128/libebur128-1.2.0.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit cmake-multilib
+
+DESCRIPTION="A library implementing the EBU R128 loudness standard"
+HOMEPAGE="https://github.com/jiixyj/libebur128;
+SRC_URI="https://github.com/jiixyj/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz
+   test? ( 
https://tech.ebu.ch/files/live/sites/tech/files/shared/testmaterial/ebu-loudness-test-setv05.zip
 )"
+
+LICENSE="MIT"
+SLOT="0/2"
+KEYWORDS="~amd64 ~x86"
+IUSE="static-libs test"
+
+DEPEND="test? ( app-arch/unzip
+   media-libs/libsndfile[${MULTILIB_USEDEP}] )"
+
+multilib_src_configure() {
+   local mycmakeargs=(
+   -DBUILD_STATIC_LIBS=$(usex static-libs)
+   -DENABLE_TESTS=$(usex test)
+   )
+   cmake-utils_src_configure
+}
+
+multilib_src_test() {
+   cd "${WORKDIR}"
+   "${BUILD_DIR}"/r128-test-library | tee test-results
+   grep -c "^FAILED" test-results > /dev/null \
+   && die "At least one test failed"
+}



[gentoo-commits] repo/gentoo:master commit in: dev-tcltk/tcl3d/, dev-tcltk/tcl3d/files/

2016-10-31 Thread Amy Winston
commit: f5fb3bbbabcb12914894e6cd21dc84f929a11bc8
Author: Jonathan Vasquez  gmail  com>
AuthorDate: Mon Oct 24 01:26:47 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Mon Oct 31 14:19:29 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5fb3bbb

dev-tcltk/tcl3d version bump to 0.5.0 and added x86 support

Gentoo-Bug: 469304,514300

 dev-tcltk/tcl3d/Manifest   |  1 +
 ...tcl3d-0.5.0-include-tk-dir-and-permissive.patch | 72 ++
 dev-tcltk/tcl3d/metadata.xml   |  1 +
 dev-tcltk/tcl3d/tcl3d-0.5.0.ebuild | 71 +
 4 files changed, 145 insertions(+)

diff --git a/dev-tcltk/tcl3d/Manifest b/dev-tcltk/tcl3d/Manifest
index a5c60e4..a1f72dd 100644
--- a/dev-tcltk/tcl3d/Manifest
+++ b/dev-tcltk/tcl3d/Manifest
@@ -1 +1,2 @@
 DIST tcl3d-src-0.4.0.zip 1501305 SHA256 
f98bee3c2ca0189780125b683481949e1499018ee56ad1d21b4e3e594e058496 SHA512 
a8a525693bc45e9fb9e2167e2121d300ff60534f2bced33bb068a1075cfd8e8281dd97bd7fb432b9d6a95cdb37fc3da03c82dd1ee20e368fb8ac249ea54c30a5
 WHIRLPOOL 
cbc1982df7a28b93249ff7877d0376b06b64261bb33f3df8c64b2c80600684529605b9eeff6f593c2e9f7c64c253066b226f0a0dae9cee21bec980f6782c
+DIST tcl3d-src-0.5.0.zip 3936271 SHA256 
a2ecccbdb9c87fd02a7b969cc02abbf43aa51e619bd79e08dbffb8e376b6957c SHA512 
24f799d5cc0ad9daf060b6b723d1197be678c0716b2099287e004221889c56da03f7368d6cd4c47dfe936b0bf65366cd452d3d9c2335cdfbae6ff3860a29
 WHIRLPOOL 
b2a1f3d81be1bed6476652bc6fd4ed2dd3bd85a2b895c950a1298f6ed998b05f0ac02937233f352bf794818112e114f22b3d2123c99be7a6458e464ee33e1604

diff --git 
a/dev-tcltk/tcl3d/files/tcl3d-0.5.0-include-tk-dir-and-permissive.patch 
b/dev-tcltk/tcl3d/files/tcl3d-0.5.0-include-tk-dir-and-permissive.patch
new file mode 100644
index ..58efa18
--- /dev/null
+++ b/dev-tcltk/tcl3d/files/tcl3d-0.5.0-include-tk-dir-and-permissive.patch
@@ -0,0 +1,72 @@
+diff -ru tcl3d/config_Linux tcl3d-m/config_Linux
+--- tcl3d/config_Linux 2010-08-30 15:57:56.0 -0400
 tcl3d-m/config_Linux   2016-10-30 13:28:34.080601812 -0400
+@@ -74,6 +74,8 @@
+ TKINCDIR = $(TKDIR)/include
+ TCLLIBDIR= $(TCLDIR)/lib
+ TKLIBDIR = $(TKDIR)/lib
++TCLLIBINCDIR = $(TCLLIBDIR)/tcl$(TCLVERSION)/include
++TKLIBINCDIR  = $(TCLLIBDIR)/tk$(TCLVERSION)/include
+ TCLSTUBLIBS  = $(TKLIBDIR)/libtkstub$(TCLVERSION)$(LIBEXT) 
$(TCLLIBDIR)/libtclstub$(TCLVERSION)$(LIBEXT)
+ TCLSTDLIBS   = $(TKLIBDIR)/libtk$(TCLVERSION)$(LIBEXT) 
$(TCLLIBDIR)/libtcl$(TCLVERSION)$(LIBEXT)
+ TCLSH= tclsh$(TCLVERSION)
+@@ -84,7 +86,13 @@
+ CPDIR= csh -f cpdir
+ MKDIR= mkdir -p
+ 
+-INCL   = -I. -I$(TCLINCDIR)
++INCL   = \
++  -I. \
++  -I$(TCLINCDIR) \
++  -I$(TCLLIBINCDIR)/generic \
++  -I$(TCLLIBINCDIR)/unix \
++  -I$(TKLIBINCDIR)/generic \
++  -I$(TKLIBINCDIR)/unix
+ 
+ ifdef WITH_STUBS
+ TCLLIBS = $(TCLSTUBLIBS)
+diff -ru tcl3d/config_Linux64 tcl3d-m/config_Linux64
+--- tcl3d/config_Linux64   2010-12-30 16:06:48.0 -0500
 tcl3d-m/config_Linux64 2016-10-30 13:08:33.326771912 -0400
+@@ -74,6 +74,8 @@
+ TKINCDIR = $(TKDIR)/include
+ TCLLIBDIR= $(TCLDIR)/lib64
+ TKLIBDIR = $(TKDIR)/lib64
++TCLLIBINCDIR = $(TCLLIBDIR)/tcl$(TCLVERSION)/include
++TKLIBINCDIR  = $(TCLLIBDIR)/tk$(TCLVERSION)/include
+ TCLSTUBLIBS  = $(TKLIBDIR)/libtkstub$(TCLVERSION)$(LIBEXT) 
$(TCLLIBDIR)/libtclstub$(TCLVERSION)$(LIBEXT)
+ TCLSTDLIBS   = $(TKLIBDIR)/libtk$(TCLVERSION)$(SHLIBEXT) 
$(TCLLIBDIR)/libtcl$(TCLVERSION)$(SHLIBEXT)
+ TCLSH= tclsh$(TCLVERSION)
+@@ -84,7 +86,13 @@
+ CPDIR= csh -f cpdir
+ MKDIR= mkdir -p
+ 
+-INCL   = -I. -I$(TCLINCDIR)
++INCL   = \
++  -I. \
++  -I$(TCLINCDIR) \
++  -I$(TCLLIBINCDIR)/generic \
++  -I$(TCLLIBINCDIR)/unix \
++  -I$(TKLIBINCDIR)/generic \
++  -I$(TKLIBINCDIR)/unix
+ 
+ ifdef WITH_STUBS
+ TCLLIBS = $(TCLSTUBLIBS)
+diff -ru tcl3d/tcl3dOsg/Makefile tcl3d-m/tcl3dOsg/Makefile
+--- tcl3d/tcl3dOsg/Makefile2010-09-30 16:20:28.0 -0400
 tcl3d-m/tcl3dOsg/Makefile  2016-10-30 13:12:53.367593401 -0400
+@@ -308,12 +308,13 @@
+ OPT += /Od
+ endif
+ CFLAGS = $(OPT) $(PPDEFS) -I$(GL_INCDIR) -Iinclude $(INCL)   
++CXXFLAGS = -fpermissive
+ 
+ .SUFFIXES:# Delete the default suffixes.
+ .SUFFIXES: .cpp $(OBJEXT) .h  # Install our own suffixes.
+ 
+ .cpp$(OBJEXT):
+-  $(CXX) $(CFLAGS) $<
++  $(CXX) $(CFLAGS) $(CXXFLAGS) $<
+ 
+ all: osg osganimation osgdb osgfx osgga osgmanipulator osgopenthreads \
+  osgparticle osgsim osgshadow osgterrain osgtext osgutil osgviewer \

diff --git a/dev-tcltk/tcl3d/metadata.xml b/dev-tcltk/tcl3d/metadata.xml
index 5ae050b..851c8cb 100644
--- a/dev-tcltk/tcl3d/metadata.xml
+++ b/dev-tcltk/tcl3d/metadata.xml
@@ -20,6 +20,7 @@ tcl3dSDL  Wrapper for the Simple DirectM

[gentoo-commits] repo/gentoo:master commit in: dev-tcltk/tcl3d/

2016-10-31 Thread Amy Winston
commit: 554c576bc9254c46eace4b25eafedc2f81ec634b
Author: Amy Winston  gentoo  org>
AuthorDate: Mon Oct 31 14:24:33 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Mon Oct 31 14:24:33 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=554c576b

dev-tcltk/tcl3d: add missing dep bug #514300

Package-Manager: portage-2.2.28

 dev-tcltk/tcl3d/tcl3d-0.4.0-r1.ebuild | 1 +
 dev-tcltk/tcl3d/tcl3d-0.4.0.ebuild| 3 ++-
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/dev-tcltk/tcl3d/tcl3d-0.4.0-r1.ebuild 
b/dev-tcltk/tcl3d/tcl3d-0.4.0-r1.ebuild
index a5ccdf3..6aa4374 100644
--- a/dev-tcltk/tcl3d/tcl3d-0.4.0-r1.ebuild
+++ b/dev-tcltk/tcl3d/tcl3d-0.4.0-r1.ebuild
@@ -22,6 +22,7 @@ RDEPEND="
media-libs/libsdl
media-libs/ftgl
virtual/opengl
+   x11-libs/libXmu
 "
 DEPEND="${RDEPEND}
>=dev-lang/swig-1.3.19"

diff --git a/dev-tcltk/tcl3d/tcl3d-0.4.0.ebuild 
b/dev-tcltk/tcl3d/tcl3d-0.4.0.ebuild
index d750c1b..6ae6d3a 100644
--- a/dev-tcltk/tcl3d/tcl3d-0.4.0.ebuild
+++ b/dev-tcltk/tcl3d/tcl3d-0.4.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -22,6 +22,7 @@ RDEPEND="
media-libs/libsdl
media-libs/ftgl
virtual/opengl
+   x11-libs/libXmu
 "
 DEPEND="${RDEPEND}
>=dev-lang/swig-1.3.19"



[gentoo-commits] repo/gentoo:master commit in: dev-scheme/racket/

2016-10-29 Thread Amy Winston
commit: 8b927ae287a0af60d5c8624b060b61d88fac8ed6
Author: Amy Winston  gentoo  org>
AuthorDate: Sat Oct 29 22:13:06 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Sat Oct 29 22:16:01 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b927ae2

dev-scheme/racket: clean up

Package-Manager: portage-2.2.28

 dev-scheme/racket/racket-6.0.1.ebuild | 2 +-
 dev-scheme/racket/racket-6.2.1.ebuild | 2 +-
 dev-scheme/racket/racket-6.4.ebuild   | 3 +--
 dev-scheme/racket/racket-6.5.ebuild   | 3 +--
 4 files changed, 4 insertions(+), 6 deletions(-)

diff --git a/dev-scheme/racket/racket-6.0.1.ebuild 
b/dev-scheme/racket/racket-6.0.1.ebuild
index e4af1fc..c708916 100644
--- a/dev-scheme/racket/racket-6.0.1.ebuild
+++ b/dev-scheme/racket/racket-6.0.1.ebuild
@@ -30,7 +30,7 @@ S="${WORKDIR}/${P}/src"
 
 src_prepare() {
#remove bundled libraries
-   rm -rf foreign/libffi/
+   rm -rf foreign/libffi/ || die
 }
 
 src_configure() {

diff --git a/dev-scheme/racket/racket-6.2.1.ebuild 
b/dev-scheme/racket/racket-6.2.1.ebuild
index 171c433..faa0f82 100644
--- a/dev-scheme/racket/racket-6.2.1.ebuild
+++ b/dev-scheme/racket/racket-6.2.1.ebuild
@@ -30,7 +30,7 @@ S="${WORKDIR}/${P}/src"
 
 src_prepare() {
#remove bundled libraries
-   rm -rf foreign/libffi/
+   rm -rf foreign/libffi/ || die
 }
 
 src_configure() {

diff --git a/dev-scheme/racket/racket-6.4.ebuild 
b/dev-scheme/racket/racket-6.4.ebuild
index 2cd5718..faa0f82 100644
--- a/dev-scheme/racket/racket-6.4.ebuild
+++ b/dev-scheme/racket/racket-6.4.ebuild
@@ -9,7 +9,6 @@ EAPI="5"
 inherit eutils pax-utils
 #inherit git-2
 
-#DESCRIPTION="Racket is a general-purpose programming language with strong 
support for domain-specific languages"
 DESCRIPTION="General purpose, multi-paradigm programming language in the 
Lisp-Scheme family."
 HOMEPAGE="http://racket-lang.org/;
 SRC_URI="minimal? ( 
http://download.racket-lang.org/installers/${PV}/${PN}-minimal-${PV}-src-builtpkgs.tgz
 ) !minimal? ( 
http://download.racket-lang.org/installers/${PV}/${P}-src-builtpkgs.tgz )"
@@ -31,7 +30,7 @@ S="${WORKDIR}/${P}/src"
 
 src_prepare() {
#remove bundled libraries
-   rm -rf foreign/libffi/
+   rm -rf foreign/libffi/ || die
 }
 
 src_configure() {

diff --git a/dev-scheme/racket/racket-6.5.ebuild 
b/dev-scheme/racket/racket-6.5.ebuild
index 2cd5718..faa0f82 100644
--- a/dev-scheme/racket/racket-6.5.ebuild
+++ b/dev-scheme/racket/racket-6.5.ebuild
@@ -9,7 +9,6 @@ EAPI="5"
 inherit eutils pax-utils
 #inherit git-2
 
-#DESCRIPTION="Racket is a general-purpose programming language with strong 
support for domain-specific languages"
 DESCRIPTION="General purpose, multi-paradigm programming language in the 
Lisp-Scheme family."
 HOMEPAGE="http://racket-lang.org/;
 SRC_URI="minimal? ( 
http://download.racket-lang.org/installers/${PV}/${PN}-minimal-${PV}-src-builtpkgs.tgz
 ) !minimal? ( 
http://download.racket-lang.org/installers/${PV}/${P}-src-builtpkgs.tgz )"
@@ -31,7 +30,7 @@ S="${WORKDIR}/${P}/src"
 
 src_prepare() {
#remove bundled libraries
-   rm -rf foreign/libffi/
+   rm -rf foreign/libffi/ || die
 }
 
 src_configure() {



[gentoo-commits] repo/gentoo:master commit in: dev-scheme/racket/

2016-10-29 Thread Amy Winston
commit: 9b4c716933e96370694a4a9408380984d9324ea5
Author: Amy Winston  gentoo  org>
AuthorDate: Sat Oct 29 22:06:25 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Sat Oct 29 22:08:42 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b4c7169

dev-scheme/racket: version bump 6.7 bug #598304

Package-Manager: portage-2.2.28

 dev-scheme/racket/Manifest  |  2 ++
 dev-scheme/racket/racket-6.7.ebuild | 71 +
 2 files changed, 73 insertions(+)

diff --git a/dev-scheme/racket/Manifest b/dev-scheme/racket/Manifest
index 4ff7308..dd17ed1 100644
--- a/dev-scheme/racket/Manifest
+++ b/dev-scheme/racket/Manifest
@@ -3,7 +3,9 @@ DIST racket-6.0.1-src-builtpkgs.tgz 101425779 SHA256 
2b5f2bccb21d408041e167a4476
 DIST racket-6.2.1-src-builtpkgs.tgz 113159311 SHA256 
04429315159d86c71037e4c1157a724476065803e32346abc0ee37708aed0fcd SHA512 
1776e22412d37de69019147e670c88b015d31c31c654cc647ee6598588e94cad32b8d52e4d1738febe3ed47aaf1dc89c5db03878a0e3a4baff75dab302c2a294
 WHIRLPOOL 
9de2f3068061b13067c6e05289ae6ca233c9c0a90ef639a6e9853df5deb9e1358f2609e712e472312bd599a0cbe79973c4525c5fa99bbc9cd59837d674498b68
 DIST racket-6.4-src-builtpkgs.tgz 120269476 SHA256 
5feb8279d9b3b1adf8642714dcb4cb8514832cb17135174be8733b92e1a0078a SHA512 
58ef8a27afe61a44ee65f00a1096dbbb833f5d2e8a1fddd1dd4a250164031358216c88c21ef6b9a3a84996a4317338175301493511c49e92a80135653af8159c
 WHIRLPOOL 
9e4258bd2cdb1758546db7e149a8c3429f43f3fd71cafabb6fb3d7012098d56e68420bf743571adfd9082639da5455e4dbe98baa64a50746e5969af20b906378
 DIST racket-6.5-src-builtpkgs.tgz 125157499 SHA256 
9cfd20e7b68f6e7effaef144e184d7e67e1a2bab1df2b1c0b5fce8581f4c9457 SHA512 
9ae2a0dd0fa6f5836ae27f48f1253626d76c0d79249a2b6bfb32aa20f9036897364bfea81a782d7b9bed782677608433cc2cfafc2bb0143e5aef1b1185d1d39a
 WHIRLPOOL 
de6fdb68d1e351f8f1e3556698fde70d3128b684d73618144692c19c392958934c3792e420329c3f4bef44a86853c577179d15fd0247fa9c8e13b54474525586
+DIST racket-6.7-src-builtpkgs.tgz 116773863 SHA256 
3608a2d8b5dc5b755f014972140594e39110c5c391b556da43aa349d64c392ed SHA512 
63fdc18e72fa152434d0fb83e926c28d2b2d16c93a0a2be0c14d445671c1bff5daf500e9917e41fa2f60454377de0cc10d226c321402abf4bad55a15ac74f127
 WHIRLPOOL 
d4ee7c9cd61f79d7d6d5928ed697085a8f06c377cd80c10bfd68b5c250b3e901dcc8fad56d223ba27e486d00f7b926be49268a580137964023948d53837e05e5
 DIST racket-minimal-6.0.1-src-builtpkgs.tgz 9139061 SHA256 
f58aa4e3e831417b72d5c19aba20a5b0eaaaf2f1afa3096b0a4e83b860a3 SHA512 
99c7ecf5d7e1de40358a03a5878271e2864fa9e6fe11bab71bd68784bd058a2edbb4ec65ba455dbff2a943c78ec0f9a9b0f46b1532fc1b55be500593160da313
 WHIRLPOOL 
bc3dc19d8c23129866adeb71d125314d66ce2e505d1a453f26c09e9aa42bc98626cba2ddb87d8ae53c7ad5939443defc88c4f1c4ce174567a01b1f56be9788ea
 DIST racket-minimal-6.2.1-src-builtpkgs.tgz 9736885 SHA256 
47eceb5f23ab66a939650fa44dd89ffcb17a6227f58c6bc80e90aa8999c86b36 SHA512 
048f247136b15c2b118f497e9058a34dc7135ad4fbe707345290238e1268dd72e0ba35d3fd1690d0f9e97e56748f8964eb80c23c6be278bc6e5e819414c0d4a9
 WHIRLPOOL 
3c475a8204cea6c802043f4e823d2b1cdc50055ebc3288768988d5e3bf8e502b32300228360603743a9b1d065a845bb1e22d12e4b0fe79a4a6132e2ba335be53
 DIST racket-minimal-6.4-src-builtpkgs.tgz 10880010 SHA256 
cf717d4983f4198fce8973ead5d427bc9da78b73bd51fee16b58c894c2a146e8 SHA512 
7ff59dcfe97e96d1d8a22b2cfcc28e32833742dae93839d0bcd80a43ff3834a02128681f9b9adab0f66ae99745f3b6cf87f6fa39f71f9a288f14cf22e6cc4629
 WHIRLPOOL 
74633074ed9f44e4c99c2eb0808ee393c8dbc66f84f2c9787ad1ab359bb4c60b3cda86a858d08fabe38680a8fe42e5f856c8baab780e9847aa3a2eb0fb1e0158
 DIST racket-minimal-6.5-src-builtpkgs.tgz 11037268 SHA256 
44fe95a4ec4d442b4f6f68e360104ca9715bd1fe3795d302d6cddaceb15696dc SHA512 
d1c1e025c8c1f88bb21ad34d019745ad7e12779af1f2a2f1cc618b8a11735266dd1bc42158df3bdf3438f6dcde6322563874685e3a760dd2ec78018497f5
 WHIRLPOOL 
2cf320c52d7265782c89c674237efc49b25bc4721b89b5d6100052b504028102693dff08acd3a5c7757c9c7c665c4703f31c71781a7f3a6f73b79f05ca4047b2
+DIST racket-minimal-6.7-src-builtpkgs.tgz 11213736 SHA256 
4203d9b51a0de7ea549db966cfa49a736f8605ab51e2f198cbdb9cfaf428b0f3 SHA512 
59c885b535ed8e91a3b2a524bbc38661a5c19848ded935cc9f068c3fd6c8da39fc0755ef8df3a69cce3d50b96ee30d91972d6a4f6d5414eefb80bdc1ede6a285
 WHIRLPOOL 
aadcd035595325320cd7d372f4b7773ef66b542056b0140066279fe9aa9bcb054d25157774040dcc65749ac528f0297e4a30787e2a37d52fae6888b005e62490

diff --git a/dev-scheme/racket/racket-6.7.ebuild 
b/dev-scheme/racket/racket-6.7.ebuild
new file mode 100644
index ..bf61ea1
--- /dev/null
+++ b/dev-scheme/racket/racket-6.7.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="6"
+
+inherit eutils pax-utils
+
+DESCRIPTION="General purpose, multi-paradigm programming language in the 
Lisp-Scheme family."
+HOMEPAGE="http://racket-lang.org/;
+SRC_URI="minimal? ( 
http://download.racket-lang.org/inst

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

2016-10-25 Thread Amy Winston
commit: 5663b9762bdd265079f9955b8bfb5293028b2769
Author: Amy Winston  gentoo  org>
AuthorDate: Tue Oct 25 12:25:13 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Tue Oct 25 12:25:13 2016 +
URL:https://gitweb.gentoo.org/proj/recruiters.git/commit/?id=5663b976

template for quiz sumbission

 quiz-email.txt | 8 
 1 file changed, 8 insertions(+)

diff --git a/quiz-email.txt b/quiz-email.txt
new file mode 100644
index 000..19fd284
--- /dev/null
+++ b/quiz-email.txt
@@ -0,0 +1,8 @@
+Dear ,
+
+Thank you for your submission. Recruiters will get back to you as soon as 
possible.
+
+Hope to see you soon during recruitment!
+
+Best regards,
+



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

2016-10-25 Thread Amy Winston
commit: 807c0b857a5ae0b1a6a237b5c5961402f15b3d8c
Author: Amy Winston  gentoo  org>
AuthorDate: Tue Oct 25 11:57:44 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Tue Oct 25 11:57:44 2016 +
URL:https://gitweb.gentoo.org/proj/recruiters.git/commit/?id=807c0b85

add template for answering email

 answer-email.txt | 27 +++
 1 file changed, 27 insertions(+)

diff --git a/answer-email.txt b/answer-email.txt
new file mode 100644
index 000..005ce26
--- /dev/null
+++ b/answer-email.txt
@@ -0,0 +1,27 @@
+Dear ,
+
+I am really sorry for the long delay. And thank you for your interest in
+Gentoo.
+
+
+Contributing to gentoo is possible through proxy-maintainers project
+https://wiki.gentoo.org/wiki/Project:Proxy_Maintainers by making github
+pull requests or submitting patches to bugzilla.
+
+
+
+As for your question how to become a developer we have procedure:
+https://www.gentoo.org/get-involved/become-developer/
+
+The recruiters are a rather small team and we need to find another team
+in Gentoo which trains and mentors you.
+
+Please try to find a team/project which suits your interest. Also have a
+look into our wiki to find the team. I am happy to help you getting in
+touch with them.
+
+
+If you have any questions don't be afraid to contact us or me personally
+on irc or email.
+
+Best regards,



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

2016-10-25 Thread Amy Winston
commit: 999dc0c905cdaeaff66c7472625179f64d8298ac
Author: Amy Winston  gentoo  org>
AuthorDate: Tue Oct 25 11:27:47 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Tue Oct 25 11:27:47 2016 +
URL:https://gitweb.gentoo.org/proj/recruiters.git/commit/?id=999dc0c9

add template for rejecting email

 reject-email.txt | 12 
 1 file changed, 12 insertions(+)

diff --git a/reject-email.txt b/reject-email.txt
new file mode 100644
index 000..47e4cff
--- /dev/null
+++ b/reject-email.txt
@@ -0,0 +1,12 @@
+Dear ,
+As for recruiters team we believe from your previous interactions that your 
integration to Gentoo community is not possible yet hence we are closing the 
bug till you are ready. During the 
+recruitment process are all recruits supposed to be prepared to join Gentoo 
from technical point of view as the same as social side. We believe that both 
can be achieved with more practice 
+and patience.
+
+There for we ask your mentor to work with you more and help you integrate to 
the Gentoo community smoothly. 
+
+PS: Mentor feel free to reopen the bug when your recruit is ready.
+
+Thank you for your submissions and we hope to see you soon during recruitment !
+
+Best regards,



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

2016-10-23 Thread Amy Winston
commit: e0789b7b8b1459a0a4a6a6d75ed5ddb82ebfea56
Author: Amy Winston  gentoo  org>
AuthorDate: Sun Oct 23 18:29:03 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Sun Oct 23 18:30:33 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0789b7b

dev-util/weka: change java_prepare to src_* bug #597892

Package-Manager: portage-2.2.28

 dev-util/weka/weka-3.7.13.ebuild | 2 +-
 dev-util/weka/weka-3.8.0.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-util/weka/weka-3.7.13.ebuild b/dev-util/weka/weka-3.7.13.ebuild
index 09f580f..86e6b60 100644
--- a/dev-util/weka/weka-3.7.13.ebuild
+++ b/dev-util/weka/weka-3.7.13.ebuild
@@ -38,7 +38,7 @@ weka_get_max_memory() {
fi
 }
 
-java_prepare() {
+src_prepare() {
unzip -qq "${PN}-src.jar" -d . || die "Failed to unpack the source"
rm -v weka.jar || die
rm -rf doc || die

diff --git a/dev-util/weka/weka-3.8.0.ebuild b/dev-util/weka/weka-3.8.0.ebuild
index e881053..abef102 100644
--- a/dev-util/weka/weka-3.8.0.ebuild
+++ b/dev-util/weka/weka-3.8.0.ebuild
@@ -38,7 +38,7 @@ weka_get_max_memory() {
fi
 }
 
-java_prepare() {
+src_prepare() {
unzip -qq "${PN}-src.jar" -d . || die "Failed to unpack the source"
rm -v weka.jar || die
rm -rf doc || die



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

2016-10-21 Thread Amy Winston
commit: 5e60b88b5461bba828e0741d59e48ef7761f0ce2
Author: Amy Winston  gentoo  org>
AuthorDate: Fri Oct 21 09:58:50 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Fri Oct 21 09:59:36 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e60b88b

media-video/vlc: fix bug #593228 by Nick Andrade

1. Removing unneeded USE flags: macosx-quartztext & media-library
2. Updating RDEPEND: bluray, dvbpsi, gcrypt, gnutls, jack, postproc, qt5, 
vaapi, & zvbi
3. Updating DEPEND: gettext
4. Updating econf by removing: --disable-macosx-quartztext (unused), 
--disable-quicktime (no longer needed), & --enable-mkv (now auto detected)
5. Require -std=c++11 due to upstream change

Package-Manager: portage-2.2.28

 media-video/vlc/vlc-.ebuild | 30 +++---
 1 file changed, 15 insertions(+), 15 deletions(-)

diff --git a/media-video/vlc/vlc-.ebuild b/media-video/vlc/vlc-.ebuild
index 6d60206..6305a3a 100644
--- a/media-video/vlc/vlc-.ebuild
+++ b/media-video/vlc/vlc-.ebuild
@@ -44,8 +44,8 @@ IUSE="a52 aalib alsa altivec +audioqueue +avcodec
fluidsynth +ffmpeg flac fontconfig +gcrypt gme gnutls gstreamer httpd
ieee1394 jack jpeg kate kde libass libav libcaca libnotify
+libsamplerate libtiger linsys libtar lirc live lua
-   macosx-eyetv macosx-notifications macosx-quartztext macosx-qtkit
-   matroska media-library cpu_flags_x86_mmx modplug mp3 mpeg mtp musepack
+   macosx-eyetv macosx-notifications macosx-qtkit
+   matroska cpu_flags_x86_mmx modplug mp3 mpeg mtp musepack
ncurses neon ogg omxil opencv opengl optimisememory opus
png +postproc projectm pulseaudio +qt4 qt5 rdp rtsp run-as-root samba
schroedinger sdl sdl-image sftp shout sid skins speex cpu_flags_x86_sse 
svg +swscale
@@ -70,7 +70,7 @@ RDEPEND="
libav? ( media-video/libav:0= )
)
bidi? ( >=dev-libs/fribidi-0.10.4:0 )
-   bluray? ( >=media-libs/libbluray-0.3:0 )
+   bluray? ( >=media-libs/libbluray-0.6.2:0 )
cddb? ( >=media-libs/libcddb-1.2:0 )
chromaprint? ( >=media-libs/chromaprint-0.6:0 )
chromecast? ( >=dev-libs/protobuf-2.5.0 )
@@ -78,7 +78,7 @@ RDEPEND="
dc1394? ( >=sys-libs/libraw1394-2.0.1:0 
>=media-libs/libdc1394-2.1:2 )
directfb? ( dev-libs/DirectFB:0 sys-libs/zlib:0 )
dts? ( >=media-libs/libdca-0.0.5:0 )
-   dvbpsi? ( >=media-libs/libdvbpsi-1.0.0:0= )
+   dvbpsi? ( >=media-libs/libdvbpsi-1.2.0:0= )
dvd? ( >=media-libs/libdvdread-4.9:0 
>=media-libs/libdvdnav-4.9:0 )
elibc_glibc? ( >=sys-libs/glibc-2.8:2.2 )
faad? ( >=media-libs/faad2-2.6.1:0 )
@@ -86,12 +86,12 @@ RDEPEND="
flac? ( >=media-libs/libogg-1:0 >=media-libs/flac-1.1.2:0 )
fluidsynth? ( >=media-sound/fluidsynth-1.1.2:0 )
fontconfig? ( media-libs/fontconfig:1.0 )
-   gcrypt? ( >=dev-libs/libgcrypt-1.2.0:0= )
+   gcrypt? ( >=dev-libs/libgcrypt-1.6.0:0= )
gme? ( media-libs/game-music-emu:0 )
-   gnutls? ( >=net-libs/gnutls-3.0.20:0 )
+   gnutls? ( >=net-libs/gnutls-3.2.0:0 )
gstreamer? ( >=media-libs/gst-plugins-base-1.4.5:1.0 )
ieee1394? ( >=sys-libs/libraw1394-2.0.1:0 
>=sys-libs/libavc1394-0.5.3:0 )
-   jack? ( >=media-sound/jack-audio-connection-kit-0.99.0-r1:0 )
+   jack? ( >=media-sound/jack-audio-connection-kit-0.120.1:0 )
jpeg? ( virtual/jpeg:0 )
kate? ( >=media-libs/libkate-0.3:0 )
libass? ( >=media-libs/libass-0.9.8:0 media-libs/fontconfig:1.0 
)
@@ -117,13 +117,13 @@ RDEPEND="
opus? ( >=media-libs/opus-1.0.3:0 )
png? ( media-libs/libpng:0= sys-libs/zlib:0 )
postproc? (
-   !libav? ( >=media-video/ffmpeg-2.2:0= )
+   !libav? ( >=media-video/ffmpeg-3.1.3:0= )
libav? ( media-libs/libpostproc:0= )
)
projectm? ( media-libs/libprojectm:0 media-fonts/dejavu:0 )
pulseaudio? ( >=media-sound/pulseaudio-1:0 )
qt4? ( >=dev-qt/qtgui-4.6:4 >=dev-qt/qtcore-4.6:4 )
-   qt5? ( >=dev-qt/qtgui-5.1:5 >=dev-qt/qtcore-5.1:5 
>=dev-qt/qtwidgets-5.1:5  >=dev-qt/qtx11extras-5.1:5 )
+   qt5? ( >=dev-qt/qtgui-5.2:5 >=dev-qt/qtcore-5.2:5 
>=dev-qt/qtwidgets-5.2:5  >=dev-qt/qtx11extras-5.2:5 )
rdp? ( >=net-misc/freerdp-1.0.1:0= )
samba? ( || ( >=net-fs/samba-3.4.6:0[smbclient] 
>=net-fs/samba-

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

2016-10-18 Thread Amy Winston
commit: 95082fdc9d490326ba3dc1b12a0e7f599836c494
Author: Amy Winston  gentoo  org>
AuthorDate: Tue Oct 18 17:41:03 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Tue Oct 18 17:41:03 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95082fdc

dev-db/postgis: remove invalid dependency

Package-Manager: portage-2.2.28

 dev-db/postgis/postgis-2.1.1.ebuild | 3 +--
 dev-db/postgis/postgis-2.1.8.ebuild | 3 +--
 dev-db/postgis/postgis-.ebuild  | 3 +--
 3 files changed, 3 insertions(+), 6 deletions(-)

diff --git a/dev-db/postgis/postgis-2.1.1.ebuild 
b/dev-db/postgis/postgis-2.1.1.ebuild
index b502395..4126a6d 100644
--- a/dev-db/postgis/postgis-2.1.1.ebuild
+++ b/dev-db/postgis/postgis-2.1.1.ebuild
@@ -3,7 +3,7 @@
 # $Id$
 
 EAPI="5"
-POSTGRES_COMPAT=( 9.{0,1,2,3,4} )
+POSTGRES_COMPAT=( 9.{1,2,3,4} )
 
 inherit autotools eutils versionator
 
@@ -25,7 +25,6 @@ RDEPEND="
dev-db/postgresql:9.3[server]
dev-db/postgresql:9.2[server]
dev-db/postgresql:9.1[server]
-   dev-db/postgresql:9.0[server]
)


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

2016-10-18 Thread Amy Winston
commit: f75d5c71fc242ba4f13793edeebf5c99225adb93
Author: Chris Mayo  gmail  com>
AuthorDate: Tue Oct 11 17:28:06 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Tue Oct 18 17:33:33 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f75d5c71

dev-db/postgis: fix URL of online manual in elog

Gentoo-Bug: https://bugs.gentoo.org/573812
Closes: #2537

Package-Manager: portage-2.3.0

 dev-db/postgis/postgis-2.2.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-db/postgis/postgis-2.2.2.ebuild 
b/dev-db/postgis/postgis-2.2.2.ebuild
index 8a0e5c7..9d93dd3 100644
--- a/dev-db/postgis/postgis-2.2.2.ebuild
+++ b/dev-db/postgis/postgis-2.2.2.ebuild
@@ -141,5 +141,5 @@ pkg_postinst() {
postgresql-config update
 
elog "To finish installing PostGIS, follow the directions detailed at:"
-   elog 
"http://postgis.net/docs/manual-${MY_PV}/postgis_installation.html#create_new_db_extensions;
+   elog 
"http://postgis.net/docs/manual-${PGIS}/postgis_installation.html#create_new_db_extensions;
 }



[gentoo-commits] repo/gentoo:master commit in: dev-tcltk/expect/files/

2016-10-14 Thread Amy Winston
commit: de3fff546778cffaf9e8fc53094a3e446aaa6d69
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Thu Sep 29 16:48:09 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Fri Oct 14 17:34:14 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de3fff54

dev-tcltk/expect: remove unused patches

 dev-tcltk/expect/files/expect-5.39.0-libdir.patch  |  11 -
 .../expect-5.43.0-avoid-tcl-internals-1.patch  | 100 
 dev-tcltk/expect/files/expect-5.43.0-darwin.patch  |  11 -
 .../files/expect-5.43.0-missing-includes.patch |  44 --
 .../expect/files/expect-5.43.0-multilib.patch  |  11 -
 dev-tcltk/expect/files/expect.m4   | 609 -
 6 files changed, 786 deletions(-)

diff --git a/dev-tcltk/expect/files/expect-5.39.0-libdir.patch 
b/dev-tcltk/expect/files/expect-5.39.0-libdir.patch
deleted file mode 100644
index 061db83..
--- a/dev-tcltk/expect/files/expect-5.39.0-libdir.patch
+++ /dev/null
@@ -1,11 +0,0 @@
 expect-5.39/Makefile.in.libdir 2003-07-30 00:46:51.0 +0200
-+++ expect-5.39/Makefile.in2003-11-17 17:54:52.0 +0100
-@@ -316,7 +316,7 @@
- CFLAGS_INT = $(MH_CFLAGS) $(CPPFLAGS) $(XCFLAGS)
- 
- LIB_INSTALL_DIR = $(tcl_libdir)
--LIB_RUNTIME_DIR = $(tcl_libdir)
-+LIB_RUNTIME_DIR = $(subst $(INSTALL_ROOT),,$(tcl_libdir))
- # I don't understand why Tcl splits these up, but it does.  LIB_RUNTIME_DIR
- # can appear as part of the LD_SEARCH_FLAGS inherited by configure.
- 

diff --git a/dev-tcltk/expect/files/expect-5.43.0-avoid-tcl-internals-1.patch 
b/dev-tcltk/expect/files/expect-5.43.0-avoid-tcl-internals-1.patch
deleted file mode 100644
index 517fe93..
--- a/dev-tcltk/expect/files/expect-5.43.0-avoid-tcl-internals-1.patch
+++ /dev/null
@@ -1,100 +0,0 @@
-Submitted By: Bryan Kadzban <br...@kadzban.is-a-geek.net>
-Date: 2008-01-12
-Initial Package Version: 5.43
-Upstream status: Not Submitted - Test Version
-Origin: LFS ticket 2126 (http://wiki.linuxfromscratch.org/lfs/ticket/2126)
-Description: Removes references to functions that Tcl 8.5 no longer exposes.
-
-diff -Naur expect-5.43/exp_command.c expect-5.43-patched/exp_command.c
 expect-5.43/exp_command.c  2004-08-20 13:18:01.0 -0400
-+++ expect-5.43-patched/exp_command.c  2008-01-12 11:42:45.0 -0500
-@@ -2265,6 +2265,8 @@
-   /*NOTREACHED*/
- }
- 
-+static struct exp_cmd_data cmd_data[];
-+
- /*ARGSUSED*/
- static int
- Exp_CloseObjCmd(clientData, interp, objc, objv)
-@@ -2311,12 +2313,23 @@
-   /* Historical note: we used "close"  long before there was a */
-   /* Tcl builtin by the same name. */
- 
-+  /* The code that registered this function as the handler for */
-+  /* the "close" command stored away the old handler in the */
-+  /* exp_cmd_data for the "close" command. */
-+
-+  struct exp_cmd_data *cmd_ptr;
-   Tcl_CmdInfo info;
-+
-+  for(cmd_ptr = _data[0]; cmd_ptr->name; cmd_ptr++) {
-+  if(strncmp(cmd_ptr->name, "close", 5) == 0)
-+  break;
-+  }
-+
-   Tcl_ResetResult(interp);
-   if (0 == Tcl_GetCommandInfo(interp,"close",)) {
-   info.clientData = 0;
-   }
--  return(Tcl_CloseObjCmd(info.clientData,interp,objc_orig,objv_orig));
-+  
return(cmd_ptr->old_objProc(info.clientData,interp,objc_orig,objv_orig));
- }
- 
- if (chanName) {
-@@ -2961,7 +2974,10 @@
- /* if successful (i.e., TCL_RETURN is returned) */
- /* modify the result, so that we will handle it specially */
- 
--int result = Tcl_ReturnObjCmd(clientData,interp,objc,objv);
-+Tcl_CmdInfo info;
-+Tcl_GetCommandInfo(interp, "return", );
-+
-+int result = info.objProc(clientData,interp,objc,objv);
- if (result == TCL_RETURN)
- result = EXP_TCL_RETURN;
- return result;
-@@ -3062,8 +3078,7 @@
- 
-   for (;c->name;c++) {
-   /* if already defined, don't redefine */
--  if ((c->flags & EXP_REDEFINE) ||
--  !(Tcl_FindHashEntry(>cmdTable,c->name) ||
-+  if (!(Tcl_FindHashEntry(>cmdTable,c->name) ||
- Tcl_FindHashEntry(>cmdTable,c->name))) {
-   if (c->objproc)
-   Tcl_CreateObjCommand(interp,c->name,
-@@ -3072,6 +3087,21 @@
-   Tcl_CreateCommand(interp,c->name,c->proc,
- c->data,exp_deleteProc);
-   }
-+  else if (c->flags & EXP_REDEFINE) { /* unless the REDEFINE flag 
is present */
-+  Tcl_CmdInfo info;
-+
-+  if (Tcl_GetCommandInfo(interp, c->name, )) {
-+  c->old_proc = info.proc;
-+  c->old_objProc  = info.objPr

[gentoo-commits] repo/gentoo:master commit in: dev-tcltk/blt/files/

2016-10-14 Thread Amy Winston
commit: 22a4a999c93f7ef4acb01f7c90f28d66849970aa
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Thu Sep 29 16:45:21 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Fri Oct 14 17:34:14 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22a4a999

dev-tcltk/blt: remove unused patch/file

 dev-tcltk/blt/files/blt2.4z-install.diff | 26 --
 dev-tcltk/blt/files/pkgIndex.tcl |  2 --
 2 files changed, 28 deletions(-)

diff --git a/dev-tcltk/blt/files/blt2.4z-install.diff 
b/dev-tcltk/blt/files/blt2.4z-install.diff
deleted file mode 100644
index 184d7f7..
--- a/dev-tcltk/blt/files/blt2.4z-install.diff
+++ /dev/null
@@ -1,26 +0,0 @@
 blt2.4z/library/Makefile.in.jj 2003-07-09 20:18:32.0 +0100
-+++ blt2.4z/library/Makefile.in2003-07-09 20:19:06.0 +0100
-@@ -58,7 +58,7 @@
-   for i in $(miscFiles) ; do \
-   $(INSTALL_DATA) $(srcdir)/$$i $(INSTALL_ROOT)$(scriptdir) ; \
-   done 
--  $(INSTALL_DATA) pkgIndex.tcl $(scriptdir)
-+  $(INSTALL_DATA) pkgIndex.tcl $(INSTALL_ROOT)$(scriptdir)
- 
- mkdirs:
-   @for i in $(instdirs) ; do \
 blt2.4z/Makefile.in.jj 2003-07-09 20:19:24.0 +0100
-+++ blt2.4z/Makefile.in2003-07-09 20:19:46.0 +0100
-@@ -47,9 +47,9 @@
-   (cd library; $(MAKE) install)
-   (cd man; $(MAKE) install)
-   (cd demos; $(MAKE) install)
--  $(INSTALL_DATA) $(srcdir)/README $(INSTALL_DIR)$(scriptdir)
--  $(INSTALL_DATA) $(srcdir)/PROBLEMS $(INSTALL_DIR)$(scriptdir)
--  $(INSTALL_DATA) $(srcdir)/NEWS $(INSTALL_DIR)$(scriptdir)
-+  $(INSTALL_DATA) $(srcdir)/README $(INSTALL_ROOT)$(scriptdir)
-+  $(INSTALL_DATA) $(srcdir)/PROBLEMS $(INSTALL_ROOT)$(scriptdir)
-+  $(INSTALL_DATA) $(srcdir)/NEWS $(INSTALL_ROOT)$(scriptdir)
- 
- mkdirs:
-   @for i in $(instdirs) ; do \

diff --git a/dev-tcltk/blt/files/pkgIndex.tcl b/dev-tcltk/blt/files/pkgIndex.tcl
deleted file mode 100644
index 7911d85..
--- a/dev-tcltk/blt/files/pkgIndex.tcl
+++ /dev/null
@@ -1,2 +0,0 @@
-package ifneeded BLT 2.4 [list load [file join $dir .. libBLT24.so]]
-package ifneeded BLTlite 2.4 [list load [file join $dir .. libBLTlite24.so]]



[gentoo-commits] repo/gentoo:master commit in: dev-tcltk/bwidget/files/

2016-10-14 Thread Amy Winston
commit: 268522e1e3b4c84fd2633131a452c096d871b8ee
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Thu Sep 29 16:46:06 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Fri Oct 14 17:34:14 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=268522e1

dev-tcltk/bwidget: remove unused patch

 dev-tcltk/bwidget/files/bwidget-1.9.7-test.patch | 31 
 1 file changed, 31 deletions(-)

diff --git a/dev-tcltk/bwidget/files/bwidget-1.9.7-test.patch 
b/dev-tcltk/bwidget/files/bwidget-1.9.7-test.patch
deleted file mode 100644
index ff293f6..
--- a/dev-tcltk/bwidget/files/bwidget-1.9.7-test.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-Index: tests/entry.test
-==
 tests/entry.test
-+++ tests/entry.test
-@@ -21,11 +21,11 @@
- {-bg #ff #ff non-existent {unknown color name "non-existent"}}
- {-borderwidth 1.3 1 badValue {bad screen distance "badValue"}}
- {-command foo foo {} {}}
- {-disabledforeground blue blue non-existent \
-   {unknown color name "non-existent"}}
--{-editable false false shazbot {expected boolean value but got "shazbot"}}
-+{-editable false 0 shazbot {expected boolean value but got "shazbot"}}
- {-exportselection yes 1 xyzzy {expected boolean value but got "xyzzy"}}
- {-fg #110022 #110022 bogus {unknown color name "bogus"}}
- {-font {Helvetica 12 italic} {Helvetica 12 italic} {} \
-   {font "" doesn't exist}}
- {-foreground #110022 #110022 bogus {unknown color name "bogus"}}
-@@ -63,11 +63,11 @@
- }
- destroy .e
- 
- test Entry-2.1 {Entry} {
- list [catch {Entry} msg] $msg
--} {1 {no value given for parameter "path" to "Entry"}}
-+} {1 {wrong # args: should be "Entry path ?arg ...?"}}
- test Entry-2.2 {Entry} {
- list [catch {Entry gorp} msg] $msg
- } {1 {bad window path name "gorp"}}
- test Entry-2.3 {Entry procedure} {
- Entry .e
-



[gentoo-commits] repo/gentoo:master commit in: dev-tcltk/itcl/files/

2016-10-14 Thread Amy Winston
commit: a72f0d878c7213664e1207938646d38f2bcec4b2
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Thu Sep 29 16:48:37 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Fri Oct 14 17:34:14 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a72f0d87

dev-tcltk/itcl: remove unused patch

 dev-tcltk/itcl/files/3.4_beta1-test.patch | 16 
 1 file changed, 16 deletions(-)

diff --git a/dev-tcltk/itcl/files/3.4_beta1-test.patch 
b/dev-tcltk/itcl/files/3.4_beta1-test.patch
deleted file mode 100644
index 16e7fce..
--- a/dev-tcltk/itcl/files/3.4_beta1-test.patch
+++ /dev/null
@@ -1,16 +0,0 @@
- itcl/tests/ensemble.test |2 +-
- 1 files changed, 1 insertions(+), 1 deletions(-)
-
-diff --git a/itcl/tests/ensemble.test b/itcl/tests/ensemble.test
-index c21531e..c36ad5f 100644
 a/itcl/tests/ensemble.test
-+++ b/itcl/tests/ensemble.test
-@@ -98,7 +98,7 @@ test ensemble-1.10 {part errors are handled gracefully} {
- 
- test ensemble-1.11 {part argument errors are handled gracefully} {
- list [catch "itcl::ensemble test_numbers {part foo {{}} {}}" msg] $msg 
$errorInfo
--} {1 {procedure "foo" has argument with no name} {procedure "foo" has 
argument with no name
-+} {1 {argument with no name} {argument with no name
- while executing
- "part foo {{}} {}"
- ("ensemble" body line 1)



[gentoo-commits] repo/gentoo:master commit in: dev-tcltk/tcllib/files/

2016-10-14 Thread Amy Winston
commit: 7b09fed3fa9eb02da62692c813134de832f3aea3
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Thu Sep 29 16:50:55 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Fri Oct 14 17:34:14 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b09fed3

dev-tcltk/tcllib: remove unused patch

 dev-tcltk/tcllib/files/tcllib-1.14-test.patch | 39 ---
 1 file changed, 39 deletions(-)

diff --git a/dev-tcltk/tcllib/files/tcllib-1.14-test.patch 
b/dev-tcltk/tcllib/files/tcllib-1.14-test.patch
deleted file mode 100644
index b8c83fd..
--- a/dev-tcltk/tcllib/files/tcllib-1.14-test.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-Index: support/devel/sak/validate/syntax.tcl
-==
 support/devel/sak/validate/syntax.tcl
-+++ support/devel/sak/validate/syntax.tcl
-@@ -192,11 +192,13 @@
-   if {[string equal $c rename]}continue
-   if {[string equal $c namespace]} continue
-   interp eval $ip [list ::rename $c {}]
- }
- 
--interp eval $ip [list ::namespace delete ::tcl]
-+if {![package vsatisfies [package present Tcl] 8.6]} {
-+  interp eval $ip [list ::namespace delete ::tcl]
-+}
- interp eval $ip [list ::rename namespace {}]
- interp eval $ip [list ::rename rename{}]
- 
- foreach m {
-   pcx::register unknown
-
-Index: support/devel/sak/validate/testsuites.tcl
-==
 support/devel/sak/validate/testsuites.tcl
-+++ support/devel/sak/validate/testsuites.tcl
-@@ -137,11 +137,13 @@
-   if {[string equal $c rename]}continue
-   if {[string equal $c namespace]} continue
-   interp eval $ip [list ::rename $c {}]
- }
- 
--interp eval $ip [list ::namespace delete ::tcl]
-+if {![package vsatisfies [package present Tcl] 8.6]} {
-+  interp eval $ip [list ::namespace delete ::tcl]
-+}
- interp eval $ip [list ::rename namespace {}]
- interp eval $ip [list ::rename rename{}]
- 
- foreach m {
-   testing unknown useLocal useLocalKeep useAccel



[gentoo-commits] repo/gentoo:master commit in: dev-tcltk/itk/files/

2016-10-14 Thread Amy Winston
commit: 0839dedf4fee4bfb03fe13daf793dc2b52e1e476
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Thu Sep 29 16:50:01 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Fri Oct 14 17:34:14 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0839dedf

dev-tcltk/itk: remove unused patch

 .../itk/files/itk-3.4_pre20090417-install.patch| 103 -
 1 file changed, 103 deletions(-)

diff --git a/dev-tcltk/itk/files/itk-3.4_pre20090417-install.patch 
b/dev-tcltk/itk/files/itk-3.4_pre20090417-install.patch
deleted file mode 100644
index 721bf91..
--- a/dev-tcltk/itk/files/itk-3.4_pre20090417-install.patch
+++ /dev/null
@@ -1,103 +0,0 @@
- itk/Makefile.in |2 +-
- itk/configure.in|   23 +++
- itk/itkConfig.sh.in |   28 +++-
- 3 files changed, 35 insertions(+), 18 deletions(-)
 a/itk/Makefile.in  
-+++ a/itk/Makefile.in  
-@@ -395,7 +395,7 @@ install-lib-binaries:
- fi; \
-   done
-   $(INSTALL_DATA) pkgIndex.tcl $(DESTDIR)$(pkglibdir)
--  : $(INSTALL_DATA) itkConfig.sh $(DESTDIR)$(libdir)
-+  $(INSTALL_DATA) itkConfig.sh $(DESTDIR)$(libdir)
- 
- #
- # Install binary executables (e.g. .exe files)
 a/itk/configure.in 
-+++ a/itk/configure.in 
-@@ -219,6 +219,7 @@ fi
- # library.
- #
- 
-+itk_LIB_FILE=${PKG_LIB_FILE}
- AC_SUBST(itkstub_LIB_FILE)
- AC_SUBST(itk_LIB_FILE)
- 
-@@ -234,6 +235,28 @@ TEA_PROG_TCLSH
- TEA_PROG_WISH
- 
- #
-+# These are for itkConfig.sh
-+#
-+
-+# pkglibdir must be a fully qualified path and (not ${exec_prefix}/lib)
-+eval pkglibdir="${libdir}/${PACKAGE_NAME}${PACKAGE_VERSION}"
-+if test "${TCL_LIB_VERSIONS_OK}" = "ok"; then
-+eval itk_LIB_FLAG="-litk${PACKAGE_VERSION}${DBGX}"
-+else
-+eval itk_LIB_FLAG="-litk`echo ${PACKAGE_VERSION} | tr -d .`${DBGX}"
-+fi
-+itk_BUILD_LIB_SPEC="-L`pwd` ${itk_LIB_FLAG}"
-+itk_LIB_SPEC="-L${pkglibdir} ${itk_LIB_FLAG}"
-+
-+AC_SUBST(itk_BUILD_LIB_SPEC)
-+AC_SUBST(itk_LIB_SPEC)
-+
-+# itk_SRC_DIR must be a fully qualified path
-+eval itk_SRC_DIR="$srcdir"
-+itk_SRC_DIR=`cd "${itk_SRC_DIR}"; pwd`
-+AC_SUBST(itk_SRC_DIR)
-+
-+#
- # Finally, substitute all of the various values into the Makefile.
- #
- 
 a/itk/itkConfig.sh.in  
-+++ a/itk/itkConfig.sh.in  
-@@ -11,30 +11,23 @@ 
- #
- # The information in this file is specific to a single platform.
- 
--# Itcl's version number.
--ITCL_VERSION='@ITCL_VERSION@'
-+# Itk's version number.
-+itk_VERSION='@PACKAGE_VERSION@'
-+ITK_VERSION='@PACKAGE_VERSION@'
- 
- # The name of the Itk library (may be either a .a file or a shared library):
--ITK_LIB_FILE=@ITK_LIB_FILE@
-+itk_LIB_FILE=@itk_LIB_FILE@
-+ITK_LIB_FILE=@itk_LIB_FILE@
- 
- # String to pass to linker to pick up the Itk library from its
- # build directory.
--ITK_BUILD_LIB_SPEC='@ITK_BUILD_LIB_SPEC@'
-+itk_BUILD_LIB_SPEC='@itk_BUILD_LIB_SPEC@'
-+ITK_BUILD_LIB_SPEC='@itk_BUILD_LIB_SPEC@'
- 
- # String to pass to linker to pick up the Itk library from its
- # installed directory.
--ITK_LIB_SPEC='@ITK_LIB_SPEC@'
--
--# The name of the Itk stub library (a .a file):
--ITK_STUB_LIB_FILE=@ITK_STUB_LIB_FILE@
--
--# String to pass to linker to pick up the Itk stub library from its
--# build directory.
--ITK_BUILD_STUB_LIB_SPEC='@ITK_BUILD_STUB_LIB_SPEC@'
--
--# String to pass to linker to pick up the Itk stub library from its
--# installed directory.
--ITK_STUB_LIB_SPEC='@ITK_STUB_LIB_SPEC@'
-+itk_LIB_SPEC='@itk_LIB_SPEC@'
-+ITK_LIB_SPEC='@itk_LIB_SPEC@'
- 
- # Location of the top-level source directories from which [incr Tk]
- # was built.  This is the directory that contains a README file as well
-@@ -42,4 +35,5 @@ ITK_STUB_LIB_SPEC='@ITK_STUB_LIB_SPEC@'
- # compiled in a different place than the directory containing the source
- # files, this points to the location of the sources, not the location
- # where [incr Tk] was compiled.
--ITK_SRC_DIR='@ITK_SRC_DIR@'
-+itk_SRC_DIR='@itk_SRC_DIR@'
-+ITK_SRC_DIR='@itk_SRC_DIR@'



[gentoo-commits] repo/gentoo:master commit in: dev-tcltk/itk/files/

2016-10-14 Thread Amy Winston
commit: 94a97c736d1bdc9a94aec08fdac527702fffa332
Author: Amy Winston  gentoo  org>
AuthorDate: Fri Oct 14 17:37:35 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Fri Oct 14 17:37:35 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94a97c73

dev-tcltk/itk: remove unused patch

Package-Manager: portage-2.2.28

 dev-tcltk/itk/files/itk-4.0.0-install_data.patch | 20 
 1 file changed, 20 deletions(-)

diff --git a/dev-tcltk/itk/files/itk-4.0.0-install_data.patch 
b/dev-tcltk/itk/files/itk-4.0.0-install_data.patch
deleted file mode 100644
index caea5ba..
--- a/dev-tcltk/itk/files/itk-4.0.0-install_data.patch
+++ /dev/null
@@ -1,20 +0,0 @@
 Makefile.in.ori2013-01-10 19:43:56.349623406 +0100
-+++ Makefile.in2013-01-10 19:46:08.634960354 +0100
-@@ -100,10 +100,13 @@
- 
- top_builddir  = .
- 
--INSTALL   = @INSTALL@
--INSTALL_PROGRAM   = @INSTALL_PROGRAM@
--INSTALL_DATA  = @INSTALL_DATA@
--INSTALL_SCRIPT= @INSTALL_SCRIPT@
-+INSTALL_OPTIONS   =
-+INSTALL   = $(SHELL) $(srcdir)/tclconfig/install-sh -c 
${INSTALL_OPTIONS}
-+INSTALL_DATA_DIR = ${INSTALL} -d -m 755
-+INSTALL_PROGRAM   = ${INSTALL} -m 755
-+INSTALL_DATA  = ${INSTALL} -m 444
-+INSTALL_SCRIPT= ${INSTALL_PROGRAM}
-+INSTALL_LIBRARY   = ${INSTALL_DATA}
- 
- PACKAGE_NAME  = @PACKAGE_NAME@
- PACKAGE_VERSION   = @PACKAGE_VERSION@



[gentoo-commits] repo/gentoo:master commit in: dev-tcltk/itk/

2016-10-14 Thread Amy Winston
commit: 9f6da3a6d637ed10b91f5e1c36517bdba62bec3a
Author: Amy Winston  gentoo  org>
AuthorDate: Fri Oct 14 17:46:35 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Fri Oct 14 17:46:35 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f6da3a6

dev-tcltk/itk: specify slot

Package-Manager: portage-2.2.28

 dev-tcltk/itk/itk-3.4.1.ebuild | 4 ++--
 dev-tcltk/itk/itk-4.0.0.ebuild | 4 ++--
 dev-tcltk/itk/itk-4.0.1.ebuild | 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/dev-tcltk/itk/itk-3.4.1.ebuild b/dev-tcltk/itk/itk-3.4.1.ebuild
index 14be48d..03cab3c 100644
--- a/dev-tcltk/itk/itk-3.4.1.ebuild
+++ b/dev-tcltk/itk/itk-3.4.1.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$
 
@@ -19,7 +19,7 @@ LICENSE="BSD"
 KEYWORDS="alpha amd64 ia64 ppc sparc x86 ~amd64-linux ~x86-linux"
 
 DEPEND="
-   

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

2016-10-06 Thread Amy Winston
commit: 8d1e32fb4e43f159997bd163f2747b6f45ea24ae
Author: Amy Winston  gentoo  org>
AuthorDate: Thu Oct  6 06:08:34 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Thu Oct  6 06:11:28 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d1e32fb

media-libs/opencv: update metadata

Package-Manager: portage-2.2.28

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

diff --git a/media-libs/opencv/metadata.xml b/media-libs/opencv/metadata.xml
index dd74a86..fe2e2d9 100644
--- a/media-libs/opencv/metadata.xml
+++ b/media-libs/opencv/metadata.xml
@@ -20,7 +20,7 @@ Example applications of the OpenCV library are Human-Computer 
Interaction (HCI);
 Face Recognition; Gesture Recognition; Motion Tracking, Ego Motion, Motion 
Understanding; Structure From Motion (SFM); and Mobile Robotics.
 

-   Install user contributed scripts from 
opencv_contrib
+   Install user contributed scripts from 
opencv_contrib (Experimental!)
Enable NVIDIA Cuda computations support
Enable usage of dev-cpp/eigen for 
computations
Enable support for sci-libs/gdal 
library



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

2016-10-04 Thread Amy Winston
commit: 155aebfc2c92f6eea70f2ee70c2497ce47b91243
Author: Amy Winston  gentoo  org>
AuthorDate: Tue Oct  4 19:41:00 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Tue Oct  4 19:41:00 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=155aebfc

sci-geosciences/merkaartor: remove old version

Package-Manager: portage-2.2.28

 sci-geosciences/merkaartor/Manifest|  1 -
 .../merkaartor/merkaartor-0.17.2.ebuild| 69 --
 2 files changed, 70 deletions(-)

diff --git a/sci-geosciences/merkaartor/Manifest 
b/sci-geosciences/merkaartor/Manifest
index ed07d72..c012668 100644
--- a/sci-geosciences/merkaartor/Manifest
+++ b/sci-geosciences/merkaartor/Manifest
@@ -1,4 +1,3 @@
-DIST merkaartor-0.17.2.tar.bz2 7138991 SHA256 
425f4facefbf20a3dd1a09ee61ff8a8912482d1a30c957c50869d8ff59ba702a SHA512 
3718131d855ad6ea17537c7879a3249f25f6f5aaaf00e2e59df10c5497a628f0877f85129a209d11dc969b5771598f9989cc6ca3a972dab4c3eaef507784d4ed
 WHIRLPOOL 
22a07736e7da44d3799831352d0e9d323143f228dcf7693b6f90fe101a8a04c74c2c5186db15723902b7dd8aadd93a78547e4622b5238ceb7074027e987b8487
 DIST merkaartor-0.18.1.tar.gz 6459640 SHA256 
e9fa5e30e6392c9224f73e9bb7d17b66c4eb6c023633eb2af0cf58ba8acf684f SHA512 
5ccb2aca7463cd3b31790b0f231cd18f4499b38ec3eb14c3600bdaae880194a71aaf63a2c2f814af6277b1b07fd618b4393309aa5ded375940bd464d1e77d71d
 WHIRLPOOL 
fde10a93510c123f2e1065ad745c3abc7860892c55ed615e75214dd172bfbec1da6f254377cc2d6e0f1df6f9d0680d0f7878ba3224651f5b09c590c335211d9c
 DIST merkaartor-0.18.2.tar.gz 6267866 SHA256 
9e04d554ebc4fd0dd6d0cdf4e50a38135f34ded68f5dfd8cb295e20bf508 SHA512 
577dd88e522eb3f9c21d3588358137dc9419a4d3961299a2162f7edb07e2b95a46d87022b57f0ea190bf9d76a2b1d2aada61c03e952e29c432e250e4686d594d
 WHIRLPOOL 
00ae2547625442697d74084ea939e8d5ca588aeed3d67d82e2239ebfe2bd33703ad51871c4e4e38353c2692eb14a63664af5eddbeed2c6862b20122d0f5fbb0d
 DIST merkaartor-0.18.3.tar.gz 7104234 SHA256 
d6b3e4d982b2c7b82331bc5bc8d993d733c443250f02919c3c4dbd6924e6e947 SHA512 
b34087e0317c196b59dd1de57778b9293d23e4530bd5734661dc2ce53eef85317f512ee446056e045aa8a06146bd029d6274fa5a6f68128db27795d44f0ef915
 WHIRLPOOL 
6013770bfbde1360afc8106bc3ba250228e5c864483efa402033055ab0376c41b661ac188783b79a639ecb1404e38d28dc554923dc5fd17c24cefd3e192d

diff --git a/sci-geosciences/merkaartor/merkaartor-0.17.2.ebuild 
b/sci-geosciences/merkaartor/merkaartor-0.17.2.ebuild
deleted file mode 100644
index 70efafc..
--- a/sci-geosciences/merkaartor/merkaartor-0.17.2.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=4
-
-REDMINE_HASH="253"
-
-inherit multilib qt4-r2 ${SCM_ECLASS}
-
-DESCRIPTION="A Qt4 based map editor for the openstreetmap.org project"
-HOMEPAGE="http://www.merkaartor.be;
-SRC_URI="http://merkaartor.be/attachments/download/${REDMINE_HASH}/merkaartor-${PV}.tar.bz2;
-
-LICENSE="GPL-2"
-SLOT="0"
-
-# Don't move KEYWORDS on the previous line or ekeyword won't work # 399061
-KEYWORDS="~amd64 ~x86"
-
-IUSE="debug exif gps nls libproxy"
-
-QT_MINIMAL="4.7.2"
-DEPEND="
-   >=dev-libs/boost-1.46
-   >=sci-libs/gdal-1.6.0
-   >=sci-libs/proj-4.6
-   >=dev-qt/qtgui-${QT_MINIMAL}:4
-   >=dev-qt/qtsvg-${QT_MINIMAL}:4
-   >=dev-qt/qtwebkit-${QT_MINIMAL}:4
-   exif? ( media-gfx/exiv2 )
-   gps? ( >=sci-geosciences/gpsd-2.92[cxx] )
-   libproxy? ( net-libs/libproxy )
-"
-RDEPEND="${DEPEND}"
-
-DOCS="AUTHORS CHANGELOG HACKING"
-
-PATCHES=(
-   "${FILESDIR}/${PV}-includes.patch"
-   "${FILESDIR}/${PV}-libproxy.patch"
-)
-
-merkaartor_use() {
-   local useflag=${1}
-   [[ -z ${useflag} ]] && die "No useflag specified"
-   if use ${useflag}; then
-   echo "1"
-   else
-   echo "0"
-   fi
-}
-
-src_configure() {
-   local myconf
-   myconf+=" RELEASE=1 ZBAR=0" # deps not in main tree so hard-disable
-   myconf+=" GEOIMAGE=$(${PN}_use exif)"
-   myconf+=" GPSDLIB=$(${PN}_use gps)"
-   myconf+=" LIBPROXY=$(${PN}_use libproxy)"
-   myconf+=" NODEBUG=$(use debug && echo "0" || echo "1")" # inverse logic
-   myconf+=" NOUSEWEBKIT=0" # fails to link if disabled, upstream needs to 
fix
-   myconf+=" TRANSDIR_MERKAARTOR=/usr/share/${PN}/translations 
TRANSDIR_SYSTEM=/usr/share/qt4/translations" #385671
-
-   if use nls; then
-   lrelease src/src.pro || die "lrelease failed"
-   fi
-
-   eqmake4 Merkaartor.pro LIBDIR=/usr/$(get_libdir) PREFIX=/usr/ ${myconf}
-}



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

2016-10-04 Thread Amy Winston
commit: 54f09f4cb10e2a3b439b890618508c178ee05274
Author: mudler  sabayon  org>
AuthorDate: Mon Oct  3 13:51:53 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Tue Oct  4 17:36:30 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54f09f4c

sci-geosciences/merkaartor: version bump to 0.18.3

* migrated to EAPI6
* use COMMON_DEPEND
* Dropped patches of 0.18.2 that were merged by upstream
* added dev-qt/linguist-tools as a qt5 dep to fix compilation issues with qt5 
USE
* updated PLOCALES and dropped l10n_find_plocales_changes maintenance call
* dropped HACKING from DOCS

Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=595480
Package-Manager: portage-2.3.1

 sci-geosciences/merkaartor/Manifest|   1 +
 .../merkaartor/merkaartor-0.18.3.ebuild| 127 +
 2 files changed, 128 insertions(+)

diff --git a/sci-geosciences/merkaartor/Manifest 
b/sci-geosciences/merkaartor/Manifest
index f3b45f6..ed07d72 100644
--- a/sci-geosciences/merkaartor/Manifest
+++ b/sci-geosciences/merkaartor/Manifest
@@ -1,3 +1,4 @@
 DIST merkaartor-0.17.2.tar.bz2 7138991 SHA256 
425f4facefbf20a3dd1a09ee61ff8a8912482d1a30c957c50869d8ff59ba702a SHA512 
3718131d855ad6ea17537c7879a3249f25f6f5aaaf00e2e59df10c5497a628f0877f85129a209d11dc969b5771598f9989cc6ca3a972dab4c3eaef507784d4ed
 WHIRLPOOL 
22a07736e7da44d3799831352d0e9d323143f228dcf7693b6f90fe101a8a04c74c2c5186db15723902b7dd8aadd93a78547e4622b5238ceb7074027e987b8487
 DIST merkaartor-0.18.1.tar.gz 6459640 SHA256 
e9fa5e30e6392c9224f73e9bb7d17b66c4eb6c023633eb2af0cf58ba8acf684f SHA512 
5ccb2aca7463cd3b31790b0f231cd18f4499b38ec3eb14c3600bdaae880194a71aaf63a2c2f814af6277b1b07fd618b4393309aa5ded375940bd464d1e77d71d
 WHIRLPOOL 
fde10a93510c123f2e1065ad745c3abc7860892c55ed615e75214dd172bfbec1da6f254377cc2d6e0f1df6f9d0680d0f7878ba3224651f5b09c590c335211d9c
 DIST merkaartor-0.18.2.tar.gz 6267866 SHA256 
9e04d554ebc4fd0dd6d0cdf4e50a38135f34ded68f5dfd8cb295e20bf508 SHA512 
577dd88e522eb3f9c21d3588358137dc9419a4d3961299a2162f7edb07e2b95a46d87022b57f0ea190bf9d76a2b1d2aada61c03e952e29c432e250e4686d594d
 WHIRLPOOL 
00ae2547625442697d74084ea939e8d5ca588aeed3d67d82e2239ebfe2bd33703ad51871c4e4e38353c2692eb14a63664af5eddbeed2c6862b20122d0f5fbb0d
+DIST merkaartor-0.18.3.tar.gz 7104234 SHA256 
d6b3e4d982b2c7b82331bc5bc8d993d733c443250f02919c3c4dbd6924e6e947 SHA512 
b34087e0317c196b59dd1de57778b9293d23e4530bd5734661dc2ce53eef85317f512ee446056e045aa8a06146bd029d6274fa5a6f68128db27795d44f0ef915
 WHIRLPOOL 
6013770bfbde1360afc8106bc3ba250228e5c864483efa402033055ab0376c41b661ac188783b79a639ecb1404e38d28dc554923dc5fd17c24cefd3e192d

diff --git a/sci-geosciences/merkaartor/merkaartor-0.18.3.ebuild 
b/sci-geosciences/merkaartor/merkaartor-0.18.3.ebuild
new file mode 100644
index ..a906766
--- /dev/null
+++ b/sci-geosciences/merkaartor/merkaartor-0.18.3.ebuild
@@ -0,0 +1,127 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PLOCALES="ar cs de en es et fr hr hu id_ID it ja nl pl pt_BR pt ru sk sv uk vi 
zh_CN zh_TW"
+
+inherit eutils fdo-mime gnome2-utils l10n qmake-utils
+
+DESCRIPTION="A Qt based map editor for the openstreetmap.org project"
+HOMEPAGE="http://www.merkaartor.be https://github.com/openstreetmap/merkaartor;
+SRC_URI="https://github.com/openstreetmap/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="debug exif gps libproxy qrcode qt4 qt5"
+
+REQUIRED_USE="
+   ^^ ( qt4 qt5 )
+   qrcode? ( qt4 )
+"
+
+COMMON_DEPEND="
+   qt4? (
+   dev-qt/qtcore:4
+   dev-qt/qtgui:4
+   dev-qt/qtsvg:4
+   dev-qt/qtwebkit:4
+   )
+   qt5? (
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qtsvg:5
+   dev-qt/qtwebkit:5
+   dev-qt/qtwidgets:5
+   dev-qt/qtxml:5
+   dev-qt/qtconcurrent:5
+   dev-qt/qtprintsupport:5
+   )
+   >=dev-qt/qtsingleapplication-2.6.1[X,qt4?,qt5?]
+   >=sci-libs/gdal-1.6.0
+   >=sci-libs/proj-4.6
+   sys-libs/zlib
+   exif? ( media-gfx/exiv2:= )
+   gps? ( >=sci-geosciences/gpsd-3.13[cxx] )
+   libproxy? ( net-libs/libproxy )
+   qrcode? ( media-gfx/zbar[qt4] )
+"
+
+RDEPEND="${COMMON_DEPEND}"
+
+DEPEND="${COMMON_DEPEND}
+   qt5? ( dev-qt/linguist-tools )
+   virtual/pkgconfig
+"
+
+DOCS=( AUTHORS CHANGELOG )
+
+src_prepare() {
+   my_rm_loc() {
+   sed -i -e "s:../translations/${PN}_${1}.\(ts\|qm\)::" 
src/src.pro || die
+   rm "translations/${PN}_${1}.ts" || die
+   }
+
+   if [[ -n "$(l10n_get_locales)" ]]; then
+   l

[gentoo-commits] repo/gentoo:master commit in: dev-scheme/guile/

2016-10-02 Thread Amy Winston
commit: b8dc70338e454eff146c7c5584a6b053ef37ea6b
Author: Amy Winston  gentoo  org>
AuthorDate: Sun Oct  2 19:29:26 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Sun Oct  2 19:58:33 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8dc7033

dev-scheme/guile: fix cross compiling bug #595942

Package-Manager: portage-2.2.28

 dev-scheme/guile/guile-2.0.12-r1.ebuild | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/dev-scheme/guile/guile-2.0.12-r1.ebuild 
b/dev-scheme/guile/guile-2.0.12-r1.ebuild
index 7a08ad6..a69152a3 100644
--- a/dev-scheme/guile/guile-2.0.12-r1.ebuild
+++ b/dev-scheme/guile/guile-2.0.12-r1.ebuild
@@ -50,6 +50,12 @@ src_configure() {
--disable-rpath \
--enable-posix \
--with-modules \
+   --without-libgmp-prefix \
+   --without-libiconv-prefix \
+   --without-libintl-prefix \
+   --without-libltdl-prefix \
+   --without-libreadline-prefix \
+   --without-libunistring-prefix \
$(use_enable debug guile-debug) \
$(use_enable debug-malloc) \
$(use_enable deprecated) \



[gentoo-commits] repo/gentoo:master commit in: dev-tcltk/tls/files/

2016-10-02 Thread Amy Winston
commit: d2f9bba762fd281da9eabab3cd671bfd42ae8ef6
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Fri Sep 30 15:16:08 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Sun Oct  2 19:58:33 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2f9bba7

dev-tcltk/tls: remove unused patch

Closes: #2438

 dev-tcltk/tls/files/tls-1.5.0-bad-version.patch | 10 --
 1 file changed, 10 deletions(-)

diff --git a/dev-tcltk/tls/files/tls-1.5.0-bad-version.patch 
b/dev-tcltk/tls/files/tls-1.5.0-bad-version.patch
deleted file mode 100644
index a55a00c..
--- a/dev-tcltk/tls/files/tls-1.5.0-bad-version.patch
+++ /dev/null
@@ -1,10 +0,0 @@
-diff -ur tls1.5_org/pkgIndex.tcl.in tls1.5/pkgIndex.tcl.in
 tls1.5_org/pkgIndex.tcl.in 2007-04-05 23:09:11.0 +0200
-+++ tls1.5/pkgIndex.tcl.in 2007-04-05 23:09:40.0 +0200
-@@ -5,5 +5,5 @@
- #replace the original which didn't include the commands from "tls.tcl".
- #
- 
--package ifneeded tls 1.5 "[list load [file join $dir @RELPATH@ 
@tls_LIB_FILE@] ] ; [list source [file join $dir tls.tcl] ]"
-+package ifneeded tls 1.50 "[list load [file join $dir @RELPATH@ 
@tls_LIB_FILE@] ] ; [list source [file join $dir tls.tcl] ]"
- 



[gentoo-commits] repo/gentoo:master commit in: dev-tcltk/tclxml/files/

2016-10-02 Thread Amy Winston
commit: 5fd42f586574979d0005104c606237825510f1a2
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Fri Sep 30 15:10:29 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Sun Oct  2 19:58:33 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5fd42f58

dev-tcltk/tclxml: remove unused patches

 dev-tcltk/tclxml/files/tclxml-3.1-test.patch   | 46 --
 dev-tcltk/tclxml/files/tclxml-3_configure.patch| 74 --
 dev-tcltk/tclxml/files/tclxml-3_include_path.patch | 12 
 3 files changed, 132 deletions(-)

diff --git a/dev-tcltk/tclxml/files/tclxml-3.1-test.patch 
b/dev-tcltk/tclxml/files/tclxml-3.1-test.patch
deleted file mode 100644
index f312f4c..
--- a/dev-tcltk/tclxml/files/tclxml-3.1-test.patch
+++ /dev/null
@@ -1,46 +0,0 @@
-diff -Naur tclxml-3.1.orig/Makefile.in tclxml-3.1/Makefile.in
 tclxml-3.1.orig/Makefile.in2005-05-20 21:02:01.0 +0900
-+++ tclxml-3.1/Makefile.in 2007-12-24 13:28:55.0 +0900
-@@ -267,7 +267,7 @@
- # -testdir $(srcdir)/tea.tests
- 
- test: binaries libraries
--  (cd $(srcdir)/tests; $(bindir)/tclsh8.4 all.tcl)
-+  (cd $(srcdir)/tests; $(bindir)/tclsh all.tcl)
- 
- shell: binaries libraries
-   @$(TCLSH) $(SCRIPT)
-diff -Naur tclxml-3.1.orig/examples/README tclxml-3.1/examples/README
 tclxml-3.1.orig/examples/README2000-12-28 15:07:12.0 +0900
-+++ tclxml-3.1/examples/README 2007-12-24 13:29:21.0 +0900
-@@ -31,7 +31,7 @@
- REC-xml-20001006.xml 
- The W3C XML spec in XML format. A handy file to run xmlwc over
- to test your build. You should get this output with the command
-- tclsh8.3 xmlwc REC-xml-20001006.xml 
-+ tclsh xmlwc REC-xml-20001006.xml 
- :
-  
-2929   14978  116827 REC-xml-20001006.xml 
-diff -Naur tclxml-3.1.orig/examples/flatten.tcl tclxml-3.1/examples/flatten.tcl
 tclxml-3.1.orig/examples/flatten.tcl   2000-05-20 08:56:20.0 
+0900
-+++ tclxml-3.1/examples/flatten.tcl2007-12-24 13:29:29.0 +0900
-@@ -1,6 +1,6 @@
- #!/bin/sh
- # -*- tcl -*- \
--exec tclsh8.3 "$0" "$@"
-+exec tclsh "$0" "$@"
- 
- # flatten.tcl --
- #
-diff -Naur tclxml-3.1.orig/examples/xmlwc tclxml-3.1/examples/xmlwc
 tclxml-3.1.orig/examples/xmlwc 2000-12-28 14:53:38.0 +0900
-+++ tclxml-3.1/examples/xmlwc  2007-12-24 13:29:09.0 +0900
-@@ -1,6 +1,6 @@
- #!/bin/sh
- # \
--exec tclsh8.3 "$0" "$@"
-+exec tclsh "$0" "$@"
- 
- package require xml
- 

diff --git a/dev-tcltk/tclxml/files/tclxml-3_configure.patch 
b/dev-tcltk/tclxml/files/tclxml-3_configure.patch
deleted file mode 100644
index 58de6b1..
--- a/dev-tcltk/tclxml/files/tclxml-3_configure.patch
+++ /dev/null
@@ -1,74 +0,0 @@
-Tkanhs to Matteo Pillon <matteo.pil...@gmail.com>
 tcl.m4 2006-02-24 21:04:37.0 +0100
-+++ tcl.m4.1   2006-02-24 21:04:54.0 +0100
-@@ -588,7 +588,7 @@
-   # results, and the version is kept in special file).
-   
-   if test -r /etc/.relid -a "X`uname -n`" = "X`uname -s`" ; then
--  system=MP-RAS-`awk '{print $3}' /etc/.relid'`
-+  system=MP-RAS-`awk '{print $3}' /etc/.relid`
-   fi
-   if test "`uname -s`" = "AIX" ; then
-   system=AIX-`uname -v`.`uname -r`
-@@ -1454,7 +1454,7 @@
-   # results, and the version is kept in special file).
-   
-   if test -r /etc/.relid -a "X`uname -n`" = "X`uname -s`" ; then
--  system=MP-RAS-`awk '{print $3}' /etc/.relid'`
-+  system=MP-RAS-`awk '{print $3}' /etc/.relid`
-   fi
-   if test "`uname -s`" = "AIX" ; then
-   system=AIX-`uname -v`.`uname -r`
 configure  2004-07-11 05:43:18.0 +0200
-+++ configure.12006-02-24 21:14:04.0 +0100
-@@ -3771,7 +3771,7 @@
-   # results, and the version is kept in special file).
-   
-   if test -r /etc/.relid -a "X`uname -n`" = "X`uname -s`" ; then
--  system=MP-RAS-`awk '{print }' /etc/.relid'`
-+  system=MP-RAS-`awk '{print }' /etc/.relid`
-   fi
-   if test "`uname -s`" = "AIX" ; then
-   system=AIX-`uname -v`.`uname -r`
 tclconfig/tcl.m4   2003-12-03 21:06:35.0 +0100
-+++ tclconfig/tcl.m4.1 2006-02-24 21:16:04.0 +0100
-@@ -759,7 +759,7 @@
-   # results, and the version is kept in special file).
-   
-   if test -r /etc/.relid -a "X`uname -n`" = "X`uname -s`" ; then
--  system=MP-RAS-`awk '{print $3}' /etc/.relid'`
-+  system=MP-RAS-`awk '{print $3}' /etc/.relid`
-   fi
-   if test "`

[gentoo-commits] repo/gentoo:master commit in: dev-tcltk/tkXwin/files/

2016-10-02 Thread Amy Winston
commit: b014ec1778fe9c2d9911b5f070b342c02fcea042
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Fri Sep 30 15:14:59 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Sun Oct  2 19:58:33 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b014ec17

dev-tcltk/tkXwin: remove unused patches

 dev-tcltk/tkXwin/files/1.0-configure.diff  | 12 
 dev-tcltk/tkXwin/files/1.0-configure.patch | 13 -
 2 files changed, 25 deletions(-)

diff --git a/dev-tcltk/tkXwin/files/1.0-configure.diff 
b/dev-tcltk/tkXwin/files/1.0-configure.diff
deleted file mode 100644
index 2509088..
--- a/dev-tcltk/tkXwin/files/1.0-configure.diff
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -Naur tkXwin-1.0.orig/configure tkXwin-1.0/configure
 tkXwin-1.0.orig/configure  2002-08-25 15:29:53.0 +0900
-+++ tkXwin-1.0/configure   2005-06-26 22:17:41.0 +0900
-@@ -3534,7 +3534,7 @@
- 
- 
- 
--PKG_TCL=${TCL_PACKAGE_PATH}/tkXwin
-+PKG_TCL=${TCL_PACKAGE_PATH%% *}/tkXwin
- 
- 
- 

diff --git a/dev-tcltk/tkXwin/files/1.0-configure.patch 
b/dev-tcltk/tkXwin/files/1.0-configure.patch
deleted file mode 100644
index 3a0affc..
--- a/dev-tcltk/tkXwin/files/1.0-configure.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff --git a/configure b/configure
-index d92a1bf..6d75569 100755
 a/configure
-+++ b/configure
-@@ -3534,7 +3534,7 @@ fi
- 
- 
- 
--PKG_TCL=${TCL_PACKAGE_PATH}/tkXwin
-+PKG_TCL=${libdir}/tkXwin
- 
- 
- 



[gentoo-commits] repo/gentoo:master commit in: dev-tcltk/tkzinc/files/

2016-10-02 Thread Amy Winston
commit: 6ccf97f8f5a0da4d683515986c037b04728f5485
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Fri Sep 30 15:15:47 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Sun Oct  2 19:58:33 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ccf97f8

dev-tcltk/tkzinc: remove unused patch

 dev-tcltk/tkzinc/files/3.3.4-ldflags.patch | 14 --
 1 file changed, 14 deletions(-)

diff --git a/dev-tcltk/tkzinc/files/3.3.4-ldflags.patch 
b/dev-tcltk/tkzinc/files/3.3.4-ldflags.patch
deleted file mode 100644
index 6f4264d..
--- a/dev-tcltk/tkzinc/files/3.3.4-ldflags.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-diff --git a/tclconfig/tcl.m4 b/tclconfig/tcl.m4
-index ff26a0f..faba464 100644
 a/tclconfig/tcl.m4
-+++ b/tclconfig/tcl.m4
-@@ -1447,7 +1447,8 @@ dnl AC_CHECK_TOOL(AR, ar)
-   # get rid of the warnings.
-   #CFLAGS_OPTIMIZE="${CFLAGS_OPTIMIZE} -D__NO_STRING_INLINES 
-D__NO_MATH_INLINES"
- 
--  SHLIB_LD="${CC} -shared"
-+  # TEA specific: use LDFLAGS_DEFAULT instead of LDFLAGS
-+  SHLIB_LD='${CC} -shared ${CFLAGS} ${LDFLAGS_DEFAULT} ${LDFLAGS}'
-   DL_OBJS="tclLoadDl.o"
-   DL_LIBS="-ldl"
-   LDFLAGS="$LDFLAGS -Wl,--export-dynamic"



[gentoo-commits] repo/gentoo:master commit in: dev-tcltk/tclx/files/

2016-10-02 Thread Amy Winston
commit: 7a34c6d926ff99d14fd331703bfefdb8b2ae2e5d
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Fri Sep 30 15:09:15 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Sun Oct  2 19:58:33 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a34c6d9

dev-tcltk/tclx: remove unused patch

 dev-tcltk/tclx/files/tclx-8.4-relid.patch | 31 ---
 1 file changed, 31 deletions(-)

diff --git a/dev-tcltk/tclx/files/tclx-8.4-relid.patch 
b/dev-tcltk/tclx/files/tclx-8.4-relid.patch
deleted file mode 100644
index 45fe687..
--- a/dev-tcltk/tclx/files/tclx-8.4-relid.patch
+++ /dev/null
@@ -1,31 +0,0 @@
 tclx8.4/configure.relid2006-02-03 16:13:25.0 -0500
-+++ tclx8.4/configure  2006-02-03 16:13:33.0 -0500
-@@ -6999,7 +6999,7 @@
-   # results, and the version is kept in special file).
- 
-   if test -r /etc/.relid -a "X`uname -n`" = "X`uname -s`" ; then
--  system=MP-RAS-`awk '{print }' /etc/.relid'`
-+  system=MP-RAS-`awk '{print }' /etc/.relid`
-   fi
-   if test "`uname -s`" = "AIX" ; then
-   system=AIX-`uname -v`.`uname -r`
 tclx8.4/tclconfig/tcl.m4.relid 2006-02-03 16:13:43.0 -0500
-+++ tclx8.4/tclconfig/tcl.m4   2006-02-03 16:13:57.0 -0500
-@@ -859,7 +859,7 @@
-   # results, and the version is kept in special file).
-   
-   if test -r /etc/.relid -a "X`uname -n`" = "X`uname -s`" ; then
--  system=MP-RAS-`awk '{print $3}' /etc/.relid'`
-+  system=MP-RAS-`awk '{print $3}' /etc/.relid`
-   fi
-   if test "`uname -s`" = "AIX" ; then
-   system=AIX-`uname -v`.`uname -r`
-@@ -2302,7 +2302,7 @@
-   # results, and the version is kept in special file).
-   
-   if test -r /etc/.relid -a "X`uname -n`" = "X`uname -s`" ; then
--  system=MP-RAS-`awk '{print $3}' /etc/.relid'`
-+  system=MP-RAS-`awk '{print $3}' /etc/.relid`
-   fi
-   if test "`uname -s`" = "AIX" ; then
-   system=AIX-`uname -v`.`uname -r`



[gentoo-commits] repo/gentoo:master commit in: dev-tcltk/tdom/files/

2016-10-02 Thread Amy Winston
commit: 4aaec36f0eb3afd0ce61d696016967d964a59db2
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Fri Sep 30 15:11:58 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Sun Oct  2 19:58:33 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4aaec36f

dev-tcltk/tdom: remove unused patches

 dev-tcltk/tdom/files/tdom-0.8.2-expat.patch  | 83 
 dev-tcltk/tdom/files/tdom-0.8.2-soname.patch | 26 -
 2 files changed, 109 deletions(-)

diff --git a/dev-tcltk/tdom/files/tdom-0.8.2-expat.patch 
b/dev-tcltk/tdom/files/tdom-0.8.2-expat.patch
deleted file mode 100644
index cdcbb10..
--- a/dev-tcltk/tdom/files/tdom-0.8.2-expat.patch
+++ /dev/null
@@ -1,83 +0,0 @@
-Source: 
http://download.opensuse.org/repositories/openSUSE:/11.0/standard/src/tdom-0.8.2-50.1.src.rpm
-Index: Makefile.in
-
 configure.in
-+++ configure.in
-@@ -72,6 +72,7 @@
- #
- 
- TDOM_PATH_AOLSERVER
-+TDOM_PATH_EXPAT
- 
- #---
- # __CHANGE__
-@@ -83,10 +84,7 @@
- # and PKG_TCL_SOURCES.
- #---
- 
--TEA_ADD_SOURCES([expat/xmlrole.c \
-- expat/xmltok.c  \
-- expat/xmlparse.c\
-- generic/xmlsimple.c \
-+TEA_ADD_SOURCES([generic/xmlsimple.c \
-  generic/utf8conv.c  \
-  generic/dom.c   \
-  generic/domalloc.c  \
-@@ -100,7 +98,7 @@
-  generic/tclexpat.c  \
-  generic/tdomStubInit.c])
- TEA_ADD_HEADERS([generic/tdom.h])
--TEA_ADD_INCLUDES([-I${srcdir}/generic -I${srcdir}/expat ${AOL_INCLUDES}])
-+TEA_ADD_INCLUDES([-I${srcdir}/generic ${AOL_INCLUDES}])
- TEA_ADD_LIBS([${AOL_LIBS}])
- TEA_ADD_CFLAGS([])
- TEA_ADD_STUB_SOURCES([generic/tdomStubLib.c])
 tdom.m4
-+++ tdom.m4
-@@ -215,6 +215,46 @@
- fi
- ])
- 
-+
-+AC_DEFUN(TDOM_PATH_EXPAT, [
-+AC_MSG_CHECKING([for expat])
-+AC_ARG_WITH(expat, 
-+AC_HELP_STRING([--with-expat],
-+[directory with expat installation]), , [with_expat=no])
-+
-+AC_CACHE_VAL(ac_cv_c_expat,[
-+case $with_expat in
-+  no) ;;
-+  yes)
-+  for f in /usr/local /usr; do
-+  if test -f "$f/include/expat.h" ; then
-+  ac_cv_c_expat=`(cd $f; pwd)`
-+  break
-+  fi
-+  done
-+  ;;
-+  *)
-+  if test -f "$with_expat/include/expat.h"; then
-+  ac_cv_c_expat=`(cd $with_expat; pwd)`
-+  else
-+  AC_MSG_ERROR([${with_expat} directory doesn't contain expat.h])
-+  fi
-+esac
-+])
-+if test x"${ac_cv_c_expat}" = x ; then
-+AC_MSG_RESULT([using local copy])
-+  TEA_ADD_SOURCES([expat/xmlrole.c \
-+   expat/xmltok.c  \
-+   expat/xmlparse.c])
-+  TEA_ADD_INCLUDES([-I${srcdir}/expat])
-+else
-+AC_MSG_RESULT([${ac_cv_c_expat}])
-+  TEA_ADD_INCLUDES(${ac_cv_c_expat}/include)
-+  TEA_ADD_LIBS([-lexpat])
-+fi
-+])
-+
-+
- #
- # TDOM_PATH_CONFIG --
- #

diff --git a/dev-tcltk/tdom/files/tdom-0.8.2-soname.patch 
b/dev-tcltk/tdom/files/tdom-0.8.2-soname.patch
deleted file mode 100644
index 3f0bc7e..
--- a/dev-tcltk/tdom/files/tdom-0.8.2-soname.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-diff --git a/Makefile.in b/Makefile.in
-index d995328..5c17e11 100644
 a/Makefile.in
-+++ b/Makefile.in
-@@ -108,7 +108,7 @@ CFLAGS_DEFAULT = @CFLAGS_DEFAULT@
- CFLAGS_WARNING= @CFLAGS_WARNING@
- CLEANFILES= @CLEANFILES@
- EXEEXT= @EXEEXT@
--LDFLAGS_DEFAULT   = @LDFLAGS_DEFAULT@
-+LDFLAGS_DEFAULT   = @LDFLAGS_DEFAULT@ 
-Wl,-soname,libdom$(PACKAGE_VERSION).so
- MAKE_LIB  = @MAKE_LIB@
- MAKE_SHARED_LIB   = @MAKE_SHARED_LIB@
- MAKE_STATIC_LIB   = @MAKE_STATIC_LIB@
-diff --git a/extensions/tnc/Makefile.in b/extensions/tnc/Makefile.in
-index f8a332c..01e0ef0 100644
 a/extensions/tnc/Makefile.in
-+++ b/extensions/tnc/Makefile.in
-@@ -98,7 +98,7 @@ CFLAGS_DEFAULT   = @CFLAGS_DEFAULT@
- CFLAGS_WARNING= @CFLAGS_WARNING@
- CLEANFILES= @CLEANFILES@
- EXEEXT= @EXEEXT@
--LDFLAGS_DEFAULT   = @LDFLAGS_DEFAULT@
-+LDFLAGS_DEFAULT   = @LDFLAGS_DEFAULT@ 
-Wl,-soname,libtnc$(PACKAGE_VERSION).so
- MAKE_LIB  = @MAKE_LIB@
- MAKE_SHARED_LIB   = @MAKE_SHARED_LIB@
- MAKE_STATIC_LIB   = @MAKE_STATIC_LIB@



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

2016-10-02 Thread Amy Winston
commit: ec9c78f324958774c32fd2ef4e9595bf0b9531bf
Author: Amy Winston  gentoo  org>
AuthorDate: Sun Oct  2 17:40:30 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Sun Oct  2 17:40:30 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec9c78f3

media-libs/opencv: add gles patch bug #554478

Package-Manager: portage-2.2.28

 media-libs/opencv/opencv-2.4.12-r1.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/media-libs/opencv/opencv-2.4.12-r1.ebuild 
b/media-libs/opencv/opencv-2.4.12-r1.ebuild
index c18d7de..16ab06a 100644
--- a/media-libs/opencv/opencv-2.4.12-r1.ebuild
+++ b/media-libs/opencv/opencv-2.4.12-r1.ebuild
@@ -87,6 +87,7 @@ PATCHES=(
"${FILESDIR}/${PN}-2.4.8-javamagic.patch"
"${FILESDIR}/${PN}-2.4.9-cuda-pkg-config.patch"
"${FILESDIR}/${P}-git-autodetect.patch"
+"${FILESDIR}/${PN}-3.0.0-gles.patch"
)
 
 pkg_setup() {



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

2016-10-02 Thread Amy Winston
commit: 87938d8f6587cdbde7ab713cad2f2692682e2633
Author: Amy Winston  gentoo  org>
AuthorDate: Sun Oct  2 11:48:39 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Sun Oct  2 11:48:39 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=87938d8f

app-text/sigil: fix dep bug #594886. By arthurzam

Package-Manager: portage-2.2.28

 app-text/sigil/sigil-0.9.5-r2.ebuild | 2 +-
 app-text/sigil/sigil-0.9.6.ebuild| 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-text/sigil/sigil-0.9.5-r2.ebuild 
b/app-text/sigil/sigil-0.9.5-r2.ebuild
index 911c27f..59ea345 100644
--- a/app-text/sigil/sigil-0.9.5-r2.ebuild
+++ b/app-text/sigil/sigil-0.9.5-r2.ebuild
@@ -39,7 +39,7 @@ RDEPEND="
>=dev-qt/qtprintsupport-5.4:5
>=dev-qt/qtwebkit-5.4:5
>=dev-qt/qtwidgets-5.4:5
-   >=dev-qt/qtwidgets-5.4:5
+   >=dev-qt/qtxmlpatterns-5.4:5
sys-libs/zlib[minizip]
 "
 DEPEND="${RDEPEND}

diff --git a/app-text/sigil/sigil-0.9.6.ebuild 
b/app-text/sigil/sigil-0.9.6.ebuild
index 911c27f..59ea345 100644
--- a/app-text/sigil/sigil-0.9.6.ebuild
+++ b/app-text/sigil/sigil-0.9.6.ebuild
@@ -39,7 +39,7 @@ RDEPEND="
>=dev-qt/qtprintsupport-5.4:5
>=dev-qt/qtwebkit-5.4:5
>=dev-qt/qtwidgets-5.4:5
-   >=dev-qt/qtwidgets-5.4:5
+   >=dev-qt/qtxmlpatterns-5.4:5
sys-libs/zlib[minizip]
 "
 DEPEND="${RDEPEND}



[gentoo-commits] repo/gentoo:master commit in: dev-scheme/guile-cairo/files/

2016-09-29 Thread Amy Winston
commit: ee205a842b4b76a53b001658b15ea5fe3633a8a8
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Wed Sep 28 17:09:20 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Thu Sep 29 17:14:29 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee205a84

dev-scheme/guile-cairo: remove unused patch

 .../files/1.3.90-various-fixes-20070601.patch  | 72 --
 1 file changed, 72 deletions(-)

diff --git a/dev-scheme/guile-cairo/files/1.3.90-various-fixes-20070601.patch 
b/dev-scheme/guile-cairo/files/1.3.90-various-fixes-20070601.patch
deleted file mode 100644
index eb867ff..
--- a/dev-scheme/guile-cairo/files/1.3.90-various-fixes-20070601.patch
+++ /dev/null
@@ -1,72 +0,0 @@
-=== modified file 'ChangeLog'
 ChangeLog  2007-05-18 17:38:56 +
-+++ ChangeLog  2007-05-20 22:36:42 +
-@@ -1,3 +1,15 @@
-+2007-05-21  Andy Wingo  <wi...@pobox.com>
-+
-+  * guile-cairo/guile-cairo-enum-types.h: Include  if
-+  we are wrapping cairo_svg_version_t.
-+
-+2007-05-20  Andy Wingo  <wi...@pobox.com>
-+
-+  * guile-cairo/guile-cairo.c (scm_init_cairo): Add guard against
-+  multiple instantiations.
-+
-+  * guile-cairo/guile-cairo.h: Include cairo.h header.
-+
- 2007-05-18  Andy Wingo  <wi...@pobox.com>
- 
-   * configure.ac: Change version to 1.3.90.
-
-=== modified file 'guile-cairo/guile-cairo-enum-types.h'
 guile-cairo/guile-cairo-enum-types.h   2007-05-18 14:05:17 +
-+++ guile-cairo/guile-cairo-enum-types.h   2007-05-20 22:36:42 +
-@@ -24,6 +24,10 @@
- #ifndef __GUILE_CAIRO_ENUM_TYPES_H__
- #define __GUILE_CAIRO_ENUM_TYPES_H__
- 
-+#if CAIRO_HAS_SVG_SURFACE
-+#include 
-+#endif
-+
- 
- 
- SCM scm_from_cairo_status (cairo_status_t cval);
-
-=== modified file 'guile-cairo/guile-cairo.c'
 guile-cairo/guile-cairo.c  2007-05-18 16:27:47 +
-+++ guile-cairo/guile-cairo.c  2007-05-20 18:32:44 +
-@@ -2281,6 +2281,11 @@
- void
- scm_init_cairo (void)
- {
-+static int initialized = 0;
-+
-+if (initialized)
-+return;
-+
- #ifndef SCM_MAGIC_SNARFER
- #include "guile-cairo.x"
- #endif
-@@ -2288,5 +2293,6 @@
- scm_init_cairo_smob_types ();
- scm_init_cairo_vector_types ();
- scm_init_cairo_enum_types ();
--scm_c_export (NULL);
-+
-+initialized = 1;
- }
-
-=== modified file 'guile-cairo/guile-cairo.h'
 guile-cairo/guile-cairo.h  2007-05-18 11:39:11 +
-+++ guile-cairo/guile-cairo.h  2007-05-20 17:30:53 +
-@@ -24,6 +24,8 @@
- #ifndef __GUILE_CAIRO_H__
- #define __GUILE_CAIRO_H__
- 
-+#include 
-+
- #include 
- #include 
- #include 
-



[gentoo-commits] repo/gentoo:master commit in: dev-scheme/kawa/files/

2016-09-29 Thread Amy Winston
commit: 43c3ba54b340645b86fca9e50ab62f88446e3309
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Wed Sep 28 17:11:14 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Thu Sep 29 17:15:19 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43c3ba54

dev-scheme/kawa: remove unused patch

Closes: #2427

 dev-scheme/kawa/files/kawa-1.9.90.patch | 12 
 1 file changed, 12 deletions(-)

diff --git a/dev-scheme/kawa/files/kawa-1.9.90.patch 
b/dev-scheme/kawa/files/kawa-1.9.90.patch
deleted file mode 100644
index 9466f06..
--- a/dev-scheme/kawa/files/kawa-1.9.90.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -Naur kawa-1.9.90.orig/bin/Makefile.in kawa-1.9.90/bin/Makefile.in
 kawa-1.9.90.orig/bin/Makefile.in   2009-08-08 12:20:49.0 -0300
-+++ kawa-1.9.90/bin/Makefile.in2009-09-21 20:15:06.0 -0300
-@@ -686,7 +686,7 @@
- install-binPROGRAMS: $(bin_PROGRAMS)
-   @$(NORMAL_INSTALL)
-   test -z "$(bindir)" || $(mkdir_p) "$(DESTDIR)$(bindir)"
--@ENABLE_KAWA_FRONTEND_TRUE@   $(INSTALL_PROGRAM_ENV) $(LIBTOOL_INSTALL) 
$(binPROGRAMS_INSTALL) kawa$(EXEEXT) $(DESTDIR)$(bindir)/kawa$(EXEEXT)
-+@ENABLE_KAWA_FRONTEND_TRUE@   $(INSTALL_PROGRAM_ENV) $(LIBTOOL_INSTALL) 
$(binPROGRAMS_INSTALL) ./kawa$(EXEEXT) $(DESTDIR)$(bindir)/kawa$(EXEEXT)
- @WITH_GCJ_DBTOOL_FALSE@@WITH_GCJ_TRUE@$(INSTALL_PROGRAM_ENV) 
$(LIBTOOL_INSTALL) $(binPROGRAMS_INSTALL) kawa-bin$(EXEEXT) 
$(DESTDIR)$(bindir)/kawa-bin$(EXEEXT)
- @ENABLE_SERVLET_TRUE@ $(INSTALL_PROGRAM_ENV) $(LIBTOOL_INSTALL) 
$(binPROGRAMS_INSTALL) cgi-servlet$(EXEEXT) 
$(DESTDIR)$(bindir)/cgi-servlet$(EXEEXT)
- 



[gentoo-commits] repo/gentoo:master commit in: dev-scheme/guile-www/files/

2016-09-29 Thread Amy Winston
commit: f2f05e4239ad1c565e9f82b88532a342f2071ef9
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Wed Sep 28 17:10:44 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Thu Sep 29 17:14:29 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2f05e42

dev-scheme/guile-www: remove unused patches

 .../files/guile-www-2.30-alive.test.patch  | 74 --
 .../files/guile-www-2.30-alive.test2.patch | 51 ---
 2 files changed, 125 deletions(-)

diff --git a/dev-scheme/guile-www/files/guile-www-2.30-alive.test.patch 
b/dev-scheme/guile-www/files/guile-www-2.30-alive.test.patch
deleted file mode 100644
index fdd3b60..
--- a/dev-scheme/guile-www/files/guile-www-2.30-alive.test.patch
+++ /dev/null
@@ -1,74 +0,0 @@
-From f41bf9380f7b08f5e8c07c9c58d66cd5da7bc356 Mon Sep 17 00:00:00 2001
-From: Thien-Thi Nguyen <t...@gnuvola.org>
-Date: Thu, 28 Apr 2011 05:13:52 +
-Subject: [v] Make alive.test avoid (mis-)loading the .scm files, if possible.
-
-Reported by Bernardo Ezequiel Contreras:
-<https://savannah.nongnu.org/bugs/?33175>
-
-* source/alive.test: If guile has ‘%load-extensions’, create a
-preload file that removes ".scm" from it; use that file for
-all invocations; and delete it when done.  If in debug mode,
-display ponderings, as well as ‘guile --version’ output.

-diff --git a/source/ChangeLog b/source/ChangeLog
-index 2b5bd1b..2de79f4 100644
 a/source/ChangeLog
-+++ b/source/ChangeLog
-@@ -1,3 +1,15 @@
-+2011-04-28  Thien-Thi Nguyen  <t...@gnuvola.org>
-+
-+  [v] Make alive.test avoid (mis-)loading the .scm files, if possible.
-+
-+  Reported by Bernardo Ezequiel Contreras:
-+  <https://savannah.nongnu.org/bugs/?33175>
-+
-+  * alive.test: If guile has ‘%load-extensions’, create a
-+  preload file that removes ".scm" from it; use that file for
-+  all invocations; and delete it when done.  If in debug mode,
-+  display ponderings, as well as ‘guile --version’ output.
-+
- 2011-01-24  Thien-Thi Nguyen  <t...@gnuvola.org>
- 
-   Release: 2.29
-diff --git a/source/alive.test b/source/alive.test
-index 3521fcc..76e91c8 100755
 a/source/alive.test
-+++ b/source/alive.test
-@@ -35,6 +35,25 @@ decho ()
- if $debug ; then echo "$1" ; fi
- }
- 
-+decho 'guile:'
-+if $debug ; then ${GUILE-guile} --version ; fi
-+
-+if $guile -c '%load-extensions' >/dev/null 2>&1 ; then
-+preload=alive.preload
-+echo '(set! %load-extensions (delete ".scm" %load-extensions))' > $preload
-+if $debug ; then
-+decho 'preload:'
-+cat $preload
-+decho 'before:'
-+$guile -c '(begin (write %load-extensions) (newline))'
-+fi
-+guile="$guile -l $preload"
-+if $debug ; then
-+decho 'after:'
-+$guile -c '(begin (write %load-extensions) (newline))'
-+fi
-+fi
-+
- decho 'indivdually:'
- { while read m ;
- do
-@@ -48,4 +67,8 @@ all="`cat $all`"
- decho "$guile -c '(use-modules $all)'"
- $guile -c "(use-modules $all)"
- 
-+if [ "$preload" ] ; then rm $preload ; fi
-+
-+exit 0
-+
- # alive.test ends here
---
-cgit v0.9.0.2

diff --git a/dev-scheme/guile-www/files/guile-www-2.30-alive.test2.patch 
b/dev-scheme/guile-www/files/guile-www-2.30-alive.test2.patch
deleted file mode 100644
index 9cf7efe..
--- a/dev-scheme/guile-www/files/guile-www-2.30-alive.test2.patch
+++ /dev/null
@@ -1,51 +0,0 @@
-From cfabb94ca727d63f5712860c3fe4132926e498c9 Mon Sep 17 00:00:00 2001
-From: Thien-Thi Nguyen <t...@gnuvola.org>
-Date: Mon, 02 May 2011 08:32:02 +
-Subject: [v] Refine preload: Prioritize "" instead of deleting ".scm".
-
-The 2011-04-28 change goes too far; it impedes
-loading system modules used by Guile-WWW modules.
-Reported by (Savannah user) vonbecmann:
-<https://savannah.nongnu.org/bugs/?33175>.
-
-* source/alive.test: Don't delete ".scm" from ‘%load-extensions’;
-instead, ensure only that "" is at the beginning of the list.

-diff --git a/source/ChangeLog b/source/ChangeLog
-index 2de79f4..ece831e 100644
 a/source/ChangeLog
-+++ b/source/ChangeLog
-@@ -1,3 +1,15 @@
-+2011-05-02  Thien-Thi Nguyen  <t...@gnuvola.org>
-+
-+  [v] Refine preload: Prioritize "" instead of deleting ".scm".
-+
-+  The 2011-04-28 change goes too far; it impedes
-+  loading system modules used by Guile-WWW modules.
-+  Reported by (Savannah user) vonbecmann:
-+  <https://savannah.nongnu.org/bugs/?33175>.
-+
-+  * alive.test: Don't delete ".scm" from ‘%load-extensions’;
-+  instead, ensure only that "" is at the beginning of the list.
-+
- 2011-04-28  Thien-Thi Nguyen  <t...@gnuvola.org>
- 
-   [v] Make alive.test avoid (mis-)loading the .scm files

[gentoo-commits] repo/gentoo:master commit in: dev-scheme/guile-gnome-platform/files/

2016-09-29 Thread Amy Winston
commit: aafbc8c1ae9fcd1bef32f88873c208edc1f1afb7
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Wed Sep 28 17:10:11 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Thu Sep 29 17:14:29 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aafbc8c1

dev-scheme/guile-gnome-platform: remove unused patches

 .../files/2.15.92-add-atk-overrides.patch  | 12 ---
 .../files/2.15.92-add-cairo-fix-from-bzr.patch | 91 --
 2 files changed, 103 deletions(-)

diff --git 
a/dev-scheme/guile-gnome-platform/files/2.15.92-add-atk-overrides.patch 
b/dev-scheme/guile-gnome-platform/files/2.15.92-add-atk-overrides.patch
deleted file mode 100644
index 6168c79..
--- a/dev-scheme/guile-gnome-platform/files/2.15.92-add-atk-overrides.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -urN guile-gnome-platform-2.15.92.orig/atk/gnome/Makefile.am 
guile-gnome-platform-2.15.92/atk/gnome/Makefile.am
 guile-gnome-platform-2.15.92.orig/atk/gnome/Makefile.am2007-06-01 
13:50:55.0 -0700
-+++ guile-gnome-platform-2.15.92/atk/gnome/Makefile.am 2007-06-01 
13:51:52.0 -0700
-@@ -6,7 +6,7 @@
- 
- if HAVE_PANGO
- guilemodule_DATA += atk.scm
--SUBDIRS += gw
-+SUBDIRS += gw overrides
- endif
- 
- EXTRA_DIST = atk.scm

diff --git 
a/dev-scheme/guile-gnome-platform/files/2.15.92-add-cairo-fix-from-bzr.patch 
b/dev-scheme/guile-gnome-platform/files/2.15.92-add-cairo-fix-from-bzr.patch
deleted file mode 100644
index 030e5c1..
--- a/dev-scheme/guile-gnome-platform/files/2.15.92-add-cairo-fix-from-bzr.patch
+++ /dev/null
@@ -1,91 +0,0 @@
-=== modified file 'ChangeLog'
 ChangeLog  2007-05-24 15:14:46 +
-+++ ChangeLog  2007-05-25 15:49:00 +
-@@ -1,3 +1,16 @@
-+2007-05-25  Andy Wingo  <wi...@pobox.com>
-+
-+  * gnome/gw/cairo-spec.scm: Now that we are actually making a
-+  shlib, init guile-cairo in the shlib instead of in every dependant
-+  wrapset.
-+
-+  * gnome/gw/Makefile.am: I tried really hard to avoid making a
-+  shared library for this g-wrap wrapset, since it is not necessary
-+  at all, but I have failed for the moment: other wrapsets depending
-+  on this one will check to see that something has registered the
-+  "guile-cairo" wrapset with the C g-wrap runtime, which will fail
-+  unless we actually have a shlib that registers the wrapset. Suck.
-+
- 2007-05-24  Andy Wingo  <wi...@pobox.com>
- 
-   * == Released guile-gnome-platform version 2.15.92 ==
-
-=== modified file 'gnome/gw/Makefile.am'
 gnome/gw/Makefile.am   2007-05-20 17:43:35 +
-+++ gnome/gw/Makefile.am   2007-05-25 15:49:00 +
-@@ -1,5 +1,27 @@
- include $(top_srcdir)/common.mk
- 
--guilegwmodule_DATA = cairo-spec.scm
-+guilegwmodule_DATA = cairo-spec.scm cairo.scm
- 
- EXTRA_DIST = cairo-spec.scm
-+
-+CLEANFILES = $(wildcard gnome-*.log)
-+
-+# I wanted to avoid having a cairo shlib, because there is no need, but
-+# fighting g-wrap is too difficult for the moment.
-+
-+guilegnomelib_LTLIBRARIES = libgw-guile-gnome-cairo.la
-+
-+
-+## cairo
-+nodist_libgw_guile_gnome_cairo_la_SOURCES = guile-gnome-gw-cairo.c
-+
-+libgw_guile_gnome_cairo_la_CFLAGS = $(GUILE_GLIB_CFLAGS) $(GLIB_CFLAGS) \
-+  $(AM_CFLAGS) $(GUILE_CAIRO_CFLAGS) $(GUILE_CFLAGS) \
-+  $(G_WRAP_CFLAGS)
-+libgw_guile_gnome_cairo_la_LIBADD = $(GUILE_CAIRO_LIBS) $(GUILE_LIBS) \
-+  $(G_WRAP_LIBS) $(GUILE_GLIB_LIBS)
-+libgw_guile_gnome_cairo_la_LDFLAGS = -module
-+
-+CLEANFILES += $(wildcard guile-gnome-gw-cairo.*) cairo.scm
-+
-+BUILT_SOURCES = guile-gnome-gw-cairo.c
-
-=== modified file 'gnome/gw/cairo-spec.scm'
 gnome/gw/cairo-spec.scm2007-05-20 22:39:45 +
-+++ gnome/gw/cairo-spec.scm2007-05-25 15:49:00 +
-@@ -27,7 +27,7 @@
- (define-module (gnome gw cairo-spec)
-   #:use-module (oop goops)
-   #:use-module (gnome gw support g-wrap)
--  #:use-module (gnome gw support defs)
-+  #:use-module (gnome gw gobject-spec)
-   #:use-module (gnome gw support gobject))
- 
- ;; G-Wrap inelegance
-@@ -116,8 +116,6 @@
- (define-class  ())
- (define-method (global-declarations-cg (ws ) (a 
))
-   '("#include \n"))
--(define-method (initializations-cg (wrapset ) (a 
) err)
--  (list "scm_init_cairo ();\n"))
- 
- (define-class  ()
-   #:id 'gnome-cairo
-@@ -144,6 +142,14 @@
-   #:take "scm_take_cairo_font_options"))
-   (add-type-alias! ws "cairo_font_options_t*" 'cairo-font-options-t))
- 
-+(define-method (global-declarations-cg (ws ))
-+  (list (next-method)
-+"#include \n"))
-+
-+(define-method (initializations-cg (wrapset ) err)
-+  (list (next-method)
-+"scm_init_cairo ();\n"))
-+
- ;; pango-cairo
- ;; cairo_t, cairo_font_options_t
- 
-



[gentoo-commits] repo/gentoo:master commit in: app-emulation/vagrant/

2016-09-27 Thread Amy Winston
commit: d49b89d131b5ef87af37c02f4cb280cf5d339147
Author: Tomas Mozes  gmail  com>
AuthorDate: Fri Sep 16 06:51:49 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Tue Sep 27 14:54:40 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d49b89d1

app-emulation/vagrant: set permissions on authorized_keys, fixes #592996

Closes: #2339
Bugs: #592996

Package-Manager: portage-2.3.0

 .../vagrant/{vagrant-1.8.5.ebuild => vagrant-1.8.5-r1.ebuild} | 4 
 1 file changed, 4 insertions(+)

diff --git a/app-emulation/vagrant/vagrant-1.8.5.ebuild 
b/app-emulation/vagrant/vagrant-1.8.5-r1.ebuild
similarity index 92%
rename from app-emulation/vagrant/vagrant-1.8.5.ebuild
rename to app-emulation/vagrant/vagrant-1.8.5-r1.ebuild
index 52460de..63e8ad6 100644
--- a/app-emulation/vagrant/vagrant-1.8.5.ebuild
+++ b/app-emulation/vagrant/vagrant-1.8.5-r1.ebuild
@@ -72,6 +72,10 @@ all_ruby_prepare() {
 
# fix rvm issue (bug #474476)
epatch "${FILESDIR}"/${PN}-1.8.1-rvm.patch
+
+   # https://github.com/mitchellh/vagrant/issues/7610 (#592996)
+   sed -e 's/bsd/linux/g ; 57i \  chmod 0600 
~/.ssh/authorized_keys' \
+   -i plugins/guests/linux/cap/public_key.rb || die
 }
 
 all_ruby_install() {



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

2016-09-27 Thread Amy Winston
commit: 366480ac81d84673ffbbfcfff277a91d6c6041df
Author: Jonathan Scruggs  gmail  com>
AuthorDate: Thu Sep 22 17:08:23 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Tue Sep 27 14:22:31 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=366480ac

media-libs/opencv: revision bump to 3.1.0-r5

- Feature: added in support for installing the Python module for each
  implementation selected
  Gentoo-Bug: 593504

- Bug fix: under certain conditions the HDF5 library isn't found
  Gentoo-Bug: 588850

- Bug fix: OpenGL needs Qt or Gtk+ otherwise it's disabled

- Misc: cleaned up usex expressions
added qtwidgets depend
moved openmp detection to pkg_pretend as per Gentoo style guidelines

Signed off by Jonathan Scruggs (j.scruggs  gmail.com, irc: Dracwyrm)

 .../files/opencv-contrib-find-hdf5-fix.patch   | 392 +
 media-libs/opencv/opencv-3.1.0-r5.ebuild   | 300 
 2 files changed, 692 insertions(+)

diff --git a/media-libs/opencv/files/opencv-contrib-find-hdf5-fix.patch 
b/media-libs/opencv/files/opencv-contrib-find-hdf5-fix.patch
new file mode 100644
index ..af86cf98
--- /dev/null
+++ b/media-libs/opencv/files/opencv-contrib-find-hdf5-fix.patch
@@ -0,0 +1,392 @@
+diff -purN a/modules/hdf/cmake/FindHDF5.cmake 
b/modules/hdf/cmake/FindHDF5.cmake
+--- a/modules/hdf/cmake/FindHDF5.cmake 1970-01-01 01:00:00.0 +0100
 b/modules/hdf/cmake/FindHDF5.cmake 2015-09-16 17:53:05.0 +0100
+@@ -0,0 +1,379 @@
++#.rst:
++# FindHDF5
++# 
++#
++# Find HDF5, a library for reading and writing self describing array data.
++#
++#
++#
++# This module invokes the HDF5 wrapper compiler that should be installed
++# alongside HDF5.  Depending upon the HDF5 Configuration, the wrapper
++# compiler is called either h5cc or h5pcc.  If this succeeds, the module
++# will then call the compiler with the -show argument to see what flags
++# are used when compiling an HDF5 client application.
++#
++# The module will optionally accept the COMPONENTS argument.  If no
++# COMPONENTS are specified, then the find module will default to finding
++# only the HDF5 C library.  If one or more COMPONENTS are specified, the
++# module will attempt to find the language bindings for the specified
++# components.  The only valid components are C, CXX, Fortran, HL, and
++# Fortran_HL.  If the COMPONENTS argument is not given, the module will
++# attempt to find only the C bindings.
++#
++# On UNIX systems, this module will read the variable
++# HDF5_USE_STATIC_LIBRARIES to determine whether or not to prefer a
++# static link to a dynamic link for HDF5 and all of it's dependencies.
++# To use this feature, make sure that the HDF5_USE_STATIC_LIBRARIES
++# variable is set before the call to find_package.
++#
++# To provide the module with a hint about where to find your HDF5
++# installation, you can set the environment variable HDF5_ROOT.  The
++# Find module will then look in this path when searching for HDF5
++# executables, paths, and libraries.
++#
++# In addition to finding the includes and libraries required to compile
++# an HDF5 client application, this module also makes an effort to find
++# tools that come with the HDF5 distribution that may be useful for
++# regression testing.
++#
++# This module will define the following variables:
++#
++# ::
++#
++#   HDF5_INCLUDE_DIRS - Location of the hdf5 includes
++#   HDF5_INCLUDE_DIR - Location of the hdf5 includes (deprecated)
++#   HDF5_DEFINITIONS - Required compiler definitions for HDF5
++#   HDF5_C_LIBRARIES - Required libraries for the HDF5 C bindings.
++#   HDF5_CXX_LIBRARIES - Required libraries for the HDF5 C++ bindings
++#   HDF5_Fortran_LIBRARIES - Required libraries for the HDF5 Fortran bindings
++#   HDF5_HL_LIBRARIES - Required libraries for the HDF5 high level API
++#   HDF5_Fortran_HL_LIBRARIES - Required libraries for the high level Fortran
++#   bindings.
++#   HDF5_LIBRARIES - Required libraries for all requested bindings
++#   HDF5_FOUND - true if HDF5 was found on the system
++#   HDF5_VERSION - HDF5 version in format Major.Minor.Release
++#   HDF5_LIBRARY_DIRS - the full set of library directories
++#   HDF5_IS_PARALLEL - Whether or not HDF5 was found with parallel IO support
++#   HDF5_C_COMPILER_EXECUTABLE - the path to the HDF5 C wrapper compiler
++#   HDF5_CXX_COMPILER_EXECUTABLE - the path to the HDF5 C++ wrapper compiler
++#   HDF5_Fortran_COMPILER_EXECUTABLE - the path to the HDF5 Fortran wrapper 
compiler
++#   HDF5_DIFF_EXECUTABLE - the path to the HDF5 dataset comparison tool
++
++#=
++# Copyright 2015 Axel Huebl, Helmholtz-Zentrum Dresden - Rossendorf
++# Copyright 2009 Kitware, Inc.
++#
++# Distributed under the OSI-approved BSD License (the "License");
++# see accompanying file Copyright.txt for details.
++#
+

[gentoo-commits] repo/gentoo:master commit in: dev-scheme/guile/, dev-scheme/guile/files/

2016-09-21 Thread Amy Winston
commit: cdf949db050341aec29539c5fb926f60b7fcffad
Author: Amy Winston  gentoo  org>
AuthorDate: Wed Sep 21 17:58:59 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Wed Sep 21 18:01:45 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cdf949db

dev-scheme/guile: add patch for bug #594010

Package-Manager: portage-2.2.28

 ...uile-2.0.12-workaround-ice-ssa-corruption.patch | 64 ++
 dev-scheme/guile/guile-2.0.12-r1.ebuild|  3 +-
 2 files changed, 66 insertions(+), 1 deletion(-)

diff --git 
a/dev-scheme/guile/files/guile-2.0.12-workaround-ice-ssa-corruption.patch 
b/dev-scheme/guile/files/guile-2.0.12-workaround-ice-ssa-corruption.patch
new file mode 100644
index ..54f3158
--- /dev/null
+++ b/dev-scheme/guile/files/guile-2.0.12-workaround-ice-ssa-corruption.patch
@@ -0,0 +1,64 @@
+libguile/vm-i-system.c: workaround ice ssa corruption while compiling with 
option -g -O
+
+While compiling with option -g -O, there was a ssa corruption:
+..
+Unable to coalesce ssa_names 48 and 3476 which are marked as MUST COALESCE.
+sp_48(ab) and  sp_3476(ab)
+guile-2.0.11/libguile/vm-engine.c: In function 'vm_debug_engine':
+guile-2.0.11/libguile/vm.c:673:19: internal compiler error: SSA corruption
+ #define VM_NAME   vm_debug_engine
+   ^
+guile-2.0.11/libguile/vm-engine.c:39:1: note: in expansion of macro 'VM_NAME'
+ VM_NAME (SCM vm, SCM program, SCM *argv, int nargs)
+ ^
+Please submit a full bug report,
+with preprocessed source if appropriate.
+See <http://gcc.gnu.org/bugs.html> for instructions.
+...
+
+Tweak libguile/vm-i-system.c to add boundary value check to workaround it.
+
+Upstream-Status: Pending
+
+Signed-off-by: Hongxu Jia <hongxu@windriver.com>
+
+Fixes Buildroot autobuilder failures on AArch64.
+
+Signed-off-by: Thomas Petazzoni <thomas.petazz...@free-electrons.com>
+---
+ libguile/vm-i-system.c | 20 
+ 1 file changed, 16 insertions(+), 4 deletions(-)
+
+diff --git a/libguile/vm-i-system.c b/libguile/vm-i-system.c
+--- a/libguile/vm-i-system.c
 b/libguile/vm-i-system.c
+@@ -625,10 +625,22 @@ VM_DEFINE_INSTRUCTION (47, bind_optionals_shuffle, 
"bind-optionals/shuffle", 6,
+   /* now shuffle up, from walk to ntotal */
+   {
+ scm_t_ptrdiff nshuf = sp - walk + 1, i;
+-sp = (fp - 1) + ntotal + nshuf;
+-CHECK_OVERFLOW ();
+-for (i = 0; i < nshuf; i++)
+-  sp[-i] = walk[nshuf-i-1];
++/* check the value of nshuf to workaround ice ssa corruption */
++/* while compiling with -O -g */
++if (nshuf > 0)
++{
++  sp = (fp - 1) + ntotal + nshuf;
++  CHECK_OVERFLOW ();
++  for (i = 0; i < nshuf; i++)
++sp[-i] = walk[nshuf-i-1];
++}
++else
++{
++  sp = (fp - 1) + ntotal + nshuf;
++  CHECK_OVERFLOW ();
++  for (i = 0; i < nshuf; i++)
++sp[-i] = walk[nshuf-i-1];
++}
+   }
+   /* and fill optionals & keyword args with SCM_UNDEFINED */
+   while (walk <= (fp - 1) + ntotal)
+-- 
+1.9.1
+

diff --git a/dev-scheme/guile/guile-2.0.12-r1.ebuild 
b/dev-scheme/guile/guile-2.0.12-r1.ebuild
index 35bd1b0..7a08ad6 100644
--- a/dev-scheme/guile/guile-2.0.12-r1.ebuild
+++ b/dev-scheme/guile/guile-2.0.12-r1.ebuild
@@ -31,7 +31,8 @@ DEPEND="${RDEPEND}
 SLOT="12/22" # subslot is soname version
 MAJOR="2.0"
 
-PATCHES=( "${FILESDIR}/${P}-build_includes2.patch" ) #bug 590528 patched by 
upstream second try
+PATCHES=( "${FILESDIR}/${P}-build_includes2.patch"
+ "${FILESDIR}/${P}-workaround-ice-ssa-corruption.patch" ) # includes2 
bug 590528 patched by upstream, bug 594010
 DOCS=( GUILE-VERSION HACKING README )
 
 src_prepare() {



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

2016-09-11 Thread Amy Winston
commit: 4220207b1b8a08c8627ce47465f96c060217c714
Author: Amy Winston  gentoo  org>
AuthorDate: Sun Sep 11 10:16:26 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Sun Sep 11 10:16:26 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4220207b

app-crypt/eid-mw: version bump 4.1.18 bug #593302. Vincent Hardy

Package-Manager: portage-2.2.28

 app-crypt/eid-mw/Manifest |  1 +
 app-crypt/eid-mw/eid-mw-4.1.18.ebuild | 83 +++
 2 files changed, 84 insertions(+)

diff --git a/app-crypt/eid-mw/Manifest b/app-crypt/eid-mw/Manifest
index d02c45b..0d8cca6 100644
--- a/app-crypt/eid-mw/Manifest
+++ b/app-crypt/eid-mw/Manifest
@@ -1,2 +1,3 @@
+DIST eid-mw-4.1.18-v4.1.18.tar.gz 3480541 SHA256 
abc9d3194008f05b2589ddd9a29c45d22d89716bdc8689fcec42b2aa8450ddbf SHA512 
18825a06007f7c07609cee034896ebf64b589200e04b72fece2bd65004a738c01cf64475d59f2c94b7242aa1adfc433bf4af6cf8b5d809746f3e9357ac27b98c
 WHIRLPOOL 
584817aff81a1e0b1af24e5b259fa7e40b5a43b27be701242430cdc480d8ba57205faeba6fb787f1321e02916e6f3efa722e01609151fa3798b8e37b13cb159e
 DIST eid-mw-4.1.4-v4.1.4.tar.gz 3475913 SHA256 
2996960ea92504c7cee1953ccf4520ba78979c7771645e2b2c1207f94be0a308 SHA512 
efcc4dbd0fa383896df9f5a7492b18beb5259cfa368a919ae18bd996e5976a67d0570c0fbccd5ab38ea95c31f48b92c145c526aa59866217a418a80a550d502f
 WHIRLPOOL 
11e35b3649a0c3bd40e4c901ba4d922305dc2b4098018bd018ee71b963b08898e6295e4f71cb7180b0fc8e64d1afe01ce49bcaa36a60c065c2de84b81d19e398
 DIST eid-mw-4.1.9-v4.1.9.tar.gz 3475708 SHA256 
0c46c73b805884dd4ae739eb6025c137c1055ad119eac1ab37cb83eb32d92953 SHA512 
bc61b3f212bfedf6f47f2841bc6c9b1198be5e3c7b382e3e28635c9e6f5c4ed8ccb118b105f668969fba31e49750cb1c5b129cd5b67a2725af122a8eae491b1c
 WHIRLPOOL 
06b1f9780e984ac6c562bacab03936cd759ea1fce45687f09ae314d4fa77edce02c7ba4db5a9bc3fd739392f8b7b182b19b2734c1d21d63f6995c3cd572695d9

diff --git a/app-crypt/eid-mw/eid-mw-4.1.18.ebuild 
b/app-crypt/eid-mw/eid-mw-4.1.18.ebuild
new file mode 100644
index ..815d376
--- /dev/null
+++ b/app-crypt/eid-mw/eid-mw-4.1.18.ebuild
@@ -0,0 +1,83 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit eutils autotools mozextension multilib
+
+if [[ ${PV} == "" ]] ; then
+   EGIT_REPO_URI="git://github.com/Fedict/${PN}.git
+   https://github.com/Fedict/${PN}.git;
+   inherit git-2
+   SRC_URI=""
+else
+   MY_P="${P}-v${PV}"
+   SRC_URI="https://downloads.services.belgium.be/eid/${MY_P}.tar.gz;
+   KEYWORDS="~x86 ~amd64 ~arm"
+   S="${WORKDIR}/${MY_P}"
+fi
+
+SLOT="0"
+LICENSE="LGPL-3"
+DESCRIPTION="Electronic Identity Card middleware supplied by the Belgian 
Federal Government"
+
+HOMEPAGE="http://eid.belgium.be;
+
+IUSE="+gtk +xpi +dialogs"
+
+REQUIRED_USE="
+   dialogs? ( gtk )"
+
+RDEPEND="gtk? ( x11-libs/gtk+:= )
+   >=sys-apps/pcsc-lite-1.2.9
+   xpi? ( || ( >=www-client/firefox-bin-3.6.24
+   >=www-client/firefox-3.6.20 ) )
+   !app-misc/beid-runtime"
+
+DEPEND="${RDEPEND}
+   virtual/pkgconfig"
+
+src_prepare() {
+   use gtk || epatch "${FILESDIR}"/gtk_not_required_4.1.4.patch
+
+   if [[ ${PV} == "" ]] ; then
+   # Only in current git. Hopefully, in next release.
+   sed -i -e 's:/beid/rsaref220:/rsaref220:' configure.ac || die
+   sed -i -e 's:/beid::' cardcomm/pkcs11/src/libbeidpkcs11.pc.in 
|| die
+   fi
+
+   if [[ ${PV} == "" ]] || ! use gtk ; then
+   eautoreconf
+   fi
+}
+
+src_configure() {
+   econf \
+   $(use_enable dialogs) \
+   --with-gnu-ld \
+   --disable-static \
+   --disable-signed
+}
+
+src_install() {
+   emake DESTDIR="${D}" install
+
+   if [[ ${PV} != "" ]] ; then
+   # Automatically done in current git. Hopefully, in next release.
+   rm doc/sdk/include/rsaref220/win32.h || die
+   doheader -r doc/sdk/include/*
+   fi
+   if use xpi; then
+   declare MOZILLA_FIVE_HOME
+   if has_version '>=www-client/firefox-3.6.20'; then
+   MOZILLA_FIVE_HOME="/usr/$(get_libdir)/firefox"
+   xpi_install 
"${D}/usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/belgium...@eid.belgium.be"
+   fi
+   if has_version '>=www-client/firefox-bin-3.6.24'; then
+   MOZILLA_FIVE_HOME="/opt/firefox"
+   xpi_install 
"${D}/usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/belgium...@eid.belgium.be"
+   fi
+   fi
+   rm -r "${D}/usr/share" "${D}"/usr/lib*/*.la || die
+}



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

2016-09-08 Thread Amy Winston
commit: e586280208f48566aad9542d31b5af6174f78862
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Mon Sep  5 17:02:34 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Thu Sep  8 15:13:02 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5862802

dev-lisp/sbcl: remove unused patch

Patch name: bsd-sockets-test-1.2-patch
Closes: #2250

 dev-lisp/sbcl/files/bsd-sockets-test-1.2.patch | 24 
 1 file changed, 24 deletions(-)

diff --git a/dev-lisp/sbcl/files/bsd-sockets-test-1.2.patch 
b/dev-lisp/sbcl/files/bsd-sockets-test-1.2.patch
deleted file mode 100644
index 7a7b12b..
--- a/dev-lisp/sbcl/files/bsd-sockets-test-1.2.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-diff -r -U1 sbcl-1.2.2.orig/contrib/sb-bsd-sockets/tests.lisp 
sbcl-1.2.2/contrib/sb-bsd-sockets/tests.lisp
 sbcl-1.2.2.orig/contrib/sb-bsd-sockets/tests.lisp  2014-07-28 
17:15:05.0 +0700
-+++ sbcl-1.2.2/contrib/sb-bsd-sockets/tests.lisp   2014-08-01 
19:48:30.011931081 +0700
-@@ -31,11 +31,11 @@
- ;;; for unknown protocols...
--#-(and freebsd sb-thread)
--#-(and dragonfly sb-thread)
--(deftest get-protocol-by-name/error
--  (handler-case (get-protocol-by-name "nonexistent-protocol")
--(unknown-protocol ()
--  t)
--(:no-error ()
--  nil))
--  t)
-+;#-(and freebsd sb-thread)
-+;#-(and dragonfly sb-thread)
-+;(deftest get-protocol-by-name/error
-+;  (handler-case (get-protocol-by-name "nonexistent-protocol")
-+;(unknown-protocol ()
-+;  t)
-+;(:no-error ()
-+;  nil))
-+;  t)
- 



[gentoo-commits] repo/gentoo:master commit in: dev-libs/g-wrap/files/

2016-09-08 Thread Amy Winston
commit: d32f59662328ae254e349f534fa6393a6fc432fc
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Sat Sep  3 15:55:27 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Thu Sep  8 15:07:43 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d32f5966

dev-libs/g-wrap: remove unused patches

Closes: #2233

 .../g-wrap/files/1.9.8-fix-ffi-build-issue.patch   | 15 --
 .../g-wrap/files/1.9.8-fix-gcc-4.2.0-libffi.patch  | 21 
 dev-libs/g-wrap/files/g-wrap-1.3.4-direntry.patch  | 57 --
 dev-libs/g-wrap/files/g-wrap-1.3.4-m4.patch| 20 
 .../g-wrap/files/g-wrap-1.9.6_glib_automagic.patch | 13 -
 .../g-wrap/files/g-wrap-1.9.7_glib_automagic.patch | 16 --
 dev-libs/g-wrap/files/glib_automagic.patch | 16 --
 dev-libs/g-wrap/files/libffi_automagic.patch   | 11 -
 8 files changed, 169 deletions(-)

diff --git a/dev-libs/g-wrap/files/1.9.8-fix-ffi-build-issue.patch 
b/dev-libs/g-wrap/files/1.9.8-fix-ffi-build-issue.patch
deleted file mode 100644
index c9ba466..
--- a/dev-libs/g-wrap/files/1.9.8-fix-ffi-build-issue.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-diff -urN g-wrap-1.9.8.orig/guile/examples/Makefile.am 
g-wrap-1.9.8/guile/examples/Makefile.am
 g-wrap-1.9.8.orig/guile/examples/Makefile.am   2007-05-31 
15:07:17.0 -0700
-+++ g-wrap-1.9.8/guile/examples/Makefile.am2007-06-01 10:07:32.0 
-0700
-@@ -5,7 +5,10 @@
- 
- lib_LTLIBRARIES += libgw-guile-miscutils.la
- libgw_guile_miscutils_la_SOURCES = miscutils-guile.c miscutils-guile.h 
gw-miscutils.c
--libgw_guile_miscutils_la_CFLAGS = -I$(top_srcdir) -I$(top_srcdir)/guile
-+libgw_guile_miscutils_la_CFLAGS = \
-+  -I$(top_srcdir) \
-+  -I$(top_srcdir)/guile \
-+  $(LIBFFI_CFLAGS)
- libgw_guile_miscutils_la_LDFLAGS = -module
- libgw_guile_miscutils_la_LIBADD = libmiscutils.la \
- 
$(top_builddir)/guile/g-wrap/libgwrap-guile-runtime.la \

diff --git a/dev-libs/g-wrap/files/1.9.8-fix-gcc-4.2.0-libffi.patch 
b/dev-libs/g-wrap/files/1.9.8-fix-gcc-4.2.0-libffi.patch
deleted file mode 100644
index e2a2abc..
--- a/dev-libs/g-wrap/files/1.9.8-fix-gcc-4.2.0-libffi.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-diff -urN g-wrap-1.9.8.orig/libffi/configure.ac 
g-wrap-1.9.8/libffi/configure.ac
 g-wrap-1.9.8.orig/libffi/configure.ac  2007-06-03 21:50:15.0 
-0700
-+++ g-wrap-1.9.8/libffi/configure.ac   2007-06-03 21:50:31.0 -0700
-@@ -5,7 +5,7 @@
- AC_INIT([libffi], [2.1], [http://gcc.gnu.org/bugs.html])
- AC_CONFIG_HEADERS([fficonfig.h])
- 
--AM_ENABLE_MULTILIB(, ..)
-+#AM_ENABLE_MULTILIB(, ..)
- 
- AC_CANONICAL_SYSTEM
- target_alias=${target_alias-$host_alias}
-diff -urN g-wrap-1.9.8.orig/libffi/include/Makefile.am 
g-wrap-1.9.8/libffi/include/Makefile.am
 g-wrap-1.9.8.orig/libffi/include/Makefile.am   2007-06-03 
21:50:15.0 -0700
-+++ g-wrap-1.9.8/libffi/include/Makefile.am2007-06-03 21:50:47.0 
-0700
-@@ -9,4 +9,4 @@
- gcc_version   := $(shell cat $(top_srcdir)/../gcc/BASE-VER)
- toollibffidir := $(libdir)/gcc/$(target_alias)/$(gcc_version)/include
- 
--toollibffi_HEADERS = ffi.h ffitarget.h
-+include_HEADERS = ffi.h ffitarget.h

diff --git a/dev-libs/g-wrap/files/g-wrap-1.3.4-direntry.patch 
b/dev-libs/g-wrap/files/g-wrap-1.3.4-direntry.patch
deleted file mode 100644
index dd04074..
--- a/dev-libs/g-wrap/files/g-wrap-1.3.4-direntry.patch
+++ /dev/null
@@ -1,57 +0,0 @@
-diff -u g-wrap-1.3.4-vanilla/doc/g-wrap.info g-wrap-1.3.4/doc/g-wrap.info
 g-wrap-1.3.4-vanilla/doc/g-wrap.info   2004-04-19 13:16:18.584411000 
-0700
-+++ g-wrap-1.3.4/doc/g-wrap.info   2004-04-19 13:17:49.384608248 -0700
-@@ -1,5 +1,10 @@
- This is g-wrap.info, produced by makeinfo version 4.2 from g-wrap.texi.
- 
-+INFO-DIR-SECTION The Algorithmic Language Scheme
-+START-INFO-DIR-ENTRY
-+* G-wrap: (g-wrap).   Export C libraries into Scheme.
-+END-INFO-DIR-ENTRY
-+
- 
- Indirect:
- g-wrap.info-1: 73
-diff -u g-wrap-1.3.4-vanilla/doc/g-wrap.info-1 g-wrap-1.3.4/doc/g-wrap.info-1
 g-wrap-1.3.4-vanilla/doc/g-wrap.info-1 2004-04-19 13:16:28.147958000 
-0700
-+++ g-wrap-1.3.4/doc/g-wrap.info-1 2004-04-19 13:17:52.254172008 -0700
-@@ -1,5 +1,10 @@
- This is g-wrap.info, produced by makeinfo version 4.2 from g-wrap.texi.
- 
-+INFO-DIR-SECTION The Algorithmic Language Scheme
-+START-INFO-DIR-ENTRY
-+* G-wrap: (g-wrap).   Export C libraries into Scheme.
-+END-INFO-DIR-ENTRY
-+
- 
- File: g-wrap.info,  Node: Top,  Next: Copying,  Prev: (dir),  Up: (dir)
- 
-diff -u g-wrap-1.3.4-vanilla/doc/g-wrap.info-2 g-wrap-1.3.4/doc/g-wrap.info-2
 g-wrap-1.3.4-vanilla/doc/g-wrap.info-2 2004-04-19 13:16:33.402159000 
-0700
-+++ g-wrap-1.3.4/doc/g-wrap.info-2 2004-04-19 13:17:55.048747168 -0700
-@@ -1,5 +1,10 @@
- This is g-wrap.info, produced by makeinfo version 4.2 from g-wrap.texi.
- 
-+INFO-DIR-S

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

2016-08-31 Thread Amy Winston
commit: 71f4a48dc4fa41e3d54c56200f7a1782457fcb5c
Author: Amy Winston  gentoo  org>
AuthorDate: Wed Aug 31 08:25:39 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Wed Aug 31 08:26:25 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71f4a48d

dev-python/click-threading: version bump 0.3.0

Package-Manager: portage-2.2.28

 dev-python/click-threading/Manifest|  1 +
 .../click-threading/click-threading-0.3.0.ebuild   | 22 ++
 2 files changed, 23 insertions(+)

diff --git a/dev-python/click-threading/Manifest 
b/dev-python/click-threading/Manifest
index 292d205..5bd3ce6 100644
--- a/dev-python/click-threading/Manifest
+++ b/dev-python/click-threading/Manifest
@@ -1 +1,2 @@
 DIST click-threading-0.1.2.tar.gz 3232 SHA256 
85045457e02f16fba3110dc6b16e980bf3e65433808da2b550dd513206d9b94a SHA512 
4612c5314800a76e65468fb80c9495e14605bbda8b5e25e8d78e8baaa9392e424d673d942bd7d0f3955e0241ddc4b87aa348dcb7f3b9516ba94fb8352c0400b6
 WHIRLPOOL 
b821aaca4566cdb6e58ae3eb9dd5892521dd393c8e472399193aa12d9e8754930e778595fe80f3ea6dacc61e4a2ff8f3e68c2f3cbfd0226ecf103309b02ed6eb
+DIST click-threading-0.3.0.tar.gz 3379 SHA256 
4e73ae723086df8ca790f1e47d9926da4fa1fb5cb1d4196440817d459dd8c945 SHA512 
30de50a7e317eb0a54cf9c556c803cade1ba7fd4cced5ce9e99c25da7423ea13400c9315025266745745bc2fbc0c59c2da34545d74e8e723f2f05bcd8bb2fd33
 WHIRLPOOL 
e7200a751af971ef588c904cad43f6d0c99606496d3e1d20c3586bf811aed35b7a9e1c118a8cc2a558a3e41ef73ac18e2c1c41d3c6e9fd675b006bbb9df69c47

diff --git a/dev-python/click-threading/click-threading-0.3.0.ebuild 
b/dev-python/click-threading/click-threading-0.3.0.ebuild
new file mode 100644
index ..10ecfe5
--- /dev/null
+++ b/dev-python/click-threading/click-threading-0.3.0.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+PYTHON_COMPAT=( python{2_7,3_3,3_4} )
+
+inherit distutils-r1
+
+DESCRIPTION="Multithreaded Click apps made easy."
+HOMEPAGE="https://github.com/click-contrib/click-threading 
https://pypi.python.org/pypi/click-threading;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND=">=dev-python/click-5.0"
+RDEPEND="${DEPEND}"
+
+DOCS=( README.rst )



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

2016-08-31 Thread Amy Winston
commit: b38c50668b0b7aadac7d9fd6a75714b9a89e2a28
Author: Amy Winston  gentoo  org>
AuthorDate: Wed Aug 31 08:16:12 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Wed Aug 31 08:16:12 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b38c5066

dev-python/atomicwrites: version bump 1.1.5

Package-Manager: portage-2.2.28

 dev-python/atomicwrites/Manifest  |  1 +
 dev-python/atomicwrites/atomicwrites-1.1.5.ebuild | 22 ++
 2 files changed, 23 insertions(+)

diff --git a/dev-python/atomicwrites/Manifest b/dev-python/atomicwrites/Manifest
index d401324..400277a 100644
--- a/dev-python/atomicwrites/Manifest
+++ b/dev-python/atomicwrites/Manifest
@@ -1,2 +1,3 @@
 DIST atomicwrites-0.1.8.tar.gz 14440 SHA256 
3274adb52bd3ae91d87ba923e0f21fd86c05b71bbaefe2ec0d6679c01f98dc8e SHA512 
51c03f875adec409663badb94e3214858e6cd190aa07b8ffb4c35be1f3acaa8b5a341f62b45f814308dbfbd391fd32df24618df70c36f27737853852963af25a
 WHIRLPOOL 
036304b72b6b7d45bf109f6c46a2eb4249c25cbd4aabeda93fc1c4761b13acf7a00c7b4be57990f5d9167a6851cde4bc5c98b4249411e4e361f1ea653b0aed16
 DIST atomicwrites-0.1.9.tar.gz 14475 SHA256 
7cdfcee8c064bc0ba30b0444ba0919ebafccf5b0b1916c8cde07e410042c4023 SHA512 
d7bf742c3cb1d5eee4921fca225b5d22e0fe18f2948fb7af44bc6817fc2b5d267fca0d42371d44730d3b557a400f9d6ce250ac3a05e1ce1d3600ec6569fa7aa6
 WHIRLPOOL 
583b60d20d06126bff40cf73f560995c4ccb1c5becc686dac946f0542c74e1373edf3d9f9f67042f2eb3697ad68601fcc8f9b505482c085da7fb07ca1eab8d51
+DIST atomicwrites-1.1.5.tar.gz 18951 SHA256 
240831ea22da9ab882b551b31d4225591e5e447a68c5e188db5b89ca1d487585 SHA512 
4de8ab93dcb226c55e8ae1b0ef883c2e1eeae50ac6596afe036ca51dbf6b094c13dbf2d792972312d4c53551886aaa2713aac54bfab42b85abef4d1146e039ac
 WHIRLPOOL 
e9bfb96ddd365bf8db69678fb79404743de125e2bca1b072db7a66ad345e04620c66ef2938efed5035e40f4c4fad04636c0f1a464bf79872b26f4d4a1fc5b391

diff --git a/dev-python/atomicwrites/atomicwrites-1.1.5.ebuild 
b/dev-python/atomicwrites/atomicwrites-1.1.5.ebuild
new file mode 100644
index ..88f0fb6
--- /dev/null
+++ b/dev-python/atomicwrites/atomicwrites-1.1.5.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+PYTHON_COMPAT=( python{2_7,3_3,3_4} )
+
+inherit distutils-r1
+
+DESCRIPTION="Atomic file writes."
+HOMEPAGE="https://github.com/untitaker/python-atomicwrites;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND=""
+RDEPEND="${DEPEND}"
+
+DOCS=( README.rst )



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

2016-08-30 Thread Amy Winston
commit: 0518f0d8f6d48d85af19410d376a97f818b965bf
Author: Amy Winston  gentoo  org>
AuthorDate: Tue Aug 30 07:13:06 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Tue Aug 30 07:13:06 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0518f0d8

dev-python/requests-toolbelt: version bump 0.7.0 bug #592348

Package-Manager: portage-2.2.28

 dev-python/requests-toolbelt/Manifest  |  1 +
 .../requests-toolbelt-0.7.0.ebuild | 22 ++
 2 files changed, 23 insertions(+)

diff --git a/dev-python/requests-toolbelt/Manifest 
b/dev-python/requests-toolbelt/Manifest
index 925112e..56785e6 100644
--- a/dev-python/requests-toolbelt/Manifest
+++ b/dev-python/requests-toolbelt/Manifest
@@ -1 +1,2 @@
 DIST requests-toolbelt-0.5.1.tar.gz 187981 SHA256 
4f4be5325cf4af12847252406eefca8e9d1cd3cfb23a377aaac5cea32d55d23e SHA512 
fff70b7262efae616fe9fe8e25af9856d42ccecdaca71cfde0dd81c5d7c509aec30f7c99f4b886d844c168937197ed8287e873fffe6073e93e48412b5a902997
 WHIRLPOOL 
6c918a43ab70046545445d217cac0ea9fd18c1938aaa5bfe61645cb95a43563d2fbe51317c8bc9fcb11c8f68c64c8c1af0ef265c72d2994f16b9365cff3f
+DIST requests-toolbelt-0.7.0.tar.gz 194062 SHA256 
33899d4a559c3f0f5e9fbc115d337c4236febdc083755a160a4132d92fc3c91a SHA512 
77f11d12643d7cacf0c5dab5c5490359fc6f11c038d56d6ae27939394c5788622edb230d38d2202192eec6a7b1229feeb5669cd6a33c78f6891699d017e8205e
 WHIRLPOOL 
6ce0b79cc4a7d981e77939bbc145e9a7c613067ef451cc084539304c6926cbd712fd47a936d7e3707074f9778f973830d5278c577cb826464e7606101a000586

diff --git a/dev-python/requests-toolbelt/requests-toolbelt-0.7.0.ebuild 
b/dev-python/requests-toolbelt/requests-toolbelt-0.7.0.ebuild
new file mode 100644
index ..54af785
--- /dev/null
+++ b/dev-python/requests-toolbelt/requests-toolbelt-0.7.0.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} )
+
+inherit distutils-r1
+
+DESCRIPTION="A utility belt for advanced users of python-requests"
+HOMEPAGE="http://toolbelt.readthedocs.org/;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND=""
+RDEPEND="<=dev-python/requests-3.0.0"
+
+DOCS=( AUTHORS.rst HISTORY.rst README.rst )



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

2016-08-20 Thread Amy Winston
commit: 54a9336fdc365eb41512e0bc17e35867e6713b8a
Author: Amy Winston  gentoo  org>
AuthorDate: Sat Aug 20 18:59:47 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Sat Aug 20 18:59:47 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54a9336f

media-libs/opencv: remove old. thanks genstorm

Package-Manager: portage-2.2.28

 media-libs/opencv/Manifest   |   1 -
 media-libs/opencv/opencv-2.4.11.ebuild   | 217 --
 media-libs/opencv/opencv-3.1.0-r1.ebuild | 253 ---
 media-libs/opencv/opencv-3.1.0-r3.ebuild | 245 --
 4 files changed, 716 deletions(-)

diff --git a/media-libs/opencv/Manifest b/media-libs/opencv/Manifest
index 485d82b..82a9d48 100644
--- a/media-libs/opencv/Manifest
+++ b/media-libs/opencv/Manifest
@@ -1,4 +1,3 @@
-DIST opencv-2.4.11.zip 91671436 SHA256 
af1952fd40fb0dc5e369725e073ac4650847e956fbf77c5f206b6da8ce2b1fea SHA512 
748f6b939200a7ad2c2ae2531bf9bf38b82a576530f10691c13a0ad52568a7eb8b9d312e946ba8e78f592ef05ae389ecb982544f0c00cb83a2d87ae4b4da61b0
 WHIRLPOOL 
1c621b835fb144997ecbabddaa1b9a0cd0653e27c5a4f2abc43f3c6152a0b98eb0941d59263be33f69a6f3bccdffa484455c2ddaa747ed4a2bd2cd3192956d29
 DIST opencv-2.4.12.zip 93261101 SHA256 
2a7e47da87b9119be922f010a1059539e96130c242f4d38e2dbb445ccbeccbc1 SHA512 
3f9142ef23181f93200413b456c11235ecac11c322ccf3f89cc3740bfa9d9228508948cee245583103029e9f6abf1c5d0c5d249eff400e65b3655153bc6dbb05
 WHIRLPOOL 
86488d91cfac4c980e4f794d6d7e40bf93803f4d79defc991647af742198b845db796b1578b5d79a12a71ecbb04d8430a49c1538d6f86f1288c2a31efefc2548
 DIST opencv-3.0.0.zip 100980799 SHA256 
07094ea2f996f2622d572f0f3a162d698c8a547520341ca9109fbaf9363fb001 SHA512 
108d0fdcc60b5688ebf61c930fb965ec81f0d3c36bb1797f6cc571fac35331f540773207fd1cb81b12c05c8f4d1af20c4a2452d9f75cd0cae4acd8131be92375
 WHIRLPOOL 
61cbbf5201b1dea75ffa998d1f55ee35f098bb8f76591cc9705de13b9f05eaefd19dcc74e93d2643d9b721e62483a36547617ec2e3d14fa6a2522e18ccf06747
 DIST opencv-3.1.0.zip 79186131 SHA256 
1f6990249fdb82804fff40e96fa6d99949023ab0e3277eae4bd459b374e622a4 SHA512 
b4915e8838fce8ba9e1af8b11e46678624435e9a41592e645413dfdc830993eaa017d337fe4c212a49f096421a6317a1892546087fbc3cfdab554522336c0f1a
 WHIRLPOOL 
3c38715e2abc431781b724199c2cf06f844c7a889c51a06ecb64889a8ca36d9fd370a0738deec2995e24e453cb64f5db228238681714f62daf6eac50d95a4914

diff --git a/media-libs/opencv/opencv-2.4.11.ebuild 
b/media-libs/opencv/opencv-2.4.11.ebuild
deleted file mode 100644
index 262d90f..000
--- a/media-libs/opencv/opencv-2.4.11.ebuild
+++ /dev/null
@@ -1,217 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-PYTHON_COMPAT=( python2_7 )
-
-inherit toolchain-funcs cmake-utils python-single-r1 java-pkg-opt-2 java-ant-2
-
-DESCRIPTION="A collection of algorithms and sample code for various computer 
vision problems"
-HOMEPAGE="http://opencv.willowgarage.com;
-
-SRC_URI="mirror://sourceforge/opencvlibrary/opencv-unix/${PV}/${P}.zip"
-
-LICENSE="BSD"
-SLOT="0/2.4"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux"
-IUSE="cuda doc +eigen examples ffmpeg gstreamer gtk ieee1394 ipp jpeg jpeg2k 
libav opencl openexr opengl openmp pch png +python qt4 testprograms threads 
tiff v4l vtk xine"
-REQUIRED_USE="
-   python? ( ${PYTHON_REQUIRED_USE} )
-"
-
-# The following logic is intrinsic in the build system, but we do not enforce
-# it on the useflags since this just blocks emerging pointlessly:
-#  gtk? ( !qt4 )
-#  opengl? ( || ( gtk qt4 ) )
-#  openmp? ( !threads )
-
-RDEPEND="
-   app-arch/bzip2
-   sys-libs/zlib
-   cuda? ( >=dev-util/nvidia-cuda-toolkit-5.5 )
-   ffmpeg? (
-   libav? ( media-video/libav:0= )
-   !libav? ( media-video/ffmpeg:0= )
-   )
-   gstreamer? (
-   media-libs/gstreamer:1.0
-   media-libs/gst-plugins-base:1.0
-   )
-   gtk? (
-   dev-libs/glib:2
-   x11-libs/gtk+:2
-   opengl? ( x11-libs/gtkglext )
-   )
-   java? ( >=virtual/jre-1.6:* )
-   jpeg? ( virtual/jpeg:0 )
-   jpeg2k? ( media-libs/jasper )
-   ieee1394? (
-   media-libs/libdc1394
-   sys-libs/libraw1394
-   )
-   ipp? ( sci-libs/ipp )
-   opencl? ( virtual/opencl )
-   openexr? ( media-libs/openexr )
-   opengl? ( virtual/opengl virtual/glu )
-   png? ( media-libs/libpng:0= )
-   python? ( ${PYTHON_DEPS} dev-python/numpy[${PYTHON_USEDEP}] )
-   qt4? (
-   dev-qt/qtgui:4
-   dev-qt/qttest:4
-   opengl? ( dev-qt/qtopengl:4 )
-   )
-   threads? ( dev-cpp/tbb )
-   tiff? ( media-libs/tiff:0 )
-   v4l? ( >=media-libs/libv4l-0.8.3 )
-   vtk? ( sci-libs/vtk[rendering] )
-   xine

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

2016-08-18 Thread Amy Winston
commit: 9bce79b4939d567d90661949373952fe16017530
Author: Lorand Jakab  cisco  com>
AuthorDate: Wed Aug 17 22:16:08 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Thu Aug 18 07:31:20 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9bce79b4

sci-geosciences/josm: Require Java 8 for 9

Gentoo-Bug: 589970
Closes: #2099

 sci-geosciences/josm/josm-9.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sci-geosciences/josm/josm-9.ebuild 
b/sci-geosciences/josm/josm-9.ebuild
index 046af6e4..45c8282 100644
--- a/sci-geosciences/josm/josm-9.ebuild
+++ b/sci-geosciences/josm/josm-9.ebuild
@@ -22,8 +22,8 @@ SLOT="0"
 [[ ${PV} == "9" ]] || \
 KEYWORDS="~amd64 ~x86"
 
-DEPEND=">=virtual/jdk-1.7"
-RDEPEND=">=virtual/jre-1.7"
+DEPEND=">=virtual/jdk-1.8"
+RDEPEND=">=virtual/jre-1.8"
 
 IUSE=""
 



[gentoo-commits] repo/gentoo:master commit in: dev-scheme/guile/, dev-scheme/guile/files/

2016-08-12 Thread Amy Winston
commit: 251038429b247420f86268f22906ec69ede294cc
Author: Amy Winston  gentoo  org>
AuthorDate: Fri Aug 12 19:02:25 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Fri Aug 12 19:07:49 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25103842

dev-scheme/guile: fix bug #590528

- Added patch from upstream for bug #590528
- Added +nls +networking recommended by upstream
- Removed old patch from upstream

Package-Manager: portage-2.2.28

 .../guile/files/guile-2.0.12-build-includes.patch  | 41 --
 .../guile/files/guile-2.0.12-build_includes2.patch | 48 ++
 dev-scheme/guile/guile-2.0.12-r1.ebuild| 11 +++--
 3 files changed, 56 insertions(+), 44 deletions(-)

diff --git a/dev-scheme/guile/files/guile-2.0.12-build-includes.patch 
b/dev-scheme/guile/files/guile-2.0.12-build-includes.patch
deleted file mode 100644
index 60b44bc..000
--- a/dev-scheme/guile/files/guile-2.0.12-build-includes.patch
+++ /dev/null
@@ -1,41 +0,0 @@
-From edd6d6e2805894e21afe51276d1af65d5395180d Mon Sep 17 00:00:00 2001
-From: Andy Wingo <wi...@pobox.com>
-Date: Sun, 07 Aug 2016 10:23:50 +
-Subject: Snarfing .x depends on built headers
-
-* libguile/Makefile.am (BUILT_INCLUDES): New variable.
-  (BUILT_SOURCES): Put .i and other generated .h to BUILT_INCLUDES.
-  (.c.x, .c.doc): Depend on BUILT_INCLUDES.  Fixes
-  https://bugs.gentoo.org/show_bug.cgi?id=590528.

-diff --git a/libguile/Makefile.am b/libguile/Makefile.am
-index cd85604..4c54744 100644
 a/libguile/Makefile.am
-+++ b/libguile/Makefile.am
-@@ -430,9 +430,9 @@ DOT_I_FILES = vm-i-system.i vm-i-scheme.i vm-i-loader.i
- .c.i:
-   $(AM_V_GEN)$(GREP) '^VM_DEFINE' $< > $@
- 
--BUILT_SOURCES = cpp-E.c cpp-SIG.c libpath.h \
--scmconfig.h \
--$(DOT_I_FILES) $(DOT_X_FILES) $(EXTRA_DOT_X_FILES)
-+BUILT_INCLUDES = $(DOT_I_FILES) scmconfig.h
-+BUILT_SOURCES = cpp-E.c cpp-SIG.c libpath.h $(BUILT_INCLUDES) \
-+$(DOT_X_FILES) $(EXTRA_DOT_X_FILES)
- 
- # Force the generation of `guile-procedures.texi' because the top-level
- # Makefile expects it to be built.
-@@ -730,9 +730,9 @@ snarfcppopts = $(DEFS) $(AM_CPPFLAGS) $(CPPFLAGS) $(CFLAGS)
- 
- SUFFIXES = .x .doc
- 
--.c.x:
-+.c.x: $(BUILT_INCLUDES)
-   $(AM_V_SNARF)$(GUILE_SNARF) -o $@ $< $(snarfcppopts)
--.c.doc:
-+.c.doc: $(BUILT_INCLUDES)
-   $(AM_V_SNARF)./guile-snarf-docs -o $@ $< -- $(snarfcppopts)
- 
- $(DOT_X_FILES) $(EXTRA_DOT_X_FILES): scmconfig.h snarf.h guile-snarf.in 
version.h
---
-cgit v0.9.0.2

diff --git a/dev-scheme/guile/files/guile-2.0.12-build_includes2.patch 
b/dev-scheme/guile/files/guile-2.0.12-build_includes2.patch
new file mode 100644
index 000..320abb3
--- /dev/null
+++ b/dev-scheme/guile/files/guile-2.0.12-build_includes2.patch
@@ -0,0 +1,48 @@
+From 9eb8c3652d6a424a9c60da03584b8056497d1fdf Mon Sep 17 00:00:00 2001
+From: Mark H Weaver <m...@netris.org>
+Date: Thu, 11 Aug 2016 03:59:40 -0400
+Subject: build: .x and .doc files depend on generated includes.
+
+Fixes <https://bugs.gentoo.org/show_bug.cgi?id=590528>.
+
+* libguile/Makefile.am (BUILT_INCLUDES): New variable.
+(BUILT_SOURCES): Put .i and other generated .h to BUILT_INCLUDES.
+(DOT_X_FILES, EXTRA_DOT_X_FILES, DOT_DOC_FILES, EXTRA_DOT_DOC_FILES):
+Depend on $(BUILT_INCLUDES), in place of scmconfig.h which is included
+in $(BUILT_INCLUDES).
+---
+ libguile/Makefile.am | 10 +-
+ 1 file changed, 5 insertions(+), 5 deletions(-)
+
+diff --git a/libguile/Makefile.am b/libguile/Makefile.am
+index cd85604..1383c13 100644
+--- a/libguile/Makefile.am
 b/libguile/Makefile.am
+@@ -430,9 +430,9 @@ DOT_I_FILES = vm-i-system.i vm-i-scheme.i vm-i-loader.i
+ .c.i:
+   $(AM_V_GEN)$(GREP) '^VM_DEFINE' $< > $@
+ 
+-BUILT_SOURCES = cpp-E.c cpp-SIG.c libpath.h \
+-scmconfig.h \
+-$(DOT_I_FILES) $(DOT_X_FILES) $(EXTRA_DOT_X_FILES)
++BUILT_INCLUDES = $(DOT_I_FILES) scmconfig.h
++BUILT_SOURCES = cpp-E.c cpp-SIG.c libpath.h $(BUILT_INCLUDES) \
++$(DOT_X_FILES) $(EXTRA_DOT_X_FILES)
+ 
+ # Force the generation of `guile-procedures.texi' because the top-level
+ # Makefile expects it to be built.
+@@ -735,9 +735,9 @@ SUFFIXES = .x .doc
+ .c.doc:
+   $(AM_V_SNARF)./guile-snarf-docs -o $@ $< -- $(snarfcppopts)
+ 
+-$(DOT_X_FILES) $(EXTRA_DOT_X_FILES): scmconfig.h snarf.h guile-snarf.in 
version.h
++$(DOT_X_FILES) $(EXTRA_DOT_X_FILES): $(BUILT_INCLUDES) snarf.h guile-snarf.in 
version.h
+ 
+-$(DOT_DOC_FILES) $(EXTRA_DOT_DOC_FILES): scmconfig.h snarf.h 
guile-snarf-docs.in guile_filter_doc_snarfage$(EXEEXT)
++$(DOT_DOC_FILES) $(EXTRA_DOT_DOC_FILES): $(BUILT_INCLUDES) snarf.h 
guile-snarf-docs.in guile_filter_doc_snarfage$(EXEEXT)
+ 
+ error.x: cpp-E.c
+ posix.x: cpp-SIG.c
+-- 
+cgit v1.0
+

diff --git a/dev-scheme/guile/guile-2.0.12-r1.ebuild 
b/dev-scheme/guile/guile-2.0.12-r1.ebuild
index 9d1539f..2cfc2b1 100644
--- a/dev-scheme/guile/guile-2.0.12-r1.ebuild
+++ b/dev-schem

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

2016-08-12 Thread Amy Winston
commit: 08ebd2c7090fc50d44ed11d87f2c0f19938eaa7c
Author: Amy Winston  gentoo  org>
AuthorDate: Fri Aug 12 17:46:27 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Fri Aug 12 17:46:27 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08ebd2c7

dev-python/requests-toolbelt: add python 3.5 bug #591038

Package-Manager: portage-2.2.28

 dev-python/requests-toolbelt/requests-toolbelt-0.5.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/requests-toolbelt/requests-toolbelt-0.5.1.ebuild 
b/dev-python/requests-toolbelt/requests-toolbelt-0.5.1.ebuild
index 3df2c62..4237302 100644
--- a/dev-python/requests-toolbelt/requests-toolbelt-0.5.1.ebuild
+++ b/dev-python/requests-toolbelt/requests-toolbelt-0.5.1.ebuild
@@ -3,7 +3,7 @@
 # $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
 



[gentoo-commits] repo/gentoo:master commit in: dev-scheme/guile/, dev-scheme/guile/files/

2016-08-07 Thread Amy Winston
commit: ad481adb43d97f0e37294a9706184fe94550824f
Author: Amy Winston  gentoo  org>
AuthorDate: Sun Aug  7 19:01:05 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Sun Aug  7 19:03:10 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad481adb

dev-scheme/guile: fixes for bug #590528,#590660

- Added patch for built_includes by upstream Andy Wingo
- Symlink path changed

Package-Manager: portage-2.2.28

 .../guile/files/guile-2.0.12-build-includes.patch  | 41 ++
 dev-scheme/guile/guile-2.0.12.ebuild   |  3 +-
 2 files changed, 43 insertions(+), 1 deletion(-)

diff --git a/dev-scheme/guile/files/guile-2.0.12-build-includes.patch 
b/dev-scheme/guile/files/guile-2.0.12-build-includes.patch
new file mode 100644
index 000..60b44bc
--- /dev/null
+++ b/dev-scheme/guile/files/guile-2.0.12-build-includes.patch
@@ -0,0 +1,41 @@
+From edd6d6e2805894e21afe51276d1af65d5395180d Mon Sep 17 00:00:00 2001
+From: Andy Wingo <wi...@pobox.com>
+Date: Sun, 07 Aug 2016 10:23:50 +
+Subject: Snarfing .x depends on built headers
+
+* libguile/Makefile.am (BUILT_INCLUDES): New variable.
+  (BUILT_SOURCES): Put .i and other generated .h to BUILT_INCLUDES.
+  (.c.x, .c.doc): Depend on BUILT_INCLUDES.  Fixes
+  https://bugs.gentoo.org/show_bug.cgi?id=590528.
+---
+diff --git a/libguile/Makefile.am b/libguile/Makefile.am
+index cd85604..4c54744 100644
+--- a/libguile/Makefile.am
 b/libguile/Makefile.am
+@@ -430,9 +430,9 @@ DOT_I_FILES = vm-i-system.i vm-i-scheme.i vm-i-loader.i
+ .c.i:
+   $(AM_V_GEN)$(GREP) '^VM_DEFINE' $< > $@
+ 
+-BUILT_SOURCES = cpp-E.c cpp-SIG.c libpath.h \
+-scmconfig.h \
+-$(DOT_I_FILES) $(DOT_X_FILES) $(EXTRA_DOT_X_FILES)
++BUILT_INCLUDES = $(DOT_I_FILES) scmconfig.h
++BUILT_SOURCES = cpp-E.c cpp-SIG.c libpath.h $(BUILT_INCLUDES) \
++$(DOT_X_FILES) $(EXTRA_DOT_X_FILES)
+ 
+ # Force the generation of `guile-procedures.texi' because the top-level
+ # Makefile expects it to be built.
+@@ -730,9 +730,9 @@ snarfcppopts = $(DEFS) $(AM_CPPFLAGS) $(CPPFLAGS) $(CFLAGS)
+ 
+ SUFFIXES = .x .doc
+ 
+-.c.x:
++.c.x: $(BUILT_INCLUDES)
+   $(AM_V_SNARF)$(GUILE_SNARF) -o $@ $< $(snarfcppopts)
+-.c.doc:
++.c.doc: $(BUILT_INCLUDES)
+   $(AM_V_SNARF)./guile-snarf-docs -o $@ $< -- $(snarfcppopts)
+ 
+ $(DOT_X_FILES) $(EXTRA_DOT_X_FILES): scmconfig.h snarf.h guile-snarf.in 
version.h
+--
+cgit v0.9.0.2

diff --git a/dev-scheme/guile/guile-2.0.12.ebuild 
b/dev-scheme/guile/guile-2.0.12.ebuild
index f20a701..976c483 100644
--- a/dev-scheme/guile/guile-2.0.12.ebuild
+++ b/dev-scheme/guile/guile-2.0.12.ebuild
@@ -30,6 +30,7 @@ DEPEND="${RDEPEND}
 SLOT="12"
 MAJOR="2.0"
 
+PATCHES=( "${FILESDIR}/${P}-build-includes.patch" ) #bug 590528 patched by 
upstream
 DOCS=( GUILE-VERSION HACKING README )
 
 src_configure() {
@@ -67,7 +68,7 @@ src_install() {
keepdir /usr/share/guile/site
 
# Dark magic necessary for some deps
-   dosym /usr/$(get_libdir)/libguile-2.0.so /usr/$(get_libdir)/libguile.so
+   dosym libguile-2.0.so /usr/$(get_libdir)/libguile.so
 }
 
 pkg_postinst() {



[gentoo-commits] repo/gentoo:master commit in: dev-scheme/guile/

2016-08-05 Thread Amy Winston
commit: 29751415a9067c0c2f032d1a7a9097b56a927f2a
Author: Amy Winston  gentoo  org>
AuthorDate: Fri Aug  5 16:56:14 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Fri Aug  5 16:56:14 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29751415

dev-scheme/guile: change > to >= for slib

Package-Manager: portage-2.2.28

 dev-scheme/guile/guile-2.0.12.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-scheme/guile/guile-2.0.12.ebuild 
b/dev-scheme/guile/guile-2.0.12.ebuild
index b8fb41c..f20a701 100644
--- a/dev-scheme/guile/guile-2.0.12.ebuild
+++ b/dev-scheme/guile/guile-2.0.12.ebuild
@@ -75,7 +75,7 @@ pkg_postinst() {
 }
 
 pkg_config() {
-   if has_version '>dev-scheme/slib-3.2.4'; then
+   if has_version '>=dev-scheme/slib-3.2.4'; then
einfo "Registering slib with guile"
install_slib_for_guile
fi



[gentoo-commits] repo/gentoo:master commit in: dev-scheme/greg/files/, dev-scheme/greg/

2016-08-05 Thread Amy Winston
commit: 0a6ef659a25031905c33fe6fb80080681099dec3
Author: Amy Winston  gentoo  org>
AuthorDate: Fri Aug  5 13:02:21 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Fri Aug  5 13:02:21 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a6ef659

dev-scheme/greg:add guile-2 patch bug #351991

Package-Manager: portage-2.2.28

 dev-scheme/greg/files/greg-2.0.0-guile2.patch | 14 ++
 dev-scheme/greg/greg-2.0.0-r1.ebuild  |  7 +--
 2 files changed, 19 insertions(+), 2 deletions(-)

diff --git a/dev-scheme/greg/files/greg-2.0.0-guile2.patch 
b/dev-scheme/greg/files/greg-2.0.0-guile2.patch
new file mode 100644
index 000..7b78fc9
--- /dev/null
+++ b/dev-scheme/greg/files/greg-2.0.0-guile2.patch
@@ -0,0 +1,14 @@
+--- greg-2.0.0/configure.ac.old2012-09-23 13:25:24.0 +0200
 greg-2.0.0/configure.ac2012-09-23 13:25:31.0 +0200
+@@ -48,7 +48,10 @@
+ AC_HEADER_STDC
+ AC_HEADER_TIME
+ AC_HEADER_SYS_WAIT
+-AC_CHECK_HEADERS(libc.h limits.h malloc.h memory.h string.h signal.h 
sys/file.h sys/fcntl.h sys/ioctl.h sys/stropts.h unistd.h utime.h libguile.h 
errno.h)
++AC_CHECK_HEADERS(libc.h limits.h malloc.h memory.h string.h signal.h 
sys/file.h sys/fcntl.h sys/ioctl.h sys/stropts.h unistd.h utime.h errno.h)
++
++CFLAGS=`GUILE_AUTOCOMPILE=0 $GUILECONFIG compile`
++AC_CHECK_HEADER(libguile.h)
+ 
+ 
+ # Checks for typedefs, structures, and compiler characteristics.

diff --git a/dev-scheme/greg/greg-2.0.0-r1.ebuild 
b/dev-scheme/greg/greg-2.0.0-r1.ebuild
index f0a7a83..cadfdb2 100644
--- a/dev-scheme/greg/greg-2.0.0-r1.ebuild
+++ b/dev-scheme/greg/greg-2.0.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -20,7 +20,10 @@ IUSE="static-libs"
 RDEPEND=">=dev-scheme/guile-1.8"
 DEPEND=""
 
-PATCHES=( "${FILESDIR}"/${P}-test.patch )
+PATCHES=(
+   "${FILESDIR}"/${P}-test.patch
+   "${FILESDIR}"/${P}-guile2.patch
+   )
 
 src_test() {
cd test || die



[gentoo-commits] repo/gentoo:master commit in: dev-scheme/guile/

2016-08-04 Thread Amy Winston
commit: 46acdf5227897c3e7e49f4ad3671938df3eaaf70
Author: Amy Winston  gentoo  org>
AuthorDate: Fri Aug  5 04:34:03 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Fri Aug  5 04:46:53 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46acdf52

dev-scheme/guile: add missing dep bug #590516

Package-Manager: portage-2.2.28

 dev-scheme/guile/guile-2.0.12.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-scheme/guile/guile-2.0.12.ebuild 
b/dev-scheme/guile/guile-2.0.12.ebuild
index 451ec8c..b8fb41c 100644
--- a/dev-scheme/guile/guile-2.0.12.ebuild
+++ b/dev-scheme/guile/guile-2.0.12.ebuild
@@ -19,6 +19,7 @@ RDEPEND="
dev-libs/gmp:=
virtual/libffi
dev-libs/libltdl:=
+   dev-libs/libunistring
sys-devel/libtool
sys-libs/ncurses:="
 DEPEND="${RDEPEND}



[gentoo-commits] repo/gentoo:master commit in: profiles/arch/ia64/, profiles/arch/sparc/, profiles/arch/hppa/, ...

2016-08-04 Thread Amy Winston
commit: 3d3809ead3c43859db7adb627761097c0887c391
Author: Amy Winston  gentoo  org>
AuthorDate: Fri Aug  5 03:56:20 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Fri Aug  5 04:46:53 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d3809ea

profiles: mask guile-2.0.12 ppc*/alpha/hppa/ia64/sparc

 profiles/arch/alpha/package.mask   | 8 ++--
 profiles/arch/hppa/package.mask| 9 +
 profiles/arch/ia64/package.mask| 7 ++-
 profiles/arch/powerpc/package.mask | 7 ++-
 profiles/arch/sparc/package.mask   | 8 ++--
 5 files changed, 33 insertions(+), 6 deletions(-)

diff --git a/profiles/arch/alpha/package.mask b/profiles/arch/alpha/package.mask
index 986cea8..3963c8c 100644
--- a/profiles/arch/alpha/package.mask
+++ b/profiles/arch/alpha/package.mask
@@ -1,8 +1,12 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
+# Amy Winston <amy...@gentoo.org> (04 August 2016)
+# Necessary dependency dev-libs/libunistring
+# not keyworded bug #590520
+>=dev-scheme/guile-2.0.12
+
 # Alexey Shvetsov <ale...@gentoo.org> (21 May 2012)
 # Need deps pecl-apc and pecl-uploadprogress bug #416897
 >=www-apps/drupal-7.14
-

diff --git a/profiles/arch/hppa/package.mask b/profiles/arch/hppa/package.mask
new file mode 100644
index 000..60bdc19
--- /dev/null
+++ b/profiles/arch/hppa/package.mask
@@ -0,0 +1,9 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+# Amy Winston <amy...@gentoo.org> (04 August 2016)
+# Necessary dependency dev-libs/libunistring
+# not keyworded bug #590520
+>=dev-scheme/guile-2.0.12
+

diff --git a/profiles/arch/ia64/package.mask b/profiles/arch/ia64/package.mask
index 22c99bd..6cec8f4 100644
--- a/profiles/arch/ia64/package.mask
+++ b/profiles/arch/ia64/package.mask
@@ -1,7 +1,12 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
+# Amy Winston <amy...@gentoo.org> (04 August 2016)
+# Necessary dependency dev-libs/libunistring
+# not keyworded bug #590520
+>=dev-scheme/guile-2.0.12
+
 # Alexis Ballier <aball...@gentoo.org> (27 Jun 2013)
 # TeX Live 2013 mask.
 # kpathsea has to be there because it has config files without /usr/share/texmf

diff --git a/profiles/arch/powerpc/package.mask 
b/profiles/arch/powerpc/package.mask
index d2c8b06..7526368 100644
--- a/profiles/arch/powerpc/package.mask
+++ b/profiles/arch/powerpc/package.mask
@@ -1,7 +1,12 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
+# Amy Winston <amy...@gentoo.org> (04 August 2016)
+# Necessary dependency dev-libs/libunistring
+# not keyworded bug #590520
+>=dev-scheme/guile-2.0.12
+
 # Brent Baude <ran...@gentoo.org> (20 Nov 2012)
 # Masking kgcc64 now that toolchain is biarch
 sys-devel/kgcc64

diff --git a/profiles/arch/sparc/package.mask b/profiles/arch/sparc/package.mask
index 3cbb2d7..260d0ce 100644
--- a/profiles/arch/sparc/package.mask
+++ b/profiles/arch/sparc/package.mask
@@ -1,7 +1,12 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
+# Amy Winston <amy...@gentoo.org> (04 August 2016)
+# Necessary dependency dev-libs/libunistring
+# not keyworded bug #590520
+>=dev-scheme/guile-2.0.12
+
 # Patrice Clement <monsie...@gentoo.org> (30 Oct 2015)
 # Requires dependencies that are not stable on sparc yet.
 # See https://qa-reports.gentoo.org/output/gentoo-ci/7182f7a/5.html#l2294
@@ -61,4 +66,3 @@ sys-devel/kgcc64
 >=dev-texlive/texlive-pictures-2013
 >=dev-texlive/texlive-genericrecommended-2013
 >=dev-texlive/texlive-publishers-2013
-



[gentoo-commits] repo/gentoo:master commit in: dev-scheme/guile/

2016-08-04 Thread Amy Winston
commit: 62dd55e01345b9faf8dd4ab9bf7c7933fe63b322
Author: Amy Winston  gentoo  org>
AuthorDate: Thu Aug  4 20:32:33 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Thu Aug  4 20:33:15 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62dd55e0

dev-scheme/guile: remove unused useflag

Package-Manager: portage-2.2.28

 dev-scheme/guile/guile-2.0.12.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-scheme/guile/guile-2.0.12.ebuild 
b/dev-scheme/guile/guile-2.0.12.ebuild
index 485682a..451ec8c 100644
--- a/dev-scheme/guile/guile-2.0.12.ebuild
+++ b/dev-scheme/guile/guile-2.0.12.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://www.gnu.org/software/guile/;
 SRC_URI="mirror://gnu/guile/${P}.tar.gz"
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux 
~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
 LICENSE="LGPL-3+"
-IUSE="debug debug-malloc +deprecated networking nls +regex static-libs 
+threads"
+IUSE="debug debug-malloc +deprecated networking nls +regex +threads"
 
 # emacs useflag removal not working
 



[gentoo-commits] repo/gentoo:master commit in: dev-scheme/guile/

2016-08-04 Thread Amy Winston
commit: ae5cef0546efda8d02fb8b25c69b82db272b13a0
Author: Amy Winston  gentoo  org>
AuthorDate: Thu Aug  4 20:26:59 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Thu Aug  4 20:26:59 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae5cef05

dev-scheme/guile: version bump 2.0.12 bug #355355

Package-Manager: portage-2.2.28

 dev-scheme/guile/Manifest|  1 +
 dev-scheme/guile/guile-2.0.12.ebuild | 81 
 2 files changed, 82 insertions(+)

diff --git a/dev-scheme/guile/Manifest b/dev-scheme/guile/Manifest
index a04fe8e..de8aa34 100644
--- a/dev-scheme/guile/Manifest
+++ b/dev-scheme/guile/Manifest
@@ -1 +1,2 @@
 DIST guile-1.8.8.tar.gz 3956654 SHA256 
c3471fed2e72e5b04ad133bbaaf16369e8360283679bcf19800bc1b381024050 SHA512 
ede6feb90cd419d8763feb8c5169275490a653919573c4dfced025b74cf591072b3a10ffb9a3f6ee3fe7b0a0956ffcf434e0859b421455c8349cea56bf427db0
 WHIRLPOOL 
104810030b5dae16805595a5b398e5a7e600771b64b08d5ff686036e2f273dcec3829a16e4cdb1dbb9db5813f2e225476f83e0535a789bc570fc2fc15a76dbe2
+DIST guile-2.0.12.tar.gz 7421088 SHA256 
8e382930ea17bc547b22349bba819caf61313f6de9ed110e7d87f1ec68349026 SHA512 
638562b18bca8f5192ea116f89de5802c1193440c6394bbc2aad873a5b897dc9a2a05f05208c089437626d25ea4ab016bea56feb04a8cdea26d7e495cd5b3a7b
 WHIRLPOOL 
4485e2820c9ce73370d6eb41fe81e8d6135d4e266dce396c4ec42c0ac214f3c36d9fa36c8456ef6587f0213577c89d8cbd9cc2a8e3de9665a3a4b97736ac731e

diff --git a/dev-scheme/guile/guile-2.0.12.ebuild 
b/dev-scheme/guile/guile-2.0.12.ebuild
new file mode 100644
index 000..485682a
--- /dev/null
+++ b/dev-scheme/guile/guile-2.0.12.ebuild
@@ -0,0 +1,81 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+inherit flag-o-matic
+
+DESCRIPTION="GNU Ubiquitous Intelligent Language for Extensions"
+HOMEPAGE="https://www.gnu.org/software/guile/;
+SRC_URI="mirror://gnu/guile/${P}.tar.gz"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux 
~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+LICENSE="LGPL-3+"
+IUSE="debug debug-malloc +deprecated networking nls +regex static-libs 
+threads"
+
+# emacs useflag removal not working
+
+RDEPEND="
+   >=dev-libs/boehm-gc-7.0[threads?]
+   dev-libs/gmp:=
+   virtual/libffi
+   dev-libs/libltdl:=
+   sys-devel/libtool
+   sys-libs/ncurses:="
+DEPEND="${RDEPEND}
+   virtual/pkgconfig
+   sys-apps/texinfo
+   sys-devel/gettext"
+
+SLOT="12"
+MAJOR="2.0"
+
+DOCS=( GUILE-VERSION HACKING README )
+
+src_configure() {
+   # see bug #178499
+   filter-flags -ftree-vectorize
+
+   # will fail for me if posix is disabled or without modules -- hkBst
+   econf \
+   --disable-error-on-warning \
+   --disable-rpath \
+   --enable-posix \
+   --with-modules \
+   $(use_enable debug guile-debug) \
+   $(use_enable debug-malloc) \
+   $(use_enable deprecated) \
+   $(use_enable networking) \
+   $(use_enable nls) \
+   $(use_enable regex) \
+   $(use_with threads)
+}
+
+src_install() {
+   default
+
+   # From Novell
+   #   https://bugzilla.novell.com/show_bug.cgi?id=874028#c0
+   dodir /usr/share/gdb/auto-load/$(get_libdir)
+   mv "${D}"/usr/$(get_libdir)/libguile-*-gdb.scm 
"${D}"/usr/share/gdb/auto-load/$(get_libdir) || die
+
+   # texmacs needs this, closing bug #23493
+   dodir /etc/env.d
+   echo "GUILE_LOAD_PATH=\"${EPREFIX}/usr/share/guile/${MAJOR}\"" > 
"${ED}"/etc/env.d/50guile || die
+
+   # necessary for registering slib, see bug 206896
+   keepdir /usr/share/guile/site
+
+   # Dark magic necessary for some deps
+   dosym /usr/$(get_libdir)/libguile-2.0.so /usr/$(get_libdir)/libguile.so
+}
+
+pkg_postinst() {
+   [[ "${EROOT}" == "/" ]] && pkg_config
+}
+
+pkg_config() {
+   if has_version '>dev-scheme/slib-3.2.4'; then
+   einfo "Registering slib with guile"
+   install_slib_for_guile
+   fi
+}



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

2016-08-03 Thread Amy Winston
commit: d958b6f7fbce286577f704015e342b3b2cf846bf
Author: Amy Winston  gentoo  org>
AuthorDate: Wed Aug  3 06:24:14 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Wed Aug  3 06:24:14 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d958b6f7

dev-libs/fribidi: tests fixed bug #397347

Package-Manager: portage-2.2.28

 dev-libs/fribidi/fribidi-0.19.7.ebuild | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/dev-libs/fribidi/fribidi-0.19.7.ebuild 
b/dev-libs/fribidi/fribidi-0.19.7.ebuild
index b8ae061..a69a8e0 100644
--- a/dev-libs/fribidi/fribidi-0.19.7.ebuild
+++ b/dev-libs/fribidi/fribidi-0.19.7.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$
 
@@ -17,8 +17,6 @@ SLOT="0"
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos 
~x64-solaris ~x86-solaris"
 IUSE="static-libs"
 
-RESTRICT="test" #397347
-
 RDEPEND=">=dev-libs/glib-2.34.3:2[${MULTILIB_USEDEP}]"
 DEPEND="${RDEPEND}
virtual/pkgconfig"



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

2016-08-02 Thread Amy Winston
commit: 23ebe790439a4b79f4acdbe4fc28d1fc151c718d
Author: Amy Winston  gentoo  org>
AuthorDate: Tue Aug  2 20:51:56 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Tue Aug  2 20:51:56 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23ebe790

net-im/skype: remove myself as maintainer

Package-Manager: portage-2.2.28

 net-im/skype/metadata.xml | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/net-im/skype/metadata.xml b/net-im/skype/metadata.xml
index 90baf5b..ace099c 100644
--- a/net-im/skype/metadata.xml
+++ b/net-im/skype/metadata.xml
@@ -1,9 +1,7 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-  
-amy...@gentoo.org
-  
+
   Skype is the next phenomenon from the people who
brought you KaZaA. Just like KaZaA, Skype uses P2P (peer-to-peer)
technology to connect you to other users  not to share files this



[gentoo-commits] repo/gentoo:master commit in: dev-scheme/guile/files/, dev-scheme/guile/

2016-07-29 Thread Amy Winston
commit: 2f7dd04bc9415896ed8b86a8badfaa12fd11e5f5
Author: Amy Winston  gentoo  org>
AuthorDate: Fri Jul 29 13:12:47 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Fri Jul 29 13:12:47 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f7dd04b

dev-scheme/guile: remove broken version 2.0.0

Package-Manager: portage-2.2.28

 dev-scheme/guile/Manifest  |  1 -
 .../files/guile-2.0.0-clang-apicontrol-texi.patch  | 12 ---
 dev-scheme/guile/guile-2.0.0.ebuild| 95 --
 3 files changed, 108 deletions(-)

diff --git a/dev-scheme/guile/Manifest b/dev-scheme/guile/Manifest
index 2b9298c..a04fe8e 100644
--- a/dev-scheme/guile/Manifest
+++ b/dev-scheme/guile/Manifest
@@ -1,2 +1 @@
 DIST guile-1.8.8.tar.gz 3956654 SHA256 
c3471fed2e72e5b04ad133bbaaf16369e8360283679bcf19800bc1b381024050 SHA512 
ede6feb90cd419d8763feb8c5169275490a653919573c4dfced025b74cf591072b3a10ffb9a3f6ee3fe7b0a0956ffcf434e0859b421455c8349cea56bf427db0
 WHIRLPOOL 
104810030b5dae16805595a5b398e5a7e600771b64b08d5ff686036e2f273dcec3829a16e4cdb1dbb9db5813f2e225476f83e0535a789bc570fc2fc15a76dbe2
-DIST guile-2.0.0.tar.gz 5564966 SHA256 
7ba4ebd54d5b16840424172a14b2d10c76821bda9336fab5055b29fc288ec67b SHA512 
44b5b703455eed28fc3981a067d8e0afd47b73bceb4d161c8d1db763db59adeb4add661424a41691bd00c7f4c54c5b02fefe9cd6cf94250eabab04848a2db3b2
 WHIRLPOOL 
066fcec5cffc217e233eb7c83eaef4fbbdaac7ada15acef5ebb2fbb937b8060c795a365bdc4c361965e452258db6d87bc637706370d951a2ed57f7337c52c06c

diff --git a/dev-scheme/guile/files/guile-2.0.0-clang-apicontrol-texi.patch 
b/dev-scheme/guile/files/guile-2.0.0-clang-apicontrol-texi.patch
deleted file mode 100644
index cbd3f46..000
--- a/dev-scheme/guile/files/guile-2.0.0-clang-apicontrol-texi.patch
+++ /dev/null
@@ -1,12 +0,0 @@
 a/doc/ref/api-control.texi 2016-06-23 03:35:29.973976657 -0500
-+++ b/doc/ref/api-control.texi 2016-06-23 03:33:36.589969005 -0500
-@@ -1492,8 +1492,8 @@
- @deftypefnx {C Function} void scm_wrong_type_arg (char *@var{subr}, int 
@var{argnum}, SCM @var{bad_value})
- @deftypefnx {C Function} void scm_wrong_type_arg_msg (char *@var{subr}, int 
@var{argnum}, SCM @var{bad_value}, const char *@var{expected})
- @deftypefnx {C Function} void scm_memory_error (char *@var{subr})
--Throw an error with the various keys described above.
- @deftypefnx {C Function} void scm_misc_error (const char *@var{subr}, const 
char *@var{message}, SCM @var{args})
-+Throw an error with the various keys described above.
- 
- In @code{scm_wrong_num_args}, @var{proc} should be a Scheme symbol
- which is the name of the procedure incorrectly invoked.  The other

diff --git a/dev-scheme/guile/guile-2.0.0.ebuild 
b/dev-scheme/guile/guile-2.0.0.ebuild
deleted file mode 100644
index e5204ae..000
--- a/dev-scheme/guile/guile-2.0.0.ebuild
+++ /dev/null
@@ -1,95 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-inherit flag-o-matic elisp-common
-
-DESCRIPTION="GNU Ubiquitous Intelligent Language for Extensions"
-HOMEPAGE="https://www.gnu.org/software/guile/;
-SRC_URI="mirror://gnu/guile/${P}.tar.gz"
-
-LICENSE="LGPL-3"
-KEYWORDS="~amd64"
-IUSE="networking +regex +deprecated emacs nls debug-freelist debug-malloc 
debug +threads"
-
-RDEPEND="
-   dev-libs/gmp
-   >=sys-devel/libtool-1.5.6
-   sys-devel/gettext
-   virtual/pkgconfig
-   dev-libs/libunistring
-   >=dev-libs/boehm-gc-7.0[threads?]
-   virtual/libffi
-   sys-libs/ncurses
-   emacs? ( virtual/emacs )"
-DEPEND="${RDEPEND}
-   sys-apps/texinfo"
-
-SLOT="2"
-MAJOR="2.0"
-
-PATCHES=(
-   "${FILESDIR}/${P}-clang-apicontrol-texi.patch"
-   )
-
-src_configure() {
-   # see bug #178499
-   filter-flags -ftree-vectorize
-
-   # will fail for me if posix is disabled or without modules -- hkBst
-   econf \
-   --disable-error-on-warning \
-   --disable-static \
-   --enable-posix \
-   $(use_enable networking) \
-   $(use_enable regex) \
-   $(use_enable deprecated) \
-   $(use_enable nls) \
-   --disable-rpath \
-   $(use_enable debug-freelist) \
-   $(use_enable debug-malloc) \
-   $(use_enable debug guile-debug) \
-   $(use_with threads) \
-   --with-modules # \
-#  EMACS=no
-}
-
-src_install() {
-   default
-
-   dodoc GUILE-VERSION HACKING
-
-   # texmacs needs this, closing bug #23493
-   dodir /etc/env.d
-   echo "GUILE_LOAD_PATH=\"${EPREFIX}/usr/share/guile/${MAJOR}\"" \
-   > "${ED}"/etc/env.d/50guile || die
-
-   # necessary for registering slib, see bug 206896
-   keepdir /u

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

2016-07-29 Thread Amy Winston
commit: 7c221f66b624d882ee0ac240242600b1d8b0bf1d
Author: Amy Winston  gentoo  org>
AuthorDate: Fri Jul 29 13:14:24 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Fri Jul 29 13:14:24 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c221f66

profiles: remove package mask for guile-2

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 107227d..1604520 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -686,15 +686,6 @@ kde-misc/kgtk
 # Masked for security bug #294253, use only at your own risk!
 =media-libs/fmod-3*
 
-# Marijn Schouten <hk...@gentoo.org> (07 April 2011)
-# Masked for number of issues, but can be used to
-# test against if people are impatient ;P
-# Known issues:
-# - Broken emacs support (ulm has promised to look)
-# - doesn't build when boehm-gc is built without threads
-# - no SLOTting yet!
-=dev-scheme/guile-2.0.0
-
 # Mike Frysinger <vap...@gentoo.org> (07 Mar 2010)
 # Very old packages that people should have upgraded away from
 # long ago.  Courtesy mask ... time to upgrade.



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

2016-07-28 Thread Amy Winston
commit: d7ce3e199f9d03c3b395149abede0526856f64bb
Author: Amy Winston  gentoo  org>
AuthorDate: Thu Jul 28 17:42:05 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Thu Jul 28 17:42:05 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7ce3e19

dev-python/click-log: version bumo 0.1.4

Package-Manager: portage-2.2.28

 dev-python/click-log/Manifest   |  1 +
 dev-python/click-log/click-log-0.1.4.ebuild | 22 ++
 2 files changed, 23 insertions(+)

diff --git a/dev-python/click-log/Manifest b/dev-python/click-log/Manifest
index af2dc15..331af2a 100644
--- a/dev-python/click-log/Manifest
+++ b/dev-python/click-log/Manifest
@@ -1 +1,2 @@
 DIST click-log-0.1.3.tar.gz 3377 SHA256 
fd8dc8d65947ce6d6ee8ab3101fb0bb9015b9070730ada3f73ec761beb0ead4d SHA512 
7accdd5be62c7c76ec9b862d8dc91710473a46669778f39cb7e8e5fa56020ce0bd619fbe30453338a05d87cef971916f2c4f6d5c9cb9e4982ae32e7a885bd722
 WHIRLPOOL 
0c21711ced16b4263470e43765fd5787a0e3776150e7f0188a0eddc005c9d9d330c196565c273974a1e8b65d7ba42ca99b24ce3a4000bb5aeab431d7ecb78f90
+DIST click-log-0.1.4.tar.gz 9004 SHA256 
dc6275b7d8f87512a22d9806ccc845f474825edd82ad37925a36ba156c887570 SHA512 
0bd81c5ef8c5636b0321807f5bbfb1318480da865a5bde0235679dc053ff5ac7a662bf014cb2d444ccf8b7d840b576756536de2702ae4e43afe91a72653b678c
 WHIRLPOOL 
6aee5b5df76f3873dfe7e8af53816b85edf795bf49e7f8061461eb6cb4a72fe0b1af35bd1b38d73ac08f714beed393d20849f6d760150d75297ff7fb1cdfd2d5

diff --git a/dev-python/click-log/click-log-0.1.4.ebuild 
b/dev-python/click-log/click-log-0.1.4.ebuild
new file mode 100644
index 000..9bcaa25
--- /dev/null
+++ b/dev-python/click-log/click-log-0.1.4.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+PYTHON_COMPAT=( python{2_7,3_3,3_4} )
+
+inherit distutils-r1
+
+DESCRIPTION="Logging integration for Click."
+HOMEPAGE="https://github.com/click-contrib/click-log 
https://pypi.python.org/pypi/click-log;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="dev-python/click"
+RDEPEND="${DEPEND}"
+
+DOCS=( README.rst )



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

2016-07-28 Thread Amy Winston
commit: 231da76e8786717fd1dd787e02e52f2d65c0783e
Author: Amy Winston  gentoo  org>
AuthorDate: Thu Jul 28 16:48:09 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Thu Jul 28 17:01:17 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=231da76e

dev-python/atomicwrites: version bump 0.1.9

Package-Manager: portage-2.2.28

 dev-python/atomicwrites/Manifest  |  1 +
 dev-python/atomicwrites/atomicwrites-0.1.9.ebuild | 22 ++
 2 files changed, 23 insertions(+)

diff --git a/dev-python/atomicwrites/Manifest b/dev-python/atomicwrites/Manifest
index c6b6afa..d401324 100644
--- a/dev-python/atomicwrites/Manifest
+++ b/dev-python/atomicwrites/Manifest
@@ -1 +1,2 @@
 DIST atomicwrites-0.1.8.tar.gz 14440 SHA256 
3274adb52bd3ae91d87ba923e0f21fd86c05b71bbaefe2ec0d6679c01f98dc8e SHA512 
51c03f875adec409663badb94e3214858e6cd190aa07b8ffb4c35be1f3acaa8b5a341f62b45f814308dbfbd391fd32df24618df70c36f27737853852963af25a
 WHIRLPOOL 
036304b72b6b7d45bf109f6c46a2eb4249c25cbd4aabeda93fc1c4761b13acf7a00c7b4be57990f5d9167a6851cde4bc5c98b4249411e4e361f1ea653b0aed16
+DIST atomicwrites-0.1.9.tar.gz 14475 SHA256 
7cdfcee8c064bc0ba30b0444ba0919ebafccf5b0b1916c8cde07e410042c4023 SHA512 
d7bf742c3cb1d5eee4921fca225b5d22e0fe18f2948fb7af44bc6817fc2b5d267fca0d42371d44730d3b557a400f9d6ce250ac3a05e1ce1d3600ec6569fa7aa6
 WHIRLPOOL 
583b60d20d06126bff40cf73f560995c4ccb1c5becc686dac946f0542c74e1373edf3d9f9f67042f2eb3697ad68601fcc8f9b505482c085da7fb07ca1eab8d51

diff --git a/dev-python/atomicwrites/atomicwrites-0.1.9.ebuild 
b/dev-python/atomicwrites/atomicwrites-0.1.9.ebuild
new file mode 100644
index 000..88f0fb6
--- /dev/null
+++ b/dev-python/atomicwrites/atomicwrites-0.1.9.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+PYTHON_COMPAT=( python{2_7,3_3,3_4} )
+
+inherit distutils-r1
+
+DESCRIPTION="Atomic file writes."
+HOMEPAGE="https://github.com/untitaker/python-atomicwrites;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND=""
+RDEPEND="${DEPEND}"
+
+DOCS=( README.rst )



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

2016-07-28 Thread Amy Winston
commit: f1f6a27fd19e82edb456b86ab2fb6343e125fc78
Author: Amy Winston  gentoo  org>
AuthorDate: Thu Jul 28 16:37:04 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Thu Jul 28 16:37:04 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1f6a27f

dev-python/vdirsyncer: version bump 0.11.2 bug #589870

Package-Manager: portage-2.2.28

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

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

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



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

2016-07-25 Thread Amy Winston
commit: bbd3998a90dd8d83c26639a1b3e42b83826f7059
Author: Amy Winston  gentoo  org>
AuthorDate: Mon Jul 25 20:30:51 2016 +
Commit:     Amy Winston  gentoo  org>
CommitDate: Mon Jul 25 20:30:51 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bbd3998a

media-video/vlc: fix compiler type check

Package-Manager: portage-2.2.28

 media-video/vlc/vlc-2.2.1-r1.ebuild | 8 
 media-video/vlc/vlc-2.2.4.ebuild| 8 
 media-video/vlc/vlc-2.2..ebuild | 8 
 media-video/vlc/vlc-.ebuild | 8 
 4 files changed, 16 insertions(+), 16 deletions(-)

diff --git a/media-video/vlc/vlc-2.2.1-r1.ebuild 
b/media-video/vlc/vlc-2.2.1-r1.ebuild
index b2dbdf0..119a824 100644
--- a/media-video/vlc/vlc-2.2.1-r1.ebuild
+++ b/media-video/vlc/vlc-2.2.1-r1.ebuild
@@ -15,7 +15,7 @@ if [ "${PV%}" != "${PV}" ] ; then
fi
 fi
 
-inherit eutils multilib autotools toolchain-funcs flag-o-matic virtualx ${SCM}
+inherit eutils multilib autotools toolchain-funcs flag-o-matic versionator 
virtualx ${SCM}
 
 MY_PV="${PV/_/-}"
 MY_PV="${MY_PV/-beta/-test}"
@@ -213,8 +213,8 @@ REQUIRED_USE="
 S="${WORKDIR}/${MY_P}"
 
 pkg_setup() {
-   if [[ "${MERGE_TYPE}" != "binary" && "$(tc-getCC)" == *"gcc"* ]] ; then
-   if [[ $(gcc-major-version) < 4 || ( $(gcc-major-version) == 4 
&& $(gcc-minor-version) < 5 ) ]] ; then
+   if [[ "${MERGE_TYPE}" != "binary" ]] && tc-is-gcc ; then
+   if ! version_is_at_least 4.5 $(gcc-version) ; then
die "You need to have at least >=sys-devel/gcc-4.5 to 
build and/or have a working vlc, see bug #426754."
fi
fi
@@ -236,7 +236,7 @@ src_prepare() {
# config.h:793: warning: ignoring #pragma STDC FP_CONTRACT 
[-Wunknown-pragmas]
#
# https://gcc.gnu.org/c99status.html
-   if [[ "$(tc-getCC)" == *"gcc"* ]] ; then
+   if tc-is-gcc ; then
sed -i 's/ifndef __FAST_MATH__/if 0/g' configure.ac || die
fi
 

diff --git a/media-video/vlc/vlc-2.2.4.ebuild b/media-video/vlc/vlc-2.2.4.ebuild
index e874b8c..1ae2aa5 100644
--- a/media-video/vlc/vlc-2.2.4.ebuild
+++ b/media-video/vlc/vlc-2.2.4.ebuild
@@ -15,7 +15,7 @@ if [ "${PV%}" != "${PV}" ] ; then
fi
 fi
 
-inherit eutils multilib autotools toolchain-funcs flag-o-matic virtualx ${SCM}
+inherit eutils multilib autotools toolchain-funcs flag-o-matic versionator 
virtualx ${SCM}
 
 MY_PV="${PV/_/-}"
 MY_PV="${MY_PV/-beta/-test}"
@@ -239,8 +239,8 @@ PATCHES=(
 S="${WORKDIR}/${MY_P}"
 
 pkg_setup() {
-   if [[ "${MERGE_TYPE}" != "binary" && "$(tc-getCC)" == *"gcc"* ]] ; then
-   if [[ $(gcc-major-version) < 4 || ( $(gcc-major-version) == 4 
&& $(gcc-minor-version) < 5 ) ]] ; then
+   if [[ "${MERGE_TYPE}" != "binary" ]] && tc-is-gcc ; then
+   if ! version_is_at_least 4.5 $(gcc-version) ; then
die "You need to have at least >=sys-devel/gcc-4.5 to 
build and/or have a working vlc, see bug #426754."
fi
fi
@@ -262,7 +262,7 @@ src_prepare() {
# config.h:793: warning: ignoring #pragma STDC FP_CONTRACT 
[-Wunknown-pragmas]
#
# https://gcc.gnu.org/c99status.html
-   if [[ "$(tc-getCC)" == *"gcc"* ]] ; then
+   if tc-is-gcc ; then
sed -i 's/ifndef __FAST_MATH__/if 0/g' configure.ac || die
fi
 

diff --git a/media-video/vlc/vlc-2.2..ebuild 
b/media-video/vlc/vlc-2.2..ebuild
index 2ca5caf..a68d243 100644
--- a/media-video/vlc/vlc-2.2..ebuild
+++ b/media-video/vlc/vlc-2.2..ebuild
@@ -15,7 +15,7 @@ if [ "${PV%}" != "${PV}" ] ; then
fi
 fi
 
-inherit eutils multilib autotools toolchain-funcs flag-o-matic virtualx ${SCM}
+inherit eutils multilib autotools toolchain-funcs flag-o-matic versionator 
virtualx ${SCM}
 
 MY_PV="${PV/_/-}"
 MY_PV="${MY_PV/-beta/-test}"
@@ -209,8 +209,8 @@ REQUIRED_USE="
 S="${WORKDIR}/${MY_P}"
 
 pkg_setup() {
-   if [[ "${MERGE_TYPE}" != "binary" && "$(tc-getCC)" == *"gcc"* ]] ; then
-   if [[ $(gcc-major-version) < 4 || ( $(gcc-major-version) == 4 
&& $(gcc-minor-version) < 5 ) ]] ; then
+   if [[ "${MERGE_TYPE}" != "binary" ]] && tc-is-gcc ; then
+   if ! version_is_at_least 4.5 $(gcc-version) ; then
die "You need to have at least >=sys-devel/gcc-4.5 to 
build and/or have a working vlc, see bug #426754."
fi
 

  1   2   3   4   5   >