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

2016-05-07 Thread Dirkjan Ochtman
commit: 9d194cd45faf74ca5bd95f3d40322a794e8be177
Author: Dirkjan Ochtman  gentoo  org>
AuthorDate: Sat May  7 07:53:47 2016 +
Commit: Dirkjan Ochtman  gentoo  org>
CommitDate: Sat May  7 07:53:47 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d194cd4

www-apps/trac: version bump to 1.0.11

Package-Manager: portage-2.2.26

 www-apps/trac/Manifest   |   1 +
 www-apps/trac/trac-1.0.11.ebuild | 129 +++
 2 files changed, 130 insertions(+)

diff --git a/www-apps/trac/Manifest b/www-apps/trac/Manifest
index 9b2415b..07b9cc8 100644
--- a/www-apps/trac/Manifest
+++ b/www-apps/trac/Manifest
@@ -1,3 +1,4 @@
 DIST Trac-1.0.10.tar.gz 3655342 SHA256 
cb439d2ef39b71673299bffe9d042bdcd3bea9d2d02eab598bc820d415953ecd SHA512 
16567f9e9843a3a682f9b3f65e57ab85a7429f20ea27f09ebf72860bbf6c6667cc656a6e053e39e7b03b1eb407e330d13380f958c139c1d208d4ba8948599aa6
 WHIRLPOOL 
1ec5e52f4aec2e5dc0816632961bdfd2312b9da5b3be00f1b73021f1d5f9dd46bf9c51b13442bbabd2c770f49c5aed7674b5426b11c2208d1dd49b30137b8b57
+DIST Trac-1.0.11.tar.gz 3661250 SHA256 
c3d0bdee4eebf107488e15248b54085da18a37508b76bfe647f6b74de471dba9 SHA512 
c250853eba66f3e3996731f3cff6505c71c06b323a25d19ae311beeb9f45323b01687ed7bc865fba04c549a204eea1e7af5da000ab8706cf34dd0fcf39b42bd6
 WHIRLPOOL 
8be5bbd4eaca929d0be44f6024ba7852e097e78facdeb9c8b05580a2d25163d31def50882ad5e02bf2e4d36228de03938bb556be161e41ee39cf8cf34b2a6e1c
 DIST Trac-1.0.4.tar.gz 3579886 SHA256 
a1d564c5b612306856dd26851270b12fbba91bab1bc146b66d4cc248be1a172e SHA512 
1186c3d36b7b8eae6595dcf5dfc30aed9302d46dae2019da8178a2656065fd5675683331474118f3da47f9ba75fd213ad1964bad29c7892423ab1fa7371a8131
 WHIRLPOOL 
2be04e6a683f88923b2f9b09fdee4b5de24779f399f32763674512f71f4f03e72b74592e0dc49e6693dc1c6c1c4ebdfb680eac72146b9fdb3735db50a5e8c9fb
 DIST Trac-1.0.9.tar.gz 3642845 SHA256 
9ed3f0a2039c46132d10f35c211f9f6ee953339cc08492a41d1bf8741d6eebfa SHA512 
af429db720049ab344ce3c3b430dcf0ab7530013f59ccd2334633de9babc3f31b14829b9b5aa48aa05f614ca72d1d557953c58bbfb93faae2267afeac72e6304
 WHIRLPOOL 
4005102b1109aac94728d22151c2192a38f9ab91af0227a24dff1a2e2097e67ceafa0cef0f307f1a1ddb1999c109d142bbb739107d4047dc296e6a8396a9427a

diff --git a/www-apps/trac/trac-1.0.11.ebuild b/www-apps/trac/trac-1.0.11.ebuild
new file mode 100644
index 000..44e59b2
--- /dev/null
+++ b/www-apps/trac/trac-1.0.11.ebuild
@@ -0,0 +1,129 @@
+# 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?'
+
+DISTUTILS_SINGLE_IMPL=Yes
+
+inherit distutils-r1 eutils user webapp
+
+MY_PV=${PV/_p/.post}
+MY_P=Trac-${MY_PV}
+
+DESCRIPTION="Enhanced wiki and issue tracking system for software development 
projects"
+HOMEPAGE="http://trac.edgewall.com/ https://pypi.python.org/pypi/Trac";
+SRC_URI="http://ftp.edgewall.com/pub/trac/${MY_P}.tar.gz";
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd"
+IUSE="cgi fastcgi i18n +highlight +restructuredtext mysql postgres +sqlite 
subversion test"
+REQUIRED_USE="|| ( mysql postgres sqlite )"
+
+RDEPEND="
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   dev-python/genshi[${PYTHON_USEDEP}]
+   dev-python/pytz[${PYTHON_USEDEP}]
+   i18n? ( >=dev-python/Babel-0.9.5[${PYTHON_USEDEP}] )
+   highlight? (
+   || (
+   dev-python/pygments[${PYTHON_USEDEP}]
+   app-text/silvercity
+   app-text/pytextile
+   app-text/enscript
+   )
+   )
+   restructuredtext? ( dev-python/docutils[${PYTHON_USEDEP}] )
+   cgi? ( virtual/httpd-cgi )
+   fastcgi? ( virtual/httpd-fastcgi )
+   mysql? ( dev-python/mysql-python[${PYTHON_USEDEP}] )
+   postgres? ( >=dev-python/psycopg-2[${PYTHON_USEDEP}] )
+   sqlite? ( >=dev-db/sqlite-3.3.4:3 )
+   subversion? ( dev-vcs/subversion[python,${PYTHON_USEDEP}] )
+   "
+DEPEND="${RDEPEND}
+   test? (
+   dev-python/twill[${PYTHON_USEDEP}]
+   dev-python/lxml[${PYTHON_USEDEP}]
+   dev-python/configobj[${PYTHON_USEDEP}]
+   )"
+
+S="${WORKDIR}/${MY_P}"
+
+WEBAPP_MANUAL_SLOT="yes"
+
+pkg_setup() {
+   python-single-r1_pkg_setup
+   webapp_pkg_setup
+
+   enewgroup tracd
+   enewuser tracd -1 -1 -1 tracd
+}
+
+python_prepare_all() {
+   distutils-r1_python_prepare_all
+}
+
+src_test() {
+   distutils-r1_src_test
+}
+
+python_test() {
+   PYTHONPATH=. "${PYTHON}" trac/test.py || die "Tests fail with 
${EPYTHON}"
+}
+
+python_test_all() {
+   if use i18n; then
+   make check
+   fi
+}
+
+python_install() {
+   if use cgi; then
+   python_scriptinto "${MY_CGIBINDIR}"
+   python_doscript contrib/cgi-bin/trac.cgi
+   fi
+   if use fastcgi; then
+   python_scriptinto "${MY_CGIBINDIR}"
+ 

[gentoo-commits] repo/gentoo:master commit in: media-tv/v4l-dvb-saa716x/

2016-05-07 Thread Joerg Bornkessel
commit: 539403ea622b8a0a13505412a3f9e0034c5c720c
Author: Joerg Bornkessel  gentoo  org>
AuthorDate: Sat May  7 08:02:44 2016 +
Commit: Joerg Bornkessel  gentoo  org>
CommitDate: Sat May  7 08:02:44 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=539403ea

fix eapi6 support

Package-Manager: portage-2.2.28

 .../v4l-dvb-saa716x-0.0.1_p20141109-r2.ebuild| 12 +++-
 1 file changed, 7 insertions(+), 5 deletions(-)

diff --git a/media-tv/v4l-dvb-saa716x/v4l-dvb-saa716x-0.0.1_p20141109-r2.ebuild 
b/media-tv/v4l-dvb-saa716x/v4l-dvb-saa716x-0.0.1_p20141109-r2.ebuild
index 626fe2e..f6d626f 100644
--- a/media-tv/v4l-dvb-saa716x/v4l-dvb-saa716x-0.0.1_p20141109-r2.ebuild
+++ b/media-tv/v4l-dvb-saa716x/v4l-dvb-saa716x-0.0.1_p20141109-r2.ebuild
@@ -35,11 +35,13 @@ 
MODULE_NAMES="saa716x_ff(misc:${ROOT}/usr/src/linux:${S}/linux/drivers/media/com
 CONFIG_CHECK="DVB_CORE DVB_STV6110x DVB_STV090x"
 
 src_prepare() {
-   epatch "${FILESDIR}/OSD_RAW_CMD_patch_2.diff"
-   epatch "${FILESDIR}/v4l-dvb-saa716x-Makefilepatch-2.diff"
-   kernel_is ge 3 19 0 && epatch 
"${FILESDIR}/v4l-dvb-saa716x-3.19-set_gpio.patch"
-   kernel_is ge 4 2 0 && epatch 
"${FILESDIR}/v4l-dvb-saa716x-4.2-fix-compile.patch"
-   kernel_is ge 4 5 2 && epatch 
"${FILESDIR}/v4l-dvb-saa716x-4.5.2-fix-compile.patch"
+   default
+
+   eapply -p0 "${FILESDIR}/OSD_RAW_CMD_patch_2.diff"
+   eapply "${FILESDIR}/v4l-dvb-saa716x-Makefilepatch-2.diff"
+   kernel_is ge 3 19 0 && eapply 
"${FILESDIR}/v4l-dvb-saa716x-3.19-set_gpio.patch"
+   kernel_is ge 4 2 0 && eapply 
"${FILESDIR}/v4l-dvb-saa716x-4.2-fix-compile.patch"
+   kernel_is ge 4 5 2 && eapply 
"${FILESDIR}/v4l-dvb-saa716x-4.5.2-fix-compile.patch"
 }
 
 src_compile() {



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

2016-05-07 Thread Dirkjan Ochtman
commit: 4e50a18e1fce514fc9a0ca70285e0d24d4853749
Author: Dirkjan Ochtman  gentoo  org>
AuthorDate: Sat May  7 08:22:08 2016 +
Commit: Dirkjan Ochtman  gentoo  org>
CommitDate: Sat May  7 08:22:32 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e50a18e

www-apps/trac: remove old version

Package-Manager: portage-2.2.26

 www-apps/trac/Manifest  |   1 -
 www-apps/trac/trac-1.0.4.ebuild | 129 
 2 files changed, 130 deletions(-)

diff --git a/www-apps/trac/Manifest b/www-apps/trac/Manifest
index 07b9cc8..34ecb8a 100644
--- a/www-apps/trac/Manifest
+++ b/www-apps/trac/Manifest
@@ -1,4 +1,3 @@
 DIST Trac-1.0.10.tar.gz 3655342 SHA256 
cb439d2ef39b71673299bffe9d042bdcd3bea9d2d02eab598bc820d415953ecd SHA512 
16567f9e9843a3a682f9b3f65e57ab85a7429f20ea27f09ebf72860bbf6c6667cc656a6e053e39e7b03b1eb407e330d13380f958c139c1d208d4ba8948599aa6
 WHIRLPOOL 
1ec5e52f4aec2e5dc0816632961bdfd2312b9da5b3be00f1b73021f1d5f9dd46bf9c51b13442bbabd2c770f49c5aed7674b5426b11c2208d1dd49b30137b8b57
 DIST Trac-1.0.11.tar.gz 3661250 SHA256 
c3d0bdee4eebf107488e15248b54085da18a37508b76bfe647f6b74de471dba9 SHA512 
c250853eba66f3e3996731f3cff6505c71c06b323a25d19ae311beeb9f45323b01687ed7bc865fba04c549a204eea1e7af5da000ab8706cf34dd0fcf39b42bd6
 WHIRLPOOL 
8be5bbd4eaca929d0be44f6024ba7852e097e78facdeb9c8b05580a2d25163d31def50882ad5e02bf2e4d36228de03938bb556be161e41ee39cf8cf34b2a6e1c
-DIST Trac-1.0.4.tar.gz 3579886 SHA256 
a1d564c5b612306856dd26851270b12fbba91bab1bc146b66d4cc248be1a172e SHA512 
1186c3d36b7b8eae6595dcf5dfc30aed9302d46dae2019da8178a2656065fd5675683331474118f3da47f9ba75fd213ad1964bad29c7892423ab1fa7371a8131
 WHIRLPOOL 
2be04e6a683f88923b2f9b09fdee4b5de24779f399f32763674512f71f4f03e72b74592e0dc49e6693dc1c6c1c4ebdfb680eac72146b9fdb3735db50a5e8c9fb
 DIST Trac-1.0.9.tar.gz 3642845 SHA256 
9ed3f0a2039c46132d10f35c211f9f6ee953339cc08492a41d1bf8741d6eebfa SHA512 
af429db720049ab344ce3c3b430dcf0ab7530013f59ccd2334633de9babc3f31b14829b9b5aa48aa05f614ca72d1d557953c58bbfb93faae2267afeac72e6304
 WHIRLPOOL 
4005102b1109aac94728d22151c2192a38f9ab91af0227a24dff1a2e2097e67ceafa0cef0f307f1a1ddb1999c109d142bbb739107d4047dc296e6a8396a9427a

diff --git a/www-apps/trac/trac-1.0.4.ebuild b/www-apps/trac/trac-1.0.4.ebuild
deleted file mode 100644
index adb659c2..000
--- a/www-apps/trac/trac-1.0.4.ebuild
+++ /dev/null
@@ -1,129 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-PYTHON_REQ_USE='sqlite?'
-
-DISTUTILS_SINGLE_IMPL=Yes
-
-inherit distutils-r1 eutils user webapp
-
-MY_PV=${PV/_beta/b}
-MY_P=Trac-${MY_PV}
-
-DESCRIPTION="Trac is a minimalistic web-based project management, wiki and 
bug/issue tracking system"
-HOMEPAGE="http://trac.edgewall.com/ https://pypi.python.org/pypi/Trac";
-SRC_URI="http://ftp.edgewall.com/pub/trac/${MY_P}.tar.gz";
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 ppc ~ppc64 x86 ~x86-fbsd"
-IUSE="cgi fastcgi i18n +highlight +restructuredtext mysql postgres +sqlite 
subversion test"
-REQUIRED_USE="|| ( mysql postgres sqlite )"
-
-RDEPEND="
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   dev-python/genshi[${PYTHON_USEDEP}]
-   dev-python/pytz[${PYTHON_USEDEP}]
-   i18n? ( >=dev-python/Babel-0.9.5[${PYTHON_USEDEP}] )
-   highlight? (
-   || (
-   dev-python/pygments[${PYTHON_USEDEP}]
-   app-text/silvercity
-   app-text/pytextile
-   app-text/enscript
-   )
-   )
-   restructuredtext? ( dev-python/docutils[${PYTHON_USEDEP}] )
-   cgi? ( virtual/httpd-cgi )
-   fastcgi? ( virtual/httpd-fastcgi )
-   mysql? ( dev-python/mysql-python[${PYTHON_USEDEP}] )
-   postgres? ( >=dev-python/psycopg-2[${PYTHON_USEDEP}] )
-   sqlite? ( >=dev-db/sqlite-3.3.4:3 )
-   subversion? ( dev-vcs/subversion[python,${PYTHON_USEDEP}] )
-   "
-DEPEND="${RDEPEND}
-   test? (
-   dev-python/twill[${PYTHON_USEDEP}]
-   dev-python/lxml[${PYTHON_USEDEP}]
-   dev-python/configobj[${PYTHON_USEDEP}]
-   )"
-
-S="${WORKDIR}/${MY_P}"
-
-WEBAPP_MANUAL_SLOT="yes"
-
-pkg_setup() {
-   python-single-r1_pkg_setup
-   webapp_pkg_setup
-
-   enewgroup tracd
-   enewuser tracd -1 -1 -1 tracd
-}
-
-python_prepare_all() {
-   distutils-r1_python_prepare_all
-}
-
-src_test() {
-   distutils-r1_src_test
-}
-
-python_test() {
-   PYTHONPATH=. "${PYTHON}" trac/test.py || die "Tests fail with 
${EPYTHON}"
-}
-
-python_test_all() {
-   if use i18n; then
-   make check
-   fi
-}
-
-python_install() {
-   if use cgi; then
-   python_scriptinto "${MY_CGIBINDIR}"
-   python_doscript contrib/cgi-bin/trac.cgi
-   fi
-   if use fastcgi; then
-   python_scriptinto "${MY_CGIBINDIR}"
-   

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

2016-05-07 Thread Pacho Ramos
commit: 4852590d26217754284fdacfef8fa33d1507569d
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sat May  7 08:41:56 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sat May  7 08:41:56 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4852590d

dev-libs/libappindicator: Fix Vala classes not being able to inherit from 
Indicator and fix vapigen detection (#580988 by jospezial)

Package-Manager: portage-2.2.28

 ...indicator-12.10.0-conditional-py-bindings.patch |  8 +-
 .../libappindicator-12.10.0-vala-inherit.patch | 14 
 .../libappindicator-12.10.0-r201.ebuild| 86 ++
 .../libappindicator-12.10.0-r301.ebuild| 71 ++
 4 files changed, 175 insertions(+), 4 deletions(-)

diff --git 
a/dev-libs/libappindicator/files/libappindicator-12.10.0-conditional-py-bindings.patch
 
b/dev-libs/libappindicator/files/libappindicator-12.10.0-conditional-py-bindings.patch
index 6a5e15f..c916d9b 100644
--- 
a/dev-libs/libappindicator/files/libappindicator-12.10.0-conditional-py-bindings.patch
+++ 
b/dev-libs/libappindicator/files/libappindicator-12.10.0-conditional-py-bindings.patch
@@ -1,5 +1,5 @@
 bindings/Makefile.am   2015-07-10 10:04:18.091199191 +0200
-+++ bindings/Makefile.am   2015-07-10 10:19:47.047974439 +0200
+--- a/bindings/Makefile.am 2015-07-10 10:04:18.091199191 +0200
 b/bindings/Makefile.am 2015-07-10 10:19:47.047974439 +0200
 @@ -3,8 +3,10 @@
vala
  else
@@ -12,8 +12,8 @@
  endif
  
  if HAS_MONO
 configure.ac   2015-07-16 13:28:41.007502838 +0200
-+++ configure.ac_new   2015-07-16 13:53:18.118602877 +0200
+--- a/configure.ac 2015-07-16 13:28:41.007502838 +0200
 b/configure.ac_new 2015-07-16 13:53:18.118602877 +0200
 @@ -188,25 +188,37 @@
  PYGTK_REQUIRED=2.14.0
  PYGOBJECT_REQUIRED=0.22

diff --git 
a/dev-libs/libappindicator/files/libappindicator-12.10.0-vala-inherit.patch 
b/dev-libs/libappindicator/files/libappindicator-12.10.0-vala-inherit.patch
new file mode 100644
index 000..e71cb69
--- /dev/null
+++ b/dev-libs/libappindicator/files/libappindicator-12.10.0-vala-inherit.patch
@@ -0,0 +1,14 @@
+# 
http://bazaar.launchpad.net/~indicator-applet-developers/libappindicator/trunk.12.10/revision/244
+=== modified file 'bindings/vala/appindicator-0.1-custom.vala'
+--- a/bindings/vala/appindicator-0.1-custom.vala   2011-09-23 15:46:27 
+
 b/bindings/vala/appindicator-0.1-custom.vala   2012-10-10 23:33:35 
+
+@@ -23,7 +23,7 @@
+ */
+ 
+ namespace AppIndicator {
+-  [CCode (type_check_function = "IS_APP_INDICATOR")]
++  [CCode (type_check_function = "IS_APP_INDICATOR", type_id = 
"app_indicator_get_type ()")]
+   public class Indicator : GLib.Object {
+   }
+ }
+

diff --git a/dev-libs/libappindicator/libappindicator-12.10.0-r201.ebuild 
b/dev-libs/libappindicator/libappindicator-12.10.0-r201.ebuild
new file mode 100644
index 000..db2f2d7
--- /dev/null
+++ b/dev-libs/libappindicator/libappindicator-12.10.0-r201.ebuild
@@ -0,0 +1,86 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+VALA_USE_DEPEND="vapigen"
+
+PYTHON_COMPAT=( python2_7 )
+
+inherit autotools eutils multilib-minimal python-single-r1 vala
+
+DESCRIPTION="A library to allow applications to export a menu into the Unity 
Menu bar"
+HOMEPAGE="https://launchpad.net/libappindicator";
+SRC_URI="https://launchpad.net/${PN}/${PV%.*}/${PV}/+download/${P}.tar.gz";
+
+LICENSE="LGPL-2.1 LGPL-3"
+SLOT="2"
+KEYWORDS="~amd64 ~arm ~x86"
+
+IUSE="+introspection python"
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
+RDEPEND="
+   >=dev-libs/dbus-glib-0.98[${MULTILIB_USEDEP}]
+   >=dev-libs/glib-2.26:2[${MULTILIB_USEDEP}]
+   >=dev-libs/libdbusmenu-0.6.2[gtk,${MULTILIB_USEDEP}]
+   >=dev-libs/libindicator-12.10.0:0[${MULTILIB_USEDEP}]
+   x11-libs/gtk+:2[${MULTILIB_USEDEP},introspection?]
+   introspection? ( >=dev-libs/gobject-introspection-1:= )
+   python? (
+   ${PYTHON_DEPS}
+   dev-python/pygtk[${PYTHON_USEDEP}]
+   )
+"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig[${MULTILIB_USEDEP}]
+   introspection? ( $(vala_depend) )
+"
+
+PATCHES=(
+   "${FILESDIR}"/${P}-conditional-py-bindings.patch
+   # 
http://bazaar.launchpad.net/~indicator-applet-developers/libappindicator/trunk.12.10/revision/244
+   "${FILESDIR}"/${P}-vala-inherit.patch
+)
+
+pkg_setup() {
+   use python && python-single-r1_pkg_setup
+}
+
+src_prepare() {
+   default
+
+   # Don't use -Werror
+   sed -i -e 's/ -Werror//' {src,tests}/Makefile.{am,in} || die
+
+   eautoreconf
+
+   # Disable MONO for now because of https://bugs.gentoo.org/382491
+   sed -i -e '/^MONO_REQUIRED_VERSION/s:=.*:=:' configure || die
+}
+
+multilib_src_configure() {
+   if multilib_is_native_abi; then
+   local -x VALAC VALA_API_GEN VAPI

[gentoo-commits] repo/gentoo:master commit in: lxde-base/lxsession/

2016-05-07 Thread Pacho Ramos
commit: d8ca20481f5634ad14c9fe0735afc285e9dfffc5
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sat May  7 08:43:39 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sat May  7 08:43:39 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8ca2048

lxde-base/lxsession: x86 stable, bug #575892

Package-Manager: portage-2.2.28

 lxde-base/lxsession/lxsession-0.5.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lxde-base/lxsession/lxsession-0.5.2.ebuild 
b/lxde-base/lxsession/lxsession-0.5.2.ebuild
index e269ff6..6888b6e 100644
--- a/lxde-base/lxsession/lxsession-0.5.2.ebuild
+++ b/lxde-base/lxsession/lxsession-0.5.2.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="http://lxde.org/";
 SRC_URI="mirror://sourceforge/lxde/${P}.tar.xz"
 
 LICENSE="GPL-2"
-KEYWORDS="~alpha amd64 arm ~ppc ~x86 ~arm-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm ~ppc x86 ~arm-linux ~x86-linux"
 SLOT="0"
 
 # upower USE flag is enabled by default in the desktop profile



[gentoo-commits] repo/gentoo:master commit in: app-vim/vimpython/

2016-05-07 Thread Patrice Clement
commit: 8706a6263da55f12f20a40cb86362a53ce3c4536
Author: Patrice Clement  gentoo  org>
AuthorDate: Sat May  7 08:47:44 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sat May  7 08:48:09 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8706a626

app-vim/vimpython: EAPI 6 bump.

Package-Manager: portage-2.2.26

 app-vim/vimpython/vimpython-1.13-r1.ebuild | 19 +++
 1 file changed, 19 insertions(+)

diff --git a/app-vim/vimpython/vimpython-1.13-r1.ebuild 
b/app-vim/vimpython/vimpython-1.13-r1.ebuild
new file mode 100644
index 000..ab3c225
--- /dev/null
+++ b/app-vim/vimpython/vimpython-1.13-r1.ebuild
@@ -0,0 +1,19 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+VIM_PLUGIN_VIM_VERSION="7.0"
+inherit vim-plugin
+
+DESCRIPTION="vim plugin: A set of menus/shortcuts to work with Python files"
+HOMEPAGE="http://www.vim.org/scripts/script.php?script_id=30";
+
+LICENSE="vim"
+KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~sparc ~x86"
+IUSE=""
+
+RDEPEND="${DEPEND}"
+
+VIM_PLUGIN_HELPURI="${HOMEPAGE}"



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

2016-05-07 Thread Pacho Ramos
commit: a24d853b69a583d600ccd5ef377f6b62496206b3
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sat May  7 09:13:33 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sat May  7 09:15:43 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a24d853b

sys-apps/portage: amd64 stable, bug #580738

Package-Manager: portage-2.2.28

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

diff --git a/sys-apps/portage/portage-2.2.28.ebuild 
b/sys-apps/portage/portage-2.2.28.ebuild
index 6527909..c53616c 100644
--- a/sys-apps/portage/portage-2.2.28.ebuild
+++ b/sys-apps/portage/portage-2.2.28.ebuild
@@ -17,7 +17,7 @@ DESCRIPTION="Portage is the package management and 
distribution system for Gento
 HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Portage";
 
 LICENSE="GPL-2"
-KEYWORDS="alpha ~amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 SLOT="0"
 IUSE="build doc epydoc +ipc linguas_ru selinux xattr"
 



[gentoo-commits] proj/sci:master commit in: sci-visualization/mricrogl/

2016-05-07 Thread Justin Lecher
commit: 322d92270dbc7c5266c6fd5ab347b3d3bec77134
Author: Horea Christian  yandex  com>
AuthorDate: Tue Apr 26 19:41:30 2016 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Tue Apr 26 19:41:30 2016 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=322d9227

sci-visualization/mricrogl: this version will not compile with fpc 3

Package-Manager: portage-2.2.28

 sci-visualization/mricrogl/mricrogl-1.0.2015.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-visualization/mricrogl/mricrogl-1.0.2015.ebuild 
b/sci-visualization/mricrogl/mricrogl-1.0.2015.ebuild
index 0c33fad..1f8d3c0 100644
--- a/sci-visualization/mricrogl/mricrogl-1.0.2015.ebuild
+++ b/sci-visualization/mricrogl/mricrogl-1.0.2015.ebuild
@@ -17,7 +17,7 @@ SLOT="0"
 KEYWORDS="~amd64 ~x86"
 
 RDEPEND=""
-DEPEND="dev-lang/fpc
+DEPEND="

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

2016-05-07 Thread Justin Lecher
commit: 5689aaf4cb4c0093dbd63c10f408b8285f92a38d
Author: Justin Lecher  gentoo  org>
AuthorDate: Thu Apr 28 16:16:02 2016 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Thu Apr 28 16:16:02 2016 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=5689aaf4

Merge pull request #614 from timeraider4u/vtk

sci-libs/vtk: new revision with qt5 useflag, updated ebuild to EAPI 6

 sci-libs/vtk/Manifest   |   4 +
 sci-libs/vtk/files/vtk-6.1.0-freetype.patch |  22 ++
 sci-libs/vtk/files/vtk-6.1.0-gdal2.patch|  33 +++
 sci-libs/vtk/files/vtk-6.1.0-glext.patch|  13 +
 sci-libs/vtk/files/vtk-6.1.0-install.patch  |  19 ++
 sci-libs/vtk/files/vtk-6.1.0-memset.patch   | 147 ++
 sci-libs/vtk/files/vtk-6.1.0-netcdf.patch   |  29 ++
 sci-libs/vtk/files/vtk-6.1.0-system.patch   |  27 ++
 sci-libs/vtk/files/vtk-6.1.0-web.patch  |  25 ++
 sci-libs/vtk/metadata.xml   |  35 +++
 sci-libs/vtk/vtk-6.1.0-r3.ebuild| 420 
 11 files changed, 774 insertions(+)



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

2016-05-07 Thread Justin Lecher
commit: 33e15f4ca19780de8721d34daca2f571eebc6d80
Author: Justin Lecher  gentoo  org>
AuthorDate: Sat May  7 09:27:21 2016 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Sat May  7 09:27:21 2016 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=33e15f4c

Merge remote-tracking branch 'github/master'

* github/master:
  use QT5 as default use-flag
  sci-visualization/mricrogl: this version will not compile with fpc 3
  sci-libs/vtk: new revision with qt5 useflag, updated ebuild to EAPI 6

 sci-libs/vtk/Manifest  |   4 +
 sci-libs/vtk/files/vtk-6.1.0-freetype.patch|  22 ++
 sci-libs/vtk/files/vtk-6.1.0-gdal2.patch   |  33 ++
 sci-libs/vtk/files/vtk-6.1.0-glext.patch   |  13 +
 sci-libs/vtk/files/vtk-6.1.0-install.patch |  19 +
 sci-libs/vtk/files/vtk-6.1.0-memset.patch  | 147 
 sci-libs/vtk/files/vtk-6.1.0-netcdf.patch  |  29 ++
 sci-libs/vtk/files/vtk-6.1.0-system.patch  |  27 ++
 sci-libs/vtk/files/vtk-6.1.0-web.patch |  25 ++
 sci-libs/vtk/metadata.xml  |  35 ++
 sci-libs/vtk/vtk-6.1.0-r3.ebuild   | 420 +
 .../mricrogl/mricrogl-1.0.2015.ebuild  |   2 +-
 12 files changed, 775 insertions(+), 1 deletion(-)



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

2016-05-07 Thread Justin Lecher
commit: 949faff31d0aea4975ae93db919f6bfe84fc99a9
Author: Justin Lecher  gentoo  org>
AuthorDate: Thu Apr 28 16:16:41 2016 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Thu Apr 28 16:16:41 2016 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=949faff3

Merge pull request #621 from TheChymera/mricrogl

sci-visualization/mricrogl: this version will not compile with fpc 3

 sci-visualization/mricrogl/mricrogl-1.0.2015.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



[gentoo-commits] proj/sci:master commit in: sci-libs/vtk/, sci-libs/vtk/files/

2016-05-07 Thread Justin Lecher
commit: 7c61440f2102de169173fa847bc32d0969340430
Author: Harald Weiner  jku  at>
AuthorDate: Mon Apr 11 15:00:48 2016 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Mon Apr 11 15:00:48 2016 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=7c61440f

sci-libs/vtk: new revision with qt5 useflag, updated ebuild to EAPI 6

 sci-libs/vtk/files/vtk-6.1.0-freetype.patch |  22 ++
 sci-libs/vtk/files/vtk-6.1.0-gdal2.patch|  33 +++
 sci-libs/vtk/files/vtk-6.1.0-glext.patch|  13 +
 sci-libs/vtk/files/vtk-6.1.0-install.patch  |  19 ++
 sci-libs/vtk/files/vtk-6.1.0-memset.patch   | 147 ++
 sci-libs/vtk/files/vtk-6.1.0-netcdf.patch   |  29 ++
 sci-libs/vtk/files/vtk-6.1.0-system.patch   |  27 ++
 sci-libs/vtk/files/vtk-6.1.0-web.patch  |  25 ++
 sci-libs/vtk/metadata.xml   |  35 +++
 sci-libs/vtk/vtk-6.1.0-r3.ebuild| 420 
 10 files changed, 770 insertions(+)

diff --git a/sci-libs/vtk/files/vtk-6.1.0-freetype.patch 
b/sci-libs/vtk/files/vtk-6.1.0-freetype.patch
new file mode 100644
index 000..73af13e
--- /dev/null
+++ b/sci-libs/vtk/files/vtk-6.1.0-freetype.patch
@@ -0,0 +1,22 @@
+--- a/Rendering/FreeType/vtkFreeTypeTools.cxx_orig 2014-12-23 
09:25:35.0 +0100
 b/Rendering/FreeType/vtkFreeTypeTools.cxx  2014-12-24 09:40:31.886953389 
+0100
+@@ -1185,7 +1185,7 @@
+ if (bitmap)
+   {
+   metaData.ascent = std::max(bitmapGlyph->top - 1, metaData.ascent);
+-  metaData.descent = std::min(-(bitmap->rows - (bitmapGlyph->top - 1)),
++  metaData.descent = std::min(-(static_cast(bitmap->rows) - 
(bitmapGlyph->top - 1)),
+   metaData.descent);
+   }
+ ++heightString;
+@@ -1952,8 +1952,8 @@
+ if (bitmap)
+   {
+   bbox[0] = std::min(bbox[0], pen[0] + bitmapGlyph->left);
+-  bbox[1] = std::max(bbox[1], pen[0] + bitmapGlyph->left + bitmap->width);
+-  bbox[2] = std::min(bbox[2], pen[1] + bitmapGlyph->top - 1 - 
bitmap->rows);
++  bbox[1] = std::max(bbox[1], pen[0] + bitmapGlyph->left + 
static_cast(bitmap->width));
++  bbox[2] = std::min(bbox[2], pen[1] + bitmapGlyph->top - 1 - 
static_cast(bitmap->rows));
+   bbox[3] = std::max(bbox[3], pen[1] + bitmapGlyph->top - 1);
+   }
+ else

diff --git a/sci-libs/vtk/files/vtk-6.1.0-gdal2.patch 
b/sci-libs/vtk/files/vtk-6.1.0-gdal2.patch
new file mode 100644
index 000..c218641
--- /dev/null
+++ b/sci-libs/vtk/files/vtk-6.1.0-gdal2.patch
@@ -0,0 +1,33 @@
+diff --git a/IO/GDAL/vtkGDALVectorReader.cxx b/IO/GDAL/vtkGDALVectorReader.cxx
+index 86854a0..a0e234a 100644
+--- a/IO/GDAL/vtkGDALVectorReader.cxx
 b/IO/GDAL/vtkGDALVectorReader.cxx
+# Patch to build against newer GDAL per upstream commit
+# 
https://projects.archlinux.org/svntogit/community.git/tree/trunk/gdal2.patch?h=packages/vtk&id=43307598a98872fd4ce7739e47f5bb4cfcb5372d
+@@ -44,7 +44,7 @@ class vtkGDALVectorReader::Internal
+ public:
+   Internal( const char* srcName, int srcMode, int appendFeatures, int 
addFeatIds )
+ {
+-this->Source = OGRSFDriverRegistrar::Open( srcName, srcMode, 
&this->Driver );
++this->Source = (GDALDataset*) OGROpen( srcName, srcMode, NULL );
+ if ( ! this->Source )
+   {
+   this->LastError = CPLGetLastErrorMsg();
+@@ -61,7 +61,7 @@ public:
+ {
+ if ( this->Source )
+   {
+-  OGRDataSource::DestroyDataSource( this->Source );
++  GDALClose( (GDALDatasetH) this->Source );
+   }
+ }
+
+@@ -304,7 +304,7 @@ public:
+ return nCells;
+ }
+
+-  OGRDataSource* Source;
++  GDALDataset* Source;
+   OGRSFDriver* Driver;
+   const char* LastError;
+   int LayerIdx;

diff --git a/sci-libs/vtk/files/vtk-6.1.0-glext.patch 
b/sci-libs/vtk/files/vtk-6.1.0-glext.patch
new file mode 100644
index 000..638de17
--- /dev/null
+++ b/sci-libs/vtk/files/vtk-6.1.0-glext.patch
@@ -0,0 +1,13 @@
+diff -up VTK-6.1.0/Rendering/OpenGL/vtkOpenGL.h.glext 
VTK-6.1.0/Rendering/OpenGL/vtkOpenGL.h
+--- a/Rendering/OpenGL/vtkOpenGL.h.glext   2014-01-22 08:55:41.0 
-0700
 b/Rendering/OpenGL/vtkOpenGL.h 2014-11-19 10:27:12.349345199 -0700
+@@ -19,7 +19,8 @@
+ #include "vtkConfigure.h"
+ 
+ // To prevent gl.h to include glext.h provided by the system
+-#define GL_GLEXT_LEGACY
++// https://bugzilla.redhat.com/show_bug.cgi?id=1138466
++// #define GL_GLEXT_LEGACY
+ #if defined(__APPLE__) && (defined(VTK_USE_CARBON) || defined(VTK_USE_COCOA))
+ # include  // Include OpenGL API.
+ #else

diff --git a/sci-libs/vtk/files/vtk-6.1.0-install.patch 
b/sci-libs/vtk/files/vtk-6.1.0-install.patch
new file mode 100644
index 000..d45bf02
--- /dev/null
+++ b/sci-libs/vtk/files/vtk-6.1.0-install.patch
@@ -0,0 +1,19 @@
+diff -up VTK-6.1.0/CMake/vtkModuleTop.cmake.install 
VTK-6.1.0/CMake/vtkModuleTop.cmake
+--- a/CMake/vtkModuleTop.cmake.install 2014-01-23 19:12:04.922871103 -0700
 b/CMake/vtkModuleTop.cmake 2014-01-23 19:14:33.002645155 -0700
+

[gentoo-commits] proj/sci:master commit in: sci-libs/vtk/

2016-05-07 Thread Justin Lecher
commit: dcc8099c8128d01b305270795413fd9124f74b6e
Author: Harald Weiner  jku  at>
AuthorDate: Thu Apr 28 15:29:54 2016 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Thu Apr 28 15:29:54 2016 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=dcc8099c

use QT5 as default use-flag

 sci-libs/vtk/vtk-6.1.0-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-libs/vtk/vtk-6.1.0-r3.ebuild b/sci-libs/vtk/vtk-6.1.0-r3.ebuild
index 3365d9a..56b156c 100644
--- a/sci-libs/vtk/vtk-6.1.0-r3.ebuild
+++ b/sci-libs/vtk/vtk-6.1.0-r3.ebuild
@@ -31,7 +31,7 @@ KEYWORDS="~amd64 ~x86"
 SLOT="0"
 IUSE="
all-modules aqua boost cg doc examples imaging ffmpeg gdal java json 
kaapi mpi
-   mysql odbc offscreen postgres python qt4 qt5 rendering smp tbb test 
theora tk
+   mysql odbc offscreen postgres python qt4 +qt5 rendering smp tbb test 
theora tk
tcl video_cards_nvidia views web xdmf2 R +X"
 
 REQUIRED_USE="



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

2016-05-07 Thread Justin Lecher
commit: 31760fd61100bdd70ec8c0dab7f8e0f9871c6329
Author: Justin Lecher  gentoo  org>
AuthorDate: Sat May  7 09:32:32 2016 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Sat May  7 09:32:32 2016 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=31760fd6

Merge pull request #617 from TheChymera/nipype

sci-libs/nipype is python 3.4 compatible

 sci-libs/nipype/nipype-0.11.0.ebuild | 2 +-
 sci-libs/nipype/nipype-.ebuild   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)



[gentoo-commits] proj/sci:master commit in: sci-physics/root/

2016-05-07 Thread Justin Lecher
commit: c3a3d6b0df1099c22461e3e26b632f09f8b45216
Author: Oliver Freyermuth  googlemail  com>
AuthorDate: Tue Apr 26 22:19:44 2016 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Tue Apr 26 22:19:44 2016 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=c3a3d6b0

sci-physics/root-: current master needs write access to /dev/random

Needed at runtime of the ROOT interpreter when JITting code,
thus also necessary to build examples (and the hsimple-target).
Further details upstream: https://sft.its.cern.ch/jira/browse/ROOT-8146
Since write-access needs to actually work, addpredict is insufficient.
Writing to /dev/random should not be a security concern
(entroy is unchanged).

 sci-physics/root/root-.ebuild | 4 
 1 file changed, 4 insertions(+)

diff --git a/sci-physics/root/root-.ebuild 
b/sci-physics/root/root-.ebuild
index 8bf3758..14d468a 100644
--- a/sci-physics/root/root-.ebuild
+++ b/sci-physics/root/root-.ebuild
@@ -397,6 +397,10 @@ cleanup_install() {
 }
 
 src_install() {
+   # Write access to /dev/random is required to run root.exe
+   # More information at https://sft.its.cern.ch/jira/browse/ROOT-8146
+   addwrite /dev/random
+
DOCS=($(find README/* -maxdepth 1 -type f))
default
dodoc README.md



[gentoo-commits] proj/sci:master commit in: sci-libs/nipype/

2016-05-07 Thread Justin Lecher
commit: 2248e6e5482aefdb38180bb6e2cff4545ac351ec
Author: Horea Christian  yandex  com>
AuthorDate: Tue Apr 26 16:47:09 2016 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Tue Apr 26 16:47:09 2016 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=2248e6e5

sci-libs/nipype: added python 3_4 compatibility

Package-Manager: portage-2.2.28

 sci-libs/nipype/nipype-0.11.0.ebuild | 2 +-
 sci-libs/nipype/nipype-.ebuild   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sci-libs/nipype/nipype-0.11.0.ebuild 
b/sci-libs/nipype/nipype-0.11.0.ebuild
index 74066fb..0b9dc1f 100644
--- a/sci-libs/nipype/nipype-0.11.0.ebuild
+++ b/sci-libs/nipype/nipype-0.11.0.ebuild
@@ -5,7 +5,7 @@
 EAPI=5
 
 # pyamg missing py3 support
-# PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
+# PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3,3_4} )
 PYTHON_COMPAT=( python2_7 )
 PYTHON_REQ_USE="sqlite"
 

diff --git a/sci-libs/nipype/nipype-.ebuild 
b/sci-libs/nipype/nipype-.ebuild
index ce971d1..21eff08 100644
--- a/sci-libs/nipype/nipype-.ebuild
+++ b/sci-libs/nipype/nipype-.ebuild
@@ -5,7 +5,7 @@
 EAPI=5
 
 # pyamg missing py3 support
-# PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
+# PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3,3_4} )
 PYTHON_COMPAT=( python2_7 )
 PYTHON_REQ_USE="sqlite"
 



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

2016-05-07 Thread Justin Lecher
commit: 59e8a0aa7d26e5f65d2a4ac1b366c5ee666306d4
Author: Justin Lecher  gentoo  org>
AuthorDate: Sat May  7 09:32:19 2016 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Sat May  7 09:32:19 2016 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=59e8a0aa

Merge pull request #622 from olifre/root-sandbox-exception

sci-physics/root-: current master needs write access to /dev/random

 sci-physics/root/root-.ebuild | 4 
 1 file changed, 4 insertions(+)



[gentoo-commits] proj/sci:master commit in: sci-biology/glean/

2016-05-07 Thread Justin Lecher
commit: 309c85bc8392826b6faebbea1029f52f6832a8ca
Author: Justin Lecher  gentoo  org>
AuthorDate: Sat May  7 09:42:39 2016 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Sat May  7 09:42:39 2016 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=309c85bc

Fix package name lower to upper case

Signed-off-by: Justin Lecher  gentoo.org>

 sci-biology/glean/glean-1.0.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-biology/glean/glean-1.0.1.ebuild 
b/sci-biology/glean/glean-1.0.1.ebuild
index 9c8b97a..aee9bb5 100644
--- a/sci-biology/glean/glean-1.0.1.ebuild
+++ b/sci-biology/glean/glean-1.0.1.ebuild
@@ -24,7 +24,7 @@ RDEPEND="${DEPEND}
virtual/perl-Data-Dumper
dev-perl/Module-Pluggable
dev-perl/Algorithm-Diff
-   dev-perl/yaml
+   dev-perl/YAML
sci-biology/bioperl
graphviz? ( dev-perl/GraphViz )"
 # FindBin



[gentoo-commits] proj/emacs-tools:ebuild-mode commit in: /

2016-05-07 Thread Ulrich Müller
commit: de05ba40dd0e20b461698fe4fef85adabd275cbb
Author: Ulrich Müller  gentoo  org>
AuthorDate: Sat May  7 09:32:33 2016 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Sat May  7 09:32:33 2016 +
URL:https://gitweb.gentoo.org/proj/emacs-tools.git/commit/?id=de05ba40

Update copyright years.

 ChangeLog   | 2 +-
 Makefile| 2 +-
 ebuild-mode-keywords.el | 2 +-
 ebuild-mode.el  | 2 +-
 ebuild-mode.texi| 2 +-
 gentoo-newsitem-mode.el | 2 +-
 keyword-generation.sh   | 2 +-
 7 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index c4e21ad..bb41fee 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1342,5 +1342,5 @@
 
* version 1.4
 
-Copyright 2007-2015 Gentoo Foundation
+Copyright 2007-2016 Gentoo Foundation
 Distributed under the terms of the GNU General Public License v2 or later

diff --git a/Makefile b/Makefile
index 1c242bd..94e3f09 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-# Copyright 2007-2015 Gentoo Foundation
+# Copyright 2007-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2 or later
 
 PN = ebuild-mode

diff --git a/ebuild-mode-keywords.el b/ebuild-mode-keywords.el
index 4c7c3cd..f46c856 100644
--- a/ebuild-mode-keywords.el
+++ b/ebuild-mode-keywords.el
@@ -1,6 +1,6 @@
 ;;; ebuild-mode-keywords.el
 
-;; Copyright 2006-2015 Gentoo Foundation
+;; Copyright 2006-2016 Gentoo Foundation
 
 ;; Author: Matthew Kennedy 
 ;; Diego Pettenò 

diff --git a/ebuild-mode.el b/ebuild-mode.el
index 3d00adb..dff2f5f 100644
--- a/ebuild-mode.el
+++ b/ebuild-mode.el
@@ -1,6 +1,6 @@
 ;;; ebuild-mode.el --- edit Gentoo ebuild and eclass files
 
-;; Copyright 2006-2015 Gentoo Foundation
+;; Copyright 2006-2016 Gentoo Foundation
 
 ;; Author: Matthew Kennedy 
 ;; Diego Pettenò 

diff --git a/ebuild-mode.texi b/ebuild-mode.texi
index 66f0c96..7032a2e 100644
--- a/ebuild-mode.texi
+++ b/ebuild-mode.texi
@@ -8,7 +8,7 @@
 This manual is for ebuild-mode, which is a major mode for ebuild
 and eclass files.
 
-Copyright @copyright{} 2009-2015 Gentoo Foundation
+Copyright @copyright{} 2009-2016 Gentoo Foundation
 
 @quotation
 Permission is granted to copy, distribute and/or modify this document

diff --git a/gentoo-newsitem-mode.el b/gentoo-newsitem-mode.el
index 7edd69f..182008f 100644
--- a/gentoo-newsitem-mode.el
+++ b/gentoo-newsitem-mode.el
@@ -1,6 +1,6 @@
 ;;; gentoo-newsitem-mode.el --- edit Gentoo GLEP 42 news items
 
-;; Copyright 2009-2015 Gentoo Foundation
+;; Copyright 2009-2016 Gentoo Foundation
 
 ;; Author: Ulrich Müller 
 ;; Christian Faulhammer 

diff --git a/keyword-generation.sh b/keyword-generation.sh
index df0404e..336e92d 100755
--- a/keyword-generation.sh
+++ b/keyword-generation.sh
@@ -1,5 +1,5 @@
 #!/bin/bash
-# Copyright 2011-2015 Gentoo Foundation
+# Copyright 2011-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2 or later
 
 # Authors:



[gentoo-commits] proj/emacs-tools:ebuild-mode commit in: /

2016-05-07 Thread Ulrich Müller
commit: ad8ebdc77fb6fb4faa41222002ef0b7a63eb8e1c
Author: Ulrich Müller  gentoo  org>
AuthorDate: Sat May  7 09:38:57 2016 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Sat May  7 09:38:57 2016 +
URL:https://gitweb.gentoo.org/proj/emacs-tools.git/commit/?id=ad8ebdc7

Keywords regenerated from eclasses.

* ebuild-mode-keywords.el (ebuild-mode-keywords-*): Regenerated.

 ChangeLog   |  2 ++
 ebuild-mode-keywords.el | 81 ++---
 2 files changed, 45 insertions(+), 38 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 31508c7..cf7db83 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2016-05-07  Ulrich Müller  
 
+   * ebuild-mode-keywords.el (ebuild-mode-keywords-*): Regenerated.
+
* keyword-generation.sh (OBSOLETE): Cleanup.
 
 2015-12-20  Ulrich Müller  

diff --git a/ebuild-mode-keywords.el b/ebuild-mode-keywords.el
index f46c856..a46068f 100644
--- a/ebuild-mode-keywords.el
+++ b/ebuild-mode-keywords.el
@@ -175,10 +175,11 @@
 (defvar ebuild-mode-keywords-bitcoincore
   '(("LJR_PATCH" "LJR_PV" "bitcoincore_autoreconf"
  "bitcoincore_common_depend_use" "bitcoincore_conf"
- "bitcoincore_pkg_pretend" "bitcoincore_policy_iuse"
- "bitcoincore_policymsg" "bitcoincore_prepare" "bitcoincore_src_install"
- "bitcoincore_src_prepare" "bitcoincore_src_test" "in_bcc_iuse"
- "in_bcc_policy")
+ "bitcoincore_git_apply" "bitcoincore_pkg_pretend"
+ "bitcoincore_policy_iuse" "bitcoincore_policymsg"
+ "bitcoincore_predelete_patch" "bitcoincore_prepare"
+ "bitcoincore_src_install" "bitcoincore_src_prepare"
+ "bitcoincore_src_test" "in_bcc_iuse" "in_bcc_policy")
 font-lock-type-face))
 
 (defvar ebuild-mode-keywords-bsdmk
@@ -202,11 +203,7 @@
 font-lock-type-face))
 
 (defvar ebuild-mode-keywords-check-reqs
-  '(("check-reqs_disk" "check-reqs_get_mebibytes" "check-reqs_get_number"
- "check-reqs_get_unit" "check-reqs_memory" "check-reqs_output"
- "check-reqs_pkg_pretend" "check-reqs_pkg_setup" "check-reqs_prepare"
- "check-reqs_run" "check-reqs_start_phase" "check-reqs_unsatisfied"
- "check_reqs")
+  '(("check-reqs_pkg_pretend" "check-reqs_pkg_setup" "check_reqs")
 font-lock-type-face))
 
 (defvar ebuild-mode-keywords-chromium
@@ -216,10 +213,6 @@
  "chromium_suid_sandbox_check_kernel_config" "egyp_chromium" "gyp_use")
 font-lock-type-face))
 
-(defvar ebuild-mode-keywords-clutter
-  '(("clutter_src_install")
-font-lock-type-face))
-
 (defvar ebuild-mode-keywords-cmake-multilib
   '(("cmake-multilib_src_compile" "cmake-multilib_src_configure"
  "cmake-multilib_src_install" "cmake-multilib_src_test"
@@ -235,9 +228,10 @@
  "cmake-utils_use_enable" "cmake-utils_use_find_package"
  "cmake-utils_use_has" "cmake-utils_use_no" "cmake-utils_use_use"
  "cmake-utils_use_want" "cmake-utils_use_with" "cmake-utils_useno"
- "comment_add_subdirectory" "enable_cmake-utils_src_compile"
- "enable_cmake-utils_src_configure" "enable_cmake-utils_src_install"
- "enable_cmake-utils_src_prepare" "enable_cmake-utils_src_test")
+ "cmake_comment_add_subdirectory" "comment_add_subdirectory"
+ "enable_cmake-utils_src_compile" "enable_cmake-utils_src_configure"
+ "enable_cmake-utils_src_install" "enable_cmake-utils_src_prepare"
+ "enable_cmake-utils_src_test")
 font-lock-type-face))
 
 (defvar ebuild-mode-keywords-common-lisp
@@ -354,10 +348,6 @@
  "elisp-site-regen")
 font-lock-type-face))
 
-(defvar ebuild-mode-keywords-embassy
-  '(("embassy_src_compile" "embassy_src_install" "embassy_src_unpack")
-font-lock-type-face))
-
 (defvar ebuild-mode-keywords-emboss-r1
   '(("emboss-r1_src_configure" "emboss-r1_src_prepare")
 font-lock-type-face))
@@ -370,8 +360,8 @@
 
 (defvar ebuild-mode-keywords-eutils
   '(("built_with_use" "check_license" "doicon" "domenu" "ebeep" "ecvs_clean"
- "edos2unix" "einstalldocs" "emktemp" "epatch" "epatch_user" "epause"
- "epunt_cxx" "eqawarn" "eshopts_pop" "eshopts_push" "estack_pop"
+ "edos2unix" "egit_clean" "einstalldocs" "emktemp" "epatch" "epatch_user"
+ "epause" "epunt_cxx" "eqawarn" "eshopts_pop" "eshopts_push" "estack_pop"
  "estack_push" "esvn_clean" "eumask_pop" "eumask_push"
  "eutils_elt_patch_dir" "evar_pop" "evar_push" "evar_push_set" "in_iuse"
  "isdigit" "make_desktop_entry" "make_session_desktop" "make_wrapper"
@@ -525,10 +515,11 @@
   '(("gnome2_disable_deprecation_warning" "gnome2_environment_reset"
  "gnome2_gconf_install" "gnome2_gconf_savelist" "gnome2_gconf_uninstall"
  "gnome2_gdk_pixbuf_savelist" "gnome2_gdk_pixbuf_update"
- "gnome2_icon_cache_update" "gnome2_icon_savelist" "gnome2_omf_fix"
- "gnome2_query_immodules_gtk2" "gnome2_query_immodules_gtk3"
- "gnome2_schemas_savelist" "gnome2_schemas_update"
- "gnome2_scrollkeeper_savelist" "gnome2_scrollkeeper_update")
+ "gnome2_giomodule_cache_update" "gnome2

[gentoo-commits] proj/emacs-tools:ebuild-mode commit in: /

2016-05-07 Thread Ulrich Müller
commit: bd78b5c157e97f384c32287808444239bff62284
Author: Ulrich Müller  gentoo  org>
AuthorDate: Sat May  7 09:41:37 2016 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Sat May  7 09:41:37 2016 +
URL:https://gitweb.gentoo.org/proj/emacs-tools.git/commit/?id=bd78b5c1

Version 1.30 released.

 ChangeLog| 2 ++
 ebuild-mode.el   | 2 +-
 ebuild-mode.texi | 2 +-
 3 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index cf7db83..986a969 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2016-05-07  Ulrich Müller  
 
+   * Version 1.30 released.
+
* ebuild-mode-keywords.el (ebuild-mode-keywords-*): Regenerated.
 
* keyword-generation.sh (OBSOLETE): Cleanup.

diff --git a/ebuild-mode.el b/ebuild-mode.el
index dff2f5f..0cecdc0 100644
--- a/ebuild-mode.el
+++ b/ebuild-mode.el
@@ -7,7 +7,7 @@
 ;; Christian Faulhammer 
 ;; Ulrich Müller 
 ;; Maintainer: 
-;; Version: 1.29
+;; Version: 1.30
 ;; Keywords: languages, processes
 
 ;; This file is free software: you can redistribute it and/or modify

diff --git a/ebuild-mode.texi b/ebuild-mode.texi
index 7032a2e..5db2f11 100644
--- a/ebuild-mode.texi
+++ b/ebuild-mode.texi
@@ -25,7 +25,7 @@ later version published by the Free Software Foundation.
 
 
 @titlepage
-@title ebuild-mode 1.29
+@title ebuild-mode 1.30
 @subtitle Major mode for ebuilds and eclasses in Gentoo
 @author Christian Faulhammer
 @page



[gentoo-commits] proj/emacs-tools:ebuild-mode commit in: /

2016-05-07 Thread Ulrich Müller
commit: 6a12ae6d6208e99ddaaf12b8476818ee02fbd3ab
Author: Ulrich Müller  gentoo  org>
AuthorDate: Sat May  7 09:37:36 2016 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Sat May  7 09:37:36 2016 +
URL:https://gitweb.gentoo.org/proj/emacs-tools.git/commit/?id=6a12ae6d

Cleanup list of obsolete eclasses.

* keyword-generation.sh (OBSOLETE): Cleanup.

 ChangeLog | 4 
 keyword-generation.sh | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/ChangeLog b/ChangeLog
index bb41fee..31508c7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2016-05-07  Ulrich Müller  
+
+   * keyword-generation.sh (OBSOLETE): Cleanup.
+
 2015-12-20  Ulrich Müller  
 
* Version 1.29 released.

diff --git a/keyword-generation.sh b/keyword-generation.sh
index 336e92d..9465379 100755
--- a/keyword-generation.sh
+++ b/keyword-generation.sh
@@ -13,7 +13,7 @@ TMPFILE="$(mktemp ${TMPDIR:-/tmp}/keyword-generation.XX)"
 ECLASSES=( $(portageq available_eclasses / ${REPO} | LC_ALL=C sort) )
 ECLASSFILES=( $(portageq eclass_path / ${REPO} "${ECLASSES[@]}") )
 # Obsolete eclasses
-OBSOLETE="bash-completion leechcraft x-modular"
+OBSOLETE="leechcraft x-modular"
 
 # Arrays should have equal size
 [[ ${#ECLASSES[@]} -eq ${#ECLASSFILES[@]} ]] || exit 1



[gentoo-commits] proj/emacs-tools: New tag: ebuild-mode-1.30

2016-05-07 Thread Ulrich Müller
commit: 
Commit: Ulrich Müller  gentoo  org>
CommitDate: Sat May  7 09:45:58 2016 +

New tag: ebuild-mode-1.30




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

2016-05-07 Thread Jeroen Roovers
commit: 132ccdd00e59eadf791ee749dba36ffcc7b76e3e
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sat May  7 09:37:49 2016 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sat May  7 09:37:49 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=132ccdd0

www-client/firefox: Stable for HPPA PPC64 (bug #581326).

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

 www-client/firefox/firefox-38.8.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/firefox/firefox-38.8.0.ebuild 
b/www-client/firefox/firefox-38.8.0.ebuild
index 56377cd..3bc54fe 100644
--- a/www-client/firefox/firefox-38.8.0.ebuild
+++ b/www-client/firefox/firefox-38.8.0.ebuild
@@ -38,7 +38,7 @@ inherit check-reqs flag-o-matic toolchain-funcs eutils 
gnome2-utils mozconfig-v6
 DESCRIPTION="Firefox Web Browser"
 HOMEPAGE="http://www.mozilla.com/firefox";
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~x86 ~amd64-linux 
~x86-linux"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~ppc ppc64 ~x86 ~amd64-linux 
~x86-linux"
 
 SLOT="0"
 LICENSE="MPL-2.0 GPL-2 LGPL-2.1"



[gentoo-commits] repo/gentoo:master commit in: app-emacs/ebuild-mode/files/, app-emacs/ebuild-mode/

2016-05-07 Thread Ulrich Müller
commit: 3e8e9cd5bdecb71a344564aebdf165ee78d1ae83
Author: Ulrich Müller  gentoo  org>
AuthorDate: Sat May  7 09:52:21 2016 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Sat May  7 09:52:21 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e8e9cd5

app-emacs/ebuild-mode: Version bump.

Package-Manager: portage-2.2.28

 app-emacs/ebuild-mode/Manifest  |  1 +
 app-emacs/ebuild-mode/ebuild-mode-1.30.ebuild   | 21 +
 .../ebuild-mode/files/50ebuild-mode-gentoo-1.30.el  | 14 ++
 3 files changed, 36 insertions(+)

diff --git a/app-emacs/ebuild-mode/Manifest b/app-emacs/ebuild-mode/Manifest
index 85af92d..983f4fb 100644
--- a/app-emacs/ebuild-mode/Manifest
+++ b/app-emacs/ebuild-mode/Manifest
@@ -1 +1,2 @@
 DIST ebuild-mode-1.29.tar.xz 29296 SHA256 
d4f095b1e58f7182218caa2d5839c0dec3eeb4f10386d846a36a895bcb979190 SHA512 
bf81a5af269db49c2e9907daf7fc5d457ac07a5b9d921aa8084a55fc9065d71d114ea4210fba393b791e2473d5ab8bf37c2af2724f889061537e37e383574344
 WHIRLPOOL 
7e6167c79c5a22c9eab1ba91244f8ac18343092b459e8f8aa38308cd4003ec510e8be88d79e44c6432737816679b1c48491d1f3095c4f891eae499ee025c5018
+DIST ebuild-mode-1.30.tar.xz 29308 SHA256 
7f270854579cbe78fbcc919d26404dbe9933859ba10b5d975801d63d03a6e76e SHA512 
0d45f2bd5c8857745c76bffa7e39a223494cc2362f4c5369ffe93aa5608d6ff98d9d246583a4b2346e9900858a9161f8483e75139d4861d0412afa2dbf4408b2
 WHIRLPOOL 
95cc9b7a5c1a5257fd9c10fc5144344d12c0edee94b2353f73a93253bb5c21e74b622f5f74804cb315a879b12fbebab957a99cf1140ae9551bc944e9d8470c57

diff --git a/app-emacs/ebuild-mode/ebuild-mode-1.30.ebuild 
b/app-emacs/ebuild-mode/ebuild-mode-1.30.ebuild
new file mode 100644
index 000..a20418c
--- /dev/null
+++ b/app-emacs/ebuild-mode/ebuild-mode-1.30.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit readme.gentoo-r1 elisp
+
+DESCRIPTION="Emacs modes for editing ebuilds and other Gentoo specific files"
+HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Emacs";
+SRC_URI="https://dev.gentoo.org/~ulm/emacs/${P}.tar.xz";
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+
+DOCS="ChangeLog keyword-generation.sh"
+ELISP_TEXINFO="${PN}.texi"
+SITEFILE="50${PN}-gentoo-1.30.el"
+DOC_CONTENTS="Some optional features may require installation of additional
+   packages, like app-portage/gentoolkit-dev for echangelog."

diff --git a/app-emacs/ebuild-mode/files/50ebuild-mode-gentoo-1.30.el 
b/app-emacs/ebuild-mode/files/50ebuild-mode-gentoo-1.30.el
new file mode 100644
index 000..b16043e
--- /dev/null
+++ b/app-emacs/ebuild-mode/files/50ebuild-mode-gentoo-1.30.el
@@ -0,0 +1,14 @@
+(add-to-list 'load-path "@SITELISP@")
+(autoload 'ebuild-mode "ebuild-mode"
+  "Major mode for Portage .ebuild and .eclass files." t)
+(autoload 'gentoo-newsitem-mode "gentoo-newsitem-mode"
+  "Major mode for Gentoo GLEP 42 news items." t)
+
+(add-to-list 'auto-mode-alist
+'("\\.\\(ebuild\\|eclass\\|eblit\\)\\'" . ebuild-mode))
+(add-to-list 'auto-mode-alist
+'("/[0-9]\\{4\\}-[01][0-9]-[0-3][0-9]-.+\\.[a-z]\\{2\\}\\.txt\\'"
+  . gentoo-newsitem-mode))
+(add-to-list 'interpreter-mode-alist '("openrc-run" . sh-mode))
+(add-to-list 'interpreter-mode-alist '("runscript" . sh-mode))
+(modify-coding-system-alist 'file "\\.\\(ebuild\\|eclass\\|eblit\\)\\'" 'utf-8)



[gentoo-commits] proj/sci:master commit in: sci-biology/glean/

2016-05-07 Thread Justin Lecher
commit: 2f8f18edc464cd96f096d6a587ea3e76ee062aff
Author: Justin Lecher  gentoo  org>
AuthorDate: Sat May  7 10:03:14 2016 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Sat May  7 10:03:14 2016 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=2f8f18ed

Drop invalid deps

Signed-off-by: Justin Lecher  gentoo.org>

 sci-biology/glean/glean-1.0.1.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/sci-biology/glean/glean-1.0.1.ebuild 
b/sci-biology/glean/glean-1.0.1.ebuild
index aee9bb5..c4c2f05 100644
--- a/sci-biology/glean/glean-1.0.1.ebuild
+++ b/sci-biology/glean/glean-1.0.1.ebuild
@@ -18,7 +18,6 @@ IUSE="graphviz"
 
 DEPEND=""
 RDEPEND="${DEPEND}
-   dev-perl/yaml
virtual/perl-Storable
virtual/perl-Getopt-Long
virtual/perl-Data-Dumper



[gentoo-commits] repo/gentoo:master commit in: x11-wm/spectrwm/files/, x11-wm/spectrwm/

2016-05-07 Thread Michael Weber
commit: 05520288e7ab6e1d155b52bc6a1f779c1dc18dba
Author: Michael Weber  gentoo  org>
AuthorDate: Sat May  7 11:05:51 2016 +
Commit: Michael Weber  gentoo  org>
CommitDate: Sat May  7 11:05:51 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05520288

x11-wm/spectrwm: Version bump (thanks noptrix).

Package-Manager: portage-2.2.28

 x11-wm/spectrwm/Manifest   |  2 +-
 .../files/spectrwm-3.0.0-outdated-manpages.patch   | 24 --
 ...spectrwm-3.0.0.ebuild => spectrwm-3.0.1.ebuild} |  1 -
 3 files changed, 1 insertion(+), 26 deletions(-)

diff --git a/x11-wm/spectrwm/Manifest b/x11-wm/spectrwm/Manifest
index d9b37c8..64c6fb7 100644
--- a/x11-wm/spectrwm/Manifest
+++ b/x11-wm/spectrwm/Manifest
@@ -1,2 +1,2 @@
 DIST spectrwm-2.7.2.tgz 132554 SHA256 
b56cffa01ee2c58515350c1be1940140286fd18778659c6f5ada4595319f97cb SHA512 
cebb0e42566125933bf2c4c9200765d360bb572fd953c510ad39e7abcf9cc507e61420441234fb1bb44d06d28526ba6c594272c173a04181d2c6798e404b7421
 WHIRLPOOL 
5ab24d2866d6a252c03a72fae3e0dd914f6c2041185088da5beb4c7a4a0ee5ec0c3b55cff32bef5f10f159ae1a5e66a6a217a3d67cba2d17ed324145a05391c7
-DIST spectrwm-3.0.0.tar.gz 147373 SHA256 
99e21fb9cface968352069fec776dfe827886af6f50ff04847f05e53c470ed6b SHA512 
750426b232de27f8ab4abc37991be69ce29bb4cc92ab68e198fb961126783929aa23aa32fb7edff498c6a95b90078d7453f2eefa536cc599e06daf5f7ede928b
 WHIRLPOOL 
2237b41d0ee997da4ed0c32ef2800882a4c41a0a49f22a2a1b592d1833b2e2e39b4eda73f129f27023d3c8142d029c48d2b7d417281e4b52ec318e7ee29d21b2
+DIST spectrwm-3.0.1.tar.gz 147331 SHA256 
315fe232e8ac727c289fde8c9b3a3eba19b98739ccb98015c29ce06eacee1853 SHA512 
34e5673940217916c4725e036c28bff440085b1f3a7015a334ec9fcd08a2ef97f8c060dba6a508d7c2b9c8415e4e20a2587dea099def2493803472b1b2df7ced
 WHIRLPOOL 
bf2af477df6d503d0b6bc838b635b61a14c4b6c977f9528b1b2497e17cdfeee06e93daf1f426b7e598bfd7f3f27fa7194cf2f500c09373fc09e42e0e3278334d

diff --git a/x11-wm/spectrwm/files/spectrwm-3.0.0-outdated-manpages.patch 
b/x11-wm/spectrwm/files/spectrwm-3.0.0-outdated-manpages.patch
deleted file mode 100644
index 71209f5..000
--- a/x11-wm/spectrwm/files/spectrwm-3.0.0-outdated-manpages.patch
+++ /dev/null
@@ -1,24 +0,0 @@
 spectrwm-3.0.0/linux/Makefile
-+++ spectrwm-3.0.0/linux/Makefile
-@@ -41,10 +41,6 @@
-   install -m 755 -d $(DESTDIR)$(BINDIR)
-   install -m 755 -d $(DESTDIR)$(LIBDIR)
-   install -m 755 -d $(DESTDIR)$(MANDIR)/man1
--  install -m 755 -d $(DESTDIR)$(MANDIR)/es/man1
--  install -m 755 -d $(DESTDIR)$(MANDIR)/it/man1
--  install -m 755 -d $(DESTDIR)$(MANDIR)/pt/man1
--  install -m 755 -d $(DESTDIR)$(MANDIR)/ru/man1
-   install -m 755 -d $(DESTDIR)$(XSESSIONSDIR)
-   install -m 755 spectrwm$(DESTDIR)$(BINDIR)
-   ln -sf spectrwm$(DESTDIR)$(BINDIR)/scrotwm
-@@ -52,10 +52,6 @@
-   ln -sf libswmhack.so.$(LIBVERSION) 
$(DESTDIR)$(LIBDIR)/libswmhack.so.$(LIBMAJORVERSION)
-   ln -sf libswmhack.so.$(LIBVERSION) 
$(DESTDIR)$(LIBDIR)/libswmhack.so
-   install -m 644 ../spectrwm.1   
$(DESTDIR)$(MANDIR)/man1/spectrwm.1
--  install -m 644 ../spectrwm_es.1
$(DESTDIR)$(MANDIR)/es/man1/spectrwm.1
--  install -m 644 ../spectrwm_it.1
$(DESTDIR)$(MANDIR)/it/man1/spectrwm.1
--  install -m 644 ../spectrwm_pt.1
$(DESTDIR)$(MANDIR)/pt/man1/spectrwm.1
--  install -m 644 ../spectrwm_ru.1
$(DESTDIR)$(MANDIR)/ru/man1/spectrwm.1
-   install -m 644 spectrwm.desktop$(DESTDIR)$(XSESSIONSDIR)
- 
- uninstall:

diff --git a/x11-wm/spectrwm/spectrwm-3.0.0.ebuild 
b/x11-wm/spectrwm/spectrwm-3.0.1.ebuild
similarity index 95%
rename from x11-wm/spectrwm/spectrwm-3.0.0.ebuild
rename to x11-wm/spectrwm/spectrwm-3.0.1.ebuild
index 941f9ea..6efc2fa 100644
--- a/x11-wm/spectrwm/spectrwm-3.0.0.ebuild
+++ b/x11-wm/spectrwm/spectrwm-3.0.1.ebuild
@@ -28,7 +28,6 @@ S=${WORKDIR}/${P}/linux
 
 src_prepare() {
epatch "${FILESDIR}"/${PN}-2.6.2-Makefile.patch
-   epatch "${FILESDIR}"/${PN}-3.0.0-outdated-manpages.patch
tc-export CC
 }
 



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

2016-05-07 Thread Pacho Ramos
commit: c6171ab7124c61ff5d93c1a755fb20c22d95fc0b
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sat May  7 11:49:20 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sat May  7 11:51:54 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6171ab7

app-office/libreoffice: amd64 stable, bug #580672

Package-Manager: portage-2.2.28

 app-office/libreoffice/libreoffice-5.1.2.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-office/libreoffice/libreoffice-5.1.2.2.ebuild 
b/app-office/libreoffice/libreoffice-5.1.2.2.ebuild
index 213fd4e..c6a98b9 100644
--- a/app-office/libreoffice/libreoffice-5.1.2.2.ebuild
+++ b/app-office/libreoffice/libreoffice-5.1.2.2.ebuild
@@ -96,7 +96,7 @@ unset lo_xt
 LICENSE="|| ( LGPL-3 MPL-1.1 )"
 SLOT="0"
 [[ ${PV} == ** ]] || \
-KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
 
 COMMON_DEPEND="
${PYTHON_DEPS}



[gentoo-commits] repo/gentoo:master commit in: app-office/libreoffice-bin-debug/

2016-05-07 Thread Pacho Ramos
commit: 504de314191eedf81e7c653dc2429e8a135eb5bf
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sat May  7 11:51:19 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sat May  7 11:52:04 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=504de314

app-office/libreoffice-bin-debug: amd64 stable, bug #580672

Package-Manager: portage-2.2.28

 .../libreoffice-bin-debug/libreoffice-bin-debug-5.1.2.2-r1.ebuild   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/app-office/libreoffice-bin-debug/libreoffice-bin-debug-5.1.2.2-r1.ebuild 
b/app-office/libreoffice-bin-debug/libreoffice-bin-debug-5.1.2.2-r1.ebuild
index 17bf363..dba2ecd 100644
--- a/app-office/libreoffice-bin-debug/libreoffice-bin-debug-5.1.2.2-r1.ebuild
+++ b/app-office/libreoffice-bin-debug/libreoffice-bin-debug-5.1.2.2-r1.ebuild
@@ -47,7 +47,7 @@ SRC_URI="
 IUSE="gnome java kde"
 LICENSE="LGPL-3"
 SLOT="0"
-KEYWORDS="-* ~amd64 ~x86"
+KEYWORDS="-* amd64 ~x86"
 
 RDEPEND="=app-office/${PN/-debug}-${PVR}[gnome=,java=,kde=]"
 



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

2016-05-07 Thread Pacho Ramos
commit: 0dd3e24e18dc59ca6348777edcfc6854b4cb8346
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sat May  7 11:48:15 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sat May  7 11:51:47 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0dd3e24e

dev-libs/liborcus: amd64 stable, bug #580672

Package-Manager: portage-2.2.28

 dev-libs/liborcus/liborcus-0.9.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/liborcus/liborcus-0.9.2-r1.ebuild 
b/dev-libs/liborcus/liborcus-0.9.2-r1.ebuild
index 2dcf738..a5a27bb 100644
--- a/dev-libs/liborcus/liborcus-0.9.2-r1.ebuild
+++ b/dev-libs/liborcus/liborcus-0.9.2-r1.ebuild
@@ -18,7 +18,7 @@ LICENSE="MIT"
 SLOT="0/0.10" # based on SONAME of liborcus.so
 
 [[ ${PV} ==  ]] || \
-KEYWORDS="~amd64 ~arm ~ppc ~x86"
+KEYWORDS="amd64 ~arm ~ppc ~x86"
 
 IUSE="+spreadsheet-model static-libs tools"
 



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

2016-05-07 Thread Pacho Ramos
commit: a8f9d03cbf668ad079dfbb5f94d97068e925d587
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sat May  7 11:51:01 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sat May  7 11:52:01 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a8f9d03c

app-office/libreoffice-bin: amd64 stable, bug #580672

Package-Manager: portage-2.2.28

 app-office/libreoffice-bin/libreoffice-bin-5.1.2.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-office/libreoffice-bin/libreoffice-bin-5.1.2.2-r1.ebuild 
b/app-office/libreoffice-bin/libreoffice-bin-5.1.2.2-r1.ebuild
index 1f25cda..68630ff 100644
--- a/app-office/libreoffice-bin/libreoffice-bin-5.1.2.2-r1.ebuild
+++ b/app-office/libreoffice-bin/libreoffice-bin-5.1.2.2-r1.ebuild
@@ -55,7 +55,7 @@ SRC_URI="
 IUSE="gnome java kde"
 LICENSE="LGPL-3"
 SLOT="0"
-KEYWORDS="-* ~amd64 ~x86"
+KEYWORDS="-* amd64 ~x86"
 
 BIN_COMMON_DEPEND="
=app-text/libexttextcat-3.4*



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

2016-05-07 Thread Pacho Ramos
commit: 4ef25edfaaa97028ee4c83d8263fcb71984629ff
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sat May  7 11:50:25 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sat May  7 11:51:57 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ef25edf

dev-libs/icu: amd64 stable, bug #580672

Package-Manager: portage-2.2.28

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

diff --git a/dev-libs/icu/icu-57.1.ebuild b/dev-libs/icu/icu-57.1.ebuild
index ac1804e..6c8e297 100644
--- a/dev-libs/icu/icu-57.1.ebuild
+++ b/dev-libs/icu/icu-57.1.ebuild
@@ -14,7 +14,7 @@ LICENSE="BSD"
 
 SLOT="0/57"
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
 IUSE="debug doc examples static-libs"
 
 DEPEND="



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

2016-05-07 Thread Pacho Ramos
commit: 079118ab4047e5ae88d70fc5b55ee508975b54a1
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sat May  7 11:49:03 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sat May  7 11:51:50 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=079118ab

app-office/libreoffice-l10n: amd64 stable, bug #580672

Package-Manager: portage-2.2.28

 app-office/libreoffice-l10n/libreoffice-l10n-5.1.2.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-office/libreoffice-l10n/libreoffice-l10n-5.1.2.2.ebuild 
b/app-office/libreoffice-l10n/libreoffice-l10n-5.1.2.2.ebuild
index 875cd6b..b0148fc 100644
--- a/app-office/libreoffice-l10n/libreoffice-l10n-5.1.2.2.ebuild
+++ b/app-office/libreoffice-l10n/libreoffice-l10n-5.1.2.2.ebuild
@@ -15,7 +15,7 @@ 
BASE_SRC_URI_STABLE="http://download.documentfoundation.org/${PN/-l10n/}/stable/
 
 LICENSE="|| ( LGPL-3 MPL-1.1 )"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
 IUSE="offlinehelp"
 
 #



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

2016-05-07 Thread Ian Delaney
commit: b222d3eac50a8381c9095a4aaa4137e910cfc559
Author: Yuri Konotopov  gmail  com>
AuthorDate: Sat May  7 06:17:09 2016 +
Commit: Ian Delaney  gentoo  org>
CommitDate: Sat May  7 12:10:56 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b222d3ea

dev-python/polib: version bump, vn. 1.0.7

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

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

 dev-python/polib/Manifest   |  1 +
 dev-python/polib/polib-1.0.7.ebuild | 33 +
 2 files changed, 34 insertions(+)

diff --git a/dev-python/polib/Manifest b/dev-python/polib/Manifest
index 7d88dcc..81ccbbd 100644
--- a/dev-python/polib/Manifest
+++ b/dev-python/polib/Manifest
@@ -1 +1,2 @@
 DIST polib-1.0.4.tar.gz 151634 SHA256 
8b3276f75ce2fce9442e27db3ae63d842416e17f0e2095f39ff52dc735e5749a SHA512 
a38d57acdaded0371be83825a28f14f178aebdbc0435724f33eebda109adb2b8210e33659ebec88d2d9e98aa60c482d7f8a958ec18f6769fda7a2fb14edd2744
 WHIRLPOOL 
1fe4e5bbf27444c1a6d7d79c70325078d3b2d15f6a5eb84852ccb080dfee4d03a7f8311127b6f93e1cb23ad633155bf93221317ec3518b1c5d7ec52b79fab87d
+DIST polib-1.0.7.tar.gz 156282 SHA256 
43ce60d05ffa442ba9d3c5722193aadb93c38174b9fb471c8ea7ccbf8349bbca SHA512 
bfec3538f9ab499ff2149bb40e0685b4cb6d5f0bc7ce8dc33e1fc511a6169e01c1a317e652daed7b3bfd9bbfe6ee1d545b4d8913f54e91504c4debb5b1b94b6e
 WHIRLPOOL 
79bb18cb71d4aba5b6d4b91893cfa043f3df56ae11c4b90b9c8c6a8d3757d1f84bc1a75b1fea462e61907518c042496a422085cb352ae105f25ed11925a4e2cf

diff --git a/dev-python/polib/polib-1.0.7.ebuild 
b/dev-python/polib/polib-1.0.7.ebuild
new file mode 100644
index 000..e7826f3
--- /dev/null
+++ b/dev-python/polib/polib-1.0.7.ebuild
@@ -0,0 +1,33 @@
+# 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 library to manipulate gettext files (.po and .mo files)"
+HOMEPAGE="https://bitbucket.org/izi/polib/wiki/Home";
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc"
+
+DEPEND="doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
+
+python_compile_all() {
+   use doc && emake -C docs html
+}
+
+python_test() {
+   "${PYTHON}" tests/tests.py || die "Tests failed under ${EPYTHON}"
+}
+
+python_install_all() {
+   local DOCS=( CHANGELOG README.rst )
+   use doc && local HTML_DOCS=( docs/_build/html/. )
+   distutils-r1_python_install_all
+}



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

2016-05-07 Thread Pacho Ramos
commit: 0fcfe0ce95a1e3750034e79931562d9b8605b055
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sat May  7 12:18:04 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sat May  7 12:22:27 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0fcfe0ce

dev-python/pygal: Support python 3.5

Package-Manager: portage-2.2.28

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

diff --git a/dev-python/pygal/pygal-2.1.1.ebuild 
b/dev-python/pygal/pygal-2.1.1.ebuild
index 19b2a92..16730f0 100644
--- a/dev-python/pygal/pygal-2.1.1.ebuild
+++ b/dev-python/pygal/pygal-2.1.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
 
 DESCRIPTION="A python SVG charts generator"



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

2016-05-07 Thread Pacho Ramos
commit: 24ca660230bc57587e7c94b55d77be5592143b5f
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sat May  7 12:16:59 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sat May  7 12:22:21 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24ca6602

dev-python/tinycss: Support python 3.5

Package-Manager: portage-2.2.28

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

diff --git a/dev-python/tinycss/tinycss-0.3.ebuild 
b/dev-python/tinycss/tinycss-0.3.ebuild
index a631377..49ed509 100644
--- a/dev-python/tinycss/tinycss-0.3.ebuild
+++ b/dev-python/tinycss/tinycss-0.3.ebuild
@@ -4,7 +4,7 @@
 
 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: media-gfx/cairosvg/

2016-05-07 Thread Pacho Ramos
commit: f4b4e60fd14b5eddd88dfb7106bfc19fea629175
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sat May  7 12:17:51 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sat May  7 12:22:24 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4b4e60f

media-gfx/cairosvg: Support python 3.5

Package-Manager: portage-2.2.28

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

diff --git a/media-gfx/cairosvg/cairosvg-1.0.7.ebuild 
b/media-gfx/cairosvg/cairosvg-1.0.7.ebuild
index 84daf3f..341b3b5 100644
--- a/media-gfx/cairosvg/cairosvg-1.0.7.ebuild
+++ b/media-gfx/cairosvg/cairosvg-1.0.7.ebuild
@@ -4,7 +4,7 @@
 
 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: app-text/fbpdf/

2016-05-07 Thread Sergei Trofimovich
commit: 778f6990a13aae925d9a16e5f0640eefdae0b39f
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sat May  7 12:41:44 2016 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat May  7 12:41:44 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=778f6990

app-text/fbpdf: new package, bug #580762

Framebuffer PDF and DJVU reader.
Requested by w0rm.

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

Package-Manager: portage-2.2.28

 app-text/fbpdf/Manifest |  1 +
 app-text/fbpdf/fbpdf-0_p20160409.ebuild | 39 +
 app-text/fbpdf/metadata.xml | 12 ++
 3 files changed, 52 insertions(+)

diff --git a/app-text/fbpdf/Manifest b/app-text/fbpdf/Manifest
new file mode 100644
index 000..ce49a8c
--- /dev/null
+++ b/app-text/fbpdf/Manifest
@@ -0,0 +1 @@
+DIST fbpdf-0_p20160409.tar.gz 7788 SHA256 
ae17aa7fb1e472df5fa1be42505305705dff15bdf92006311816b66f2a2e4f3f SHA512 
e939f2d1fd9dccfb778756c3dd3f1b4d8c413e55d17fb68d7bfbd42a541a30b6bdc8f190e81d18ebc45c7e4e46ce48a559b9c564710fb66b292f043f7351b684
 WHIRLPOOL 
cb86cdaecf8e35610916f4f2bc990b810c56f200aba96a036a6e65c72258e93d6782a97ffc8356e32c58aeba7126d698e802c77d47553a8ebbf1d915aa04ade7

diff --git a/app-text/fbpdf/fbpdf-0_p20160409.ebuild 
b/app-text/fbpdf/fbpdf-0_p20160409.ebuild
new file mode 100644
index 000..396a94d
--- /dev/null
+++ b/app-text/fbpdf/fbpdf-0_p20160409.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit toolchain-funcs
+
+DESCRIPTION="framebuffer pdf and djvu viewer"
+HOMEPAGE="http://repo.or.cz/fbpdf.git";
+SRC_URI="https://dev.gentoo.org/~slyfox/distfiles/${P}.tar.gz";
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   >=app-text/mupdf-1.7:0=
+   dev-lang/mujs:0=
+   media-libs/freetype:2=
+   media-libs/jbig2dec:0=
+   virtual/jpeg:0=
+   media-libs/openjpeg:0=
+   dev-libs/openssl:0=
+   app-text/djvu:0=
+"
+
+DEPEND="${RDEPEND}"
+
+S=${WORKDIR}/${PN}
+
+src_compile() {
+   emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
+}
+
+src_install() {
+   dobin fbpdf fbdjvu
+   dodoc README
+}

diff --git a/app-text/fbpdf/metadata.xml b/app-text/fbpdf/metadata.xml
new file mode 100644
index 000..a545659
--- /dev/null
+++ b/app-text/fbpdf/metadata.xml
@@ -0,0 +1,12 @@
+
+http://www.gentoo.org/dtd/metadata.dtd";>
+
+   
+   sly...@gentoo.org
+   Sergei Trofimovich
+   Primary Maintainer
+   
+   
+   xmms2
+   
+



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

2016-05-07 Thread Sergei Trofimovich
commit: aee9df1ff6473563435b3defa6ea404766ae62bc
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sat May  7 12:43:05 2016 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat May  7 12:43:05 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aee9df1f

app-text/fbpdf: dropped wrong upstream from metadata.xml

Package-Manager: portage-2.2.28

 app-text/fbpdf/metadata.xml | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/app-text/fbpdf/metadata.xml b/app-text/fbpdf/metadata.xml
index a545659..248be00 100644
--- a/app-text/fbpdf/metadata.xml
+++ b/app-text/fbpdf/metadata.xml
@@ -6,7 +6,4 @@
Sergei Trofimovich
Primary Maintainer

-   
-   xmms2
-   
 



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

2016-05-07 Thread Anthony G. Basile
commit: c80378f2a00a9202bf74c7f5a0a6b649a9f1e33b
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sat May  7 13:09:10 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sat May  7 13:09:33 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c80378f2

app-text/xapian-omega: drop older 1.3 version

Package-Manager: portage-2.2.26

 app-text/xapian-omega/Manifest |  1 -
 app-text/xapian-omega/xapian-omega-1.3.4-r1.ebuild | 40 --
 2 files changed, 41 deletions(-)

diff --git a/app-text/xapian-omega/Manifest b/app-text/xapian-omega/Manifest
index 634a433..9c3adaf 100644
--- a/app-text/xapian-omega/Manifest
+++ b/app-text/xapian-omega/Manifest
@@ -1,5 +1,4 @@
 DIST xapian-omega-1.2.19.tar.xz 419804 SHA256 
ca0a9afe2d1ced933408fc0b089c96cd55f90d7b06ae9708eb84294cd77e35ed SHA512 
95be43eb25c7da59db7c396879a1bc35df70f0412a66d56c8ef1bc90d7f5930bc8e83fc5e1b3bc8a791fa92ea6e705fb0df5833265f4e95cd8bcce49dda7c976
 WHIRLPOOL 
101c34c2603d1287685a642b2d9be2aa1eb2779161b1f662f0ba7f91563b319eb0b0dd6def688122df991e56b6fe491cfec5ed93c10ee205948c5885c0d83f2f
 DIST xapian-omega-1.2.22.tar.xz 437556 SHA256 
a7d4b00f6830d003490c0f727fc03584e703cd6e96738e03930f135cd966381b SHA512 
c90ef3658cfb7f0337aa946ad04a7173d0aa89e5179c8b9edbfd78156c11d93d6a9ef6055142d26ecd95af8b0cbdf3b061e505c75f37f5e1e3b2ffc272fbaa3b
 WHIRLPOOL 
fa500c681fe1c8b82c3d469183ce987b38cd91f110ed1cd7b4e5372525a503c28e310abb15afc31892f2fa4fbd8e74bce07c1b618996541500b3f8d114b06920
 DIST xapian-omega-1.2.23.tar.xz 437912 SHA256 
55c790204fc0b1ddbd4bdae73aa55eed40671475e13252a71a53a01f80d172ef SHA512 
1ea2b090b75f7ab530bbb6af79eb26931684796f9b0a987530f44e7f7f9527929644880f7528198e0ea22f69feabd014783c0b01edaa6673b54f83091e9a5428
 WHIRLPOOL 
522833f6dc47693885238caac1da80141d909a2c7c89bc5f302e064f5ebded132329000a223f9a11b412adea25c412ff4a99c0f5de9cf25582e62dca02a3bae6
-DIST xapian-omega-1.3.4.tar.xz 482924 SHA256 
f6f31bd46194703adc317cfdbd62ce423fc2f9c96b7b1c9fb2a6bfa2f88779d7 SHA512 
5c675d756af271a237182ba0bfd11c453725800adde829bad453d2a3e01144cc12226fc7fcffde0c799fdfc697222ba64de7ebbf5834ec300e6f39985db269d9
 WHIRLPOOL 
7dfabc7a3fdd9a5d4dc59151862183e4655149c74a291ab585322214fb0caab2e172da11a1bc678ba7bbe352eac4212c785ad4152516b677a68360fac9d4aa37
 DIST xapian-omega-1.3.5.tar.xz 486076 SHA256 
f7a549cecd85fcecf0ec087fe7d839ce6d712b1c25fd1988c80f19df8958f47a SHA512 
a063c9584487321a27393bb531dc807d53e572ae439938fd9dd584d7f0970366eaa20ae18200bdafd22aea5e3f932dde390f123d39d90ade1b7934bbfc10
 WHIRLPOOL 
7c0f02a2122bcf0c0c2fbd8692f138de73ce5e01bf01eb6d7a2c8e4459dbaa91f9e98a6ffa9cc8e9efa0b31b312191ecdb7743c960238cec762278087cda10b7

diff --git a/app-text/xapian-omega/xapian-omega-1.3.4-r1.ebuild 
b/app-text/xapian-omega/xapian-omega-1.3.4-r1.ebuild
deleted file mode 100644
index e8eeece..000
--- a/app-text/xapian-omega/xapian-omega-1.3.4-r1.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-inherit autotools eutils
-
-DESCRIPTION="An application built on Xapian, consisting of indexers and a CGI 
search frontend"
-SRC_URI="http://www.oligarchy.co.uk/xapian/${PV}/xapian-omega-${PV}.tar.xz";
-HOMEPAGE="http://www.xapian.org/";
-S="${WORKDIR}/xapian-omega-${PV}"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~x86"
-IUSE=""
-
-DEPEND="dev-libs/xapian:0/1.3.5
-   dev-lang/perl
-   dev-libs/libpcre
-   sys-libs/zlib"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
-   # Bug #574666
-   epatch "${FILESDIR}"/${P}-fix-lz.patch
-   eautoreconf
-   echo "CONFIG_PROTECT=\"/etc/omega.conf\"" > "${T}"/20xapian-omega
-}
-
-src_install () {
-   emake DESTDIR="${D}" install
-
-   #move docs to /usr/share/doc/${PF}.
-   mv "${D}/usr/share/doc/xapian-omega" "${D}/usr/share/doc/${PF}" || die
-
-   doenvd "${T}"/20xapian-omega
-   dodoc AUTHORS ChangeLog INSTALL NEWS README TODO
-}



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

2016-05-07 Thread Sergei Trofimovich
commit: 51f95ebbb678aff6576f21e39c694946324086d7
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sat May  7 13:51:03 2016 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat May  7 13:51:03 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51f95ebb

media-video/avidemux: drop unused local IUSEs

Package-Manager: portage-2.2.28

 media-video/avidemux/metadata.xml | 5 -
 1 file changed, 5 deletions(-)

diff --git a/media-video/avidemux/metadata.xml 
b/media-video/avidemux/metadata.xml
index 2080ce6..00c928c 100644
--- a/media-video/avidemux/metadata.xml
+++ b/media-video/avidemux/metadata.xml
@@ -5,11 +5,6 @@
 media-vi...@gentoo.org
 Gentoo Video project
   
-  
-Enable A/52 (AC-3) audio encoder support.
-Enable Adaptive Multi-Rate format support via 
media-libs/opencore-amr.
-Enable VP8 codec support via 
media-libs/libvpx.
-  
   
 avidemux
   



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

2016-05-07 Thread Anthony G. Basile
commit: 9be97c959be4c6de723a349fd806b6dd6bb222ef
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sat May  7 14:21:40 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sat May  7 14:21:59 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9be97c95

app-text/xapian-omega: add data, template, cdb and log dirs, bug # 581984

Package-Manager: portage-2.2.26

 ...ega-1.3.5-r1.ebuild => xapian-omega-1.3.5-r2.ebuild} | 17 +++--
 1 file changed, 15 insertions(+), 2 deletions(-)

diff --git a/app-text/xapian-omega/xapian-omega-1.3.5-r1.ebuild 
b/app-text/xapian-omega/xapian-omega-1.3.5-r2.ebuild
similarity index 69%
rename from app-text/xapian-omega/xapian-omega-1.3.5-r1.ebuild
rename to app-text/xapian-omega/xapian-omega-1.3.5-r2.ebuild
index 3f920a9..0ec1697 100644
--- a/app-text/xapian-omega/xapian-omega-1.3.5-r1.ebuild
+++ b/app-text/xapian-omega/xapian-omega-1.3.5-r2.ebuild
@@ -27,9 +27,22 @@ src_prepare() {
 src_install () {
emake DESTDIR="${D}" install
 
+   doenvd "${T}"/20xapian-omega
+   dodoc AUTHORS ChangeLog INSTALL NEWS README TODO
+
#move docs to /usr/share/doc/${PF}.
mv "${D}/usr/share/doc/xapian-omega" "${D}/usr/share/doc/${PF}" || die
 
-   doenvd "${T}"/20xapian-omega
-   dodoc AUTHORS ChangeLog INSTALL NEWS README TODO
+   # Directory containing Xapian databases:
+   keepdir /var/lib/omega/data
+
+   # Directory containing OmegaScript templates:
+   keepdir /var/lib/omega/templates
+   mv "${S}"/templates/* "${D}"/var/lib/omega/templates || die
+
+   # Directory to write Omega logs to:
+   keepdir /var/log/omega
+
+   # Directory containing any cdb files for the $lookup OmegaScript 
command:
+   keepdir /var/lib/omega/cdb
 }



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

2016-05-07 Thread Anthony G. Basile
commit: 5f8e1ee065b2ab82c2a8aa84d3ed8139b3637996
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sat May  7 14:32:10 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sat May  7 14:32:10 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f8e1ee0

app-text/xapian-omega: clean up the phases a bit

Package-Manager: portage-2.2.26

 app-text/xapian-omega/xapian-omega-1.2.23-r1.ebuild | 6 ++
 app-text/xapian-omega/xapian-omega-1.3.5-r2.ebuild  | 6 ++
 2 files changed, 4 insertions(+), 8 deletions(-)

diff --git a/app-text/xapian-omega/xapian-omega-1.2.23-r1.ebuild 
b/app-text/xapian-omega/xapian-omega-1.2.23-r1.ebuild
index 9b20f40..1c2bada 100644
--- a/app-text/xapian-omega/xapian-omega-1.2.23-r1.ebuild
+++ b/app-text/xapian-omega/xapian-omega-1.2.23-r1.ebuild
@@ -20,16 +20,14 @@ DEPEND="dev-libs/xapian:0/1.2.22
sys-libs/zlib"
 RDEPEND="${DEPEND}"
 
-src_prepare() {
-   echo "CONFIG_PROTECT=\"/etc/omega.conf\"" > "${T}"/20xapian-omega
-}
-
 src_install () {
emake DESTDIR="${D}" install
 
#move docs to /usr/share/doc/${PF}.
mv "${D}/usr/share/doc/xapian-omega" "${D}/usr/share/doc/${PF}"
 
+   # Protect /etc/omega.conf
+   echo "CONFIG_PROTECT=\"/etc/omega.conf\"" > "${T}"/20xapian-omega
doenvd "${T}"/20xapian-omega
dodoc AUTHORS ChangeLog INSTALL NEWS README TODO
 }

diff --git a/app-text/xapian-omega/xapian-omega-1.3.5-r2.ebuild 
b/app-text/xapian-omega/xapian-omega-1.3.5-r2.ebuild
index 0ec1697..85772bb 100644
--- a/app-text/xapian-omega/xapian-omega-1.3.5-r2.ebuild
+++ b/app-text/xapian-omega/xapian-omega-1.3.5-r2.ebuild
@@ -20,13 +20,11 @@ DEPEND="dev-libs/xapian:0/1.3.6
sys-libs/zlib"
 RDEPEND="${DEPEND}"
 
-src_prepare() {
-   echo "CONFIG_PROTECT=\"/etc/omega.conf\"" > "${T}"/20xapian-omega
-}
-
 src_install () {
emake DESTDIR="${D}" install
 
+   # Protect /etc/omega.conf
+   echo "CONFIG_PROTECT=\"/etc/omega.conf\"" > "${T}"/20xapian-omega
doenvd "${T}"/20xapian-omega
dodoc AUTHORS ChangeLog INSTALL NEWS README TODO
 



[gentoo-commits] proj/sci:master commit in: sci-biology/full_lengther_next/

2016-05-07 Thread Martin Mokrejs
commit: 268b423672eb86dd87e9db1029a21447f1dae3b4
Author: Martin Mokrejš  fold  natur  cuni  cz>
AuthorDate: Sat May  7 14:36:25 2016 +
Commit: Martin Mokrejs  fold  natur  cuni  cz>
CommitDate: Sat May  7 14:36:25 2016 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=268b4236

sci-biology/full_lengther_next: version bump

Package-Manager: portage-2.2.28

 .../{full_lengther_next-0.6.1.ebuild => full_lengther_next-0.6.2.ebuild}  | 0
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/sci-biology/full_lengther_next/full_lengther_next-0.6.1.ebuild 
b/sci-biology/full_lengther_next/full_lengther_next-0.6.2.ebuild
similarity index 100%
rename from sci-biology/full_lengther_next/full_lengther_next-0.6.1.ebuild
rename to sci-biology/full_lengther_next/full_lengther_next-0.6.2.ebuild



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

2016-05-07 Thread Anthony G. Basile
commit: aae2307ca07c935176d206f2539a42cdfc0ac53f
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sat May  7 14:43:26 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sat May  7 14:43:26 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aae2307c

dev-libs/xapian-bindings: remove older 1.3

Package-Manager: portage-2.2.26

 dev-libs/xapian-bindings/Manifest  |   1 -
 .../xapian-bindings/xapian-bindings-1.3.4.ebuild   | 119 -
 2 files changed, 120 deletions(-)

diff --git a/dev-libs/xapian-bindings/Manifest 
b/dev-libs/xapian-bindings/Manifest
index 4e62506..c012665 100644
--- a/dev-libs/xapian-bindings/Manifest
+++ b/dev-libs/xapian-bindings/Manifest
@@ -1,5 +1,4 @@
 DIST xapian-bindings-1.2.19.tar.xz 828904 SHA256 
3b9434c6144cc347783175c92829f304e86919bbbd44f51b7b4a7148960cde17 SHA512 
ac72ec35ae3b767e04e848a9782b41d74e99b6b1f795d5096373911ff549b3bf2e602a91ed0e5f7dce2e43e1dd308af710719e5a80c6a179393aac4af316de30
 WHIRLPOOL 
33770203390fea6f6048ebdc63cb7031f53a30be3568e3f3f6f8a25f8aa30a284347b402e360c0c2182069e3f6dab067fc5f6cd2b950f45e196afe057e4d80e3
 DIST xapian-bindings-1.2.22.tar.xz 844040 SHA256 
b15ca7984980a1d2aedd3378648ef5f3889cb39a047bac1522a8e5d04f0a8557 SHA512 
0eec204ebb92f1230b9dbd080ad2b56ea5fa8e6170eb4354556e5790c7a7da7ba4c8475aaf86fb8f10f102a461d91590184271220626315f55c0631e73e122e0
 WHIRLPOOL 
05ac5b31d73f9de0c101da832ef289f6a505baa68216eba6fa0cf80df1709feef7e42c7b8f4cf9af35f775e8514c6d4b944c2aceb10bc558a83305a637ce
 DIST xapian-bindings-1.2.23.tar.xz 885888 SHA256 
19b4b56c74863c51733d8c2567272ef7f004b898cf44016711ae25bc524b2215 SHA512 
4be9d103a4073a08d2481e9ddc347156d4028a1517f313861ad3664e6103e052dc1a0d07a992da3ca02599505c002d09d77c4fd886c144918aab72977e69994c
 WHIRLPOOL 
1323e51dcd8f18f573f9338d9a013bfd370870c1fd2c0b0e3ff9d1f6b3b9154a0512d7442d7c7b1b00a70757faa218e8894a0f4fe56da88bca12ba2259cd35de
-DIST xapian-bindings-1.3.4.tar.xz 1206856 SHA256 
c2481c49007392ebe5f7a1bfbd88c528e329b74650a985dd3c7d3d6649d58498 SHA512 
e47f0ee0a113aa3a89310ef1844a46477b8720d5caf6490c0a319ebd091307af0d9c52c76cc34c5fab6ba511128e7781f3878a38e20017040233bc9f150a9c3f
 WHIRLPOOL 
f5f0a72ca9586eefa51d880f59fc1a098fdabee89ccc8f9e0c8db345e9b55307d1fb8aabbe0a1deade387fe57ec39acce29b6966872fafcb25994105da07ebd5
 DIST xapian-bindings-1.3.5.tar.xz 1005824 SHA256 
4b5b9089d39b2a725651349127f64d24fe66db46572bdd92f39b8483bca400c3 SHA512 
57c903a48c4e0875f5ada5b311afe74b0c0a2136d9827fd136638b4fb0f30ed51afaff57fb664ab264ac7eee4b3f61f4dc391f03bc17f63cc06de57eaaef5cc2
 WHIRLPOOL 
12e70382f584609de1bc00b3527f9b755ccdfa201203da9595c62fde622fd5b85f66c3f3bf314c7f2e1a9f313557fd11899dff5eced3823247b8fa2b6691890b

diff --git a/dev-libs/xapian-bindings/xapian-bindings-1.3.4.ebuild 
b/dev-libs/xapian-bindings/xapian-bindings-1.3.4.ebuild
deleted file mode 100644
index 8cfaa4a..000
--- a/dev-libs/xapian-bindings/xapian-bindings-1.3.4.ebuild
+++ /dev/null
@@ -1,119 +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=threads
-DISTUTILS_SINGLE_IMPL=yesplz
-DISTUTILS_OPTIONAL=yesplz
-DISTUTILS_IN_SOURCE_BUILD=yesplz
-
-USE_PHP="php5-5 php5-6"
-
-PHP_EXT_NAME="xapian"
-PHP_EXT_INI="yes"
-PHP_EXT_OPTIONAL_USE="php"
-
-#mono violates sandbox, we disable it until we figure this out
-#inherit autotools distutils-r1 libtool java-pkg-opt-2 mono-env 
php-ext-source-r2 toolchain-funcs
-inherit autotools distutils-r1 libtool java-pkg-opt-2 php-ext-source-r2 
toolchain-funcs
-
-DESCRIPTION="SWIG and JNI bindings for Xapian"
-HOMEPAGE="http://www.xapian.org/";
-SRC_URI="http://oligarchy.co.uk/xapian/${PV}/${P}.tar.xz";
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
-#IUSE="java lua mono perl php python ruby tcl"
-IUSE="java lua perl php python ruby tcl"
-#REQUIRED_USE="|| ( java lua mono perl php python ruby tcl )"
-REQUIRED_USE="|| ( java lua perl php python ruby tcl )"
-
-COMMONDEPEND="dev-libs/xapian:0/1.3.5
-   lua? ( dev-lang/lua:= )
-   perl? ( dev-lang/perl:= )
-   python? ( ${PYTHON_DEPS} )
-   ruby? ( dev-lang/ruby:= )
-   tcl? ( dev-lang/tcl:= )"
-#  mono? ( dev-lang/mono )
-DEPEND="${COMMONDEPEND}
-   virtual/pkgconfig
-   java? ( >=virtual/jdk-1.6 )"
-RDEPEND="${COMMONDEPEND}
-   java? ( >=virtual/jre-1.6 )"
-
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-
-pkg_setup() {
-#  use mono && mono-env_pkg_setup
-   use java && java-pkg-opt-2_pkg_setup
-   use python && python-single-r1_pkg_setup
-}
-
-src_prepare() {
-   use java && java-pkg-opt-2_src_prepare
-
-   if use python; then
-   sed \
-   -e 's|\(^xapian/__init__.py: modern/xapian.py\)|\1 
xapian/_xapian$(PYTHON_SO)|' \
-   -i python/Makefile.in || die "sed failed"
-   fi
-
-   # http:

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

2016-05-07 Thread Anthony G. Basile
commit: 8c4fcca776d9f3145af9799e5d696df56e382124
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sat May  7 14:44:50 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sat May  7 14:45:10 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c4fcca7

dev-libs/xapian: remove older 1.3

Package-Manager: portage-2.2.26

 dev-libs/xapian/Manifest   |  1 -
 dev-libs/xapian/xapian-1.3.4-r2.ebuild | 72 --
 2 files changed, 73 deletions(-)

diff --git a/dev-libs/xapian/Manifest b/dev-libs/xapian/Manifest
index 7d969e7..07e3491 100644
--- a/dev-libs/xapian/Manifest
+++ b/dev-libs/xapian/Manifest
@@ -1,5 +1,4 @@
 DIST xapian-core-1.2.19.tar.xz 3175384 SHA256 
4a78260388ff1b042f0ab5d18afdd524a530ae609690d0339990ddc147a54785 SHA512 
5cd29b8c278b4fa652f947cd6689945bbe239c95425344d0fedb445bf1534198333844d91e6e59cf870043066f4dc511cd0268071916002e96bd38b59aa91c1b
 WHIRLPOOL 
5d65982d47145addc6585b72a99494bf6d14277df2c796925fbe6284ddd08b89fbc147c1a29575d573afebb2e2f6eb6dc73d58161260404be7e5ceefe1371ffb
 DIST xapian-core-1.2.22.tar.xz 3204096 SHA256 
269b87ca3faf79d444e8bb82ed58a96f1955008d7702f9966dec68608588527f SHA512 
cb6bd565eb307f9bc8f801fc9cda0cc6ad5d7cb8bf0af2ab6e42d48ca4ea4169f08621db810ab87d15957d0f873bcb0336e16b12fdb6026375d9c0192781e0d6
 WHIRLPOOL 
580c16889a6c3e99a00f8bb791f878a08ff3522c3dffb18ace18d54575247332f0fff8866f46475513dde7544205fe08971cbd284ec3714ce0d6b9b445e8746e
 DIST xapian-core-1.2.23.tar.xz 3206452 SHA256 
9783aeae4e1a6d06e5636b270db4b458a7d0804a31da158269f57fa5dc86347d SHA512 
df3fa71150575faf982d6b90f2364962d61012dd45ed7ef4945a0623ed7056c32ea3cbc423f2016415a80779251ecb5080b6a34c5b66b823cf8d92fe6b5b3d30
 WHIRLPOOL 
a5498117b060218455946948c119e52ed0639a2c2d5f1fd60e416ab06ad2cd483814039801d1fa29e097a994927d482a2bd10ab18bca28a413198ea1adb4187b
-DIST xapian-core-1.3.4.tar.xz 2570240 SHA256 
0a49da54a1eecb43de657f6341fde386f4c6e6bd1d2d64f77212adfc44bf67d4 SHA512 
b616eb3532aaf7a00f58e6f21fa7309e434f9e598322793d2e81fe90da2a9d343518c9900bd30686594efeb24d370099f0df8f3a30afadb613ba19638f700617
 WHIRLPOOL 
167df88df4d12548e69e97e1163487f8a0eef93daedbac2c4a0bd4e4515dc2932c2bd044b2ec4905d251fdc69b460cb4ada67b511c2bfd8495eff8c5697b5271
 DIST xapian-core-1.3.5.tar.xz 2580788 SHA256 
3ad99ff4e91a4ff997fd576377e7c8f0134ceb3695c49e8f7d78ebf3c19b70ad SHA512 
9617ad41546c6e8107d0ce1d4ec010930627174004d22372badef96279d2c0da35d70e04225f901d88f256083ca1c880b79fa3cde1e00176fa6b07f01d47a237
 WHIRLPOOL 
8c39ecc2e0890fb96ec28ee947134fad0d9f164dec479323481d66502798eef90cf2818c9948f14f83070fd3cafe44924682e8dd6848b83494a45b4528739e12

diff --git a/dev-libs/xapian/xapian-1.3.4-r2.ebuild 
b/dev-libs/xapian/xapian-1.3.4-r2.ebuild
deleted file mode 100644
index 4aa3cc0..000
--- a/dev-libs/xapian/xapian-1.3.4-r2.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-inherit eutils
-
-MY_P="${PN}-core-${PV}"
-
-DESCRIPTION="Xapian Probabilistic Information Retrieval library"
-HOMEPAGE="http://www.xapian.org/";
-SRC_URI="http://oligarchy.co.uk/xapian/${PV}/${MY_P}.tar.xz";
-
-LICENSE="GPL-2"
-SLOT="0/1.3.5" # ABI version of libxapian-1.3.so, prefixed with 1.3.
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
-IUSE="doc static-libs -cpu_flags_x86_sse +cpu_flags_x86_sse2 +brass +chert 
+inmemory"
-
-DEPEND="sys-libs/zlib"
-RDEPEND="${DEPEND}"
-
-REQUIRED_USE="inmemory? ( chert )"
-
-S="${WORKDIR}/${MY_P}"
-
-src_configure() {
-   local myconf=""
-
-   ewarn
-   if use cpu_flags_x86_sse2; then
-   ewarn "Using sse2"
-   myconf="${myconf} --enable-sse=sse2"
-   else
-   if use cpu_flags_x86_sse; then
-   ewarn "Using sse"
-   myconf="${myconf} --enable-sse=sse"
-   else
-   ewarn "Disabling sse and sse2"
-   myconf="${myconf} --disable-sse"
-   fi
-   fi
-   ewarn
-
-   myconf="${myconf} $(use_enable static-libs static)"
-
-   use brass || myconf="${myconf} --disable-backend-brass"
-   use chert || myconf="${myconf} --disable-backend-chert"
-   use inmemory || myconf="${myconf} --disable-backend-inmemory"
-
-   myconf="${myconf} --enable-backend-remote --program-suffix="
-
-   econf $myconf
-}
-
-src_install() {
-   emake DESTDIR="${D}" install
-
-   # bug #573466
-   ln -sf "${D}usr/bin/xapian-config" "${D}usr/bin/xapian-config-1.3"
-
-   mv "${D}usr/share/doc/xapian-core" "${D}usr/share/doc/${PF}" || die
-   use doc || rm -rf "${D}usr/share/doc/${PF}"
-
-   dodoc AUTHORS HACKING PLATFORMS README NEWS
-
-   prune_libtool_files --all
-}
-
-src_test() {
-   emake check VALGRIND=
-}



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

2016-05-07 Thread Anthony G. Basile
commit: 1ebd4e93f72ae1eba47eac7dee0a7301a63fb38b
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sat May  7 15:13:18 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sat May  7 15:13:18 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ebd4e93

app-text/xapian-omega: backport commit 9be97c9 for the 1.2 branch

Package-Manager: portage-2.2.26

 ...1.2.23-r1.ebuild => xapian-omega-1.2.23-r2.ebuild} | 19 ---
 1 file changed, 16 insertions(+), 3 deletions(-)

diff --git a/app-text/xapian-omega/xapian-omega-1.2.23-r1.ebuild 
b/app-text/xapian-omega/xapian-omega-1.2.23-r2.ebuild
similarity index 69%
rename from app-text/xapian-omega/xapian-omega-1.2.23-r1.ebuild
rename to app-text/xapian-omega/xapian-omega-1.2.23-r2.ebuild
index 1c2bada..164eebb 100644
--- a/app-text/xapian-omega/xapian-omega-1.2.23-r1.ebuild
+++ b/app-text/xapian-omega/xapian-omega-1.2.23-r2.ebuild
@@ -23,11 +23,24 @@ RDEPEND="${DEPEND}"
 src_install () {
emake DESTDIR="${D}" install
 
-   #move docs to /usr/share/doc/${PF}.
-   mv "${D}/usr/share/doc/xapian-omega" "${D}/usr/share/doc/${PF}"
-
# Protect /etc/omega.conf
echo "CONFIG_PROTECT=\"/etc/omega.conf\"" > "${T}"/20xapian-omega
doenvd "${T}"/20xapian-omega
dodoc AUTHORS ChangeLog INSTALL NEWS README TODO
+
+   #move docs to /usr/share/doc/${PF}.
+   mv "${D}/usr/share/doc/xapian-omega" "${D}/usr/share/doc/${PF}" || die
+
+   # Directory containing Xapian databases:
+   keepdir /var/lib/omega/data
+
+   # Directory containing OmegaScript templates:
+   keepdir /var/lib/omega/templates
+   mv "${S}"/templates/* "${D}"/var/lib/omega/templates || die
+
+   # Directory to write Omega logs to:
+   keepdir /var/log/omega
+
+   # Directory containing any cdb files for the $lookup OmegaScript 
command:
+   keepdir /var/lib/omega/cdb
 }



[gentoo-commits] repo/gentoo:master commit in: media-tv/tvheadend/files/, media-tv/tvheadend/

2016-05-07 Thread Sam Jorna
commit: 1c7530a056684f82f60b801ea2f2fdee235ce976
Author: Sam Jorna  gentoo  org>
AuthorDate: Sat May  7 11:11:30 2016 +
Commit: Sam Jorna  gentoo  org>
CommitDate: Sat May  7 15:43:24 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c7530a0

media-tv/tvheadend: bump to 4.0.9

Bumps to v4.0.9, additionally fixes build issue against hdhomerun.

Gentoo-bug: 578816
Package-Manager: portage-2.2.28

 media-tv/tvheadend/Manifest|   1 +
 .../files/tvheadend-4.0.9-hdhomerun-include.patch  |  27 +
 media-tv/tvheadend/tvheadend-4.0.9.ebuild  | 120 +
 3 files changed, 148 insertions(+)

diff --git a/media-tv/tvheadend/Manifest b/media-tv/tvheadend/Manifest
index 37da342..2fa330c 100644
--- a/media-tv/tvheadend/Manifest
+++ b/media-tv/tvheadend/Manifest
@@ -2,3 +2,4 @@ DIST dtv-scan-tables-2015-02-08-f2053b3.tar.bz2 123415 SHA256 
83ed1b669009ef325e
 DIST tvheadend-3.4.27.tar.gz 2201905 SHA256 
50438809ff43ab332d255248096e9531ac85e6c51511206a3f68cfc1697f4ead SHA512 
fb6dc59fbaf5ea43f69452ff6b034ed80b040bb15f5c43f26a3f8075601066354f82e5cf15f7c5215adf1387edfa57468f71605aacfc0824a996aee108a0f11a
 WHIRLPOOL 
b0c92d8368cf7643a238d918752f8b1816ddcfde28372fecad228ab133d4e1dd6219d5b436c396fa4013af5269b2fd05b62bb6ce6180553d835204c8c38029ca
 DIST tvheadend-4.0.6.tar.gz 15826173 SHA256 
348c6890a3721217c159a8cdce746686e7a8c75bc14740ac5a75a82acf6b5116 SHA512 
b5b9a39a9b6f4f1aa653b0d58b311d3580d5c10b2185a96bf73619b912385bece76fdd0d1e8327d97a2f5e3888729f10cfbfd395660d12749fb7a5d586fde266
 WHIRLPOOL 
6584d30b4f8f3a17cd79e74b7dc9a892c27a0c214258ff146247b342a58a8eba52ffc4ded9d35d761434671b600daec09e8df05c3b7f4f54db7116fb3a79946b
 DIST tvheadend-4.0.8.tar.gz 15826229 SHA256 
04f485c25fcca604165622679e9e7be7aee7575d67f326f5ed8b4ceff63d8f4c SHA512 
b506dfbb5a4bbb44e772953cbd9bbdd8fdd3d5d22e13977ea5b186eb61a421c32196ab92d2f851907e48880b1fd2d543cbee95ba0004e4040fa0064156775e59
 WHIRLPOOL 
f89c1d3675762b474857b83edbc61b0c074ead2dac08511efd073855d9573ec5dd16e3e2350f0945960148fea6a55a02f5d61a2fa303d842dcff62ca7047ca45
+DIST tvheadend-4.0.9.tar.gz 15825419 SHA256 
cea1106f45e286e8c25e6b2f0a581c28bd85e93ce3801ecaac7041568a214977 SHA512 
ba8c6edcef126c6a260a9251b0948747074061c8f16fb20f03b250c6698645172c9396530b7fa44bf9cf4d8305fcece08c672c812ba6c48211edfbb2691fb58e
 WHIRLPOOL 
c0db6afa8d16201eab5fb188f81d062f84066037395f7e47e496d377e8207e2ffef021a58e07cba4af1217963fb2541b1822681fd33799113858329e9ff287bf

diff --git a/media-tv/tvheadend/files/tvheadend-4.0.9-hdhomerun-include.patch 
b/media-tv/tvheadend/files/tvheadend-4.0.9-hdhomerun-include.patch
new file mode 100644
index 000..8a0768f
--- /dev/null
+++ b/media-tv/tvheadend/files/tvheadend-4.0.9-hdhomerun-include.patch
@@ -0,0 +1,27 @@
+diff --git a/configure b/configure
+index 47d2cf2..6f9fcc5 100755
+--- a/configure
 b/configure
+@@ -290,7 +290,7 @@ if enabled hdhomerun_static; then
+ else
+ 
+   if enabled_or_auto hdhomerun_client; then
+-if check_cc_header 'libhdhomerun/hdhomerun' libhdhomerun; then
++if check_cc_header 'hdhomerun/hdhomerun' libhdhomerun; then
+   enable  hdhomerun_client
+   LDFLAGS="$LDFLAGS -lhdhomerun"
+ fi
+diff --git a/src/input/mpegts/tvhdhomerun/tvhdhomerun_private.h 
b/src/input/mpegts/tvhdhomerun/tvhdhomerun_private.h
+index 962627a..6d1c52b 100644
+--- a/src/input/mpegts/tvhdhomerun/tvhdhomerun_private.h
 b/src/input/mpegts/tvhdhomerun/tvhdhomerun_private.h
+@@ -24,7 +24,8 @@
+ #include "htsbuf.h"
+ #include "tvhdhomerun.h"
+ 
+-#include 
++#include 
++#include 
+ 
+ typedef struct tvhdhomerun_device_info tvhdhomerun_device_info_t;
+ typedef struct tvhdhomerun_device  tvhdhomerun_device_t;

diff --git a/media-tv/tvheadend/tvheadend-4.0.9.ebuild 
b/media-tv/tvheadend/tvheadend-4.0.9.ebuild
new file mode 100644
index 000..770aa5f
--- /dev/null
+++ b/media-tv/tvheadend/tvheadend-4.0.9.ebuild
@@ -0,0 +1,120 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit eutils linux-info systemd toolchain-funcs user
+
+DTV_SCAN_TABLES_VERSION="2015-02-08-f2053b3"
+
+DESCRIPTION="Tvheadend is a TV streaming server and digital video recorder"
+HOMEPAGE="https://tvheadend.org/";
+SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz
+   dvbscan? ( 
http://linuxtv.org/downloads/dtv-scan-tables/dtv-scan-tables-${DTV_SCAN_TABLES_VERSION}.tar.bz2
 )"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+IUSE="avahi capmt constcw +cwc dbus +dvb +dvbscan ffmpeg hdhomerun libav 
imagecache inotify iptv satip +timeshift uriparser xmltv zlib"
+
+# does not build with ffmpeg-3 - bug 574990
+# https://tvheadend.org/issues/3597
+RDEPEND="dev-libs/openssl:=
+   virtual/libiconv
+   avahi? ( net-dns/avahi )
+   dbus? ( sys-apps/dbus )
+   ffmpeg? (
+   !libav? (
+   media-video/ffmpeg:0=
+

[gentoo-commits] data/xml-schema:master commit in: /

2016-05-07 Thread Michał Górny
commit: ea67cd7621339baf5336b57a245a03ea66c3c43c
Author: Michał Górny  gentoo  org>
AuthorDate: Sat May  7 16:08:56 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat May  7 16:08:56 2016 +
URL:https://gitweb.gentoo.org/data/xml-schema.git/commit/?id=ea67cd76

metadata: Correctly require downstream maintainer 

 metadata.xsd | 7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/metadata.xsd b/metadata.xsd
index 27039cd..111e1ec 100644
--- a/metadata.xsd
+++ b/metadata.xsd
@@ -11,11 +11,11 @@



-   
+   



-   
+   



@@ -123,7 +123,8 @@


-   
+   

 




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

2016-05-07 Thread Tim Harder
commit: f146e612deee05dd58d205c1c5dd342223ad3673
Author: Tim Harder  gentoo  org>
AuthorDate: Sat May  7 16:23:50 2016 +
Commit: Tim Harder  gentoo  org>
CommitDate: Sat May  7 16:28:45 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f146e612

vim-spell.eclass: drop epause usage (bug #581762)

 eclass/vim-spell.eclass | 1 -
 1 file changed, 1 deletion(-)

diff --git a/eclass/vim-spell.eclass b/eclass/vim-spell.eclass
index 60ae8bb..804f17f 100644
--- a/eclass/vim-spell.eclass
+++ b/eclass/vim-spell.eclass
@@ -123,5 +123,4 @@ vim-spell_pkg_postinst() {
elog "For further documentation, use:"
elog ":help spell"
echo
-   epause
 }



[gentoo-commits] repo/gentoo:master commit in: app-vim/vimpython/

2016-05-07 Thread Tim Harder
commit: 66bc86a091d6bdf2fb9efbe9e3be20e881a150fa
Author: Tim Harder  gentoo  org>
AuthorDate: Sat May  7 16:33:24 2016 +
Commit: Tim Harder  gentoo  org>
CommitDate: Sat May  7 16:33:24 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66bc86a0

app-vim/vimpython: drop unnecessary variables from revbump

 app-vim/vimpython/vimpython-1.13-r1.ebuild | 7 ---
 1 file changed, 7 deletions(-)

diff --git a/app-vim/vimpython/vimpython-1.13-r1.ebuild 
b/app-vim/vimpython/vimpython-1.13-r1.ebuild
index ab3c225..d677672 100644
--- a/app-vim/vimpython/vimpython-1.13-r1.ebuild
+++ b/app-vim/vimpython/vimpython-1.13-r1.ebuild
@@ -4,16 +4,9 @@
 
 EAPI=6
 
-VIM_PLUGIN_VIM_VERSION="7.0"
 inherit vim-plugin
 
 DESCRIPTION="vim plugin: A set of menus/shortcuts to work with Python files"
 HOMEPAGE="http://www.vim.org/scripts/script.php?script_id=30";
-
 LICENSE="vim"
 KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~sparc ~x86"
-IUSE=""
-
-RDEPEND="${DEPEND}"
-
-VIM_PLUGIN_HELPURI="${HOMEPAGE}"



[gentoo-commits] repo/gentoo:master commit in: sci-libs/shogun/

2016-05-07 Thread David Seifert
commit: 00c405b82175e505ee9e52d8b25e781fb617d12e
Author: David Seifert  gentoo  org>
AuthorDate: Sat May  7 16:36:31 2016 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat May  7 16:38:06 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00c405b8

sci-libs/shogun: Clear QA warnings

Package-Manager: portage-2.2.28

 sci-libs/shogun/shogun-3.2.0.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/sci-libs/shogun/shogun-3.2.0.ebuild 
b/sci-libs/shogun/shogun-3.2.0.ebuild
index 51cfb50..603f001 100644
--- a/sci-libs/shogun/shogun-3.2.0.ebuild
+++ b/sci-libs/shogun/shogun-3.2.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$
 
@@ -46,12 +46,12 @@ RDEPEND="
sci-libs/nlopt:=
sci-mathematics/glpk:=
sci-mathematics/lpsolve:=
-   sys-libs/readline
+   sys-libs/readline:0
sys-libs/zlib:=
virtual/blas
virtual/cblas
virtual/lapack
-   lua? ( dev-lang/lua )
+   lua? ( dev-lang/lua:0 )
mono? ( dev-lang/mono )
octave? ( sci-mathematics/octave[hdf5] )
python? ( dev-python/numpy[${PYTHON_USEDEP}] )



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

2016-05-07 Thread David Seifert
commit: 4fada4576c7247539d4fd77238ad1c8e3a410620
Author: David Seifert  gentoo  org>
AuthorDate: Sat May  7 16:32:50 2016 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat May  7 16:38:01 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4fada457

sci-libs/shogun: Version bump to latest 4.1.0 release

Package-Manager: portage-2.2.28

 sci-libs/shogun/Manifest   |   2 +
 .../files/shogun-4.1.0-fix-buildsystem.patch   |  81 +
 sci-libs/shogun/shogun-4.1.0.ebuild| 127 +
 3 files changed, 210 insertions(+)

diff --git a/sci-libs/shogun/Manifest b/sci-libs/shogun/Manifest
index 11c82bf..2cb0ed7 100644
--- a/sci-libs/shogun/Manifest
+++ b/sci-libs/shogun/Manifest
@@ -1,6 +1,8 @@
 DIST shogun-1.1.0.tar.bz2 3485714 SHA256 
9f69638f0bc18995358c38cd6eed6437e6b90c1fceab7c6e64c9739b7e6cc40b SHA512 
853168e3d68ad02ef543391b78c51682d004af46acddfa09a76b41e373e27199fc9be0598892207e116a82f24437e3f1c0dc97c3e28ca32879594fbe112bd157
 WHIRLPOOL 
dd044ff2cc9fd9376b80f1efd9bbcf901b11765a2f85eb2325ddd640ea547e513df8c9da548634e49758ef124147666f86b6b4082e118c6d35ef2d5010527cf9
 DIST shogun-2.0.0.tar.bz2 4106437 SHA256 
b18e30515b9f4432d02602d0dd66dbc57c70a46f71636275071afaee94e245ee SHA512 
e7c8d515afbcb3198aade32d2962e8d94b669b9c79ddbcd7425f04bbb0379803f7353c50ba8897356842cddb401d303fefaf8a7f9dd6a2e751e176deba1e46f1
 WHIRLPOOL 
aa9ef89f28acc012ee2894c4ff6858f7bf01585d02160d5b2df33159c7c87593ea352833765a7a78cc0ed16fd10713d285eb711606f0e3771ec685778f703570
 DIST shogun-3.2.0.tar.bz2 4217245 SHA256 
bc416b615ed90aef80c58a30546c5e2da779347bebb8742ecf11657073fc8f72 SHA512 
7c420da7bf10c8971954964bce4dc13a8f64c6ff2a0976293f54947414ad2fe7171b1747cef3e2ceb969cf936d8fe862e940582f642cd2367897cda3191b186b
 WHIRLPOOL 
bce007c01ebee0e225d5cf858e042561a540416b349015ac566cce82b77096e8206b2f9e51572d9ee8149651a39aa30d6438b28d37ba43eb5aba593b10c5e497
+DIST shogun-4.1.0.tar.bz2 2908955 SHA256 
0eb313a95606edee046768a4577d63f32f7ccce340bed7bf0ff0d69225567185 SHA512 
01950d5186a94735df5331752e1b97a5464015973ddba38a70bc977f9872b3aad02b162ae87919631cce56d1f10b0bea1fa7b463bf959816e5a15a726214f52a
 WHIRLPOOL 
300bd0d887fe8ee4a1ac2aca7f3fbaebd4344dcffe2b20f9b5bb05e83d6973e8a98e54a216d99329c03eea2c02666c557a3c50ff7e11556298d119b8c262f762
 DIST shogun-data-0.3.tar.bz2 126676026 SHA256 
34272e3f5e6b6989a4941b925ab3a9cd1525d73180681884e948a673aff4ef89 SHA512 
92c7e7dae1df5a7a79428a7f2116b1d9d825a37d4145edfdff1fb7b707853eab19ffe848c4ae2bc2338a93373e78c7cae4087df260411a9576b031e7a6f0de95
 WHIRLPOOL 
24987580c967b05e61ee5402fe30701cabe17d7ffb29b4966ff0abd0d03e197b928f018e617e254395c6939f93de3e397f5ce7df7c3d4ae7dfe4e782c345fe85
 DIST shogun-data-0.4.tar.bz2 127377123 SHA256 
103ef944c7211f64957833cd6ace85e32629d73ef286273424e239fa454ecfcc SHA512 
c178f6d5d8e4b6b6a94b74da5c133b01e83a1d4c7bf5d0fd66b4812b259934dbc998cfc1ef64f19b17b5099e8c389b8e359e69f1cc1bef6b82b940dc97cac46d
 WHIRLPOOL 
cef5d84f342523bad8b810fa3018669e9cd838c7c45bb37b8e7308dce448dc9b98f9aa6716aa724d64746539ef9c041a71cd2f3a1af71ed1077d276a192573d5
 DIST shogun-data-0.8.tar.bz2 261905079 SHA256 
a2a0c8ccd754f0b893d97d77cfb60e25fcdb4e7033731434fb07e5483514a047 SHA512 
9ea48706aae5ca116e8cf3507d1fcd06e24a8384abe6f2ebaf3c81735237d3beceee26ce5af97b85af24409eb47da684f7e7a56c0800a82c40ed214e6382978f
 WHIRLPOOL 
3a3120a8e982c90c670ec0c206635abdcb152ae5f312172ec58ae21e1ee11f15c406b382bd3b8e8a63300302290590b83a977bd4d90375160ceb8ae516409c12
+DIST shogun-data-0.9.tar.bz2 287533841 SHA256 
691dd37ccc9bdd4f56d6b7a8e061e80567c241219d70210f8148bc4b7b815559 SHA512 
ab501640e2db650603899c857866b451fac5c7bbbc7b4ef98559581928869cea49aa326dfca1bb398eee7ebc8843dcc8ee3105c9f462718f1af672aac6b9340a
 WHIRLPOOL 
19aa7a6d84be9ac7d8aaf7fb12747e17e0ba5a7ec8770b83cc1833b07cd1c6c397684a96eb8ebe709d544967ffaf23bcfbeea52dc8ddedf487fcf54a6d2b3ef7

diff --git a/sci-libs/shogun/files/shogun-4.1.0-fix-buildsystem.patch 
b/sci-libs/shogun/files/shogun-4.1.0-fix-buildsystem.patch
new file mode 100644
index 000..e244c94
--- /dev/null
+++ b/sci-libs/shogun/files/shogun-4.1.0-fix-buildsystem.patch
@@ -0,0 +1,81 @@
+Remove CFLAGS/CXXFLAGS setting which is not desired in Gentoo
+
+--- shogun-4.1.0/cmake/FindAtlas.cmake
 shogun-4.1.0/cmake/FindAtlas.cmake
+@@ -20,10 +20,10 @@
+   endif()
+   unset(CMAKE_REQUIRED_LIBRARIES CACHE)
+ else()
+-  find_file(ATLAS_LAPACK liblapack.so.3 PATHS /usr/lib/atlas /usr/lib64/atlas)
+-  find_library(ATLAS_LAPACK NAMES lapack)
+-  set(CMAKE_REQUIRED_LIBRARIES ${LAPACK_LIBRARIES} ${ATLAS_CBLAS})
+-  check_library_exists("${ATLAS_LAPACK}" clapack_dpotrf "" FOUND_CLAPACK)
++  # find_file(ATLAS_LAPACK liblapack.so.3 PATHS /usr/lib/atlas 
/usr/lib64/atlas)
++  # find_library(ATLAS_LAPACK NAMES lapack)
++  # set(CMAKE_REQUIRED_LIBRARIES ${LAPACK_LIBRARIES} ${ATLAS_CBLAS})
++  check_library_exists("${ATLAS_LIBRARIES}" clapack_dpotrf "" FOUND_CLAPACK)
+   if(NOT FOUND_CLAPACK)
+ unset(A

[gentoo-commits] repo/gentoo:master commit in: sci-libs/shogun/

2016-05-07 Thread David Seifert
commit: d48b5b67b5acd9b6b53059810680c05e2b22cf1a
Author: David Seifert  gentoo  org>
AuthorDate: Sat May  7 16:35:45 2016 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat May  7 16:38:04 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d48b5b67

sci-libs/shogun: Clear QA warnings

Package-Manager: portage-2.2.28

 sci-libs/shogun/shogun-2.0.0.ebuild | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/sci-libs/shogun/shogun-2.0.0.ebuild 
b/sci-libs/shogun/shogun-2.0.0.ebuild
index 8e26b7f..80bca6c 100644
--- a/sci-libs/shogun/shogun-2.0.0.ebuild
+++ b/sci-libs/shogun/shogun-2.0.0.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$
 
@@ -30,18 +30,18 @@ RDEPEND="
glpk? ( sci-mathematics/glpk )
gzip? ( app-arch/gzip )
hdf5? ( sci-libs/hdf5 )
-   java? ( >=virtual/jdk-1.5 )
+   java? ( >=virtual/jdk-1.5:* )
json? ( dev-libs/json-c )
lapack? ( virtual/cblas virtual/lapack )
lpsolve? ( sci-mathematics/lpsolve )
-   lua? ( dev-lang/lua )
+   lua? ( dev-lang/lua:0 )
lzo? ( dev-libs/lzo )
mono? ( dev-lang/mono )
nlopt? ( sci-libs/nlopt )
octave? ( sci-mathematics/octave[hdf5=] )
python? ( dev-python/numpy )
R? ( dev-lang/R )
-   readline? ( sys-libs/readline )
+   readline? ( sys-libs/readline:0 )
ruby? ( >=dev-ruby/narray-0.6.0.1-r2 )
snappy? ( app-arch/snappy )
superlu? ( sci-libs/superlu )



[gentoo-commits] repo/gentoo:master commit in: app-vim/vim-rest-console/

2016-05-07 Thread Tim Harder
commit: 3d0621e67f5b536ceabb0fd45fb9a3b734315c65
Author: Tim Harder  gentoo  org>
AuthorDate: Sat May  7 16:37:45 2016 +
Commit: Tim Harder  gentoo  org>
CommitDate: Sat May  7 16:38:38 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d0621e6

app-vim/vim-rest-console: version bump

 app-vim/vim-rest-console/Manifest   |  1 +
 .../vim-rest-console/vim-rest-console-2.5.0.ebuild  | 21 +
 2 files changed, 22 insertions(+)

diff --git a/app-vim/vim-rest-console/Manifest 
b/app-vim/vim-rest-console/Manifest
index e219da8..751ea48 100644
--- a/app-vim/vim-rest-console/Manifest
+++ b/app-vim/vim-rest-console/Manifest
@@ -1,2 +1,3 @@
 DIST vim-rest-console-2.3.0.tar.gz 11584 SHA256 
e3d07527a41f03eeffc82f12e1de43865f36f7348e4bf99fc4e2af55b234a74a SHA512 
04fa4cc2177b87a6d69ad50d0e45f411169d178e4990280afde730c461cb718acd09dc034e61c51f73974369d9be9300281f1e60adf8084730977caa27c65da2
 WHIRLPOOL 
93b5bc602361a2abe845a688b0e8c22cc7c3e3d6dd671f37e8d576f9d3c06ebaea3da58ac2838634a7219dd6fe1a56cc666d3a076e799bad1cae2636996371e9
 DIST vim-rest-console-2.4.0.tar.gz 11795 SHA256 
011e1166f9e8f5831a0288640952d962ab9190cb02c54b8947354049d7146028 SHA512 
77f06a9cee534eda2e414c4b0b0fdbdf335b1a397ab9c45b4331f211db1dbeb89bd0a73906945b0ed08c8b795c4be444b9ffcd2c06e145a43b3efb456aa64666
 WHIRLPOOL 
1b44987d3645a6d16243006f428c66b3d9f980a358865aab644631a5650a330ed38e266ac9d0c2084a3f1d9a10490202be6a45a2af2455e40558e66826643dee
+DIST vim-rest-console-2.5.0.tar.gz 11945 SHA256 
8457eb0896e34a6b664c5dccec688d8a5fbca9591ab08c8b2173c578d1ea7f72 SHA512 
1c2e2dafdcdd57216bac08adfaef4e5f3dc2331b13fd969064bd460681838cb4eb830644e33e9397388b0ff76b68d992523ba1c258c2385d6daae5ad87cbdd58
 WHIRLPOOL 
45337e977bef174df92bf36a0c6f08dc0f3930e8b20a32e6ebebca0fe5f8439ba17c0bf65a79dc4a828a049b934de1ef81a03fc4c03813adb84b4d8694988a98

diff --git a/app-vim/vim-rest-console/vim-rest-console-2.5.0.ebuild 
b/app-vim/vim-rest-console/vim-rest-console-2.5.0.ebuild
new file mode 100644
index 000..2e912a0
--- /dev/null
+++ b/app-vim/vim-rest-console/vim-rest-console-2.5.0.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit vim-plugin
+
+DESCRIPTION="a REST console for vim"
+HOMEPAGE="http://www.vim.org/scripts/script.php?script_id=5182 
https://github.com/diepm/vim-rest-console";
+SRC_URI="https://github.com/diepm/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+LICENSE="MIT"
+KEYWORDS="~amd64 ~x86"
+
+VIM_PLUGIN_HELPFILES="${PN}.txt"
+
+RDEPEND="net-misc/curl"
+
+src_prepare() {
+   rm *.md *.json *.rest || die
+}



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

2016-05-07 Thread Joerg Bornkessel
commit: 935b315d5578939b2c31908a9149e4d9231dd6ac
Author: Joerg Bornkessel  gentoo  org>
AuthorDate: Sat May  7 16:46:18 2016 +
Commit: Joerg Bornkessel  gentoo  org>
CommitDate: Sat May  7 16:46:18 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=935b315d

EAPI=6 support; removed support befor media-video/vdr-2

 eclass/vdr-plugin-2.eclass | 47 --
 1 file changed, 20 insertions(+), 27 deletions(-)

diff --git a/eclass/vdr-plugin-2.eclass b/eclass/vdr-plugin-2.eclass
index b3ca9b0..ae09a34 100644
--- a/eclass/vdr-plugin-2.eclass
+++ b/eclass/vdr-plugin-2.eclass
@@ -90,7 +90,9 @@
 # @CODE
 
 # Applying your own local/user patches:
-# This is done by using the epatch_user() function of the eutils.eclass.
+# This is done by using the 
+# (EAPI = 4,5) epatch_user() function of the eutils.eclass,
+# (EAPI = 6) eapply_user function integrated in EAPI = 6.
 # Simply add your patches into one of these directories:
 # /etc/portage/patches///
 # Quote: where the first of these three directories to exist will be the one to
@@ -98,11 +100,17 @@
 #
 # For more details about it please take a look at the eutils.class.
 
-inherit eutils flag-o-matic multilib toolchain-funcs unpacker
+[[ ${EAPI} == [45] ]] && inherit eutils multilib
+inherit flag-o-matic toolchain-funcs unpacker
 
 case ${EAPI:-0} in
-   4|5) ;;
+   4|5)
+   ;;
+   6)
+   ewarn "EAPI 6 support for test purpose only, plz report bugs to 
v...@gentoo.org"
+   ;;
*) die "EAPI ${EAPI} unsupported."
+   ;;
 esac
 
 EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare src_compile src_install 
pkg_postinst pkg_postrm pkg_config
@@ -388,17 +396,10 @@ vdr-plugin-2_pkg_setup() {
fi
 
# Where should the plugins live in the filesystem
-   if has_version ">=media-video/vdr-1.7.34"; then
-   VDR_PLUGIN_DIR=$(pkg-config --variable=libdir vdr)
-   else
-   # obsolete, as we have only >=media-video/vdr-2
-   VDR_PLUGIN_DIR="/usr/$(get_libdir)/vdr/plugins"
-   fi
+   VDR_PLUGIN_DIR=$(pkg-config --variable=libdir vdr)
 
VDR_CHECKSUM_DIR="${VDR_PLUGIN_DIR%/plugins}/checksums"
 
-   # was /usr/lib/... some time ago
-   # since gentoo-vdr-scripts-0.3.6 it works with /usr/share/...
VDR_RC_DIR="/usr/share/vdr/rcscript"
 
# Pathes to includes
@@ -407,12 +408,7 @@ vdr-plugin-2_pkg_setup() {
 
TMP_LOCALE_DIR="${WORKDIR}/tmp-locale"
 
-   if has_version ">=media-video/vdr-1.7.34"; then
-   LOCDIR=$(pkg-config --variable=locdir vdr)
-   else
-   # obsolete, as we have only >=media-video/vdr-2
-   LOCDIR="/usr/share/locale"
-   fi
+   LOCDIR=$(pkg-config --variable=locdir vdr)
 
if ! has_vdr; then
# set to invalid values to detect abuses
@@ -428,15 +424,8 @@ vdr-plugin-2_pkg_setup() {
return
fi
 
-   if has_version ">=media-video/vdr-1.7.34"; then
-   VDRVERSION=$(awk -F'"' '/define VDRVERSION/ {print $2}' 
"${VDR_INCLUDE_DIR}"/config.h)
-   APIVERSION=$(pkg-config --variable=apiversion vdr)
-   else
-   # obsolete, as we have only >=media-video/vdr-2
-   VDRVERSION=$(awk -F'"' '/define VDRVERSION/ {print $2}' 
"${VDR_INCLUDE_DIR}"/config.h)
-   APIVERSION=$(awk -F'"' '/define APIVERSION/ {print $2}' 
"${VDR_INCLUDE_DIR}"/config.h)
-   [[ -z ${APIVERSION} ]] && APIVERSION="${VDRVERSION}"
-   fi
+   VDRVERSION=$(awk -F'"' '/define VDRVERSION/ {print $2}' 
"${VDR_INCLUDE_DIR}"/config.h)
+   APIVERSION=$(pkg-config --variable=apiversion vdr)
 
einfo "Compiling against"
einfo "\tvdr-${VDRVERSION} [API version ${APIVERSION}]"
@@ -464,7 +453,11 @@ vdr-plugin-2_src_util() {
;;
add_local_patch)
cd "${S}" || die "Could not change to 
plugin-source-directory!"
-   epatch_user
+   if [[ ${EAPI} == 6 ]]; then
+   eapply_user
+   else
+   epatch_user
+   fi
;;
patchmakefile)
cd "${S}" || die "Could not change to 
plugin-source-directory!"



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

2016-05-07 Thread Lars Wendler
commit: 214e57f5eb11f3f00dd62246cb7b3085e0b958d0
Author: Lars Wendler  gentoo  org>
AuthorDate: Sat May  7 19:02:20 2016 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Sat May  7 19:02:20 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=214e57f5

sys-apps/smartmontools: Bump to version 6.5

Synced live ebuild.

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

 sys-apps/smartmontools/Manifest|  1 +
 sys-apps/smartmontools/metadata.xml|  1 +
 ...ntools-.ebuild => smartmontools-6.5.ebuild} | 46 --
 sys-apps/smartmontools/smartmontools-.ebuild   | 46 --
 4 files changed, 54 insertions(+), 40 deletions(-)

diff --git a/sys-apps/smartmontools/Manifest b/sys-apps/smartmontools/Manifest
index 66f21cd..6ca4e0b 100644
--- a/sys-apps/smartmontools/Manifest
+++ b/sys-apps/smartmontools/Manifest
@@ -1 +1,2 @@
 DIST smartmontools-6.4.tar.gz 822539 SHA256 
eab75600c1eda9c34b13097db71138ab376f3dad8a6a4667fb4d1d081feb7a85 SHA512 
366cd55ec668da1ca8a3d9ba79d5bee6e0c59032936b7f2f161f8fbb1c9f869c505d715cc10562b6241f808bb8b534feaf9d9fd752f6cb1593ee893611742adc
 WHIRLPOOL 
72af8a0a4754bd75da9e98a008c64c083579fe27bdbd0655da81c8fe7a258dbc305cafd05f2f21d1954918ab8ff040cf1d54b916a1ce82fb8da64ba2e49b4de0
+DIST smartmontools-6.5.tar.gz 855642 SHA256 
89e8bb080130bc6ce148573ba5bb91bfe30236b64b1b5bbca26515d4b5c945bc SHA512 
dca7a6363ab7280ee4197155025f624c978886dcc94fc47b524f6f849138b62c471e966c0d4bf59c7bba50519dc122264618e5ded80a406863ddd10b43d928d3
 WHIRLPOOL 
639bb5c847c4e0e0f7156b764140f4382f650826eb3d59db6a712468e944a40788c87bbbe0149b9a4d1480947492b007b5875969e611213409f247ff4383fbd6

diff --git a/sys-apps/smartmontools/metadata.xml 
b/sys-apps/smartmontools/metadata.xml
index 997fef2..b355588 100644
--- a/sys-apps/smartmontools/metadata.xml
+++ b/sys-apps/smartmontools/metadata.xml
@@ -7,6 +7,7 @@
 
 
Do not install the monitoring daemon and 
associated scripts.
+   Install a script to update the drivedb 
file.
 
 
smartmontools

diff --git a/sys-apps/smartmontools/smartmontools-.ebuild 
b/sys-apps/smartmontools/smartmontools-6.5.ebuild
similarity index 67%
copy from sys-apps/smartmontools/smartmontools-.ebuild
copy to sys-apps/smartmontools/smartmontools-6.5.ebuild
index 9b4bce3..ff70dcf 100644
--- a/sys-apps/smartmontools/smartmontools-.ebuild
+++ b/sys-apps/smartmontools/smartmontools-6.5.ebuild
@@ -19,7 +19,7 @@ HOMEPAGE="https://www.smartmontools.org";
 
 LICENSE="GPL-2"
 SLOT="0"
-IUSE="caps minimal selinux static"
+IUSE="caps minimal selinux static update_drivedb"
 
 DEPEND="
caps? (
@@ -35,10 +35,6 @@ RDEPEND="${DEPEND}
 "
 
 src_prepare() {
-   # 580424
-   sed '/^SRCEXPR/s@http:@https:@' \
-   -i update-smart-drivedb.in \
-   || die
if [[ ${PV} == "" ]] ; then
eautoreconf
fi
@@ -56,11 +52,14 @@ src_configure() {
$(use_with caps libcap-ng)
$(use_with selinux)
$(systemd_with_unitdir)
+   $(use_with update_drivedb update-smart-drivedb)
)
econf "${myeconfargs[@]}"
 }
 
 src_install() {
+   local db_path="/var/db/${PN}"
+
if use minimal ; then
dosbin smartctl
doman smartctl.8
@@ -68,26 +67,33 @@ src_install() {
default
newinitd "${FILESDIR}"/smartd-r1.rc smartd
newconfd "${FILESDIR}"/smartd.confd smartd
-   fi
 
-   # Move drivedb.h file out of PM's sight (bug #575292)
-   mv "${ED}"/var/db/${PN}/drivedb.h "${T}" || die
+   keepdir ${db_path}
+   if use update_drivedb ; then
+   # Move drivedb.h file out of PM's sight (bug #575292)
+   mv "${ED}"${db_path}/drivedb.h "${T}" || die
 
-   exeinto /etc/cron.monthly
-   doexe "${FILESDIR}"/${PN}-update-drivedb
+   exeinto /etc/cron.monthly
+   doexe "${FILESDIR}"/${PN}-update-drivedb
+   fi
+   fi
 }
 
 pkg_postinst() {
-   local db_path="/var/db/${PN}"
+   if ! use minimal ; then
+   local db_path="/var/db/${PN}"
 
-   if [[ -f "${db_path}/drivedb.h" ]] ; then
-   ewarn "WARNING! The drive database file has been replaced with 
the version that"
-   ewarn "got shipped with this release of ${PN}. You may want to 
update the"
-   ewarn "database by running the following command as root:"
-   ewarn ""
-   ewarn "/usr/sbin/update-smart-drivedb"
-   fi
+   if [[ -f "${db_path}/drivedb.h" ]] ; then
+   ewarn "WARNING! The drive database file has been 
replaced with the version that"
+   ewarn "got shipped with this release of ${PN}. You may 
want to update the"
+   ewar

[gentoo-commits] proj/vdr/devel:master commit in: media-plugins/vdr-sc/

2016-05-07 Thread Joerg Bornkessel
commit: 5eaf01a5f89f12789faff49dcee8a83434a3d860
Author: Joerg Bornkessel  gentoo  org>
AuthorDate: Sat May  7 19:25:18 2016 +
Commit: Joerg Bornkessel  gentoo  org>
CommitDate: Sat May  7 19:25:18 2016 +
URL:https://gitweb.gentoo.org/proj/vdr/devel.git/commit/?id=5eaf01a5

compilefix gcc-5; eapi=6

Package-Manager: portage-2.2.28
Manifest-Sign-Key: 0x93EB5F4DAA5832A1

 media-plugins/vdr-sc/ChangeLog |  9 ++-
 media-plugins/vdr-sc/Manifest  | 31 +++---
 media-plugins/vdr-sc/metadata.xml  |  9 +++
 .../vdr-sc/vdr-sc-0.9.3.20120815-r2.ebuild |  4 +--
 .../vdr-sc/vdr-sc-0.9.3.20120815-r3.ebuild |  4 +--
 ...5-r3.ebuild => vdr-sc-0.9.3.20120815-r4.ebuild} | 18 -
 6 files changed, 49 insertions(+), 26 deletions(-)

diff --git a/media-plugins/vdr-sc/ChangeLog b/media-plugins/vdr-sc/ChangeLog
index 8c412dd..f145ad1 100644
--- a/media-plugins/vdr-sc/ChangeLog
+++ b/media-plugins/vdr-sc/ChangeLog
@@ -1,7 +1,14 @@
 # ChangeLog for media-plugins/vdr-sc
-# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2016 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+*vdr-sc-0.9.3.20120815-r4 (07 May 2016)
+
+  07 May 2016; Joerg Bornkessel 
+  vdr-sc-0.9.3.20120815-r2.ebuild, vdr-sc-0.9.3.20120815-r3.ebuild,
+  +vdr-sc-0.9.3.20120815-r4.ebuild, metadata.xml:
+  compilefix gcc-5; eapi=6
+
 *vdr-sc-0.9.3.20120815-r3 (18 Feb 2015)
 
   18 Feb 2015; Joerg Bornkessel 

diff --git a/media-plugins/vdr-sc/Manifest b/media-plugins/vdr-sc/Manifest
index 7b547a3..ae4ddfe 100644
--- a/media-plugins/vdr-sc/Manifest
+++ b/media-plugins/vdr-sc/Manifest
@@ -4,15 +4,28 @@ Hash: SHA256
 AUX vdr-sc-0.9.3.20120815_makefile.diff 822 SHA256 
71507b442940bf7c71ea40f2b8b47b882defd4bc4f0852d52fbc2f4e4b7494e0 SHA512 
7339a522a6d17fe979608fbd3ed3d66b59c6cdbb77a466c27b89b227fd2ba2c7cc4330370d9000ab16db987471687979be8549f9d24f2ac7db94cf67931a7e1b
 WHIRLPOOL 
1b0a9d1a45dabb27b4437687a8ce8fae1eac4a867679f1f272b20d3d3255f6356517f2bd9dda389a0274bfa35958bf7101be2e85bc43a3247839505ad9de300e
 AUX vdr-sc-0.9.3.20120815_vdr-2.1.4_compilefix.diff 2041 SHA256 
3d3c3c1ce17e4fdceae68316c5500d88edb7e5f3c3b0dbadfc9f738d6f63473b SHA512 
e33b50c28ce1e790867fa0cd1d241c769b69edc6a78e60bc30a77fabc8347ada51d11a4fae1f649466906a6520b7ebb119eb41f01bd136b298d5667ceeae2299
 WHIRLPOOL 
ae71e16358429943bb89ab4e291ecf40fa696fc5cea191033856419a93ed86e8c31af7910ec9cbb0da59c05c7f27d55664b2bd79e359217c41096816ac34dea3
 DIST vdr-sc-0.9.3.20120815.tar.gz 609497 SHA256 
72fa59ec671550a0d4d9b56565332885aa81b1a5546d731a5c05e953359a82d5 SHA512 
cc8d3b6bf17372b4021bfa1b6fdce696c1a6c997d884911af73172362e78edeaf4ebd30a161ddefb342a6e4f94cfc46fceb2dbe7b3d14e413d5cd4ba5c0a0d3c
 WHIRLPOOL 
3ba89c7789486224c76cda49568a5c5b2f7984b132d6b419f4da1041d732dbbd0dd8811e2c2447b7ee3190eda70f0caf2d8373726bb8b1ecb94ff1b9ab092354
-EBUILD vdr-sc-0.9.3.20120815-r2.ebuild 4074 SHA256 
b31ee53e8a77ab82691aa2389d643130dbc97129802e4aca25305dfe3de4f4e2 SHA512 
91bcd7838d8077095ed64cf7638d333f84c75c9dc5ab037e6a6f855ce152a3982f86452963a52c31ca531e1ced0bfd6d6ea6f607bb6b58d2b1140aa3f161347a
 WHIRLPOOL 
f9db268a15163604fb53a1f13f0f97598b43f7ef023bdc464cc0d13f1d669a2c048182db644e92a785f88b589951adee13552324040be8309c8b990c15acfd95
-EBUILD vdr-sc-0.9.3.20120815-r3.ebuild 4323 SHA256 
7547b0795e05697ead5fc5efd98c39c708bb9259becda643c5905d9c240b00bd SHA512 
e3bfca496e466900f151d71b3562feeb6f8c4da0378ca2aa401f7182fab0cda721484a1ca45cec37e3101640e2430bb39c4a642bd38846d34e41f1c9120523e6
 WHIRLPOOL 
e3c976e6d6ebb546085a6310c64ed288714536de1282ff3266c870b7a48c74bd97dd1d11a2478d65a6279de84ffac9e5ed954648957534e7afaebe652eb798f8
-MISC ChangeLog 3213 SHA256 
26af6b73516124ac8e378beb91056e72dd13951de5e9e79c811bff43eda84a48 SHA512 
bd3f010e8995d705ffe64c96bfb7f2901e744e4be40fce324f4e87bb9cc35c93537a117b94ba1ce2ecc1bbceeaa1ab9e40091f2143d77f32a6e1fcdaa17c5fef
 WHIRLPOOL 
409bda0ba9cb7d7b3973dec6f7cba4eb0e4b919bc0b55c666d9b299a4e0b2d2605ac24564aebbdf34b695e3a330a031ea157006ac905d87b849de3bc218d98fd
-MISC metadata.xml 1209 SHA256 
69a03f6195737dd38bc8f6a67cf55fff9c38ba1581afffbc0708858a0aaed513 SHA512 
e6fd4d9140593e64a3561d4eb7babb8fd5d556851233a3b6866e2762d77396b3194fb2adf19eccd8d84ecadfbd0bd14f8c4b236a011a9133d6bf132b858eaa78
 WHIRLPOOL 
7089a3e3c975ef2888ce9cb1648d37892eb998fb74bace60f6421f2dbac859fc5fc87c72a3d0087fb608b9f52f025f868df67c5187342627cd1b9c5a4ec9abf2
+EBUILD vdr-sc-0.9.3.20120815-r2.ebuild 4068 SHA256 
d90c61bc9161e543f94df5b1cd0813d02fbbf01b68c84706445d465fba2c7683 SHA512 
d6b149056e8202dc738cf3253b6ea4705f8f68aef2327e65f2aedae1f7f10f10d646d3560d0a7076462bebd7dbf1a5575ee52607d3fa1bd5a557d89298b51e35
 WHIRLPOOL 
a1a182bd18de955b5ad864ebfa6ea3193ca4e3ca3272990afa309bc0dfc004fcc16640a5452682cfc90e567b22d71406f90bf2fcb781a7e2754ebbc3d09d0220
+EBUILD vdr-sc-0.9.3.20120815-r3.ebuild 4317 SHA256 
ca81b8b0e6367ac6aa9ae62498faf608a8a1be80206af9b4d6

[gentoo-commits] proj/portage:master commit in: pym/portage/tests/util/, cnf/

2016-05-07 Thread Zac Medico
commit: a810a92d615c904db59326188e1437fdab74e705
Author: Zac Medico  gentoo  org>
AuthorDate: Thu May  5 17:12:13 2016 +
Commit: Zac Medico  gentoo  org>
CommitDate: Sat May  7 20:02:51 2016 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=a810a92d

make.globals: Respect ssh_config port (bug 499198)

Fix FETCHCOMMAND_SSH and FETCHCOMMAND_SFTP to respect ssh_config port.

X-Gentoo-bug: 499198
X-Gentoo-bug-url: https://bugs.gentoo.org/show_bug.cgi?id=499198
Acked-by: Alexander Berntsen  gentoo.org>

 cnf/make.globals | 4 ++--
 pym/portage/tests/util/test_getconfig.py | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/cnf/make.globals b/cnf/make.globals
index 836bb5c..18eba94 100644
--- a/cnf/make.globals
+++ b/cnf/make.globals
@@ -43,11 +43,11 @@ FETCHCOMMAND_RSYNC="rsync -avP \"\${URI}\" 
\"\${DISTDIR}/\${FILE}\""
 RESUMECOMMAND_RSYNC="rsync -avP \"\${URI}\" \"\${DISTDIR}/\${FILE}\""
 
 # NOTE: rsync will evaluate quotes embedded inside PORTAGE_SSH_OPTS
-FETCHCOMMAND_SSH="bash -c \"x=\\\${2#ssh://} ; host=\\\${x%%/*} ; 
port=\\\${host##*:} ; host=\\\${host%:*} ; [[ \\\${host} = \\\${port} ]] && 
port=22 ; exec rsync --rsh=\\\"ssh -p\\\${port} \\\${3}\\\" -avP 
\\\"\\\${host}:/\\\${x#*/}\\\" \\\"\\\$1\\\"\" rsync \"\${DISTDIR}/\${FILE}\" 
\"\${URI}\" \"\${PORTAGE_SSH_OPTS}\""
+FETCHCOMMAND_SSH="bash -c \"x=\\\${2#ssh://} ; host=\\\${x%%/*} ; 
port=\\\${host##*:} ; host=\\\${host%:*} ; [[ \\\${host} = \\\${port} ]] && 
port= ; exec rsync --rsh=\\\"ssh \\\${port:+-p\\\${port}} \\\${3}\\\" -avP 
\\\"\\\${host}:/\\\${x#*/}\\\" \\\"\\\$1\\\"\" rsync \"\${DISTDIR}/\${FILE}\" 
\"\${URI}\" \"\${PORTAGE_SSH_OPTS}\""
 RESUMECOMMAND_SSH=${FETCHCOMMAND_SSH}
 
 # NOTE: bash eval is used to evaluate quotes embedded inside PORTAGE_SSH_OPTS
-FETCHCOMMAND_SFTP="bash -c \"x=\\\${2#sftp://} ; host=\\\${x%%/*} ; 
port=\\\${host##*:} ; host=\\\${host%:*} ; [[ \\\${host} = \\\${port} ]] && 
port=22 ; eval \\\"declare -a ssh_opts=(\\\${3})\\\" ; exec sftp -P \\\${port} 
\\\"\\\${ssh_opts[@]}\\\" \\\"\\\${host}:/\\\${x#*/}\\\" \\\"\\\$1\\\"\" sftp 
\"\${DISTDIR}/\${FILE}\" \"\${URI}\" \"\${PORTAGE_SSH_OPTS}\""
+FETCHCOMMAND_SFTP="bash -c \"x=\\\${2#sftp://} ; host=\\\${x%%/*} ; 
port=\\\${host##*:} ; host=\\\${host%:*} ; [[ \\\${host} = \\\${port} ]] && 
port= ; eval \\\"declare -a ssh_opts=(\\\${3})\\\" ; exec sftp \\\${port:+-P 
\\\${port}} \\\"\\\${ssh_opts[@]}\\\" \\\"\\\${host}:/\\\${x#*/}\\\" 
\\\"\\\$1\\\"\" sftp \"\${DISTDIR}/\${FILE}\" \"\${URI}\" 
\"\${PORTAGE_SSH_OPTS}\""
 
 # Default user options
 FEATURES="assume-digests binpkg-logs

diff --git a/pym/portage/tests/util/test_getconfig.py 
b/pym/portage/tests/util/test_getconfig.py
index b72bd6a..05e3147 100644
--- a/pym/portage/tests/util/test_getconfig.py
+++ b/pym/portage/tests/util/test_getconfig.py
@@ -20,8 +20,8 @@ class GetConfigTestCase(TestCase):
_cases = {
'FETCHCOMMAND' : 'wget -t 3 -T 60 --passive-ftp -O 
"${DISTDIR}/${FILE}" "${URI}"',
'FETCHCOMMAND_RSYNC'   : 'rsync -avP "${URI}" 
"${DISTDIR}/${FILE}"',
-   'FETCHCOMMAND_SFTP': 'bash -c "x=\\${2#sftp://} ; 
host=\\${x%%/*} ; port=\\${host##*:} ; host=\\${host%:*} ; [[ \\${host} = 
\\${port} ]] && port=22 ; eval \\"declare -a ssh_opts=(\\${3})\\" ; exec sftp 
-P \\${port} \\"\\${ssh_opts[@]}\\" \\"\\${host}:/\\${x#*/}\\" \\"\\$1\\"" sftp 
"${DISTDIR}/${FILE}" "${URI}" "${PORTAGE_SSH_OPTS}"',
-   'FETCHCOMMAND_SSH' : 'bash -c "x=\\${2#ssh://} ; 
host=\\${x%%/*} ; port=\\${host##*:} ; host=\\${host%:*} ; [[ \\${host} = 
\\${port} ]] && port=22 ; exec rsync --rsh=\\"ssh -p\\${port} \\${3}\\" -avP 
\\"\\${host}:/\\${x#*/}\\" \\"\\$1\\"" rsync "${DISTDIR}/${FILE}" "${URI}" 
"${PORTAGE_SSH_OPTS}"',
+   'FETCHCOMMAND_SFTP': 'bash -c "x=\\${2#sftp://} ; 
host=\\${x%%/*} ; port=\\${host##*:} ; host=\\${host%:*} ; [[ \\${host} = 
\\${port} ]] && port= ; eval \\"declare -a ssh_opts=(\\${3})\\" ; exec sftp 
\\${port:+-P \\${port}} \\"\\${ssh_opts[@]}\\" \\"\\${host}:/\\${x#*/}\\" 
\\"\\$1\\"" sftp "${DISTDIR}/${FILE}" "${URI}" "${PORTAGE_SSH_OPTS}"',
+   'FETCHCOMMAND_SSH' : 'bash -c "x=\\${2#ssh://} ; 
host=\\${x%%/*} ; port=\\${host##*:} ; host=\\${host%:*} ; [[ \\${host} = 
\\${port} ]] && port= ; exec rsync --rsh=\\"ssh \\${port:+-p\\${port}} 
\\${3}\\" -avP \\"\\${host}:/\\${x#*/}\\" \\"\\$1\\"" rsync 
"${DISTDIR}/${FILE}" "${URI}" "${PORTAGE_SSH_OPTS}"',
'PORTAGE_ELOG_MAILSUBJECT' : '[portage] ebuild log for 
${PACKAGE} on ${HOST}'
}
 



[gentoo-commits] proj/releng:master commit in: tools/

2016-05-07 Thread Mike Frysinger
commit: 1294da69329b3541c50d96b09eb6249f5150ea91
Author: Mike Frysinger  gentoo  org>
AuthorDate: Sat May  7 20:04:33 2016 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Sat May  7 20:04:33 2016 +
URL:https://gitweb.gentoo.org/proj/releng.git/commit/?id=1294da69

catalyst-auto: try to fix syntax error in previous commits

 tools/catalyst-auto | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/catalyst-auto b/tools/catalyst-auto
index 101cf82..51e0c16 100755
--- a/tools/catalyst-auto
+++ b/tools/catalyst-auto
@@ -253,7 +253,7 @@ for i in $(find -name '*.spec'); do
   sed -i 's|^snapshot:.*$|snapshot: '${DATESTAMP}'|' ${i}
 
   # We don't want to mangle the source_subpath for our stage1 spec
-  if ! [[ grep -q '^target: *stage1$' ${i} || grep -q '^target: *stage4$' ${i} 
]]; then
+  if ! grep -q '^target: *stage[14]$' ${i}; then
 sed -i 's|^source_subpath:.*$|source_subpath: '${new_source_subpath}'|' 
${i}
   fi
 



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

2016-05-07 Thread Anthony G. Basile
commit: 655af11713ef87379aff327ffb507fbabd7abdcd
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sat May  7 20:07:57 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sat May  7 20:07:57 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=655af117

dev-libs/isl: version bump to 0.17

Package-Manager: portage-2.2.26

 dev-libs/isl/Manifest|  1 +
 dev-libs/isl/isl-0.17.ebuild | 40 
 2 files changed, 41 insertions(+)

diff --git a/dev-libs/isl/Manifest b/dev-libs/isl/Manifest
index cb6a59d..6cc32ee 100644
--- a/dev-libs/isl/Manifest
+++ b/dev-libs/isl/Manifest
@@ -5,3 +5,4 @@ DIST isl-0.14.1.tar.xz 1248204 SHA256 
8882c9e36549fc757efa267706a9af733bb8d7fe39
 DIST isl-0.14.tar.xz 1247052 SHA256 
b1044f02819da0708fc7071fa2a558ce5d3c29d6676c8cb113caaedd5903ff03 SHA512 
cf43868d466d6ff08c5e15345d222ad153e8c4e86831f9854df716eb914c6c15f4c44b73aa6e0b16eb556d1a4d3c26af6f71e85421bf464cbbd053d5f3c515ee
 WHIRLPOOL 
4fdaa2c05b647f0830afbc3385e5359285b3fa86afa4a117b76e6ced03772d3abe57466e9cbdfe0cf96f05ab8bcbfb4737a6921aeb72fb1bd213374bdb6a2ac3
 DIST isl-0.15.tar.xz 1406988 SHA256 
104a608839771d809558f5fd7533ca1a3b8ee5a667c5dcd9dc3499bf0a1522d5 SHA512 
5e72816da133714fb752ddd10fbe9e8f18deef496445672c0a77429679e50f1def22e05e5ebe9acb5534fc8939a6e6a452ffa3607d479671864a76b6789bdab4
 WHIRLPOOL 
79d763a423a95544f9b8bd6caef9e23341d8c1bab5ae3711a59ce9cc28f7f3923adb20894601ccd91c0093dbe3c656951b8246b8e947ad5ed32d1beefcde1519
 DIST isl-0.16.1.tar.xz 1449164 SHA256 
45292f30b3cb8b9c03009804024df72a79e9b5ab89e41c94752d6ea58a1e4b02 SHA512 
6faff2fe07267ba05c156158c36c25aa9beec6058f949b7bb9b8f042c5d01b7a3a17a6117c2c2a13ad6180308c8d03cfd469b237abf85290411599dde614788f
 WHIRLPOOL 
1f3edf59bc6be956863eae436e62fb6adcc8cbe51e683b72cc986e9d5d30c6fb1c9cdea510652b78b6c448abf522edb1773dfd9cda6792012fcad9ac20fc5609
+DIST isl-0.17.tar.xz 1440136 SHA256 
c6e732ff760bcc9f6ed63ba0ae23bee5399b925fd1176aabe2765383d3a3 SHA512 
fa51bbcb77251808be0fd4d346d777d111d1a09864dba51b21e89df038ada87bac419d4736a460328ff3289f4748674fe92dc2b2691f5238f320846149fa08ac
 WHIRLPOOL 
2aac7fbd8f817d42565c923d24158e57edb3b4d4744fc22bae02a171f0ab3df867660eb9275370b139fd614061f6b868f6c3d2e1238b12a07e5657623f386e92

diff --git a/dev-libs/isl/isl-0.17.ebuild b/dev-libs/isl/isl-0.17.ebuild
new file mode 100644
index 000..2a72ff6
--- /dev/null
+++ b/dev-libs/isl/isl-0.17.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+inherit eutils multilib-minimal
+
+DESCRIPTION="A library for manipulating integer points bounded by linear 
constraints"
+HOMEPAGE="http://isl.gforge.inria.fr/";
+SRC_URI="http://isl.gforge.inria.fr/${P}.tar.xz";
+
+LICENSE="LGPL-2.1"
+SLOT="0/15"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
+IUSE="static-libs"
+
+RDEPEND=">=dev-libs/gmp-5.1.3-r1[${MULTILIB_USEDEP}]"
+DEPEND="${RDEPEND}
+   app-arch/xz-utils
+   virtual/pkgconfig"
+
+DOCS=( ChangeLog AUTHORS doc/manual.pdf )
+
+src_prepare() {
+   epatch "${FILESDIR}"/${PN}-0.07-gdb-autoload-dir.patch
+
+   # m4/ax_create_pkgconfig_info.m4 is broken but avoid eautoreconf
+   # https://groups.google.com/group/isl-development/t/37ad876557e50f2c
+   sed -i -e '/Libs:/s:@LDFLAGS@ ::' configure || die #382737
+}
+
+multilib_src_configure() {
+   ECONF_SOURCE="${S}" econf $(use_enable static-libs static)
+}
+
+multilib_src_install_all() {
+   einstalldocs
+   prune_libtool_files
+}



[gentoo-commits] proj/mozilla:master commit in: www-client/firefox/files/

2016-05-07 Thread Ian Stakenvicius
commit: c8ccf408a003e5118d8aba331a4f981bb0210ea7
Author: Ian Stakenvicius  gentoo  org>
AuthorDate: Fri May  6 21:08:13 2016 +
Commit: Ian Stakenvicius  gentoo  org>
CommitDate: Fri May  6 21:08:13 2016 +
URL:https://gitweb.gentoo.org/proj/mozilla.git/commit/?id=c8ccf408

committed a patch to nss.m4 to support crossdev, but did not apply it

 .../firefox/files/crossdev-nss.m4.pkg-config.patch | 33 ++
 1 file changed, 33 insertions(+)

diff --git a/www-client/firefox/files/crossdev-nss.m4.pkg-config.patch 
b/www-client/firefox/files/crossdev-nss.m4.pkg-config.patch
new file mode 100644
index 000..e3ac8f8
--- /dev/null
+++ b/www-client/firefox/files/crossdev-nss.m4.pkg-config.patch
@@ -0,0 +1,33 @@
+--- a/build/autoconf/nss.m42015-11-20 15:37:26.951993242 -0500
 b/build/autoconf/nss.m42015-11-20 15:37:19.431992752 -0500
+@@ -8,6 +8,8 @@
+ AC_DEFUN([AM_PATH_NSS],
+ [dnl
+ 
++PKG_CHECK_MODULES([NSS],[nss >= $1],[ifelse([$2], , :, [$2])],[
++
+ AC_ARG_WITH(nss-prefix,
+   [  --with-nss-prefix=PFX   Prefix where NSS is installed],
+   nss_config_prefix="$withval",
+@@ -84,8 +86,9 @@
+   ifelse([$3], , :, [$3])
+   fi
+ 
++  ])
+ 
+-  AC_SUBST(NSS_CFLAGS)
++  AC_SUBST_LIST(NSS_CFLAGS)
+   AC_SUBST_LIST(NSS_LIBS)
+ 
+ ])
+--- a/configure.in 2015-11-20 15:40:57.401762087 -0500
 b/configure.in 2015-11-20 15:50:10.080854755 -0500
+@@ -8775,7 +8775,7 @@
+ AC_SUBST(NSPR_CFLAGS)
+ AC_SUBST(MOZ_NATIVE_NSPR)
+ 
+-AC_SUBST(NSS_CFLAGS)
++AC_SUBST_LIST(NSS_CFLAGS)
+ AC_SUBST(MOZ_NATIVE_NSS)
+ AC_SUBST(NSS_DISABLE_DBM)
+ 



[gentoo-commits] proj/mozilla:master commit in: www-client/seamonkey/

2016-05-07 Thread Ian Stakenvicius
commit: 7be10b12ad3d66539a1548e1a7ee5240fa9b794e
Author: Ian Stakenvicius  gentoo  org>
AuthorDate: Sat May  7 20:37:55 2016 +
Commit: Ian Stakenvicius  gentoo  org>
CommitDate: Sat May  7 20:37:55 2016 +
URL:https://gitweb.gentoo.org/proj/mozilla.git/commit/?id=7be10b12

A self-rolled seamonkey-2.42, with langpacks, for experimentation

 www-client/seamonkey/Manifest  |  27 ++
 .../seamonkey/seamonkey-2.42_pre20160507.ebuild| 355 +
 2 files changed, 382 insertions(+)

diff --git a/www-client/seamonkey/Manifest b/www-client/seamonkey/Manifest
index 5c452b1..ec2db2d 100644
--- a/www-client/seamonkey/Manifest
+++ b/www-client/seamonkey/Manifest
@@ -1,6 +1,8 @@
 DIST enigmail-1.8.2.tar.gz 1604159 SHA256 
1d2700799bc52aaa8e8c9f7a0f5111281ff9fbdffc093cdff070657d574eb2a6 SHA512 
51eece988f466aeb4a343719a86dc7d95ec41dfc3ec7e3d8d2f360528675c605f8f2154f10aeea6ef82ed87c784f1d13bfc978e052a9ede0072b5137f6294b11
 WHIRLPOOL 
e12a703899e0e4c98adc58b5f4bf1f74e24a2cf09c1a706a6edca6aca06140041b293f23e6e5b05c507177b4148533ebc3431fb75592aae07d791a899ba2c45c
+DIST enigmail-1.9.1.tar.gz 1736876 SHA256 
0393119725fa5931d9888a2a1c9796d440ee7975ca3d005eb63142768b10f993 SHA512 
5417d7744ff5b8299d9799059f62013e546fb74206782169e5ce6baa0950d96d1c8996c99ec902ca73b241fd1268966e0a7ad30c032a1706a0efbf06fefc311c
 WHIRLPOOL 
80cff68461edc743851de5a83cd04105f6689eb1289f46b72334a96b091dc430399a91b2ab004a39bd7cb04433ab0471dd07b44d39fc2eb3869487b07841fc5a
 DIST firefox-38.0-patches-0.3.tar.xz 4796 SHA256 
bfbef81748f76f5f80c3ce6e6b810b65f6266f71da02722b1e8c9fad865b02bd SHA512 
a974e33759246153db7d83488f1326275efd12c44a6c8c539cbc35709b4dbd27e848bda32f302ac2baa5d8729ba20579ebc7f643419757f542972ca1a264d520
 WHIRLPOOL 
3549239db380c02a1575ff407ea684a14827f2250d991b5eb6c8a341ceebaca57cd2cc422e160f00dfab933385d677574cd84947da07bd282c68bb84c40fa42b
 DIST firefox-42.0-patches-0.3.tar.xz 13360 SHA256 
8f1b592454695a27cd8ab6a234705d73363af0a5ecc5e64c30072def05fd5fc8 SHA512 
4aa1ab7b8482b2d6af35cc293443678eb3c33a6eb2577fc0553ec94b3c3a3cbd7c322d50c004ac646296491fe1f67f5d199635750b0c50cc4f0742af704a9cac
 WHIRLPOOL 
e755b9fd4da821e8d0490e138531dcc55e9c9dd6ebbbf33771fffda9fe932df79c1d26dc8ad6b6dc9e8a444ee47659f7ef90846dc076299793db4726be06b94e
+DIST firefox-45.0-patches-04.tar.xz 18600 SHA256 
2ee0ab58e0a1db7b573dd7ac407dcb9a43a85dd295c5d6d263f72ce629c5290c SHA512 
cf5d4ddfe14dff92950baae066350ace0a503c5bdd9d837e4724fd2fb905a2fb540dcf34971531e79547dd62dfbf217d472f39ccc4802f34a245e24f406fdb5e
 WHIRLPOOL 
1461c61ba7e54b7a91c758fdf91fda22260eaff4148b3cccab8ccfd9d09a3d80c0314e999284d392d9e961c42cd9720d6d30ac190074f74d1e53ecb1afa1b1e3
 DIST mozilla-graphite2-1.3.5-upgrade_patches.tar.xz 92916 SHA256 
6314600c4d19112a51fba1f406eaef34b50df78405aa7cb0080550322d9b9ff9 SHA512 
7fa37fe27587b80aaf4a2625abf7a28553286ecfa837b4c7c7d5a217abf8cf01a2446471f7c320d484325c2f7461161b00df75ff9a5d9efc70140e9723f5ac2f
 WHIRLPOOL 
749ba5919850945f0fe36dfac912206cd38c50ae244703d07e37ea8a99a6b0c4300d0dd443db6c7a7fea22792ac7ccc8f839d598260e3e9f044e03431513f5c8
 DIST seamonkey-2.33-patches-01.tar.xz 944 SHA256 
1612d94dddbd37fa4ce8307c1ba565c8439d082609b63c12b4971e361895566c SHA512 
0132e7d06a1ea5d6c059f23e5b8a20016a1e911e8aa40ae15eaefcd141030b4d245297f1e13e508827d91bab5988db4775c8425e737654afba2ede9c2dee8392
 WHIRLPOOL 
4520c4eaa7e6a25f5c32e9cd1d46472e181fbd769a1c5a59c913834cec5556100eac01423b4abf4a47543d0fbae4bf83b0f4a4d6cec7a058587e2705043bf507
 DIST seamonkey-2.35-be.xpi 844271 SHA256 
c1043f743a353dfb46db8f524249c808183e89f4f0f7a6181f9d5304d545f694 SHA512 
2683a9e5858680a37b152c77fc15964d9b342e2d2a0fc409968b6cf35758f2bf30b3339dcd5c860ef95c56ed85c224383f95efc3d14999cd0a3e4a396c7c4644
 WHIRLPOOL 
f3f69369b0e225cdbb8fc1ac35e4e2295ed1778df7cabd3c9f4f566b758ee6f7dc2f922e422b5b5175bc2ff2ecc15769e535810a90435d15f57f7b22217eb1bf
@@ -55,3 +57,28 @@ DIST seamonkey-2.40_pre4-uk.xpi 875815 SHA256 
9932ca0ac00312a9fd9bab3199f7e55564
 DIST seamonkey-2.40_pre4-zh-CN.xpi 839892 SHA256 
28f634be2ed10526dbf6bf310b28f4da921d5809bce8216418c34ad07ac75443 SHA512 
743e34a2aa6776ff665e4b0a6d763acbfd96cce6d51ee1cf6cc4b10cc999f0d63d10435040f57950433574828c8cc77feab56a9b640dce99643ee6c18a9a9a72
 WHIRLPOOL 
b539345deee6aa8ca6b3f3017e9fba5737131928e8b2e47a188d5a01ef0d9202baa75591a4b4c9d1d1b95b28b9893f41d6ae47a7121cb42e8395568495382c49
 DIST seamonkey-2.40_pre4-zh-TW.xpi 861767 SHA256 
eaec998d922789be13cfc42660ab96abd0b1ec47cb4394b8a9f725969141ba89 SHA512 
7ab516753547aba8fbe48cf147082f1f282ecd6fceac0deb9795dbbd1b2962cdf82bc02128a04527a664e3cd00a4b529bff6e33a4f9fff4cbe998e2ec302ffbc
 WHIRLPOOL 
d0eb50f6990acfae199ff0e21b6d738271e8e30d91b8d0678e00e4871be69779f57b7642979485c6b2bcfbabc22c9002bff76a3b3a702fb1b747ceb10bbeb134
 DIST seamonkey-2.40_pre4.source.tar.xz 193702432 SHA256 
7e039d03f38d197b123b59ea42eac4c0c10e4bdec779b3665d79b435fa01 SHA512 
5a81a25c75af254f1508aa615a082f013d7d06950859822a134c51a0f4c12918081f69e7835dc85114e4285a67bc4

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

2016-05-07 Thread Michael Weber
commit: aaba5d9431982d340c83d7102cb9ffab31c2e4ee
Author: Michael Weber  gentoo  org>
AuthorDate: Sat May  7 20:43:42 2016 +
Commit: Michael Weber  gentoo  org>
CommitDate: Sat May  7 20:44:40 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aaba5d94

net-analyzer/netsniff-ng: Version bump (thanks Manuel Rüger).

Package-Manager: portage-2.2.28

 net-analyzer/netsniff-ng/Manifest |  1 +
 net-analyzer/netsniff-ng/netsniff-ng-0.6.1.ebuild | 59 +++
 2 files changed, 60 insertions(+)

diff --git a/net-analyzer/netsniff-ng/Manifest 
b/net-analyzer/netsniff-ng/Manifest
index 4f0a786..cb0c1a4 100644
--- a/net-analyzer/netsniff-ng/Manifest
+++ b/net-analyzer/netsniff-ng/Manifest
@@ -1 +1,2 @@
 DIST netsniff-ng-0.6.0.tar.xz 554612 SHA256 
f2e77d49e2f3aed78838827695bb2efade79e8d7126c7d81656425fd1bd56159 SHA512 
a77d548cc16ef175b120945428e07e8ff2aaabba6add239b7f42429811bbb6e024ace92a15944551c45025b185f1df5aa3dee4500ff9ecb30536ec9a8deded74
 WHIRLPOOL 
33abcec54c5839332deb4ea06d687ed4748d25cdb2842a8d193176db369dff52c773bbcefed76d3cfe926152dcbc5f87553e7b9c1c29dbc84014f4a4e27d8f79
+DIST netsniff-ng-0.6.1.tar.xz 565956 SHA256 
e178487990c69e25ba8b7e9833b9ab6550da1332b469fca847cbed5502b0 SHA512 
a07f3d5f85c517e220db53ac3a93e6337e49cbc8d69b730261697e765e449fa25024782b2b4fac089288f8753471e2fca3162b55c3bb2a9fcbbb10b96391efc1
 WHIRLPOOL 
b3bdc2d7d38a8c102cc02d5ff7990129e9f13a66c6911ea75c68259f6f3a922a7a062b925f080b13e3fa437579d8e43bdeaa2253a08e17fea26382f24d325dc1

diff --git a/net-analyzer/netsniff-ng/netsniff-ng-0.6.1.ebuild 
b/net-analyzer/netsniff-ng/netsniff-ng-0.6.1.ebuild
new file mode 100644
index 000..fee9eb3
--- /dev/null
+++ b/net-analyzer/netsniff-ng/netsniff-ng-0.6.1.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit eutils multilib toolchain-funcs
+
+DESCRIPTION="high performance network sniffer for packet inspection"
+HOMEPAGE="http://netsniff-ng.org/";
+SRC_URI="http://pub.${PN}.org/${PN}/${P}.tar.xz";
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="dev-libs/geoip
+   dev-libs/libcli
+   dev-libs/libnl:3
+   dev-libs/userspace-rcu
+   net-libs/libnet:1.1
+   net-libs/libnetfilter_conntrack
+   net-libs/libpcap
+   sys-libs/ncurses:0
+   sys-libs/zlib"
+DEPEND="${RDEPEND}
+   sys-devel/flex
+   sys-devel/bison
+   =net-libs/nacl-0_p20110221*
+   virtual/pkgconfig"
+
+src_prepare() {
+   sed -e '/CFLAGS/s:?=:+=:' \
+   -e '/CPPFLAGS/s:?=:+=:' \
+   -e '/CFLAGS/s:\(-g\|-O2\|-O3\|-m\(arch\|tune\)=native\)::g' \
+   -i.bak Makefile || die
+
+   if ! grep nacl-20110221 curvetun/nacl_build.sh >/dev/null ; then
+   die "have nacl-20110221, expected $(grep ${MY_NACL_P} 
curvetun/nacl_build.sh)"
+   fi
+
+   export NACL_INC_DIR="${EROOT}usr/include/nacl"
+   export NACL_LIB_DIR="${EROOT}usr/$(get_libdir)/nacl"
+
+   epatch_user
+}
+
+src_compile() {
+   emake CC="$(tc-getCC)" LD="$(tc-getCC)" CCACHE="" \
+   LEX=lex YAAC=bison STRIP=true \
+   Q= HARDENING=1
+}
+
+src_install() {
+   emake PREFIX="${ED}usr" ETCDIR="${ED}etc" install
+
+   dodoc AUTHORS README REPORTING-BUGS
+}



[gentoo-commits] repo/gentoo:master commit in: net-analyzer/netsniff-ng/files/, net-analyzer/netsniff-ng/

2016-05-07 Thread Michael Weber
commit: ab4d97bac3c667bbecb8f93b9bbc505dd6036f02
Author: Michael Weber  gentoo  org>
AuthorDate: Sat May  7 20:42:31 2016 +
Commit: Michael Weber  gentoo  org>
CommitDate: Sat May  7 20:44:35 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab4d97ba

net-analyzer/netsniff-ng: Drop old.

Package-Manager: portage-2.2.28

 net-analyzer/netsniff-ng/Manifest  |  2 -
 .../files/netsniff-ng-0.5.8-fortify_source.patch   | 12 -
 .../files/netsniff-ng-0.5.8-libcli-test.patch  | 11 
 net-analyzer/netsniff-ng/netsniff-ng-0.5.8.ebuild  | 61 --
 net-analyzer/netsniff-ng/netsniff-ng-0.5.9.ebuild  | 59 -
 5 files changed, 145 deletions(-)

diff --git a/net-analyzer/netsniff-ng/Manifest 
b/net-analyzer/netsniff-ng/Manifest
index c39b824..4f0a786 100644
--- a/net-analyzer/netsniff-ng/Manifest
+++ b/net-analyzer/netsniff-ng/Manifest
@@ -1,3 +1 @@
-DIST netsniff-ng-0.5.8.tar.xz 523616 SHA256 
c413e7f34bd9bd80937cd8d4bcd6780e126e2ffccc3dc34b271f105efd622e44 SHA512 
1d58cf7a5388b8adb4512d97150992d6b8ebe43910442b952cecd8d03898a2e51f721711f2d1b406cbd00b4ccb548e33da4cb95530d7e92f082eea6b08efec99
 WHIRLPOOL 
a73b8d67d5ca2cc40d5c9e1535f0a50a7968f102a1a5684f8bec0e7079140c0605dace126de23abca3f53a31db90da8f5fedeca0eea27621983743d88d74d416
-DIST netsniff-ng-0.5.9.tar.xz 541304 SHA256 
e0156074bdd146dd71edcd63fa3944b658a3bce5279e0a4128578636a9700b6c SHA512 
ebcfc1569f6c2380ebd4f797614da37eaba08991478d776b547c5f68f0f2df0548339c30f9487f73f1963b71eb4b4fccf3d2bd87d5574893494f0ca0534eb0d8
 WHIRLPOOL 
e8f9d973e50eca1dcf21faf17ab351d8e92e32464878a2bdd0d0ff633c6a33aee4be8e765e24996dc81441139587092da374a34b41437af838aab08512d18eae
 DIST netsniff-ng-0.6.0.tar.xz 554612 SHA256 
f2e77d49e2f3aed78838827695bb2efade79e8d7126c7d81656425fd1bd56159 SHA512 
a77d548cc16ef175b120945428e07e8ff2aaabba6add239b7f42429811bbb6e024ace92a15944551c45025b185f1df5aa3dee4500ff9ecb30536ec9a8deded74
 WHIRLPOOL 
33abcec54c5839332deb4ea06d687ed4748d25cdb2842a8d193176db369dff52c773bbcefed76d3cfe926152dcbc5f87553e7b9c1c29dbc84014f4a4e27d8f79

diff --git 
a/net-analyzer/netsniff-ng/files/netsniff-ng-0.5.8-fortify_source.patch 
b/net-analyzer/netsniff-ng/files/netsniff-ng-0.5.8-fortify_source.patch
deleted file mode 100644
index b4f3672..000
--- a/net-analyzer/netsniff-ng/files/netsniff-ng-0.5.8-fortify_source.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-As seen on http://code.google.com/p/android/issues/detail?id=20795
 netsniff-ng-0.5.8-rc2/Makefile
-+++ netsniff-ng-0.5.8-rc2/Makefile
-@@ -72,7 +72,7 @@
-   CFLAGS_DEF += -Wstack-protector
-   CFLAGS_DEF += --param=ssp-buffer-size=4
-   CFLAGS_DEF += -ftrapv
--  CFLAGS_DEF += -D_FORTIFY_SOURCE=2
-+  CFLAGS_DEF += -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2
-   CFLAGS_DEF += -fexceptions
- endif
- 

diff --git a/net-analyzer/netsniff-ng/files/netsniff-ng-0.5.8-libcli-test.patch 
b/net-analyzer/netsniff-ng/files/netsniff-ng-0.5.8-libcli-test.patch
deleted file mode 100644
index 903a4b9..000
--- a/net-analyzer/netsniff-ng/files/netsniff-ng-0.5.8-libcli-test.patch
+++ /dev/null
@@ -1,11 +0,0 @@
-Seen on https://bugzilla.redhat.com/show_bug.cgi?id=836923
 netsniff-ng-0.5.8-rc2/configure
-+++ netsniff-ng-0.5.8-rc2/configure
-@@ -463,6 +463,7 @@
-   echo -n "[*] Checking libcli ... "
- 
-   cat > $TMPDIR/clitest.c << EOF
-+#include 
- #include 
- 
- void main(void)

diff --git a/net-analyzer/netsniff-ng/netsniff-ng-0.5.8.ebuild 
b/net-analyzer/netsniff-ng/netsniff-ng-0.5.8.ebuild
deleted file mode 100644
index b82c678..000
--- a/net-analyzer/netsniff-ng/netsniff-ng-0.5.8.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit eutils multilib toolchain-funcs
-
-DESCRIPTION="high performance network sniffer for packet inspection"
-HOMEPAGE="http://netsniff-ng.org/";
-MY_P=${P/_rc/-rc}
-SRC_URI="http://pub.${PN}.org/${PN}/${MY_P}.tar.xz";
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="dev-libs/geoip
-   dev-libs/libcli
-   dev-libs/libnl:3
-   dev-libs/userspace-rcu
-   net-libs/libnet:1.1
-   net-libs/libnetfilter_conntrack
-   net-libs/libpcap
-   sys-libs/ncurses:0
-   sys-libs/zlib"
-DEPEND="${RDEPEND}
-   sys-devel/flex
-   sys-devel/bison
-   =net-libs/nacl-0_p20110221*
-   virtual/pkgconfig"
-
-S=${WORKDIR}/${MY_P}
-
-src_prepare() {
-   sed -e '/CFLAGS/s:?=:+=:' \
-   -e '/CFLAGS/s:\(-g\|-O2\|-O3\|-m\(arch\|tune\)=native\)::g' \
--i Makefile || die
-
-   if ! grep nacl-20110221 curvetun/nacl_build.sh >/dev/null ; then
-   die "have nacl-20110221, expected $(grep ${MY_NACL_P} 
curvetun/nacl_build.sh)"
-   fi
-
-   export NACL_INC_DIR="${EROOT}usr/include/nacl"
-   export NACL_LIB_DIR="${EROOT}usr/$(get_libdir)/nacl"
-
-   epatch_user
-}
-
-src_compile(

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

2016-05-07 Thread Joerg Bornkessel
commit: 66afcab271f65b97330e610040ad3acc1b812a03
Author: Joerg Bornkessel  gentoo  org>
AuthorDate: Sat May  7 21:18:48 2016 +
Commit: Joerg Bornkessel  gentoo  org>
CommitDate: Sat May  7 21:18:48 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66afcab2

fixed einstall vs. emake install for eapi=6

 eclass/vdr-plugin-2.eclass | 6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/eclass/vdr-plugin-2.eclass b/eclass/vdr-plugin-2.eclass
index ae09a34..65f1409 100644
--- a/eclass/vdr-plugin-2.eclass
+++ b/eclass/vdr-plugin-2.eclass
@@ -571,7 +571,11 @@ vdr-plugin-2_src_install() {
local SOFILE_STRING=$(grep SOFILE Makefile)
if [[ -n ${SOFILE_STRING} ]]; then
BUILD_TARGETS=${BUILD_TARGETS:-${VDRPLUGIN_MAKE_TARGET:-install 
}}
-   einstall ${BUILD_PARAMS} \
+   if [[ ${EAPI} == 6 ]]; then
+   emake install ${BUILD_PARAMS} \
+   else
+   einstall ${BUILD_PARAMS} \
+   fi
${BUILD_TARGETS} \
TMPDIR="${T}" \
DESTDIR="${D}" \



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

2016-05-07 Thread Michał Górny
commit: d9c7a0f033c73b24669ae9bf80109c02ecab3af9
Author: Michał Górny  gentoo  org>
AuthorDate: Sat May  7 21:17:07 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat May  7 21:23:51 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9c7a0f0

net-p2p/classified-ads: Add missing upstream maintainer's name

 net-p2p/classified-ads/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/net-p2p/classified-ads/metadata.xml 
b/net-p2p/classified-ads/metadata.xml
index bc9defd..9b33279 100644
--- a/net-p2p/classified-ads/metadata.xml
+++ b/net-p2p/classified-ads/metadata.xml
@@ -33,6 +33,7 @@

 
 antti.jarvi...@katiska.org
+Antti Järvinen
 
 
https://github.com/operatornormal/classified-ads/commits/master

https://github.com/operatornormal/classified-ads/issues



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

2016-05-07 Thread Michał Górny
commit: 075ddeaf2794cda52d8a7f796bc20f0704d0f8d1
Author: Michał Górny  gentoo  org>
AuthorDate: Sat May  7 21:18:55 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat May  7 21:23:51 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=075ddeaf

x11-misc/obmenu-generator: Add missing upstream maintainer's name

 x11-misc/obmenu-generator/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/x11-misc/obmenu-generator/metadata.xml 
b/x11-misc/obmenu-generator/metadata.xml
index 6ddc51a..94c5eee 100644
--- a/x11-misc/obmenu-generator/metadata.xml
+++ b/x11-misc/obmenu-generator/metadata.xml
@@ -4,6 +4,7 @@


triz...@gmail.com
+   Daniel Șuteu

trizen/obmenu-generator




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

2016-05-07 Thread Michał Górny
commit: d3f30dde2740989a7c8f68eb5a70347a7157f625
Author: Michał Górny  gentoo  org>
AuthorDate: Sat May  7 21:15:49 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat May  7 21:23:51 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3f30dde

net-misc/youtube-viewer: Add missing upstream maintainer's name

 net-misc/youtube-viewer/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/net-misc/youtube-viewer/metadata.xml 
b/net-misc/youtube-viewer/metadata.xml
index 9dd8eda..321dd2e 100644
--- a/net-misc/youtube-viewer/metadata.xml
+++ b/net-misc/youtube-viewer/metadata.xml
@@ -18,6 +18,7 @@


triz...@gmail.com
+   Daniel Șuteu


https://github.com/trizen/youtube-viewer/issues
trizen/youtube-viewer



[gentoo-commits] repo/gentoo:master commit in: app-i18n/man-pages-it/

2016-05-07 Thread Michał Górny
commit: d3e1c8d2f544ca241603e36a2fb393379d6b597c
Author: Michał Górny  gentoo  org>
AuthorDate: Sat May  7 21:09:21 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat May  7 21:23:51 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3e1c8d2

app-i18n/man-pages-it: Add missing upstream maintainer's name

 app-i18n/man-pages-it/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/app-i18n/man-pages-it/metadata.xml 
b/app-i18n/man-pages-it/metadata.xml
index b484f14..fcde396 100644
--- a/app-i18n/man-pages-it/metadata.xml
+++ b/app-i18n/man-pages-it/metadata.xml
@@ -13,6 +13,7 @@


giu...@pluto.it
+   Giulio Daprelà






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

2016-05-07 Thread Michał Górny
commit: 7461e742c48a40f575c74c6856f93271c487b777
Author: Michał Górny  gentoo  org>
AuthorDate: Sat May  7 21:12:08 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat May  7 21:23:51 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7461e742

app-misc/trash-cli: Add missing upstream maintainer's name

 app-misc/trash-cli/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/app-misc/trash-cli/metadata.xml b/app-misc/trash-cli/metadata.xml
index 64f904d..cd2cf09 100644
--- a/app-misc/trash-cli/metadata.xml
+++ b/app-misc/trash-cli/metadata.xml
@@ -13,6 +13,7 @@
   
 
   s...@andreafrancia.it
+  Andrea Francia
 
 
https://github.com/andreafrancia/trash-cli/commits/master
 https://github.com/andreafrancia/trash-cli/blob/master/README.txt



[gentoo-commits] repo/gentoo:master commit in: app-cdr/cdrtools/

2016-05-07 Thread Michał Górny
commit: f50aadb2bff2b27b9a398becb7bd00e6767e729f
Author: Michał Górny  gentoo  org>
AuthorDate: Sat May  7 21:07:46 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat May  7 21:23:51 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f50aadb2

app-cdr/cdrtools: Add missing upstream maintainer's name

 app-cdr/cdrtools/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/app-cdr/cdrtools/metadata.xml b/app-cdr/cdrtools/metadata.xml
index f3f8095..f049ae2 100644
--- a/app-cdr/cdrtools/metadata.xml
+++ b/app-cdr/cdrtools/metadata.xml
@@ -8,6 +8,7 @@


joerg.schill...@fokus.fraunhofer.de
+   Jörg Schilling

cdrtools




[gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-opensteamworks/

2016-05-07 Thread Michał Górny
commit: eebe131f591afa10faf00efb2307d3bb5eeaf5d9
Author: Michał Górny  gentoo  org>
AuthorDate: Sat May  7 21:23:21 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat May  7 21:23:51 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eebe131f

x11-plugins/pidgin-opensteamworks: Add missing upstream maintainer's name

 x11-plugins/pidgin-opensteamworks/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/x11-plugins/pidgin-opensteamworks/metadata.xml 
b/x11-plugins/pidgin-opensteamworks/metadata.xml
index 7d3c846..6a28ffd 100644
--- a/x11-plugins/pidgin-opensteamworks/metadata.xml
+++ b/x11-plugins/pidgin-opensteamworks/metadata.xml
@@ -14,6 +14,7 @@


eionr...@gmail.com
+   Eion Robb


https://code.google.com/p/pidgin-opensteamworks/issues/list
EionRobb/pidgin-opensteamworks



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

2016-05-07 Thread Michał Górny
commit: baf5b20fd6e50201b177e97854d5fdc6e4325f2f
Author: Michał Górny  gentoo  org>
AuthorDate: Sat May  7 21:22:35 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat May  7 21:23:51 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=baf5b20f

x11-misc/spacefm: Add missing upstream maintainer's name

 x11-misc/spacefm/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/x11-misc/spacefm/metadata.xml b/x11-misc/spacefm/metadata.xml
index 1726d75..21d53fa 100644
--- a/x11-misc/spacefm/metadata.xml
+++ b/x11-misc/spacefm/metadata.xml
@@ -8,6 +8,7 @@


ignorantg...@users.sourceforge.net
+   IgnorantGuru


https://ignorantguru.github.com/spacefm/news.html
https://github.com/IgnorantGuru/spacefm/wiki/



[gentoo-commits] repo/gentoo:master commit in: app-cdr/xfburn/

2016-05-07 Thread Michał Górny
commit: 5bd0488f280f7a4d4f5be5db1664206eb9df7184
Author: Michał Górny  gentoo  org>
AuthorDate: Sat May  7 21:08:23 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat May  7 21:23:51 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5bd0488f

app-cdr/xfburn: Add missing upstream maintainer's name

 app-cdr/xfburn/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/app-cdr/xfburn/metadata.xml b/app-cdr/xfburn/metadata.xml
index 38d66a1..88aa9ba 100644
--- a/app-cdr/xfburn/metadata.xml
+++ b/app-cdr/xfburn/metadata.xml
@@ -8,6 +8,7 @@
   
 
   ma...@xfce.org
+  Mario Đanić
 
 
   b...@da.mcbf.net



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

2016-05-07 Thread Michał Górny
commit: af5bfe75f7aa39be11b9e409921341835fabab0e
Author: Michał Górny  gentoo  org>
AuthorDate: Sat May  7 21:15:03 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat May  7 21:23:51 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af5bfe75

media-gfx/pinta: Add missing upstream maintainer's name

 media-gfx/pinta/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/media-gfx/pinta/metadata.xml b/media-gfx/pinta/metadata.xml
index dba24d0..bca9f7f 100644
--- a/media-gfx/pinta/metadata.xml
+++ b/media-gfx/pinta/metadata.xml
@@ -13,6 +13,7 @@


cameronwhit...@gmail.com
+   Cameron White


https://github.com/PintaProject/Pinta/commits/1.3
http://pinta-project.com/HowTo.ashx



[gentoo-commits] proj/vdr/devel:master commit in: media-plugins/vdr-dvbapi/

2016-05-07 Thread Joerg Bornkessel
commit: 0a566cc6acea20495a6972fc52b53068dd5f7079
Author: Joerg Bornkessel  gentoo  org>
AuthorDate: Sat May  7 21:26:30 2016 +
Commit: Joerg Bornkessel  gentoo  org>
CommitDate: Sat May  7 21:26:30 2016 +
URL:https://gitweb.gentoo.org/proj/vdr/devel.git/commit/?id=0a566cc6

bump; metadata.xml fixed; eapi=6

Package-Manager: portage-2.2.28
Manifest-Sign-Key: 0x93EB5F4DAA5832A1

 media-plugins/vdr-dvbapi/ChangeLog   |  8 ++-
 media-plugins/vdr-dvbapi/Manifest| 28 ++---
 media-plugins/vdr-dvbapi/metadata.xml|  5 +-
 media-plugins/vdr-dvbapi/vdr-dvbapi-2.2.2.ebuild | 78 
 4 files changed, 108 insertions(+), 11 deletions(-)

diff --git a/media-plugins/vdr-dvbapi/ChangeLog 
b/media-plugins/vdr-dvbapi/ChangeLog
index 4432196..5a54fa7 100644
--- a/media-plugins/vdr-dvbapi/ChangeLog
+++ b/media-plugins/vdr-dvbapi/ChangeLog
@@ -1,7 +1,13 @@
 # ChangeLog for media-plugins/vdr-dvbapi
-# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2016 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+*vdr-dvbapi-2.2.2 (07 May 2016)
+
+  07 May 2016; Joerg Bornkessel 
+  +vdr-dvbapi-2.2.2.ebuild, metadata.xml:
+  bump; metadata.xml fixed; eapi=6
+
 *vdr-dvbapi-2.2.0 (31 Mar 2015)
 
   31 Mar 2015; Joerg Bornkessel 

diff --git a/media-plugins/vdr-dvbapi/Manifest 
b/media-plugins/vdr-dvbapi/Manifest
index a660fa6..04a49a8 100644
--- a/media-plugins/vdr-dvbapi/Manifest
+++ b/media-plugins/vdr-dvbapi/Manifest
@@ -3,15 +3,29 @@ Hash: SHA256
 
 DIST vdr-dvbapi-2.1.1.tar.gz 82813 SHA256 
2724768de00a607d7119478296a3ad1cc592c12badbc95480edc5f7e6b3985d7 SHA512 
fb632e66c9e477663eb1edf5e630a20b2165495c89d5bd6294d74d6a28c8386021d90914c9c6b958ea3c5c1d0958cc69efa5c65ef72c510c224d676f1eca39ae
 WHIRLPOOL 
af18c22bb00ddbb41aa8e3ee091f27a1bb7b79f0d90783af9c9503ad03a568193c88cc41db86e0e06fd8c503ad43242a582b0decc5f64c417283517f05d14727
 DIST vdr-dvbapi-2.2.0.tar.gz 84154 SHA256 
fae293c7c0a862d8d2988bc575dac8fa618a0818a68f8b38c0c9949aebcad66a SHA512 
ae8f85a580343ba0329bc9414dce70e0404f43598470f26fbe0f159fdb6690692acb5db3057ff96bbf506ee59cd125641601f0e7cf38ecd13f6833beba9f7b46
 WHIRLPOOL 
43a379e014e773c778afcc9bf2638382ecf7aa1793b08bb9a7df7d06b6b736971e009428a1d01a5e3475ecc6c7f1840bda014914b74311b04f503a015c8d
+DIST vdr-dvbapi-2.2.2.tar.gz 83995 SHA256 
86c00b7235952a6b49321efd6c931f0c97885475c9bdc81b0b35236fc7ec7f20 SHA512 
01d3a6368e0233a7b96b6ea57b28884a004a130d63da2b2958b1616a1108e83389b68cbe32ec7fc6be65d6741912c4f46621b659fb13dba56e594a1a18af2c63
 WHIRLPOOL 
107c157c915876b17e437996957205559f2aaee144de732b366566f6817b456da992dfb9d061f9011bd06bb279ab346d394fb751fe87c7ceebddfffe23615a45
 EBUILD vdr-dvbapi-2.1.1.ebuild 2543 SHA256 
1f8e16309e7cacf05c055402d5cad4883938e733a98db9fb15a34705e907ad7d SHA512 
59a3fda45d4d7dd3a312819af0118e287042c5aa172862f1b3b8d2224c738342b55638aa9efc3a0172a21f44fa166c1de1398e174d49225641c1bc54516edb61
 WHIRLPOOL 
bbfb3a7fa94af327c8dcf55377366f0b7468c4bc851e1af9a212a205699b8fa0e0bddf3c10f88625e7ab37da89a7ec3403097bf43b01661a2573dbd01bf6d1c1
 EBUILD vdr-dvbapi-2.2.0.ebuild 2543 SHA256 
21bf2d05ae968f5c27f35dad976c0dccfbb7c92c693795f9c1473bde1c49deb6 SHA512 
7ce05520936d050ad64b27e474305d65be8fd520ac48f494b3bbade89944e63ca556da8edab0b4ecc6a7e25abda1029ecfe620ea12f9001da79c789d45df9590
 WHIRLPOOL 
c16da67245d9df8b87011dc1fcbc7e16e7ad2775385040133b860ce72a63a41ab51fa0374e2aca72675ec0857b77b52a74a0cc50ef51c0208f0ad6c894ef56e0
-MISC ChangeLog 336 SHA256 
15d240346ac240380e14c6e489e8e334e5589c778a1d198600e05dd2a56af21f SHA512 
d325ffe63e9b9f202c7a2cfd968cee24447d6272148c632dd0386e7019988947ef50b4d380dcd1205a7cb7e6afd46155b3c788879a0d1665e6d98bada10b4dc9
 WHIRLPOOL 
3c16e67fd0f903624ae3ae0f040da6a5248a2892fb4b0ddac0dad2b7f1d4c852004bbb764646043615b1b645253e71884ab716205f12462365ca6eb8382df305
-MISC metadata.xml 264 SHA256 
671b87413541c72949a6fdaa59ade4d488b898f2540128f4910b279e83d795a7 SHA512 
7c79a0da0ffd5eb50f42c9f131614e18cdad2ddd3be949e7a745cdf6003fd16a32425b292dedb072bd35bdb52b2ae74df0ee66e2add047f6af4f36d5eb40cc8e
 WHIRLPOOL 
8f3360e510cfbb81c1936f126c16f8a1ecd17366f68272c7123613e722e895ff362f9c314f71399ff67185b29d4d32ab81fe79647559f51232630edefc15aba8
+EBUILD vdr-dvbapi-2.2.2.ebuild 2537 SHA256 
c1f75e9e0f9c4889549e03309947b7f58778a1131be3a9afe38b20d24ee03662 SHA512 
7241fab901379f8a00215b35357c18ea31fce3dd264b01539edd0dfdcd09aaed6a4997741438e488ac993a0d45a361aa98d08493b958723fcec4922a073b5aba
 WHIRLPOOL 
40b3866fc6a0a017fa3c2b55215e1e09a793eac66faf7d0b73172adf2aacd6b94d88a2e851ab58e4212cf291d29c3ff0b43f4f7611499789f3da6a609ac06286
+MISC ChangeLog 502 SHA256 
aaa39cf2a5077b6a794475c3a28367bc2fb1ca97b244c241a9f6ed1fdb111c39 SHA512 
0c8f6c0e2a3a84a0e0d6eec76e7b4f99f2f379917820622c05995feb9a5c2b4c0e7fc550aed52e8336362b5adbc8077bd8744a5a65853f4afbcc6d9a174059d7
 WHIRLPOOL 
2d0f6ae0ba593165d8113a61aa559cfeac9293b194f1749bf66538f46e73b72e08b5b646b7b52d9f480d112ed91a5f7a41b0c

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

2016-05-07 Thread Ryan Hill
commit: 6d48fc1f29203ce2e87354d018e2920bb3c12183
Author: Ryan Hill  gentoo  org>
AuthorDate: Sat May  7 21:35:41 2016 +
Commit: Ryan Hill  gentoo  org>
CommitDate: Sat May  7 21:35:41 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d48fc1f

Revert "fixed einstall vs. emake install for eapi=6"

This reverts commit 66afcab271f65b97330e610040ad3acc1b812a03.

 eclass/vdr-plugin-2.eclass | 6 +-
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/eclass/vdr-plugin-2.eclass b/eclass/vdr-plugin-2.eclass
index 65f1409..ae09a34 100644
--- a/eclass/vdr-plugin-2.eclass
+++ b/eclass/vdr-plugin-2.eclass
@@ -571,11 +571,7 @@ vdr-plugin-2_src_install() {
local SOFILE_STRING=$(grep SOFILE Makefile)
if [[ -n ${SOFILE_STRING} ]]; then
BUILD_TARGETS=${BUILD_TARGETS:-${VDRPLUGIN_MAKE_TARGET:-install 
}}
-   if [[ ${EAPI} == 6 ]]; then
-   emake install ${BUILD_PARAMS} \
-   else
-   einstall ${BUILD_PARAMS} \
-   fi
+   einstall ${BUILD_PARAMS} \
${BUILD_TARGETS} \
TMPDIR="${T}" \
DESTDIR="${D}" \



[gentoo-commits] proj/vdr/devel:master commit in: media-tv/gentoo-vdr-scripts/

2016-05-07 Thread Joerg Bornkessel
commit: db60ba5a1d8f251313ebe1ec7aa6d1578dbd9377
Author: Joerg Bornkessel  gentoo  org>
AuthorDate: Sat May  7 21:41:41 2016 +
Commit: Joerg Bornkessel  gentoo  org>
CommitDate: Sat May  7 21:41:41 2016 +
URL:https://gitweb.gentoo.org/proj/vdr/devel.git/commit/?id=db60ba5a

fixed git url; eapi=6; fixed metadata.xml

Package-Manager: portage-2.2.28
Manifest-Sign-Key: 0x93EB5F4DAA5832A1

 media-tv/gentoo-vdr-scripts/ChangeLog  |  6 -
 media-tv/gentoo-vdr-scripts/Manifest   | 28 +++---
 .../gentoo-vdr-scripts-.ebuild | 13 +-
 media-tv/gentoo-vdr-scripts/metadata.xml   |  3 +--
 4 files changed, 33 insertions(+), 17 deletions(-)

diff --git a/media-tv/gentoo-vdr-scripts/ChangeLog 
b/media-tv/gentoo-vdr-scripts/ChangeLog
index dcd3382..e1963be 100644
--- a/media-tv/gentoo-vdr-scripts/ChangeLog
+++ b/media-tv/gentoo-vdr-scripts/ChangeLog
@@ -1,7 +1,11 @@
 # ChangeLog for media-tv/gentoo-vdr-scripts
-# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2016 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  07 May 2016; Joerg Bornkessel 
+  gentoo-vdr-scripts-.ebuild, metadata.xml:
+  fixed git url; eapi=6; fixed metadata.xml
+
   05 Feb 2015; Joerg Bornkessel 
   gentoo-vdr-scripts-.ebuild:
   minor fixes

diff --git a/media-tv/gentoo-vdr-scripts/Manifest 
b/media-tv/gentoo-vdr-scripts/Manifest
index 2b2059e..178ebe3 100644
--- a/media-tv/gentoo-vdr-scripts/Manifest
+++ b/media-tv/gentoo-vdr-scripts/Manifest
@@ -1,14 +1,26 @@
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA256
 
-EBUILD gentoo-vdr-scripts-.ebuild 1145 SHA256 
8ef8b6e9c5ea6df538974c3b611db58a54ce2de03b36e34e3f09f7e534a9f045 SHA512 
9c1b110be5351550d47f0eb16a5c196b94e362187124db16b645bf086b279e2e2ca981db94c4951e6fc4008d755d18f3956b277a453e8291db7394374e9c3ab9
 WHIRLPOOL 
1e28c181596115c39358016040a68e841bf85592592d584b06e1509bd550d8db59bab88059605bd0cd657da7cb37dc3b6a8796b2789413ccb4db4a39e45777bd
-MISC ChangeLog 651 SHA256 
926de542eb8ecba5e6f32f0d2906f61f6e9c1a9359ced6f8cb5532538422c954 SHA512 
b81877c0d5a23c6bf8732ae22a52c4936990de13b26cd5a0d311176121fa2a282b0bb8fb26d440e42c5719c34986cf9c00909c041ded639ac5f829110c8b649a
 WHIRLPOOL 
fc58b9595718890d39f8fd59e7badcc911d0415b9fa28d69096c67e96b07c065fa85e688b35cca1ce037e09651eeb933d8c01a509942575561be03f679ae8fca
-MISC metadata.xml 366 SHA256 
a92d2326d3f734f176d63173dd3a19fa2cd3b9744ee142cd3e4fb0771d08fd29 SHA512 
f292ea44800b14564b12cf4f12be80fb822e69586e6ef6e8d4f57aa9bc52c59b57ec85b1bad329b27ac628c186255aa4121250d0026cecaadf7fb2c726951956
 WHIRLPOOL 
429e33decc3b1c25dae8ba99449f0b40246780649a53038b363505c7db7db25aa0c646a6d5e785556d977d88591488d1a2aca25fb2f26cdb65ea8d8f3a344340
+EBUILD gentoo-vdr-scripts-.ebuild 1008 SHA256 
8b573e4b51fae093ecfc2a29a9f45eed18aa61959beb014276cae8234cc3a46c SHA512 
c018d309f31bb4c8e2dcc8f89c3bb4b2dceb8451116c2806dfdeb651df043be7739af73d4655e8a193828cfd48c446e20483c44425b7cea1aeb4e0b22cb33192
 WHIRLPOOL 
1842518d55bb50d5eb2d1204996aab3a44fd12e96c787764237c934e8490182633faad278f6adb165e5b422d329d2ad1c3ad4a10ea5958b501828035956618e8
+MISC ChangeLog 799 SHA256 
ac6dc2258a2b9afa31dce35a354986d02b7863c63af967ec75726f550e4cae6c SHA512 
a2f6c3f1b35fa5f4f805002c132843012b0608dd51d40798b637bccaf24908b27317f5f8de3ac8f32b8c78c7ad24bfaa5717ab1d30a659d0983965f688d3d4ab
 WHIRLPOOL 
c1366febf59f92a1a0645daf115f2f76765570b783cf7eb0cf902b9554d42789b95fda2ded2ff02e42a8b069392903d260f05750c2f68eb7c43cda4902e5b15c
+MISC metadata.xml 358 SHA256 
b758a7e2620dea89a8ba65dd00787928c9af59b3e2b743c46c7c205e61d4215e SHA512 
fcce89bd7190c6318e0821198da47932e23611064d500b3a5436d56390eac284eac00582af1294aa283a3cda8ad47dc9c34b2f5116d6dc0fcb1eaf7edded2384
 WHIRLPOOL 
ebfc84480a8b09099705a7b2d71524ab2c005bdfbfdcb06d8937775a5d3275a94702c19192f2007b0042734ce861031f5f7263c323a9b617e9b16ee560a16fb1
 -BEGIN PGP SIGNATURE-
-Version: GnuPG v2.0.22 (GNU/Linux)
-Comment: added by hd_bru...@gentoo.org
+Version: GnuPG v2.1
+Comment: Signed-off-by: Jörg Bornkessel 
 
-iD8DBQFU08didn07HTTCgIoRCEveAJ448P4TN0iIOdD/eQRFkPowwSNq7wCfXkJi
-k0/Dqrq5ZtAyquTeu6AUXBE=
-=/cRJ
+iQJ8BAEBCABmBQJXLmEPXxSAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w
+ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQwRTBBQTFFRTFERjQ0MUQ3QTNGNTIxQzI5
+M0VCNUY0REFBNTgzMkExAAoJEJPrX02qWDKh/p4QAK6VVfqh7Yu5Aa/CvZD2eZKw
+TRmP+YJjGmZHR3/i5ZdNu2SqXnpGZUN41F6VAK5QpRDHsGwy4KM86ceHYr6YUDb+
+f190lsXqto7mdyxMQ9LvS/Ao0kOLgBbgyUnHN1VOAx6MTV0wT13YaDaw6QHwL/rX
+dt942dRyDzUjN+DfHn0YMn5IMp3NcVOM9/mBrnEG08ACZP9MqxpeXN+estsxnHYw
+hBfFi+0WdWyfPSVpe2NZjEOAdAFrzS37fkwRlMdttZXQEu3eap1EQradicGo8FII
+EiP5t+IxKXYtFSadO5XntmBGvRzH2COGG2iYVFVI5vQqz97wK6UjR8kaKTMLfqlE
+swFbBk3aT0bfMgTO3uJEdzsxc2Mae7/Hxuz/lU1qnhh3oSpenEA9/EhjVH+CmGnk
+3xsGnrOODJdgPfnGDlpgyP4UDQOb+jywZWztb4OlBkGt+yfVXHQnt98sWM/ziInJ
+Zv6q7Lob3gh2poi4E6HBycEOw1bpSSdDI6yI6Mur1L8qSWdVrsPEl02yytwja0oP
+sUceiNf6NZGyOg6wtLvYgWwScwxUXMVB7E0OTEHioAAOWj30pFk+rsjn7o

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

2016-05-07 Thread Michael Weber
commit: ccbbb3a6a278100e51bacf1c2c30fc935b189812
Author: Michael Weber  gentoo  org>
AuthorDate: Sat May  7 21:09:24 2016 +
Commit: Michael Weber  gentoo  org>
CommitDate: Sat May  7 21:43:34 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ccbbb3a6

dev-libs/libwapcaplet: Drop old.

Package-Manager: portage-2.2.28

 dev-libs/libwapcaplet/Manifest   |  2 --
 .../files/libwapcaplet-0.2.2-glibc20.patch   | 14 --
 dev-libs/libwapcaplet/libwapcaplet-0.2.2-r1.ebuild   | 20 
 3 files changed, 36 deletions(-)

diff --git a/dev-libs/libwapcaplet/Manifest b/dev-libs/libwapcaplet/Manifest
index 5ffa65c..5cd1c82 100644
--- a/dev-libs/libwapcaplet/Manifest
+++ b/dev-libs/libwapcaplet/Manifest
@@ -1,4 +1,2 @@
-DIST libwapcaplet-0.2.2-src.tar.gz 8902 SHA256 
38021992e1e6b3ec50d0d3bf7add069bee4c5b179691afa6a76dd58695201485 SHA512 
a3026f6ca73c981ff2fa07b45fab3a75605eaab751570ab08aedb33f38d0e62cf6a8958b3df2b9efe25909706585a25383e428eb83201d903e2ec7b3f57d7c7c
 WHIRLPOOL 
f125012da633912e00879554dacf7482f30e4b80f99335c8af0fbc91106aad7ee62d51a787c6db5cc15a5bc16027c310ff9b5f3629ba62bda65352d68c900c4f
 DIST libwapcaplet-0.3.0-src.tar.gz 31362 SHA256 
4359ee9d9fd08e721ba1976e9c6e5eaa49b32119e4e1571c1fec49a7446b4133 SHA512 
f4767a48a21a5cbd29e72e0194984fc9d578046a44ad43d9f6fb94f77698c79652d19cea999564e3f02cf42d640d4358f7d9983ae16d2215c70b0ae778c0f796
 WHIRLPOOL 
6dbe8bb7ebe9d9c87a7686386d5d833a341e5e288ac6a2a48dc68e46438bc32938a5b985ecbdb3f8b2a87e2792f14ef52e2f4d4f1e2eec02792ad24b9fcf40fe
-DIST netsurf-buildsystem-1.3.tar.gz 37906 SHA256 
10bbe95ba07476208da6047bd3c74685b6e61ba9904975b5d5c9a2c79a84ac79 SHA512 
79ef3e366c4798dbb88021fd05019ba9fe50539b7482bd3d07422f4c0dbf2047b906f39a0b48deebbdf111d84d93a9364d08e5c97f91609363c27641db15e6b5
 WHIRLPOOL 
c8131d0ffb79b208b63bef94606735968584edfff8cb24b4c83cd747c5d65c2811004626840798047ffddf84556ef7d8e23242f60d01a4a046323df3c78b0980
 DIST netsurf-buildsystem-1.5.tar.gz 38196 SHA256 
dbc6afc639f6987b704e6ff4427668787ee7efba77e1bbf76b614699b5daaf71 SHA512 
02d85e8f1d2101194a678f7ccf84051390953285a46951d7b327556f8df1a0c416620bd4c7a615e25de438d5d27cfffb69ec5d94eb8379a295dab4c85a96cae4
 WHIRLPOOL 
7b7d595a2e399b361e71769e509a129af42da5ce823f1b55183efb53898ac2ae731593eb13e1ecc2271ea26ee0948ac35bf99fea280eb72a2bb00164b4b29f09

diff --git a/dev-libs/libwapcaplet/files/libwapcaplet-0.2.2-glibc20.patch 
b/dev-libs/libwapcaplet/files/libwapcaplet-0.2.2-glibc20.patch
deleted file mode 100644
index 546a5bf..000
--- a/dev-libs/libwapcaplet/files/libwapcaplet-0.2.2-glibc20.patch
+++ /dev/null
@@ -1,14 +0,0 @@
 libwapcaplet-0.2.2/Makefile
-+++ libwapcaplet-0.2.2/Makefile
-@@ -17,10 +17,7 @@
-   -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes \
-   -Wmissing-declarations -Wnested-externs
- # BeOS/Haiku standard library headers issue warnings
--ifneq ($(BUILD),i586-pc-haiku)
--  WARNFLAGS := $(WARNFLAGS) -Werror
--endif
--CFLAGS := -D_BSD_SOURCE -I$(CURDIR)/include/ \
-+CFLAGS := -D_DEFAULT_SOURCE -I$(CURDIR)/include/ \
-   -I$(CURDIR)/src $(WARNFLAGS) $(CFLAGS)
- ifneq ($(GCCVER),2)
-   CFLAGS := $(CFLAGS) -std=c99

diff --git a/dev-libs/libwapcaplet/libwapcaplet-0.2.2-r1.ebuild 
b/dev-libs/libwapcaplet/libwapcaplet-0.2.2-r1.ebuild
deleted file mode 100644
index 6d1b780..000
--- a/dev-libs/libwapcaplet/libwapcaplet-0.2.2-r1.ebuild
+++ /dev/null
@@ -1,20 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-NETSURF_BUILDSYSTEM=buildsystem-1.3
-inherit netsurf
-
-DESCRIPTION="string internment library, written in C"
-HOMEPAGE="http://www.netsurf-browser.org/projects/libwapcaplet/";
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~m68k-mint"
-IUSE="test"
-
-DEPEND="test? ( >=dev-libs/check-0.9.11[${MULTILIB_USEDEP}] )"
-
-PATCHES=( "${FILESDIR}"/${P}-glibc20.patch )



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

2016-05-07 Thread Michael Weber
commit: d5b0bed49f590500f4f88eb52b723e1e7cf9d127
Author: Michael Weber  gentoo  org>
AuthorDate: Sat May  7 21:26:27 2016 +
Commit: Michael Weber  gentoo  org>
CommitDate: Sat May  7 21:44:15 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5b0bed4

dev-libs/libutf8proc: Drop old.

Package-Manager: portage-2.2.28

 dev-libs/libutf8proc/Manifest|  2 --
 dev-libs/libutf8proc/libutf8proc-1.1.6-r1.ebuild | 19 ---
 2 files changed, 21 deletions(-)

diff --git a/dev-libs/libutf8proc/Manifest b/dev-libs/libutf8proc/Manifest
index 5cb92fb..3e6b8ff 100644
--- a/dev-libs/libutf8proc/Manifest
+++ b/dev-libs/libutf8proc/Manifest
@@ -1,4 +1,2 @@
-DIST libutf8proc-1.1.6-src.tar.gz 89914 SHA256 
16e0dacf459bf42098614b714a262633de26ba5a03f05812d6d052c9aeeac384 SHA512 
97fc1ed6085f181f4d4b79b7e0dabcf8bcb73ec6ebe3ba426033edc3258082892f990ea9393a528186aa2b1f4aec6eb412036d16966461b0dd2263040ed9b7a1
 WHIRLPOOL 
a88252dd6569e062a59895ee0ee0db0eb95172f0376e92c2ee971e663aba610b61b6637aca740c000174b3cdf5ad6da9938e9bc3ab24fd849206561c8f503d7e
 DIST libutf8proc-1.3.1-src.tar.gz 144963 SHA256 
78e950bfc691182d3b61109b1b4e234399743607231f72a395331a367c2ac675 SHA512 
f9ede5dad19a9d4d45fcf159ff13750f7bf722de49d170a7b86b45582ad20141f5de98fd147311dccd125d85fb44b23c727dc309977aad8e068fe5e489c383ed
 WHIRLPOOL 
40106238546cd466a4a51f069b84cc5bae5aeb9d90751823433bc4e05df05102828ef8da920853778277b0ee59b9799d85b59ba82bf7f57ba940bbcbef71446b
-DIST netsurf-buildsystem-1.3.tar.gz 37906 SHA256 
10bbe95ba07476208da6047bd3c74685b6e61ba9904975b5d5c9a2c79a84ac79 SHA512 
79ef3e366c4798dbb88021fd05019ba9fe50539b7482bd3d07422f4c0dbf2047b906f39a0b48deebbdf111d84d93a9364d08e5c97f91609363c27641db15e6b5
 WHIRLPOOL 
c8131d0ffb79b208b63bef94606735968584edfff8cb24b4c83cd747c5d65c2811004626840798047ffddf84556ef7d8e23242f60d01a4a046323df3c78b0980
 DIST netsurf-buildsystem-1.4.tar.gz 38067 SHA256 
e66b7f09e91ac478e9f2c5c1aaf1f36ece9df0c3bbb1db910cd4c0461c47f7ad SHA512 
2c804ad7bef70c987e1d393ee4041bffc9797893b4fd513c90a665027205a1f7eee0a7d86ddaf833a6ee18346d6fe69587190c4e6722afc4ed18ce87783c35fc
 WHIRLPOOL 
1f98d45258d3ea5570f272368f72ed6b016434eb1ab399b0efb062dbe9d6257c3175aa51884eaf94a90bbc2c3a4c891a43170b8e93df01c540cbcdecdad13e5c

diff --git a/dev-libs/libutf8proc/libutf8proc-1.1.6-r1.ebuild 
b/dev-libs/libutf8proc/libutf8proc-1.1.6-r1.ebuild
deleted file mode 100644
index b5585e8..000
--- a/dev-libs/libutf8proc/libutf8proc-1.1.6-r1.ebuild
+++ /dev/null
@@ -1,19 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-NETSURF_BUILDSYSTEM=buildsystem-1.3
-inherit netsurf
-
-DESCRIPTION="mapping tool for UTF-8 strings"
-HOMEPAGE="http://www.netsurf-browser.org/";
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm"
-IUSE=""
-
-RDEPEND=""
-DEPEND="${RDEPEND}"



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

2016-05-07 Thread Michael Weber
commit: db702bf29db5815c12b3f1e15db8c5f5c859
Author: Michael Weber  gentoo  org>
AuthorDate: Sat May  7 21:14:06 2016 +
Commit: Michael Weber  gentoo  org>
CommitDate: Sat May  7 21:43:51 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db702bf2

media-libs/libsvgtiny: Drop old.

Package-Manager: portage-2.2.28

 media-libs/libsvgtiny/Manifest |  2 --
 .../files/libsvgtiny-0.1.3-glibc2.20.patch | 18 
 media-libs/libsvgtiny/libsvgtiny-0.1.3-r1.ebuild   | 25 --
 3 files changed, 45 deletions(-)

diff --git a/media-libs/libsvgtiny/Manifest b/media-libs/libsvgtiny/Manifest
index 9c7d06f..dd6dc7f 100644
--- a/media-libs/libsvgtiny/Manifest
+++ b/media-libs/libsvgtiny/Manifest
@@ -1,4 +1,2 @@
-DIST libsvgtiny-0.1.3-src.tar.gz 57751 SHA256 
cbdc024743a56ccacbfa6d6bbce135ab6d701d38609f4a1ac56c2842457e5dff SHA512 
5735449b6ad5ea76fd0a87ee0e9a0a1a1141ff9b7f392dd234bd7aae5761e3e3c62cee463b4949d713d1e675a9f3e3dd66aff67eb296180d2db6068323c5fe19
 WHIRLPOOL 
78072ca27bb55ddec56c04cdf45bd461c86abf4b2ac11bfde286bf8c2e11b4942dcc3879ecfe04d422a97cca60f18cdbdb440b7e1994359e3c3d7727dd236787
 DIST libsvgtiny-0.1.4-src.tar.gz 104678 SHA256 
9624e575c5e6e3177e803f65fc52af59784952b2861adf8b4a6ca77e05692274 SHA512 
40515fba1a034434f22f25ee6c2004d32f1e3c4e317bbf412c1482ca4bed302c49befb5e1803bc56122c03813439afb1cd925840467e538d5216153fc4486655
 WHIRLPOOL 
d78689e3dbfd0d062a758e5f2a6ba0d468afea698796b7f9678c17f52112d7d65140f5e706d8d67573563c78112fadd6cadae58da0c3f956991bc9a340456502
-DIST netsurf-buildsystem-1.3.tar.gz 37906 SHA256 
10bbe95ba07476208da6047bd3c74685b6e61ba9904975b5d5c9a2c79a84ac79 SHA512 
79ef3e366c4798dbb88021fd05019ba9fe50539b7482bd3d07422f4c0dbf2047b906f39a0b48deebbdf111d84d93a9364d08e5c97f91609363c27641db15e6b5
 WHIRLPOOL 
c8131d0ffb79b208b63bef94606735968584edfff8cb24b4c83cd747c5d65c2811004626840798047ffddf84556ef7d8e23242f60d01a4a046323df3c78b0980
 DIST netsurf-buildsystem-1.4.tar.gz 38067 SHA256 
e66b7f09e91ac478e9f2c5c1aaf1f36ece9df0c3bbb1db910cd4c0461c47f7ad SHA512 
2c804ad7bef70c987e1d393ee4041bffc9797893b4fd513c90a665027205a1f7eee0a7d86ddaf833a6ee18346d6fe69587190c4e6722afc4ed18ce87783c35fc
 WHIRLPOOL 
1f98d45258d3ea5570f272368f72ed6b016434eb1ab399b0efb062dbe9d6257c3175aa51884eaf94a90bbc2c3a4c891a43170b8e93df01c540cbcdecdad13e5c

diff --git a/media-libs/libsvgtiny/files/libsvgtiny-0.1.3-glibc2.20.patch 
b/media-libs/libsvgtiny/files/libsvgtiny-0.1.3-glibc2.20.patch
deleted file mode 100644
index e04867f..000
--- a/media-libs/libsvgtiny/files/libsvgtiny-0.1.3-glibc2.20.patch
+++ /dev/null
@@ -1,18 +0,0 @@
 libsvgtiny-0.1.3/Makefile
-+++ libsvgtiny-0.1.3/Makefile
-@@ -15,14 +15,8 @@
- WARNFLAGS := -Wall -W -Wundef -Wpointer-arith -Wcast-align \
-   -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes \
-   -Wmissing-declarations -Wnested-externs -pedantic
--# BeOS/Haiku/AmigaOS standard library headers create warnings
--ifneq ($(BUILD),i586-pc-haiku)
--  ifneq ($(findstring amigaos,$(BUILD)),amigaos)
--WARNFLAGS := $(WARNFLAGS) -Werror
--  endif
--endif
- 
--CFLAGS := -D_BSD_SOURCE -I$(CURDIR)/include/ \
-+CFLAGS := -D_DEFAULT_SOURCE -I$(CURDIR)/include/ \
-   -I$(CURDIR)/src $(WARNFLAGS) $(CFLAGS)
- ifneq ($(GCCVER),2)
-   CFLAGS := $(CFLAGS) -std=c99

diff --git a/media-libs/libsvgtiny/libsvgtiny-0.1.3-r1.ebuild 
b/media-libs/libsvgtiny/libsvgtiny-0.1.3-r1.ebuild
deleted file mode 100644
index 083de2a..000
--- a/media-libs/libsvgtiny/libsvgtiny-0.1.3-r1.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-NETSURF_BUILDSYSTEM=buildsystem-1.3
-inherit netsurf
-
-DESCRIPTION="framebuffer abstraction library, written in C"
-HOMEPAGE="http://www.netsurf-browser.org/projects/libsvgtiny/";
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~m68k-mint"
-IUSE=""
-
-RDEPEND=">=net-libs/libdom-0.1.2-r1[xml,static-libs?,${MULTILIB_USEDEP}]
-   >=dev-libs/libwapcaplet-0.2.2-r1[static-libs?,${MULTILIB_USEDEP}]"
-DEPEND="${RDEPEND}
-   dev-util/gperf
-   virtual/pkgconfig"
-
-PATCHES=( "${FILESDIR}"/${P}-glibc2.20.patch
-   "${FILESDIR}"/${P}-parallel-build.patch )



[gentoo-commits] repo/gentoo:master commit in: net-libs/libhubbub/, net-libs/libhubbub/files/

2016-05-07 Thread Michael Weber
commit: c6ada231f0444a1da25c9309a255566db1dc5c2a
Author: Michael Weber  gentoo  org>
AuthorDate: Sat May  7 21:11:43 2016 +
Commit: Michael Weber  gentoo  org>
CommitDate: Sat May  7 21:43:42 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6ada231

net-libs/libhubbub: Drop old.

Package-Manager: portage-2.2.28

 net-libs/libhubbub/Manifest|  2 --
 .../files/libhubbub-0.3.1-glibc2.20.patch  | 17 -
 net-libs/libhubbub/libhubbub-0.3.1-r1.ebuild   | 28 --
 3 files changed, 47 deletions(-)

diff --git a/net-libs/libhubbub/Manifest b/net-libs/libhubbub/Manifest
index 61966cb..8a80267 100644
--- a/net-libs/libhubbub/Manifest
+++ b/net-libs/libhubbub/Manifest
@@ -1,4 +1,2 @@
-DIST libhubbub-0.3.1-src.tar.gz 791945 SHA256 
1f8b31e86d0d32735f247c071a7ade1a475606b7a3583d2132e567a310b62053 SHA512 
79a40602cda351f16e81788903c8b77a6f4975fc6e6389b9b197bde8b20478e528acbd7b10bbb556c9ea78accf8088a7c461c239e457903615b159e8c5a881c8
 WHIRLPOOL 
dfc0e20059c7f11d78d3006b1350328588a5651024a17672fb3cfe9717390654223a2366ab9fa64dc227634fc27ffb638d84fc50f286606aa4548c62d0dca4ea
 DIST libhubbub-0.3.3-src.tar.gz 783945 SHA256 
066dffd127ead12da60050aa13b80891fb996d00197767d038e48ac163402780 SHA512 
28a5668257eda8cf1ca0395505522eb0f847a4cceee46de067fcfb171baa114876156a7e2671fff93602b2de63c640095e1a940e4725afb24bd14b4fd5f64526
 WHIRLPOOL 
c2f5459064e75699231f59dcfa56823d721aba8dc5062c5996807109f0bca1019a8a0b8371bb0934a49b8f98805d89ae9131d203379117f13e6ed2ee7eacae09
-DIST netsurf-buildsystem-1.3.tar.gz 37906 SHA256 
10bbe95ba07476208da6047bd3c74685b6e61ba9904975b5d5c9a2c79a84ac79 SHA512 
79ef3e366c4798dbb88021fd05019ba9fe50539b7482bd3d07422f4c0dbf2047b906f39a0b48deebbdf111d84d93a9364d08e5c97f91609363c27641db15e6b5
 WHIRLPOOL 
c8131d0ffb79b208b63bef94606735968584edfff8cb24b4c83cd747c5d65c2811004626840798047ffddf84556ef7d8e23242f60d01a4a046323df3c78b0980
 DIST netsurf-buildsystem-1.5.tar.gz 38196 SHA256 
dbc6afc639f6987b704e6ff4427668787ee7efba77e1bbf76b614699b5daaf71 SHA512 
02d85e8f1d2101194a678f7ccf84051390953285a46951d7b327556f8df1a0c416620bd4c7a615e25de438d5d27cfffb69ec5d94eb8379a295dab4c85a96cae4
 WHIRLPOOL 
7b7d595a2e399b361e71769e509a129af42da5ce823f1b55183efb53898ac2ae731593eb13e1ecc2271ea26ee0948ac35bf99fea280eb72a2bb00164b4b29f09

diff --git a/net-libs/libhubbub/files/libhubbub-0.3.1-glibc2.20.patch 
b/net-libs/libhubbub/files/libhubbub-0.3.1-glibc2.20.patch
deleted file mode 100644
index 45ce36b..000
--- a/net-libs/libhubbub/files/libhubbub-0.3.1-glibc2.20.patch
+++ /dev/null
@@ -1,17 +0,0 @@
 libhubbub-0.3.1/Makefile
-+++ libhubbub-0.3.1/Makefile
-@@ -15,13 +15,7 @@
- WARNFLAGS := -Wall -W -Wundef -Wpointer-arith -Wcast-align \
-   -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes \
-   -Wmissing-declarations -Wnested-externs -pedantic
--# BeOS/Haiku/AmigaOS have standard library errors that issue warnings.
--ifneq ($(BUILD),i586-pc-haiku)
--  ifneq ($(findstring amigaos,$(BUILD)),amigaos)
--WARNFLAGS := $(WARNFLAGS) -Werror
--  endif
--endif
--CFLAGS := -D_BSD_SOURCE -I$(CURDIR)/include/ \
-+CFLAGS := -D_DEFAULT_SOURCE -I$(CURDIR)/include/ \
-   -I$(CURDIR)/src $(WARNFLAGS) $(CFLAGS)
- ifneq ($(GCCVER),2)
-   CFLAGS := $(CFLAGS) -std=c99

diff --git a/net-libs/libhubbub/libhubbub-0.3.1-r1.ebuild 
b/net-libs/libhubbub/libhubbub-0.3.1-r1.ebuild
deleted file mode 100644
index 113f38f..000
--- a/net-libs/libhubbub/libhubbub-0.3.1-r1.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-NETSURF_BUILDSYSTEM=buildsystem-1.3
-inherit netsurf
-
-DESCRIPTION="HTML5 compliant parsing library, written in C"
-HOMEPAGE="http://www.netsurf-browser.org/projects/hubbub/";
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~m68k-mint"
-IUSE="doc test"
-
-RDEPEND=">=dev-libs/libparserutils-0.2.1-r1[static-libs?,${MULTILIB_USEDEP}]
-   !net-libs/hubbub"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig
-   test? ( dev-lang/perl
-   >=dev-libs/json-c-0.10-r1[${MULTILIB_USEDEP}] )"
-
-PATCHES=( "${FILESDIR}"/${P}-glibc2.20.patch )
-DOCS=( README docs/{Architecture,Macros,Todo,Treebuilder,Updated} )
-
-#RESTRICT=test



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

2016-05-07 Thread Michael Weber
commit: c126b2a35fe1da0e4019b7d11427c0d5940d97b6
Author: Michael Weber  gentoo  org>
AuthorDate: Sat May  7 21:10:21 2016 +
Commit: Michael Weber  gentoo  org>
CommitDate: Sat May  7 21:43:38 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c126b2a3

dev-libs/libcss: Drop old.

Package-Manager: portage-2.2.28

 dev-libs/libcss/Manifest   |  2 --
 dev-libs/libcss/files/libcss-0.5.0-glibc2.20.patch | 17 ---
 dev-libs/libcss/libcss-0.5.0-r1.ebuild | 24 --
 3 files changed, 43 deletions(-)

diff --git a/dev-libs/libcss/Manifest b/dev-libs/libcss/Manifest
index 8b6db73..29b0370 100644
--- a/dev-libs/libcss/Manifest
+++ b/dev-libs/libcss/Manifest
@@ -1,4 +1,2 @@
-DIST libcss-0.5.0-src.tar.gz 465574 SHA256 
ecaa09b07d4ecfd4644163bc0f0332b81aaaffbb9a373465e15e44e0faf1 SHA512 
50cc8427778d2fa265ae547895322e912b2f03e08ff100a2f7366e12fdf6e360a861d128a350ebdd3af3e674cc0a04a8dfa6e0217675aafcf3475593f1a5905f
 WHIRLPOOL 
3312934529c8c25ea5dff119accf6c8437d00edbd749c918ec9686dd545d602b222f5348c0a1a25091b36d0b0d7dea5bc3c3c8e9cf2cf53e78396dc3b5db102a
 DIST libcss-0.6.0-src.tar.gz 487389 SHA256 
4eb5228e5c480e31ba8ca098cedfec3a7ef90302ede77989caedf11670b8e462 SHA512 
7e0c4ee9f2425bed4956c68123a2f1509a8e2a23511683cb65f5c3c5e666556c2d335cb7b27f67a85fe29c4118cbed1fa1b1e863c3bb0d2cb42a8039ad8f1d6a
 WHIRLPOOL 
74e234880471f7e31a4b41798afaaefd6f679447c2c9798dd5a0d07127bb2297c84b379de92c6babc07b0aee842bb431fa73a9c5933473c0a29bce335b7b9782
-DIST netsurf-buildsystem-1.3.tar.gz 37906 SHA256 
10bbe95ba07476208da6047bd3c74685b6e61ba9904975b5d5c9a2c79a84ac79 SHA512 
79ef3e366c4798dbb88021fd05019ba9fe50539b7482bd3d07422f4c0dbf2047b906f39a0b48deebbdf111d84d93a9364d08e5c97f91609363c27641db15e6b5
 WHIRLPOOL 
c8131d0ffb79b208b63bef94606735968584edfff8cb24b4c83cd747c5d65c2811004626840798047ffddf84556ef7d8e23242f60d01a4a046323df3c78b0980
 DIST netsurf-buildsystem-1.5.tar.gz 38196 SHA256 
dbc6afc639f6987b704e6ff4427668787ee7efba77e1bbf76b614699b5daaf71 SHA512 
02d85e8f1d2101194a678f7ccf84051390953285a46951d7b327556f8df1a0c416620bd4c7a615e25de438d5d27cfffb69ec5d94eb8379a295dab4c85a96cae4
 WHIRLPOOL 
7b7d595a2e399b361e71769e509a129af42da5ce823f1b55183efb53898ac2ae731593eb13e1ecc2271ea26ee0948ac35bf99fea280eb72a2bb00164b4b29f09

diff --git a/dev-libs/libcss/files/libcss-0.5.0-glibc2.20.patch 
b/dev-libs/libcss/files/libcss-0.5.0-glibc2.20.patch
deleted file mode 100644
index e8c1e7d..000
--- a/dev-libs/libcss/files/libcss-0.5.0-glibc2.20.patch
+++ /dev/null
@@ -1,17 +0,0 @@
 libcss-0.5.0/Makefile
-+++ libcss-0.5.0/Makefile
-@@ -15,13 +15,7 @@
- WARNFLAGS := -Wall -W -Wundef -Wpointer-arith -Wcast-align \
-   -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes \
-   -Wmissing-declarations -Wnested-externs
--# BeOS/Haiku/AmigaOS4 standard library headers create warnings
--ifneq ($(HOST),i586-pc-haiku)
--  ifneq ($(findstring amigaos,$(HOST)),amigaos)
--WARNFLAGS := $(WARNFLAGS) -Werror
--  endif
--endif
--CFLAGS := -D_BSD_SOURCE -I$(CURDIR)/include/ \
-+CFLAGS := -D_DEFAULT_SOURCE -I$(CURDIR)/include/ \
-   -I$(CURDIR)/src $(WARNFLAGS) $(CFLAGS)
- ifneq ($(GCCVER),2)
-   CFLAGS := $(CFLAGS) -std=c99

diff --git a/dev-libs/libcss/libcss-0.5.0-r1.ebuild 
b/dev-libs/libcss/libcss-0.5.0-r1.ebuild
deleted file mode 100644
index 51fa8ff..000
--- a/dev-libs/libcss/libcss-0.5.0-r1.ebuild
+++ /dev/null
@@ -1,24 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-NETSURF_BUILDSYSTEM=buildsystem-1.3
-inherit netsurf
-
-DESCRIPTION="CSS parser and selection engine, written in C"
-HOMEPAGE="http://www.netsurf-browser.org/projects/libcss/";
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~m68k-mint"
-IUSE="test"
-
-RDEPEND=">=dev-libs/libparserutils-0.2.1-r1[static-libs?,${MULTILIB_USEDEP}]
-   >=dev-libs/libwapcaplet-0.2.2-r1[static-libs?,${MULTILIB_USEDEP}]"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig
-   test? ( dev-lang/perl )"
-
-PATCHES=( "${FILESDIR}"/${P}-glibc2.20.patch )



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

2016-05-07 Thread Michael Weber
commit: c76e1e8c3e825acdac90b9e7d65e2d8b780ca3e0
Author: Michael Weber  gentoo  org>
AuthorDate: Sat May  7 21:26:55 2016 +
Commit: Michael Weber  gentoo  org>
CommitDate: Sat May  7 21:44:19 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c76e1e8c

dev-libs/libutf8proc: Version bump.

Package-Manager: portage-2.2.28

 dev-libs/libutf8proc/Manifest|  2 ++
 dev-libs/libutf8proc/libutf8proc-1.3.1_p2.ebuild | 21 +
 2 files changed, 23 insertions(+)

diff --git a/dev-libs/libutf8proc/Manifest b/dev-libs/libutf8proc/Manifest
index 3e6b8ff..828d3b8 100644
--- a/dev-libs/libutf8proc/Manifest
+++ b/dev-libs/libutf8proc/Manifest
@@ -1,2 +1,4 @@
+DIST libutf8proc-1.3.1-2-src.tar.gz 144983 SHA256 
465128ccbc7f8c1c3987d2247bf852fc1daf10bc6c7c25bbfe5df9e1e76fc083 SHA512 
50db8b324c244061835af8e1fff6d116328e5d40dff62477fdb78ba40b07b85612d610cc616ba165d13d0d933379a2d9629167ec4cbe31120518ae3bbcba3cce
 WHIRLPOOL 
6c971513cf05486cf85af5c95efacff7b4c885c5625a3c59649fd0aa8b6db04694d4adab10a61be50b032e5583b2a60afeb4c92bff13ec3b9899a69f909f6cfd
 DIST libutf8proc-1.3.1-src.tar.gz 144963 SHA256 
78e950bfc691182d3b61109b1b4e234399743607231f72a395331a367c2ac675 SHA512 
f9ede5dad19a9d4d45fcf159ff13750f7bf722de49d170a7b86b45582ad20141f5de98fd147311dccd125d85fb44b23c727dc309977aad8e068fe5e489c383ed
 WHIRLPOOL 
40106238546cd466a4a51f069b84cc5bae5aeb9d90751823433bc4e05df05102828ef8da920853778277b0ee59b9799d85b59ba82bf7f57ba940bbcbef71446b
 DIST netsurf-buildsystem-1.4.tar.gz 38067 SHA256 
e66b7f09e91ac478e9f2c5c1aaf1f36ece9df0c3bbb1db910cd4c0461c47f7ad SHA512 
2c804ad7bef70c987e1d393ee4041bffc9797893b4fd513c90a665027205a1f7eee0a7d86ddaf833a6ee18346d6fe69587190c4e6722afc4ed18ce87783c35fc
 WHIRLPOOL 
1f98d45258d3ea5570f272368f72ed6b016434eb1ab399b0efb062dbe9d6257c3175aa51884eaf94a90bbc2c3a4c891a43170b8e93df01c540cbcdecdad13e5c
+DIST netsurf-buildsystem-1.5.tar.gz 38196 SHA256 
dbc6afc639f6987b704e6ff4427668787ee7efba77e1bbf76b614699b5daaf71 SHA512 
02d85e8f1d2101194a678f7ccf84051390953285a46951d7b327556f8df1a0c416620bd4c7a615e25de438d5d27cfffb69ec5d94eb8379a295dab4c85a96cae4
 WHIRLPOOL 
7b7d595a2e399b361e71769e509a129af42da5ce823f1b55183efb53898ac2ae731593eb13e1ecc2271ea26ee0948ac35bf99fea280eb72a2bb00164b4b29f09

diff --git a/dev-libs/libutf8proc/libutf8proc-1.3.1_p2.ebuild 
b/dev-libs/libutf8proc/libutf8proc-1.3.1_p2.ebuild
new file mode 100644
index 000..14b2eaa
--- /dev/null
+++ b/dev-libs/libutf8proc/libutf8proc-1.3.1_p2.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+NETSURF_BUILDSYSTEM=buildsystem-1.5
+inherit netsurf
+
+DESCRIPTION="mapping tool for UTF-8 strings"
+HOMEPAGE="http://www.netsurf-browser.org/";
+SRC_URI="${NETSURF_BUILDSYSTEM_SRC_URI}
+   http://download.netsurf-browser.org/libs/releases/${P/_p/-}-src.tar.gz";
+
+LICENSE="MIT"
+SLOT="0/${PV}"
+KEYWORDS="~amd64 ~arm"
+IUSE=""
+
+RDEPEND=""
+DEPEND="${RDEPEND}"



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

2016-05-07 Thread Michael Weber
commit: dde7e896a1660b3529e051553628ed8fa03e09c8
Author: Michael Weber  gentoo  org>
AuthorDate: Sat May  7 21:17:27 2016 +
Commit: Michael Weber  gentoo  org>
CommitDate: Sat May  7 21:44:06 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dde7e896

media-libs/libnsbmp: Drop old.

Package-Manager: portage-2.2.28

 media-libs/libnsbmp/Manifest|  2 --
 .../libnsbmp/files/libnsbmp-0.1.2-glibc2.20.patch   | 14 --
 media-libs/libnsbmp/libnsbmp-0.1.2-r1.ebuild| 21 -
 3 files changed, 37 deletions(-)

diff --git a/media-libs/libnsbmp/Manifest b/media-libs/libnsbmp/Manifest
index f02d28c..04050a9 100644
--- a/media-libs/libnsbmp/Manifest
+++ b/media-libs/libnsbmp/Manifest
@@ -1,4 +1,2 @@
-DIST libnsbmp-0.1.2-src.tar.gz 202303 SHA256 
969ba1c4f778b6ecee5fd834a6206c97b49885673389260fef1043dfca2968b1 SHA512 
3aa6090a1640ba0d5554d66336c69fc6db8bfeb87b987eef264ec5100bd76d3895f269f5552e87a41f3b126910966118e4a36f7274ee9390882df79aaa204347
 WHIRLPOOL 
e7ed63e2645da3ec4cba5b04d2c39c256447a8404a919391824ba43f8c158433f2abceb6fb1fe6963d1672dbb70cf0c18189c3c23f00d2a356dc15e97ae568ec
 DIST libnsbmp-0.1.3-src.tar.gz 204120 SHA256 
deff0a0497fc011356f901b3f75ee612721133c91b256dda28e540c803ffbb3e SHA512 
7d41aa6ec211057a3f255e23de0549d5aac080942408fd3ece9fd63b028e38d68fe96e93891582e434c7f167b8682a6eaf25242eb1f67e6e881b81b9e91fd829
 WHIRLPOOL 
b4618441fef067de0de016846ad5e4ceb850a3c77e6b472abcf95a4af7e2fa580bb1c8529235db0a07c55d5e897f3d7b3fb4b0065b1457821330b29ba2ebd97d
-DIST netsurf-buildsystem-1.3.tar.gz 37906 SHA256 
10bbe95ba07476208da6047bd3c74685b6e61ba9904975b5d5c9a2c79a84ac79 SHA512 
79ef3e366c4798dbb88021fd05019ba9fe50539b7482bd3d07422f4c0dbf2047b906f39a0b48deebbdf111d84d93a9364d08e5c97f91609363c27641db15e6b5
 WHIRLPOOL 
c8131d0ffb79b208b63bef94606735968584edfff8cb24b4c83cd747c5d65c2811004626840798047ffddf84556ef7d8e23242f60d01a4a046323df3c78b0980
 DIST netsurf-buildsystem-1.4.tar.gz 38067 SHA256 
e66b7f09e91ac478e9f2c5c1aaf1f36ece9df0c3bbb1db910cd4c0461c47f7ad SHA512 
2c804ad7bef70c987e1d393ee4041bffc9797893b4fd513c90a665027205a1f7eee0a7d86ddaf833a6ee18346d6fe69587190c4e6722afc4ed18ce87783c35fc
 WHIRLPOOL 
1f98d45258d3ea5570f272368f72ed6b016434eb1ab399b0efb062dbe9d6257c3175aa51884eaf94a90bbc2c3a4c891a43170b8e93df01c540cbcdecdad13e5c

diff --git a/media-libs/libnsbmp/files/libnsbmp-0.1.2-glibc2.20.patch 
b/media-libs/libnsbmp/files/libnsbmp-0.1.2-glibc2.20.patch
deleted file mode 100644
index 5832857..000
--- a/media-libs/libnsbmp/files/libnsbmp-0.1.2-glibc2.20.patch
+++ /dev/null
@@ -1,14 +0,0 @@
 libnsbmp-0.1.2/Makefile
-+++ libnsbmp-0.1.2/Makefile
-@@ -14,10 +14,7 @@
-   -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes \
-   -Wmissing-declarations -Wnested-externs -pedantic
- # BeOS/Haiku standard library headers create warnings
--ifneq ($(BUILD),i586-pc-haiku)
--  WARNFLAGS := $(WARNFLAGS) -Werror
--endif
--CFLAGS := -D_BSD_SOURCE -I$(CURDIR)/include/ \
-+CFLAGS := -D_DEFAULT_SOURCE -I$(CURDIR)/include/ \
-   -I$(CURDIR)/src $(WARNFLAGS) $(CFLAGS)
- ifneq ($(GCCVER),2)
-   CFLAGS := $(CFLAGS) -std=c99

diff --git a/media-libs/libnsbmp/libnsbmp-0.1.2-r1.ebuild 
b/media-libs/libnsbmp/libnsbmp-0.1.2-r1.ebuild
deleted file mode 100644
index eb71310..000
--- a/media-libs/libnsbmp/libnsbmp-0.1.2-r1.ebuild
+++ /dev/null
@@ -1,21 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-NETSURF_BUILDSYSTEM=buildsystem-1.3
-inherit netsurf
-
-DESCRIPTION="decoding library for BMP and ICO image file formats, written in C"
-HOMEPAGE="http://www.netsurf-browser.org/projects/libnsbmp/";
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~m68k-mint"
-IUSE=""
-
-RDEPEND=""
-DEPEND="virtual/pkgconfig"
-
-PATCHES=( "${FILESDIR}"/${P}-glibc2.20.patch )



[gentoo-commits] repo/gentoo:master commit in: www-client/netsurf/files/, www-client/netsurf/

2016-05-07 Thread Michael Weber
commit: f3fb0f6eb62bdca2de9483c1ad9d503fc881b6fe
Author: Michael Weber  gentoo  org>
AuthorDate: Sat May  7 21:07:13 2016 +
Commit: Michael Weber  gentoo  org>
CommitDate: Sat May  7 21:43:26 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3fb0f6e

www-client/netsurf: drop old.

Package-Manager: portage-2.2.28

 www-client/netsurf/Manifest|   2 -
 .../files/netsurf-3.0-framebuffer-pkgconfig.patch  |  29 
 ...f-3.2-conditionally-include-image-headers.patch |  67 -
 www-client/netsurf/files/netsurf-3.3-CFLAGS.patch  |  85 ---
 www-client/netsurf/netsurf-3.3-r1.ebuild   | 158 -
 5 files changed, 341 deletions(-)

diff --git a/www-client/netsurf/Manifest b/www-client/netsurf/Manifest
index eda672a..c6466df 100644
--- a/www-client/netsurf/Manifest
+++ b/www-client/netsurf/Manifest
@@ -1,5 +1,3 @@
-DIST netsurf-3.3-src.tar.gz 3198799 SHA256 
23f92a0940f577b9605f2e54786fea3521680d32d6c00f2a3db1eae3f29e3686 SHA512 
5796ce007d438309ef809dbb972cafab29efce04a22912bb3318a1cd93f6cca73ddb6ab2f7916c6819f7f63378a27180b380759611a3c88bf00d705a1dd9c5a6
 WHIRLPOOL 
fb5793a7502c27a7adf6cfdcaa029be19e7d750039f7a901b9004cb2a6ea390cd76d1e3bec0598d9986ea4c0203bbb6dabbe8d71955c30becb827753d20f5156
 DIST netsurf-3.4-src.tar.gz 4133201 SHA256 
1648f437994fc18090237430f30d645ff06bab0768ae973575f9391d07613bf6 SHA512 
d9f95ff88d572a36e906bdb25dddbb51aa683a2105ca9eff53ea61c154a34a888420811f8a2b58a1b5a10f77d8aa914e3201b937934243527edb8a897f7bd60e
 WHIRLPOOL 
1c8e3d6ac8a1ecd7bfa2554d56bd6e6cbd6c025112110f596a1db551d3b18029ee2761ddb288cdbc0cd517a90a54081d9d8aca3399339160addb2aedce14a55b
-DIST netsurf-buildsystem-1.3.tar.gz 37906 SHA256 
10bbe95ba07476208da6047bd3c74685b6e61ba9904975b5d5c9a2c79a84ac79 SHA512 
79ef3e366c4798dbb88021fd05019ba9fe50539b7482bd3d07422f4c0dbf2047b906f39a0b48deebbdf111d84d93a9364d08e5c97f91609363c27641db15e6b5
 WHIRLPOOL 
c8131d0ffb79b208b63bef94606735968584edfff8cb24b4c83cd747c5d65c2811004626840798047ffddf84556ef7d8e23242f60d01a4a046323df3c78b0980
 DIST netsurf-buildsystem-1.5.tar.gz 38196 SHA256 
dbc6afc639f6987b704e6ff4427668787ee7efba77e1bbf76b614699b5daaf71 SHA512 
02d85e8f1d2101194a678f7ccf84051390953285a46951d7b327556f8df1a0c416620bd4c7a615e25de438d5d27cfffb69ec5d94eb8379a295dab4c85a96cae4
 WHIRLPOOL 
7b7d595a2e399b361e71769e509a129af42da5ce823f1b55183efb53898ac2ae731593eb13e1ecc2271ea26ee0948ac35bf99fea280eb72a2bb00164b4b29f09
 DIST netsurf-fb.modes-example.gz 4586 SHA256 
df1514790be120f27bd23dfdca71c24112679d45d3cbd3916f9231ec5e2596bb SHA512 
753a707dc428212803dd64250bb723a498fdc1c328fdac4df38be533eab3af45f727cdc6b7ced3faaa0e82db182c4eab140b8e81b0d3cfe2152252b89e6d2981
 WHIRLPOOL 
5a91c32a712b746c993d2fa1d47625f16241e845d556b8113ab957eda7385ac5bdde5f78b0de2dad4df544c7d7c13d8145ebb9d81272af9a3759ad4e307c3767

diff --git a/www-client/netsurf/files/netsurf-3.0-framebuffer-pkgconfig.patch 
b/www-client/netsurf/files/netsurf-3.0-framebuffer-pkgconfig.patch
deleted file mode 100644
index 50c9f8b..000
--- a/www-client/netsurf/files/netsurf-3.0-framebuffer-pkgconfig.patch
+++ /dev/null
@@ -1,29 +0,0 @@
 netsurf-3.0/framebuffer/Makefile.target
-+++ netsurf-3.0/framebuffer/Makefile.target
-@@ -13,12 +13,16 @@
- 
- # define additional CFLAGS and LDFLAGS requirements for pkg-configed libs here
- NETSURF_FEATURE_RSVG_CFLAGS := -DWITH_RSVG
-+NETSURF_FEATURE_NSSVG_CFLAGS := -DWITH_NS_SVG
- NETSURF_FEATURE_ROSPRITE_CFLAGS := -DWITH_NSSPRITE
- NETSURF_FEATURE_HUBBUB_CFLAGS := -DWITH_HUBBUB
- NETSURF_FEATURE_BMP_CFLAGS := -DWITH_BMP
- NETSURF_FEATURE_GIF_CFLAGS := -DWITH_GIF
-+NETSURF_FEATURE_PNG_CFLAGS := -DWITH_PNG
-+NETSURF_FEATURE_WEBP_CFLAGS := -DWITH_WEBP
- NETSURF_FEATURE_JS_CFLAGS := -DWITH_JS -DJS_HAS_FILE_OBJECT=0
- NETSURF_FEATURE_MOZJS_CFLAGS := -DWITH_MOZJS -DJS_HAS_FILE_OBJECT=0
-+NETSURF_FEATURE_VIDEO_CFLAGS := -DWITH_VIDEO
- 
- CFLAGS += -Dnsframebuffer 
- 
-@@ -41,6 +45,9 @@
- $(eval $(call pkg_config_find_and_add_enabled,ROSPRITE,librosprite,Sprite))
- $(eval $(call pkg_config_find_and_add_enabled,BMP,libnsbmp,BMP))
- $(eval $(call pkg_config_find_and_add_enabled,GIF,libnsgif,GIF))
-+$(eval $(call pkg_config_find_and_add_enabled,RSVG,librsvg-2.0,SVG))
-+$(eval $(call pkg_config_find_and_add_enabled,NSSVG,libsvgtiny,SVG))
-+$(eval $(call feature_enabled,WEBP,-DWITH_WEBP,-lwebp,WebP (libwebp)))
- $(eval $(call pkg_config_find_and_add_enabled,MOZJS,mozjs185,JavaScript))
- $(eval $(call pkg_config_find_and_add_enabled,JS,mozilla-js,JavaScript))
- 

diff --git 
a/www-client/netsurf/files/netsurf-3.2-conditionally-include-image-headers.patch
 
b/www-client/netsurf/files/netsurf-3.2-conditionally-include-image-headers.patch
deleted file mode 100644
index 9c73c23..000
--- 
a/www-client/netsurf/files/netsurf-3.2-conditionally-include-image-headers.patch
+++ /dev/null
@@ -1,67 +0,0 @@
 netsurf-3.2/image/image.c
-+++ netsurf-3.2/image/image.c
-@@ -28,15 +28,42 @@
- #include "content/con

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

2016-05-07 Thread Michael Weber
commit: 39b1a1d176719a795e22b8a962bea9dc822a2d3a
Author: Michael Weber  gentoo  org>
AuthorDate: Sat May  7 21:18:27 2016 +
Commit: Michael Weber  gentoo  org>
CommitDate: Sat May  7 21:44:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39b1a1d1

media-libs/libnsgif: Drop old.

Package-Manager: portage-2.2.28

 media-libs/libnsgif/Manifest|  2 --
 .../libnsgif/files/libnsgif-0.1.2-glibc2.20.patch   | 15 ---
 media-libs/libnsgif/libnsgif-0.1.2-r1.ebuild| 21 -
 3 files changed, 38 deletions(-)

diff --git a/media-libs/libnsgif/Manifest b/media-libs/libnsgif/Manifest
index 65d0043..91ac403 100644
--- a/media-libs/libnsgif/Manifest
+++ b/media-libs/libnsgif/Manifest
@@ -1,4 +1,2 @@
-DIST libnsgif-0.1.2-src.tar.gz 202615 SHA256 
dd6948af5c054224489beaa4b4cc13c2c4f695d5bdee7e58ec2370c53cd9faa5 SHA512 
0444f762f82e34513a68c3648e7bccc2fabe062e3c36cff21289998fc38a44bfd23ca17a6f3ea639c39465dd595975b6bdd3ffde08fff99f17eee8825c44b2e3
 WHIRLPOOL 
50c1c7e7ec97cd5d04809bb3f6ab10958914a3787b0e5e00e8fcca4dc6ba16216aebf408c9837f747227de8316d08e3e783c8c22ad4cc1f624bb9fffbe44f7a1
 DIST libnsgif-0.1.3-src.tar.gz 202160 SHA256 
d3d2c9c008047eab41fc0a4ce7c280456c55c479d191e1968f843b005f219fa8 SHA512 
ded0067268eb74b77cbd333b3d8b5f571ddeccbc778c83a6e99b86e0366078a31da95ee9dc1d9e94544f43cdc2e33ca089ca088ebd0129b6790dd20d37a2
 WHIRLPOOL 
9db8dbc238a2c7b85bdd38dfa27268e0b763139442a0e35f5e6ae5f9c251a4bba6355a2533ac1d9c52e2d49fd3d4f1632e215da143123e2e9839e1323446d9b4
-DIST netsurf-buildsystem-1.3.tar.gz 37906 SHA256 
10bbe95ba07476208da6047bd3c74685b6e61ba9904975b5d5c9a2c79a84ac79 SHA512 
79ef3e366c4798dbb88021fd05019ba9fe50539b7482bd3d07422f4c0dbf2047b906f39a0b48deebbdf111d84d93a9364d08e5c97f91609363c27641db15e6b5
 WHIRLPOOL 
c8131d0ffb79b208b63bef94606735968584edfff8cb24b4c83cd747c5d65c2811004626840798047ffddf84556ef7d8e23242f60d01a4a046323df3c78b0980
 DIST netsurf-buildsystem-1.4.tar.gz 38067 SHA256 
e66b7f09e91ac478e9f2c5c1aaf1f36ece9df0c3bbb1db910cd4c0461c47f7ad SHA512 
2c804ad7bef70c987e1d393ee4041bffc9797893b4fd513c90a665027205a1f7eee0a7d86ddaf833a6ee18346d6fe69587190c4e6722afc4ed18ce87783c35fc
 WHIRLPOOL 
1f98d45258d3ea5570f272368f72ed6b016434eb1ab399b0efb062dbe9d6257c3175aa51884eaf94a90bbc2c3a4c891a43170b8e93df01c540cbcdecdad13e5c

diff --git a/media-libs/libnsgif/files/libnsgif-0.1.2-glibc2.20.patch 
b/media-libs/libnsgif/files/libnsgif-0.1.2-glibc2.20.patch
deleted file mode 100644
index 47e5652..000
--- a/media-libs/libnsgif/files/libnsgif-0.1.2-glibc2.20.patch
+++ /dev/null
@@ -1,15 +0,0 @@
 libnsgif-0.1.2/Makefile
-+++ libnsgif-0.1.2/Makefile
-@@ -13,11 +13,7 @@
- WARNFLAGS := -Wall -W -Wundef -Wpointer-arith -Wcast-align \
-   -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes \
-   -Wmissing-declarations -Wnested-externs -pedantic
--# BeOS/Haiku standard library headers create warnings
--ifneq ($(BUILD),i586-pc-haiku)
--  WARNFLAGS := $(WARNFLAGS) -Werror
--endif
--CFLAGS := -D_BSD_SOURCE -I$(CURDIR)/include/ \
-+CFLAGS := -D_DEFAULT_SOURCE -I$(CURDIR)/include/ \
-   -I$(CURDIR)/src $(WARNFLAGS) $(CFLAGS)
- ifneq ($(GCCVER),2)
-   CFLAGS := $(CFLAGS) -std=c99

diff --git a/media-libs/libnsgif/libnsgif-0.1.2-r1.ebuild 
b/media-libs/libnsgif/libnsgif-0.1.2-r1.ebuild
deleted file mode 100644
index 5492cd8..000
--- a/media-libs/libnsgif/libnsgif-0.1.2-r1.ebuild
+++ /dev/null
@@ -1,21 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-NETSURF_BUILDSYSTEM=buildsystem-1.3
-inherit netsurf
-
-DESCRIPTION="decoding library for the GIF image file format, written in C"
-HOMEPAGE="http://www.netsurf-browser.org/projects/libnsgif/";
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~m68k-mint"
-IUSE=""
-
-RDEPEND=""
-DEPEND="virtual/pkgconfig"
-
-PATCHES=( "${FILESDIR}"/${P}-glibc2.20.patch )



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

2016-05-07 Thread Michael Weber
commit: 9af46930103eb5909dea42cbc94c268eda22a427
Author: Michael Weber  gentoo  org>
AuthorDate: Sat May  7 21:16:24 2016 +
Commit: Michael Weber  gentoo  org>
CommitDate: Sat May  7 21:44:02 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9af46930

dev-libs/libnsfb: Drop old.

Package-Manager: portage-2.2.28

 dev-libs/libnsfb/Manifest  |  2 --
 .../libnsfb/files/libnsfb-0.1.3-glibc2.20.patch| 19 --
 dev-libs/libnsfb/libnsfb-0.1.3-r1.ebuild   | 41 --
 3 files changed, 62 deletions(-)

diff --git a/dev-libs/libnsfb/Manifest b/dev-libs/libnsfb/Manifest
index 8f71b3a..50704e9 100644
--- a/dev-libs/libnsfb/Manifest
+++ b/dev-libs/libnsfb/Manifest
@@ -1,4 +1,2 @@
-DIST libnsfb-0.1.3-src.tar.gz 80899 SHA256 
52752d0dcc251b301b9cff2eaae75ee3ad56adaf90675857bbad39254de81e3e SHA512 
02bbce8f026930418d9908775ded49dda9d7facdfaf8b633d021e4d101d96d6b5f2703242e17e96a3ffe3cf2eb8b6ce11cfc4b605ec612fb59586e0590d1441d
 WHIRLPOOL 
3033412582f3fcee75d941461361ed8b8f17101e6fe4b8b9a11a48fa7666c0c76ced629c3ac9dff038d9e6ff8f7d99092684c66359b340a04a4c2a8d3b702d5a
 DIST libnsfb-0.1.4-src.tar.gz 81166 SHA256 
f457f2a77551b2f9dbe0e51f509e611f0b40b5c2b25b9b1453ebbfe42147ce9c SHA512 
bbb193e2e6b8cf774be1afae0d389960e2443c720d89753c7dfec87f30a9039f293601c0778a418e6ceb61146fcb9cf8f85f68da9c6c4b1d5001b279df5849e3
 WHIRLPOOL 
6315107ec968408ce3a3e7607406f2d18a0daecd083bde3ab199b465b5ae13595e434864516d77aafc5eaf8783bdb5fefac60127eb8a47445521b95da926e690
-DIST netsurf-buildsystem-1.3.tar.gz 37906 SHA256 
10bbe95ba07476208da6047bd3c74685b6e61ba9904975b5d5c9a2c79a84ac79 SHA512 
79ef3e366c4798dbb88021fd05019ba9fe50539b7482bd3d07422f4c0dbf2047b906f39a0b48deebbdf111d84d93a9364d08e5c97f91609363c27641db15e6b5
 WHIRLPOOL 
c8131d0ffb79b208b63bef94606735968584edfff8cb24b4c83cd747c5d65c2811004626840798047ffddf84556ef7d8e23242f60d01a4a046323df3c78b0980
 DIST netsurf-buildsystem-1.4.tar.gz 38067 SHA256 
e66b7f09e91ac478e9f2c5c1aaf1f36ece9df0c3bbb1db910cd4c0461c47f7ad SHA512 
2c804ad7bef70c987e1d393ee4041bffc9797893b4fd513c90a665027205a1f7eee0a7d86ddaf833a6ee18346d6fe69587190c4e6722afc4ed18ce87783c35fc
 WHIRLPOOL 
1f98d45258d3ea5570f272368f72ed6b016434eb1ab399b0efb062dbe9d6257c3175aa51884eaf94a90bbc2c3a4c891a43170b8e93df01c540cbcdecdad13e5c

diff --git a/dev-libs/libnsfb/files/libnsfb-0.1.3-glibc2.20.patch 
b/dev-libs/libnsfb/files/libnsfb-0.1.3-glibc2.20.patch
deleted file mode 100644
index 8d6ba88..000
--- a/dev-libs/libnsfb/files/libnsfb-0.1.3-glibc2.20.patch
+++ /dev/null
@@ -1,19 +0,0 @@
 libnsfb-0.1.3/Makefile
-+++ libnsfb-0.1.3/Makefile
-@@ -15,13 +15,13 @@
- # Toolchain flags
- WARNFLAGS := -Wall -Wextra -Wundef -Wpointer-arith -Wcast-align \
-   -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes \
--  -Wmissing-declarations -Wnested-externs -Werror
-+  -Wmissing-declarations -Wnested-externs
- 
- # would like these flags but gcc earlier than 4.4 fail
- #-pedantic -Wno-overlength-strings # For nsglobe.c
- 
--CFLAGS := -g -std=c99 -D_BSD_SOURCE -D_POSIX_C_SOURCE=200112L \
--  -I$(CURDIR)/include/ -I$(CURDIR)/src $(WARNFLAGS) $(CFLAGS) -Wno-error
-+CFLAGS := -std=c99 -D_DEFAULT_SOURCE -D_POSIX_C_SOURCE=200112L \
-+  -I$(CURDIR)/include/ -I$(CURDIR)/src $(WARNFLAGS) $(CFLAGS)
- 
- NSFB_XCB_PKG_NAMES := xcb xcb-icccm xcb-image xcb-keysyms xcb-atom
- 

diff --git a/dev-libs/libnsfb/libnsfb-0.1.3-r1.ebuild 
b/dev-libs/libnsfb/libnsfb-0.1.3-r1.ebuild
deleted file mode 100644
index 7415774..000
--- a/dev-libs/libnsfb/libnsfb-0.1.3-r1.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-NETSURF_BUILDSYSTEM=buildsystem-1.3
-inherit netsurf
-
-DESCRIPTION="framebuffer abstraction library, written in C"
-HOMEPAGE="http://www.netsurf-browser.org/projects/libnsfb/";
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm"
-IUSE="sdl test vnc wayland xcb"
-
-RDEPEND="sdl? ( >=media-libs/libsdl-1.2.15-r4[static-libs?,${MULTILIB_USEDEP}] 
)
-   vnc? ( 
>=net-libs/libvncserver-0.9.9-r2[static-libs?,${MULTILIB_USEDEP}] )
-   wayland? ( >=dev-libs/wayland-1.0.6[static-libs?,${MULTILIB_USEDEP}] )
-   xcb? ( >=x11-libs/libxcb-1.9.1[static-libs?,${MULTILIB_USEDEP}]
-   >=x11-libs/xcb-util-0.3.9-r1[static-libs?,${MULTILIB_USEDEP}]
-   
>=x11-libs/xcb-util-image-0.3.9-r1[static-libs?,${MULTILIB_USEDEP}]
-   
>=x11-libs/xcb-util-keysyms-0.3.9-r1[static-libs?,${MULTILIB_USEDEP}] )"
-DEPEND="${RDEPEND}"
-
-PATCHES=( "${FILESDIR}"/${PN}-0.1.0-autodetect.patch
-   "${FILESDIR}"/${P}-glibc2.20.patch )
-
-DOCS=( usage )
-
-src_configure() {
-   netsurf_src_configure
-
-   netsurf_makeconf+=(
-   WITH_VNC=$(usex vnc)
-   WITH_SDL=$(usex sdl)
-   WITH_XCB=$(usex xcb)
-   WITH_WLD=$(usex wayland)
-   )
-}



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

2016-05-07 Thread Michael Weber
commit: af6a3f1e7bdc315de38a79285e52dddb1c02f6f4
Author: Michael Weber  gentoo  org>
AuthorDate: Sat May  7 21:15:30 2016 +
Commit: Michael Weber  gentoo  org>
CommitDate: Sat May  7 21:43:56 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af6a3f1e

dev-libs/nsgenbind: Drop old.

Package-Manager: portage-2.2.28

 dev-libs/nsgenbind/Manifest  |  2 --
 .../nsgenbind/files/nsgenbind-0.1.2-glibc2.20.patch  | 17 -
 dev-libs/nsgenbind/nsgenbind-0.1.2-r1.ebuild | 20 
 3 files changed, 39 deletions(-)

diff --git a/dev-libs/nsgenbind/Manifest b/dev-libs/nsgenbind/Manifest
index eb7b193..2ce8892 100644
--- a/dev-libs/nsgenbind/Manifest
+++ b/dev-libs/nsgenbind/Manifest
@@ -1,4 +1,2 @@
-DIST netsurf-buildsystem-1.3.tar.gz 37906 SHA256 
10bbe95ba07476208da6047bd3c74685b6e61ba9904975b5d5c9a2c79a84ac79 SHA512 
79ef3e366c4798dbb88021fd05019ba9fe50539b7482bd3d07422f4c0dbf2047b906f39a0b48deebbdf111d84d93a9364d08e5c97f91609363c27641db15e6b5
 WHIRLPOOL 
c8131d0ffb79b208b63bef94606735968584edfff8cb24b4c83cd747c5d65c2811004626840798047ffddf84556ef7d8e23242f60d01a4a046323df3c78b0980
 DIST netsurf-buildsystem-1.5.tar.gz 38196 SHA256 
dbc6afc639f6987b704e6ff4427668787ee7efba77e1bbf76b614699b5daaf71 SHA512 
02d85e8f1d2101194a678f7ccf84051390953285a46951d7b327556f8df1a0c416620bd4c7a615e25de438d5d27cfffb69ec5d94eb8379a295dab4c85a96cae4
 WHIRLPOOL 
7b7d595a2e399b361e71769e509a129af42da5ce823f1b55183efb53898ac2ae731593eb13e1ecc2271ea26ee0948ac35bf99fea280eb72a2bb00164b4b29f09
-DIST nsgenbind-0.1.2-src.tar.gz 51159 SHA256 
94a87e9a223791693724e929cc7b13e334d4baaf73f7d0a91fdf938c9a260a9a SHA512 
90eb847d00816511e200ef97d001a714d6aab2997592def61c1fd078ee53d62d4f98ab621ea4d0716944ac9ddd3c6a012a6f9c3e01043313bf9817410323f533
 WHIRLPOOL 
139bbb6278dbd000b4ade5171696810d71020cd5b9c51cece07c3eb210539cf2eecc805796494fe056ceb153b76e9d33611049dbff51594aeb6d8518bcb1ad4d
 DIST nsgenbind-0.3-src.tar.gz 97492 SHA256 
ef21a08461165014c499aa3d38f5909a88b4528f5db8492bf7bcbfe3e957ba9b SHA512 
b085a6f28e0bceea667a142562336e9f4e6a371710c518c769a9c5f263d7884a20a9515257f794c65e79634e5c9607448fca061de715ebc31f7631acff6c08c7
 WHIRLPOOL 
2c8856967bc9dc3a524b8c6ac93e54e36679a510dd3b4f0a990ed6dde7e33f8ab6a6fd98b60081780a3a799a64f2d612dcf0b1692c7bedbd7e30fe5632c6f835

diff --git a/dev-libs/nsgenbind/files/nsgenbind-0.1.2-glibc2.20.patch 
b/dev-libs/nsgenbind/files/nsgenbind-0.1.2-glibc2.20.patch
deleted file mode 100644
index c9fce08..000
--- a/dev-libs/nsgenbind/files/nsgenbind-0.1.2-glibc2.20.patch
+++ /dev/null
@@ -1,17 +0,0 @@
 nsgenbind-0.1.2/Makefile
-+++ nsgenbind-0.1.2/Makefile
-@@ -16,13 +16,7 @@
- WARNFLAGS := -Wall -W -Wundef -Wpointer-arith -Wcast-align \
-   -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes \
-   -Wmissing-declarations -Wnested-externs
--# BeOS/Haiku/AmigaOS have standard library errors that issue warnings.
--ifneq ($(BUILD),i586-pc-haiku)
--  ifneq ($(findstring amigaos,$(BUILD)),amigaos)
--#WARNFLAGS := $(WARNFLAGS) -Werror
--  endif
--endif
--CFLAGS := -D_BSD_SOURCE -D_POSIX_C_SOURCE=200809L -I$(CURDIR)/include/ \
-+CFLAGS := -D_DEFAULT_SOURCE -D_POSIX_C_SOURCE=200809L -I$(CURDIR)/include/ \
-   -I$(CURDIR)/src $(WARNFLAGS) $(CFLAGS)
- ifneq ($(GCCVER),2)
-   CFLAGS := $(CFLAGS) -std=c99

diff --git a/dev-libs/nsgenbind/nsgenbind-0.1.2-r1.ebuild 
b/dev-libs/nsgenbind/nsgenbind-0.1.2-r1.ebuild
deleted file mode 100644
index 47d0143..000
--- a/dev-libs/nsgenbind/nsgenbind-0.1.2-r1.ebuild
+++ /dev/null
@@ -1,20 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-NETSURF_COMPONENT_TYPE=binary
-NETSURF_BUILDSYSTEM=buildsystem-1.3
-inherit netsurf
-
-DESCRIPTION="generate javascript to dom bindings from w3c webidl files"
-HOMEPAGE="http://www.netsurf-browser.org/";
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm"
-IUSE=""
-
-DEPEND="virtual/yacc"
-
-PATCHES=( "${FILESDIR}"/${P}-glibc2.20.patch )



[gentoo-commits] repo/gentoo:master commit in: net-libs/libdom/, net-libs/libdom/files/

2016-05-07 Thread Michael Weber
commit: c3c7aa46b594973a96d066d47a4acc1762c9c991
Author: Michael Weber  gentoo  org>
AuthorDate: Sat May  7 21:13:01 2016 +
Commit: Michael Weber  gentoo  org>
CommitDate: Sat May  7 21:43:46 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3c7aa46

net-libs/libdom: Drop old.

Package-Manager: portage-2.2.28

 net-libs/libdom/Manifest   |  2 --
 net-libs/libdom/files/libdom-0.1.2-glibc2.20.patch | 19 --
 net-libs/libdom/libdom-0.1.2-r1.ebuild | 42 --
 3 files changed, 63 deletions(-)

diff --git a/net-libs/libdom/Manifest b/net-libs/libdom/Manifest
index 79f38d4..671ad2e 100644
--- a/net-libs/libdom/Manifest
+++ b/net-libs/libdom/Manifest
@@ -1,4 +1,2 @@
-DIST libdom-0.1.2-src.tar.gz 838332 SHA256 
9cd3cf4487735c3cc5d63c5fdee05384eee65318476105646767b34d6e07e9e8 SHA512 
f4b7ba24e470cb02c89314dadaefc44c86710e47963b3a845bd9ef284d52480ee758e67391fa2b24758228f67d15887dec9b12b1a2f72e567e7f9a83a12daf99
 WHIRLPOOL 
b55c7677b86cdb84340bb22dcd18b1e11b1ddbefaf768b9eca742b1028fe62f8939bce3c000a6e11b75764bf153adf0ebef8fa2717f5b5f6f3da8b8426f00f03
 DIST libdom-0.3.0-src.tar.gz 868852 SHA256 
8a6c3eb8fcd9beb2e0df660caeb043dfff86632a00b8997cbcbef4a7f0c266ce SHA512 
4c06a838782f211d7239b3841640c8a6d3abeaee5dabe1b619fd6b776085f5b3c748398bc532197a05ba4cca3526872a6e51f1d7df95ee5982ca22ee756c8e16
 WHIRLPOOL 
8191d0bb07d481b16f9896c920f86b61067d31b3c7953547c727b0e4a85d9d1fc8cac5ab64e736f0256f7226a8ac32078884fdcb171c9efc553d0535f64d4ad7
-DIST netsurf-buildsystem-1.3.tar.gz 37906 SHA256 
10bbe95ba07476208da6047bd3c74685b6e61ba9904975b5d5c9a2c79a84ac79 SHA512 
79ef3e366c4798dbb88021fd05019ba9fe50539b7482bd3d07422f4c0dbf2047b906f39a0b48deebbdf111d84d93a9364d08e5c97f91609363c27641db15e6b5
 WHIRLPOOL 
c8131d0ffb79b208b63bef94606735968584edfff8cb24b4c83cd747c5d65c2811004626840798047ffddf84556ef7d8e23242f60d01a4a046323df3c78b0980
 DIST netsurf-buildsystem-1.5.tar.gz 38196 SHA256 
dbc6afc639f6987b704e6ff4427668787ee7efba77e1bbf76b614699b5daaf71 SHA512 
02d85e8f1d2101194a678f7ccf84051390953285a46951d7b327556f8df1a0c416620bd4c7a615e25de438d5d27cfffb69ec5d94eb8379a295dab4c85a96cae4
 WHIRLPOOL 
7b7d595a2e399b361e71769e509a129af42da5ce823f1b55183efb53898ac2ae731593eb13e1ecc2271ea26ee0948ac35bf99fea280eb72a2bb00164b4b29f09

diff --git a/net-libs/libdom/files/libdom-0.1.2-glibc2.20.patch 
b/net-libs/libdom/files/libdom-0.1.2-glibc2.20.patch
deleted file mode 100644
index bc843d1..000
--- a/net-libs/libdom/files/libdom-0.1.2-glibc2.20.patch
+++ /dev/null
@@ -1,19 +0,0 @@
 libdom-0.1.2/Makefile
-+++ libdom-0.1.2/Makefile
-@@ -15,15 +15,11 @@
- WARNFLAGS := -Wall -W -Wundef -Wpointer-arith -Wcast-align \
-   -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes \
-   -Wmissing-declarations -Wnested-externs
--# BeOS/Haiku standard library headers generate warnings
--ifneq ($(HOST),i586-pc-haiku)
--  WARNFLAGS := $(WARNFLAGS) -Werror
--endif
- # AmigaOS needs this to avoid warnings
- ifeq ($(findstring amigaos,$(HOST)),amigaos)
-   CFLAGS := -U__STRICT_ANSI__ $(CFLAGS)
- endif
--CFLAGS := -D_BSD_SOURCE -I$(CURDIR)/include/ \
-+CFLAGS := -D_DEFAULT_SOURCE -I$(CURDIR)/include/ \
-   -I$(CURDIR)/src -I$(CURDIR)/binding $(WARNFLAGS) $(CFLAGS)
- # Some gcc2 versions choke on -std=c99, and it doesn't know about it anyway
- ifneq ($(GCCVER),2)

diff --git a/net-libs/libdom/libdom-0.1.2-r1.ebuild 
b/net-libs/libdom/libdom-0.1.2-r1.ebuild
deleted file mode 100644
index eb2b219..000
--- a/net-libs/libdom/libdom-0.1.2-r1.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-NETSURF_BUILDSYSTEM=buildsystem-1.3
-inherit netsurf
-
-DESCRIPTION="implementation of the W3C DOM, written in C"
-HOMEPAGE="http://www.netsurf-browser.org/projects/libdom/";
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~m68k-mint"
-IUSE="expat test xml"
-
-RDEPEND=">=dev-libs/libparserutils-0.2.1-r1[static-libs?,${MULTILIB_USEDEP}]
-   >=dev-libs/libwapcaplet-0.2.2-r1[static-libs?,${MULTILIB_USEDEP}]
-   >=net-libs/libhubbub-0.3.1-r1[static-libs?,${MULTILIB_USEDEP}]
-   xml? (
-   expat? ( 
>=dev-libs/expat-2.1.0-r3[static-libs?,${MULTILIB_USEDEP}] )
-   !expat? ( 
>=dev-libs/libxml2-2.9.1-r4[static-libs?,${MULTILIB_USEDEP}] )
-   )"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig
-   test? ( dev-perl/XML-XPath
-   dev-perl/libxml-perl
-   dev-perl/Switch )"
-
-REQUIRED_USE="test? ( xml )"
-
-PATCHES=( "${FILESDIR}"/${P}-glibc2.20.patch )
-
-src_configure() {
-   netsurf_src_configure
-
-   netsurf_makeconf+=(
-   WITH_EXPAT_BINDING=$(usex xml $(usex expat yes no) no)
-   WITH_LIBXML_BINDING=$(usex xml $(usex expat no yes) no)
-   )
-}



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

2016-05-07 Thread Michael Weber
commit: 77d7ea16a70ff70a7bb8864be6546efbe5bfaddb
Author: Michael Weber  gentoo  org>
AuthorDate: Sat May  7 21:27:44 2016 +
Commit: Michael Weber  gentoo  org>
CommitDate: Sat May  7 21:44:25 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77d7ea16

dev-libs/libnsutils: Version bump.

Package-Manager: portage-2.2.28

 dev-libs/libnsutils/Manifest   |  2 --
 dev-libs/libnsutils/libnsutils-0.0.1-r1.ebuild | 19 ---
 2 files changed, 21 deletions(-)

diff --git a/dev-libs/libnsutils/Manifest b/dev-libs/libnsutils/Manifest
index dadd1a5..d2df6f1 100644
--- a/dev-libs/libnsutils/Manifest
+++ b/dev-libs/libnsutils/Manifest
@@ -1,4 +1,2 @@
-DIST libnsutils-0.0.1-src.tar.gz 5932 SHA256 
9ad6b921bceed2c0d44ca6ff36fa76841cc6533f8ed7ccb0a941fd9a78731afd SHA512 
00685fe5924905c153b681900e7bf77e55c189ae0c3083baca282cb91e5b5b8fc36861bf1967b562a9a98024540fc2bc2ebbf9795d84133e2784adfdd033c497
 WHIRLPOOL 
7fade98e74ed70b7c5ec7b558df7372ce67e5a9a8a6eff57be3f6289877aaecb42f344b17c5dd03939568e249354b919225b0463aaed82c219f151f0f5eb5e10
 DIST libnsutils-0.0.2-src.tar.gz 6770 SHA256 
fed321149f8f16ab2fd69f58b2692a1aea5a19934c1de92d38127a045aede40e SHA512 
92150b9021f453e34798279cc8541cb7f14986b1da9b92246df0ee1162c643b23a48da54a0eb44e76137988ae780b34b755d17f90426e5bb5381520fba9d4a11
 WHIRLPOOL 
356713f4b47441c3a0bd48791990666d87e784ae4cdb2d8f654b26628e9169cf3f5785db8692536658d7a25cdca5e879ecb0e6525f6b427c4c010d836bf8c211
-DIST netsurf-buildsystem-1.3.tar.gz 37906 SHA256 
10bbe95ba07476208da6047bd3c74685b6e61ba9904975b5d5c9a2c79a84ac79 SHA512 
79ef3e366c4798dbb88021fd05019ba9fe50539b7482bd3d07422f4c0dbf2047b906f39a0b48deebbdf111d84d93a9364d08e5c97f91609363c27641db15e6b5
 WHIRLPOOL 
c8131d0ffb79b208b63bef94606735968584edfff8cb24b4c83cd747c5d65c2811004626840798047ffddf84556ef7d8e23242f60d01a4a046323df3c78b0980
 DIST netsurf-buildsystem-1.5.tar.gz 38196 SHA256 
dbc6afc639f6987b704e6ff4427668787ee7efba77e1bbf76b614699b5daaf71 SHA512 
02d85e8f1d2101194a678f7ccf84051390953285a46951d7b327556f8df1a0c416620bd4c7a615e25de438d5d27cfffb69ec5d94eb8379a295dab4c85a96cae4
 WHIRLPOOL 
7b7d595a2e399b361e71769e509a129af42da5ce823f1b55183efb53898ac2ae731593eb13e1ecc2271ea26ee0948ac35bf99fea280eb72a2bb00164b4b29f09

diff --git a/dev-libs/libnsutils/libnsutils-0.0.1-r1.ebuild 
b/dev-libs/libnsutils/libnsutils-0.0.1-r1.ebuild
deleted file mode 100644
index 3c63ecf..000
--- a/dev-libs/libnsutils/libnsutils-0.0.1-r1.ebuild
+++ /dev/null
@@ -1,19 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-NETSURF_BUILDSYSTEM=buildsystem-1.3
-inherit netsurf
-
-DESCRIPTION="base64 and time library, written in C"
-HOMEPAGE="http://www.netsurf-browser.org/";
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm"
-IUSE=""
-
-RDEPEND=""
-DEPEND="${RDEPEND}"



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

2016-05-07 Thread Michael Weber
commit: 2f035217ee8f7d63915144a85e60a52ee6832911
Author: Michael Weber  gentoo  org>
AuthorDate: Sat May  7 21:28:36 2016 +
Commit: Michael Weber  gentoo  org>
CommitDate: Sat May  7 21:44:30 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f035217

media-libs/librosprite: Drop old.

Package-Manager: portage-2.2.28

 media-libs/librosprite/Manifest|  2 --
 .../librosprite/files/librosprite-0.1.1-Werror.patch   | 14 --
 media-libs/librosprite/librosprite-0.1.1.ebuild| 18 --
 3 files changed, 34 deletions(-)

diff --git a/media-libs/librosprite/Manifest b/media-libs/librosprite/Manifest
index 978e1e0..bfb3190 100644
--- a/media-libs/librosprite/Manifest
+++ b/media-libs/librosprite/Manifest
@@ -1,4 +1,2 @@
-DIST librosprite-0.1.1-src.tar.gz 31143 SHA256 
d06d151d0e609cb97f272958e927e6693e2b1c57dbf957b834428e5716934096 SHA512 
71379e0a7a9ad12eb28e2823ab0fd65274ea3ff2413402d978f9f2a26d6ab258383d5ad3d83434670baddad0288b48d3339f295d5c5c2959ae58472aeac35c56
 WHIRLPOOL 
c99a28fb90535f43bf823e945dbf47a969201c04c3b16475576f8a3af9093b5aca1a6deb2a4b4241ae39a6563875d195497c55ec7bd2f8783fbad8b056e2150e
 DIST librosprite-0.1.2-src.tar.gz 31146 SHA256 
9d68833ff48cb9f5ad106106607887c3e70035e60417617a6e23d362b4f5eec4 SHA512 
7b668ba618e78604ff6137b202feeb5e191aed11e0781e10cee4d70a218d894ec5d95ac3a2bd0bf3517d0bc1096d2e8e8d021246596ffbe7ab8ad0cebd92eb6c
 WHIRLPOOL 
54780e9df15fc72f4ad32ce11764e5d0b60bfb72ecd896017125d2eb67dfd23b3362044a5dad75f33135e0b6fd2d8bd4c20344b1da0be77b29e095419031f214
-DIST netsurf-buildsystem-1.2.tar.gz 38914 SHA256 
3903a4a1551c9c202e1d2047344c4f3598c8d9d6c35ebf8cc2e18874bd0c9d61 SHA512 
963e8a5033e8ef70595507f24fea3d9697eefb50ad7f92a6d3c913501c7026f12ec6d48f92b75e352b32f212f6216b8d8455aff25fa8d8d0fc12a3b19a875a1c
 WHIRLPOOL 
e56a520ae284089d0f36f06a6891ebb5b208ca847c74340c18581340e457c20ae9365999dc13284f438b965dcd7e85f04b93d1c1f22cadf6f7c1e2cef81d528c
 DIST netsurf-buildsystem-1.3.tar.gz 37906 SHA256 
10bbe95ba07476208da6047bd3c74685b6e61ba9904975b5d5c9a2c79a84ac79 SHA512 
79ef3e366c4798dbb88021fd05019ba9fe50539b7482bd3d07422f4c0dbf2047b906f39a0b48deebbdf111d84d93a9364d08e5c97f91609363c27641db15e6b5
 WHIRLPOOL 
c8131d0ffb79b208b63bef94606735968584edfff8cb24b4c83cd747c5d65c2811004626840798047ffddf84556ef7d8e23242f60d01a4a046323df3c78b0980

diff --git a/media-libs/librosprite/files/librosprite-0.1.1-Werror.patch 
b/media-libs/librosprite/files/librosprite-0.1.1-Werror.patch
deleted file mode 100644
index cd01638..000
--- a/media-libs/librosprite/files/librosprite-0.1.1-Werror.patch
+++ /dev/null
@@ -1,14 +0,0 @@
 librosprite-0.1.1/Makefile
-+++ librosprite-0.1.1/Makefile
-@@ -22,11 +22,6 @@
-   -Wformat=2 -Werror-implicit-function-declaration \
-   -Wmissing-declarations -Wmissing-prototypes
- 
--# BeOS/Haiku standard library headers create warnings
--ifneq ($(TARGET),beos)
--  WARNFLAGS := $(WARNFLAGS) -Werror
--endif
--
- CFLAGS := -I$(CURDIR)/include/ $(WARNFLAGS) $(CFLAGS)
- 
- ifneq ($(GCCVER),2)

diff --git a/media-libs/librosprite/librosprite-0.1.1.ebuild 
b/media-libs/librosprite/librosprite-0.1.1.ebuild
deleted file mode 100644
index 9b2e40f..000
--- a/media-libs/librosprite/librosprite-0.1.1.ebuild
+++ /dev/null
@@ -1,18 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-NETSURF_BUILDSYSTEM=buildsystem-1.2
-inherit netsurf
-
-DESCRIPTION="framebuffer abstraction library, written in C"
-HOMEPAGE="http://www.netsurf-browser.org/projects/librosprite/";
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~m68k-mint"
-IUSE=""
-
-PATCHES=( "${FILESDIR}"/${P}-Werror.patch )



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

2016-05-07 Thread Michael Weber
commit: d2dea4223ce4af142242a6b295fa9c89df64220a
Author: Michael Weber  gentoo  org>
AuthorDate: Sat May  7 21:43:07 2016 +
Commit: Michael Weber  gentoo  org>
CommitDate: Sat May  7 21:44:34 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2dea422

www-client/netsurf: Version bump (thanks Haelwenn Monnier for the hint, bug 
580154).

Package-Manager: portage-2.2.28

 www-client/netsurf/Manifest   |   1 +
 www-client/netsurf/netsurf-3.5.ebuild | 162 ++
 2 files changed, 163 insertions(+)

diff --git a/www-client/netsurf/Manifest b/www-client/netsurf/Manifest
index c6466df..b5fe305 100644
--- a/www-client/netsurf/Manifest
+++ b/www-client/netsurf/Manifest
@@ -1,3 +1,4 @@
 DIST netsurf-3.4-src.tar.gz 4133201 SHA256 
1648f437994fc18090237430f30d645ff06bab0768ae973575f9391d07613bf6 SHA512 
d9f95ff88d572a36e906bdb25dddbb51aa683a2105ca9eff53ea61c154a34a888420811f8a2b58a1b5a10f77d8aa914e3201b937934243527edb8a897f7bd60e
 WHIRLPOOL 
1c8e3d6ac8a1ecd7bfa2554d56bd6e6cbd6c025112110f596a1db551d3b18029ee2761ddb288cdbc0cd517a90a54081d9d8aca3399339160addb2aedce14a55b
+DIST netsurf-3.5-src.tar.gz 4094532 SHA256 
98f3a66d3ae24ab34becdab2ea690f8f20c0f49f86723f133ede6df57e451dcc SHA512 
0bbb64d7dfbe105a0c9ace6f17655feef1b63ed8ae1ceaca647d0fce828cef27f4871949351694b5836f0bbc0b2614a3671235a1682b0810b9194cd89a68659a
 WHIRLPOOL 
2c0d7cc6096607105da5049e46ea9c08ba3b20fdf1992853a2a85c78e0937bfb8d5b9a5f55751ea18f46d68e64bd13d24f7a13d7d7d52a63796df62e217a7c3c
 DIST netsurf-buildsystem-1.5.tar.gz 38196 SHA256 
dbc6afc639f6987b704e6ff4427668787ee7efba77e1bbf76b614699b5daaf71 SHA512 
02d85e8f1d2101194a678f7ccf84051390953285a46951d7b327556f8df1a0c416620bd4c7a615e25de438d5d27cfffb69ec5d94eb8379a295dab4c85a96cae4
 WHIRLPOOL 
7b7d595a2e399b361e71769e509a129af42da5ce823f1b55183efb53898ac2ae731593eb13e1ecc2271ea26ee0948ac35bf99fea280eb72a2bb00164b4b29f09
 DIST netsurf-fb.modes-example.gz 4586 SHA256 
df1514790be120f27bd23dfdca71c24112679d45d3cbd3916f9231ec5e2596bb SHA512 
753a707dc428212803dd64250bb723a498fdc1c328fdac4df38be533eab3af45f727cdc6b7ced3faaa0e82db182c4eab140b8e81b0d3cfe2152252b89e6d2981
 WHIRLPOOL 
5a91c32a712b746c993d2fa1d47625f16241e845d556b8113ab957eda7385ac5bdde5f78b0de2dad4df544c7d7c13d8145ebb9d81272af9a3759ad4e307c3767

diff --git a/www-client/netsurf/netsurf-3.5.ebuild 
b/www-client/netsurf/netsurf-3.5.ebuild
new file mode 100644
index 000..d9a5aef
--- /dev/null
+++ b/www-client/netsurf/netsurf-3.5.ebuild
@@ -0,0 +1,162 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+NETSURF_COMPONENT_TYPE=binary
+NETSURF_BUILDSYSTEM=buildsystem-1.5
+inherit netsurf
+
+DESCRIPTION="a free, open source web browser"
+HOMEPAGE="http://www.netsurf-browser.org/";
+SRC_URI="http://download.netsurf-browser.org/netsurf/releases/source/${P}-src.tar.gz
+   http://xmw.de/mirror/netsurf-fb.modes-example.gz
+   ${NETSURF_BUILDSYSTEM_SRC_URI}"
+
+LICENSE="GPL-2 MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm"
+IUSE="+bmp +duktape fbcon truetype +gif gstreamer gtk +javascript +jpeg +mng
+   pdf-writer +png +rosprite +svg +svgtiny +webp fbcon_frontend_able
+   fbcon_frontend_linux fbcon_frontend_sdl fbcon_frontend_vnc 
fbcon_frontend_x"
+
+REQUIRED_USE="|| ( fbcon gtk )
+   amd64? ( abi_x86_32? ( javascript? ( duktape ) ) )
+   fbcon? ( ^^ ( fbcon_frontend_able fbcon_frontend_linux 
fbcon_frontend_sdl
+   fbcon_frontend_vnc fbcon_frontend_x ) )
+   duktape? ( javascript )"
+
+RDEPEND=">=dev-libs/libnsutils-0.0.2[${MULTILIB_USEDEP}]
+   >=dev-libs/libutf8proc-1.1.6-r1[${MULTILIB_USEDEP}]
+   dev-libs/libxml2:2[${MULTILIB_USEDEP}]
+   net-misc/curl[${MULTILIB_USEDEP}]
+   >=dev-libs/libcss-0.6.0[${MULTILIB_USEDEP}]
+   >=net-libs/libhubbub-0.3.1-r1[${MULTILIB_USEDEP}]
+   >=net-libs/libdom-0.3.0[${MULTILIB_USEDEP}]
+   bmp? ( >=media-libs/libnsbmp-0.1.2-r1[${MULTILIB_USEDEP}] )
+   fbcon? ( >=dev-libs/libnsfb-0.1.3-r1[${MULTILIB_USEDEP}]
+   truetype? ( media-fonts/dejavu
+   >=media-libs/freetype-2.5.0.1[${MULTILIB_USEDEP}] )
+   )
+   gif? ( >=media-libs/libnsgif-0.1.2-r1[${MULTILIB_USEDEP}] )
+   gtk? ( >=dev-libs/glib-2.34.3:2[${MULTILIB_USEDEP}]
+   gnome-base/libglade:2.0[${MULTILIB_USEDEP}]
+   >=x11-libs/gtk+-2.24.23:2[${MULTILIB_USEDEP}] )
+   gstreamer? ( media-libs/gstreamer:0.10[${MULTILIB_USEDEP}] )
+   javascript? ( >=dev-libs/nsgenbind-0.3[${MULTILIB_USEDEP}]
+   !duktape? ( dev-lang/spidermonkey:0= ) )
+   jpeg? ( >=virtual/jpeg-0-r2:0[${MULTILIB_USEDEP}] )
+   mng? ( >=media-libs/libmng-1.0.10-r2[${MULTILIB_USEDEP}] )
+   pdf-writer? ( media-libs/libharu[${MULTILIB_USEDEP}] )
+   png? ( >=media-libs/libpng-1.2.51:0[${MULTILIB_USEDEP}] )
+   svg? ( svgtiny? ( >=media-libs/libsvgtiny-0.1.3-r1[${MULTILIB_USED

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

2016-05-07 Thread Michael Weber
commit: c60e525cf256ea433f1bd049e68426c3534a8d77
Author: Michael Weber  gentoo  org>
AuthorDate: Sat May  7 21:08:14 2016 +
Commit: Michael Weber  gentoo  org>
CommitDate: Sat May  7 21:43:29 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c60e525c

dev-libs/libparserutils: drop old.

Package-Manager: portage-2.2.28

 dev-libs/libparserutils/Manifest   |  6 -
 .../files/libparserutils-0.1.1-unused.patch| 20 
 .../files/libparserutils-0.2.0-glibc-2.20.patch| 16 -
 .../files/libparserutils-0.2.1-glibc-2.20.patch| 15 
 .../libparserutils/libparserutils-0.1.2.ebuild | 25 ---
 .../libparserutils/libparserutils-0.2.0-r1.ebuild  | 28 --
 .../libparserutils/libparserutils-0.2.1-r1.ebuild  | 28 --
 7 files changed, 138 deletions(-)

diff --git a/dev-libs/libparserutils/Manifest b/dev-libs/libparserutils/Manifest
index 9fd9123..18bdca2 100644
--- a/dev-libs/libparserutils/Manifest
+++ b/dev-libs/libparserutils/Manifest
@@ -1,8 +1,2 @@
-DIST libparserutils-0.1.2-src.tar.gz 74663 SHA256 
0a21efd3882c19965f57161c4ecda85a363a71dbe090030dfa69f9aecd2160aa SHA512 
e94fbbacd39fc58485e8d7812043bab2780cd828f19d2e7f1173144e2aa24d748ac598a69982f3e224d0920b868f53507d5c261ce14b111c5b7d1ee5fc51b7e1
 WHIRLPOOL 
f53b0b518440d744191db69276a81fb63ad150d01df64921372b2f609c3d7111f87cb879593c19d708d2dea343a548956eb1416ba51360fcf06afef691d173df
-DIST libparserutils-0.2.0-src.tar.gz 74431 SHA256 
55c50abbffaaebe17acba43008ee2c4085401ce618e505fafa7c75baaa813da7 SHA512 
82b3049691af96682ce09723cde3d5b3f0ae85c37897fa9e79841a2e0ab910f614fdb895814dd45c384bc3ef5f063f91ba55e31d9733b0b21431d8ccc04e43e7
 WHIRLPOOL 
73ae201bb99136b26c9b16b71f9d51e6684407a30ffce1c8f8d9163581a8220c253518a8c9f406e7d6ded4ea7d7cfad869c61a768baf14738160bd0a5e196ca0
-DIST libparserutils-0.2.1-src.tar.gz 74426 SHA256 
30589e6b3adf0c14b5a78de1fba3b9b84cbd74e95e22d45827fa3e09b563f735 SHA512 
42ca23565d54eaaff87db43e23dc84da155bb958e1026e226c7bb52db1e147bedb5d813d5f06ebfe254e48a8e95309235e1d98bd5a040e2c3eca231d983de250
 WHIRLPOOL 
941d79f25c72afc34e13c7296ea30fb9fb74c8730bd07ca90138c0c4949dc1ddbf8e3d071f31aaed60f7a0e9ce297dfeca136008705052cd1a776eec865cade5
 DIST libparserutils-0.2.3-src.tar.gz 74509 SHA256 
c5d93fb41b9c006ba392b32d724a7239238d656aa81cd45804ddd0b794a6ff05 SHA512 
b68cbf3a3260bacea10c8115a1c247de3d7220e94a7f73da84ee4b400678132d8db71b8e84fe92eacafc4945c111f049779c8fead4cf9bd98c6e96340943d270
 WHIRLPOOL 
87dc981b72c9785e07aff274a6914ee060d8c5036841775b3388ea0d5169a1e32d7e7376753b653bcc50a6485a075ebfabefb5c3604d794c2650cd396d6224a8
-DIST netsurf-buildsystem-1.0.tar.gz 37026 SHA256 
4495e8e12faf0ace668ab80401064ce7f65a195efe63c924c066a109649ff146 SHA512 
763e10766ab16be375c40a226e36a95df5740ac62b5bbc4eb6d52693b83284d2e71d9a3d797f55c28853a5d2565182759ffa9bfb3d736daf21b347f418661c47
 WHIRLPOOL 
a65d53424a34a796a1f85ed5d4a9ca9bf58eaba7246e5ea20bc7da09e0e8ab60e156ce47da521660d5567c6358fda0da744e56ccf52cda6e0db92b19a6055d38
-DIST netsurf-buildsystem-1.2.tar.gz 38914 SHA256 
3903a4a1551c9c202e1d2047344c4f3598c8d9d6c35ebf8cc2e18874bd0c9d61 SHA512 
963e8a5033e8ef70595507f24fea3d9697eefb50ad7f92a6d3c913501c7026f12ec6d48f92b75e352b32f212f6216b8d8455aff25fa8d8d0fc12a3b19a875a1c
 WHIRLPOOL 
e56a520ae284089d0f36f06a6891ebb5b208ca847c74340c18581340e457c20ae9365999dc13284f438b965dcd7e85f04b93d1c1f22cadf6f7c1e2cef81d528c
-DIST netsurf-buildsystem-1.3.tar.gz 37906 SHA256 
10bbe95ba07476208da6047bd3c74685b6e61ba9904975b5d5c9a2c79a84ac79 SHA512 
79ef3e366c4798dbb88021fd05019ba9fe50539b7482bd3d07422f4c0dbf2047b906f39a0b48deebbdf111d84d93a9364d08e5c97f91609363c27641db15e6b5
 WHIRLPOOL 
c8131d0ffb79b208b63bef94606735968584edfff8cb24b4c83cd747c5d65c2811004626840798047ffddf84556ef7d8e23242f60d01a4a046323df3c78b0980
 DIST netsurf-buildsystem-1.5.tar.gz 38196 SHA256 
dbc6afc639f6987b704e6ff4427668787ee7efba77e1bbf76b614699b5daaf71 SHA512 
02d85e8f1d2101194a678f7ccf84051390953285a46951d7b327556f8df1a0c416620bd4c7a615e25de438d5d27cfffb69ec5d94eb8379a295dab4c85a96cae4
 WHIRLPOOL 
7b7d595a2e399b361e71769e509a129af42da5ce823f1b55183efb53898ac2ae731593eb13e1ecc2271ea26ee0948ac35bf99fea280eb72a2bb00164b4b29f09

diff --git a/dev-libs/libparserutils/files/libparserutils-0.1.1-unused.patch 
b/dev-libs/libparserutils/files/libparserutils-0.1.1-unused.patch
deleted file mode 100644
index 6b9036d..000
--- a/dev-libs/libparserutils/files/libparserutils-0.1.1-unused.patch
+++ /dev/null
@@ -1,20 +0,0 @@
 libparserutils-0.1.1/test/inputstream.c
-+++ libparserutils-0.1.1/test/inputstream.c
-@@ -25,7 +25,7 @@
- {
-   parserutils_inputstream *stream;
-   FILE *fp;
--  size_t len, origlen;
-+  size_t len;
- #define CHUNK_SIZE (4096)
-   uint8_t buf[CHUNK_SIZE];
-   const uint8_t *c;
-@@ -46,7 +46,7 @@
-   }
- 
-   fseek(fp, 0, SEEK_END);
--  origlen = len = ftell(fp);
-+  len = ftell(fp)

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

2016-05-07 Thread Andreas Hüttel
commit: 28602329502d907d0979c451b0e511c2c8fa5dd1
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat May  7 21:49:24 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Sat May  7 21:49:24 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28602329

Revert "x11-misc/shutterbug: Fix global scope use* calls, #582206" - repoman 
would have prevented more breakage

This reverts commit 5a3cc3108312a8982db95c0615361a4b1fe46884.

 x11-misc/shutterbug/shutterbug-1.6.36.ebuild | 8 +++-
 1 file changed, 3 insertions(+), 5 deletions(-)

diff --git a/x11-misc/shutterbug/shutterbug-1.6.36.ebuild 
b/x11-misc/shutterbug/shutterbug-1.6.36.ebuild
index 0afa601..89d7e03 100644
--- a/x11-misc/shutterbug/shutterbug-1.6.36.ebuild
+++ b/x11-misc/shutterbug/shutterbug-1.6.36.ebuild
@@ -21,8 +21,6 @@ DEPEND="
 
 RDEPEND="${DEPEND}"
 
-src_configure() {
-   FOXCONF="$(use_enable jpeg) \
-   $(use_enable png) \
-   $(use_enable tiff)" fox_src_configure
-}
+FOXCONF="$(use_enable jpeg) \
+   $(use_enable png) \
+   $(use_enable tiff)"



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

2016-05-07 Thread Andreas Hüttel
commit: e8ad19e224b83f16eef8f4595fefded1a6266d5f
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat May  7 21:48:26 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Sat May  7 21:48:26 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8ad19e2

Revert "x11-misc/pathfinder: Fix global scope use* calls, #582206" - repoman 
would have prevented more breakage

This reverts commit e4333453f946ddfd571daf06738e947bab21a53b.

 x11-misc/pathfinder/pathfinder-1.6.36.ebuild | 8 +++-
 1 file changed, 3 insertions(+), 5 deletions(-)

diff --git a/x11-misc/pathfinder/pathfinder-1.6.36.ebuild 
b/x11-misc/pathfinder/pathfinder-1.6.36.ebuild
index 7e5945b..61802fd 100644
--- a/x11-misc/pathfinder/pathfinder-1.6.36.ebuild
+++ b/x11-misc/pathfinder/pathfinder-1.6.36.ebuild
@@ -21,8 +21,6 @@ DEPEND="
 
 RDEPEND="${DEPEND}"
 
-src_configure() {
-   FOXCONF="$(use_enable jpeg) \
-   $(use_enable png) \
-   $(use_enable tiff)" fox_src_configure
-}
+FOXCONF="$(use_enable jpeg) \
+   $(use_enable png) \
+   $(use_enable tiff)"



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

2016-05-07 Thread Michael Weber
commit: e3859c0744b6d20ed6022e6b12d2e682f2eaf2fb
Author: Michael Weber  gentoo  org>
AuthorDate: Sat May  7 21:54:35 2016 +
Commit: Michael Weber  gentoo  org>
CommitDate: Sat May  7 21:55:24 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3859c07

dev-util/cppcheck: Version bump (thanks Christian Strahl for the hint, bug 
579758).

Package-Manager: portage-2.2.28

 dev-util/cppcheck/Manifest |   1 +
 dev-util/cppcheck/cppcheck-1.73.ebuild | 105 +
 2 files changed, 106 insertions(+)

diff --git a/dev-util/cppcheck/Manifest b/dev-util/cppcheck/Manifest
index 5deca44..194836e 100644
--- a/dev-util/cppcheck/Manifest
+++ b/dev-util/cppcheck/Manifest
@@ -1 +1,2 @@
 DIST cppcheck-1.72.tar.bz2 1125775 SHA256 
9460b184ff2d8dd15344f3e2f42f634c86e4dd3303e1e9b3f13dc67536aab420 SHA512 
13b2348c97a3777feaad579f8620f18d90f6f934f92f5db712c7190af1f40042527500aefa4c8ccd348f7691b1c0d5f32115085c9385dec55460d5ba0804a410
 WHIRLPOOL 
790514f4b5b9c539a30daa691d268c6c5f1077743cde1af8834248eb4213224275e9f72cea46f3b378119a3d0944d7e8d63270c0cd47517c7f382c683a1938fe
+DIST cppcheck-1.73.tar.bz2 1147270 SHA256 
36f68354734310203c285fac17aed47bb82131fc0487145b9c0386301cd5fe50 SHA512 
a703cb47016982c27509bd46fa601b5baf359b0c44be188e2f5fe7d64b2accc392af5aa803a5e298b778f15b979585781ecd1459c8d2dd8b033f34cb1bad15a7
 WHIRLPOOL 
1ecbcd36f3ed36c0db3a9e6c99b730c164c5e4a680dfa1f6b3a84df5a9e4e7ca0ab902d34306dcaf12c9ffd686fbac4492f07b12b99d862d9152db6ffeac377c

diff --git a/dev-util/cppcheck/cppcheck-1.73.ebuild 
b/dev-util/cppcheck/cppcheck-1.73.ebuild
new file mode 100644
index 000..34c8313
--- /dev/null
+++ b/dev-util/cppcheck/cppcheck-1.73.ebuild
@@ -0,0 +1,105 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} )
+
+inherit distutils-r1 eutils qt4-r2 toolchain-funcs flag-o-matic
+
+DESCRIPTION="static analyzer of C/C++ code"
+HOMEPAGE="http://cppcheck.sourceforge.net";
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE="htmlreport pcre qt4"
+
+RDEPEND="htmlreport? ( dev-python/pygments[${PYTHON_USEDEP}] )
+   >=dev-libs/tinyxml2-2
+   qt4? ( dev-qt/qtgui:4 )
+   pcre? ( dev-libs/libpcre )"
+DEPEND="${RDEPEND}
+   app-text/docbook-xsl-stylesheets
+   dev-libs/libxslt
+   virtual/pkgconfig"
+
+src_prepare() {
+   append-cxxflags -std=c++0x
+
+   # Drop bundled libs, patch Makefile generator and re-run it
+   rm -r externals || die
+   epatch "${FILESDIR}"/${PN}-1.72-tinyxml2.patch
+   tc-export CXX
+   emake dmake
+   ./dmake || die
+
+   epatch_user
+}
+
+src_configure() {
+   if use pcre ; then
+   sed -e '/HAVE_RULES=/s:=no:=yes:' \
+   -i Makefile
+   fi
+   if use qt4 ; then
+   pushd gui
+   qt4-r2_src_configure
+   popd
+   fi
+}
+
+src_compile() {
+   export LIBS="$(pkg-config --libs tinyxml2)"
+   emake ${PN} man \
+   CFGDIR="${EROOT}usr/share/${PN}/cfg" \
+   
DB2MAN="${EROOT}usr/share/sgml/docbook/xsl-stylesheets/manpages/docbook.xsl"
+
+   if use qt4 ; then
+   pushd gui
+   qt4-r2_src_compile
+   popd
+   fi
+   if use htmlreport ; then
+   pushd htmlreport
+   distutils-r1_src_compile
+   popd
+   fi
+}
+
+src_test() {
+   # safe final version
+   mv -v ${PN}{,.final}
+   mv -v lib/library.o{,.final}
+   mv -v cli/cppcheckexecutor.o{,.final}
+   #trigger recompile with CFGDIR inside ${S}
+   emake check CFGDIR="${S}/cfg"
+   # restore
+   mv -v ${PN}{.final,}
+   mv -v lib/library.o{.final,}
+   mv -v cli/cppcheckexecutor.o{.final,}
+}
+
+src_install() {
+   # it's not autotools-based, so "${ED}" here, not "${D}", bug 531760
+   emake install DESTDIR="${ED}"
+
+   insinto "/usr/share/${PN}/cfg"
+   doins cfg/*.cfg
+   if use qt4 ; then
+   dobin gui/${PN}-gui
+   dodoc gui/{projectfile.txt,gui.${PN}}
+   fi
+   if use htmlreport ; then
+   pushd htmlreport
+   distutils-r1_src_install
+   popd
+   find "${D}" -name "*.egg-info" -delete
+   else
+   rm "${ED}/usr/bin/cppcheck-htmlreport" || die
+   fi
+   doman ${PN}.1
+   dodoc -r triage
+}



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

2016-05-07 Thread Michael Weber
commit: 115808d2e8efde4b9392365b52becc80a5b6f463
Author: Michael Weber  gentoo  org>
AuthorDate: Sat May  7 21:49:04 2016 +
Commit: Michael Weber  gentoo  org>
CommitDate: Sat May  7 21:55:20 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=115808d2

dev-util/cppcheck: Drop old.

Package-Manager: portage-2.2.28

 dev-util/cppcheck/Manifest |   3 -
 dev-util/cppcheck/cppcheck-1.69-r1.ebuild  | 106 -
 dev-util/cppcheck/cppcheck-1.70.ebuild | 106 -
 dev-util/cppcheck/cppcheck-1.71.ebuild | 106 -
 dev-util/cppcheck/files/cppcheck-1.69-c++0x.patch  |  12 ---
 .../cppcheck/files/cppcheck-1.69-tinyxml2.patch|  67 -
 .../cppcheck/files/cppcheck-1.71-tinyxml2.patch|  67 -
 7 files changed, 467 deletions(-)

diff --git a/dev-util/cppcheck/Manifest b/dev-util/cppcheck/Manifest
index d17bc3f..5deca44 100644
--- a/dev-util/cppcheck/Manifest
+++ b/dev-util/cppcheck/Manifest
@@ -1,4 +1 @@
-DIST cppcheck-1.69.tar.bz2 1052984 SHA256 
4bd5c8031258ef29764a4c92666384238a625beecbb2aceeb7065ec388c7532e SHA512 
30f239bcdf4cb1fcc254271bf55f3fdc1ec22e7d26f0704218390cfce1d4cf3ef41f385f4e463ede1a1a401e87d81b1d66a462c7b07e045d46aebd2354384a01
 WHIRLPOOL 
e341c8b8f133fd19188700d53d6f02ab5deffc10fdfedbc9474931596850c10027a91e445998a3884f8f30908581e428fe4c629397b14660a0fe7b852e48b3a4
-DIST cppcheck-1.70.tar.bz2 291 SHA256 
c6aaafd41b4c2050f3fb96a4aa159507007403a163d05361bd9544e5baf18f39 SHA512 
c2223edce22739e555eca114bc39d8f66229ec26fb122c976e3dcf88957bfd6b37c170e183f22611ea2d17ac22b33da78440f820c044f6099ac901bd6c4f1b8d
 WHIRLPOOL 
0b6c52d13ff8c9c8dfdf383e419edd311a484a89d695dbf9409f1ea608c1dc5bbc20fcb03bc0469495a35b61a43a90ccf1e76cd191cf28326f929020d66083b6
-DIST cppcheck-1.71.tar.bz2 1128689 SHA256 
0114d29e5c49c8ff0030798f4fa02f9ef4c1d64d09697a3ea4b19aa5b67b4afe SHA512 
ff56909ca566f9a48623822d78119930f0f55961a8011b0bce92178b25f82649847612157fa24f3b21f0aad6da81aa8387d08f7af4127df1d5a75b20ced67af9
 WHIRLPOOL 
2d1ff247c85354329bc645a8d74ae16119e6a246a282cb47e119a956d7d65bb4ea9fd3964a228b45a11cfa5efacc6fc8ae4602c29256f237c687d35da8c154c5
 DIST cppcheck-1.72.tar.bz2 1125775 SHA256 
9460b184ff2d8dd15344f3e2f42f634c86e4dd3303e1e9b3f13dc67536aab420 SHA512 
13b2348c97a3777feaad579f8620f18d90f6f934f92f5db712c7190af1f40042527500aefa4c8ccd348f7691b1c0d5f32115085c9385dec55460d5ba0804a410
 WHIRLPOOL 
790514f4b5b9c539a30daa691d268c6c5f1077743cde1af8834248eb4213224275e9f72cea46f3b378119a3d0944d7e8d63270c0cd47517c7f382c683a1938fe

diff --git a/dev-util/cppcheck/cppcheck-1.69-r1.ebuild 
b/dev-util/cppcheck/cppcheck-1.69-r1.ebuild
deleted file mode 100644
index d5d903e..000
--- a/dev-util/cppcheck/cppcheck-1.69-r1.ebuild
+++ /dev/null
@@ -1,106 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} )
-
-inherit distutils-r1 eutils flag-o-matic qt4-r2 toolchain-funcs
-
-DESCRIPTION="static analyzer of C/C++ code"
-HOMEPAGE="http://cppcheck.sourceforge.net";
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 ~arm x86"
-IUSE="htmlreport pcre qt4"
-
-RDEPEND="htmlreport? ( dev-python/pygments[${PYTHON_USEDEP}] )
-   >=dev-libs/tinyxml2-2
-   qt4? ( dev-qt/qtgui:4 )
-   pcre? ( dev-libs/libpcre )"
-DEPEND="${RDEPEND}
-   app-text/docbook-xsl-stylesheets
-   dev-libs/libxslt
-   virtual/pkgconfig"
-
-src_prepare() {
-   # Drop bundled libs, patch Makefile generator and re-run it
-   rm -r externals || die
-   epatch "${FILESDIR}"/${PN}-1.69-tinyxml2.patch
-   tc-export CXX
-   emake dmake
-   ./dmake || die
-
-   epatch "${FILESDIR}"/${PN}-1.69-c++0x.patch
-
-   epatch_user
-}
-
-src_configure() {
-   if use pcre ; then
-   sed -e '/HAVE_RULES=/s:=no:=yes:' \
-   -i Makefile
-   fi
-   if use qt4 ; then
-   pushd gui
-   qt4-r2_src_configure
-   popd
-   fi
-}
-
-src_compile() {
-   export LIBS="$(pkg-config --libs tinyxml2)"
-   emake ${PN} man \
-   CFGDIR="${EROOT}usr/share/${PN}/cfg" \
-   
DB2MAN="${EROOT}usr/share/sgml/docbook/xsl-stylesheets/manpages/docbook.xsl"
-
-   if use qt4 ; then
-   pushd gui
-   qt4-r2_src_compile
-   popd
-   fi
-   if use htmlreport ; then
-   pushd htmlreport
-   distutils-r1_src_compile
-   popd
-   fi
-}
-
-src_test() {
-   # safe final version
-   mv -v ${PN}{,.final}
-   mv -v lib/library.o{,.final}
-   mv -v cli/cppcheckexecutor.o{,.final}
-   #trigger recompile with CFGDIR inside ${S}
-   emake check CFGDIR="${S}/cfg"
-   # restore
-   mv -v ${PN}{.final,}
-   mv 

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

2016-05-07 Thread Michael Weber
commit: 21f7db9006140c7aa28c14aefba92fd30a58cb95
Author: Michael Weber  gentoo  org>
AuthorDate: Sat May  7 22:03:25 2016 +
Commit: Michael Weber  gentoo  org>
CommitDate: Sat May  7 22:03:25 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21f7db90

app-backup/backintime: Version bump (thanks Yanestra for the hint, bug 579560).

Package-Manager: portage-2.2.28

 app-backup/backintime/Manifest |  1 +
 app-backup/backintime/backintime-1.1.12.ebuild | 78 ++
 2 files changed, 79 insertions(+)

diff --git a/app-backup/backintime/Manifest b/app-backup/backintime/Manifest
index e377aca..eca5319 100644
--- a/app-backup/backintime/Manifest
+++ b/app-backup/backintime/Manifest
@@ -1 +1,2 @@
+DIST backintime-1.1.12.tar.gz 656192 SHA256 
a835e4eccb70ea3e8156861750a4c93d33dbc0e8590daf390c5a54dcc6b0ee4c SHA512 
e1dc3e3d2bac8b0f390898029978e806128ffd6005471a7e8a697c44f9e271f9902b496b33b037133f9a509f4ca3f8b8f10adf681b670ec9a1a751dfc786cb62
 WHIRLPOOL 
8ada493d2cbb38879bc7481899eb41fa235b9e4e7d3a003d40b230c32924e568a2fa0b43bbd875c734279f36d63dd678cd7eabf406a18cc4b7c45d716cacfae1
 DIST backintime-1.1.8.tar.gz 617754 SHA256 
a1f2d210e95633dfe383eb50b3b560d1e09c43de4ce89dd4cb193cab40cb8a1e SHA512 
550e270dcf341ec5ad952f4decd836007d19ff9bf60cada834dfb488dbf29954b6fd3ed80a4f8fb4406a0166895a7f7c922e5622d06c43086dd54073e5aabd99
 WHIRLPOOL 
ea9af3c432c61def4214e1d1e2c70e40cb7e50867bb0fa08930740c13133293ad135fd6c97295ab176deaedacb33e72583dc7c34dcfc3cb375a8b6e7fc7ab632

diff --git a/app-backup/backintime/backintime-1.1.12.ebuild 
b/app-backup/backintime/backintime-1.1.12.ebuild
new file mode 100644
index 000..62e5964
--- /dev/null
+++ b/app-backup/backintime/backintime-1.1.12.ebuild
@@ -0,0 +1,78 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python3_3 python3_4 )
+
+inherit eutils python-single-r1
+
+DESCRIPTION="Backup system inspired by TimeVault and FlyBack, with a GUI for 
GNOME and KDE4"
+HOMEPAGE="http://backintime.le-web.org/";
+SRC_URI="http://${PN}.le-web.org/download/${PN}/${P}.tar.gz";
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="qt4"
+
+DEPEND="${PYTHON_DEPS}
+   dev-python/dbus-python[${PYTHON_USEDEP}]
+   dev-python/keyring[${PYTHON_USEDEP}]
+   net-misc/openssh
+   net-misc/rsync[xattr,acl]"
+RDEPEND="${DEPEND}
+   qt4? ( dev-python/PyQt4 )"
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+src_prepare() {
+   #fix doc install location
+   sed -e "s:/doc/${PN}-common:/doc/${PF}:g" \
+   -i common/configure || die
+   sed -e "s:/doc/${PN}-qt4:/doc/${PF}:g" \
+   -i qt4/configure || die
+   sed -e "/addInstallFile \"..\/VERSION/d" \
+   -e "/addInstallFile \"..\/LICENSE/d" \
+   -e "/addInstallFile \"..\/debian\/copyright/d" \
+   -i {qt4,common}/configure || die
+
+   if [ -n ${LINGUAS+x} ] ; then
+   cd common/po || die
+   for po in *.po ; do
+   if ! has ${po/.po} ${LINGUAS} ; then
+   rm ${po} || die
+   fi
+   done
+   fi
+}
+
+src_configure() {
+   cd "${S}"/common || die
+   ./configure --python3 --no-fuse-group || die
+   if use qt4 ; then
+   cd "${S}"/qt4 || die
+   ./configure --python3 || die
+   fi
+}
+
+src_compile() {
+   cd "${S}"/common || die
+   emake
+   if use qt4 ; then
+   cd "${S}"/qt4 || die
+   emake
+   fi
+}
+
+src_install() {
+   cd "${S}"/common || die
+   emake DESTDIR="${D}" install
+   if use qt4 ; then
+   cd "${S}"/qt4 || die
+   emake DESTDIR="${D}" install
+   fi
+
+   python_optimize "${D}"
+}



  1   2   3   4   5   6   7   8   9   10   >