[gentoo-commits] gentoo-x86 commit in eclass: ChangeLog git-r3.eclass

2015-08-08 Thread Michal Gorny (mgorny)
mgorny  15/08/08 09:32:50

  Modified: ChangeLog git-r3.eclass
  Log:
  Add some boldness to output. Update/fix pkg_needrebuild() for 
smart-live-rebuild.

Revision  ChangesPath
1.1750   eclass/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1750view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1750content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.1749r2=1.1750

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
retrieving revision 1.1749
retrieving revision 1.1750
diff -u -r1.1749 -r1.1750
--- ChangeLog   7 Aug 2015 02:05:19 -   1.1749
+++ ChangeLog   8 Aug 2015 09:32:50 -   1.1750
@@ -1,6 +1,10 @@
 # ChangeLog for eclass directory
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1749 2015/08/07 
02:05:19 pesa Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1750 2015/08/08 
09:32:50 mgorny Exp $
+
+  08 Aug 2015; Michał Górny mgo...@gentoo.org git-r3.eclass:
+  Add some boldness to output. Update/fix pkg_needrebuild() for
+  smart-live-rebuild.
 
   07 Aug 2015; Davide Pesavento p...@gentoo.org qt5-build.eclass:
   Fix bugs #549140 and #552942.



1.51 eclass/git-r3.eclass

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/git-r3.eclass?rev=1.51view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/git-r3.eclass?rev=1.51content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/git-r3.eclass?r1=1.50r2=1.51

Index: git-r3.eclass
===
RCS file: /var/cvsroot/gentoo-x86/eclass/git-r3.eclass,v
retrieving revision 1.50
retrieving revision 1.51
diff -u -r1.50 -r1.51
--- git-r3.eclass   9 Jul 2015 20:21:05 -   1.50
+++ git-r3.eclass   8 Aug 2015 09:32:50 -   1.51
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/git-r3.eclass,v 1.50 2015/07/09 
20:21:05 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/git-r3.eclass,v 1.51 2015/08/08 
09:32:50 mgorny Exp $
 
 # @ECLASS: git-r3.eclass
 # @MAINTAINER:
@@ -185,19 +185,19 @@
;;
single)
if [[ ${EGIT_CLONE_TYPE} == shallow ]]; then
-   einfo git-r3: ebuild needs to be cloned in 
'single' mode, adjusting
+   einfo git-r3: ebuild needs to be cloned in 
'\e[1msingle\e[22m' mode, adjusting
EGIT_CLONE_TYPE=single
fi
;;
single+tags)
if [[ ${EGIT_CLONE_TYPE} == shallow || 
${EGIT_CLONE_TYPE} == single ]]; then
-   einfo git-r3: ebuild needs to be cloned in 
'single+tags' mode, adjusting
+   einfo git-r3: ebuild needs to be cloned in 
'\e[1msingle+tags\e[22m' mode, adjusting
EGIT_CLONE_TYPE=single+tags
fi
;;
mirror)
if [[ ${EGIT_CLONE_TYPE} != mirror ]]; then
-   einfo git-r3: ebuild needs to be cloned in 
'mirror' mode, adjusting
+   einfo git-r3: ebuild needs to be cloned in 
'\e[1mmirror\e[22m' mode, adjusting
EGIT_CLONE_TYPE=mirror
fi
;;
@@ -532,7 +532,7 @@
umask ${EVCS_UMASK} || die Bad options to umask: 
${EVCS_UMASK}
fi
for r in ${repos[@]}; do
-   einfo Fetching ${r} ...
+   einfo Fetching \e[1m${r}\e[22m ...
 
local fetch_command=( git fetch ${r} )
local clone_type=${EGIT_CLONE_TYPE}
@@ -553,11 +553,11 @@
# so automatically switch to single+tags mode.
if [[ ${clone_type} == shallow ]]; then
einfo   Google Code does not support shallow 
clones
-   einfo   using EGIT_CLONE_TYPE=single+tags
+   einfo   using 
\e[1mEGIT_CLONE_TYPE=single+tags\e[22m
clone_type=single+tags
elif [[ ${clone_type} == single ]]; then
einfo   git-r3: Google Code does not send tags 
properly in 'single' mode
-   einfo   using EGIT_CLONE_TYPE=single+tags
+   einfo   using 
\e[1mEGIT_CLONE_TYPE=single+tags\e[22m

[gentoo-commits] gentoo-x86 commit in eclass: git-r3.eclass

2015-08-08 Thread Michal Gorny (mgorny)
mgorny  15/08/08 10:52:30

  Modified: git-r3.eclass
  Log:
  fix typo

Revision  ChangesPath
1.52 eclass/git-r3.eclass

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/git-r3.eclass?rev=1.52view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/git-r3.eclass?rev=1.52content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/git-r3.eclass?r1=1.51r2=1.52

Index: git-r3.eclass
===
RCS file: /var/cvsroot/gentoo-x86/eclass/git-r3.eclass,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -r1.51 -r1.52
--- git-r3.eclass   8 Aug 2015 09:32:50 -   1.51
+++ git-r3.eclass   8 Aug 2015 10:52:29 -   1.52
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/git-r3.eclass,v 1.51 2015/08/08 
09:32:50 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/git-r3.eclass,v 1.52 2015/08/08 
10:52:29 mgorny Exp $
 
 # @ECLASS: git-r3.eclass
 # @MAINTAINER:
@@ -771,7 +771,7 @@
local -x GIT_DIR
_git-r3_set_gitdir ${repos[0]}
 
-   einfo Checking out \e[1m${repos[0]}\e[22m to \e[1m${out_dir}\[e22m ...
+   einfo Checking out \e[1m${repos[0]}\e[22m to \e[1m${out_dir}\e[22m ...
 
if ! git cat-file -e refs/git-r3/${local_id}/__main__; then
if [[ ${EVCS_OFFLINE} ]]; then






[gentoo-commits] gentoo-x86 commit in net-wireless/blueman: metadata.xml blueman-9999.ebuild ChangeLog

2015-08-08 Thread Michal Gorny (mgorny)
mgorny  15/08/08 15:03:18

  Modified: metadata.xml blueman-.ebuild ChangeLog
  Log:
  Update and clean up the live ebuild and patches.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.5  net-wireless/blueman/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/blueman/metadata.xml?rev=1.5view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/blueman/metadata.xml?rev=1.5content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/blueman/metadata.xml?r1=1.4r2=1.5

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/net-wireless/blueman/metadata.xml,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- metadata.xml5 Jan 2015 19:50:38 -   1.4
+++ metadata.xml8 Aug 2015 15:03:18 -   1.5
@@ -4,7 +4,12 @@
maintainer
emaildev-z...@gentoo.org/email
/maintainer
+   maintainer
+   emailmgo...@gentoo.org/email
+   nameMichał Górny/name
+   /maintainer
use
+   flag name=appindicatorEnable usage of 
pkgdev-libs/libappindicator/pkg to export menu options/flag
flag name=gconfEnable the GConf configuration backend/flag
flag name=networkAdd functionality to setup (host) PAN 
connections using either pkgnet-dns/dnsmasq/pkg or 
pkgnet-misc/dhcp/pkg/flag
flag name=sendtoInstall the sendto-plugin for 
pkggnome-base/nautilus/pkg/flag



1.9  net-wireless/blueman/blueman-.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/blueman/blueman-.ebuild?rev=1.9view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/blueman/blueman-.ebuild?rev=1.9content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/blueman/blueman-.ebuild?r1=1.8r2=1.9

Index: blueman-.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-wireless/blueman/blueman-.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- blueman-.ebuild 4 Apr 2015 08:52:43 -   1.8
+++ blueman-.ebuild 8 Aug 2015 15:03:18 -   1.9
@@ -1,63 +1,60 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-wireless/blueman/blueman-.ebuild,v 
1.8 2015/04/04 08:52:43 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-wireless/blueman/blueman-.ebuild,v 
1.9 2015/08/08 15:03:18 mgorny Exp $
 
 EAPI=5
 
-PYTHON_COMPAT=( python2_7 )
+PYTHON_COMPAT=( python{2_7,3_4} )
 inherit eutils python-single-r1 gnome2-utils autotools
 
 DESCRIPTION=GTK+ Bluetooth Manager, designed to be simple and intuitive for 
everyday bluetooth tasks
-HOMEPAGE=http://blueman-project.org/;
+HOMEPAGE=https://github.com/blueman-project/blueman;
 
 if [[ ${PV} ==  ]] ; then
inherit git-r3
-   EGIT_REPO_URI=https://github.com/${PN}-project/${PN}.git;
+   EGIT_REPO_URI=https://github.com/blueman-project/blueman.git;
KEYWORDS=
 else
-   SRC_URI=http://download.tuxfamily.org/${PN}/${P}.tar.gz;
+   
SRC_URI=https://github.com/blueman-project/${PN}/releases/download/${PV}/${P}.tar.xz;
KEYWORDS=~amd64 ~ppc ~x86
 fi
 
 LICENSE=GPL-3
 SLOT=0
-IUSE=gconf gnome network nls policykit pulseaudio thunar
+IUSE=appindicator network nls policykit pulseaudio thunar
 
-CDEPEND=dev-libs/glib:2=
-   x11-libs/gtk+:3=
-   x11-libs/startup-notification:=
-   dev-python/dbus-python[${PYTHON_USEDEP}]
+COMMON_DEPEND=
dev-python/pygobject:3
-   =net-wireless/bluez-4.61:=
+   =net-wireless/bluez-5:=
${PYTHON_DEPS}
-DEPEND=${CDEPEND}
-   nls? ( dev-util/intltool sys-devel/gettext )
+DEPEND=${COMMON_DEPEND}
+   dev-python/cython[${PYTHON_USEDEP}]
virtual/pkgconfig
-   dev-python/cython[${PYTHON_USEDEP}]
-RDEPEND=${CDEPEND}
-   =app-mobilephone/obex-data-server-0.4.4
+   nls? ( dev-util/intltool sys-devel/gettext )
+RDEPEND=${COMMON_DEPEND}
+   dev-python/dbus-python[${PYTHON_USEDEP}]
+   dev-python/pycairo[${PYTHON_USEDEP}]
sys-apps/dbus
-   x11-themes/hicolor-icon-theme
-   gconf? ( dev-python/gconf-python[${PYTHON_USEDEP}] )
-   gnome? ( gnome-base/nautilus )
+   x11-libs/gtk+:3[introspection]
+   x11-libs/libnotify[introspection]
+   || (
+   x11-themes/faenza-icon-theme
+   x11-themes/gnome-icon-theme
+   x11-themes/mate-icon-theme
+   )
+   appindicator? ( dev-libs/libappindicator:3[introspection] )
network? ( || ( net-dns/dnsmasq
net-misc/dhcp

[gentoo-commits] gentoo-x86 commit in net-wireless/blueman/files: blueman-9999-set-codeset-for-gettext-to-UTF-8-always.patch blueman-9999-plugins-conf-file.patch

2015-08-08 Thread Michal Gorny (mgorny)
mgorny  15/08/08 15:03:18

  Modified:

blueman--set-codeset-for-gettext-to-UTF-8-always.patch
  Removed:  blueman--plugins-conf-file.patch
  Log:
  Update and clean up the live ebuild and patches.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.6  
net-wireless/blueman/files/blueman--set-codeset-for-gettext-to-UTF-8-always.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/blueman/files/blueman--set-codeset-for-gettext-to-UTF-8-always.patch?rev=1.6view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/blueman/files/blueman--set-codeset-for-gettext-to-UTF-8-always.patch?rev=1.6content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/blueman/files/blueman--set-codeset-for-gettext-to-UTF-8-always.patch?r1=1.5r2=1.6

Index: blueman--set-codeset-for-gettext-to-UTF-8-always.patch
===
RCS file: 
/var/cvsroot/gentoo-x86/net-wireless/blueman/files/blueman--set-codeset-for-gettext-to-UTF-8-always.patch,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- blueman--set-codeset-for-gettext-to-UTF-8-always.patch  3 Mar 2015 
08:18:52 -   1.5
+++ blueman--set-codeset-for-gettext-to-UTF-8-always.patch  8 Aug 2015 
15:03:18 -   1.6
@@ -1,26 +1,28 @@
-From aebfe594584e7c5cca30062d643618fc2ab8144b Mon Sep 17 00:00:00 2001
+From a28a982ba05a3b84dcfed43e5bd6801067b5d0c5 Mon Sep 17 00:00:00 2001
 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= mgo...@gentoo.org
-Date: Sun, 1 Mar 2015 23:08:02 +0100
-Subject: [PATCH] set codeset for gettext to utf-8
+Date: Sat, 8 Aug 2015 14:57:51 +0200
+Subject: [PATCH] Always set codeset for gettext to utf8
 
 ---
- apps/blueman-adapters|  2 ++
- apps/blueman-assistant   |  2 ++
- apps/blueman-manager |  2 ++
- apps/blueman-sendto  |  2 ++
- apps/blueman-services|  2 ++
- blueman/gui/GsmSettings.py   |  2 ++
- blueman/gui/applet/PluginDialog.py   |  4 +++-
- blueman/plugins/applet/NetUsage.py   |  3 ++-
- blueman/plugins/services/Network.py  |  3 ++-
- blueman/plugins/services/Transfer.py |  2 ++
- 11 files changed, 29 insertions(+), 6 deletions(-)
+ apps/blueman-adapters| 2 ++
+ apps/blueman-assistant   | 2 ++
+ apps/blueman-manager | 2 ++
+ apps/blueman-sendto  | 2 ++
+ apps/blueman-services| 2 ++
+ blueman/gui/GsmSettings.py   | 3 +++
+ blueman/gui/applet/PluginDialog.py   | 3 +++
+ blueman/gui/manager/ManagerDeviceMenu.py | 2 ++
+ blueman/main/applet/BluezAgent.py| 2 ++
+ blueman/plugins/applet/NetUsage.py   | 3 ++-
+ blueman/plugins/services/Network.py  | 2 ++
+ blueman/plugins/services/Transfer.py | 3 +++
+ 12 files changed, 27 insertions(+), 1 deletion(-)
 
 diff --git a/apps/blueman-adapters b/apps/blueman-adapters
-index a961480..3759ba8 100755
+index 4ac81fe..c8d8c06 100755
 --- a/apps/blueman-adapters
 +++ b/apps/blueman-adapters
-@@ -6,6 +6,7 @@ from gi.repository import Pango
+@@ -11,6 +11,7 @@ from gi.repository import Pango
  import os.path
  import sys
  import signal
@@ -28,7 +30,7 @@
  
  #support running uninstalled
  _dirname = os.path.abspath(os.path.join(os.path.dirname(__file__), '..'))
-@@ -36,6 +37,7 @@ class BluemanAdapters:
+@@ -40,6 +41,7 @@ class BluemanAdapters:
  
  builder = Gtk.Builder()
  builder.set_translation_domain(blueman)
@@ -37,18 +39,18 @@
  self.dialog = builder.get_object(dialog)
  
 diff --git a/apps/blueman-assistant b/apps/blueman-assistant
-index 7d96ec7..c322256 100755
+index 0b8544b..b23150f 100755
 --- a/apps/blueman-assistant
 +++ b/apps/blueman-assistant
-@@ -16,6 +16,7 @@ import random
+@@ -19,6 +19,7 @@ import os
+ import sys
  import signal
- import dbus.glib
  from optparse import OptionParser
 +from locale import bind_textdomain_codeset
  
  #support running uninstalled
  _dirname = os.path.abspath(os.path.join(os.path.dirname(__file__), '..'))
-@@ -62,6 +63,7 @@ class Assistant:
+@@ -60,6 +61,7 @@ class Assistant:
  
  self.Builder = Gtk.Builder()
  self.Builder.set_translation_domain(blueman)
@@ -57,18 +59,18 @@
  self.assistant = self.Builder.get_object(assistant)
  self.assistant.set_title(_(Bluetooth Assistant))
 diff --git a/apps/blueman-manager b/apps/blueman-manager
-index 666f16c..af23015 100755
+index d276692..e272528 100755
 --- a/apps/blueman-manager
 +++ b/apps/blueman-manager
-@@ -8,6 +8,7 @@ from dbus.mainloop.glib import DBusGMainLoop
- from blueman.Constants import *
+@@ -14,6 +14,7 @@ from blueman.Constants import *
  import gi
  gi.require_version(Gtk, 3.0)
-+from locale import 

[gentoo-commits] gentoo-x86 commit in net-wireless/blueman: blueman-9999.ebuild ChangeLog

2015-08-08 Thread Michal Gorny (mgorny)
mgorny  15/08/08 15:11:45

  Modified: blueman-.ebuild ChangeLog
  Log:
  Fix USE=appindicator and deps for USE=pulseaudio.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.10 net-wireless/blueman/blueman-.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/blueman/blueman-.ebuild?rev=1.10view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/blueman/blueman-.ebuild?rev=1.10content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/blueman/blueman-.ebuild?r1=1.9r2=1.10

Index: blueman-.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-wireless/blueman/blueman-.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- blueman-.ebuild 8 Aug 2015 15:03:18 -   1.9
+++ blueman-.ebuild 8 Aug 2015 15:11:45 -   1.10
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-wireless/blueman/blueman-.ebuild,v 
1.9 2015/08/08 15:03:18 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-wireless/blueman/blueman-.ebuild,v 
1.10 2015/08/08 15:11:45 mgorny Exp $
 
 EAPI=5
 
@@ -47,7 +47,7 @@
net-misc/dhcp
=net-misc/networkmanager-0.8 ) )
policykit? ( sys-auth/polkit )
-   pulseaudio? ( media-sound/pulseaudio )
+   pulseaudio? ( media-sound/pulseaudio[bluetooth] )
thunar? ( xfce-base/thunar )
!net-wireless/gnome-bluetooth
 
@@ -65,6 +65,7 @@
--docdir=/usr/share/doc/${PF} \
--disable-runtime-deps-check \
--disable-static \
+   $(use_enable appindicator) \
$(use_enable policykit polkit) \
$(use_enable nls) \
$(use_enable pulseaudio) \



1.36 net-wireless/blueman/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/blueman/ChangeLog?rev=1.36view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/blueman/ChangeLog?rev=1.36content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/blueman/ChangeLog?r1=1.35r2=1.36

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-wireless/blueman/ChangeLog,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -r1.35 -r1.36
--- ChangeLog   8 Aug 2015 15:03:18 -   1.35
+++ ChangeLog   8 Aug 2015 15:11:45 -   1.36
@@ -1,6 +1,9 @@
 # ChangeLog for net-wireless/blueman
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-wireless/blueman/ChangeLog,v 1.35 
2015/08/08 15:03:18 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-wireless/blueman/ChangeLog,v 1.36 
2015/08/08 15:11:45 mgorny Exp $
+
+  08 Aug 2015; Michał Górny mgo...@gentoo.org blueman-.ebuild:
+  Fix USE=appindicator and deps for USE=pulseaudio.
 
   08 Aug 2015; Michał Górny mgo...@gentoo.org
   -files/blueman--plugins-conf-file.patch, blueman-.ebuild,






[gentoo-commits] gentoo-x86 commit in net-wireless/blueman/files: blueman-2.0-set-codeset-for-gettext-to-UTF-8-always.patch

2015-08-08 Thread Michal Gorny (mgorny)
mgorny  15/08/08 15:35:02

  Added:   

blueman-2.0-set-codeset-for-gettext-to-UTF-8-always.patch
  Log:
  Version bump with schema install fix to the live ebuild.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.1  
net-wireless/blueman/files/blueman-2.0-set-codeset-for-gettext-to-UTF-8-always.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/blueman/files/blueman-2.0-set-codeset-for-gettext-to-UTF-8-always.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/blueman/files/blueman-2.0-set-codeset-for-gettext-to-UTF-8-always.patch?rev=1.1content-type=text/plain

Index: blueman-2.0-set-codeset-for-gettext-to-UTF-8-always.patch
===
From aebfe594584e7c5cca30062d643618fc2ab8144b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= mgo...@gentoo.org
Date: Sun, 1 Mar 2015 23:08:02 +0100
Subject: [PATCH] set codeset for gettext to utf-8

---
 apps/blueman-adapters|  2 ++
 apps/blueman-assistant   |  2 ++
 apps/blueman-manager |  2 ++
 apps/blueman-sendto  |  2 ++
 apps/blueman-services|  2 ++
 blueman/gui/GsmSettings.py   |  2 ++
 blueman/gui/applet/PluginDialog.py   |  4 +++-
 blueman/plugins/applet/NetUsage.py   |  3 ++-
 blueman/plugins/services/Network.py  |  3 ++-
 blueman/plugins/services/Transfer.py |  2 ++
 11 files changed, 29 insertions(+), 6 deletions(-)

diff --git a/apps/blueman-adapters b/apps/blueman-adapters
index a961480..3759ba8 100755
--- a/apps/blueman-adapters
+++ b/apps/blueman-adapters
@@ -6,6 +6,7 @@ from gi.repository import Pango
 import os.path
 import sys
 import signal
+from locale import bind_textdomain_codeset
 
 #support running uninstalled
 _dirname = os.path.abspath(os.path.join(os.path.dirname(__file__), '..'))
@@ -36,6 +37,7 @@ class BluemanAdapters:
 
 builder = Gtk.Builder()
 builder.set_translation_domain(blueman)
+bind_textdomain_codeset(blueman, UTF-8)
 builder.add_from_file(UI_PATH + /adapters.ui)
 self.dialog = builder.get_object(dialog)
 
diff --git a/apps/blueman-assistant b/apps/blueman-assistant
index 7d96ec7..c322256 100755
--- a/apps/blueman-assistant
+++ b/apps/blueman-assistant
@@ -16,6 +16,7 @@ import random
 import signal
 import dbus.glib
 from optparse import OptionParser
+from locale import bind_textdomain_codeset
 
 #support running uninstalled
 _dirname = os.path.abspath(os.path.join(os.path.dirname(__file__), '..'))
@@ -62,6 +63,7 @@ class Assistant:
 
 self.Builder = Gtk.Builder()
 self.Builder.set_translation_domain(blueman)
+bind_textdomain_codeset(blueman, UTF-8)
 self.Builder.add_from_file(UI_PATH + /assistant.ui)
 self.assistant = self.Builder.get_object(assistant)
 self.assistant.set_title(_(Bluetooth Assistant))
diff --git a/apps/blueman-manager b/apps/blueman-manager
index 666f16c..af23015 100755
--- a/apps/blueman-manager
+++ b/apps/blueman-manager
@@ -8,6 +8,7 @@ from dbus.mainloop.glib import DBusGMainLoop
 from blueman.Constants import *
 import gi
 gi.require_version(Gtk, 3.0)
+from locale import bind_textdomain_codeset
 from gi.repository import Gtk
 from gi.repository import GObject
 from blueman.bluez.BlueZInterface import BlueZInterface
@@ -46,6 +47,7 @@ class Blueman:
 
 self.Builder = Gtk.Builder()
 self.Builder.set_translation_domain(blueman)
+bind_textdomain_codeset(blueman, UTF-8)
 self.Builder.add_from_file(UI_PATH + /manager-main.ui)
 
 self.window = self.Builder.get_object(window)
diff --git a/apps/blueman-sendto b/apps/blueman-sendto
index 06ad626..a7099ab 100755
--- a/apps/blueman-sendto
+++ b/apps/blueman-sendto
@@ -13,6 +13,7 @@ from optparse import OptionParser
 import gettext
 import urllib
 import time
+from locale import bind_textdomain_codeset
 
 from blueman.Constants import *
 import gi
@@ -48,6 +49,7 @@ class Sender(GObject.GObject):
 GObject.GObject.__init__(self)
 self.Builder = Gtk.Builder()
 self.Builder.set_translation_domain(blueman)
+bind_textdomain_codeset(blueman, UTF-8)
 self.Builder.add_from_file(UI_PATH + /send-dialog.ui)
 self.window = self.Builder.get_object(window)
 
diff --git a/apps/blueman-services b/apps/blueman-services
index fb1428d..e3e708b 100755
--- a/apps/blueman-services
+++ b/apps/blueman-services
@@ -2,6 +2,7 @@
 
 import os
 import sys
+from locale import bind_textdomain_codeset
 #support running uninstalled
 _dirname = os.path.abspath(os.path.join(os.path.dirname(__file__), '..'))
 if os.path.exists(os.path.join(_dirname, CHANGELOG.md)):
@@ -29,6 +30,7 @@ class BluemanServices:
 
 self.Builder = Gtk.Builder()
 

[gentoo-commits] gentoo-x86 commit in net-wireless/blueman: blueman-2.0.ebuild blueman-9999.ebuild ChangeLog

2015-08-08 Thread Michal Gorny (mgorny)
mgorny  15/08/08 15:35:02

  Modified: blueman-.ebuild ChangeLog
  Added:blueman-2.0.ebuild
  Log:
  Version bump with schema install fix to the live ebuild.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.11 net-wireless/blueman/blueman-.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/blueman/blueman-.ebuild?rev=1.11view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/blueman/blueman-.ebuild?rev=1.11content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/blueman/blueman-.ebuild?r1=1.10r2=1.11

Index: blueman-.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-wireless/blueman/blueman-.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- blueman-.ebuild 8 Aug 2015 15:11:45 -   1.10
+++ blueman-.ebuild 8 Aug 2015 15:35:02 -   1.11
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-wireless/blueman/blueman-.ebuild,v 
1.10 2015/08/08 15:11:45 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-wireless/blueman/blueman-.ebuild,v 
1.11 2015/08/08 15:35:02 mgorny Exp $
 
 EAPI=5
 
@@ -57,7 +57,7 @@
 src_prepare() {
epatch \

${FILESDIR}/${PN}--set-codeset-for-gettext-to-UTF-8-always.patch
-   eautoreconf
+   [[ ${PV} ==  ]]  eautoreconf
 }
 
 src_configure() {
@@ -81,12 +81,15 @@
 
 pkg_preinst() {
gnome2_icon_savelist
+   gnome2_schemas_savelist
 }
 
 pkg_postinst() {
gnome2_icon_cache_update
+   gnome2_schemas_update
 }
 
 pkg_postrm() {
gnome2_icon_cache_update
+   gnome2_schemas_update
 }



1.37 net-wireless/blueman/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/blueman/ChangeLog?rev=1.37view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/blueman/ChangeLog?rev=1.37content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/blueman/ChangeLog?r1=1.36r2=1.37

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-wireless/blueman/ChangeLog,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -r1.36 -r1.37
--- ChangeLog   8 Aug 2015 15:11:45 -   1.36
+++ ChangeLog   8 Aug 2015 15:35:02 -   1.37
@@ -1,6 +1,13 @@
 # ChangeLog for net-wireless/blueman
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-wireless/blueman/ChangeLog,v 1.36 
2015/08/08 15:11:45 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-wireless/blueman/ChangeLog,v 1.37 
2015/08/08 15:35:02 mgorny Exp $
+
+*blueman-2.0 (08 Aug 2015)
+
+  08 Aug 2015; Michał Górny mgo...@gentoo.org +blueman-2.0.ebuild,
+  +files/blueman-2.0-set-codeset-for-gettext-to-UTF-8-always.patch,
+  blueman-.ebuild:
+  Version bump with schema install fix to the live ebuild.
 
   08 Aug 2015; Michał Górny mgo...@gentoo.org blueman-.ebuild:
   Fix USE=appindicator and deps for USE=pulseaudio.



1.1  net-wireless/blueman/blueman-2.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/blueman/blueman-2.0.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/blueman/blueman-2.0.ebuild?rev=1.1content-type=text/plain

Index: blueman-2.0.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-wireless/blueman/blueman-2.0.ebuild,v 
1.1 2015/08/08 15:35:02 mgorny Exp $

EAPI=5

PYTHON_COMPAT=( python2_7 )
inherit eutils python-single-r1 gnome2-utils autotools

DESCRIPTION=GTK+ Bluetooth Manager, designed to be simple and intuitive for 
everyday bluetooth tasks
HOMEPAGE=https://github.com/blueman-project/blueman;

if [[ ${PV} ==  ]] ; then
inherit git-r3
EGIT_REPO_URI=https://github.com/blueman-project/blueman.git;
KEYWORDS=
else

SRC_URI=https://github.com/blueman-project/${PN}/releases/download/${PV}/${P}.tar.xz;
KEYWORDS=~amd64 ~x86
fi

LICENSE=GPL-3
SLOT=0
IUSE=appindicator network nls policykit pulseaudio thunar

COMMON_DEPEND=
dev-python/pygobject:3
=net-wireless/bluez-4.61:=
${PYTHON_DEPS}
DEPEND=${COMMON_DEPEND}
dev-python/cython[${PYTHON_USEDEP}]
virtual/pkgconfig
nls? ( dev-util/intltool sys-devel/gettext )
RDEPEND=${COMMON_DEPEND}
dev-python/dbus-python[${PYTHON_USEDEP}]

[gentoo-commits] gentoo-x86 commit in net-wireless/blueman/files: blueman-1.23_p20140717-set-codeset-for-gettext-to-UTF-8-always.patch

2015-08-08 Thread Michal Gorny (mgorny)
mgorny  15/08/08 15:42:23

  Removed: 

blueman-1.23_p20140717-set-codeset-for-gettext-to-UTF-8-always.patch
  Log:
  Clean up old. Update HOMEPAGE in the remaining ebuilds.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)



[gentoo-commits] gentoo-x86 commit in net-wireless/blueman: blueman-1.23-r2.ebuild blueman-1.98_p20150105.ebuild ChangeLog blueman-1.23.ebuild blueman-1.23-r1.ebuild blueman-1.23_p20140717-r1.ebuild

2015-08-08 Thread Michal Gorny (mgorny)
mgorny  15/08/08 15:42:23

  Modified: blueman-1.23-r2.ebuild
blueman-1.98_p20150105.ebuild ChangeLog
  Removed:  blueman-1.23.ebuild blueman-1.23-r1.ebuild
blueman-1.23_p20140717-r1.ebuild
  Log:
  Clean up old. Update HOMEPAGE in the remaining ebuilds.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.5  net-wireless/blueman/blueman-1.23-r2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/blueman/blueman-1.23-r2.ebuild?rev=1.5view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/blueman/blueman-1.23-r2.ebuild?rev=1.5content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/blueman/blueman-1.23-r2.ebuild?r1=1.4r2=1.5

Index: blueman-1.23-r2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-wireless/blueman/blueman-1.23-r2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- blueman-1.23-r2.ebuild  5 Jan 2015 19:56:01 -   1.4
+++ blueman-1.23-r2.ebuild  8 Aug 2015 15:42:23 -   1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/net-wireless/blueman/blueman-1.23-r2.ebuild,v 1.4 
2015/01/05 19:56:01 zerochaos Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/net-wireless/blueman/blueman-1.23-r2.ebuild,v 1.5 
2015/08/08 15:42:23 mgorny Exp $
 
 EAPI=4
 
@@ -9,7 +9,7 @@
 inherit eutils python gnome2-utils
 
 DESCRIPTION=GTK+ Bluetooth Manager, designed to be simple and intuitive for 
everyday bluetooth tasks
-HOMEPAGE=http://blueman-project.org/;
+HOMEPAGE=https://github.com/blueman-project/blueman;
 SRC_URI=http://download.tuxfamily.org/${PN}/${P}.tar.gz;
 
 LICENSE=GPL-3



1.2  net-wireless/blueman/blueman-1.98_p20150105.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/blueman/blueman-1.98_p20150105.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/blueman/blueman-1.98_p20150105.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/blueman/blueman-1.98_p20150105.ebuild?r1=1.1r2=1.2

Index: blueman-1.98_p20150105.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/net-wireless/blueman/blueman-1.98_p20150105.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- blueman-1.98_p20150105.ebuild   5 Jan 2015 19:50:38 -   1.1
+++ blueman-1.98_p20150105.ebuild   8 Aug 2015 15:42:23 -   1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/net-wireless/blueman/blueman-1.98_p20150105.ebuild,v 
1.1 2015/01/05 19:50:38 zerochaos Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/net-wireless/blueman/blueman-1.98_p20150105.ebuild,v 
1.2 2015/08/08 15:42:23 mgorny Exp $
 
 EAPI=5
 
@@ -8,7 +8,7 @@
 inherit eutils python-single-r1 gnome2-utils autotools
 
 DESCRIPTION=GTK+ Bluetooth Manager, designed to be simple and intuitive for 
everyday bluetooth tasks
-HOMEPAGE=http://blueman-project.org/;
+HOMEPAGE=https://github.com/blueman-project/blueman;
 
 if [[ ${PV} ==  ]] ; then
inherit git-r3



1.38 net-wireless/blueman/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/blueman/ChangeLog?rev=1.38view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/blueman/ChangeLog?rev=1.38content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/blueman/ChangeLog?r1=1.37r2=1.38

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-wireless/blueman/ChangeLog,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -r1.37 -r1.38
--- ChangeLog   8 Aug 2015 15:35:02 -   1.37
+++ ChangeLog   8 Aug 2015 15:42:23 -   1.38
@@ -1,6 +1,12 @@
 # ChangeLog for net-wireless/blueman
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-wireless/blueman/ChangeLog,v 1.37 
2015/08/08 15:35:02 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-wireless/blueman/ChangeLog,v 1.38 
2015/08/08 15:42:23 mgorny Exp $
+
+  08 Aug 2015; Michał Górny mgo...@gentoo.org -blueman-1.23-r1.ebuild,
+  -blueman-1.23.ebuild, -blueman-1.23_p20140717-r1.ebuild,
+  -files/blueman-1.23_p20140717-set-codeset-for-gettext-to-UTF-8-always.patch,
+  blueman-1.23-r2.ebuild, blueman-1.98_p20150105.ebuild:
+  Clean up old. Update HOMEPAGE in the remaining ebuilds.
 
 *blueman-2.0 (08 Aug 2015)
 






[gentoo-commits] gentoo-x86 commit in net-wireless/blueman: blueman-9999.ebuild blueman-2.0.ebuild ChangeLog

2015-08-08 Thread Michal Gorny (mgorny)
mgorny  15/08/08 16:16:09

  Modified: blueman-.ebuild blueman-2.0.ebuild ChangeLog
  Log:
  Add additional deps and kernel checks for USE=network. Bug #487378.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.12 net-wireless/blueman/blueman-.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/blueman/blueman-.ebuild?rev=1.12view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/blueman/blueman-.ebuild?rev=1.12content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/blueman/blueman-.ebuild?r1=1.11r2=1.12

Index: blueman-.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-wireless/blueman/blueman-.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- blueman-.ebuild 8 Aug 2015 15:35:02 -   1.11
+++ blueman-.ebuild 8 Aug 2015 16:16:09 -   1.12
@@ -1,17 +1,17 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-wireless/blueman/blueman-.ebuild,v 
1.11 2015/08/08 15:35:02 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-wireless/blueman/blueman-.ebuild,v 
1.12 2015/08/08 16:16:09 mgorny Exp $
 
 EAPI=5
 
 PYTHON_COMPAT=( python{2_7,3_4} )
-inherit eutils python-single-r1 gnome2-utils autotools
+inherit eutils gnome2-utils linux-info python-single-r1
 
 DESCRIPTION=GTK+ Bluetooth Manager, designed to be simple and intuitive for 
everyday bluetooth tasks
 HOMEPAGE=https://github.com/blueman-project/blueman;
 
 if [[ ${PV} ==  ]] ; then
-   inherit git-r3
+   inherit autotools git-r3
EGIT_REPO_URI=https://github.com/blueman-project/blueman.git;
KEYWORDS=
 else
@@ -43,9 +43,16 @@
x11-themes/mate-icon-theme
)
appindicator? ( dev-libs/libappindicator:3[introspection] )
-   network? ( || ( net-dns/dnsmasq
-   net-misc/dhcp
-   =net-misc/networkmanager-0.8 ) )
+   network? (
+   net-dns/avahi[autoipd]
+   net-firewall/iptables
+   sys-apps/net-tools
+   || (
+   net-dns/dnsmasq
+   net-misc/dhcp
+   =net-misc/networkmanager-0.8
+   )
+   )
policykit? ( sys-auth/polkit )
pulseaudio? ( media-sound/pulseaudio[bluetooth] )
thunar? ( xfce-base/thunar )
@@ -54,6 +61,19 @@
 
 REQUIRED_USE=${PYTHON_REQUIRED_USE}
 
+pkg_pretend() {
+   if use network; then
+   local CONFIG_CHECK=~BRIDGE ~IP_NF_IPTABLES
+   ~IP_NF_NAT ~IP_NF_TARGET_MASQUERADE
+   linux-info_pkg_setup
+   fi
+}
+
+pkg_setup() {
+   pkg_pretend
+   python-single-r1_pkg_setup
+}
+
 src_prepare() {
epatch \

${FILESDIR}/${PN}--set-codeset-for-gettext-to-UTF-8-always.patch



1.2  net-wireless/blueman/blueman-2.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/blueman/blueman-2.0.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/blueman/blueman-2.0.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/blueman/blueman-2.0.ebuild?r1=1.1r2=1.2

Index: blueman-2.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-wireless/blueman/blueman-2.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- blueman-2.0.ebuild  8 Aug 2015 15:35:02 -   1.1
+++ blueman-2.0.ebuild  8 Aug 2015 16:16:09 -   1.2
@@ -1,17 +1,17 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-wireless/blueman/blueman-2.0.ebuild,v 
1.1 2015/08/08 15:35:02 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-wireless/blueman/blueman-2.0.ebuild,v 
1.2 2015/08/08 16:16:09 mgorny Exp $
 
 EAPI=5
 
 PYTHON_COMPAT=( python2_7 )
-inherit eutils python-single-r1 gnome2-utils autotools
+inherit eutils gnome2-utils linux-info python-single-r1
 
 DESCRIPTION=GTK+ Bluetooth Manager, designed to be simple and intuitive for 
everyday bluetooth tasks
 HOMEPAGE=https://github.com/blueman-project/blueman;
 
 if [[ ${PV} ==  ]] ; then
-   inherit git-r3
+   inherit autotools git-r3
EGIT_REPO_URI=https://github.com/blueman-project/blueman.git;
KEYWORDS=
 else
@@ -43,9 +43,16 @@
x11-themes/mate-icon-theme
)
appindicator? ( dev-libs/libappindicator:3[introspection] )
-   network? ( || ( net-dns/dnsmasq
-   net-misc/dhcp
-   

[gentoo-commits] gentoo-x86 commit in sys-apps/paludis: paludis-2.4.0.ebuild paludis-9999.ebuild ChangeLog

2015-08-07 Thread Michal Gorny (mgorny)
mgorny  15/08/07 11:19:59

  Modified: paludis-2.4.0.ebuild ChangeLog
  Added:paludis-.ebuild
  Log:
  Add a live ebuild, remove unnecessary inherit from -2.4.0.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.2  sys-apps/paludis/paludis-2.4.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/paludis/paludis-2.4.0.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/paludis/paludis-2.4.0.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/paludis/paludis-2.4.0.ebuild?r1=1.1r2=1.2

Index: paludis-2.4.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/paludis/paludis-2.4.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- paludis-2.4.0.ebuild4 Apr 2015 17:54:43 -   1.1
+++ paludis-2.4.0.ebuild7 Aug 2015 11:19:59 -   1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/paludis/paludis-2.4.0.ebuild,v 1.1 
2015/04/04 17:54:43 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/paludis/paludis-2.4.0.ebuild,v 1.2 
2015/08/07 11:19:59 mgorny Exp $
 
 EAPI=5
 
@@ -8,7 +8,7 @@
 # matching profile defaults for now
 RUBY_VER=2.0
 
-inherit autotools bash-completion-r1 eutils python-single-r1 user
+inherit bash-completion-r1 eutils python-single-r1 user
 
 DESCRIPTION=paludis, the other package mangler
 HOMEPAGE=http://paludis.exherbo.org/;



1.257sys-apps/paludis/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/paludis/ChangeLog?rev=1.257view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/paludis/ChangeLog?rev=1.257content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/paludis/ChangeLog?r1=1.256r2=1.257

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/paludis/ChangeLog,v
retrieving revision 1.256
retrieving revision 1.257
diff -u -r1.256 -r1.257
--- ChangeLog   21 Jul 2015 21:25:11 -  1.256
+++ ChangeLog   7 Aug 2015 11:19:59 -   1.257
@@ -1,6 +1,12 @@
 # ChangeLog for sys-apps/paludis
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/paludis/ChangeLog,v 1.256 
2015/07/21 21:25:11 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/paludis/ChangeLog,v 1.257 
2015/08/07 11:19:59 mgorny Exp $
+
+*paludis- (07 Aug 2015)
+
+  07 Aug 2015; Michał Górny mgo...@gentoo.org +paludis-.ebuild,
+  paludis-2.4.0.ebuild:
+  Add a live ebuild, remove unnecessary inherit from -2.4.0.
 
   21 Jul 2015; Manuel Rüger mr...@gentoo.org metadata.xml:
   Drop unused metadata useflag descriptions.



1.1  sys-apps/paludis/paludis-.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/paludis/paludis-.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/paludis/paludis-.ebuild?rev=1.1content-type=text/plain

Index: paludis-.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/paludis/paludis-.ebuild,v 1.1 
2015/08/07 11:19:59 mgorny Exp $

EAPI=5

EGIT_REPO_URI='git://git.exherbo.org/paludis/paludis.git'
PYTHON_COMPAT=( python2_7 )
# matching profile defaults for now
RUBY_VER=2.0

inherit autotools bash-completion-r1 eutils git-r3 python-single-r1 user

DESCRIPTION=paludis, the other package mangler
HOMEPAGE=http://paludis.exherbo.org/;
SRC_URI=

IUSE=doc pbins pink python ruby search-index test xml
LICENSE=GPL-2 vim
SLOT=0
KEYWORDS=

COMMON_DEPEND=
=app-admin/eselect-1.2.13
=app-shells/bash-3.2
dev-libs/libpcre[cxx]
sys-apps/file
pbins? ( =app-arch/libarchive-3.1.2 )
python? (
${PYTHON_DEPS}
=dev-libs/boost-1.41.0[python,${PYTHON_USEDEP}] )
ruby? ( dev-lang/ruby:${RUBY_VER} )
search-index? ( =dev-db/sqlite-3 )
xml? ( =dev-libs/libxml2-2.6 )

DEPEND=${COMMON_DEPEND}
=app-text/asciidoc-8.6.3
app-text/htmltidy
app-text/xmlto
=sys-devel/gcc-4.7
doc? (
|| (
=app-doc/doxygen-1.5.3
=app-doc/doxygen-1.5.1 )
python? (
dev-python/sphinx[${PYTHON_USEDEP}] )
ruby? ( dev-ruby/syntax[ruby_targets_ruby${RUBY_VER/./}] )
)
virtual/pkgconfig
test? ( 

[gentoo-commits] gentoo-x86 commit in sys-freebsd/freebsd-ubin: freebsd-ubin-10.1-r2.ebuild ChangeLog freebsd-ubin-10.1-r1.ebuild

2015-08-06 Thread Michal Gorny (mgorny)
mgorny  15/08/06 10:43:28

  Modified: ChangeLog
  Added:freebsd-ubin-10.1-r2.ebuild
  Removed:  freebsd-ubin-10.1-r1.ebuild
  Log:
  Fix FreeBSD-SA-15:18.bsdpatch. 
https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/192 by nigoro.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.105sys-freebsd/freebsd-ubin/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-freebsd/freebsd-ubin/ChangeLog?rev=1.105view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-freebsd/freebsd-ubin/ChangeLog?rev=1.105content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-freebsd/freebsd-ubin/ChangeLog?r1=1.104r2=1.105

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-freebsd/freebsd-ubin/ChangeLog,v
retrieving revision 1.104
retrieving revision 1.105
diff -u -r1.104 -r1.105
--- ChangeLog   29 Jul 2015 12:09:34 -  1.104
+++ ChangeLog   6 Aug 2015 10:43:28 -   1.105
@@ -1,6 +1,13 @@
 # ChangeLog for sys-freebsd/freebsd-ubin
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-freebsd/freebsd-ubin/ChangeLog,v 1.104 
2015/07/29 12:09:34 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-freebsd/freebsd-ubin/ChangeLog,v 1.105 
2015/08/06 10:43:28 mgorny Exp $
+
+*freebsd-ubin-10.1-r2 (06 Aug 2015)
+
+  06 Aug 2015; Michał Górny mgo...@gentoo.org +freebsd-ubin-10.1-r2.ebuild,
+  -freebsd-ubin-10.1-r1.ebuild:
+  Fix FreeBSD-SA-15:18.bsdpatch. 
https://github.com/gentoo/gentoo-portage-rsync-
+  mirror/pull/192 by nigoro.
 
 *freebsd-ubin-10.1-r1 (29 Jul 2015)
 



1.1  sys-freebsd/freebsd-ubin/freebsd-ubin-10.1-r2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-freebsd/freebsd-ubin/freebsd-ubin-10.1-r2.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-freebsd/freebsd-ubin/freebsd-ubin-10.1-r2.ebuild?rev=1.1content-type=text/plain

Index: freebsd-ubin-10.1-r2.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/sys-freebsd/freebsd-ubin/freebsd-ubin-10.1-r2.ebuild,v 
1.1 2015/08/06 10:43:28 mgorny Exp $

EAPI=5

inherit bsdmk freebsd flag-o-matic pam multilib multibuild multilib-build

DESCRIPTION=FreeBSD's base system source for /usr/bin
SLOT=0
IUSE=ar atm audit bluetooth ipv6 kerberos netware nis ssl usb build zfs
LICENSE=BSD zfs? ( CDDL )

# Security Advisory and Errata patches.
UPSTREAM_PATCHES=( SA-15:14/bsdpatch.patch
SA-15:18/bsdpatch.patch )

if [[ ${PV} != ** ]]; then
KEYWORDS=~amd64-fbsd ~sparc-fbsd ~x86-fbsd
SRC_URI=${SRC_URI}
$(freebsd_upstream_patches)
fi

EXTRACTONLY=
usr.bin/
contrib/
lib/
etc/
bin/
include/

use zfs  EXTRACTONLY+=cddl/
use build  EXTRACTONLY+=sys/

RDEPEND==sys-freebsd/freebsd-lib-${RV}*[usb?,bluetooth?,${MULTILIB_USEDEP}]
ssl? ( dev-libs/openssl )
kerberos? ( virtual/krb5 )
ar? ( =app-arch/libarchive-3 )
virtual/pam
sys-libs/zlib
=sys-libs/ncurses-5.9
!sys-process/fuser-bsd
!dev-util/csup
!dev-libs/libiconv
!sys-freebsd/freebsd-contrib

DEPEND=${RDEPEND}
sys-devel/flex
!build? ( =sys-freebsd/freebsd-sources-${RV}* )
=sys-freebsd/freebsd-mk-defs-${RV}*

RDEPEND=${RDEPEND}
=sys-auth/pambase-20080219.1
sys-process/cronbase

S=${WORKDIR}/usr.bin

PATCHES=( ${FILESDIR}/${PN}-6.0-bsdcmp.patch
${FILESDIR}/${PN}-9.0-fixmakefiles.patch
${FILESDIR}/${PN}-setXid.patch
${FILESDIR}/${PN}-lint-stdarg.patch
${FILESDIR}/${PN}-8.0-xinstall.patch
${FILESDIR}/${PN}-9.1-bsdar.patch
${FILESDIR}/${PN}-9.1-minigzip.patch
${FILESDIR}/${PN}-10.0-atf.patch
${FILESDIR}/${PN}-10.0-dtc-gcc46.patch
${FILESDIR}/${PN}-10.0-kdump-ioctl.patch
${FILESDIR}/${PN}-10.0-mandoc.patch
${FILESDIR}/${PN}-10.1-kdump-workaround.patch )

# Here we remove some sources we don't need because they are already
# provided by portage's packages or similar. In order:
# - Archiving tools, provided by their own ebuilds
# - ncurses stuff
# - less stuff
# - bind utils
# - rsh stuff
# - binutils gprof
# - dc stuff
# and the rest are misc utils we already provide somewhere else.
REMOVE_SUBDIRS=bzip2 bzip2recover tar cpio
gzip gprof
lzmainfo xz xzdec
unzip
tput tset tabs
less lessecho lesskey
hesinfo host
rsh rlogin rusers rwho ruptime
compile_et lex vi smbutil file vacation nc ftp telnet
c99 c89
bc dc

[gentoo-commits] gentoo-x86 commit in sys-freebsd/freebsd-sbin: freebsd-sbin-10.1-r1.ebuild ChangeLog freebsd-sbin-10.1.ebuild

2015-08-06 Thread Michal Gorny (mgorny)
mgorny  15/08/06 10:44:24

  Modified: ChangeLog
  Added:freebsd-sbin-10.1-r1.ebuild
  Removed:  freebsd-sbin-10.1.ebuild
  Log:
  Fix FreeBSD-SA-15:19.routed. 
https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/193 by nigoro.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.86 sys-freebsd/freebsd-sbin/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-freebsd/freebsd-sbin/ChangeLog?rev=1.86view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-freebsd/freebsd-sbin/ChangeLog?rev=1.86content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-freebsd/freebsd-sbin/ChangeLog?r1=1.85r2=1.86

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-freebsd/freebsd-sbin/ChangeLog,v
retrieving revision 1.85
retrieving revision 1.86
diff -u -r1.85 -r1.86
--- ChangeLog   5 Jun 2015 16:43:55 -   1.85
+++ ChangeLog   6 Aug 2015 10:44:24 -   1.86
@@ -1,6 +1,13 @@
 # ChangeLog for sys-freebsd/freebsd-sbin
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-freebsd/freebsd-sbin/ChangeLog,v 1.85 
2015/06/05 16:43:55 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-freebsd/freebsd-sbin/ChangeLog,v 1.86 
2015/08/06 10:44:24 mgorny Exp $
+
+*freebsd-sbin-10.1-r1 (06 Aug 2015)
+
+  06 Aug 2015; Michał Górny mgo...@gentoo.org +freebsd-sbin-10.1-r1.ebuild,
+  -freebsd-sbin-10.1.ebuild:
+  Fix FreeBSD-SA-15:19.routed. https://github.com/gentoo/gentoo-portage-rsync-
+  mirror/pull/193 by nigoro.
 
   05 Jun 2015; Michał Górny mgo...@gentoo.org freebsd-sbin-10.1.ebuild:
   Bump to EAPI=5. Use upstream tarballs.



1.1  sys-freebsd/freebsd-sbin/freebsd-sbin-10.1-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-freebsd/freebsd-sbin/freebsd-sbin-10.1-r1.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-freebsd/freebsd-sbin/freebsd-sbin-10.1-r1.ebuild?rev=1.1content-type=text/plain

Index: freebsd-sbin-10.1-r1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/sys-freebsd/freebsd-sbin/freebsd-sbin-10.1-r1.ebuild,v 
1.1 2015/08/06 10:44:24 mgorny Exp $

EAPI=5

inherit bsdmk freebsd multilib

DESCRIPTION=FreeBSD sbin utils
SLOT=0

# Security Advisory and Errata patches.
UPSTREAM_PATCHES=( SA-15:19/routed.patch )

if [[ ${PV} != ** ]]; then
KEYWORDS=~amd64-fbsd ~sparc-fbsd ~x86-fbsd
SRC_URI=${SRC_URI}
$(freebsd_upstream_patches)
fi

EXTRACTONLY=
sbin/
contrib/
lib/
libexec/
usr.sbin/
etc/

use build  EXTRACTONLY+=sys/

RDEPEND==sys-freebsd/freebsd-lib-${RV}*[ipv6?,atm?,netware?]
=sys-freebsd/freebsd-libexec-${RV}*
=dev-libs/expat-2.0.1
ssl? ( dev-libs/openssl )
=dev-libs/libedit-20120311.3.0-r1
sys-libs/readline
|| (
sys-process/cronie
sys-process/vixie-cron
)
atm? ( net-analyzer/bsnmp )
DEPEND=${RDEPEND}
!build? ( =sys-freebsd/freebsd-sources-${RV}* )
=sys-freebsd/freebsd-mk-defs-${RV}*

S=${WORKDIR}/sbin

IUSE=atm ipfilter +pf ipv6 build ssl +cxx netware

pkg_setup() {
use atm || mymakeopts=${mymakeopts} WITHOUT_ATM= 
use cxx || mymakeopts=${mymakeopts} WITHOUT_CXX=
use ipfilter || mymakeopts=${mymakeopts} WITHOUT_IPFILTER= 
use ipv6 || mymakeopts=${mymakeopts} WITHOUT_INET6= 
WITHOUT_INET6_SUPPORT=
use netware || mymakeopts=${mymakeopts} WITHOUT_IPX= 
WITHOUT_IPX_SUPPORT= WITHOUT_NCP= 
use pf || mymakeopts=${mymakeopts} WITHOUT_PF= 
use ssl || mymakeopts=${mymakeopts} WITHOUT_OPENSSL=
}

REMOVE_SUBDIRS=dhclient pfctl pflogd rcorder resolvconf

PATCHES=( ${FILESDIR}/${PN}-setXid.patch
${FILESDIR}/${PN}-10.0-zlib.patch
${FILESDIR}/${PN}-6.2-ldconfig.patch
${FILESDIR}/${PN}-6.1-pr102701.patch
${FILESDIR}/${PN}-bsdxml2expat.patch )

src_prepare() {
if [[ ! -e ${WORKDIR}/sys ]]; then
use build || ln -s /usr/src/sys ${WORKDIR}/sys
fi
}

src_install() {
mymakeopts=${mymakeopts} GEOM_CLASS_DIR=/$(get_libdir)/geom 
freebsd_src_install
keepdir /var/log
# Needed by ldconfig:
keepdir /var/run

# Maybe ship our own sysctl.conf so things like radvd work out of the 
box.
# New wireless config method requires regdomain.xml in /etc
cd ${WORKDIR}/etc/
insinto /etc
doins minfree sysctl.conf regdomain.xml || die

# Install a crontab for adjkerntz
insinto /etc/cron.d
  

[gentoo-commits] gentoo-x86 commit in profiles/desc: linguas.desc

2015-08-06 Thread Michal Gorny (mgorny)
mgorny  15/08/06 12:04:27

  Modified: linguas.desc
  Log:
  Add Paraguayan (Guarani) locale for LibreOffice. 
https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/191 by a17r.

Revision  ChangesPath
1.92 profiles/desc/linguas.desc

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/desc/linguas.desc?rev=1.92view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/desc/linguas.desc?rev=1.92content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/desc/linguas.desc?r1=1.91r2=1.92

Index: linguas.desc
===
RCS file: /var/cvsroot/gentoo-x86/profiles/desc/linguas.desc,v
retrieving revision 1.91
retrieving revision 1.92
diff -u -r1.91 -r1.92
--- linguas.desc26 Jul 2015 20:54:56 -  1.91
+++ linguas.desc6 Aug 2015 12:04:27 -   1.92
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation.
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/desc/linguas.desc,v 1.91 
2015/07/26 20:54:56 rhill Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/desc/linguas.desc,v 1.92 
2015/08/06 12:04:27 mgorny Exp $
 
 # This file contains descriptions of LINGUAS USE_EXPAND flags.
 
@@ -106,6 +106,7 @@
 gl_ES - Galician locale for Spain
 gu - Gujarati locale
 gu_IN - Gujarati locale for India
+gug - Paraguayan (Guarani) locale
 haw - Hawaiian locale
 he - Hebrew locale
 he_IL - Hebrew locale for Israel






[gentoo-commits] gentoo-x86 commit in profiles: ChangeLog

2015-08-06 Thread Michal Gorny (mgorny)
mgorny  15/08/06 12:04:27

  Modified: ChangeLog
  Log:
  Add Paraguayan (Guarani) locale for LibreOffice. 
https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/191 by a17r.

Revision  ChangesPath
1.10228  profiles/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/ChangeLog?rev=1.10228view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/ChangeLog?rev=1.10228content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/ChangeLog?r1=1.10227r2=1.10228

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v
retrieving revision 1.10227
retrieving revision 1.10228
diff -u -r1.10227 -r1.10228
--- ChangeLog   5 Aug 2015 14:12:42 -   1.10227
+++ ChangeLog   6 Aug 2015 12:04:26 -   1.10228
@@ -1,11 +1,15 @@
 # ChangeLog for profile directory
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.10227 2015/08/05 
14:12:42 monsieurp Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.10228 2015/08/06 
12:04:26 mgorny Exp $
 #
 # This ChangeLog should include records for all changes in profiles directory.
 # Only typo fixes which don't affect portage/repoman behaviour could be avoided
 # here. If in doubt put a record here!
 
+  06 Aug 2015; Michał Górny mgo...@gentoo.org desc/linguas.desc:
+  Add Paraguayan (Guarani) locale for LibreOffice.
+  https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/191 by a17r.
+
   05 Aug 2015; Patrice Clement monsie...@gentoo.org updates/3Q-2015:
   Add pkgmove entry for biojava: moved from dev-java/ to sci-biology/.
 






[gentoo-commits] gentoo-x86 commit in x11-libs/wxGTK/files: wxGTK-2.8.12.1-bakefile.patch wxGTK-2.8.12.1-libdir.patch wxGTK-2.8.12.1-autoconf.patch

2015-08-06 Thread Michal Gorny (mgorny)
mgorny  15/08/06 12:02:36

  Added:wxGTK-2.8.12.1-bakefile.patch
wxGTK-2.8.12.1-libdir.patch
wxGTK-2.8.12.1-autoconf.patch
  Log:
  Enable multilib support. Backport some build system patches. 
https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/142 by nE0sIghT.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.1  x11-libs/wxGTK/files/wxGTK-2.8.12.1-bakefile.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/wxGTK/files/wxGTK-2.8.12.1-bakefile.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/wxGTK/files/wxGTK-2.8.12.1-bakefile.patch?rev=1.1content-type=text/plain

Index: wxGTK-2.8.12.1-bakefile.patch
===
From 006b0650b0f390c1e9a19361988b6af7a327e296 Mon Sep 17 00:00:00 2001
From: nE0sIghT ykonoto...@gmail.com
Date: Wed, 5 Aug 2015 12:38:39 +0300
Subject: [PATCH 2/2] Fixed bakefile version

---
 build/aclocal/bakefile.m4 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/build/aclocal/bakefile.m4 b/build/aclocal/bakefile.m4
index 88478ca..aa04b16 100644
--- a/build/aclocal/bakefile.m4
+++ b/build/aclocal/bakefile.m4
@@ -837,7 +837,7 @@ AC_DEFUN([AC_BAKEFILE],
 AC_SUBST(OBJCXXFLAGS)
 
 
-BAKEFILE_BAKEFILE_M4_VERSION=0.2.8
+BAKEFILE_BAKEFILE_M4_VERSION=0.2.9
 
 dnl includes autoconf_inc.m4:
 $1
-- 
2.4.6




1.1  x11-libs/wxGTK/files/wxGTK-2.8.12.1-libdir.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/wxGTK/files/wxGTK-2.8.12.1-libdir.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/wxGTK/files/wxGTK-2.8.12.1-libdir.patch?rev=1.1content-type=text/plain

Index: wxGTK-2.8.12.1-libdir.patch
===
From e87336e8d583044d62b1a9400db4c29f1474fa50 Mon Sep 17 00:00:00 2001
From: nE0sIghT ykonoto...@gmail.com
Date: Wed, 5 Aug 2015 12:37:36 +0300
Subject: [PATCH 1/2] Backported new libraries search code

---
 acinclude.m4 | 75 ---
 configure.in | 96 +++-
 2 files changed, 107 insertions(+), 64 deletions(-)

diff --git a/acinclude.m4 b/acinclude.m4
index a44747c..1e307c9 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -43,16 +43,17 @@ for ac_dir in $1 /usr/include;
 ])
 
 dnl ---
-dnl call WX_PATH_FIND_LIBRARIES(search path, lib name), sets ac_find_libraries
-dnl to the full name of the file that was found or leaves it empty if not found
+dnl call WX_PATH_FIND_LIBRARIES(lib name, [optional extra search paths])
+dnl sets ac_find_libraries to the full name of the file that was found
+dnl or leaves it empty if not found
 dnl ---
 AC_DEFUN([WX_PATH_FIND_LIBRARIES],
 [
   ac_find_libraries=
-  for ac_dir in $1;
+  for ac_dir in $2 $SEARCH_LIB
   do
 for ac_extension in a so sl dylib dll.a; do
-  if test -f $ac_dir/lib$2.$ac_extension; then
+  if test -f $ac_dir/lib$1.$ac_extension; then
 ac_find_libraries=$ac_dir
 break 2
   fi
@@ -115,6 +116,72 @@ AC_DEFUN([WX_LINK_PATH_EXIST],
   fi
 ])
 
+dnl ---
+dnl Usage: WX_FIND_LIB(lib-name, [lib-function to test], [extra search paths])
+dnl
+dnl Tests in a variety of ways for the presence of lib-name
+dnl
+dnl On success, returns any novel path found in ac_find_libraries; else std
+dnl and any cflags in ac_find_cflags
+dnl On failure, ac_find_libraries will be empty
+dnl ---
+AC_DEFUN([WX_FIND_LIB],
+[
+  ac_find_libraries=
+
+  dnl Try with pkg-config first. It requires its lib-name parameter lowercase
+  fl_pkgname=`echo $1 | tr [[:upper:]] [[:lower:]]`
+  dnl suppress PKG_PROG_PKG_CONFIG output; we don't want to keep seeing it
+  PKG_PROG_PKG_CONFIG() AS_MESSAGE_FD /dev/null
+  PKG_CHECK_MODULES([$1], [$fl_pkgname],
+[
+  dnl Start by assuming there are no novel lib paths
+  ac_find_libraries=std
+
+  dnl A simple copy of the internal vars $1_CFLAGS $1_LIBS doesn't work
+  dnl inside the macro
+  dnl
+  dnl TODO: When we stop being autoconf 2.61 compatible, the next 2 lines
+  dnl should become:
+  dnl AS_VAR_COPY([ac_find_cflags], [$1_CFLAGS])
+  dnl AS_VAR_COPY([fl_libs], [$1_LIBS])
+  eval ac_find_cflags=\$$1_CFLAGS
+  eval fl_libs=\$$1_LIBS
+
+  dnl fl_libs may now contain -Lfoopath -lfoo (only non-standard paths are
+  dnl added) We only want the path bit, not the lib names
+  for fl_path in $fl_libs
+  do
+if test `echo 

[gentoo-commits] gentoo-x86 commit in x11-libs/wxGTK: wxGTK-3.0.2.0-r2.ebuild wxGTK-2.8.12.1-r2.ebuild ChangeLog

2015-08-06 Thread Michal Gorny (mgorny)
mgorny  15/08/06 12:02:36

  Modified: ChangeLog
  Added:wxGTK-3.0.2.0-r2.ebuild wxGTK-2.8.12.1-r2.ebuild
  Log:
  Enable multilib support. Backport some build system patches. 
https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/142 by nE0sIghT.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.324x11-libs/wxGTK/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/wxGTK/ChangeLog?rev=1.324view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/wxGTK/ChangeLog?rev=1.324content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/wxGTK/ChangeLog?r1=1.323r2=1.324

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-libs/wxGTK/ChangeLog,v
retrieving revision 1.323
retrieving revision 1.324
diff -u -r1.323 -r1.324
--- ChangeLog   30 Jul 2015 16:48:54 -  1.323
+++ ChangeLog   6 Aug 2015 12:02:36 -   1.324
@@ -1,6 +1,16 @@
 # ChangeLog for x11-libs/wxGTK
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/wxGTK/ChangeLog,v 1.323 2015/07/30 
16:48:54 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/wxGTK/ChangeLog,v 1.324 2015/08/06 
12:02:36 mgorny Exp $
+
+*wxGTK-3.0.2.0-r2 (06 Aug 2015)
+*wxGTK-2.8.12.1-r2 (06 Aug 2015)
+
+  06 Aug 2015; Michał Górny mgo...@gentoo.org
+  +files/wxGTK-2.8.12.1-autoconf.patch, +files/wxGTK-2.8.12.1-bakefile.patch,
+  +files/wxGTK-2.8.12.1-libdir.patch, +wxGTK-2.8.12.1-r2.ebuild,
+  +wxGTK-3.0.2.0-r2.ebuild:
+  Enable multilib support. Backport some build system patches.
+  https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/142 by nE0sIghT.
 
   30 Jul 2015; Markus Meier mae...@gentoo.org wxGTK-3.0.2.0-r1.ebuild:
   arm stable, bug #547680



1.1  x11-libs/wxGTK/wxGTK-3.0.2.0-r2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/wxGTK/wxGTK-3.0.2.0-r2.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/wxGTK/wxGTK-3.0.2.0-r2.ebuild?rev=1.1content-type=text/plain

Index: wxGTK-3.0.2.0-r2.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-libs/wxGTK/wxGTK-3.0.2.0-r2.ebuild,v 1.1 
2015/08/06 12:02:36 mgorny Exp $

EAPI=5

inherit eutils flag-o-matic multilib-minimal

DESCRIPTION=GTK+ version of wxWidgets, a cross-platform C++ GUI toolkit
HOMEPAGE=http://wxwidgets.org/;

# we use the wxPython tarballs because they include the full wxGTK sources and
# docs, and are released more frequently than wxGTK.
SRC_URI=mirror://sourceforge/wxpython/wxPython-src-${PV}.tar.bz2
doc? ( mirror://sourceforge/wxpython/wxPython-docs-${PV}.tar.bz2 )

KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 
~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos 
~x86-macos
IUSE=+X aqua doc debug gstreamer libnotify opengl sdl tiff webkit

SLOT=3.0

RDEPEND=
dev-libs/expat[${MULTILIB_USEDEP}]
sdl?( media-libs/libsdl[${MULTILIB_USEDEP}] )
X?  (
=dev-libs/glib-2.22:2[${MULTILIB_USEDEP}]
media-libs/libpng:0=[${MULTILIB_USEDEP}]
sys-libs/zlib[${MULTILIB_USEDEP}]
virtual/jpeg:=[${MULTILIB_USEDEP}]
=x11-libs/gtk+-2.18:2[${MULTILIB_USEDEP}]
x11-libs/gdk-pixbuf[${MULTILIB_USEDEP}]
x11-libs/libSM[${MULTILIB_USEDEP}]
x11-libs/libXxf86vm[${MULTILIB_USEDEP}]
x11-libs/pango[X,${MULTILIB_USEDEP}]
gstreamer? (
media-libs/gstreamer:0.10[${MULTILIB_USEDEP}]
media-libs/gst-plugins-base:0.10[${MULTILIB_USEDEP}] )
libnotify? ( x11-libs/libnotify[${MULTILIB_USEDEP}] )
opengl? ( virtual/opengl[${MULTILIB_USEDEP}] )
tiff?   ( media-libs/tiff:0[${MULTILIB_USEDEP}] )
webkit? ( net-libs/webkit-gtk:2 )
)
aqua? (
=x11-libs/gtk+-2.4:2[aqua=,${MULTILIB_USEDEP}]
virtual/jpeg:=[${MULTILIB_USEDEP}]
tiff?   ( media-libs/tiff:0[${MULTILIB_USEDEP}] )
)

DEPEND=${RDEPEND}
virtual/pkgconfig[${MULTILIB_USEDEP}]
opengl? ( virtual/glu[${MULTILIB_USEDEP}] )
X?  (
x11-proto/xproto[${MULTILIB_USEDEP}]
x11-proto/xineramaproto[${MULTILIB_USEDEP}]
x11-proto/xf86vidmodeproto[${MULTILIB_USEDEP}]
)

PDEPEND==app-eselect/eselect-wxwidgets-20131230

LICENSE=wxWinLL-3
GPL-2
doc?( wxWinFDL-3 )


[gentoo-commits] gentoo-x86 commit in profiles: ChangeLog use.desc

2015-08-05 Thread Michal Gorny (mgorny)
mgorny  15/08/05 06:49:24

  Modified: ChangeLog use.desc
  Log:
  Jabber is gone, long live XMPP!

Revision  ChangesPath
1.10226  profiles/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/ChangeLog?rev=1.10226view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/ChangeLog?rev=1.10226content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/ChangeLog?r1=1.10225r2=1.10226

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v
retrieving revision 1.10225
retrieving revision 1.10226
diff -u -r1.10225 -r1.10226
--- ChangeLog   4 Aug 2015 21:06:57 -   1.10225
+++ ChangeLog   5 Aug 2015 06:49:24 -   1.10226
@@ -1,11 +1,14 @@
 # ChangeLog for profile directory
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.10225 2015/08/04 
21:06:57 johu Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.10226 2015/08/05 
06:49:24 mgorny Exp $
 #
 # This ChangeLog should include records for all changes in profiles directory.
 # Only typo fixes which don't affect portage/repoman behaviour could be avoided
 # here. If in doubt put a record here!
 
+  05 Aug 2015; Michał Górny mgo...@gentoo.org use.desc:
+  Jabber is gone, long live XMPP!
+
   04 Aug 2015; Johannes Huber j...@gentoo.org package.mask:
   Remove obsolete mask app-admin/system-config-printer-{common,gnome}. Packages
   removed, bug #553128.



1.528profiles/use.desc

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/use.desc?rev=1.528view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/use.desc?rev=1.528content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/use.desc?r1=1.527r2=1.528

Index: use.desc
===
RCS file: /var/cvsroot/gentoo-x86/profiles/use.desc,v
retrieving revision 1.527
retrieving revision 1.528
diff -u -r1.527 -r1.528
--- use.desc13 Jul 2015 20:30:51 -  1.527
+++ use.desc5 Aug 2015 06:49:24 -   1.528
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/use.desc,v 1.527 2015/07/13 
20:30:51 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/use.desc,v 1.528 2015/08/05 
06:49:24 mgorny Exp $
 
 # Keep them sorted
 
@@ -153,7 +153,6 @@
 ipod - Enable support for iPod device access
 ipv6 - Add support for IP version 6
 iwmmxt - Add support for optimizations for ARM iwMMXt instructions
-jabber - Enable jabber IM protocol support
 jack - Add support for the JACK Audio Connection Kit
 java - Add support for Java
 javascript - Enable javascript support






[gentoo-commits] gentoo-x86 commit in sci-misc/boinc: boinc-7.2.0.ebuild boinc-7.2.0-r1.ebuild boinc-7.4.42.ebuild ChangeLog

2015-08-04 Thread Michal Gorny (mgorny)
mgorny  15/08/04 13:28:13

  Modified: boinc-7.2.0.ebuild boinc-7.2.0-r1.ebuild ChangeLog
  Added:boinc-7.4.42.ebuild
  Log:
  Version bump with minor fixes. 
https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/135 by marbre.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.2  sci-misc/boinc/boinc-7.2.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-misc/boinc/boinc-7.2.0.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-misc/boinc/boinc-7.2.0.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-misc/boinc/boinc-7.2.0.ebuild?r1=1.1r2=1.2

Index: boinc-7.2.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sci-misc/boinc/boinc-7.2.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- boinc-7.2.0.ebuild  30 Jun 2013 14:52:47 -  1.1
+++ boinc-7.2.0.ebuild  4 Aug 2015 13:28:13 -   1.2
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-misc/boinc/boinc-7.2.0.ebuild,v 1.1 
2013/06/30 14:52:47 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-misc/boinc/boinc-7.2.0.ebuild,v 1.2 
2015/08/04 13:28:13 mgorny Exp $
 
 EAPI=5
 
@@ -23,7 +23,7 @@
!sci-misc/boinc-bin
!app-admin/quickswitch
=app-misc/ca-certificates-20080809
-   dev-libs/openssl
+   dev-libs/openssl:0=
net-misc/curl[ssl,-gnutls(-),-nss(-),curl_ssl_openssl(+)]
sys-apps/util-linux
sys-libs/zlib
@@ -35,7 +35,7 @@
dev-db/sqlite:3
media-libs/freeglut
sys-libs/glibc:2.2
-   virtual/jpeg
+   virtual/jpeg:0=
x11-libs/gtk+:2
=x11-libs/libnotify-0.7
x11-libs/wxGTK:2.8[X,opengl]



1.2  sci-misc/boinc/boinc-7.2.0-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-misc/boinc/boinc-7.2.0-r1.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-misc/boinc/boinc-7.2.0-r1.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-misc/boinc/boinc-7.2.0-r1.ebuild?r1=1.1r2=1.2

Index: boinc-7.2.0-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sci-misc/boinc/boinc-7.2.0-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- boinc-7.2.0-r1.ebuild   31 Dec 2013 13:05:51 -  1.1
+++ boinc-7.2.0-r1.ebuild   4 Aug 2015 13:28:13 -   1.2
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-misc/boinc/boinc-7.2.0-r1.ebuild,v 1.1 
2013/12/31 13:05:51 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-misc/boinc/boinc-7.2.0-r1.ebuild,v 1.2 
2015/08/04 13:28:13 mgorny Exp $
 
 EAPI=5
 
@@ -23,7 +23,7 @@
!sci-misc/boinc-bin
!app-admin/quickswitch
=app-misc/ca-certificates-20080809
-   dev-libs/openssl
+   dev-libs/openssl:0=
net-misc/curl[ssl,-gnutls(-),-nss(-),curl_ssl_openssl(+)]
sys-apps/util-linux
sys-libs/zlib
@@ -35,7 +35,7 @@
dev-db/sqlite:3
media-libs/freeglut
sys-libs/glibc:2.2
-   virtual/jpeg
+   virtual/jpeg:0=
x11-libs/gtk+:2
=x11-libs/libnotify-0.7
x11-libs/wxGTK:2.8[X,opengl]



1.113sci-misc/boinc/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-misc/boinc/ChangeLog?rev=1.113view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-misc/boinc/ChangeLog?rev=1.113content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-misc/boinc/ChangeLog?r1=1.112r2=1.113

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sci-misc/boinc/ChangeLog,v
retrieving revision 1.112
retrieving revision 1.113
diff -u -r1.112 -r1.113
--- ChangeLog   31 Dec 2013 13:05:51 -  1.112
+++ ChangeLog   4 Aug 2015 13:28:13 -   1.113
@@ -1,6 +1,13 @@
 # ChangeLog for sci-misc/boinc
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-misc/boinc/ChangeLog,v 1.112 2013/12/31 
13:05:51 pacho Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sci-misc/boinc/ChangeLog,v 1.113 2015/08/04 
13:28:13 mgorny Exp $
+
+*boinc-7.4.42 (04 Aug 

[gentoo-commits] gentoo-x86 commit in dev-lang/ekopath: ekopath-6.0.468_p20150803.ebuild ChangeLog

2015-08-04 Thread Michal Gorny (mgorny)
mgorny  15/08/04 16:35:59

  Modified: ChangeLog
  Added:ekopath-6.0.468_p20150803.ebuild
  Log:
  New snapshot
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.32 dev-lang/ekopath/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ekopath/ChangeLog?rev=1.32view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ekopath/ChangeLog?rev=1.32content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ekopath/ChangeLog?r1=1.31r2=1.32

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-lang/ekopath/ChangeLog,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- ChangeLog   8 Jul 2015 17:31:44 -   1.31
+++ ChangeLog   4 Aug 2015 16:35:58 -   1.32
@@ -1,6 +1,12 @@
 # ChangeLog for dev-lang/ekopath
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/ekopath/ChangeLog,v 1.31 
2015/07/08 17:31:44 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/ekopath/ChangeLog,v 1.32 
2015/08/04 16:35:58 mgorny Exp $
+
+*ekopath-6.0.468_p20150803 (04 Aug 2015)
+
+  04 Aug 2015; Michał Górny mgo...@gentoo.org
+  +ekopath-6.0.468_p20150803.ebuild:
+  New snapshot
 
 *ekopath-6.0.439_p20150707 (08 Jul 2015)
 



1.1  dev-lang/ekopath/ekopath-6.0.468_p20150803.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ekopath/ekopath-6.0.468_p20150803.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ekopath/ekopath-6.0.468_p20150803.ebuild?rev=1.1content-type=text/plain

Index: ekopath-6.0.468_p20150803.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-lang/ekopath/ekopath-6.0.468_p20150803.ebuild,v 1.1 
2015/08/04 16:35:58 mgorny Exp $

EAPI=5

inherit versionator multilib pax-utils

MY_PV=$(get_version_component_range 1-3)
DATE=$(get_version_component_range 4)
DATE=${DATE#p}
DATE=${DATE:0:4}-${DATE:4:2}-${DATE:6}
INSTALLER=${PN}-${DATE}-installer.run

DESCRIPTION=PathScale EKOPath Compiler Suite
HOMEPAGE=http://www.pathscale.com/ekopath-compiler-suite;
SRC_URI=http://c591116.r16.cf2.rackcdn.com/${PN}/nightly/Linux/${INSTALLER};

LICENSE=all-rights-reserved
SLOT=0
KEYWORDS=~amd64
IUSE=

DEPEND=!!app-arch/rpm
RDEPEND=

RESTRICT=bindist mirror

QA_PREBUILT=
opt/${PN}/lib/${MY_PV}/x8664/*
opt/${PN}/bin/*

S=${WORKDIR}

src_unpack() {
cp ${DISTDIR}/${INSTALLER} ${S}/ || die
chmod +x ${S}/${INSTALLER} || die
}

src_prepare() {
cat  99${PN} -EOF
PATH=${EROOT%/}/opt/${PN}/bin
ROOTPATH=${EROOT%/}/opt/${PN}/bin

LDPATH=${EROOT%/}/opt/${PN}/lib:${EROOT%/}/opt/${PN}/lib/${MY_PV}/x8664/64
MANPATH=${EROOT%/}/opt/${PN}/docs/man
EOF
}

src_install() {
# EI_PAX marking is obsolete and PT_PAX breaks the binary.
# We must use XT_PAX to run the installer.
if [[ ${PAX_MARKINGS} == XT ]]; then
pax-mark m ${INSTALLER}
fi

./${INSTALLER} \
--prefix ${ED%/}/opt/${PN} \
--mode unattended || die

if [[ ! -d ${ED%/}/opt/${PN}/lib/${MY_PV} ]]; then
local guess
cd ${ED%/}/opt/${PN}/lib  guess=( * )

if [[ ${guess[@]} ]]; then
die Incorrect release version in PV, guessing it 
should be: ${guess[*]}
else
die No libdir installed
fi
fi
[[ -x ${ED%}/opt/${PN}/bin/pathcc ]] || die No pathcc executable was 
installed, your hardware is unsupported most likely

rm -r ${ED}/opt/${PN}/uninstall* || die
doenvd 99${PN}
}






[gentoo-commits] gentoo-x86 commit in net-dns/avahi: avahi-0.6.31-r8.ebuild ChangeLog

2015-08-04 Thread Michal Gorny (mgorny)
mgorny  15/08/04 16:13:25

  Modified: avahi-0.6.31-r8.ebuild ChangeLog
  Log:
  Fix systemd service install directory, bug #556650 by Alexander Tsoy.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.4  net-dns/avahi/avahi-0.6.31-r8.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/avahi-0.6.31-r8.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/avahi-0.6.31-r8.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/avahi-0.6.31-r8.ebuild?r1=1.3r2=1.4

Index: avahi-0.6.31-r8.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-dns/avahi/avahi-0.6.31-r8.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- avahi-0.6.31-r8.ebuild  4 Aug 2015 13:15:26 -   1.3
+++ avahi-0.6.31-r8.ebuild  4 Aug 2015 16:13:25 -   1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/avahi/avahi-0.6.31-r8.ebuild,v 1.3 
2015/08/04 13:15:26 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/avahi/avahi-0.6.31-r8.ebuild,v 1.4 
2015/08/04 16:13:25 mgorny Exp $
 
 EAPI=5
 
@@ -215,7 +215,9 @@
use mdnsresponder-compat  dosym avahi-compat-libdns_sd/dns_sd.h 
/usr/include/dns_sd.h
 
# Needed for running on systemd properly, bug #537000
-   multilib_is_native_abi  dosym avahi-daemon.service 
/usr/$(get_libdir)/systemd/system/dbus-org.freedesktop.Avahi.service
+   if multilib_is_native_abi; then
+   ln -s avahi-daemon.service 
${D}$(systemd_get_unitdir)/dbus-org.freedesktop.Avahi.service || die
+   fi
 
if multilib_is_native_abi  use doc; then
dohtml -r doxygen/html/. || die



1.289net-dns/avahi/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/ChangeLog?rev=1.289view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/ChangeLog?rev=1.289content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/ChangeLog?r1=1.288r2=1.289

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-dns/avahi/ChangeLog,v
retrieving revision 1.288
retrieving revision 1.289
diff -u -r1.288 -r1.289
--- ChangeLog   4 Aug 2015 13:15:26 -   1.288
+++ ChangeLog   4 Aug 2015 16:13:25 -   1.289
@@ -1,6 +1,9 @@
 # ChangeLog for net-dns/avahi
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/avahi/ChangeLog,v 1.288 2015/08/04 
13:15:26 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/avahi/ChangeLog,v 1.289 2015/08/04 
16:13:25 mgorny Exp $
+
+  04 Aug 2015; Michał Górny mgo...@gentoo.org avahi-0.6.31-r8.ebuild:
+  Fix systemd service install directory, bug #556650 by Alexander Tsoy.
 
   04 Aug 2015; Mikle Kolyada zlog...@gentoo.org avahi-0.6.31-r8.ebuild:
   x86 stable wrt bug #554784






[gentoo-commits] gentoo-x86 commit in sys-freebsd/freebsd-ubin: freebsd-ubin-10.1-r1.ebuild ChangeLog freebsd-ubin-10.1.ebuild

2015-07-29 Thread Michal Gorny (mgorny)
mgorny  15/07/29 12:09:35

  Modified: ChangeLog
  Added:freebsd-ubin-10.1-r1.ebuild
  Removed:  freebsd-ubin-10.1.ebuild
  Log:
  Fix FreeBSD-SA-15:14.bsdpatch. 
https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/186 by nigoro.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.104sys-freebsd/freebsd-ubin/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-freebsd/freebsd-ubin/ChangeLog?rev=1.104view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-freebsd/freebsd-ubin/ChangeLog?rev=1.104content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-freebsd/freebsd-ubin/ChangeLog?r1=1.103r2=1.104

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-freebsd/freebsd-ubin/ChangeLog,v
retrieving revision 1.103
retrieving revision 1.104
diff -u -r1.103 -r1.104
--- ChangeLog   5 Jun 2015 16:43:55 -   1.103
+++ ChangeLog   29 Jul 2015 12:09:34 -  1.104
@@ -1,6 +1,13 @@
 # ChangeLog for sys-freebsd/freebsd-ubin
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-freebsd/freebsd-ubin/ChangeLog,v 1.103 
2015/06/05 16:43:55 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-freebsd/freebsd-ubin/ChangeLog,v 1.104 
2015/07/29 12:09:34 mgorny Exp $
+
+*freebsd-ubin-10.1-r1 (29 Jul 2015)
+
+  29 Jul 2015; Michał Górny mgo...@gentoo.org +freebsd-ubin-10.1-r1.ebuild,
+  -freebsd-ubin-10.1.ebuild:
+  Fix FreeBSD-SA-15:14.bsdpatch. 
https://github.com/gentoo/gentoo-portage-rsync-
+  mirror/pull/186 by nigoro.
 
   05 Jun 2015; Michał Górny mgo...@gentoo.org freebsd-ubin-10.1.ebuild:
   Bump to EAPI=5. Use upstream tarballs.



1.1  sys-freebsd/freebsd-ubin/freebsd-ubin-10.1-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-freebsd/freebsd-ubin/freebsd-ubin-10.1-r1.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-freebsd/freebsd-ubin/freebsd-ubin-10.1-r1.ebuild?rev=1.1content-type=text/plain

Index: freebsd-ubin-10.1-r1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/sys-freebsd/freebsd-ubin/freebsd-ubin-10.1-r1.ebuild,v 
1.1 2015/07/29 12:09:34 mgorny Exp $

EAPI=5

inherit bsdmk freebsd flag-o-matic pam multilib multibuild multilib-build

DESCRIPTION=FreeBSD's base system source for /usr/bin
SLOT=0
IUSE=ar atm audit bluetooth ipv6 kerberos netware nis ssl usb build zfs
LICENSE=BSD zfs? ( CDDL )

# Security Advisory and Errata patches.
UPSTREAM_PATCHES=( SA-15:14/bsdpatch.patch )

if [[ ${PV} != ** ]]; then
KEYWORDS=~amd64-fbsd ~sparc-fbsd ~x86-fbsd
SRC_URI=${SRC_URI}
$(freebsd_upstream_patches)
fi

EXTRACTONLY=
usr.bin/
contrib/
lib/
etc/
bin/
include/

use zfs  EXTRACTONLY+=cddl/
use build  EXTRACTONLY+=sys/

RDEPEND==sys-freebsd/freebsd-lib-${RV}*[usb?,bluetooth?,${MULTILIB_USEDEP}]
ssl? ( dev-libs/openssl )
kerberos? ( virtual/krb5 )
ar? ( =app-arch/libarchive-3 )
virtual/pam
sys-libs/zlib
=sys-libs/ncurses-5.9
!sys-process/fuser-bsd
!dev-util/csup
!dev-libs/libiconv
!sys-freebsd/freebsd-contrib

DEPEND=${RDEPEND}
sys-devel/flex
!build? ( =sys-freebsd/freebsd-sources-${RV}* )
=sys-freebsd/freebsd-mk-defs-${RV}*

RDEPEND=${RDEPEND}
=sys-auth/pambase-20080219.1
sys-process/cronbase

S=${WORKDIR}/usr.bin

PATCHES=( ${FILESDIR}/${PN}-6.0-bsdcmp.patch
${FILESDIR}/${PN}-9.0-fixmakefiles.patch
${FILESDIR}/${PN}-setXid.patch
${FILESDIR}/${PN}-lint-stdarg.patch
${FILESDIR}/${PN}-8.0-xinstall.patch
${FILESDIR}/${PN}-9.1-bsdar.patch
${FILESDIR}/${PN}-9.1-minigzip.patch
${FILESDIR}/${PN}-10.0-atf.patch
${FILESDIR}/${PN}-10.0-dtc-gcc46.patch
${FILESDIR}/${PN}-10.0-kdump-ioctl.patch
${FILESDIR}/${PN}-10.0-mandoc.patch
${FILESDIR}/${PN}-10.1-kdump-workaround.patch )

# Here we remove some sources we don't need because they are already
# provided by portage's packages or similar. In order:
# - Archiving tools, provided by their own ebuilds
# - ncurses stuff
# - less stuff
# - bind utils
# - rsh stuff
# - binutils gprof
# - dc stuff
# and the rest are misc utils we already provide somewhere else.
REMOVE_SUBDIRS=bzip2 bzip2recover tar cpio
gzip gprof
lzmainfo xz xzdec
unzip
tput tset tabs
less lessecho lesskey
hesinfo host
rsh rlogin rusers rwho ruptime
compile_et lex vi smbutil file vacation nc ftp telnet
 

[gentoo-commits] gentoo-x86 commit in sys-freebsd/freebsd-sources: freebsd-sources-10.1-r6.ebuild ChangeLog freebsd-sources-10.1-r5.ebuild

2015-07-29 Thread Michal Gorny (mgorny)
mgorny  15/07/29 12:14:43

  Modified: ChangeLog
  Added:freebsd-sources-10.1-r6.ebuild
  Removed:  freebsd-sources-10.1-r5.ebuild
  Log:
  Fix FreeBSD-SA-15:15.tcp. 
https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/187 by nigoro.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.117sys-freebsd/freebsd-sources/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-freebsd/freebsd-sources/ChangeLog?rev=1.117view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-freebsd/freebsd-sources/ChangeLog?rev=1.117content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-freebsd/freebsd-sources/ChangeLog?r1=1.116r2=1.117

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-freebsd/freebsd-sources/ChangeLog,v
retrieving revision 1.116
retrieving revision 1.117
diff -u -r1.116 -r1.117
--- ChangeLog   25 Jul 2015 12:07:51 -  1.116
+++ ChangeLog   29 Jul 2015 12:14:42 -  1.117
@@ -1,6 +1,13 @@
 # ChangeLog for sys-freebsd/freebsd-sources
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-freebsd/freebsd-sources/ChangeLog,v 
1.116 2015/07/25 12:07:51 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-freebsd/freebsd-sources/ChangeLog,v 
1.117 2015/07/29 12:14:42 mgorny Exp $
+
+*freebsd-sources-10.1-r6 (29 Jul 2015)
+
+  29 Jul 2015; Michał Górny mgo...@gentoo.org 
+freebsd-sources-10.1-r6.ebuild,
+  -freebsd-sources-10.1-r5.ebuild:
+  Fix FreeBSD-SA-15:15.tcp. https://github.com/gentoo/gentoo-portage-rsync-
+  mirror/pull/187 by nigoro.
 
 *freebsd-sources-10.1-r5 (25 Jul 2015)
 



1.1  sys-freebsd/freebsd-sources/freebsd-sources-10.1-r6.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-freebsd/freebsd-sources/freebsd-sources-10.1-r6.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-freebsd/freebsd-sources/freebsd-sources-10.1-r6.ebuild?rev=1.1content-type=text/plain

Index: freebsd-sources-10.1-r6.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/sys-freebsd/freebsd-sources/freebsd-sources-10.1-r6.ebuild,v
 1.1 2015/07/29 12:14:42 mgorny Exp $

EAPI=5

inherit bsdmk freebsd flag-o-matic toolchain-funcs

DESCRIPTION=FreeBSD kernel sources
SLOT=0

IUSE=+build-kernel debug dtrace zfs

# Security Advisory and Errata patches.
UPSTREAM_PATCHES=( SA-15:02/sctp.patch
SA-15:03/sctp.patch
SA-15:04/igmp.patch
SA-15:04/igmp-errata.patch
SA-15:09/ipv6.patch
SA-15:13/tcp.patch
SA-15:15/tcp-9.3-10.1.patch
EN-15:01/vt.patch
EN-15:05/ufs.patch
EN-15:07/zfs.patch )

if [[ ${PV} != ** ]]; then
KEYWORDS=~amd64-fbsd ~sparc-fbsd ~x86-fbsd
SRC_URI=${SRC_URI}
$(freebsd_upstream_patches)
fi

EXTRACTONLY=
sys/
contrib/bmake/
usr.bin/bmake/

use zfs  EXTRACTONLY+=cddl/

RDEPEND=dtrace? ( =sys-freebsd/freebsd-cddl-9.2_rc1 )
=sys-freebsd/freebsd-mk-defs-${RV}*
!sys-freebsd/virtio-kmod
!sys-fs/fuse4bsd
!sys-freebsd/freebsd-sources-9.2_beta1
DEPEND=build-kernel? (
dtrace? ( =sys-freebsd/freebsd-cddl-9.2_rc1 )
=sys-freebsd/freebsd-usbin-9.1
=sys-freebsd/freebsd-mk-defs-${RV}*
)

RESTRICT=strip binchecks

S=${WORKDIR}/sys

KERN_BUILD=GENTOO

PATCHES=( ${FILESDIR}/${PN}-9.0-disable-optimization.patch
${FILESDIR}/${PN}-10.0-gentoo.patch
${FILESDIR}/${PN}-6.0-flex-2.5.31.patch
${FILESDIR}/${PN}-7.1-types.h-fix.patch
${FILESDIR}/${PN}-8.0-subnet-route-pr40133.patch
${FILESDIR}/${PN}-7.1-includes.patch
${FILESDIR}/${PN}-9.0-sysctluint.patch
${FILESDIR}/${PN}-9.2-gentoo-gcc.patch
${FILESDIR}/${PN}-10.1-gcc48.patch )

pkg_setup() {
# WITHOUT_SSP= is required to boot kernel that compiled with newer gcc, 
bug #477914
[[ $(tc-getCC) == *gcc* ]]  mymakeopts=${mymakeopts} WITHOUT_SSP=
use zfs || mymakeopts=${mymakeopts} WITHOUT_CDDL=
}

src_prepare() {
local conf=${S}/$(tc-arch-kernel)/conf/${KERN_BUILD}

# This replaces the gentoover patch, it doesn't need reapply every time.
sed -i -e 's:^REVISION=.*:REVISION='${PVR}':' \
-e 's:^BRANCH=.*:BRANCH=Gentoo:' \
-e 's:^VERSION=.*:VERSION=${TYPE} ${BRANCH} ${REVISION}:' \
${S}/conf/newvers.sh

# __FreeBSD_cc_version comes from FreeBSD's gcc.
# on 10.0-RELEASE it's 101.
# FYI, can get it from gnu/usr.bin/cc/cc_tools/freebsd-native.h.

[gentoo-commits] gentoo-x86 commit in eclass: ChangeLog python-utils-r1.eclass

2015-07-27 Thread Michal Gorny (mgorny)
mgorny  15/07/27 16:32:46

  Modified: ChangeLog python-utils-r1.eclass
  Log:
  python_wrapper_setup(): replace symlinks with shell wrappers to avoid 
triggering Python 3.4+ magical prefix support.

Revision  ChangesPath
1.1729   eclass/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1729view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1729content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.1728r2=1.1729

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
retrieving revision 1.1728
retrieving revision 1.1729
diff -u -r1.1728 -r1.1729
--- ChangeLog   27 Jul 2015 16:31:01 -  1.1728
+++ ChangeLog   27 Jul 2015 16:32:46 -  1.1729
@@ -1,6 +1,10 @@
 # ChangeLog for eclass directory
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1728 2015/07/27 
16:31:01 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1729 2015/07/27 
16:32:46 mgorny Exp $
+
+  27 Jul 2015; Michał Górny mgo...@gentoo.org python-utils-r1.eclass:
+  python_wrapper_setup(): replace symlinks with shell wrappers to avoid
+  triggering Python 3.4+ magical prefix support.
 
   27 Jul 2015; Mike Gilbert flop...@gentoo.org python-r1.eclass:
   Drop the USE_PYTHON warning.



1.85 eclass/python-utils-r1.eclass

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/python-utils-r1.eclass?rev=1.85view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/python-utils-r1.eclass?rev=1.85content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/python-utils-r1.eclass?r1=1.84r2=1.85

Index: python-utils-r1.eclass
===
RCS file: /var/cvsroot/gentoo-x86/eclass/python-utils-r1.eclass,v
retrieving revision 1.84
retrieving revision 1.85
diff -u -r1.84 -r1.85
--- python-utils-r1.eclass  25 Jul 2015 10:07:36 -  1.84
+++ python-utils-r1.eclass  27 Jul 2015 16:32:46 -  1.85
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/python-utils-r1.eclass,v 1.84 
2015/07/25 10:07:36 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/python-utils-r1.eclass,v 1.85 
2015/07/27 16:32:46 mgorny Exp $
 
 # @ECLASS: python-utils-r1
 # @MAINTAINER:
@@ -855,14 +855,25 @@
fi
 
# Python interpreter
-   ln -s ${PYTHON} ${workdir}/bin/python || die
-   ln -s python ${workdir}/bin/python${pyver} || die
+   # note: we don't use symlinks because python likes to do some
+   # symlink reading magic that breaks stuff
+   # https://bugs.gentoo.org/show_bug.cgi?id=555752
+   cat  ${workdir}/bin/python -_EOF_
+   #!/bin/sh
+   exec ${PYTHON} \${@}
+   _EOF_
+   cp ${workdir}/bin/python ${workdir}/bin/python${pyver} || 
die
+   chmod +x ${workdir}/bin/python 
${workdir}/bin/python${pyver} || die
 
local nonsupp=()
 
# CPython-specific
if [[ ${EPYTHON} == python* ]]; then
-   ln -s ${PYTHON}-config ${workdir}/bin/python-config 
|| die
+   cat  ${workdir}/bin/python-config -_EOF_
+   #!/bin/sh
+   exec ${PYTHON}-config \${@}
+   _EOF_
+   chmod +x ${workdir}/bin/python-config || die
 
# Python 2.6+.
ln -s ${PYTHON/python/2to3-} ${workdir}/bin/2to3 || 
die






[gentoo-commits] gentoo-x86 commit in eclass: ChangeLog python-utils-r1.eclass

2015-07-27 Thread Michal Gorny (mgorny)
mgorny  15/07/27 16:34:10

  Modified: ChangeLog python-utils-r1.eclass
  Log:
  python_wrapper_setup(): wrap pythonN-config as well as suggested by PEP and 
required by some applications, bug #94.

Revision  ChangesPath
1.1730   eclass/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1730view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1730content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.1729r2=1.1730

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
retrieving revision 1.1729
retrieving revision 1.1730
diff -u -r1.1729 -r1.1730
--- ChangeLog   27 Jul 2015 16:32:46 -  1.1729
+++ ChangeLog   27 Jul 2015 16:34:10 -  1.1730
@@ -1,6 +1,10 @@
 # ChangeLog for eclass directory
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1729 2015/07/27 
16:32:46 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1730 2015/07/27 
16:34:10 mgorny Exp $
+
+  27 Jul 2015; Michał Górny mgo...@gentoo.org python-utils-r1.eclass:
+  python_wrapper_setup(): wrap pythonN-config as well as suggested by PEP and
+  required by some applications, bug #94.
 
   27 Jul 2015; Michał Górny mgo...@gentoo.org python-utils-r1.eclass:
   python_wrapper_setup(): replace symlinks with shell wrappers to avoid



1.86 eclass/python-utils-r1.eclass

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/python-utils-r1.eclass?rev=1.86view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/python-utils-r1.eclass?rev=1.86content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/python-utils-r1.eclass?r1=1.85r2=1.86

Index: python-utils-r1.eclass
===
RCS file: /var/cvsroot/gentoo-x86/eclass/python-utils-r1.eclass,v
retrieving revision 1.85
retrieving revision 1.86
diff -u -r1.85 -r1.86
--- python-utils-r1.eclass  27 Jul 2015 16:32:46 -  1.85
+++ python-utils-r1.eclass  27 Jul 2015 16:34:10 -  1.86
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/python-utils-r1.eclass,v 1.85 
2015/07/27 16:32:46 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/python-utils-r1.eclass,v 1.86 
2015/07/27 16:34:10 mgorny Exp $
 
 # @ECLASS: python-utils-r1
 # @MAINTAINER:
@@ -873,7 +873,10 @@
#!/bin/sh
exec ${PYTHON}-config \${@}
_EOF_
-   chmod +x ${workdir}/bin/python-config || die
+   cp ${workdir}/bin/python-config \
+   ${workdir}/bin/python${pyver}-config || die
+   chmod +x ${workdir}/bin/python-config \
+   ${workdir}/bin/python${pyver}-config || die
 
# Python 2.6+.
ln -s ${PYTHON/python/2to3-} ${workdir}/bin/2to3 || 
die
@@ -883,7 +886,7 @@
${workdir}/pkgconfig/python.pc || die
ln -s python.pc 
${workdir}/pkgconfig/python${pyver}.pc || die
else
-   nonsupp+=( 2to3 python-config )
+   nonsupp+=( 2to3 python-config python${pyver}-config )
fi
 
local x






[gentoo-commits] gentoo-x86 commit in eclass: ChangeLog python-utils-r1.eclass

2015-07-27 Thread Michal Gorny (mgorny)
mgorny  15/07/27 16:35:19

  Modified: ChangeLog python-utils-r1.eclass
  Log:
  python_wrapper_setup(): make banned helpers exit with 127.

Revision  ChangesPath
1.1732   eclass/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1732view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1732content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.1731r2=1.1732

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
retrieving revision 1.1731
retrieving revision 1.1732
diff -u -r1.1731 -r1.1732
--- ChangeLog   27 Jul 2015 16:34:48 -  1.1731
+++ ChangeLog   27 Jul 2015 16:35:19 -  1.1732
@@ -1,6 +1,9 @@
 # ChangeLog for eclass directory
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1731 2015/07/27 
16:34:48 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1732 2015/07/27 
16:35:19 mgorny Exp $
+
+  27 Jul 2015; Michał Górny mgo...@gentoo.org python-utils-r1.eclass:
+  python_wrapper_setup(): make banned helpers exit with 127.
 
   27 Jul 2015; Michał Górny mgo...@gentoo.org python-utils-r1.eclass:
   Ban calling pythonN and pythonN-config when the other version of Python is



1.88 eclass/python-utils-r1.eclass

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/python-utils-r1.eclass?rev=1.88view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/python-utils-r1.eclass?rev=1.88content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/python-utils-r1.eclass?r1=1.87r2=1.88

Index: python-utils-r1.eclass
===
RCS file: /var/cvsroot/gentoo-x86/eclass/python-utils-r1.eclass,v
retrieving revision 1.87
retrieving revision 1.88
diff -u -r1.87 -r1.88
--- python-utils-r1.eclass  27 Jul 2015 16:34:48 -  1.87
+++ python-utils-r1.eclass  27 Jul 2015 16:35:19 -  1.88
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/python-utils-r1.eclass,v 1.87 
2015/07/27 16:34:48 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/python-utils-r1.eclass,v 1.88 
2015/07/27 16:35:19 mgorny Exp $
 
 # @ECLASS: python-utils-r1
 # @MAINTAINER:
@@ -896,7 +896,7 @@
cat ${workdir}/bin/${x} __EOF__
 #!/bin/sh
 echo ${x} is not supported by ${EPYTHON} 2
-exit 1
+exit 127
 __EOF__
chmod +x ${workdir}/bin/${x} || die
done






[gentoo-commits] gentoo-x86 commit in eclass: ChangeLog python-utils-r1.eclass

2015-07-27 Thread Michal Gorny (mgorny)
mgorny  15/07/27 16:34:48

  Modified: ChangeLog python-utils-r1.eclass
  Log:
  Ban calling pythonN and pythonN-config when the other version of Python is 
selected (i.e. ban python2 when python3 is used).

Revision  ChangesPath
1.1731   eclass/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1731view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1731content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.1730r2=1.1731

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
retrieving revision 1.1730
retrieving revision 1.1731
diff -u -r1.1730 -r1.1731
--- ChangeLog   27 Jul 2015 16:34:10 -  1.1730
+++ ChangeLog   27 Jul 2015 16:34:48 -  1.1731
@@ -1,6 +1,10 @@
 # ChangeLog for eclass directory
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1730 2015/07/27 
16:34:10 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1731 2015/07/27 
16:34:48 mgorny Exp $
+
+  27 Jul 2015; Michał Górny mgo...@gentoo.org python-utils-r1.eclass:
+  Ban calling pythonN and pythonN-config when the other version of Python is
+  selected (i.e. ban python2 when python3 is used).
 
   27 Jul 2015; Michał Górny mgo...@gentoo.org python-utils-r1.eclass:
   python_wrapper_setup(): wrap pythonN-config as well as suggested by PEP and



1.87 eclass/python-utils-r1.eclass

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/python-utils-r1.eclass?rev=1.87view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/python-utils-r1.eclass?rev=1.87content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/python-utils-r1.eclass?r1=1.86r2=1.87

Index: python-utils-r1.eclass
===
RCS file: /var/cvsroot/gentoo-x86/eclass/python-utils-r1.eclass,v
retrieving revision 1.86
retrieving revision 1.87
diff -u -r1.86 -r1.87
--- python-utils-r1.eclass  27 Jul 2015 16:34:10 -  1.86
+++ python-utils-r1.eclass  27 Jul 2015 16:34:48 -  1.87
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/python-utils-r1.eclass,v 1.86 
2015/07/27 16:34:10 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/python-utils-r1.eclass,v 1.87 
2015/07/27 16:34:48 mgorny Exp $
 
 # @ECLASS: python-utils-r1
 # @MAINTAINER:
@@ -847,11 +847,13 @@
local EPYTHON PYTHON
python_export ${impl} EPYTHON PYTHON
 
-   local pyver
+   local pyver pyother
if python_is_python3; then
pyver=3
+   pyother=2
else
pyver=2
+   pyother=3
fi
 
# Python interpreter
@@ -865,7 +867,7 @@
cp ${workdir}/bin/python ${workdir}/bin/python${pyver} || 
die
chmod +x ${workdir}/bin/python 
${workdir}/bin/python${pyver} || die
 
-   local nonsupp=()
+   local nonsupp=( python${pyother} python${pyother}-config )
 
# CPython-specific
if [[ ${EPYTHON} == python* ]]; then






[gentoo-commits] gentoo-x86 commit in x11-terms/roxterm: roxterm-2.9.3-r1.ebuild ChangeLog

2015-07-27 Thread Michal Gorny (mgorny)
mgorny  15/07/27 18:47:31

  Modified: ChangeLog
  Added:roxterm-2.9.3-r1.ebuild
  Log:
  Convert to python-any-r1
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.74 x11-terms/roxterm/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/roxterm/ChangeLog?rev=1.74view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/roxterm/ChangeLog?rev=1.74content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/roxterm/ChangeLog?r1=1.73r2=1.74

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-terms/roxterm/ChangeLog,v
retrieving revision 1.73
retrieving revision 1.74
diff -u -r1.73 -r1.74
--- ChangeLog   5 Sep 2014 10:50:45 -   1.73
+++ ChangeLog   27 Jul 2015 18:47:31 -  1.74
@@ -1,6 +1,11 @@
 # ChangeLog for x11-terms/roxterm
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-terms/roxterm/ChangeLog,v 1.73 
2014/09/05 10:50:45 jauhien Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-terms/roxterm/ChangeLog,v 1.74 
2015/07/27 18:47:31 mgorny Exp $
+
+*roxterm-2.9.3-r1 (27 Jul 2015)
+
+  27 Jul 2015; Michał Górny mgo...@gentoo.org +roxterm-2.9.3-r1.ebuild:
+  Convert to python-any-r1
 
 *roxterm-2.9.3 (05 Sep 2014)
 



1.1  x11-terms/roxterm/roxterm-2.9.3-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/roxterm/roxterm-2.9.3-r1.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/roxterm/roxterm-2.9.3-r1.ebuild?rev=1.1content-type=text/plain

Index: roxterm-2.9.3-r1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-terms/roxterm/roxterm-2.9.3-r1.ebuild,v 
1.1 2015/07/27 18:47:31 mgorny Exp $

EAPI=5

PYTHON_COMPAT=( python2_7 )
inherit gnome2-utils python-any-r1 toolchain-funcs

DESCRIPTION=A terminal emulator designed to integrate with the ROX environment
HOMEPAGE=http://roxterm.sourceforge.net/;
SRC_URI=mirror://sourceforge/roxterm/${P}.tar.bz2

LICENSE=GPL-2 LGPL-3
SLOT=0
KEYWORDS=~amd64 ~x86
IUSE=nls

RDEPEND==dev-libs/dbus-glib-0.100
=dev-libs/glib-2.28
x11-libs/gtk+:3
x11-libs/libICE
x11-libs/libSM
x11-libs/vte:2.90
DEPEND=${RDEPEND}
${PYTHON_DEPS}
dev-libs/libxslt
dev-python/lockfile
virtual/pkgconfig
|| ( media-gfx/imagemagick media-gfx/graphicsmagick[imagemagick] )
nls? ( app-text/po4a sys-devel/gettext )

src_configure() {
local myconf=(
CC=$(tc-getCC)
CFLAGS=${CFLAGS}
LDFLAGS=${LDFLAGS}
--prefix=/usr
--docdir=/usr/share/doc/${PF}
--destdir=${D}
)

use nls || myconf+=( --disable-gettext --disable-po4a 
--disable-translations )
./mscript.py configure ${myconf[@]}
}

src_compile() {
./mscript.py build
}

src_install() {
./mscript.py install
}

pkg_preinst() {
gnome2_icon_savelist
}

pkg_postinst() {
gnome2_icon_cache_update
}

pkg_postrm() {
gnome2_icon_cache_update
}






[gentoo-commits] gentoo-x86 commit in x11-wm/plwm: plwm-2.7_rc1-r1.ebuild ChangeLog

2015-07-27 Thread Michal Gorny (mgorny)
mgorny  15/07/27 18:38:45

  Modified: ChangeLog
  Added:plwm-2.7_rc1-r1.ebuild
  Log:
  Convert to distutils-r1
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.21 x11-wm/plwm/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/plwm/ChangeLog?rev=1.21view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/plwm/ChangeLog?rev=1.21content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/plwm/ChangeLog?r1=1.20r2=1.21

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-wm/plwm/ChangeLog,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- ChangeLog   10 Aug 2014 19:59:47 -  1.20
+++ ChangeLog   27 Jul 2015 18:38:45 -  1.21
@@ -1,6 +1,11 @@
 # ChangeLog for x11-wm/plwm
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-wm/plwm/ChangeLog,v 1.20 2014/08/10 
19:59:47 slyfox Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-wm/plwm/ChangeLog,v 1.21 2015/07/27 
18:38:45 mgorny Exp $
+
+*plwm-2.7_rc1-r1 (27 Jul 2015)
+
+  27 Jul 2015; Michał Górny mgo...@gentoo.org +plwm-2.7_rc1-r1.ebuild:
+  Convert to distutils-r1
 
   10 Aug 2014; Sergei Trofimovich sly...@gentoo.org plwm-2.5-r1.ebuild,
   plwm-2.7_rc1.ebuild:



1.1  x11-wm/plwm/plwm-2.7_rc1-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/plwm/plwm-2.7_rc1-r1.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/plwm/plwm-2.7_rc1-r1.ebuild?rev=1.1content-type=text/plain

Index: plwm-2.7_rc1-r1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-wm/plwm/plwm-2.7_rc1-r1.ebuild,v 1.1 
2015/07/27 18:38:45 mgorny Exp $

EAPI=5

PYTHON_COMPAT=( python2_7 )

inherit distutils-r1 eutils

MY_P=PLWM-${PV/_}

DESCRIPTION=Python classes for, and an implementation of, a window manager
HOMEPAGE=http://plwm.sourceforge.net/;
SRC_URI=mirror://sourceforge/plwm/${MY_P}.tar.gz

LICENSE=GPL-2
SLOT=0
KEYWORDS=~amd64 ~ppc ~x86
IUSE=

RDEPEND==dev-python/python-xlib-0.14[${PYTHON_USEDEP}]
DEPEND=sys-apps/texinfo

S=${WORKDIR}/${MY_P}

PATCHES=(
${FILESDIR}/${P}-pep0263.patch
)

python_compile_all() {
emake -C ${S}/doc
}

python_install() {
distutils-r1_python_install

python_newscript examples/examplewm.py plwm
python_doscript utils/*.py
}

python_install_all() {
distutils-r1_python_install_all

doinfo doc/*.info

dodoc ONEWS
dodoc -r examples
docinto utils
dodoc utils/ChangeLog
}






[gentoo-commits] gentoo-x86 commit in kde-apps/libkdegames: libkdegames-4.14.3-r1.ebuild ChangeLog

2015-07-26 Thread Michal Gorny (mgorny)
mgorny  15/07/26 06:34:29

  Modified: ChangeLog
  Added:libkdegames-4.14.3-r1.ebuild
  Log:
  Disable broken phonon fallback and force OpenAL, following upstream changes. 
https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/179 by a17r.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.2  kde-apps/libkdegames/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-apps/libkdegames/ChangeLog?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-apps/libkdegames/ChangeLog?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-apps/libkdegames/ChangeLog?r1=1.1r2=1.2

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/kde-apps/libkdegames/ChangeLog,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ChangeLog   4 Jun 2015 18:44:38 -   1.1
+++ ChangeLog   26 Jul 2015 06:34:29 -  1.2
@@ -1,6 +1,12 @@
-# ChangeLog for kde-base/libkdegames
+# ChangeLog for kde-apps/libkdegames
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/kde-apps/libkdegames/ChangeLog,v 1.1 
2015/06/04 18:44:38 kensington Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-apps/libkdegames/ChangeLog,v 1.2 
2015/07/26 06:34:29 mgorny Exp $
+
+*libkdegames-4.14.3-r1 (26 Jul 2015)
+
+  26 Jul 2015; Michał Górny mgo...@gentoo.org +libkdegames-4.14.3-r1.ebuild:
+  Disable broken phonon fallback and force OpenAL, following upstream changes.
+  https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/179 by a17r.
 
   18 Feb 2015; Michał Górny mgo...@gentoo.org -libkdegames-4.12.5.ebuild:
   Remove KDE SC 4.12



1.1  kde-apps/libkdegames/libkdegames-4.14.3-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-apps/libkdegames/libkdegames-4.14.3-r1.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-apps/libkdegames/libkdegames-4.14.3-r1.ebuild?rev=1.1content-type=text/plain

Index: libkdegames-4.14.3-r1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/kde-apps/libkdegames/libkdegames-4.14.3-r1.ebuild,v 1.1 
2015/07/26 06:34:29 mgorny Exp $

EAPI=5

inherit kde4-base

DESCRIPTION=Base library common to many KDE games
KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux
IUSE=debug

DEPEND=
media-libs/libsndfile
media-libs/openal

RDEPEND=${DEPEND}

KMSAVELIBS=true






[gentoo-commits] gentoo-x86 commit in dev-java/jffi: jffi-1.2.8.ebuild ChangeLog

2015-07-26 Thread Michal Gorny (mgorny)
mgorny  15/07/26 08:17:58

  Modified: jffi-1.2.8.ebuild ChangeLog
  Log:
  Fix implicit ccache use, bug #545654.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.2  dev-java/jffi/jffi-1.2.8.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/jffi/jffi-1.2.8.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/jffi/jffi-1.2.8.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/jffi/jffi-1.2.8.ebuild?r1=1.1r2=1.2

Index: jffi-1.2.8.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-java/jffi/jffi-1.2.8.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- jffi-1.2.8.ebuild   21 Mar 2015 18:29:53 -  1.1
+++ jffi-1.2.8.ebuild   26 Jul 2015 08:17:58 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/jffi/jffi-1.2.8.ebuild,v 1.1 
2015/03/21 18:29:53 monsieurp Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/jffi/jffi-1.2.8.ebuild,v 1.2 
2015/07/26 08:17:58 mgorny Exp $
 
 EAPI=5
 
@@ -89,6 +89,7 @@
BUILD_DIR=build/jni
VERSION=$(get_version_component_range 1-2)
USE_SYSTEM_LIBFFI=1
+   CCACHE=
-f jni/GNUmakefile
)
emake ${args[@]}



1.44 dev-java/jffi/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/jffi/ChangeLog?rev=1.44view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/jffi/ChangeLog?rev=1.44content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/jffi/ChangeLog?r1=1.43r2=1.44

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-java/jffi/ChangeLog,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -r1.43 -r1.44
--- ChangeLog   22 Jun 2015 22:19:06 -  1.43
+++ ChangeLog   26 Jul 2015 08:17:58 -  1.44
@@ -1,6 +1,9 @@
 # ChangeLog for dev-java/jffi
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/jffi/ChangeLog,v 1.43 2015/06/22 
22:19:06 monsieurp Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/jffi/ChangeLog,v 1.44 2015/07/26 
08:17:58 mgorny Exp $
+
+  26 Jul 2015; Michał Górny mgo...@gentoo.org jffi-1.2.8.ebuild:
+  Fix implicit ccache use, bug #545654.
 
   22 Jun 2015; Patrice Clement monsie...@gentoo.org -jffi-1.0.0-r1.ebuild,
   -jffi-1.0.0.ebuild:






[gentoo-commits] gentoo-x86 commit in dev-util/kdevelop-pg-qt: kdevelop-pg-qt-1.1.0.ebuild ChangeLog

2015-07-26 Thread Michal Gorny (mgorny)
mgorny  15/07/26 06:31:39

  Modified: kdevelop-pg-qt-1.1.0.ebuild ChangeLog
  Log:
  Fix S=. https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/184 by 
a17r.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.2  dev-util/kdevelop-pg-qt/kdevelop-pg-qt-1.1.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-pg-qt/kdevelop-pg-qt-1.1.0.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-pg-qt/kdevelop-pg-qt-1.1.0.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-pg-qt/kdevelop-pg-qt-1.1.0.ebuild?r1=1.1r2=1.2

Index: kdevelop-pg-qt-1.1.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-util/kdevelop-pg-qt/kdevelop-pg-qt-1.1.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- kdevelop-pg-qt-1.1.0.ebuild 25 Jul 2015 16:00:41 -  1.1
+++ kdevelop-pg-qt-1.1.0.ebuild 26 Jul 2015 06:31:39 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-util/kdevelop-pg-qt/kdevelop-pg-qt-1.1.0.ebuild,v 
1.1 2015/07/25 16:00:41 mgorny Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-util/kdevelop-pg-qt/kdevelop-pg-qt-1.1.0.ebuild,v 
1.2 2015/07/26 06:31:39 mgorny Exp $
 
 EAPI=5
 
@@ -23,3 +23,5 @@
sys-devel/flex
 
 RDEPEND=dev-util/kdevelop:4
+
+S=${WORKDIR}/${PN}



1.18 dev-util/kdevelop-pg-qt/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-pg-qt/ChangeLog?rev=1.18view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-pg-qt/ChangeLog?rev=1.18content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-pg-qt/ChangeLog?r1=1.17r2=1.18

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-util/kdevelop-pg-qt/ChangeLog,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- ChangeLog   25 Jul 2015 16:00:41 -  1.17
+++ ChangeLog   26 Jul 2015 06:31:39 -  1.18
@@ -1,6 +1,10 @@
 # ChangeLog for dev-util/kdevelop-pg-qt
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/kdevelop-pg-qt/ChangeLog,v 1.17 
2015/07/25 16:00:41 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/kdevelop-pg-qt/ChangeLog,v 1.18 
2015/07/26 06:31:39 mgorny Exp $
+
+  26 Jul 2015; Michał Górny mgo...@gentoo.org kdevelop-pg-qt-1.1.0.ebuild:
+  Fix S=. https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/184 by
+  a17r.
 
 *kdevelop-pg-qt-1.1.0 (25 Jul 2015)
 






[gentoo-commits] gentoo-x86 commit in kde-base/kde-meta: kde-meta-4.14.3.ebuild ChangeLog

2015-07-26 Thread Michal Gorny (mgorny)
mgorny  15/07/26 21:35:08

  Modified: kde-meta-4.14.3.ebuild ChangeLog
  Log:
  Fix conflict with kf5-based kdepim. 
https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/183 by a17r.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.7  kde-base/kde-meta/kde-meta-4.14.3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kde-meta/kde-meta-4.14.3.ebuild?rev=1.7view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kde-meta/kde-meta-4.14.3.ebuild?rev=1.7content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kde-meta/kde-meta-4.14.3.ebuild?r1=1.6r2=1.7

Index: kde-meta-4.14.3.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/kde-base/kde-meta/kde-meta-4.14.3.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- kde-meta-4.14.3.ebuild  4 Jun 2015 18:39:13 -   1.6
+++ kde-meta-4.14.3.ebuild  26 Jul 2015 21:35:07 -  1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/kde-base/kde-meta/kde-meta-4.14.3.ebuild,v 
1.6 2015/06/04 18:39:13 kensington Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-base/kde-meta/kde-meta-4.14.3.ebuild,v 
1.7 2015/07/26 21:35:07 mgorny Exp $
 
 EAPI=5
 inherit kde4-meta-pkg
@@ -31,3 +31,4 @@
)
!minimal? ( $(add_kdebase_dep kdeplasma-addons) )
 
+REQUIRED_USE=minimal? ( !kdepim )



1.348kde-base/kde-meta/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kde-meta/ChangeLog?rev=1.348view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kde-meta/ChangeLog?rev=1.348content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kde-meta/ChangeLog?r1=1.347r2=1.348

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/kde-base/kde-meta/ChangeLog,v
retrieving revision 1.347
retrieving revision 1.348
diff -u -r1.347 -r1.348
--- ChangeLog   4 Jun 2015 18:39:13 -   1.347
+++ ChangeLog   26 Jul 2015 21:35:07 -  1.348
@@ -1,6 +1,10 @@
 # ChangeLog for kde-base/kde-meta
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/kde-base/kde-meta/ChangeLog,v 1.347 
2015/06/04 18:39:13 kensington Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-base/kde-meta/ChangeLog,v 1.348 
2015/07/26 21:35:07 mgorny Exp $
+
+  26 Jul 2015; Michał Górny mgo...@gentoo.org kde-meta-4.14.3.ebuild:
+  Fix conflict with kf5-based kdepim. https://github.com/gentoo/gentoo-portage-
+  rsync-mirror/pull/183 by a17r.
 
   04 Jun 2015; Michael Palimaka kensing...@gentoo.org kde-meta-4.14.3.ebuild:
   Move various kde-base packages to kde-apps.






[gentoo-commits] gentoo-x86 commit in kde-apps/kdebase-runtime-meta: kdebase-runtime-meta-4.14.3.ebuild ChangeLog

2015-07-26 Thread Michal Gorny (mgorny)
mgorny  15/07/26 21:34:23

  Modified: kdebase-runtime-meta-4.14.3.ebuild ChangeLog
  Log:
  Fix conflicts with kf5-based apps. 
https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/183 by a17r.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.3  
kde-apps/kdebase-runtime-meta/kdebase-runtime-meta-4.14.3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-apps/kdebase-runtime-meta/kdebase-runtime-meta-4.14.3.ebuild?rev=1.3view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-apps/kdebase-runtime-meta/kdebase-runtime-meta-4.14.3.ebuild?rev=1.3content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-apps/kdebase-runtime-meta/kdebase-runtime-meta-4.14.3.ebuild?r1=1.2r2=1.3

Index: kdebase-runtime-meta-4.14.3.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/kde-apps/kdebase-runtime-meta/kdebase-runtime-meta-4.14.3.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- kdebase-runtime-meta-4.14.3.ebuild  22 Jul 2015 16:02:14 -  1.2
+++ kdebase-runtime-meta-4.14.3.ebuild  26 Jul 2015 21:34:23 -  1.3
@@ -1,13 +1,13 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/kde-apps/kdebase-runtime-meta/kdebase-runtime-meta-4.14.3.ebuild,v
 1.2 2015/07/22 16:02:14 kensington Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/kde-apps/kdebase-runtime-meta/kdebase-runtime-meta-4.14.3.ebuild,v
 1.3 2015/07/26 21:34:23 mgorny Exp $
 
 EAPI=5
 inherit kde4-meta-pkg
 
 DESCRIPTION=Merge this to pull in all kdebase-runtime-derived packages
 KEYWORDS=amd64 ~arm ppc ppc64 x86 ~amd64-linux ~x86-linux
-IUSE=+crash-reporter +handbook minimal nepomuk
+IUSE=crash-reporter +handbook minimal nepomuk
 
 RDEPEND=
$(add_kdeapps_dep kcmshell)
@@ -44,6 +44,7 @@
$(add_kdebase_dep khelpcenter)
kde-plasma/khelpcenter:5[compat(+)]
) )
+   minimal? ( $(add_kdeapps_dep solid-runtime '-bluetooth') )
nepomuk? ( $(add_kdeapps_dep nepomuk) )
!minimal? (
$(add_kdeapps_dep attica)
@@ -52,3 +53,4 @@
$(add_kdeapps_dep knetattach)
)
 
+REQUIRED_USE=minimal? ( !crash-reporter )



1.3  kde-apps/kdebase-runtime-meta/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-apps/kdebase-runtime-meta/ChangeLog?rev=1.3view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-apps/kdebase-runtime-meta/ChangeLog?rev=1.3content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-apps/kdebase-runtime-meta/ChangeLog?r1=1.2r2=1.3

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/kde-apps/kdebase-runtime-meta/ChangeLog,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ChangeLog   22 Jul 2015 16:02:14 -  1.2
+++ ChangeLog   26 Jul 2015 21:34:23 -  1.3
@@ -1,6 +1,11 @@
 # ChangeLog for kde-apps/kdebase-runtime-meta
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/kde-apps/kdebase-runtime-meta/ChangeLog,v 
1.2 2015/07/22 16:02:14 kensington Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-apps/kdebase-runtime-meta/ChangeLog,v 
1.3 2015/07/26 21:34:23 mgorny Exp $
+
+  26 Jul 2015; Michał Górny mgo...@gentoo.org
+  kdebase-runtime-meta-4.14.3.ebuild:
+  Fix conflicts with kf5-based apps. https://github.com/gentoo/gentoo-portage-
+  rsync-mirror/pull/183 by a17r.
 
   22 Jul 2015; Michael Palimaka kensing...@gentoo.org
   kdebase-runtime-meta-4.14.3.ebuild:






[gentoo-commits] gentoo-x86 commit in dev-libs/libnatspec: libnatspec-0.2.6-r1.ebuild ChangeLog

2015-07-26 Thread Michal Gorny (mgorny)
mgorny  15/07/26 21:40:53

  Modified: libnatspec-0.2.6-r1.ebuild ChangeLog
  Log:
  Add proper pkg_setup() to fix USE=-python, bug #546212. 
https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/185 by a17r.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.11 dev-libs/libnatspec/libnatspec-0.2.6-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libnatspec/libnatspec-0.2.6-r1.ebuild?rev=1.11view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libnatspec/libnatspec-0.2.6-r1.ebuild?rev=1.11content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libnatspec/libnatspec-0.2.6-r1.ebuild?r1=1.10r2=1.11

Index: libnatspec-0.2.6-r1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-libs/libnatspec/libnatspec-0.2.6-r1.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- libnatspec-0.2.6-r1.ebuild  3 Jul 2015 10:10:21 -   1.10
+++ libnatspec-0.2.6-r1.ebuild  26 Jul 2015 21:40:53 -  1.11
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-libs/libnatspec/libnatspec-0.2.6-r1.ebuild,v 1.10 
2015/07/03 10:10:21 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-libs/libnatspec/libnatspec-0.2.6-r1.ebuild,v 1.11 
2015/07/26 21:40:53 mgorny Exp $
 
 EAPI=5
 
@@ -27,6 +27,10 @@
doc? ( app-doc/doxygen )
python? ( dev-lang/tcl:0= )
 
+pkg_setup() {
+   use python  python-single-r1_pkg_setup
+}
+
 src_prepare() {
epatch ${FILESDIR}/${P}-iconv.patch
# regenerate to fix imcompatible readlink usage



1.32 dev-libs/libnatspec/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libnatspec/ChangeLog?rev=1.32view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libnatspec/ChangeLog?rev=1.32content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libnatspec/ChangeLog?r1=1.31r2=1.32

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libnatspec/ChangeLog,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- ChangeLog   3 Jul 2015 10:10:21 -   1.31
+++ ChangeLog   26 Jul 2015 21:40:53 -  1.32
@@ -1,6 +1,10 @@
 # ChangeLog for dev-libs/libnatspec
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libnatspec/ChangeLog,v 1.31 
2015/07/03 10:10:21 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libnatspec/ChangeLog,v 1.32 
2015/07/26 21:40:53 mgorny Exp $
+
+  26 Jul 2015; Michał Górny mgo...@gentoo.org libnatspec-0.2.6-r1.ebuild:
+  Add proper pkg_setup() to fix USE=-python, bug #546212.
+  https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/185 by a17r.
 
   03 Jul 2015; Agostino Sarubbo a...@gentoo.org libnatspec-0.2.6-r1.ebuild:
   Stable for alpha, wrt bug #548686






[gentoo-commits] gentoo-x86 commit in dev-python/pbr: pbr-1.3.0.ebuild ChangeLog

2015-07-26 Thread Michal Gorny (mgorny)
mgorny  15/07/26 21:06:37

  Modified: pbr-1.3.0.ebuild ChangeLog
  Log:
  Revert pypy support because of broken deps.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.3  dev-python/pbr/pbr-1.3.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pbr/pbr-1.3.0.ebuild?rev=1.3view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pbr/pbr-1.3.0.ebuild?rev=1.3content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pbr/pbr-1.3.0.ebuild?r1=1.2r2=1.3

Index: pbr-1.3.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/pbr/pbr-1.3.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- pbr-1.3.0.ebuild26 Jul 2015 15:30:18 -  1.2
+++ pbr-1.3.0.ebuild26 Jul 2015 21:06:37 -  1.3
@@ -1,10 +1,10 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pbr/pbr-1.3.0.ebuild,v 1.2 
2015/07/26 15:30:18 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pbr/pbr-1.3.0.ebuild,v 1.3 
2015/07/26 21:06:37 mgorny Exp $
 
 EAPI=5
 
-PYTHON_COMPAT=( python2_7 python3_{3,4} pypy )
+PYTHON_COMPAT=( python2_7 python3_{3,4} )
 
 inherit distutils-r1
 



1.47 dev-python/pbr/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pbr/ChangeLog?rev=1.47view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pbr/ChangeLog?rev=1.47content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pbr/ChangeLog?r1=1.46r2=1.47

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/pbr/ChangeLog,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -r1.46 -r1.47
--- ChangeLog   26 Jul 2015 15:30:18 -  1.46
+++ ChangeLog   26 Jul 2015 21:06:37 -  1.47
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/pbr
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pbr/ChangeLog,v 1.46 2015/07/26 
15:30:18 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pbr/ChangeLog,v 1.47 2015/07/26 
21:06:37 mgorny Exp $
+
+  26 Jul 2015; Michał Górny mgo...@gentoo.org pbr-1.3.0.ebuild:
+  Revert pypy support because of broken deps.
 
   26 Jul 2015; Ian Delaney idel...@gentoo.org pbr-1.3.0.ebuild:
   add pypy support, tidy to test phase






[gentoo-commits] gentoo-x86 commit in dev-python/unittest2: unittest2-1.0.1-r1.ebuild unittest2-1.1.0.ebuild ChangeLog

2015-07-26 Thread Michal Gorny (mgorny)
mgorny  15/07/26 19:11:28

  Modified: unittest2-1.0.1-r1.ebuild unittest2-1.1.0.ebuild
ChangeLog
  Log:
  Revert pypy support because of unsatisfiable dependencies.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
B07A1AEAEFB4464E!)

Revision  ChangesPath
1.5  dev-python/unittest2/unittest2-1.0.1-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/unittest2/unittest2-1.0.1-r1.ebuild?rev=1.5view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/unittest2/unittest2-1.0.1-r1.ebuild?rev=1.5content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/unittest2/unittest2-1.0.1-r1.ebuild?r1=1.4r2=1.5

Index: unittest2-1.0.1-r1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-python/unittest2/unittest2-1.0.1-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- unittest2-1.0.1-r1.ebuild   26 Jul 2015 14:57:41 -  1.4
+++ unittest2-1.0.1-r1.ebuild   26 Jul 2015 19:11:28 -  1.5
@@ -1,9 +1,9 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-python/unittest2/unittest2-1.0.1-r1.ebuild,v 1.4 
2015/07/26 14:57:41 idella4 Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-python/unittest2/unittest2-1.0.1-r1.ebuild,v 1.5 
2015/07/26 19:11:28 mgorny Exp $
 
 EAPI=5
-PYTHON_COMPAT=( python2_7 python3_3 python3_4 pypy )
+PYTHON_COMPAT=( python2_7 python3_3 python3_4 )
 
 inherit distutils-r1
 



1.4  dev-python/unittest2/unittest2-1.1.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/unittest2/unittest2-1.1.0.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/unittest2/unittest2-1.1.0.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/unittest2/unittest2-1.1.0.ebuild?r1=1.3r2=1.4

Index: unittest2-1.1.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/unittest2/unittest2-1.1.0.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- unittest2-1.1.0.ebuild  26 Jul 2015 14:57:41 -  1.3
+++ unittest2-1.1.0.ebuild  26 Jul 2015 19:11:28 -  1.4
@@ -1,9 +1,9 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-python/unittest2/unittest2-1.1.0.ebuild,v 1.3 
2015/07/26 14:57:41 idella4 Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-python/unittest2/unittest2-1.1.0.ebuild,v 1.4 
2015/07/26 19:11:28 mgorny Exp $
 
 EAPI=5
-PYTHON_COMPAT=( python2_7 python3_3 python3_4 pypy )
+PYTHON_COMPAT=( python2_7 python3_3 python3_4 )
 
 inherit distutils-r1
 



1.67 dev-python/unittest2/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/unittest2/ChangeLog?rev=1.67view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/unittest2/ChangeLog?rev=1.67content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/unittest2/ChangeLog?r1=1.66r2=1.67

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/unittest2/ChangeLog,v
retrieving revision 1.66
retrieving revision 1.67
diff -u -r1.66 -r1.67
--- ChangeLog   26 Jul 2015 15:14:30 -  1.66
+++ ChangeLog   26 Jul 2015 19:11:28 -  1.67
@@ -1,6 +1,10 @@
 # ChangeLog for dev-python/unittest2
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/unittest2/ChangeLog,v 1.66 
2015/07/26 15:14:30 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/unittest2/ChangeLog,v 1.67 
2015/07/26 19:11:28 mgorny Exp $
+
+  26 Jul 2015;  mgo...@gentoo.org unittest2-1.0.1-r1.ebuild,
+  unittest2-1.1.0.ebuild:
+  Revert pypy support because of unsatisfiable dependencies.
 
   26 Jul 2015; Ian Delaney idel...@gentoo.org -unittest2-1.0.1.ebuild,
   unittest2-1.0.1-r1.ebuild, unittest2-1.1.0.ebuild:






[gentoo-commits] gentoo-x86 commit in profiles/targets/desktop/plasma: package.use

2015-07-26 Thread Michal Gorny (mgorny)
mgorny  15/07/26 21:36:03

  Modified: package.use
  Log:
  Fix plasma5 vs kde4 conflicts. 
https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/183 by a17r.

Revision  ChangesPath
1.10 profiles/targets/desktop/plasma/package.use

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/targets/desktop/plasma/package.use?rev=1.10view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/targets/desktop/plasma/package.use?rev=1.10content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/targets/desktop/plasma/package.use?r1=1.9r2=1.10

Index: package.use
===
RCS file: /var/cvsroot/gentoo-x86/profiles/targets/desktop/plasma/package.use,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- package.use 1 Jul 2015 15:25:25 -   1.9
+++ package.use 26 Jul 2015 21:36:03 -  1.10
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/profiles/targets/desktop/plasma/package.use,v 1.9 
2015/07/01 15:25:25 johu Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/profiles/targets/desktop/plasma/package.use,v 1.10 
2015/07/26 21:36:03 mgorny Exp $
 
 # Not required, but makes life easier with Qt; bug 457934
 app-arch/unzip natspec
@@ -38,11 +38,12 @@
 kde-apps/kdeartwork-meta minimal
 kde-apps/kdebase-kioslaves minimal
 kde-apps/kdebase-meta minimal
-kde-apps/kdebase-runtime-meta minimal
+kde-apps/kdebase-runtime-meta -crash-reporter minimal
 kde-apps/kdesu -handbook
+kde-apps/solid-runtime -bluetooth
 kde-base/baloo minimal
 kde-base/kactivities minimal
-kde-base/kde-meta minimal
+kde-base/kde-meta -kdepim minimal
 net-libs/libkpeople minimal
 sys-auth/polkit-kde-agent minimal
 






[gentoo-commits] gentoo-x86 commit in profiles: ChangeLog

2015-07-26 Thread Michal Gorny (mgorny)
mgorny  15/07/26 21:36:03

  Modified: ChangeLog
  Log:
  Fix plasma5 vs kde4 conflicts. 
https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/183 by a17r.

Revision  ChangesPath
1.10208  profiles/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/ChangeLog?rev=1.10208view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/ChangeLog?rev=1.10208content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/ChangeLog?r1=1.10207r2=1.10208

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v
retrieving revision 1.10207
retrieving revision 1.10208
diff -u -r1.10207 -r1.10208
--- ChangeLog   26 Jul 2015 20:54:56 -  1.10207
+++ ChangeLog   26 Jul 2015 21:36:02 -  1.10208
@@ -1,11 +1,16 @@
 # ChangeLog for profile directory
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.10207 2015/07/26 
20:54:56 rhill Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.10208 2015/07/26 
21:36:02 mgorny Exp $
 #
 # This ChangeLog should include records for all changes in profiles directory.
 # Only typo fixes which don't affect portage/repoman behaviour could be avoided
 # here. If in doubt put a record here!
 
+  26 Jul 2015; Michał Górny mgo...@gentoo.org
+  targets/desktop/kde/package.use, targets/desktop/plasma/package.use:
+  Fix plasma5 vs kde4 conflicts.
+  https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/183 by a17r.
+
   26 Jul 2015; Ryan Hill rh...@gentoo.org desc/linguas.desc:
   Add a few locales from poedit.
 






[gentoo-commits] gentoo-x86 commit in profiles/targets/desktop/kde: package.use

2015-07-26 Thread Michal Gorny (mgorny)
mgorny  15/07/26 21:36:03

  Modified: package.use
  Log:
  Fix plasma5 vs kde4 conflicts. 
https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/183 by a17r.

Revision  ChangesPath
1.10 profiles/targets/desktop/kde/package.use

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/targets/desktop/kde/package.use?rev=1.10view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/targets/desktop/kde/package.use?rev=1.10content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/targets/desktop/kde/package.use?r1=1.9r2=1.10

Index: package.use
===
RCS file: /var/cvsroot/gentoo-x86/profiles/targets/desktop/kde/package.use,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- package.use 1 Jul 2015 15:25:25 -   1.9
+++ package.use 26 Jul 2015 21:36:03 -  1.10
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/targets/desktop/kde/package.use,v 
1.9 2015/07/01 15:25:25 johu Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/targets/desktop/kde/package.use,v 
1.10 2015/07/26 21:36:03 mgorny Exp $
 
 # Required by kde-base/pykde4
 dev-python/PyQt4 script sql webkit
@@ -25,3 +25,6 @@
 
 # Required by app-office/libreoffice
 media-libs/phonon designer
+
+# Enable crash-reporter here instead of in ebuild
+kde-apps/kdebase-runtime-meta crash-reporter






[gentoo-commits] gentoo-x86 commit in dev-libs/libappindicator/files: libappindicator-12.10.0-conditional-py-bindings.patch libappindicator-12.10.0-disable-python.patch

2015-07-26 Thread Michal Gorny (mgorny)
mgorny  15/07/26 09:09:41

  Added:   
libappindicator-12.10.0-conditional-py-bindings.patch
  Removed:  libappindicator-12.10.0-disable-python.patch
  Log:
  Fix the build system in order to properly enable Python support. Fix 
introspection flag. 
https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/168 by anyc.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.1  
dev-libs/libappindicator/files/libappindicator-12.10.0-conditional-py-bindings.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libappindicator/files/libappindicator-12.10.0-conditional-py-bindings.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libappindicator/files/libappindicator-12.10.0-conditional-py-bindings.patch?rev=1.1content-type=text/plain

Index: libappindicator-12.10.0-conditional-py-bindings.patch
===
--- bindings/Makefile.am2015-07-10 10:04:18.091199191 +0200
+++ bindings/Makefile.am2015-07-10 10:19:47.047974439 +0200
@@ -3,8 +3,10 @@
vala
 else
 SUBDIRS =  \
-   python  \
vala
+if HAS_PYTHON
+SUBDIRS += python
+endif
 endif
 
 if HAS_MONO
--- configure.ac2015-07-16 13:28:41.007502838 +0200
+++ configure.ac_new2015-07-16 13:53:18.118602877 +0200
@@ -188,25 +188,37 @@
 PYGTK_REQUIRED=2.14.0
 PYGOBJECT_REQUIRED=0.22
 
-AM_PATH_PYTHON(2.3.5)
-AM_CHECK_PYTHON_HEADERS(,[AC_MSG_ERROR(could not find Python headers)])
+AC_ARG_ENABLE([python],
+   AC_HELP_STRING([--enable-python], [Enable python for GTK2 build]),,
+   [enable_python=yes])
 
-PKG_CHECK_MODULES(APPINDICATOR_PYTHON,
+if test x$with_gtk = x3 ; then
+   enable_python=no
+fi
+
+AM_CONDITIONAL(HAS_PYTHON, test x${enable_python} != xno)
+
+if test x$enable_python != xno ; then
+   AM_PATH_PYTHON(2.3.5)
+   AM_CHECK_PYTHON_HEADERS(,[AC_MSG_ERROR(could not find Python headers)])
+
+   PKG_CHECK_MODULES(APPINDICATOR_PYTHON,
   [
pygtk-2.0 = $PYGTK_REQUIRED
gtk+-2.0 = $GTK_REQUIRED_VERSION
pygobject-2.0 = $PYGOBJECT_REQUIRED
   ])
 
-AC_MSG_CHECKING(for pygtk defs)
-PYGTK_DEFSDIR=`$PKG_CONFIG --variable=defsdir pygtk-2.0`
-AC_SUBST(PYGTK_DEFSDIR)
-AC_MSG_RESULT($PYGTK_DEFSDIR)
-
-AC_MSG_CHECKING(for pygtk codegen)
-PYGTK_CODEGEN=$PYTHON `$PKG_CONFIG --variable=codegendir 
pygtk-2.0`/codegen.py
-AC_SUBST(PYGTK_CODEGEN)
-AC_MSG_RESULT($PYGTK_CODEGEN)
+   AC_MSG_CHECKING(for pygtk defs)
+   PYGTK_DEFSDIR=`$PKG_CONFIG --variable=defsdir pygtk-2.0`
+   AC_SUBST(PYGTK_DEFSDIR)
+   AC_MSG_RESULT($PYGTK_DEFSDIR)
+
+   AC_MSG_CHECKING(for pygtk codegen)
+   PYGTK_CODEGEN=$PYTHON `$PKG_CONFIG --variable=codegendir 
pygtk-2.0`/codegen.py
+   AC_SUBST(PYGTK_CODEGEN)
+   AC_MSG_RESULT($PYGTK_CODEGEN)
+fi
 
 #
 # Check if build tests
@@ -278,4 +290,5 @@
Tests: $enable_tests
Mono tests:$have_nunit
gcov:  $use_gcov
+   Python:$enable_python
 ])






[gentoo-commits] gentoo-x86 commit in dev-libs/libappindicator: libappindicator-12.10.0-r300.ebuild ChangeLog libappindicator-12.10.0-r200.ebuild

2015-07-26 Thread Michal Gorny (mgorny)
mgorny  15/07/26 09:09:41

  Modified: libappindicator-12.10.0-r300.ebuild ChangeLog
libappindicator-12.10.0-r200.ebuild
  Log:
  Fix the build system in order to properly enable Python support. Fix 
introspection flag. 
https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/168 by anyc.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.2  
dev-libs/libappindicator/libappindicator-12.10.0-r300.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libappindicator/libappindicator-12.10.0-r300.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libappindicator/libappindicator-12.10.0-r300.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libappindicator/libappindicator-12.10.0-r300.ebuild?r1=1.1r2=1.2

Index: libappindicator-12.10.0-r300.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-libs/libappindicator/libappindicator-12.10.0-r300.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- libappindicator-12.10.0-r300.ebuild 7 May 2015 19:49:14 -   1.1
+++ libappindicator-12.10.0-r300.ebuild 26 Jul 2015 09:09:41 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-libs/libappindicator/libappindicator-12.10.0-r300.ebuild,v
 1.1 2015/05/07 19:49:14 mgorny Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-libs/libappindicator/libappindicator-12.10.0-r300.ebuild,v
 1.2 2015/07/26 09:09:41 mgorny Exp $
 
 EAPI=5
 VALA_MIN_API_VERSION=0.16
@@ -22,7 +22,7 @@
=dev-libs/glib-2.26:2[${MULTILIB_USEDEP}]
=dev-libs/libdbusmenu-0.6.2[gtk3,${MULTILIB_USEDEP}]
=dev-libs/libindicator-12.10.0:3[${MULTILIB_USEDEP}]
-   =x11-libs/gtk+-3.2:3[${MULTILIB_USEDEP}]
+   =x11-libs/gtk+-3.2:3[${MULTILIB_USEDEP},introspection?]
introspection? ( =dev-libs/gobject-introspection-1 )
 
 DEPEND=${RDEPEND}
@@ -34,7 +34,7 @@
# Don't use -Werror
sed -i -e 's/ -Werror//' {src,tests}/Makefile.{am,in} || die
 
-   epatch ${FILESDIR}/${P}-disable-python.patch
+   epatch ${FILESDIR}/${P}-conditional-py-bindings.patch
eautoreconf
 
# Disable MONO for now because of http://bugs.gentoo.org/382491
@@ -51,7 +51,8 @@
econf \
--disable-silent-rules \
--disable-static \
-   --with-gtk=3
+   --with-gtk=3 \
+   $(multilib_native_use_enable introspection)
 }
 
 multilib_src_install() {



1.19 dev-libs/libappindicator/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libappindicator/ChangeLog?rev=1.19view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libappindicator/ChangeLog?rev=1.19content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libappindicator/ChangeLog?r1=1.18r2=1.19

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libappindicator/ChangeLog,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- ChangeLog   9 Jun 2015 14:19:29 -   1.18
+++ ChangeLog   26 Jul 2015 09:09:41 -  1.19
@@ -1,6 +1,18 @@
 # ChangeLog for dev-libs/libappindicator
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libappindicator/ChangeLog,v 1.18 
2015/06/09 14:19:29 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libappindicator/ChangeLog,v 1.19 
2015/07/26 09:09:41 mgorny Exp $
+
+*libappindicator-12.10.0-r301 (26 Jul 2015)
+*libappindicator-12.10.0-r201 (26 Jul 2015)
+
+  26 Jul 2015; Michał Górny mgo...@gentoo.org
+  +files/libappindicator-12.10.0-conditional-py-bindings.patch,
+  +libappindicator-12.10.0-r201.ebuild, +libappindicator-12.10.0-r301.ebuild,
+  -files/libappindicator-12.10.0-disable-python.patch,
+  libappindicator-12.10.0-r200.ebuild, libappindicator-12.10.0-r300.ebuild:
+  Fix the build system in order to properly enable Python support. Fix
+  introspection flag. https://github.com/gentoo/gentoo-portage-rsync-
+  mirror/pull/168 by anyc.
 
   09 Jun 2015; Justin Lecher j...@gentoo.org metadata.xml:
   Updating remote-id in metadata.xml



1.3  
dev-libs/libappindicator/libappindicator-12.10.0-r200.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libappindicator/libappindicator-12.10.0-r200.ebuild?rev=1.3view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libappindicator/libappindicator-12.10.0-r200.ebuild?rev=1.3content-type=text/plain
diff : 

[gentoo-commits] gentoo-x86 commit in dev-python/testtools: testtools-1.8.0.ebuild ChangeLog

2015-07-26 Thread Michal Gorny (mgorny)
mgorny  15/07/26 21:14:35

  Modified: testtools-1.8.0.ebuild ChangeLog
  Log:
  Revert pypy support because of broken deps
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.4  dev-python/testtools/testtools-1.8.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/testtools/testtools-1.8.0.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/testtools/testtools-1.8.0.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/testtools/testtools-1.8.0.ebuild?r1=1.3r2=1.4

Index: testtools-1.8.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/testtools/testtools-1.8.0.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- testtools-1.8.0.ebuild  26 Jul 2015 15:41:11 -  1.3
+++ testtools-1.8.0.ebuild  26 Jul 2015 21:14:35 -  1.4
@@ -1,10 +1,10 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-python/testtools/testtools-1.8.0.ebuild,v 1.3 
2015/07/26 15:41:11 idella4 Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-python/testtools/testtools-1.8.0.ebuild,v 1.4 
2015/07/26 21:14:35 mgorny Exp $
 
 EAPI=5
 
-PYTHON_COMPAT=( python2_7 python3_{3,4} pypy )
+PYTHON_COMPAT=( python2_7 python3_{3,4} )
 
 inherit distutils-r1
 



1.129dev-python/testtools/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/testtools/ChangeLog?rev=1.129view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/testtools/ChangeLog?rev=1.129content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/testtools/ChangeLog?r1=1.128r2=1.129

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/testtools/ChangeLog,v
retrieving revision 1.128
retrieving revision 1.129
diff -u -r1.128 -r1.129
--- ChangeLog   26 Jul 2015 15:41:11 -  1.128
+++ ChangeLog   26 Jul 2015 21:14:35 -  1.129
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/testtools
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/testtools/ChangeLog,v 1.128 
2015/07/26 15:41:11 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/testtools/ChangeLog,v 1.129 
2015/07/26 21:14:35 mgorny Exp $
+
+  26 Jul 2015; Michał Górny mgo...@gentoo.org testtools-1.8.0.ebuild:
+  Revert pypy support because of broken deps
 
   26 Jul 2015; Ian Delaney idel...@gentoo.org testtools-1.7.1.ebuild,
   testtools-1.8.0.ebuild:






[gentoo-commits] gentoo-x86 commit in media-video/ffmpegthumbnailer/files: ffmpegthumbnailer-2.0.10-set-locale.patch ffmpegthumbnailer-2.0.10-config-summary.patch ffmpegthumbnailer-2.0.10-installdirs.

2015-07-26 Thread Michal Gorny (mgorny)
mgorny  15/07/26 21:30:52

  Added:ffmpegthumbnailer-2.0.10-set-locale.patch
ffmpegthumbnailer-2.0.10-config-summary.patch
ffmpegthumbnailer-2.0.10-installdirs.patch
  Log:
  Version bump. Update homepage and switch to cmake. 
https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/175 by a17r.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.1  
media-video/ffmpegthumbnailer/files/ffmpegthumbnailer-2.0.10-set-locale.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpegthumbnailer/files/ffmpegthumbnailer-2.0.10-set-locale.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpegthumbnailer/files/ffmpegthumbnailer-2.0.10-set-locale.patch?rev=1.1content-type=text/plain

Index: ffmpegthumbnailer-2.0.10-set-locale.patch
===
From 718f1b1147fe7e9138e2d503ed151e589d643772 Mon Sep 17 00:00:00 2001
From: Dirk Vanden Boer dirk@gmail.com
Date: Sat, 18 Jul 2015 10:24:28 +0200
Subject: [PATCH] Set locale to the user specified locale

---
 main.cpp| 5 ++---
 test/testrunner.cpp | 7 ++-
 2 files changed, 4 insertions(+), 8 deletions(-)

diff --git a/main.cpp b/main.cpp
index 6cb6c55..7cb7089 100644
--- a/main.cpp
+++ b/main.cpp
@@ -54,10 +54,9 @@ int main(int argc, char** argv)
 string  outputFile;
 string  imageFormat;
 
-if (!setlocale(LC_CTYPE, en_US.UTF-8))
+if (!std::setlocale(LC_CTYPE, ))
 {
-std::cerr  Locale not specified. Check LANG, LC_CTYPE, LC_ALL  
std::endl;
-return 1;
+std::cerr  Failed to set locale  std::endl;
 }
 
 while ((option = getopt (argc, argv, i:o:s:t:q:c:afwhvp)) != -1)
diff --git a/test/testrunner.cpp b/test/testrunner.cpp
index 7023d25..20a4903 100644
--- a/test/testrunner.cpp
+++ b/test/testrunner.cpp
@@ -4,12 +4,9 @@
 #include gtest/gtest.h
 
 int main(int argc, char **argv) {
-std::cout  Running ffmpegthumbnailer tests  std::endl;
-
-if (!setlocale(LC_CTYPE, en_US.UTF-8))
+if (!std::setlocale(LC_CTYPE, ))
 {
-std::cerr  Locale not specified. Check LANG, LC_CTYPE, LC_ALL  
std::endl;
-return 1;
+std::cerr  Failed to set locale  std::endl;
 }
 
 testing::InitGoogleTest(argc, argv);



1.1  
media-video/ffmpegthumbnailer/files/ffmpegthumbnailer-2.0.10-config-summary.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpegthumbnailer/files/ffmpegthumbnailer-2.0.10-config-summary.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpegthumbnailer/files/ffmpegthumbnailer-2.0.10-config-summary.patch?rev=1.1content-type=text/plain

Index: ffmpegthumbnailer-2.0.10-config-summary.patch
===
From 9c2a5fe997a6d8b00bef49eabb7bc49840882ec6 Mon Sep 17 00:00:00 2001
From: Dirk Vanden Boer dirk@gmail.com
Date: Wed, 29 Apr 2015 20:19:58 +0200
Subject: [PATCH] Fixed configuration summary

---
 .travis.yml| 1 +
 CMakeLists.txt | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 22803d9..6b6e515 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -239,7 +239,7 @@ ELSE ()
 MESSAGE(STATUS register thumbnailer : disabled)
 ENDIF ()
 
-IF (ENABLE_UNITTEST)
+IF (ENABLE_TESTS)
 MESSAGE(STATUS unittests: enabled)
 ELSE ()
 MESSAGE(STATUS unittests: disabled)



1.1  
media-video/ffmpegthumbnailer/files/ffmpegthumbnailer-2.0.10-installdirs.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpegthumbnailer/files/ffmpegthumbnailer-2.0.10-installdirs.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpegthumbnailer/files/ffmpegthumbnailer-2.0.10-installdirs.patch?rev=1.1content-type=text/plain

Index: ffmpegthumbnailer-2.0.10-installdirs.patch
===
From 621274d694dee1f8c92f5db99a5cff98e82c6bd4 Mon Sep 17 00:00:00 2001
From: Dirk Vanden Boer dirk@gmail.com
Date: Sat, 2 May 2015 09:33:34 +0200
Subject: [PATCH] Use proper gnu installation dirs (Thanks to Vallimar)

---
 CMakeLists.txt | 15 ---
 ChangeLog  |  1 +
 2 files changed, 9 insertions(+), 7 deletions(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 6b6e515..badb7cf 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -25,6 +25,7 @@ ENDIF ()
 
 PROJECT(${PACKAGE})
 INCLUDE(CPack)
+INCLUDE(GNUInstallDirs)
 
 SET(CMAKE_EXPORT_COMPILE_COMMANDS 1)
 SET(CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS} -std=c++11)
@@ -189,17 +190,17 @@ ELSE ()
 ENDIF ()
 
 INSTALL(TARGETS ffmpegthumbnailer ${STATIC_LIB} ${SHARED_LIB}
-LIBRARY DESTINATION 

[gentoo-commits] gentoo-x86 commit in media-video/ffmpegthumbnailer: ffmpegthumbnailer-2.0.10.ebuild ChangeLog

2015-07-26 Thread Michal Gorny (mgorny)
mgorny  15/07/26 21:30:52

  Modified: ChangeLog
  Added:ffmpegthumbnailer-2.0.10.ebuild
  Log:
  Version bump. Update homepage and switch to cmake. 
https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/175 by a17r.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.152media-video/ffmpegthumbnailer/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpegthumbnailer/ChangeLog?rev=1.152view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpegthumbnailer/ChangeLog?rev=1.152content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpegthumbnailer/ChangeLog?r1=1.151r2=1.152

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ChangeLog,v
retrieving revision 1.151
retrieving revision 1.152
diff -u -r1.151 -r1.152
--- ChangeLog   5 Apr 2013 20:39:09 -   1.151
+++ ChangeLog   26 Jul 2015 21:30:52 -  1.152
@@ -1,6 +1,16 @@
 # ChangeLog for media-video/ffmpegthumbnailer
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ChangeLog,v 
1.151 2013/04/05 20:39:09 ssuominen Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ChangeLog,v 
1.152 2015/07/26 21:30:52 mgorny Exp $
+
+*ffmpegthumbnailer-2.0.10 (26 Jul 2015)
+
+  26 Jul 2015; Michał Górny mgo...@gentoo.org
+  +ffmpegthumbnailer-2.0.10.ebuild,
+  +files/ffmpegthumbnailer-2.0.10-config-summary.patch,
+  +files/ffmpegthumbnailer-2.0.10-installdirs.patch,
+  +files/ffmpegthumbnailer-2.0.10-set-locale.patch:
+  Version bump. Update homepage and switch to cmake. https://github.com/gentoo
+  /gentoo-portage-rsync-mirror/pull/175 by a17r.
 
   05 Apr 2013; Samuli Suominen ssuomi...@gentoo.org
   ffmpegthumbnailer-2.0.8.ebuild:



1.1  
media-video/ffmpegthumbnailer/ffmpegthumbnailer-2.0.10.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpegthumbnailer/ffmpegthumbnailer-2.0.10.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpegthumbnailer/ffmpegthumbnailer-2.0.10.ebuild?rev=1.1content-type=text/plain

Index: ffmpegthumbnailer-2.0.10.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ffmpegthumbnailer-2.0.10.ebuild,v
 1.1 2015/07/26 21:30:52 mgorny Exp $

EAPI=5

inherit cmake-utils

DESCRIPTION=Lightweight video thumbnailer that can be used by file managers
HOMEPAGE=https://github.com/dirkvdb/ffmpegthumbnailer;
SRC_URI=https://github.com/dirkvdb/${PN}/releases/download/${PV}/${P}.tar.bz2;

LICENSE=GPL-2
SLOT=0
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd
IUSE=gnome gtk jpeg libav png test

RDEPEND=
gtk? ( dev-libs/glib:2= )
jpeg? ( virtual/jpeg:0= )
!libav? ( =media-video/ffmpeg-2.7:0= )
libav? ( =media-video/libav-11:0= )
png? ( media-libs/libpng:0= )

DEPEND=${RDEPEND}
virtual/pkgconfig

REQUIRED_USE=gnome? ( gtk )

PATCHES=(
${FILESDIR}/${P}-config-summary.patch
${FILESDIR}/${P}-installdirs.patch
${FILESDIR}/${P}-set-locale.patch
)

DOCS=( AUTHORS ChangeLog README.md )

src_prepare() {
rm -rf out* || die

cmake-utils_src_prepare
}

src_configure() {
local mycmakeargs=(
-DENABLE_GIO=$(usex gtk)
-DENABLE_TESTS=$(usex test)
-DENABLE_THUMBNAILER=$(usex gnome)
-DHAVE_JPEG=$(usex jpeg)
-DHAVE_PNG=$(usex png)
)
cmake-utils_src_configure
}






[gentoo-commits] gentoo-x86 commit in dev-python/mock: mock-1.2.0.ebuild ChangeLog

2015-07-26 Thread Michal Gorny (mgorny)
mgorny  15/07/26 18:57:27

  Modified: mock-1.2.0.ebuild ChangeLog
  Log:
  Revert previous commit because of introduced unsatisfiable dependencies.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key )

Revision  ChangesPath
1.4  dev-python/mock/mock-1.2.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/mock/mock-1.2.0.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/mock/mock-1.2.0.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/mock/mock-1.2.0.ebuild?r1=1.3r2=1.4

Index: mock-1.2.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/mock/mock-1.2.0.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- mock-1.2.0.ebuild   26 Jul 2015 14:52:45 -  1.3
+++ mock-1.2.0.ebuild   26 Jul 2015 18:57:27 -  1.4
@@ -1,9 +1,9 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/mock/mock-1.2.0.ebuild,v 1.3 
2015/07/26 14:52:45 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/mock/mock-1.2.0.ebuild,v 1.4 
2015/07/26 18:57:27 mgorny Exp $
 
 EAPI=5
-PYTHON_COMPAT=( python2_7 python3_3 python3_4 pypy )
+PYTHON_COMPAT=( python2_7 python3_3 python3_4 )
 
 inherit distutils-r1
 
@@ -22,7 +22,8 @@
=dev-python/pbr-1.3[${PYTHON_USEDEP}]
test? (
${CDEPEND}
-   $(python_gen_cond_dep 
'=dev-python/unittest2-1.1.0[${PYTHON_USEDEP}]' 'python2_7' pypy)
+   dev-python/nose[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep 
'=dev-python/unittest2-1.1.0[${PYTHON_USEDEP}]' 'python2_7' 'python3_3')
)
 RDEPEND=
${CDEPEND}
@@ -30,8 +31,7 @@
 
 
 python_test() {
-   # Taken from tox.ini
-   ${PYTHON} -m unittest discover || die Testing failed with ${EPYTHON}
+   nosetests || die tests fail under ${EPYTHON}
 }
 
 python_install_all() {



1.95 dev-python/mock/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/mock/ChangeLog?rev=1.95view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/mock/ChangeLog?rev=1.95content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/mock/ChangeLog?r1=1.94r2=1.95

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/mock/ChangeLog,v
retrieving revision 1.94
retrieving revision 1.95
diff -u -r1.94 -r1.95
--- ChangeLog   26 Jul 2015 14:52:45 -  1.94
+++ ChangeLog   26 Jul 2015 18:57:27 -  1.95
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/mock
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/mock/ChangeLog,v 1.94 2015/07/26 
14:52:45 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/mock/ChangeLog,v 1.95 2015/07/26 
18:57:27 mgorny Exp $
+
+  26 Jul 2015;  mgo...@gentoo.org mock-1.2.0.ebuild:
+  Revert previous commit because of introduced unsatisfiable dependencies.
 
   26 Jul 2015; Ian Delaney idel...@gentoo.org mock-1.2.0.ebuild:
   re-add pypy support dropped from prior versions, correction to deps, update 
to






[gentoo-commits] gentoo-x86 commit in sys-devel/llvm: llvm-3.6.2.ebuild ChangeLog

2015-07-25 Thread Michal Gorny (mgorny)
mgorny  15/07/25 13:53:53

  Modified: ChangeLog
  Added:llvm-3.6.2.ebuild
  Log:
  Version bump with bug fixes. Bug #36.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.257sys-devel/llvm/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/llvm/ChangeLog?rev=1.257view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/llvm/ChangeLog?rev=1.257content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/llvm/ChangeLog?r1=1.256r2=1.257

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-devel/llvm/ChangeLog,v
retrieving revision 1.256
retrieving revision 1.257
diff -u -r1.256 -r1.257
--- ChangeLog   19 Jul 2015 17:29:33 -  1.256
+++ ChangeLog   25 Jul 2015 13:53:53 -  1.257
@@ -1,6 +1,11 @@
 # ChangeLog for sys-devel/llvm
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/llvm/ChangeLog,v 1.256 2015/07/19 
17:29:33 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/llvm/ChangeLog,v 1.257 2015/07/25 
13:53:53 mgorny Exp $
+
+*llvm-3.6.2 (25 Jul 2015)
+
+  25 Jul 2015; Michał Górny mgo...@gentoo.org +llvm-3.6.2.ebuild:
+  Version bump with bug fixes. Bug #36.
 
   19 Jul 2015; Michał Górny mgo...@gentoo.org llvm-.ebuild:
   Remove no longer needed gcc-4.9 patch. Update clang vesion number.



1.1  sys-devel/llvm/llvm-3.6.2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/llvm/llvm-3.6.2.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/llvm/llvm-3.6.2.ebuild?rev=1.1content-type=text/plain

Index: llvm-3.6.2.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-devel/llvm/llvm-3.6.2.ebuild,v 1.1 
2015/07/25 13:53:53 mgorny Exp $

EAPI=5

PYTHON_COMPAT=( python2_7 pypy )

inherit eutils flag-o-matic multibuild multilib \
multilib-minimal python-r1 toolchain-funcs pax-utils check-reqs prefix

DESCRIPTION=Low Level Virtual Machine
HOMEPAGE=http://llvm.org/;
SRC_URI=http://llvm.org/releases/${PV}/${P}.src.tar.xz
clang? ( http://llvm.org/releases/${PV}/compiler-rt-${PV}.src.tar.xz
http://llvm.org/releases/${PV}/cfe-${PV}.src.tar.xz

http://llvm.org/releases/${PV}/clang-tools-extra-${PV}.src.tar.xz )
!doc? ( 
http://dev.gentoo.org/~voyageur/distfiles/${PN}-3.6.1-manpages.tar.bz2 )

LICENSE=UoI-NCSA
SLOT=0/3.6
KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd 
~x64-freebsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos
IUSE=clang debug doc gold libedit +libffi multitarget ncurses ocaml python
+static-analyzer test xml video_cards_radeon
kernel_Darwin kernel_FreeBSD

COMMON_DEPEND=
sys-libs/zlib:0=
clang? (
python? ( ${PYTHON_DEPS} )
static-analyzer? (
dev-lang/perl:*
${PYTHON_DEPS}
)
xml? ( dev-libs/libxml2:2= )
)
gold? ( =sys-devel/binutils-2.22:*[cxx] )
libedit? ( dev-libs/libedit:0=[${MULTILIB_USEDEP}] )
libffi? ( =virtual/libffi-3.0.13-r1:0=[${MULTILIB_USEDEP}] )
ncurses? ( =sys-libs/ncurses-5.9-r3:5=[${MULTILIB_USEDEP}] )
ocaml? ( dev-lang/ocaml:0= )
# configparser-3.2 breaks the build (3.3 or none at all are fine)
DEPEND=${COMMON_DEPEND}
app-arch/xz-utils
dev-lang/perl
=sys-devel/make-3.81
=sys-devel/flex-2.5.4
=sys-devel/bison-1.875d
|| ( =sys-devel/gcc-3.0 =sys-devel/llvm-3.5
( =sys-freebsd/freebsd-lib-9.1-r10 sys-libs/libcxx )
)
|| ( =sys-devel/binutils-2.18 =sys-devel/binutils-apple-5.1 )
kernel_Darwin? ( sys-libs/libcxx )
clang? ( xml? ( virtual/pkgconfig ) )
doc? ( dev-python/sphinx )
libffi? ( virtual/pkgconfig )
!!dev-python/configparser-3.3.0.2
${PYTHON_DEPS}
RDEPEND=${COMMON_DEPEND}
clang? ( !=sys-devel/clang-${PV}-r99
!=sys-devel/clang- )
abi_x86_32? ( !=app-emulation/emul-linux-x86-baselibs-20130224-r2
!app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] )
PDEPEND=clang? ( =sys-devel/clang-${PV}-r100 )

# pypy gives me around 1700 unresolved tests due to open file limit
# being exceeded. probably GC does not close them fast enough.
REQUIRED_USE=${PYTHON_REQUIRED_USE}
test? ( || ( $(python_gen_useflags 'python*') ) )

S=${WORKDIR}/${P/_}.src

# Some people actually override that in make.conf. That sucks since
# we 

[gentoo-commits] gentoo-x86 commit in dev-util/kdevelop-pg-qt: kdevelop-pg-qt-1.0.0-r2.ebuild kdevelop-pg-qt-1.1.0.ebuild ChangeLog

2015-07-25 Thread Michal Gorny (mgorny)
mgorny  15/07/25 16:00:41

  Modified: kdevelop-pg-qt-1.0.0-r2.ebuild ChangeLog
  Added:kdevelop-pg-qt-1.1.0.ebuild
  Log:
  Move to slot :4 and version bump. 
https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/169 by a17r.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.4  dev-util/kdevelop-pg-qt/kdevelop-pg-qt-1.0.0-r2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-pg-qt/kdevelop-pg-qt-1.0.0-r2.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-pg-qt/kdevelop-pg-qt-1.0.0-r2.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-pg-qt/kdevelop-pg-qt-1.0.0-r2.ebuild?r1=1.3r2=1.4

Index: kdevelop-pg-qt-1.0.0-r2.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-util/kdevelop-pg-qt/kdevelop-pg-qt-1.0.0-r2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- kdevelop-pg-qt-1.0.0-r2.ebuild  26 Jan 2015 10:01:26 -  1.3
+++ kdevelop-pg-qt-1.0.0-r2.ebuild  25 Jul 2015 16:00:41 -  1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-util/kdevelop-pg-qt/kdevelop-pg-qt-1.0.0-r2.ebuild,v
 1.3 2015/01/26 10:01:26 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-util/kdevelop-pg-qt/kdevelop-pg-qt-1.0.0-r2.ebuild,v
 1.4 2015/07/25 16:00:41 mgorny Exp $
 
 EAPI=5
 
@@ -16,7 +16,7 @@
 DESCRIPTION=A LL(1) parser generator used mainly by KDevelop language plugins
 HOMEPAGE=http://www.kdevelop.org;
 LICENSE=LGPL-2
-SLOT=0
+SLOT=4
 IUSE=debug
 
 RDEPEND=



1.17 dev-util/kdevelop-pg-qt/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-pg-qt/ChangeLog?rev=1.17view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-pg-qt/ChangeLog?rev=1.17content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-pg-qt/ChangeLog?r1=1.16r2=1.17

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-util/kdevelop-pg-qt/ChangeLog,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- ChangeLog   26 Jan 2015 11:06:01 -  1.16
+++ ChangeLog   25 Jul 2015 16:00:41 -  1.17
@@ -1,6 +1,13 @@
 # ChangeLog for dev-util/kdevelop-pg-qt
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/kdevelop-pg-qt/ChangeLog,v 1.16 
2015/01/26 11:06:01 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/kdevelop-pg-qt/ChangeLog,v 1.17 
2015/07/25 16:00:41 mgorny Exp $
+
+*kdevelop-pg-qt-1.1.0 (25 Jul 2015)
+
+  25 Jul 2015; Michał Górny mgo...@gentoo.org +kdevelop-pg-qt-1.1.0.ebuild,
+  kdevelop-pg-qt-1.0.0-r2.ebuild:
+  Move to slot :4 and version bump. https://github.com/gentoo/gentoo-portage-
+  rsync-mirror/pull/169 by a17r.
 
   26 Jan 2015; Manuel Rüger mr...@gentoo.org -kdevelop-pg-qt-1.0.0-r1.ebuild:
   Remove old.



1.1  dev-util/kdevelop-pg-qt/kdevelop-pg-qt-1.1.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-pg-qt/kdevelop-pg-qt-1.1.0.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-pg-qt/kdevelop-pg-qt-1.1.0.ebuild?rev=1.1content-type=text/plain

Index: kdevelop-pg-qt-1.1.0.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-util/kdevelop-pg-qt/kdevelop-pg-qt-1.1.0.ebuild,v 
1.1 2015/07/25 16:00:41 mgorny Exp $

EAPI=5

KDEBASE=kdevelop
inherit kde4-base

if [[ $PV == ** ]]; then
KEYWORDS=
else
SRC_URI=http://quickgit.kde.org/?p=${PN}.gita=snapshoth=${PV%%.0} - 
${P}.tar.gz
KEYWORDS=~amd64 ~x86
fi

DESCRIPTION=A LL(1) parser generator used mainly by KDevelop language plugins
LICENSE=LGPL-2
IUSE=debug

DEPEND=
sys-devel/bison
sys-devel/flex

RDEPEND=dev-util/kdevelop:4






[gentoo-commits] gentoo-x86 commit in dev-util/kdevelop-php: kdevelop-php-1.7.1.ebuild kdevelop-php-1.6.0.ebuild kdevelop-php-1.5.2.ebuild ChangeLog

2015-07-25 Thread Michal Gorny (mgorny)
mgorny  15/07/25 16:07:44

  Modified: kdevelop-php-1.7.1.ebuild kdevelop-php-1.6.0.ebuild
kdevelop-php-1.5.2.ebuild ChangeLog
  Log:
  Pin dependencies to dev-util/kdevelop-pg-qt:4. 
https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/171 by a17r.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.2  dev-util/kdevelop-php/kdevelop-php-1.7.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-php/kdevelop-php-1.7.1.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-php/kdevelop-php-1.7.1.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-php/kdevelop-php-1.7.1.ebuild?r1=1.1r2=1.2

Index: kdevelop-php-1.7.1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-util/kdevelop-php/kdevelop-php-1.7.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- kdevelop-php-1.7.1.ebuild   10 Feb 2015 21:46:16 -  1.1
+++ kdevelop-php-1.7.1.ebuild   25 Jul 2015 16:07:44 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-util/kdevelop-php/kdevelop-php-1.7.1.ebuild,v 1.1 
2015/02/10 21:46:16 johu Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-util/kdevelop-php/kdevelop-php-1.7.1.ebuild,v 1.2 
2015/07/25 16:07:44 mgorny Exp $
 
 EAPI=5
 
@@ -24,8 +24,7 @@
 RESTRICT=test
 
 DEPEND=
-   =dev-util/kdevelop-pg-qt-1.0.0
-   =dev-util/kdevelop-pg-qt-5
+   =dev-util/kdevelop-pg-qt-1.0.0:4
 
 RDEPEND=
dev-util/kdevelop:${SLOT}



1.2  dev-util/kdevelop-php/kdevelop-php-1.6.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-php/kdevelop-php-1.6.0.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-php/kdevelop-php-1.6.0.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-php/kdevelop-php-1.6.0.ebuild?r1=1.1r2=1.2

Index: kdevelop-php-1.6.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-util/kdevelop-php/kdevelop-php-1.6.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- kdevelop-php-1.6.0.ebuild   12 Mar 2014 12:12:48 -  1.1
+++ kdevelop-php-1.6.0.ebuild   25 Jul 2015 16:07:44 -  1.2
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-util/kdevelop-php/kdevelop-php-1.6.0.ebuild,v 1.1 
2014/03/12 12:12:48 johu Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-util/kdevelop-php/kdevelop-php-1.6.0.ebuild,v 1.2 
2015/07/25 16:07:44 mgorny Exp $
 
 EAPI=5
 
@@ -24,10 +24,10 @@
 fi
 
 DEPEND=
-   =dev-util/kdevelop-pg-qt-1.0.0
+   =dev-util/kdevelop-pg-qt-1.0.0:4
 
 RDEPEND=
-   dev-util/kdevelop
+   dev-util/kdevelop:${SLOT}
doc? ( =dev-util/kdevelop-php-docs-${PV}:${SLOT} )
 
 PATCHES=( ${FILESDIR}/${PN}-1.2.0-parmake.patch )



1.4  dev-util/kdevelop-php/kdevelop-php-1.5.2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-php/kdevelop-php-1.5.2.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-php/kdevelop-php-1.5.2.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-php/kdevelop-php-1.5.2.ebuild?r1=1.3r2=1.4

Index: kdevelop-php-1.5.2.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-util/kdevelop-php/kdevelop-php-1.5.2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- kdevelop-php-1.5.2.ebuild   26 Jan 2014 11:38:54 -  1.3
+++ kdevelop-php-1.5.2.ebuild   25 Jul 2015 16:07:44 -  1.4
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-util/kdevelop-php/kdevelop-php-1.5.2.ebuild,v 1.3 
2014/01/26 11:38:54 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-util/kdevelop-php/kdevelop-php-1.5.2.ebuild,v 1.4 
2015/07/25 16:07:44 mgorny Exp $
 
 EAPI=5
 
@@ -24,10 +24,10 @@
 fi
 
 DEPEND=
-   =dev-util/kdevelop-pg-qt-1.0.0
+   =dev-util/kdevelop-pg-qt-1.0.0:4
 
 RDEPEND=
-   dev-util/kdevelop
+   dev-util/kdevelop:${SLOT}
doc? ( =dev-util/kdevelop-php-docs-${PV}:${SLOT} )
 
 PATCHES=( ${FILESDIR}/${PN}-1.2.0-parmake.patch )



1.51 

[gentoo-commits] gentoo-x86 commit in net-firewall/shorewall: shorewall-4.6.11.ebuild ChangeLog

2015-07-25 Thread Michal Gorny (mgorny)
mgorny  15/07/25 16:21:10

  Modified: ChangeLog
  Added:shorewall-4.6.11.ebuild
  Log:
  Version bump. https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/177 
by Whissi.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.290net-firewall/shorewall/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/shorewall/ChangeLog?rev=1.290view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/shorewall/ChangeLog?rev=1.290content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/shorewall/ChangeLog?r1=1.289r2=1.290

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-firewall/shorewall/ChangeLog,v
retrieving revision 1.289
retrieving revision 1.290
diff -u -r1.289 -r1.290
--- ChangeLog   23 Jul 2015 20:58:46 -  1.289
+++ ChangeLog   25 Jul 2015 16:21:10 -  1.290
@@ -1,6 +1,12 @@
 # ChangeLog for net-firewall/shorewall
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-firewall/shorewall/ChangeLog,v 1.289 
2015/07/23 20:58:46 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-firewall/shorewall/ChangeLog,v 1.290 
2015/07/25 16:21:10 mgorny Exp $
+
+*shorewall-4.6.11 (25 Jul 2015)
+
+  25 Jul 2015; Michał Górny mgo...@gentoo.org +shorewall-4.6.11.ebuild:
+  Version bump. https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/177
+  by Whissi.
 
   23 Jul 2015; Pacho Ramos pa...@gentoo.org shorewall-4.6.10.1.ebuild:
   ppc stable wrt bug #555188



1.1  net-firewall/shorewall/shorewall-4.6.11.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/shorewall/shorewall-4.6.11.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/shorewall/shorewall-4.6.11.ebuild?rev=1.1content-type=text/plain

Index: shorewall-4.6.11.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/net-firewall/shorewall/shorewall-4.6.11.ebuild,v 1.1 
2015/07/25 16:21:10 mgorny Exp $

EAPI=5

inherit eutils linux-info prefix systemd versionator

DESCRIPTION='The Shoreline Firewall, commonly known as Shorewall, is'
DESCRIPTION+=' a high-level tool for configuring Netfilter'
HOMEPAGE=http://www.shorewall.net/;
LICENSE=GPL-2
SLOT=0
IUSE=doc +init +ipv4 ipv6 lite4 lite6

MY_PV=${PV/_rc/-RC}
MY_PV=${MY_PV/_beta/-Beta}
MY_P=${PN}-${MY_PV}

MY_MAJOR_RELEASE_NUMBER=$(get_version_component_range 1-2)
MY_MAJORMINOR_RELEASE_NUMBER=$(get_version_component_range 1-3)

# shorewall
MY_PN_IPV4=Shorewall
MY_P_IPV4=${MY_PN_IPV4/#S/s}-${MY_PV}

# shorewall6
MY_PN_IPV6=Shorewall6
MY_P_IPV6=${MY_PN_IPV6/#S/s}-${MY_PV}

# shorewall-lite
MY_PN_LITE4=Shorewall-lite
MY_P_LITE4=${MY_PN_LITE4/#S/s}-${MY_PV}

# shorewall6-lite
MY_PN_LITE6=Shorewall6-lite
MY_P_LITE6=${MY_PN_LITE6/#S/s}-${MY_PV}

# shorewall-init
MY_PN_INIT=Shorewall-init
MY_P_INIT=${MY_PN_INIT/#S/s}-${MY_PV}

# shorewall-core
MY_PN_CORE=Shorewall-core
MY_P_CORE=${MY_PN_CORE/#S/s}-${MY_PV}

# shorewall-docs-html
MY_PN_DOCS=Shorewall-docs-html
MY_P_DOCS=${MY_PN_DOCS/#S/s}-${MY_PV}

# Upstream URL schema:
# Beta:
$MIRROR/pub/shorewall/development/4.6/shorewall-4.6.4-Beta2/shorewall-4.6.4-Beta2.tar.bz2
# RC:  
$MIRROR/pub/shorewall/development/4.6/shorewall-4.6.4-RC1/shorewall-4.6.4-RC1.tar.bz2
# Release: $MIRROR/pub/shorewall/4.6/shorewall-4.6.3/shorewall-4.6.3.3.tar.bz2

MY_URL_PREFIX=
MY_URL_SUFFIX=
if [[ ${MY_PV} = *-Beta* ]] || [[ ${MY_PV} = *-RC* ]]; then
MY_URL_PREFIX='development/'

_tmp_last_index=$(($(get_last_version_component_index ${MY_PV})+1))
_tmp_suffix=$(get_version_component_range ${_tmp_last_index} ${MY_PV})
if [[ ${_tmp_suffix} = *Beta* ]] || [[ ${_tmp_suffix} = *RC* ]]; then
MY_URL_SUFFIX=-${_tmp_suffix}
fi

# Cleaning up temporary variables
unset _tmp_last_index
unset _tmp_suffix
else
KEYWORDS=~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86
fi

SRC_URI=

http://www.shorewall.net/pub/shorewall/${MY_URL_PREFIX}${MY_MAJOR_RELEASE_NUMBER}/shorewall-${MY_MAJORMINOR_RELEASE_NUMBER}${MY_URL_SUFFIX}/shorewall-core-${MY_PV}.tar.bz2
ipv4? ( 
http://www.shorewall.net/pub/shorewall/${MY_URL_PREFIX}${MY_MAJOR_RELEASE_NUMBER}/shorewall-${MY_MAJORMINOR_RELEASE_NUMBER}${MY_URL_SUFFIX}/shorewall-${MY_PV}.tar.bz2
 )
ipv6? ( 
http://www.shorewall.net/pub/shorewall/${MY_URL_PREFIX}${MY_MAJOR_RELEASE_NUMBER}/shorewall-${MY_MAJORMINOR_RELEASE_NUMBER}${MY_URL_SUFFIX}/shorewall6-${MY_PV}.tar.bz2
 )
lite4? ( 

[gentoo-commits] gentoo-x86 commit in sys-devel/clang: clang-3.6.2-r100.ebuild ChangeLog

2015-07-25 Thread Michal Gorny (mgorny)
mgorny  15/07/25 13:54:01

  Modified: ChangeLog
  Added:clang-3.6.2-r100.ebuild
  Log:
  Version bump to match sys-devel/llvm. Bug #36.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.125sys-devel/clang/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/clang/ChangeLog?rev=1.125view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/clang/ChangeLog?rev=1.125content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/clang/ChangeLog?r1=1.124r2=1.125

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-devel/clang/ChangeLog,v
retrieving revision 1.124
retrieving revision 1.125
diff -u -r1.124 -r1.125
--- ChangeLog   27 May 2015 12:02:40 -  1.124
+++ ChangeLog   25 Jul 2015 13:54:01 -  1.125
@@ -1,6 +1,11 @@
 # ChangeLog for sys-devel/clang
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/clang/ChangeLog,v 1.124 
2015/05/27 12:02:40 voyageur Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/clang/ChangeLog,v 1.125 
2015/07/25 13:54:01 mgorny Exp $
+
+*clang-3.6.2-r100 (25 Jul 2015)
+
+  25 Jul 2015; Michał Górny mgo...@gentoo.org +clang-3.6.2-r100.ebuild:
+  Version bump to match sys-devel/llvm. Bug #36.
 
 *clang-3.6.1-r100 (27 May 2015)
 



1.1  sys-devel/clang/clang-3.6.2-r100.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/clang/clang-3.6.2-r100.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/clang/clang-3.6.2-r100.ebuild?rev=1.1content-type=text/plain

Index: clang-3.6.2-r100.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-devel/clang/clang-3.6.2-r100.ebuild,v 
1.1 2015/07/25 13:54:01 mgorny Exp $

EAPI=5

inherit multilib-build

DESCRIPTION=C language family frontend for LLVM (meta-ebuild)
HOMEPAGE=http://clang.llvm.org/;
SRC_URI=

LICENSE=UoI-NCSA
SLOT=0/3.6
KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd 
~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos
IUSE=debug multitarget python +static-analyzer

RDEPEND=~sys-devel/llvm-${PV}[clang(-),debug=,multitarget?,python?,static-analyzer,${MULTILIB_USEDEP}]

# Please keep this package around since it's quite likely that we'll
# return to separate LLVM  clang ebuilds when the cmake build system
# is complete.

pkg_postinst() {
if has_version =dev-util/ccache-3.1.9-r2 ; then
#add ccache links as clang might get installed after ccache
${EROOT}/usr/bin/ccache-config --install-links
fi
}

pkg_postrm() {
if has_version =dev-util/ccache-3.1.9-r2  [[ -z 
${REPLACED_BY_VERSION} ]]; then
# --remove-links would remove all links, --install-links 
updates them
${EROOT}/usr/bin/ccache-config --install-links
fi
}






[gentoo-commits] gentoo-x86 commit in profiles/updates: 3Q-2015

2015-07-25 Thread Michal Gorny (mgorny)
mgorny  15/07/25 16:05:59

  Modified: 3Q-2015
  Log:
  Slotmove for dev-util/kdevelop-qmake. 
https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/170 by a17r.

Revision  ChangesPath
1.4  profiles/updates/3Q-2015

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/updates/3Q-2015?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/updates/3Q-2015?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/updates/3Q-2015?r1=1.3r2=1.4

Index: 3Q-2015
===
RCS file: /var/cvsroot/gentoo-x86/profiles/updates/3Q-2015,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- 3Q-2015 25 Jul 2015 16:00:54 -  1.3
+++ 3Q-2015 25 Jul 2015 16:05:59 -  1.4
@@ -1,3 +1,4 @@
 move dev-perl/inline-files dev-perl/Inline-Files
 move dev-perl/locale-maketext-lexicon dev-perl/Locale-Maketext-Lexicon
 slotmove dev-util/kdevelop-pg-qt 0 4
+slotmove dev-util/kdevelop-qmake 0 4






[gentoo-commits] gentoo-x86 commit in profiles: ChangeLog

2015-07-25 Thread Michal Gorny (mgorny)
mgorny  15/07/25 16:05:59

  Modified: ChangeLog
  Log:
  Slotmove for dev-util/kdevelop-qmake. 
https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/170 by a17r.

Revision  ChangesPath
1.10203  profiles/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/ChangeLog?rev=1.10203view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/ChangeLog?rev=1.10203content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/ChangeLog?r1=1.10202r2=1.10203

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v
retrieving revision 1.10202
retrieving revision 1.10203
diff -u -r1.10202 -r1.10203
--- ChangeLog   25 Jul 2015 16:00:54 -  1.10202
+++ ChangeLog   25 Jul 2015 16:05:59 -  1.10203
@@ -1,12 +1,16 @@
 # ChangeLog for profile directory
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.10202 2015/07/25 
16:00:54 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.10203 2015/07/25 
16:05:59 mgorny Exp $
 #
 # This ChangeLog should include records for all changes in profiles directory.
 # Only typo fixes which don't affect portage/repoman behaviour could be avoided
 # here. If in doubt put a record here!
 
   25 Jul 2015; Michał Górny mgo...@gentoo.org updates/3Q-2015:
+  Slotmove for dev-util/kdevelop-qmake.
+  https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/170 by a17r.
+
+  25 Jul 2015; Michał Górny mgo...@gentoo.org updates/3Q-2015:
   Add slotmove for dev-util/kdevelop-pg-qt.
   https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/169 by a17r.
 






[gentoo-commits] gentoo-x86 commit in dev-util/kdevelop-qmake: kdevelop-qmake-1.7.0.ebuild metadata.xml kdevelop-qmake-1.6.0.ebuild ChangeLog

2015-07-25 Thread Michal Gorny (mgorny)
mgorny  15/07/25 16:06:00

  Modified: metadata.xml kdevelop-qmake-1.6.0.ebuild ChangeLog
  Added:kdevelop-qmake-1.7.0.ebuild
  Log:
  Move to slot 4 and bump, bug #548532. 
https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/170 by a17r.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.2  dev-util/kdevelop-qmake/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-qmake/metadata.xml?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-qmake/metadata.xml?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-qmake/metadata.xml?r1=1.1r2=1.2

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/dev-util/kdevelop-qmake/metadata.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- metadata.xml2 Jun 2014 12:50:18 -   1.1
+++ metadata.xml25 Jul 2015 16:06:00 -  1.2
@@ -2,4 +2,7 @@
 !DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
 pkgmetadata
herdkde/herd
+   use
+   flag name=toolsBuild and install the qmake-parser debugging 
tool/flag
+   /use
 /pkgmetadata



1.2  dev-util/kdevelop-qmake/kdevelop-qmake-1.6.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-qmake/kdevelop-qmake-1.6.0.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-qmake/kdevelop-qmake-1.6.0.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-qmake/kdevelop-qmake-1.6.0.ebuild?r1=1.1r2=1.2

Index: kdevelop-qmake-1.6.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-util/kdevelop-qmake/kdevelop-qmake-1.6.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- kdevelop-qmake-1.6.0.ebuild 2 Jun 2014 12:50:18 -   1.1
+++ kdevelop-qmake-1.6.0.ebuild 25 Jul 2015 16:06:00 -  1.2
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-util/kdevelop-qmake/kdevelop-qmake-1.6.0.ebuild,v 
1.1 2014/06/02 12:50:18 zx2c4 Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-util/kdevelop-qmake/kdevelop-qmake-1.6.0.ebuild,v 
1.2 2015/07/25 16:06:00 mgorny Exp $
 
 EAPI=5
 
@@ -15,12 +15,15 @@
 SRC_URI=http://quickgit.kde.org/?p=${MY_PN}.gita=snapshoth=${PV%%.0} - 
${P}.tar.gz
 
 LICENSE=GPL-2
-SLOT=0
+SLOT=4
 KEYWORDS=~amd64 ~x86
 IUSE=
 
-DEPEND=dev-util/kdevelop-pg-qt
-RDEPEND=dev-util/kdevelop ${DEPEND}
+DEPEND=
+   dev-util/kdevelop:4
+   dev-util/kdevelop-pg-qt:4
+
+RDEPEND=${DEPEND}
 
 src_install() {
kde4-base_src_install



1.2  dev-util/kdevelop-qmake/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-qmake/ChangeLog?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-qmake/ChangeLog?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-qmake/ChangeLog?r1=1.1r2=1.2

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-util/kdevelop-qmake/ChangeLog,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ChangeLog   2 Jun 2014 12:50:18 -   1.1
+++ ChangeLog   25 Jul 2015 16:06:00 -  1.2
@@ -1,6 +1,13 @@
 # ChangeLog for dev-util/kdevelop-qmake
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/kdevelop-qmake/ChangeLog,v 1.1 
2014/06/02 12:50:18 zx2c4 Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-util/kdevelop-qmake/ChangeLog,v 1.2 
2015/07/25 16:06:00 mgorny Exp $
+
+*kdevelop-qmake-1.7.0 (25 Jul 2015)
+
+  25 Jul 2015; Michał Górny mgo...@gentoo.org +kdevelop-qmake-1.7.0.ebuild,
+  kdevelop-qmake-1.6.0.ebuild, metadata.xml:
+  Move to slot 4 and bump, bug #548532. https://github.com/gentoo/gentoo-
+  portage-rsync-mirror/pull/170 by a17r.
 
 *kdevelop-qmake-1.6.0 (02 Jun 2014)
 



1.1  dev-util/kdevelop-qmake/kdevelop-qmake-1.7.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-qmake/kdevelop-qmake-1.7.0.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-qmake/kdevelop-qmake-1.7.0.ebuild?rev=1.1content-type=text/plain

Index: kdevelop-qmake-1.7.0.ebuild
===
# Copyright 1999-2015 

[gentoo-commits] gentoo-x86 commit in kde-apps/kmix/files: - New directory

2015-07-25 Thread Michal Gorny (mgorny)
mgorny  15/07/25 16:11:17

  Log:
  Directory /var/cvsroot/gentoo-x86/kde-apps/kmix/files added to the repository



[gentoo-commits] gentoo-x86 commit in dev-util/kdevelop-python: kdevelop-python-1.7.1.ebuild kdevelop-python-1.6.0.ebuild kdevelop-python-1.5.2.ebuild ChangeLog

2015-07-25 Thread Michal Gorny (mgorny)
mgorny  15/07/25 16:13:44

  Modified: kdevelop-python-1.7.1.ebuild
kdevelop-python-1.6.0.ebuild
kdevelop-python-1.5.2.ebuild ChangeLog
  Log:
  Pin dependencies to slot :4, clean up redundant deps. 
https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/174 by a17r.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.2  dev-util/kdevelop-python/kdevelop-python-1.7.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-python/kdevelop-python-1.7.1.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-python/kdevelop-python-1.7.1.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-python/kdevelop-python-1.7.1.ebuild?r1=1.1r2=1.2

Index: kdevelop-python-1.7.1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-util/kdevelop-python/kdevelop-python-1.7.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- kdevelop-python-1.7.1.ebuild10 Feb 2015 22:11:29 -  1.1
+++ kdevelop-python-1.7.1.ebuild25 Jul 2015 16:13:44 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-util/kdevelop-python/kdevelop-python-1.7.1.ebuild,v 
1.1 2015/02/10 22:11:29 johu Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-util/kdevelop-python/kdevelop-python-1.7.1.ebuild,v 
1.2 2015/07/25 16:13:44 mgorny Exp $
 
 EAPI=5
 
@@ -21,12 +21,10 @@
 DESCRIPTION=Python plugin for KDevelop 4
 IUSE=debug
 
-COMMON_DEPEND==dev-util/kdevplatform-${PV}:4
-DEPEND=${COMMON_DEPEND}
+DEPEND=
${PYTHON_DEPS}
 
 RDEPEND=
-   ${COMMON_DEPEND}
dev-util/kdevelop:4
 
 



1.3  dev-util/kdevelop-python/kdevelop-python-1.6.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-python/kdevelop-python-1.6.0.ebuild?rev=1.3view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-python/kdevelop-python-1.6.0.ebuild?rev=1.3content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-python/kdevelop-python-1.6.0.ebuild?r1=1.2r2=1.3

Index: kdevelop-python-1.6.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-util/kdevelop-python/kdevelop-python-1.6.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- kdevelop-python-1.6.0.ebuild17 Mar 2014 09:54:03 -  1.2
+++ kdevelop-python-1.6.0.ebuild25 Jul 2015 16:13:44 -  1.3
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-util/kdevelop-python/kdevelop-python-1.6.0.ebuild,v 
1.2 2014/03/17 09:54:03 kensington Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-util/kdevelop-python/kdevelop-python-1.6.0.ebuild,v 
1.3 2015/07/25 16:13:44 mgorny Exp $
 
 EAPI=5
 
@@ -28,12 +28,9 @@
 LICENSE=GPL-2
 IUSE=debug
 
-DEPEND=
-   =dev-util/kdevplatform-${KDEVPLATFORM_VERSION}
-
+DEPEND=
 RDEPEND=
-   ${DEPEND}
-   dev-util/kdevelop
+   dev-util/kdevelop:4
 
 
 RESTRICT=test



1.4  dev-util/kdevelop-python/kdevelop-python-1.5.2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-python/kdevelop-python-1.5.2.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-python/kdevelop-python-1.5.2.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-python/kdevelop-python-1.5.2.ebuild?r1=1.3r2=1.4

Index: kdevelop-python-1.5.2.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-util/kdevelop-python/kdevelop-python-1.5.2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- kdevelop-python-1.5.2.ebuild26 Jan 2014 11:39:02 -  1.3
+++ kdevelop-python-1.5.2.ebuild25 Jul 2015 16:13:44 -  1.4
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-util/kdevelop-python/kdevelop-python-1.5.2.ebuild,v 
1.3 2014/01/26 11:39:02 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-util/kdevelop-python/kdevelop-python-1.5.2.ebuild,v 
1.4 2015/07/25 16:13:44 mgorny Exp $
 
 EAPI=5
 
@@ -29,15 +29,11 @@
 LICENSE=GPL-2
 IUSE=debug
 
-COMMON_DEPEND=
-   =dev-util/kdevplatform-1.4.60
-
-DEPEND=${COMMON_DEPEND}
-  

[gentoo-commits] gentoo-x86 commit in profiles: ChangeLog

2015-07-25 Thread Michal Gorny (mgorny)
mgorny  15/07/25 16:00:54

  Modified: ChangeLog
  Log:
  Add slotmove for dev-util/kdevelop-pg-qt. 
https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/169 by a17r.

Revision  ChangesPath
1.10202  profiles/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/ChangeLog?rev=1.10202view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/ChangeLog?rev=1.10202content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/ChangeLog?r1=1.10201r2=1.10202

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v
retrieving revision 1.10201
retrieving revision 1.10202
diff -u -r1.10201 -r1.10202
--- ChangeLog   23 Jul 2015 20:20:35 -  1.10201
+++ ChangeLog   25 Jul 2015 16:00:54 -  1.10202
@@ -1,11 +1,15 @@
 # ChangeLog for profile directory
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.10201 2015/07/23 
20:20:35 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.10202 2015/07/25 
16:00:54 mgorny Exp $
 #
 # This ChangeLog should include records for all changes in profiles directory.
 # Only typo fixes which don't affect portage/repoman behaviour could be avoided
 # here. If in doubt put a record here!
 
+  25 Jul 2015; Michał Górny mgo...@gentoo.org updates/3Q-2015:
+  Add slotmove for dev-util/kdevelop-pg-qt.
+  https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/169 by a17r.
+
   23 Jul 2015; Pacho Ramos pa...@gentoo.org
   arch/powerpc/ppc32/package.use.stable.mask:
   Update package.use.stable.mask






[gentoo-commits] gentoo-x86 commit in profiles/updates: 3Q-2015

2015-07-25 Thread Michal Gorny (mgorny)
mgorny  15/07/25 16:00:54

  Modified: 3Q-2015
  Log:
  Add slotmove for dev-util/kdevelop-pg-qt. 
https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/169 by a17r.

Revision  ChangesPath
1.3  profiles/updates/3Q-2015

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/updates/3Q-2015?rev=1.3view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/updates/3Q-2015?rev=1.3content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/updates/3Q-2015?r1=1.2r2=1.3

Index: 3Q-2015
===
RCS file: /var/cvsroot/gentoo-x86/profiles/updates/3Q-2015,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- 3Q-2015 11 Jul 2015 20:41:50 -  1.2
+++ 3Q-2015 25 Jul 2015 16:00:54 -  1.3
@@ -1,2 +1,3 @@
 move dev-perl/inline-files dev-perl/Inline-Files
 move dev-perl/locale-maketext-lexicon dev-perl/Locale-Maketext-Lexicon
+slotmove dev-util/kdevelop-pg-qt 0 4






[gentoo-commits] gentoo-x86 commit in kde-apps/kmix: kmix-4.14.3-r1.ebuild ChangeLog

2015-07-25 Thread Michal Gorny (mgorny)
mgorny  15/07/25 16:12:08

  Modified: ChangeLog
  Added:kmix-4.14.3-r1.ebuild
  Log:
  Fix automagic dep on alsa. 
https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/173 by a17r.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.2  kde-apps/kmix/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-apps/kmix/ChangeLog?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-apps/kmix/ChangeLog?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-apps/kmix/ChangeLog?r1=1.1r2=1.2

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/kde-apps/kmix/ChangeLog,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ChangeLog   4 Jun 2015 18:44:40 -   1.1
+++ ChangeLog   25 Jul 2015 16:12:08 -  1.2
@@ -1,6 +1,13 @@
-# ChangeLog for kde-base/kmix
+# ChangeLog for kde-apps/kmix
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/kde-apps/kmix/ChangeLog,v 1.1 2015/06/04 
18:44:40 kensington Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-apps/kmix/ChangeLog,v 1.2 2015/07/25 
16:12:08 mgorny Exp $
+
+*kmix-4.14.3-r1 (25 Jul 2015)
+
+  25 Jul 2015; Michał Górny mgo...@gentoo.org
+  +files/kmix-4.14.3-alsa-optional.patch, +kmix-4.14.3-r1.ebuild:
+  Fix automagic dep on alsa. https://github.com/gentoo/gentoo-portage-rsync-
+  mirror/pull/173 by a17r.
 
   18 Feb 2015; Michał Górny mgo...@gentoo.org -kmix-4.12.5.ebuild:
   Remove KDE SC 4.12



1.1  kde-apps/kmix/kmix-4.14.3-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-apps/kmix/kmix-4.14.3-r1.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-apps/kmix/kmix-4.14.3-r1.ebuild?rev=1.1content-type=text/plain

Index: kmix-4.14.3-r1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-apps/kmix/kmix-4.14.3-r1.ebuild,v 1.1 
2015/07/25 16:12:08 mgorny Exp $

EAPI=5

KDE_HANDBOOK=optional
inherit kde4-base

DESCRIPTION=KDE mixer gui
HOMEPAGE=http://www.kde.org/applications/multimedia/kmix/;
KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux
IUSE=alsa debug canberra pulseaudio

DEPEND=
alsa? ( =media-libs/alsa-lib-1.0.14a )
canberra? ( media-libs/libcanberra )
pulseaudio? ( =media-sound/pulseaudio-0.9.12 )

RDEPEND=${DEPEND}

PATCHES=( ${FILESDIR}/${PN}-4.14.3-alsa-optional.patch )

src_configure() {
local mycmakeargs=(
$(cmake-utils_use_find_package alsa)
$(cmake-utils_use_with canberra)
$(cmake-utils_use_with pulseaudio PulseAudio)
)

kde4-base_src_configure
}






[gentoo-commits] gentoo-x86 commit in kde-apps/kmix/files: kmix-4.14.3-alsa-optional.patch

2015-07-25 Thread Michal Gorny (mgorny)
mgorny  15/07/25 16:12:08

  Added:kmix-4.14.3-alsa-optional.patch
  Log:
  Fix automagic dep on alsa. 
https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/173 by a17r.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.1  kde-apps/kmix/files/kmix-4.14.3-alsa-optional.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-apps/kmix/files/kmix-4.14.3-alsa-optional.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-apps/kmix/files/kmix-4.14.3-alsa-optional.patch?rev=1.1content-type=text/plain

Index: kmix-4.14.3-alsa-optional.patch
===
commit 233f93b01ff05349793a8a2786750a2195f257ab
Author: Andreas Sturmlechner andreas.sturmlech...@gmail.com
Date:   Sat Jul 11 15:48:35 2015 +0200

Fix build w/ optional alsa, make HAVE_LIBASOUND2 work

diff --git a/CMakeLists.txt b/CMakeLists.txt
index c829005..17c106d 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -9,8 +9,6 @@ include(MacroLibrary)
 # Do not yet REQUIRE Phonon. Hint: As long as we do not find_package(), 
${KDE4_PHONON_LIBS} will be empty below, but that should not hurt.
 #find_package(Phonon REQUIRED)
 
-find_package(Alsa)
-
 set(PA_VER 0.9.16)
 macro_optional_find_package(PulseAudio ${PA_VER})
 macro_log_feature(PULSEAUDIO_FOUND PulseAudio PulseAudio Audio Server
@@ -20,8 +18,11 @@ macro_optional_find_package(Canberra)
 macro_log_feature(CANBERRA_FOUND libcanberra libcanberra audio library
 http://0pointer.de/lennart/projects/libcanberra/; FALSE  libcanberra 
is needed for kmix sound feedback)
 
-alsa_configure_file(${CMAKE_BINARY_DIR}/config-alsa.h)
-
+find_package(Alsa)
+if(ALSA_FOUND)
+alsa_configure_file(${CMAKE_BINARY_DIR}/config-alsa.h)
+add_definitions(-DHAVE_LIBASOUND2)
+endif(ALSA_FOUND)
 
 add_definitions (${QT_DEFINITIONS} ${QT_QTDBUS_DEFINITIONS} 
${KDE4_DEFINITIONS} )
 add_definitions(-DKDE_DEFAULT_DEBUG_AREA=67100)
diff --git a/backends/kmix-backends.cpp b/backends/kmix-backends.cpp
index 14ecfb3..1397099 100644
--- a/backends/kmix-backends.cpp
+++ b/backends/kmix-backends.cpp
@@ -23,7 +23,9 @@
 /* This code is being #include'd from mixer.cpp */
 
 #include config.h
+#ifdef HAVE_LIBASOUND2
 #include config-alsa.h
+#endif
 
 #include mixer_backend.h
 #include core/mixer.h






[gentoo-commits] gentoo-x86 commit in eclass: ChangeLog python-utils-r1.eclass

2015-07-25 Thread Michal Gorny (mgorny)
mgorny  15/07/25 10:07:36

  Modified: ChangeLog python-utils-r1.eclass
  Log:
  Add missing ||die to rm -f calls, i.e. in case we do not have permission to 
remove the files.

Revision  ChangesPath
1.1727   eclass/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1727view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1727content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.1726r2=1.1727

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
retrieving revision 1.1726
retrieving revision 1.1727
diff -u -r1.1726 -r1.1727
--- ChangeLog   23 Jul 2015 15:42:26 -  1.1726
+++ ChangeLog   25 Jul 2015 10:07:36 -  1.1727
@@ -1,6 +1,10 @@
 # ChangeLog for eclass directory
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1726 2015/07/23 
15:42:26 williamh Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1727 2015/07/25 
10:07:36 mgorny Exp $
+
+  25 Jul 2015; Michał Górny mgo...@gentoo.org python-utils-r1.eclass:
+  Add missing ||die to rm -f calls, i.e. in case we do not have permission to
+  remove the files.
 
   23 Jul 2015; William Hubbs willi...@gentoo.org golang-build.eclass:
   Add functions to retrieve Go library paths and install Go packages.



1.84 eclass/python-utils-r1.eclass

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/python-utils-r1.eclass?rev=1.84view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/python-utils-r1.eclass?rev=1.84content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/python-utils-r1.eclass?r1=1.83r2=1.84

Index: python-utils-r1.eclass
===
RCS file: /var/cvsroot/gentoo-x86/eclass/python-utils-r1.eclass,v
retrieving revision 1.83
retrieving revision 1.84
diff -u -r1.83 -r1.84
--- python-utils-r1.eclass  4 Jul 2015 15:26:17 -   1.83
+++ python-utils-r1.eclass  25 Jul 2015 10:07:36 -  1.84
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/python-utils-r1.eclass,v 1.83 
2015/07/04 15:26:17 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/python-utils-r1.eclass,v 1.84 
2015/07/25 10:07:36 mgorny Exp $
 
 # @ECLASS: python-utils-r1
 # @MAINTAINER:
@@ -840,9 +840,9 @@
mkdir -p ${workdir}/{bin,pkgconfig} || die
 
# Clean up, in case we were supposed to do a cheap update.
-   rm -f ${workdir}/bin/python{,2,3,-config}
-   rm -f ${workdir}/bin/2to3
-   rm -f ${workdir}/pkgconfig/python{,2,3}.pc
+   rm -f ${workdir}/bin/python{,2,3,-config} || die
+   rm -f ${workdir}/bin/2to3 || die
+   rm -f ${workdir}/pkgconfig/python{,2,3}.pc || die
 
local EPYTHON PYTHON
python_export ${impl} EPYTHON PYTHON






[gentoo-commits] gentoo-x86 commit in sys-freebsd/freebsd-sources: freebsd-sources-10.1-r5.ebuild ChangeLog freebsd-sources-10.1-r4.ebuild

2015-07-25 Thread Michal Gorny (mgorny)
mgorny  15/07/25 12:07:51

  Modified: ChangeLog
  Added:freebsd-sources-10.1-r5.ebuild
  Removed:  freebsd-sources-10.1-r4.ebuild
  Log:
  Fix FreeBSD-SA-15:13.tcp
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.116sys-freebsd/freebsd-sources/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-freebsd/freebsd-sources/ChangeLog?rev=1.116view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-freebsd/freebsd-sources/ChangeLog?rev=1.116content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-freebsd/freebsd-sources/ChangeLog?r1=1.115r2=1.116

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-freebsd/freebsd-sources/ChangeLog,v
retrieving revision 1.115
retrieving revision 1.116
diff -u -r1.115 -r1.116
--- ChangeLog   9 Jul 2015 06:45:53 -   1.115
+++ ChangeLog   25 Jul 2015 12:07:51 -  1.116
@@ -1,6 +1,12 @@
 # ChangeLog for sys-freebsd/freebsd-sources
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-freebsd/freebsd-sources/ChangeLog,v 
1.115 2015/07/09 06:45:53 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-freebsd/freebsd-sources/ChangeLog,v 
1.116 2015/07/25 12:07:51 mgorny Exp $
+
+*freebsd-sources-10.1-r5 (25 Jul 2015)
+
+  25 Jul 2015; Michał Górny mgo...@gentoo.org 
+freebsd-sources-10.1-r5.ebuild,
+  -freebsd-sources-10.1-r4.ebuild:
+  Fix FreeBSD-SA-15:13.tcp
 
 *freebsd-sources-10.1-r4 (09 Jul 2015)
 



1.1  sys-freebsd/freebsd-sources/freebsd-sources-10.1-r5.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-freebsd/freebsd-sources/freebsd-sources-10.1-r5.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-freebsd/freebsd-sources/freebsd-sources-10.1-r5.ebuild?rev=1.1content-type=text/plain

Index: freebsd-sources-10.1-r5.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/sys-freebsd/freebsd-sources/freebsd-sources-10.1-r5.ebuild,v
 1.1 2015/07/25 12:07:51 mgorny Exp $

EAPI=5

inherit bsdmk freebsd flag-o-matic toolchain-funcs

DESCRIPTION=FreeBSD kernel sources
SLOT=0

IUSE=+build-kernel debug dtrace zfs

# Security Advisory and Errata patches.
UPSTREAM_PATCHES=( SA-15:02/sctp.patch
SA-15:03/sctp.patch
SA-15:04/igmp.patch
SA-15:04/igmp-errata.patch
SA-15:09/ipv6.patch
SA-15:13/tcp.patch
EN-15:01/vt.patch
EN-15:05/ufs.patch
EN-15:07/zfs.patch )

if [[ ${PV} != ** ]]; then
KEYWORDS=~amd64-fbsd ~sparc-fbsd ~x86-fbsd
SRC_URI=${SRC_URI}
$(freebsd_upstream_patches)
fi

EXTRACTONLY=
sys/
contrib/bmake/
usr.bin/bmake/

use zfs  EXTRACTONLY+=cddl/

RDEPEND=dtrace? ( =sys-freebsd/freebsd-cddl-9.2_rc1 )
=sys-freebsd/freebsd-mk-defs-${RV}*
!sys-freebsd/virtio-kmod
!sys-fs/fuse4bsd
!sys-freebsd/freebsd-sources-9.2_beta1
DEPEND=build-kernel? (
dtrace? ( =sys-freebsd/freebsd-cddl-9.2_rc1 )
=sys-freebsd/freebsd-usbin-9.1
=sys-freebsd/freebsd-mk-defs-${RV}*
)

RESTRICT=strip binchecks

S=${WORKDIR}/sys

KERN_BUILD=GENTOO

PATCHES=( ${FILESDIR}/${PN}-9.0-disable-optimization.patch
${FILESDIR}/${PN}-10.0-gentoo.patch
${FILESDIR}/${PN}-6.0-flex-2.5.31.patch
${FILESDIR}/${PN}-7.1-types.h-fix.patch
${FILESDIR}/${PN}-8.0-subnet-route-pr40133.patch
${FILESDIR}/${PN}-7.1-includes.patch
${FILESDIR}/${PN}-9.0-sysctluint.patch
${FILESDIR}/${PN}-9.2-gentoo-gcc.patch
${FILESDIR}/${PN}-10.1-gcc48.patch )

pkg_setup() {
# WITHOUT_SSP= is required to boot kernel that compiled with newer gcc, 
bug #477914
[[ $(tc-getCC) == *gcc* ]]  mymakeopts=${mymakeopts} WITHOUT_SSP=
use zfs || mymakeopts=${mymakeopts} WITHOUT_CDDL=
}

src_prepare() {
local conf=${S}/$(tc-arch-kernel)/conf/${KERN_BUILD}

# This replaces the gentoover patch, it doesn't need reapply every time.
sed -i -e 's:^REVISION=.*:REVISION='${PVR}':' \
-e 's:^BRANCH=.*:BRANCH=Gentoo:' \
-e 's:^VERSION=.*:VERSION=${TYPE} ${BRANCH} ${REVISION}:' \
${S}/conf/newvers.sh

# __FreeBSD_cc_version comes from FreeBSD's gcc.
# on 10.0-RELEASE it's 101.
# FYI, can get it from gnu/usr.bin/cc/cc_tools/freebsd-native.h.
sed -e s:-D_KERNEL:-D_KERNEL -D__FreeBSD_cc_version=101:g \
-i ${S}/conf/kern.pre.mk \
-i ${S}/conf/kmod.mk || die Couldn't set 
__FreeBSD_cc_version

  

[gentoo-commits] gentoo-x86 commit in sys-freebsd/boot0: boot0-10.1.ebuild ChangeLog

2015-07-25 Thread Michal Gorny (mgorny)
mgorny  15/07/25 12:09:21

  Modified: boot0-10.1.ebuild ChangeLog
  Log:
  Fix build failure on x86-fbsd, bug #554738. 
https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/181 by nigoro.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.5  sys-freebsd/boot0/boot0-10.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-freebsd/boot0/boot0-10.1.ebuild?rev=1.5view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-freebsd/boot0/boot0-10.1.ebuild?rev=1.5content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-freebsd/boot0/boot0-10.1.ebuild?r1=1.4r2=1.5

Index: boot0-10.1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-freebsd/boot0/boot0-10.1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- boot0-10.1.ebuild   14 Jun 2015 18:02:43 -  1.4
+++ boot0-10.1.ebuild   25 Jul 2015 12:09:21 -  1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-freebsd/boot0/boot0-10.1.ebuild,v 1.4 
2015/06/14 18:02:43 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-freebsd/boot0/boot0-10.1.ebuild,v 1.5 
2015/07/25 12:09:21 mgorny Exp $
 
 EAPI=5
 
@@ -60,10 +60,11 @@
freebsd_src_compile
cd ${S}/userboot/zfs || die
freebsd_src_compile
-   cd ${S}/libstand32 || die
-   freebsd_src_compile
fi
 
+   cd ${S}/libstand32 || die
+   freebsd_src_compile
+
# bug542676
if [[ $(tc-getCC) == *clang* ]]; then
cd ${S}/i386/btx || die



1.56 sys-freebsd/boot0/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-freebsd/boot0/ChangeLog?rev=1.56view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-freebsd/boot0/ChangeLog?rev=1.56content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-freebsd/boot0/ChangeLog?r1=1.55r2=1.56

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-freebsd/boot0/ChangeLog,v
retrieving revision 1.55
retrieving revision 1.56
diff -u -r1.55 -r1.56
--- ChangeLog   14 Jun 2015 18:02:43 -  1.55
+++ ChangeLog   25 Jul 2015 12:09:21 -  1.56
@@ -1,6 +1,10 @@
 # ChangeLog for sys-freebsd/boot0
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-freebsd/boot0/ChangeLog,v 1.55 
2015/06/14 18:02:43 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-freebsd/boot0/ChangeLog,v 1.56 
2015/07/25 12:09:21 mgorny Exp $
+
+  25 Jul 2015; Michał Górny mgo...@gentoo.org boot0-10.1.ebuild:
+  Fix build failure on x86-fbsd, bug #554738. https://github.com/gentoo/gentoo-
+  portage-rsync-mirror/pull/181 by nigoro.
 
   14 Jun 2015; Michał Górny mgo...@gentoo.org boot0-10.1.ebuild:
   Do not force clang, gcc works nowadays. https://github.com/gentoo/gentoo-






[gentoo-commits] gentoo-x86 commit in media-libs/oyranos/files: oyranos-9999-buildsystem.patch

2015-07-25 Thread Michal Gorny (mgorny)
mgorny  15/07/25 12:34:34

  Removed:  oyranos--buildsystem.patch
  Log:
  Update the live ebuild. 
https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/157 by a17r.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)



[gentoo-commits] gentoo-x86 commit in media-libs/oyranos: metadata.xml oyranos-9999.ebuild ChangeLog

2015-07-25 Thread Michal Gorny (mgorny)
mgorny  15/07/25 12:34:34

  Modified: metadata.xml oyranos-.ebuild ChangeLog
  Log:
  Update the live ebuild. 
https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/157 by a17r.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.3  media-libs/oyranos/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/oyranos/metadata.xml?rev=1.3view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/oyranos/metadata.xml?rev=1.3content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/oyranos/metadata.xml?r1=1.2r2=1.3

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/oyranos/metadata.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- metadata.xml15 Jun 2015 15:08:26 -  1.2
+++ metadata.xml25 Jul 2015 12:34:34 -  1.3
@@ -6,6 +6,6 @@
nameMichael Weber/name
/maintainer
upstream
-   remote-id type=sourceforgeoyranos/remote-id
+   remote-id type=githuboyranos-cms/oyranos/remote-id
/upstream
 /pkgmetadata



1.8  media-libs/oyranos/oyranos-.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/oyranos/oyranos-.ebuild?rev=1.8view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/oyranos/oyranos-.ebuild?rev=1.8content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/oyranos/oyranos-.ebuild?r1=1.7r2=1.8

Index: oyranos-.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/oyranos/oyranos-.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- oyranos-.ebuild 27 May 2015 20:31:04 -  1.7
+++ oyranos-.ebuild 25 Jul 2015 12:34:34 -  1.8
@@ -1,35 +1,35 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/oyranos/oyranos-.ebuild,v 
1.7 2015/05/27 20:31:04 tamiko Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/oyranos/oyranos-.ebuild,v 
1.8 2015/07/25 12:34:34 mgorny Exp $
 
 EAPI=5
 
 inherit eutils flag-o-matic cmake-utils cmake-multilib
 
-DESCRIPTION=colour management system allowing to share various settings 
across applications and services
+DESCRIPTION=Colour management system allowing to share various settings 
across applications and services
 HOMEPAGE=http://www.oyranos.org/;
 if [[ ${PV} ==  ]] ; then
EGIT_REPO_URI=https://github.com/${PN}-cms/${PN}.git;
inherit git-r3
KEYWORDS=
 else
-   
SRC_URI=mirror://sourceforge/oyranos/Oyranos/Oyranos%200.9/${P}.tar.bz2
+   SRC_URI=https://github.com/oyranos-cms/oyranos/archive/${PV}.tar.gz - 
${P}.tar.gz
KEYWORDS=~amd64 ~x86
 fi
 
 LICENSE=BSD
 SLOT=0
-IUSE=X cairo cups doc exif fltk qt4 raw test
+IUSE=X cairo cups doc exif fltk jpeg qt4 qt5 raw test tiff
 
-RDEPEND=
+#OY_LINGUAS=cs;de;eo;eu;fr;ru #TODO
+
+COMMON_DEPEND=
|| (
=app-admin/elektra-0.7*:0[${MULTILIB_USEDEP}]
=app-admin/elektra-0.8.4:0[${MULTILIB_USEDEP}]
)
=dev-libs/libxml2-2.9.1-r4[${MULTILIB_USEDEP}]
=dev-libs/yajl-2.0.4-r1[${MULTILIB_USEDEP}]
-   media-libs/icc-profiles-basiccolor-printing2009
-   media-libs/icc-profiles-openicc
=media-libs/lcms-2.5:2[${MULTILIB_USEDEP}]
=media-libs/libpng-1.6.10:0[${MULTILIB_USEDEP}]
=media-libs/libXcm-0.5.3[${MULTILIB_USEDEP}]
@@ -37,19 +37,29 @@
cups? ( =net-print/cups-1.7.1-r1[${MULTILIB_USEDEP}] )
exif? ( =media-gfx/exiv2-0.23-r2[${MULTILIB_USEDEP}] )
fltk? ( x11-libs/fltk:1 )
-   qt4? ( dev-qt/qtcore:4 dev-qt/qtgui:4 )
+   jpeg? ( virtual/jpeg:0[${MULTILIB_USEDEP}] )
+   qt5? (
+   dev-qt/qtgui:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5
+   )
+   !qt5? (
+   qt4? ( dev-qt/qtcore:4 dev-qt/qtgui:4 )
+   )
raw? ( =media-libs/libraw-0.15.4[${MULTILIB_USEDEP}] )
+   tiff? ( media-libs/tiff:0[${MULTILIB_USEDEP}] )
X? ( =x11-libs/libXfixes-5.0.1[${MULTILIB_USEDEP}]
=x11-libs/libXrandr-1.4.2[${MULTILIB_USEDEP}]
=x11-libs/libXxf86vm-1.1.3[${MULTILIB_USEDEP}]
=x11-libs/libXinerama-1.1.3[${MULTILIB_USEDEP}] )
-DEPEND=${RDEPEND}
+DEPEND=${COMMON_DEPEND}
doc? (
app-doc/doxygen
media-gfx/graphviz
)
+RDEPEND=${COMMON_DEPEND}
+   media-libs/icc-profiles-basiccolor-printing2009
+   media-libs/icc-profiles-openicc
 
-DOCS=AUTHORS.md ChangeLog.md README.md
+DOCS=( AUTHORS.md ChangeLog.md README.md )
 RESTRICT=test
 
 

[gentoo-commits] gentoo-x86 commit in x11-libs/libva-intel-driver: ChangeLog

2015-07-24 Thread Michal Gorny (mgorny)
mgorny  15/07/24 15:14:10

  Modified: ChangeLog
  Log:
  Fix wayland-automagic patch to handle both USE=wayland and USE=-wayland (with 
installed and uninstalled wayland) properly. Bug #555440.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.45 x11-libs/libva-intel-driver/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libva-intel-driver/ChangeLog?rev=1.45view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libva-intel-driver/ChangeLog?rev=1.45content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libva-intel-driver/ChangeLog?r1=1.44r2=1.45

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-libs/libva-intel-driver/ChangeLog,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -r1.44 -r1.45
--- ChangeLog   14 Jul 2015 09:21:17 -  1.44
+++ ChangeLog   24 Jul 2015 15:14:10 -  1.45
@@ -1,6 +1,11 @@
 # ChangeLog for x11-libs/libva-intel-driver
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/libva-intel-driver/ChangeLog,v 
1.44 2015/07/14 09:21:17 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/libva-intel-driver/ChangeLog,v 
1.45 2015/07/24 15:14:10 mgorny Exp $
+
+  24 Jul 2015; Michał Górny mgo...@gentoo.org
+  files/libva-intel-driver-1.6.0-wayland-automagic.patch:
+  Fix wayland-automagic patch to handle both USE=wayland and USE=-wayland (with
+  installed and uninstalled wayland) properly. Bug #555440.
 
   14 Jul 2015; Alexis Ballier aball...@gentoo.org
   libva-intel-driver-1.6.0.ebuild,






[gentoo-commits] gentoo-x86 commit in x11-libs/libva-intel-driver/files: libva-intel-driver-1.6.0-wayland-automagic.patch

2015-07-24 Thread Michal Gorny (mgorny)
mgorny  15/07/24 15:14:10

  Modified: libva-intel-driver-1.6.0-wayland-automagic.patch
  Log:
  Fix wayland-automagic patch to handle both USE=wayland and USE=-wayland (with 
installed and uninstalled wayland) properly. Bug #555440.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.2  
x11-libs/libva-intel-driver/files/libva-intel-driver-1.6.0-wayland-automagic.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libva-intel-driver/files/libva-intel-driver-1.6.0-wayland-automagic.patch?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libva-intel-driver/files/libva-intel-driver-1.6.0-wayland-automagic.patch?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libva-intel-driver/files/libva-intel-driver-1.6.0-wayland-automagic.patch?r1=1.1r2=1.2

Index: libva-intel-driver-1.6.0-wayland-automagic.patch
===
RCS file: 
/var/cvsroot/gentoo-x86/x11-libs/libva-intel-driver/files/libva-intel-driver-1.6.0-wayland-automagic.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- libva-intel-driver-1.6.0-wayland-automagic.patch14 Jul 2015 09:21:17 
-  1.1
+++ libva-intel-driver-1.6.0-wayland-automagic.patch24 Jul 2015 15:14:10 
-  1.2
@@ -1,22 +1,37 @@
-Index: libva-intel-driver-1.6.0/configure.ac
-===
 libva-intel-driver-1.6.0.orig/configure.ac
-+++ libva-intel-driver-1.6.0/configure.ac
-@@ -165,12 +165,14 @@ if test $enable_wayland = yes; then
- PKG_CHECK_MODULES([LIBVA_WAYLAND_DEPS], [libva-wayland],
- [AC_DEFINE([HAVE_VA_WAYLAND], [1], [Defined to 1 if VA/Wayland API is 
enabled])],
- [USE_WAYLAND=no])
--fi
--AM_CONDITIONAL(USE_WAYLAND, test $USE_WAYLAND = yes)
--
- m4_ifdef([WAYLAND_SCANNER_RULES],
- [WAYLAND_SCANNER_RULES(['$(top_builddir)/src/wayland'])],
- [wayland_scanner_rules=; AC_SUBST(wayland_scanner_rules)])
+From 405437e31d3faf6adc32d887ae1945b8d93f7846 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= mgo...@gentoo.org
+Date: Fri, 24 Jul 2015 17:01:23 +0200
+Subject: [PATCH] Do not require wayland-scanner if wayland is disabled
+
+Do not perform fatal wayland-scanner checks if wayland is disabled
+(either by --disable-wayland or wayland check failure) even if
+wayland-scanner macros are installed on the system.
+---
+ configure.ac | 11 ---
+ 1 file changed, 8 insertions(+), 3 deletions(-)
+
+diff --git a/configure.ac b/configure.ac
+index 6e73059..70eb275 100644
+--- a/configure.ac
 b/configure.ac
+@@ -168,9 +168,14 @@ if test $enable_wayland = yes; then
+ fi
+ AM_CONDITIONAL(USE_WAYLAND, test $USE_WAYLAND = yes)
+ 
+-m4_ifdef([WAYLAND_SCANNER_RULES],
+-[WAYLAND_SCANNER_RULES(['$(top_builddir)/src/wayland'])],
+-[wayland_scanner_rules=; AC_SUBST(wayland_scanner_rules)])
++if test $USE_WAYLAND = yes; then
++m4_ifdef([WAYLAND_SCANNER_RULES],
++[WAYLAND_SCANNER_RULES(['$(top_builddir)/src/wayland'])],
++[wayland_scanner_rules=/dev/null; 
AC_SUBST_FILE(wayland_scanner_rules)])
 +else
-+wayland_scanner_rules=
-+AC_SUBST(wayland_scanner_rules)
++wayland_scanner_rules=/dev/null
++AC_SUBST_FILE(wayland_scanner_rules)
 +fi
-+AM_CONDITIONAL(USE_WAYLAND, test $USE_WAYLAND = yes)
  
  AC_OUTPUT([
  Makefile
+-- 
+2.4.6
+






[gentoo-commits] gentoo-x86 commit in xfce-extra/xfce4-verve-plugin: xfce4-verve-plugin-1.1.0.ebuild ChangeLog

2015-07-24 Thread Michal Gorny (mgorny)
mgorny  15/07/24 20:54:35

  Modified: ChangeLog
  Added:xfce4-verve-plugin-1.1.0.ebuild
  Log:
  Version bump with new features.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.24 xfce-extra/xfce4-verve-plugin/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-verve-plugin/ChangeLog?rev=1.24view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-verve-plugin/ChangeLog?rev=1.24content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-verve-plugin/ChangeLog?r1=1.23r2=1.24

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-verve-plugin/ChangeLog,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- ChangeLog   19 Jul 2015 12:40:03 -  1.23
+++ ChangeLog   24 Jul 2015 20:54:35 -  1.24
@@ -1,6 +1,12 @@
 # ChangeLog for xfce-extra/xfce4-verve-plugin
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-verve-plugin/ChangeLog,v 
1.23 2015/07/19 12:40:03 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-verve-plugin/ChangeLog,v 
1.24 2015/07/24 20:54:35 mgorny Exp $
+
+*xfce4-verve-plugin-1.1.0 (24 Jul 2015)
+
+  24 Jul 2015; Michał Górny mgo...@gentoo.org
+  +xfce4-verve-plugin-1.1.0.ebuild:
+  Version bump with new features.
 
   19 Jul 2015; Tobias Klausmann klaus...@gentoo.org
   xfce4-verve-plugin-1.0.1.ebuild:



1.1  
xfce-extra/xfce4-verve-plugin/xfce4-verve-plugin-1.1.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-verve-plugin/xfce4-verve-plugin-1.1.0.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-verve-plugin/xfce4-verve-plugin-1.1.0.ebuild?rev=1.1content-type=text/plain

Index: xfce4-verve-plugin-1.1.0.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/xfce-extra/xfce4-verve-plugin/xfce4-verve-plugin-1.1.0.ebuild,v
 1.1 2015/07/24 20:54:35 mgorny Exp $

EAPI=5
inherit multilib xfconf

DESCRIPTION=A comfortable command line plugin for the Xfce panel
HOMEPAGE=http://goodies.xfce.org/projects/panel-plugins/xfce4-verve-plugin;
SRC_URI=mirror://xfce/src/panel-plugins/${PN}/${PV%.*}/${P}.tar.bz2

LICENSE=GPL-2
SLOT=0
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux
IUSE=dbus

RDEPEND==xfce-base/exo-0.6:=
=xfce-base/libxfce4util-4.8:=
=xfce-base/libxfcegui4-4.8:=
=xfce-base/xfce4-panel-4.8:=
dev-libs/glib:2=
=dev-libs/libpcre-5:=
dbus? ( =dev-libs/dbus-glib-0.98:= )
DEPEND=${RDEPEND}
dev-util/intltool
virtual/pkgconfig

pkg_setup() {
XFCONF=(
--libexecdir=${EPREFIX}/usr/$(get_libdir)
$(use_enable dbus)
)

DOCS=( AUTHORS ChangeLog NEWS README THANKS )
}






[gentoo-commits] gentoo-x86 commit in xfce-extra/xfce4-embed-plugin: xfce4-embed-plugin-1.6.0.ebuild ChangeLog

2015-07-24 Thread Michal Gorny (mgorny)
mgorny  15/07/24 20:57:47

  Modified: ChangeLog
  Added:xfce4-embed-plugin-1.6.0.ebuild
  Log:
  Version bump. The new version features new translations and dragdrop support.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.22 xfce-extra/xfce4-embed-plugin/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-embed-plugin/ChangeLog?rev=1.22view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-embed-plugin/ChangeLog?rev=1.22content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-embed-plugin/ChangeLog?r1=1.21r2=1.22

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-embed-plugin/ChangeLog,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- ChangeLog   1 Jul 2015 16:51:32 -   1.21
+++ ChangeLog   24 Jul 2015 20:57:47 -  1.22
@@ -1,6 +1,12 @@
 # ChangeLog for xfce-extra/xfce4-embed-plugin
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-embed-plugin/ChangeLog,v 
1.21 2015/07/01 16:51:32 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-embed-plugin/ChangeLog,v 
1.22 2015/07/24 20:57:47 mgorny Exp $
+
+*xfce4-embed-plugin-1.6.0 (24 Jul 2015)
+
+  24 Jul 2015; Michał Górny mgo...@gentoo.org
+  +xfce4-embed-plugin-1.6.0.ebuild:
+  Version bump. The new version features new translations and dragdrop 
support.
 
   01 Jul 2015; Mikle Kolyada zlog...@gentoo.org
   xfce4-embed-plugin-1.4.1.ebuild:



1.1  
xfce-extra/xfce4-embed-plugin/xfce4-embed-plugin-1.6.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-embed-plugin/xfce4-embed-plugin-1.6.0.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-embed-plugin/xfce4-embed-plugin-1.6.0.ebuild?rev=1.1content-type=text/plain

Index: xfce4-embed-plugin-1.6.0.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/xfce-extra/xfce4-embed-plugin/xfce4-embed-plugin-1.6.0.ebuild,v
 1.1 2015/07/24 20:57:47 mgorny Exp $

EAPI=5
inherit xfconf

DESCRIPTION=A plug-in for embedding arbitrary application windows into the 
Xfce panel
HOMEPAGE=http://goodies.xfce.org/projects/panel-plugins/xfce4-embed-plugin;
SRC_URI=mirror://xfce/src/panel-plugins/${PN}/${PV%.*}/${P}.tar.bz2

LICENSE=GPL-2 LGPL-2
SLOT=0
KEYWORDS=~amd64 ~x86
IUSE=debug

RDEPEND==x11-libs/gtk+-2.20:2=
x11-libs/libX11:=
=xfce-base/libxfce4ui-4.10:=
=xfce-base/libxfce4util-4.10:=
=xfce-base/xfce4-panel-4.10:=
DEPEND=${RDEPEND}
dev-util/intltool
sys-devel/gettext
virtual/pkgconfig

pkg_setup() {
XFCONF=(
$(xfconf_use_debug)
)

DOCS=( AUTHORS ChangeLog NEWS README THANKS )
}






[gentoo-commits] gentoo-x86 commit in xfce-base/xfdesktop: xfdesktop-4.12.3.ebuild ChangeLog

2015-07-24 Thread Michal Gorny (mgorny)
mgorny  15/07/24 21:06:11

  Modified: ChangeLog
  Added:xfdesktop-4.12.3.ebuild
  Log:
  Version bump with bugfixes and translation updates.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.263xfce-base/xfdesktop/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfdesktop/ChangeLog?rev=1.263view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfdesktop/ChangeLog?rev=1.263content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfdesktop/ChangeLog?r1=1.262r2=1.263

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/xfce-base/xfdesktop/ChangeLog,v
retrieving revision 1.262
retrieving revision 1.263
diff -u -r1.262 -r1.263
--- ChangeLog   19 Jul 2015 12:38:56 -  1.262
+++ ChangeLog   24 Jul 2015 21:06:11 -  1.263
@@ -1,6 +1,11 @@
 # ChangeLog for xfce-base/xfdesktop
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfdesktop/ChangeLog,v 1.262 
2015/07/19 12:38:56 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfdesktop/ChangeLog,v 1.263 
2015/07/24 21:06:11 mgorny Exp $
+
+*xfdesktop-4.12.3 (24 Jul 2015)
+
+  24 Jul 2015; Michał Górny mgo...@gentoo.org +xfdesktop-4.12.3.ebuild:
+  Version bump with bugfixes and translation updates.
 
   19 Jul 2015; Tobias Klausmann klaus...@gentoo.org xfdesktop-4.12.2.ebuild:
   Stable on alpha, bug 553500



1.1  xfce-base/xfdesktop/xfdesktop-4.12.3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfdesktop/xfdesktop-4.12.3.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfdesktop/xfdesktop-4.12.3.ebuild?rev=1.1content-type=text/plain

Index: xfdesktop-4.12.3.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/xfce-base/xfdesktop/xfdesktop-4.12.3.ebuild,v 1.1 
2015/07/24 21:06:11 mgorny Exp $

EAPI=5
inherit xfconf

DESCRIPTION=Desktop manager for the Xfce desktop environment
HOMEPAGE=http://www.xfce.org/projects/;
SRC_URI=mirror://xfce/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2

LICENSE=GPL-2
SLOT=0
KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x86-solaris
IUSE=debug libnotify +thunar

# src/xfdesktop-file-utils.c:#if GLIB_CHECK_VERSION (2, 38, 0)
RDEPEND==x11-libs/cairo-1.6:=
=dev-libs/dbus-glib-0.100:=
=dev-libs/glib-2.20:=
=x11-libs/gtk+-2.24:2=
=x11-libs/libwnck-2.30:1=
x11-libs/libX11:=
=xfce-base/exo-0.8:=
=xfce-base/garcon-0.3:=
=xfce-base/libxfce4ui-4.11:=
=xfce-base/libxfce4util-4.11:=
=xfce-base/xfconf-4.10:=
libnotify? ( =x11-libs/libnotify-0.7:= )
thunar? (
=dev-libs/glib-2.38:=
=xfce-base/thunar-1.6:=[dbus]
)
DEPEND=${RDEPEND}
dev-util/intltool
sys-devel/gettext
virtual/pkgconfig

pkg_setup() {
XFCONF=(
--docdir=${EPREFIX}/usr/share/doc/${PF}
$(use_enable thunar file-icons)
$(use_enable thunar thunarx)
$(use_enable libnotify notifications)
$(xfconf_use_debug)
)

DOCS=( AUTHORS ChangeLog NEWS README TODO )
}






[gentoo-commits] gentoo-x86 commit in sys-devel/llvm: llvm-9999.ebuild ChangeLog

2015-07-19 Thread Michal Gorny (mgorny)
mgorny  15/07/19 17:29:33

  Modified: llvm-.ebuild ChangeLog
  Log:
  Remove no longer needed gcc-4.9 patch. Update clang vesion number.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.119sys-devel/llvm/llvm-.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/llvm/llvm-.ebuild?rev=1.119view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/llvm/llvm-.ebuild?rev=1.119content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/llvm/llvm-.ebuild?r1=1.118r2=1.119

Index: llvm-.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-devel/llvm/llvm-.ebuild,v
retrieving revision 1.118
retrieving revision 1.119
diff -u -r1.118 -r1.119
--- llvm-.ebuild15 Jun 2015 22:26:52 -  1.118
+++ llvm-.ebuild19 Jul 2015 17:29:33 -  1.119
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/llvm/llvm-.ebuild,v 1.118 
2015/06/15 22:26:52 voyageur Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/llvm/llvm-.ebuild,v 1.119 
2015/07/19 17:29:33 mgorny Exp $
 
 EAPI=5
 
@@ -152,7 +152,6 @@
 }
 
 src_prepare() {
-   epatch ${FILESDIR}/${PN}-3.5-gcc-4.9.patch
# Make ocaml warnings non-fatal, bug #537308
sed -e /RUN/s/-warn-error A// -i test/Bindings/OCaml/*ml  || die
 
@@ -364,7 +363,7 @@
 
if use clang; then
# note: magic applied in multilib_src_install()!
-   CLANG_VERSION=3.7
+   CLANG_VERSION=3.8
 
MULTILIB_CHOST_TOOLS+=(
/usr/bin/clang



1.256sys-devel/llvm/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/llvm/ChangeLog?rev=1.256view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/llvm/ChangeLog?rev=1.256content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/llvm/ChangeLog?r1=1.255r2=1.256

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-devel/llvm/ChangeLog,v
retrieving revision 1.255
retrieving revision 1.256
diff -u -r1.255 -r1.256
--- ChangeLog   29 Jun 2015 11:58:05 -  1.255
+++ ChangeLog   19 Jul 2015 17:29:33 -  1.256
@@ -1,6 +1,9 @@
 # ChangeLog for sys-devel/llvm
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/llvm/ChangeLog,v 1.255 2015/06/29 
11:58:05 voyageur Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/llvm/ChangeLog,v 1.256 2015/07/19 
17:29:33 mgorny Exp $
+
+  19 Jul 2015; Michał Górny mgo...@gentoo.org llvm-.ebuild:
+  Remove no longer needed gcc-4.9 patch. Update clang vesion number.
 
   29 Jun 2015; Bernard Cafarelli voyag...@gentoo.org llvm-3.5.2.ebuild,
   +files/llvm-3.5.2-gcc-5.1.patch:






[gentoo-commits] gentoo-x86 commit in app-admin/systemrescuecd-x86: systemrescuecd-x86-4.5.3.ebuild systemrescuecd-x86-4.5.4.ebuild ChangeLog

2015-07-19 Thread Michal Gorny (mgorny)
mgorny  15/07/19 17:50:23

  Modified: ChangeLog
  Added:systemrescuecd-x86-4.5.3.ebuild
systemrescuecd-x86-4.5.4.ebuild
  Log:
  Bump.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.8  app-admin/systemrescuecd-x86/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/systemrescuecd-x86/ChangeLog?rev=1.8view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/systemrescuecd-x86/ChangeLog?rev=1.8content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/systemrescuecd-x86/ChangeLog?r1=1.7r2=1.8

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-admin/systemrescuecd-x86/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog   9 Jun 2015 08:45:57 -   1.7
+++ ChangeLog   19 Jul 2015 17:50:22 -  1.8
@@ -1,6 +1,13 @@
 # ChangeLog for app-admin/systemrescuecd-x86
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/systemrescuecd-x86/ChangeLog,v 
1.7 2015/06/09 08:45:57 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/systemrescuecd-x86/ChangeLog,v 
1.8 2015/07/19 17:50:22 mgorny Exp $
+
+*systemrescuecd-x86-4.5.3 (19 Jul 2015)
+*systemrescuecd-x86-4.5.4 (19 Jul 2015)
+
+  19 Jul 2015; Michał Górny mgo...@gentoo.org
+  +systemrescuecd-x86-4.5.3.ebuild, +systemrescuecd-x86-4.5.4.ebuild:
+  Bump.
 
   09 Jun 2015; Justin Lecher j...@gentoo.org metadata.xml:
   Updating remote-id in metadata.xml



1.1  
app-admin/systemrescuecd-x86/systemrescuecd-x86-4.5.3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/systemrescuecd-x86/systemrescuecd-x86-4.5.3.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/systemrescuecd-x86/systemrescuecd-x86-4.5.3.ebuild?rev=1.1content-type=text/plain

Index: systemrescuecd-x86-4.5.3.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/app-admin/systemrescuecd-x86/systemrescuecd-x86-4.5.3.ebuild,v
 1.1 2015/07/19 17:50:22 mgorny Exp $

EAPI=5

DESCRIPTION=The .iso image of SystemRescueCD rescue disk, x86 (+ amd64) 
variant
HOMEPAGE=http://www.sysresccd.org/;
SRC_URI=mirror://sourceforge/systemrescuecd/sysresccd-${PN#*-}/${PV}/${P}.iso

LICENSE=GPL-2
SLOT=${PV}
KEYWORDS=~amd64 ~x86
IUSE=

S=${WORKDIR}

RESTRICT=mirror

src_install() {
insinto /usr/share/${PN%-*}
doins ${DISTDIR}/${P}.iso
}

pkg_postinst() {
local f=${EROOT%/}/usr/share/${PN%-*}/${PN}-newest.iso

# no version newer than ours? we're the newest!
if ! has_version ${CATEGORY}/${PF}; then
ln -f -s -v ${P}.iso ${f} || die
fi
}

pkg_postrm() {
local f=${EROOT%/}/usr/share/${PN%-*}/${PN}-newest.iso

# if there is no version newer than ours installed
if ! has_version ${CATEGORY}/${PF}; then
# and we are truly and completely uninstalled...
if [[ ! ${REPLACED_BY_VERSION} ]]; then
# then find an older version to set the symlink to
local newest_version=$(best_version 
${CATEGORY}/${PF})

if [[ ${newest_version} ]]; then
# update the symlink
ln -f -s -v ${newest_version%-r*}.iso ${f} 
|| die
else
# last version removed? clean up the symlink
rm -v ${f} || die
# and the parent directory
rmdir ${f%/*} || die
fi
fi
fi
}



1.1  
app-admin/systemrescuecd-x86/systemrescuecd-x86-4.5.4.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/systemrescuecd-x86/systemrescuecd-x86-4.5.4.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/systemrescuecd-x86/systemrescuecd-x86-4.5.4.ebuild?rev=1.1content-type=text/plain

Index: systemrescuecd-x86-4.5.4.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/app-admin/systemrescuecd-x86/systemrescuecd-x86-4.5.4.ebuild,v
 1.1 2015/07/19 17:50:22 mgorny Exp $

EAPI=5

DESCRIPTION=The .iso image of SystemRescueCD rescue disk, x86 (+ amd64) 
variant
HOMEPAGE=http://www.sysresccd.org/;
SRC_URI=mirror://sourceforge/systemrescuecd/sysresccd-${PN#*-}/${PV}/${P}.iso


[gentoo-commits] gentoo-x86 commit in xfce-extra/xfce4-radio-plugin: xfce4-radio-plugin-0.5.1-r1.ebuild ChangeLog

2015-07-19 Thread Michal Gorny (mgorny)
mgorny  15/07/19 18:20:56

  Modified: ChangeLog
  Added:xfce4-radio-plugin-0.5.1-r1.ebuild
  Log:
  Add subslot operators to deps. Fix underlinking, bug #555056.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.22 xfce-extra/xfce4-radio-plugin/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-radio-plugin/ChangeLog?rev=1.22view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-radio-plugin/ChangeLog?rev=1.22content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-radio-plugin/ChangeLog?r1=1.21r2=1.22

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-radio-plugin/ChangeLog,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- ChangeLog   28 Nov 2012 12:20:36 -  1.21
+++ ChangeLog   19 Jul 2015 18:20:56 -  1.22
@@ -1,6 +1,12 @@
 # ChangeLog for xfce-extra/xfce4-radio-plugin
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-radio-plugin/ChangeLog,v 
1.21 2012/11/28 12:20:36 ssuominen Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-radio-plugin/ChangeLog,v 
1.22 2015/07/19 18:20:56 mgorny Exp $
+
+*xfce4-radio-plugin-0.5.1-r1 (19 Jul 2015)
+
+  19 Jul 2015; Michał Górny mgo...@gentoo.org
+  +xfce4-radio-plugin-0.5.1-r1.ebuild:
+  Add subslot operators to deps. Fix underlinking, bug #555056.
 
   28 Nov 2012; Samuli Suominen ssuomi...@gentoo.org
   xfce4-radio-plugin-0.5.1.ebuild:
@@ -98,4 +104,3 @@
   23 Aug 2009; Samuli Suominen ssuomi...@gentoo.org
   +xfce4-radio-plugin-0.3.1.ebuild, +xfce4-radio-plugin-0.4.2.ebuild:
   Rename xfce4-radio to xfce4-radio-plugin.
-



1.1  
xfce-extra/xfce4-radio-plugin/xfce4-radio-plugin-0.5.1-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-radio-plugin/xfce4-radio-plugin-0.5.1-r1.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-radio-plugin/xfce4-radio-plugin-0.5.1-r1.ebuild?rev=1.1content-type=text/plain

Index: xfce4-radio-plugin-0.5.1-r1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/xfce-extra/xfce4-radio-plugin/xfce4-radio-plugin-0.5.1-r1.ebuild,v
 1.1 2015/07/19 18:20:56 mgorny Exp $

EAPI=5
inherit flag-o-matic multilib xfconf

DESCRIPTION=V4L radio device control plug-in for the Xfce desktop environment
HOMEPAGE=http://goodies.xfce.org/projects/panel-plugins/xfce4-radio-plugin;
SRC_URI=mirror://xfce/src/panel-plugins/${PN}/${PV%.*}/${P}.tar.bz2

LICENSE=GPL-3
SLOT=0
KEYWORDS=~amd64 ~x86
IUSE=debug

RDEPEND==xfce-base/libxfcegui4-4.8:=
=xfce-base/xfce4-panel-4.8:=
DEPEND=${RDEPEND}
dev-util/intltool
virtual/pkgconfig

pkg_setup() {
XFCONF=(
--libexecdir=${EPREFIX}/usr/$(get_libdir)
$(xfconf_use_debug)
)

DOCS=( AUTHORS NEWS README )

# fix underlinking, bug #555056
append-libs -lm
}






[gentoo-commits] gentoo-x86 commit in eclass: ChangeLog distutils-r1.eclass

2015-07-16 Thread Michal Gorny (mgorny)
mgorny  15/07/16 14:29:39

  Modified: ChangeLog distutils-r1.eclass
  Log:
  Forbid also installing examples package, bug #555038.

Revision  ChangesPath
1.1712   eclass/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1712view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1712content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.1711r2=1.1712

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
retrieving revision 1.1711
retrieving revision 1.1712
diff -u -r1.1711 -r1.1712
--- ChangeLog   16 Jul 2015 06:06:59 -  1.1711
+++ ChangeLog   16 Jul 2015 14:29:39 -  1.1712
@@ -1,6 +1,9 @@
 # ChangeLog for eclass directory
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1711 2015/07/16 
06:06:59 polynomial-c Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1712 2015/07/16 
14:29:39 mgorny Exp $
+
+  16 Jul 2015; Michał Górny mgo...@gentoo.org distutils-r1.eclass:
+  Forbid also installing examples package, bug #555038.
 
   16 Jul 2015; Lars Wendler polynomia...@gentoo.org apache-2.eclass:
   Added slot dependency for openssl. Raised minimum required EAPI version to 5.



1.115eclass/distutils-r1.eclass

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/distutils-r1.eclass?rev=1.115view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/distutils-r1.eclass?rev=1.115content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/distutils-r1.eclass?r1=1.114r2=1.115

Index: distutils-r1.eclass
===
RCS file: /var/cvsroot/gentoo-x86/eclass/distutils-r1.eclass,v
retrieving revision 1.114
retrieving revision 1.115
diff -u -r1.114 -r1.115
--- distutils-r1.eclass 4 Jul 2015 15:26:17 -   1.114
+++ distutils-r1.eclass 16 Jul 2015 14:29:39 -  1.115
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/distutils-r1.eclass,v 1.114 
2015/07/04 15:26:17 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/distutils-r1.eclass,v 1.115 
2015/07/16 14:29:39 mgorny Exp $
 
 # @ECLASS: distutils-r1
 # @MAINTAINER:
@@ -549,9 +549,13 @@
 
esetup.py install --root=${root} ${args[@]}
 
-   if [[ -d ${root}$(python_get_sitedir)/tests ]]; then
-   die Package installs 'tests' package, file collisions likely.
-   fi
+   local forbidden_package_names=( examples test tests )
+   local p
+   for p in ${forbidden_package_names[@]}; do
+   if [[ -d ${root}$(python_get_sitedir)/${p} ]]; then
+   die Package installs '${p}' package which is forbidden 
and likely a bug in the build system.
+   fi
+   done
if [[ -d ${root}/usr/$(get_libdir)/pypy/share ]]; then
eqawarn Package installs 'share' in PyPy prefix, see bug 
#465546.
fi






[gentoo-commits] gentoo-x86 commit in profiles/desc: nginx_modules_http.desc

2015-07-12 Thread Michal Gorny (mgorny)
mgorny  15/07/13 04:46:35

  Modified: nginx_modules_http.desc
  Log:
  Describe nginx_modules_http_memc. Part of version bump, 
https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/156 by jbergstroem.

Revision  ChangesPath
1.22 profiles/desc/nginx_modules_http.desc

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/desc/nginx_modules_http.desc?rev=1.22view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/desc/nginx_modules_http.desc?rev=1.22content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/desc/nginx_modules_http.desc?r1=1.21r2=1.22

Index: nginx_modules_http.desc
===
RCS file: /var/cvsroot/gentoo-x86/profiles/desc/nginx_modules_http.desc,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- nginx_modules_http.desc 22 Jul 2014 06:45:37 -  1.21
+++ nginx_modules_http.desc 13 Jul 2015 04:46:35 -  1.22
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation.
+# Copyright 1999-2015 Gentoo Foundation.
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/desc/nginx_modules_http.desc,v 
1.21 2014/07/22 06:45:37 dev-zero Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/desc/nginx_modules_http.desc,v 
1.22 2015/07/13 04:46:35 mgorny Exp $
 
 # This file contains descriptions of NGINX_MODULES_HTTP USE_EXPAND flags.
 
@@ -36,6 +36,7 @@
 limit_zone - This module makes it possible to limit the number of simultaneous 
connections for the assigned session
 lua - Embed the power of Lua into nginx
 map - This module allows you to classify, or map a set of values into a 
different set of values and store the result in a variable.
+memc - An extended version of the standard memcached module that supports set, 
add, delete, and many more memcached commands.
 memcached - You can use this module to perform simple caching.
 metrics - Module to export various metrics in easy-parseable JSON.
 mogilefs - Enable support for MogileFS.






[gentoo-commits] gentoo-x86 commit in profiles: ChangeLog

2015-07-12 Thread Michal Gorny (mgorny)
mgorny  15/07/13 04:46:35

  Modified: ChangeLog
  Log:
  Describe nginx_modules_http_memc. Part of version bump, 
https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/156 by jbergstroem.

Revision  ChangesPath
1.10185  profiles/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/ChangeLog?rev=1.10185view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/ChangeLog?rev=1.10185content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/ChangeLog?r1=1.10184r2=1.10185

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v
retrieving revision 1.10184
retrieving revision 1.10185
diff -u -r1.10184 -r1.10185
--- ChangeLog   12 Jul 2015 17:28:25 -  1.10184
+++ ChangeLog   13 Jul 2015 04:46:35 -  1.10185
@@ -1,11 +1,16 @@
 # ChangeLog for profile directory
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.10184 2015/07/12 
17:28:25 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.10185 2015/07/13 
04:46:35 mgorny Exp $
 #
 # This ChangeLog should include records for all changes in profiles directory.
 # Only typo fixes which don't affect portage/repoman behaviour could be avoided
 # here. If in doubt put a record here!
 
+  13 Jul 2015; Michał Górny mgo...@gentoo.org desc/nginx_modules_http.desc:
+  Describe nginx_modules_http_memc. Part of version bump,
+  https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/156 by
+  jbergstroem.
+
   12 Jul 2015; Andreas K. Huettel dilfri...@gentoo.org package.mask:
   Remove obsolete lcsm:0 mask
 






[gentoo-commits] gentoo-x86 commit in www-servers/nginx/files: check-1.9.2.patch

2015-07-12 Thread Michal Gorny (mgorny)
mgorny  15/07/13 04:51:06

  Added:check-1.9.2.patch
  Log:
  Version bump for mainline series. Introduce USE=threads. Add memc module. 
https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/156 by jbergstroem.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.1  www-servers/nginx/files/check-1.9.2.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/nginx/files/check-1.9.2.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/nginx/files/check-1.9.2.patch?rev=1.1content-type=text/plain

Index: check-1.9.2.patch
===
diff --git src/http/modules/ngx_http_upstream_hash_module.c 
src/http/modules/ngx_http_upstream_hash_module.c
index 1e2e05c..44a72e2 100644
--- src/http/modules/ngx_http_upstream_hash_module.c
+++ src/http/modules/ngx_http_upstream_hash_module.c
@@ -9,6 +9,9 @@
 #include ngx_core.h
 #include ngx_http.h
 
+#if (NGX_HTTP_UPSTREAM_CHECK)
+#include ngx_http_upstream_check_module.h
+#endif
 
 typedef struct {
 uint32_thash;
@@ -235,6 +238,15 @@ ngx_http_upstream_get_hash_peer(ngx_peer_connection_t *pc, 
void *data)
 goto next;
 }
 
+#if (NGX_HTTP_UPSTREAM_CHECK)
+ngx_log_debug1(NGX_LOG_DEBUG_HTTP, pc-log, 0,
+get hash peer, check_index: %ui,
+ peer-check_index);
+if (ngx_http_upstream_check_peer_down(peer-check_index)) {
+goto next;
+}
+#endif
+
 if (peer-max_fails
  peer-fails = peer-max_fails
  now - peer-checked = peer-fail_timeout)
@@ -535,6 +547,15 @@ ngx_http_upstream_get_chash_peer(ngx_peer_connection_t 
*pc, void *data)
 continue;
 }
 
+#if (NGX_HTTP_UPSTREAM_CHECK)
+ngx_log_debug1(NGX_LOG_DEBUG_HTTP, pc-log, 0,
+get consistent_hash peer, check_index: %ui,
+ peer-check_index);
+if (ngx_http_upstream_check_peer_down(peer-check_index)) {
+continue;
+}
+#endif
+
 if (peer-server.len != server-len
 || ngx_strncmp(peer-server.data, server-data, server-len)
!= 0)
diff --git src/http/modules/ngx_http_upstream_ip_hash_module.c 
src/http/modules/ngx_http_upstream_ip_hash_module.c
index 401b58e..ba656bd 100644
--- src/http/modules/ngx_http_upstream_ip_hash_module.c
+++ src/http/modules/ngx_http_upstream_ip_hash_module.c
@@ -9,6 +9,9 @@
 #include ngx_core.h
 #include ngx_http.h
 
+#if (NGX_HTTP_UPSTREAM_CHECK)
+#include ngx_http_upstream_check_module.h
+#endif
 
 typedef struct {
 /* the round robin data must be first */
@@ -205,6 +208,15 @@ ngx_http_upstream_get_ip_hash_peer(ngx_peer_connection_t 
*pc, void *data)
 goto next;
 }
 
+#if (NGX_HTTP_UPSTREAM_CHECK)
+ngx_log_debug1(NGX_LOG_DEBUG_HTTP, pc-log, 0,
+get ip_hash peer, check_index: %ui,
+ peer-check_index);
+if (ngx_http_upstream_check_peer_down(peer-check_index)) {
+goto next;
+}
+#endif
+
 if (peer-max_fails
  peer-fails = peer-max_fails
  now - peer-checked = peer-fail_timeout)
diff --git src/http/modules/ngx_http_upstream_least_conn_module.c 
src/http/modules/ngx_http_upstream_least_conn_module.c
index 92951bd..48aca2c 100644
--- src/http/modules/ngx_http_upstream_least_conn_module.c
+++ src/http/modules/ngx_http_upstream_least_conn_module.c
@@ -9,6 +9,9 @@
 #include ngx_core.h
 #include ngx_http.h
 
+#if (NGX_HTTP_UPSTREAM_CHECK)
+#include ngx_http_upstream_check_module.h
+#endif
 
 static ngx_int_t ngx_http_upstream_init_least_conn_peer(ngx_http_request_t *r,
 ngx_http_upstream_srv_conf_t *us);
@@ -148,6 +151,16 @@ 
ngx_http_upstream_get_least_conn_peer(ngx_peer_connection_t *pc, void *data)
 continue;
 }
 
+#if (NGX_HTTP_UPSTREAM_CHECK)
+ngx_log_debug1(NGX_LOG_DEBUG_HTTP, pc-log, 0,
+get least_conn peer, check_index: %ui,
+peer-check_index);
+
+if (ngx_http_upstream_check_peer_down(peer-check_index)) {
+continue;
+}
+#endif
+
 if (peer-max_fails
  peer-fails = peer-max_fails
  now - peer-checked = peer-fail_timeout)
@@ -199,6 +212,16 @@ 
ngx_http_upstream_get_least_conn_peer(ngx_peer_connection_t *pc, void *data)
 continue;
 }
 
+#if (NGX_HTTP_UPSTREAM_CHECK)
+ngx_log_debug1(NGX_LOG_DEBUG_HTTP, pc-log, 0,
+get least_conn peer, check_index: %ui,
+peer-check_index);
+
+if (ngx_http_upstream_check_peer_down(peer-check_index)) {
+continue;
+}
+#endif
+
 if (peer-conns * best-weight != best-conns * peer-weight) {
 continue;
   

[gentoo-commits] gentoo-x86 commit in www-servers/nginx: nginx-1.9.2.ebuild ChangeLog

2015-07-12 Thread Michal Gorny (mgorny)
mgorny  15/07/13 04:51:06

  Modified: ChangeLog
  Added:nginx-1.9.2.ebuild
  Log:
  Version bump for mainline series. Introduce USE=threads. Add memc module. 
https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/156 by jbergstroem.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.409www-servers/nginx/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/nginx/ChangeLog?rev=1.409view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/nginx/ChangeLog?rev=1.409content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/nginx/ChangeLog?r1=1.408r2=1.409

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/www-servers/nginx/ChangeLog,v
retrieving revision 1.408
retrieving revision 1.409
diff -u -r1.408 -r1.409
--- ChangeLog   25 Jun 2015 09:27:53 -  1.408
+++ ChangeLog   13 Jul 2015 04:51:06 -  1.409
@@ -1,6 +1,13 @@
 # ChangeLog for www-servers/nginx
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-servers/nginx/ChangeLog,v 1.408 
2015/06/25 09:27:53 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-servers/nginx/ChangeLog,v 1.409 
2015/07/13 04:51:06 mgorny Exp $
+
+*nginx-1.9.2 (13 Jul 2015)
+
+  13 Jul 2015; Michał Górny mgo...@gentoo.org +files/check-1.9.2.patch,
+  +nginx-1.9.2.ebuild:
+  Version bump for mainline series. Introduce USE=threads. Add memc module.
+  https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/156 by 
jbergstroem.
 
 *nginx-1.8.0 (25 Jun 2015)
 



1.1  www-servers/nginx/nginx-1.9.2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/nginx/nginx-1.9.2.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/nginx/nginx-1.9.2.ebuild?rev=1.1content-type=text/plain

Index: nginx-1.9.2.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-servers/nginx/nginx-1.9.2.ebuild,v 1.1 
2015/07/13 04:51:06 mgorny Exp $

EAPI=5

# Maintainer notes:
# - http_rewrite-independent pcre-support makes sense for matching locations 
without an actual rewrite
# - any http-module activates the main http-functionality and overrides 
USE=-http
# - keep the following requirements in mind before adding external modules:
#   * alive upstream
#   * sane packaging
#   * builds cleanly
#   * does not need a patch for nginx core
# - TODO: test the google-perftools module (included in vanilla tarball)

# prevent perl-module from adding automagic perl DEPENDs
GENTOO_DEPEND_ON_PERL=no

# devel_kit (https://github.com/simpl/ngx_devel_kit, BSD license)
DEVEL_KIT_MODULE_PV=0.2.19
DEVEL_KIT_MODULE_P=ngx_devel_kit-${DEVEL_KIT_MODULE_PV}-r1
DEVEL_KIT_MODULE_URI=https://github.com/simpl/ngx_devel_kit/archive/v${DEVEL_KIT_MODULE_PV}.tar.gz;
DEVEL_KIT_MODULE_WD=${WORKDIR}/ngx_devel_kit-${DEVEL_KIT_MODULE_PV}

# http_uploadprogress 
(https://github.com/masterzen/nginx-upload-progress-module, BSD-2 license)
HTTP_UPLOAD_PROGRESS_MODULE_PV=0.9.1
HTTP_UPLOAD_PROGRESS_MODULE_P=ngx_http_upload_progress-${HTTP_UPLOAD_PROGRESS_MODULE_PV}-r1
HTTP_UPLOAD_PROGRESS_MODULE_URI=https://github.com/masterzen/nginx-upload-progress-module/archive/v${HTTP_UPLOAD_PROGRESS_MODULE_PV}.tar.gz;
HTTP_UPLOAD_PROGRESS_MODULE_WD=${WORKDIR}/nginx-upload-progress-module-${HTTP_UPLOAD_PROGRESS_MODULE_PV}

# http_headers_more (http://github.com/agentzh/headers-more-nginx-module, BSD 
license)
HTTP_HEADERS_MORE_MODULE_PV=0.26
HTTP_HEADERS_MORE_MODULE_P=ngx_http_headers_more-${HTTP_HEADERS_MORE_MODULE_PV}
HTTP_HEADERS_MORE_MODULE_URI=https://github.com/agentzh/headers-more-nginx-module/archive/v${HTTP_HEADERS_MORE_MODULE_PV}.tar.gz;
HTTP_HEADERS_MORE_MODULE_WD=${WORKDIR}/headers-more-nginx-module-${HTTP_HEADERS_MORE_MODULE_PV}

# http_cache_purge (http://labs.frickle.com/nginx_ngx_cache_purge/, BSD-2 
license)
HTTP_CACHE_PURGE_MODULE_PV=2.3
HTTP_CACHE_PURGE_MODULE_P=ngx_http_cache_purge-${HTTP_CACHE_PURGE_MODULE_PV}
HTTP_CACHE_PURGE_MODULE_URI=http://labs.frickle.com/files/ngx_cache_purge-${HTTP_CACHE_PURGE_MODULE_PV}.tar.gz;
HTTP_CACHE_PURGE_MODULE_WD=${WORKDIR}/ngx_cache_purge-${HTTP_CACHE_PURGE_MODULE_PV}

# http_slowfs_cache (http://labs.frickle.com/nginx_ngx_slowfs_cache/, BSD-2 
license)
HTTP_SLOWFS_CACHE_MODULE_PV=1.10
HTTP_SLOWFS_CACHE_MODULE_P=ngx_http_slowfs_cache-${HTTP_SLOWFS_CACHE_MODULE_PV}
HTTP_SLOWFS_CACHE_MODULE_URI=http://labs.frickle.com/files/ngx_slowfs_cache-${HTTP_SLOWFS_CACHE_MODULE_PV}.tar.gz;
HTTP_SLOWFS_CACHE_MODULE_WD=${WORKDIR}/ngx_slowfs_cache-${HTTP_SLOWFS_CACHE_MODULE_PV}

# http_fancyindex 

[gentoo-commits] gentoo-x86 commit in xfce-extra/multiload-nandhp: multiload-nandhp-0.3.ebuild ChangeLog

2015-07-12 Thread Michal Gorny (mgorny)
mgorny  15/07/13 05:05:06

  Modified: ChangeLog
  Added:multiload-nandhp-0.3.ebuild
  Log:
  Version bump. Adds Czech translation, fixes missing POTFILES.in (bug 
#527032). lxpanel plugin has been disabled because of incompatible API change. 
https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/161 by j123b567.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.5  xfce-extra/multiload-nandhp/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/multiload-nandhp/ChangeLog?rev=1.5view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/multiload-nandhp/ChangeLog?rev=1.5content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/multiload-nandhp/ChangeLog?r1=1.4r2=1.5

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/xfce-extra/multiload-nandhp/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog   1 Jul 2015 08:09:08 -   1.4
+++ ChangeLog   13 Jul 2015 05:05:06 -  1.5
@@ -1,6 +1,13 @@
 # ChangeLog for xfce-extra/multiload-nandhp
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/xfce-extra/multiload-nandhp/ChangeLog,v 1.4 
2015/07/01 08:09:08 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/xfce-extra/multiload-nandhp/ChangeLog,v 1.5 
2015/07/13 05:05:06 mgorny Exp $
+
+*multiload-nandhp-0.3 (13 Jul 2015)
+
+  13 Jul 2015; Michał Górny mgo...@gentoo.org +multiload-nandhp-0.3.ebuild:
+  Version bump. Adds Czech translation, fixes missing POTFILES.in (bug 
#527032).
+  lxpanel plugin has been disabled because of incompatible API change.
+  https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/161 by j123b567.
 
   01 Jul 2015; Mikle Kolyada zlog...@gentoo.org multiload-nandhp-0.2.ebuild:
   x86 stable wrt bug #553500



1.1  xfce-extra/multiload-nandhp/multiload-nandhp-0.3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/multiload-nandhp/multiload-nandhp-0.3.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/multiload-nandhp/multiload-nandhp-0.3.ebuild?rev=1.1content-type=text/plain

Index: multiload-nandhp-0.3.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/xfce-extra/multiload-nandhp/multiload-nandhp-0.3.ebuild,v
 1.1 2015/07/13 05:05:06 mgorny Exp $

EAPI=5
inherit autotools eutils

MY_PV=version-${PV/./-}

DESCRIPTION=A port of the GNOME multiload applet for the Xfce panel
HOMEPAGE=http://github.com/nandhp/multiload-nandhp;
SRC_URI=http://github.com/nandhp/${PN}/archive/${MY_PV}.tar.gz - ${P}.tar.gz

LICENSE=GPL-2
SLOT=0
KEYWORDS=~amd64 ~x86
IUSE=

RDEPEND==x11-libs/gtk+-2.14:2=
x11-libs/cairo:=
=gnome-base/libgtop-2.11.92:=
=xfce-base/libxfce4ui-4.10:=
=xfce-base/libxfce4util-4.10:=
=xfce-base/xfce4-panel-4.10:=

DEPEND=${RDEPEND}
dev-util/intltool
sys-devel/gettext
virtual/pkgconfig

DOCS=AUTHORS README.md

S=${WORKDIR}/${PN}-${MY_PV}

src_prepare() {
eautoreconf
}

src_configure() {
econf --with-xfce4
}

src_install() {
default
prune_libtool_files --all
}






[gentoo-commits] gentoo-x86 commit in app-admin/g-chroot: - New directory

2015-07-10 Thread Michal Gorny (mgorny)
mgorny  15/07/10 18:58:42

  Log:
  Directory /var/cvsroot/gentoo-x86/app-admin/g-chroot added to the repository



[gentoo-commits] gentoo-x86 commit in eclass: ChangeLog gnome2.eclass

2015-07-09 Thread Michal Gorny (mgorny)
mgorny  15/07/09 15:43:03

  Modified: ChangeLog gnome2.eclass
  Log:
  Remove meaningless nonfatal from elibtoolize call, bug #551154.

Revision  ChangesPath
1.1706   eclass/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1706view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1706content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.1705r2=1.1706

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
retrieving revision 1.1705
retrieving revision 1.1706
diff -u -r1.1705 -r1.1706
--- ChangeLog   9 Jul 2015 07:11:25 -   1.1705
+++ ChangeLog   9 Jul 2015 15:43:03 -   1.1706
@@ -1,6 +1,9 @@
 # ChangeLog for eclass directory
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1705 2015/07/09 
07:11:25 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1706 2015/07/09 
15:43:03 mgorny Exp $
+
+  09 Jul 2015; Michał Górny mgo...@gentoo.org gnome2.eclass:
+  Remove meaningless nonfatal from elibtoolize call, bug #551154.
 
   09 Jul 2015; Hans de Graaff gra...@gentoo.org ruby-single.eclass:
   Update documentation.



1.132eclass/gnome2.eclass

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/gnome2.eclass?rev=1.132view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/gnome2.eclass?rev=1.132content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/gnome2.eclass?r1=1.131r2=1.132

Index: gnome2.eclass
===
RCS file: /var/cvsroot/gentoo-x86/eclass/gnome2.eclass,v
retrieving revision 1.131
retrieving revision 1.132
diff -u -r1.131 -r1.132
--- gnome2.eclass   18 Apr 2015 13:19:47 -  1.131
+++ gnome2.eclass   9 Jul 2015 15:43:03 -   1.132
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/gnome2.eclass,v 1.131 2015/04/18 
13:19:47 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/gnome2.eclass,v 1.132 2015/07/09 
15:43:03 mgorny Exp $
 
 # @ECLASS: gnome2.eclass
 # @MAINTAINER:
@@ -84,8 +84,7 @@
gnome2_disable_deprecation_warning
 
# Run libtoolize
-   # Everything is fatal EAPI 4 onwards
-   nonfatal elibtoolize ${ELTCONF}
+   elibtoolize ${ELTCONF}
 }
 
 # @FUNCTION: gnome2_src_configure






[gentoo-commits] gentoo-x86 commit in sys-freebsd/freebsd-lib: freebsd-lib-10.1-r1.ebuild ChangeLog freebsd-lib-10.1.ebuild

2015-07-09 Thread Michal Gorny (mgorny)
mgorny  15/07/09 06:49:12

  Modified: ChangeLog
  Added:freebsd-lib-10.1-r1.ebuild
  Removed:  freebsd-lib-10.1.ebuild
  Log:
  Fix FreeBSD-EN-15:09.xlocale  FreeBSD-EN-15:10.iconv. 
https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/163 by nigoro.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.213sys-freebsd/freebsd-lib/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-freebsd/freebsd-lib/ChangeLog?rev=1.213view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-freebsd/freebsd-lib/ChangeLog?rev=1.213content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-freebsd/freebsd-lib/ChangeLog?r1=1.212r2=1.213

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-freebsd/freebsd-lib/ChangeLog,v
retrieving revision 1.212
retrieving revision 1.213
diff -u -r1.212 -r1.213
--- ChangeLog   14 Jun 2015 18:05:45 -  1.212
+++ ChangeLog   9 Jul 2015 06:49:12 -   1.213
@@ -1,6 +1,13 @@
 # ChangeLog for sys-freebsd/freebsd-lib
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-freebsd/freebsd-lib/ChangeLog,v 1.212 
2015/06/14 18:05:45 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-freebsd/freebsd-lib/ChangeLog,v 1.213 
2015/07/09 06:49:12 mgorny Exp $
+
+*freebsd-lib-10.1-r1 (09 Jul 2015)
+
+  09 Jul 2015; Michał Górny mgo...@gentoo.org +freebsd-lib-10.1-r1.ebuild,
+  -freebsd-lib-10.1.ebuild:
+  Fix FreeBSD-EN-15:09.xlocale  FreeBSD-EN-15:10.iconv.
+  https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/163 by nigoro.
 
   14 Jun 2015; Michał Górny mgo...@gentoo.org freebsd-lib-10.1.ebuild,
   freebsd-lib-9.1-r11.ebuild:



1.1  sys-freebsd/freebsd-lib/freebsd-lib-10.1-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-freebsd/freebsd-lib/freebsd-lib-10.1-r1.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-freebsd/freebsd-lib/freebsd-lib-10.1-r1.ebuild?rev=1.1content-type=text/plain

Index: freebsd-lib-10.1-r1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/sys-freebsd/freebsd-lib/freebsd-lib-10.1-r1.ebuild,v 
1.1 2015/07/09 06:49:12 mgorny Exp $

EAPI=5

inherit bsdmk freebsd flag-o-matic multilib toolchain-funcs eutils multibuild 
multilib-build

DESCRIPTION=FreeBSD's base system libraries
SLOT=0

# Security Advisory and Errata patches.
UPSTREAM_PATCHES=( SA-14:27/stdio.patch
EN-15:09/xlocale.patch
EN-15:10/iconv.patch )

# Crypto is needed to have an internal OpenSSL header
# sys is needed for libalias, probably we can just extract that instead of
# extracting the whole tarball
if [[ ${PV} != ** ]]; then
KEYWORDS=~amd64-fbsd ~sparc-fbsd ~x86-fbsd
SRC_URI=${SRC_URI}
$(freebsd_upstream_patches)
fi

EXTRACTONLY=
lib/
contrib/
crypto/
libexec/
etc/
include/
usr.sbin/
gnu/
secure/

use build  EXTRACTONLY+=sys/
use zfs  EXTRACTONLY+=cddl/

if [ ${CATEGORY#*cross-} = ${CATEGORY} ]; then
RDEPEND=ssl? ( dev-libs/openssl )
hesiod? ( net-dns/hesiod )
kerberos? ( app-crypt/heimdal )
usb? ( !dev-libs/libusb )
zfs? ( =sys-freebsd/freebsd-cddl-${RV}* )
=dev-libs/expat-2.0.1
=sys-freebsd/freebsd-libexec-${RV}*
!sys-libs/libutempter
!dev-libs/libelf
!dev-libs/libexecinfo
!dev-libs/libiconv
!sys-freebsd/freebsd-headers
DEPEND=${RDEPEND}
=sys-devel/flex-2.5.31-r2
=sys-freebsd/freebsd-sources-${RV}*
RDEPEND=${RDEPEND}
=sys-freebsd/freebsd-share-${RV}*
=virtual/libiconv-0-r2
else
EXTRACTONLY+=sys/
fi

DEPEND=${DEPEND}
userland_GNU? ( sys-apps/mtree )
=sys-freebsd/freebsd-mk-defs-${RV}*

S=${WORKDIR}/lib

export CTARGET=${CTARGET:-${CHOST}}
if [ ${CTARGET} = ${CHOST} -a ${CATEGORY#*cross-} != ${CATEGORY} ]; then
export CTARGET=${CATEGORY/cross-}
fi

IUSE=atm bluetooth ssl hesiod ipv6 kerberos usb netware
build crosscompile_opts_headers-only zfs
userland_GNU userland_BSD

QA_DT_NEEDED=lib/libc.so.7 usr/lib32/libc.so.7

pkg_setup() {
[ -c /dev/zero ] || \
die You forgot to mount /dev; the compiled libc would break.

if ! use ssl  use kerberos; then
eerror If you want kerberos support you need to enable ssl 
support, too.
fi

use atm 

[gentoo-commits] gentoo-x86 commit in sys-freebsd/freebsd-sources: freebsd-sources-10.1-r4.ebuild ChangeLog freebsd-sources-10.1-r3.ebuild

2015-07-09 Thread Michal Gorny (mgorny)
mgorny  15/07/09 06:45:53

  Modified: ChangeLog
  Added:freebsd-sources-10.1-r4.ebuild
  Removed:  freebsd-sources-10.1-r3.ebuild
  Log:
  Fix FreeBSD-EN-15:07.zfs. 
https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/162 by nigoro.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.115sys-freebsd/freebsd-sources/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-freebsd/freebsd-sources/ChangeLog?rev=1.115view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-freebsd/freebsd-sources/ChangeLog?rev=1.115content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-freebsd/freebsd-sources/ChangeLog?r1=1.114r2=1.115

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-freebsd/freebsd-sources/ChangeLog,v
retrieving revision 1.114
retrieving revision 1.115
diff -u -r1.114 -r1.115
--- ChangeLog   14 Jun 2015 18:04:33 -  1.114
+++ ChangeLog   9 Jul 2015 06:45:53 -   1.115
@@ -1,6 +1,13 @@
 # ChangeLog for sys-freebsd/freebsd-sources
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-freebsd/freebsd-sources/ChangeLog,v 
1.114 2015/06/14 18:04:33 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-freebsd/freebsd-sources/ChangeLog,v 
1.115 2015/07/09 06:45:53 mgorny Exp $
+
+*freebsd-sources-10.1-r4 (09 Jul 2015)
+
+  09 Jul 2015; Michał Górny mgo...@gentoo.org 
+freebsd-sources-10.1-r4.ebuild,
+  -freebsd-sources-10.1-r3.ebuild:
+  Fix FreeBSD-EN-15:07.zfs. https://github.com/gentoo/gentoo-portage-rsync-
+  mirror/pull/162 by nigoro.
 
   14 Jun 2015; Michał Górny mgo...@gentoo.org
   +files/freebsd-sources-10.1-gcc48.patch, freebsd-sources-10.1-r3.ebuild:



1.1  sys-freebsd/freebsd-sources/freebsd-sources-10.1-r4.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-freebsd/freebsd-sources/freebsd-sources-10.1-r4.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-freebsd/freebsd-sources/freebsd-sources-10.1-r4.ebuild?rev=1.1content-type=text/plain

Index: freebsd-sources-10.1-r4.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/sys-freebsd/freebsd-sources/freebsd-sources-10.1-r4.ebuild,v
 1.1 2015/07/09 06:45:53 mgorny Exp $

EAPI=5

inherit bsdmk freebsd flag-o-matic toolchain-funcs

DESCRIPTION=FreeBSD kernel sources
SLOT=0

IUSE=+build-kernel debug dtrace zfs

# Security Advisory and Errata patches.
UPSTREAM_PATCHES=( SA-15:02/sctp.patch
SA-15:03/sctp.patch
SA-15:04/igmp.patch
SA-15:04/igmp-errata.patch
SA-15:09/ipv6.patch
EN-15:01/vt.patch
EN-15:05/ufs.patch
EN-15:07/zfs.patch )

if [[ ${PV} != ** ]]; then
KEYWORDS=~amd64-fbsd ~sparc-fbsd ~x86-fbsd
SRC_URI=${SRC_URI}
$(freebsd_upstream_patches)
fi

EXTRACTONLY=
sys/
contrib/bmake/
usr.bin/bmake/

use zfs  EXTRACTONLY+=cddl/

RDEPEND=dtrace? ( =sys-freebsd/freebsd-cddl-9.2_rc1 )
=sys-freebsd/freebsd-mk-defs-${RV}*
!sys-freebsd/virtio-kmod
!sys-fs/fuse4bsd
!sys-freebsd/freebsd-sources-9.2_beta1
DEPEND=build-kernel? (
dtrace? ( =sys-freebsd/freebsd-cddl-9.2_rc1 )
=sys-freebsd/freebsd-usbin-9.1
=sys-freebsd/freebsd-mk-defs-${RV}*
)

RESTRICT=strip binchecks

S=${WORKDIR}/sys

KERN_BUILD=GENTOO

PATCHES=( ${FILESDIR}/${PN}-9.0-disable-optimization.patch
${FILESDIR}/${PN}-10.0-gentoo.patch
${FILESDIR}/${PN}-6.0-flex-2.5.31.patch
${FILESDIR}/${PN}-7.1-types.h-fix.patch
${FILESDIR}/${PN}-8.0-subnet-route-pr40133.patch
${FILESDIR}/${PN}-7.1-includes.patch
${FILESDIR}/${PN}-9.0-sysctluint.patch
${FILESDIR}/${PN}-9.2-gentoo-gcc.patch
${FILESDIR}/${PN}-10.1-gcc48.patch )

pkg_setup() {
# WITHOUT_SSP= is required to boot kernel that compiled with newer gcc, 
bug #477914
[[ $(tc-getCC) == *gcc* ]]  mymakeopts=${mymakeopts} WITHOUT_SSP=
use zfs || mymakeopts=${mymakeopts} WITHOUT_CDDL=
}

src_prepare() {
local conf=${S}/$(tc-arch-kernel)/conf/${KERN_BUILD}

# This replaces the gentoover patch, it doesn't need reapply every time.
sed -i -e 's:^REVISION=.*:REVISION='${PVR}':' \
-e 's:^BRANCH=.*:BRANCH=Gentoo:' \
-e 's:^VERSION=.*:VERSION=${TYPE} ${BRANCH} ${REVISION}:' \
${S}/conf/newvers.sh

# __FreeBSD_cc_version comes from FreeBSD's gcc.
# on 10.0-RELEASE it's 101.
# FYI, can get it from 

[gentoo-commits] gentoo-x86 commit in net-misc/ptpd: ptpd-2.3.1.ebuild ChangeLog ptpd-2.3.0.ebuild ptpd-2.3.1_rc4.ebuild

2015-07-09 Thread Michal Gorny (mgorny)
mgorny  15/07/09 06:39:06

  Modified: ChangeLog
  Added:ptpd-2.3.1.ebuild
  Removed:  ptpd-2.3.0.ebuild ptpd-2.3.1_rc4.ebuild
  Log:
  Version bump with a lot of improvements. 
https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/159 by j123b567.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.2  net-misc/ptpd/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/ptpd/ChangeLog?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/ptpd/ChangeLog?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/ptpd/ChangeLog?r1=1.1r2=1.2

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/ptpd/ChangeLog,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ChangeLog   12 Jun 2015 10:55:53 -  1.1
+++ ChangeLog   9 Jul 2015 06:39:06 -   1.2
@@ -1,6 +1,15 @@
 # ChangeLog for net-misc/ptpd
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/ptpd/ChangeLog,v 1.1 2015/06/12 
10:55:53 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/ptpd/ChangeLog,v 1.2 2015/07/09 
06:39:06 mgorny Exp $
+
+*ptpd-2.3.1 (09 Jul 2015)
+
+  09 Jul 2015; Michał Górny mgo...@gentoo.org +ptpd-2.3.1.ebuild,
+  -files/ptpd-2.3.0-ntpdc.patch, -files/ptpd-2.3.0-statistics-clear.patch,
+  -files/ptpd-2.3.1_rc4-debug-display.patch, -ptpd-2.3.0.ebuild,
+  -ptpd-2.3.1_rc4.ebuild:
+  Version bump with a lot of improvements. https://github.com/gentoo/gentoo-
+  portage-rsync-mirror/pull/159 by j123b567.
 
 *ptpd-2.3.1_rc4 (12 Jun 2015)
 *ptpd-2.3.0 (12 Jun 2015)



1.1  net-misc/ptpd/ptpd-2.3.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/ptpd/ptpd-2.3.1.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/ptpd/ptpd-2.3.1.ebuild?rev=1.1content-type=text/plain

Index: ptpd-2.3.1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/ptpd/ptpd-2.3.1.ebuild,v 1.1 
2015/07/09 06:39:06 mgorny Exp $

EAPI=5

inherit autotools eutils flag-o-matic systemd

DESCRIPTION=Precision Time Protocol daemon
HOMEPAGE=http://ptpd.sf.net;

SRC_URI=mirror://sourceforge/ptpd/${PV}/${P}.tar.gz
KEYWORDS=~amd64 ~arm ~x86

LICENSE=BSD
SLOT=0
IUSE=debug experimental ntp +pcap snmp slave-only +statistics
RDEPEND=
pcap? ( net-libs/libpcap )
snmp? ( net-analyzer/net-snmp )
DEPEND=${RDEPEND}
RDEPEND=${RDEPEND}
ntp? ( net-misc/ntp )

src_prepare() {
eautoreconf
}

src_configure() {
append-flags -fno-strict-aliasing
econf \
--enable-daemon \
$(use_enable snmp) \
$(use_enable experimental experimental-options) \
$(use_enable statistics) \
$(use_enable debug runtime-debug) \
$(use_enable pcap) \
$(use_enable slave-only)
}

src_install() {
emake install DESTDIR=${D}

insinto /etc
newins src/ptpd2.conf.minimal ptpd2.conf

newinitd ${FILESDIR}/ptpd2.rc ptpd2
newconfd ${FILESDIR}/ptpd2.confd ptpd2

systemd_dounit ${FILESDIR}/ptpd2.service
}

pkg_postinst() {
elog Do not forget to setup correct network interface.
elog Change the config file /etc/ptpd2.conf to suit your needs.
}






[gentoo-commits] gentoo-x86 commit in net-misc/ptpd/files: ptpd-2.3.1_rc4-debug-display.patch ptpd-2.3.0-statistics-clear.patch ptpd-2.3.0-ntpdc.patch

2015-07-09 Thread Michal Gorny (mgorny)
mgorny  15/07/09 06:39:06

  Removed:  ptpd-2.3.1_rc4-debug-display.patch
ptpd-2.3.0-statistics-clear.patch
ptpd-2.3.0-ntpdc.patch
  Log:
  Version bump with a lot of improvements. 
https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/159 by j123b567.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)



[gentoo-commits] gentoo-x86 commit in eclass: ChangeLog git-r3.eclass

2015-07-09 Thread Michal Gorny (mgorny)
mgorny  15/07/09 20:21:05

  Modified: ChangeLog git-r3.eclass
  Log:
  Do not attempt to use submodules for which the checkout path does not exist 
(has been removed), bug #551100.

Revision  ChangesPath
1.1707   eclass/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1707view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1707content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.1706r2=1.1707

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
retrieving revision 1.1706
retrieving revision 1.1707
diff -u -r1.1706 -r1.1707
--- ChangeLog   9 Jul 2015 15:43:03 -   1.1706
+++ ChangeLog   9 Jul 2015 20:21:05 -   1.1707
@@ -1,6 +1,10 @@
 # ChangeLog for eclass directory
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1706 2015/07/09 
15:43:03 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1707 2015/07/09 
20:21:05 mgorny Exp $
+
+  09 Jul 2015; Michał Górny mgo...@gentoo.org git-r3.eclass:
+  Do not attempt to use submodules for which the checkout path does not exist
+  (has been removed), bug #551100.
 
   09 Jul 2015; Michał Górny mgo...@gentoo.org gnome2.eclass:
   Remove meaningless nonfatal from elibtoolize call, bug #551154.



1.50 eclass/git-r3.eclass

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/git-r3.eclass?rev=1.50view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/git-r3.eclass?rev=1.50content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/git-r3.eclass?r1=1.49r2=1.50

Index: git-r3.eclass
===
RCS file: /var/cvsroot/gentoo-x86/eclass/git-r3.eclass,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -r1.49 -r1.50
--- git-r3.eclass   22 Jun 2015 08:39:36 -  1.49
+++ git-r3.eclass   9 Jul 2015 20:21:05 -   1.50
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/git-r3.eclass,v 1.49 2015/06/22 
08:39:36 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/git-r3.eclass,v 1.50 2015/07/09 
20:21:05 mgorny Exp $
 
 # @ECLASS: git-r3.eclass
 # @MAINTAINER:
@@ -710,16 +710,23 @@
local subname=${submodules[0]}
local url=${submodules[1]}
local path=${submodules[2]}
-   local commit=$(git rev-parse ${local_ref}:${path})
 
-   if [[ ! ${commit} ]]; then
-   die Unable to get commit id for submodule 
${subname}
-   fi
+   # use only submodules for which path does exist
+   # (this is in par with 'git submodule'), bug #551100
+   # note: git cat-file does not work for submodules
+   if [[ $(git ls-tree -d ${local_ref} ${path}) ]]
+   then
+   local commit=$(git rev-parse 
${local_ref}:${path} || die)
 
-   local subrepos
-   _git-r3_set_subrepos ${url} ${repos[@]}
+   if [[ ! ${commit} ]]; then
+   die Unable to get commit id for 
submodule ${subname}
+   fi
 
-   git-r3_fetch ${subrepos[*]} ${commit} 
${local_id}/${subname}
+   local subrepos
+   _git-r3_set_subrepos ${url} ${repos[@]}
+
+   git-r3_fetch ${subrepos[*]} ${commit} 
${local_id}/${subname}
+   fi
 
submodules=( ${submodules[@]:3} ) # shift
done
@@ -849,11 +856,16 @@
local subname=${submodules[0]}
local url=${submodules[1]}
local path=${submodules[2]}
-   local subrepos
-   _git-r3_set_subrepos ${url} ${repos[@]}
 
-   git-r3_checkout ${subrepos[*]} ${out_dir}/${path} \
-   ${local_id}/${subname}
+   # use only submodules for which path does exist
+   # (this is in par with 'git submodule'), bug #551100
+   if [[ -d ${out_dir}/${path} ]]; then
+   local subrepos
+   _git-r3_set_subrepos ${url} ${repos[@]}
+
+   git-r3_checkout ${subrepos[*]} 
${out_dir}/${path} \
+   

[gentoo-commits] gentoo-x86 commit in dev-lang/ekopath: ekopath-6.0.439_p20150707.ebuild ChangeLog

2015-07-08 Thread Michal Gorny (mgorny)
mgorny  15/07/08 17:31:44

  Modified: ChangeLog
  Added:ekopath-6.0.439_p20150707.ebuild
  Log:
  Snapshot bump.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.31 dev-lang/ekopath/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ekopath/ChangeLog?rev=1.31view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ekopath/ChangeLog?rev=1.31content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ekopath/ChangeLog?r1=1.30r2=1.31

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-lang/ekopath/ChangeLog,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- ChangeLog   30 Jun 2015 14:27:39 -  1.30
+++ ChangeLog   8 Jul 2015 17:31:44 -   1.31
@@ -1,6 +1,12 @@
 # ChangeLog for dev-lang/ekopath
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/ekopath/ChangeLog,v 1.30 
2015/06/30 14:27:39 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/ekopath/ChangeLog,v 1.31 
2015/07/08 17:31:44 mgorny Exp $
+
+*ekopath-6.0.439_p20150707 (08 Jul 2015)
+
+  08 Jul 2015; Michał Górny mgo...@gentoo.org
+  +ekopath-6.0.439_p20150707.ebuild:
+  Snapshot bump.
 
 *ekopath-6.0.430_p20150629 (30 Jun 2015)
 



1.1  dev-lang/ekopath/ekopath-6.0.439_p20150707.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ekopath/ekopath-6.0.439_p20150707.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ekopath/ekopath-6.0.439_p20150707.ebuild?rev=1.1content-type=text/plain

Index: ekopath-6.0.439_p20150707.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-lang/ekopath/ekopath-6.0.439_p20150707.ebuild,v 1.1 
2015/07/08 17:31:44 mgorny Exp $

EAPI=5

inherit versionator multilib pax-utils

MY_PV=$(get_version_component_range 1-3)
DATE=$(get_version_component_range 4)
DATE=${DATE#p}
DATE=${DATE:0:4}-${DATE:4:2}-${DATE:6}
INSTALLER=${PN}-${DATE}-installer.run

DESCRIPTION=PathScale EKOPath Compiler Suite
HOMEPAGE=http://www.pathscale.com/ekopath-compiler-suite;
SRC_URI=http://c591116.r16.cf2.rackcdn.com/${PN}/nightly/Linux/${INSTALLER};

LICENSE=all-rights-reserved
SLOT=0
KEYWORDS=~amd64
IUSE=

DEPEND=!!app-arch/rpm
RDEPEND=

RESTRICT=bindist mirror

QA_PREBUILT=
opt/${PN}/lib/${MY_PV}/x8664/*
opt/${PN}/bin/*

S=${WORKDIR}

src_unpack() {
cp ${DISTDIR}/${INSTALLER} ${S}/ || die
chmod +x ${S}/${INSTALLER} || die
}

src_prepare() {
cat  99${PN} -EOF
PATH=${EROOT%/}/opt/${PN}/bin
ROOTPATH=${EROOT%/}/opt/${PN}/bin

LDPATH=${EROOT%/}/opt/${PN}/lib:${EROOT%/}/opt/${PN}/lib/${MY_PV}/x8664/64
MANPATH=${EROOT%/}/opt/${PN}/docs/man
EOF
}

src_install() {
# EI_PAX marking is obsolete and PT_PAX breaks the binary.
# We must use XT_PAX to run the installer.
if [[ ${PAX_MARKINGS} == XT ]]; then
pax-mark m ${INSTALLER}
fi

./${INSTALLER} \
--prefix ${ED%/}/opt/${PN} \
--mode unattended || die

if [[ ! -d ${ED%/}/opt/${PN}/lib/${MY_PV} ]]; then
local guess
cd ${ED%/}/opt/${PN}/lib  guess=( * )

if [[ ${guess[@]} ]]; then
die Incorrect release version in PV, guessing it 
should be: ${guess[*]}
else
die No libdir installed
fi
fi
[[ -x ${ED%}/opt/${PN}/bin/pathcc ]] || die No pathcc executable was 
installed, your hardware is unsupported most likely

rm -r ${ED}/opt/${PN}/uninstall* || die
doenvd 99${PN}
}






[gentoo-commits] gentoo-x86 commit in sys-fs/duperemove: duperemove-0.09.5.ebuild ChangeLog

2015-07-08 Thread Michal Gorny (mgorny)
mgorny  15/07/08 19:18:55

  Modified: ChangeLog
  Added:duperemove-0.09.5.ebuild
  Log:
  Version bump with some bugfixes and improvements. The new version can 
deduplicate partial blocks.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.5  sys-fs/duperemove/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/duperemove/ChangeLog?rev=1.5view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/duperemove/ChangeLog?rev=1.5content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/duperemove/ChangeLog?r1=1.4r2=1.5

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-fs/duperemove/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog   2 Jul 2015 06:26:59 -   1.4
+++ ChangeLog   8 Jul 2015 19:18:55 -   1.5
@@ -1,6 +1,12 @@
 # ChangeLog for sys-fs/duperemove
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/duperemove/ChangeLog,v 1.4 
2015/07/02 06:26:59 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/duperemove/ChangeLog,v 1.5 
2015/07/08 19:18:55 mgorny Exp $
+
+*duperemove-0.09.5 (08 Jul 2015)
+
+  08 Jul 2015; Michał Górny mgo...@gentoo.org +duperemove-0.09.5.ebuild:
+  Version bump with some bugfixes and improvements. The new version can
+  deduplicate partial blocks.
 
 *duperemove-0.09.4 (02 Jul 2015)
 



1.1  sys-fs/duperemove/duperemove-0.09.5.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/duperemove/duperemove-0.09.5.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/duperemove/duperemove-0.09.5.ebuild?rev=1.1content-type=text/plain

Index: duperemove-0.09.5.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-fs/duperemove/duperemove-0.09.5.ebuild,v 
1.1 2015/07/08 19:18:55 mgorny Exp $

EAPI=5

inherit eutils toolchain-funcs

DESCRIPTION=Btrfs deduplication utility
HOMEPAGE=https://github.com/markfasheh/duperemove;
SRC_URI=https://github.com/markfasheh/duperemove/archive/v${PV}.tar.gz - 
${P}.tar.gz

LICENSE=GPL-2
SLOT=0
KEYWORDS=~amd64
IUSE=

RDEPEND=dev-libs/glib:2=
dev-libs/libgcrypt:0=
DEPEND=${RDEPEND}

src_compile() {
# CC  CFLAGS are set via = so need to override them
# LIBRARY_FLAGS are set via += so need to pass them via env
export LIBRARY_FLAGS=${LDFLAGS}
emake CC=$(tc-getCC) CFLAGS=${CFLAGS} -Wall
}

src_install() {
emake DESTDIR=${D} PREFIX=/usr install
}






[gentoo-commits] gentoo-x86 commit in sci-mathematics/octave: octave-3.8.1-r1.ebuild octave-3.8.2.ebuild ChangeLog

2015-07-05 Thread Michal Gorny (mgorny)
mgorny  15/07/05 14:47:44

  Modified: octave-3.8.1-r1.ebuild octave-3.8.2.ebuild
ChangeLog
  Log:
  Remove slot operators from || () block where they are broken.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.7  sci-mathematics/octave/octave-3.8.1-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/octave/octave-3.8.1-r1.ebuild?rev=1.7view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/octave/octave-3.8.1-r1.ebuild?rev=1.7content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/octave/octave-3.8.1-r1.ebuild?r1=1.6r2=1.7

Index: octave-3.8.1-r1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/sci-mathematics/octave/octave-3.8.1-r1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- octave-3.8.1-r1.ebuild  7 Jan 2015 11:33:22 -   1.6
+++ octave-3.8.1-r1.ebuild  5 Jul 2015 14:47:44 -   1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/sci-mathematics/octave/octave-3.8.1-r1.ebuild,v 1.6 
2015/01/07 11:33:22 jer Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/sci-mathematics/octave/octave-3.8.1-r1.ebuild,v 1.7 
2015/07/05 14:47:44 mgorny Exp $
 
 EAPI=5
 
@@ -31,8 +31,8 @@
gui? ( x11-libs/qscintilla:0= )
hdf5? ( sci-libs/hdf5:0= )
imagemagick? ( || (
-   media-gfx/graphicsmagick:=[cxx]
-   media-gfx/imagemagick:=[cxx] ) )
+   media-gfx/graphicsmagick[cxx]
+   media-gfx/imagemagick[cxx] ) )
java? ( =virtual/jre-1.6.0 )
jit? ( sys-devel/llvm-3.5 )
opengl? (



1.9  sci-mathematics/octave/octave-3.8.2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/octave/octave-3.8.2.ebuild?rev=1.9view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/octave/octave-3.8.2.ebuild?rev=1.9content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/octave/octave-3.8.2.ebuild?r1=1.8r2=1.9

Index: octave-3.8.2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/octave/octave-3.8.2.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- octave-3.8.2.ebuild 7 Jan 2015 11:33:22 -   1.8
+++ octave-3.8.2.ebuild 5 Jul 2015 14:47:44 -   1.9
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/sci-mathematics/octave/octave-3.8.2.ebuild,v 1.8 
2015/01/07 11:33:22 jer Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/sci-mathematics/octave/octave-3.8.2.ebuild,v 1.9 
2015/07/05 14:47:44 mgorny Exp $
 
 EAPI=5
 
@@ -31,8 +31,8 @@
gui? ( x11-libs/qscintilla:0= )
hdf5? ( sci-libs/hdf5:0= )
imagemagick? ( || (
-   media-gfx/graphicsmagick:=[cxx]
-   media-gfx/imagemagick:=[cxx] ) )
+   media-gfx/graphicsmagick[cxx]
+   media-gfx/imagemagick[cxx] ) )
java? ( =virtual/jre-1.6.0 )
jit? ( sys-devel/llvm-3.5:0= )
opengl? (



1.175sci-mathematics/octave/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/octave/ChangeLog?rev=1.175view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/octave/ChangeLog?rev=1.175content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/octave/ChangeLog?r1=1.174r2=1.175

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/octave/ChangeLog,v
retrieving revision 1.174
retrieving revision 1.175
diff -u -r1.174 -r1.175
--- ChangeLog   7 Jan 2015 11:33:22 -   1.174
+++ ChangeLog   5 Jul 2015 14:47:44 -   1.175
@@ -1,6 +1,10 @@
 # ChangeLog for sci-mathematics/octave
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/octave/ChangeLog,v 1.174 
2015/01/07 11:33:22 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/octave/ChangeLog,v 1.175 
2015/07/05 14:47:44 mgorny Exp $
+
+  05 Jul 2015; Michał Górny mgo...@gentoo.org octave-3.8.1-r1.ebuild,
+  octave-3.8.2.ebuild:
+  Remove slot operators from || () block where they are broken.
 
   07 Jan 2015; Jeroen Roovers j...@gentoo.org octave-3.8.1-r1.ebuild,
   octave-3.8.2.ebuild:






[gentoo-commits] gentoo-x86 commit in net-misc/aria2: aria2-1.19.0.ebuild ChangeLog metadata.xml

2015-07-05 Thread Michal Gorny (mgorny)
mgorny  15/07/05 19:27:43

  Modified: ChangeLog metadata.xml
  Added:aria2-1.19.0.ebuild
  Log:
  Version bump. The new version adds SFTP (SSH) support, and comes with a few 
bugfixes and improvements.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.102net-misc/aria2/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/aria2/ChangeLog?rev=1.102view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/aria2/ChangeLog?rev=1.102content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/aria2/ChangeLog?r1=1.101r2=1.102

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/aria2/ChangeLog,v
retrieving revision 1.101
retrieving revision 1.102
diff -u -r1.101 -r1.102
--- ChangeLog   21 Feb 2015 09:01:08 -  1.101
+++ ChangeLog   5 Jul 2015 19:27:43 -   1.102
@@ -1,6 +1,13 @@
 # ChangeLog for net-misc/aria2
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/aria2/ChangeLog,v 1.101 2015/02/21 
09:01:08 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/aria2/ChangeLog,v 1.102 2015/07/05 
19:27:43 mgorny Exp $
+
+*aria2-1.19.0 (05 Jul 2015)
+
+  05 Jul 2015; Michał Górny mgo...@gentoo.org +aria2-1.19.0.ebuild,
+  metadata.xml:
+  Version bump. The new version adds SFTP (SSH) support, and comes with a few
+  bugfixes and improvements.
 
 *aria2-1.18.9 (21 Feb 2015)
 



1.13 net-misc/aria2/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/aria2/metadata.xml?rev=1.13view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/aria2/metadata.xml?rev=1.13content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/aria2/metadata.xml?r1=1.12r2=1.13

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/aria2/metadata.xml,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- metadata.xml27 Jun 2014 13:16:09 -  1.12
+++ metadata.xml5 Jul 2015 19:27:43 -   1.13
@@ -17,6 +17,7 @@
flag name=nettleUse pkgdev-libs/nettle/pkg and 
pkgdev-libs/gmp/pkg for bittorrent/metalink crypto instead of 
pkgdev-libs/libgcrypt/pkg (when pkgdev-libs/openssl/pkg is not being 
used)./flag
flag name=metalinkEnable support for metalink./flag
flag name=scriptsInstall additional scripts which use 
aria2's xmlrpc functionality./flag
+   flag name=sshEnable SFTP support./flag
/use
upstream
remote-id type=sourceforgearia2/remote-id



1.1  net-misc/aria2/aria2-1.19.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/aria2/aria2-1.19.0.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/aria2/aria2-1.19.0.ebuild?rev=1.1content-type=text/plain

Index: aria2-1.19.0.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/aria2/aria2-1.19.0.ebuild,v 1.1 
2015/07/05 19:27:43 mgorny Exp $

EAPI=5

inherit bash-completion-r1 eutils

DESCRIPTION=A download utility with segmented downloading with BitTorrent 
support
HOMEPAGE=http://aria2.sourceforge.net/;
SRC_URI=mirror://sourceforge/${PN}/${P}.tar.bz2

LICENSE=GPL-2
KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux
SLOT=0
IUSE=adns bittorrent +gnutls jemalloc libuv +libxml2 metalink +nettle nls 
sqlite scripts ssh ssl tcmalloc test xmlrpc

CDEPEND=sys-libs/zlib:0=
ssl? (
app-misc/ca-certificates
gnutls? ( =net-libs/gnutls-1.2.9:0= )
!gnutls? ( dev-libs/openssl:0= ) )
adns? ( =net-dns/c-ares-1.5.0:0= )
bittorrent? (
ssl? (
gnutls? (
nettle? ( =dev-libs/nettle-2.4:0=[gmp] 
=dev-libs/gmp-5:0= )
!nettle? ( =dev-libs/libgcrypt-1.2.2:0= ) ) )
!ssl? (
nettle? ( =dev-libs/nettle-2.4:0=[gmp] 
=dev-libs/gmp-5:0= )
!nettle? ( =dev-libs/libgcrypt-1.2.2:0= ) ) )
jemalloc? ( dev-libs/jemalloc )
libuv? ( dev-libs/libuv:0= )
metalink? (
libxml2? ( =dev-libs/libxml2-2.6.26:2= )
!libxml2? ( dev-libs/expat:0= ) )
sqlite? ( dev-db/sqlite:3= )
ssh? ( net-libs/libssh2:= )
tcmalloc? ( dev-util/google-perftools )
xmlrpc? (
libxml2? ( =dev-libs/libxml2-2.6.26:2= )
  

[gentoo-commits] gentoo-x86 commit in sys-fs/duperemove: ChangeLog duperemove-0.09.4.ebuild

2015-07-02 Thread Michal Gorny (mgorny)
mgorny  15/07/02 06:26:59

  Modified: ChangeLog
  Added:duperemove-0.09.4.ebuild
  Log:
  Version bump with rbtree iteration bugfix.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.4  sys-fs/duperemove/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/duperemove/ChangeLog?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/duperemove/ChangeLog?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/duperemove/ChangeLog?r1=1.3r2=1.4

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-fs/duperemove/ChangeLog,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ChangeLog   9 Apr 2015 19:10:51 -   1.3
+++ ChangeLog   2 Jul 2015 06:26:59 -   1.4
@@ -1,6 +1,11 @@
 # ChangeLog for sys-fs/duperemove
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/duperemove/ChangeLog,v 1.3 
2015/04/09 19:10:51 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/duperemove/ChangeLog,v 1.4 
2015/07/02 06:26:59 mgorny Exp $
+
+*duperemove-0.09.4 (02 Jul 2015)
+
+  02 Jul 2015; Michał Górny mgo...@gentoo.org +duperemove-0.09.4.ebuild:
+  Version bump with rbtree iteration bugfix.
 
 *duperemove-0.09.3 (09 Apr 2015)
 



1.1  sys-fs/duperemove/duperemove-0.09.4.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/duperemove/duperemove-0.09.4.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/duperemove/duperemove-0.09.4.ebuild?rev=1.1content-type=text/plain

Index: duperemove-0.09.4.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-fs/duperemove/duperemove-0.09.4.ebuild,v 
1.1 2015/07/02 06:26:59 mgorny Exp $

EAPI=5

inherit eutils toolchain-funcs

DESCRIPTION=Btrfs deduplication utility
HOMEPAGE=https://github.com/markfasheh/duperemove;
SRC_URI=https://github.com/markfasheh/duperemove/archive/v${PV}.tar.gz - 
${P}.tar.gz

LICENSE=GPL-2
SLOT=0
KEYWORDS=~amd64
IUSE=

RDEPEND=dev-libs/glib:2=
dev-libs/libgcrypt:0=
DEPEND=${RDEPEND}

src_compile() {
# CC  CFLAGS are set via = so need to override them
# LIBRARY_FLAGS are set via += so need to pass them via env
export LIBRARY_FLAGS=${LDFLAGS}
emake CC=$(tc-getCC) CFLAGS=${CFLAGS} -Wall
}

src_install() {
emake DESTDIR=${D} PREFIX=/usr install
}






[gentoo-commits] gentoo-x86 commit in dev-libs/libindicate: libindicate-12.10.1-r2.ebuild ChangeLog

2015-07-01 Thread Michal Gorny (mgorny)
mgorny  15/07/01 18:27:37

  Modified: ChangeLog
  Added:libindicate-12.10.1-r2.ebuild
  Log:
  Combine sed calls. Fix gtk-doc install path (and incorrect nonfatal use), bug 
#551162.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.44 dev-libs/libindicate/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libindicate/ChangeLog?rev=1.44view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libindicate/ChangeLog?rev=1.44content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libindicate/ChangeLog?r1=1.43r2=1.44

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libindicate/ChangeLog,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -r1.43 -r1.44
--- ChangeLog   9 Jun 2015 14:30:10 -   1.43
+++ ChangeLog   1 Jul 2015 18:27:37 -   1.44
@@ -1,6 +1,12 @@
 # ChangeLog for dev-libs/libindicate
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libindicate/ChangeLog,v 1.43 
2015/06/09 14:30:10 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libindicate/ChangeLog,v 1.44 
2015/07/01 18:27:37 mgorny Exp $
+
+*libindicate-12.10.1-r2 (01 Jul 2015)
+
+  01 Jul 2015; Michał Górny mgo...@gentoo.org +libindicate-12.10.1-r2.ebuild:
+  Combine sed calls. Fix gtk-doc install path (and incorrect nonfatal use), bug
+  #551162.
 
   09 Jun 2015; Justin Lecher j...@gentoo.org metadata.xml:
   Updating remote-id in metadata.xml



1.1  dev-libs/libindicate/libindicate-12.10.1-r2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libindicate/libindicate-12.10.1-r2.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libindicate/libindicate-12.10.1-r2.ebuild?rev=1.1content-type=text/plain

Index: libindicate-12.10.1-r2.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-libs/libindicate/libindicate-12.10.1-r2.ebuild,v 
1.1 2015/07/01 18:27:37 mgorny Exp $

EAPI=5
VALA_MIN_API_VERSION=0.16
VALA_USE_DEPEND=vapigen

inherit autotools eutils flag-o-matic vala

DESCRIPTION=A library to raise flags on DBus for other components of the 
desktop to pick up and visualize
HOMEPAGE=http://launchpad.net/libindicate;
SRC_URI=http://launchpad.net/${PN}/${PV%.*}/${PV}/+download/${P}.tar.gz;

LICENSE=LGPL-2.1 LGPL-3
SLOT=3
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86
IUSE=gtk +introspection

RESTRICT=test # consequence of the -no-mono.patch

RDEPEND==dev-libs/dbus-glib-0.100
=dev-libs/glib-2.30
=dev-libs/libdbusmenu-0.6.2[introspection?]
dev-libs/libxml2
gtk? (
dev-libs/libdbusmenu[gtk3]
=x11-libs/gtk+-3.2:3
)
introspection? ( =dev-libs/gobject-introspection-1 )
!${CATEGORY}/${PN}-0.6.1-r201
EAUTORECONF_DEPEND=dev-util/gtk-doc-am
gnome-base/gnome-common
DEPEND=${RDEPEND}
${EAUTORECONF_DEPEND}
$(vala_depend)
app-text/gnome-doc-utils
virtual/pkgconfig

src_prepare() {
vala_src_prepare

epatch ${FILESDIR}/${PN}-0.6.1-no-mono.patch

sed -i \
-e s:vapigen:vapigen-$(vala_best_api_version): \
-e s/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/ \
configure.ac || die

eautoreconf
}

src_configure() {
append-flags -Wno-error

# python bindings are only for GTK+-2.x
econf \
--disable-silent-rules \
--disable-static \
$(use_enable gtk) \
$(use_enable introspection) \
--disable-python \
--disable-scrollkeeper \
--with-gtk=3
}

src_install() {
emake DESTDIR=${D} install
dodoc AUTHORS ChangeLog NEWS

prune_libtool_files
}






[gentoo-commits] gentoo-x86 commit in dev-lang/ekopath: ekopath-6.0.430_p20150629.ebuild ChangeLog ekopath-5.0.1_pre20131115.ebuild ekopath-5.0.5_pre20150226.ebuild ekopath-6.0.373_p20150519.ebuild ek

2015-06-30 Thread Michal Gorny (mgorny)
mgorny  15/06/30 14:27:39

  Modified: ChangeLog
  Added:ekopath-6.0.430_p20150629.ebuild
  Removed:  ekopath-5.0.1_pre20131115.ebuild
ekopath-5.0.5_pre20150226.ebuild
ekopath-6.0.373_p20150519.ebuild
ekopath-6.0.396_p20150605.ebuild
  Log:
  Bump. Remove old.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.30 dev-lang/ekopath/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ekopath/ChangeLog?rev=1.30view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ekopath/ChangeLog?rev=1.30content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ekopath/ChangeLog?r1=1.29r2=1.30

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-lang/ekopath/ChangeLog,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- ChangeLog   6 Jun 2015 11:46:50 -   1.29
+++ ChangeLog   30 Jun 2015 14:27:39 -  1.30
@@ -1,6 +1,14 @@
 # ChangeLog for dev-lang/ekopath
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/ekopath/ChangeLog,v 1.29 
2015/06/06 11:46:50 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/ekopath/ChangeLog,v 1.30 
2015/06/30 14:27:39 mgorny Exp $
+
+*ekopath-6.0.430_p20150629 (30 Jun 2015)
+
+  30 Jun 2015; Michał Górny mgo...@gentoo.org
+  +ekopath-6.0.430_p20150629.ebuild, -ekopath-5.0.1_pre20131115.ebuild,
+  -ekopath-5.0.5_pre20150226.ebuild, -ekopath-6.0.373_p20150519.ebuild,
+  -ekopath-6.0.396_p20150605.ebuild:
+  Bump. Remove old.
 
 *ekopath-6.0.396_p20150605 (06 Jun 2015)
 



1.1  dev-lang/ekopath/ekopath-6.0.430_p20150629.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ekopath/ekopath-6.0.430_p20150629.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ekopath/ekopath-6.0.430_p20150629.ebuild?rev=1.1content-type=text/plain

Index: ekopath-6.0.430_p20150629.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-lang/ekopath/ekopath-6.0.430_p20150629.ebuild,v 1.1 
2015/06/30 14:27:39 mgorny Exp $

EAPI=5

inherit versionator multilib pax-utils

MY_PV=$(get_version_component_range 1-3)
DATE=$(get_version_component_range 4)
DATE=${DATE#p}
DATE=${DATE:0:4}-${DATE:4:2}-${DATE:6}
INSTALLER=${PN}-${DATE}-installer.run

DESCRIPTION=PathScale EKOPath Compiler Suite
HOMEPAGE=http://www.pathscale.com/ekopath-compiler-suite;
SRC_URI=http://c591116.r16.cf2.rackcdn.com/${PN}/nightly/Linux/${INSTALLER};

LICENSE=all-rights-reserved
SLOT=0
KEYWORDS=~amd64
IUSE=

DEPEND=!!app-arch/rpm
RDEPEND=

RESTRICT=bindist mirror

QA_PREBUILT=
opt/${PN}/lib/${MY_PV}/x8664/*
opt/${PN}/bin/*

S=${WORKDIR}

src_unpack() {
cp ${DISTDIR}/${INSTALLER} ${S}/ || die
chmod +x ${S}/${INSTALLER} || die
}

src_prepare() {
cat  99${PN} -EOF
PATH=${EROOT%/}/opt/${PN}/bin
ROOTPATH=${EROOT%/}/opt/${PN}/bin

LDPATH=${EROOT%/}/opt/${PN}/lib:${EROOT%/}/opt/${PN}/lib/${MY_PV}/x8664/64
MANPATH=${EROOT%/}/opt/${PN}/docs/man
EOF
}

src_install() {
# EI_PAX marking is obsolete and PT_PAX breaks the binary.
# We must use XT_PAX to run the installer.
if [[ ${PAX_MARKINGS} == XT ]]; then
pax-mark m ${INSTALLER}
fi

./${INSTALLER} \
--prefix ${ED%/}/opt/${PN} \
--mode unattended || die

if [[ ! -d ${ED%/}/opt/${PN}/lib/${MY_PV} ]]; then
local guess
cd ${ED%/}/opt/${PN}/lib  guess=( * )

if [[ ${guess[@]} ]]; then
die Incorrect release version in PV, guessing it 
should be: ${guess[*]}
else
die No libdir installed
fi
fi
[[ -x ${ED%}/opt/${PN}/bin/pathcc ]] || die No pathcc executable was 
installed, your hardware is unsupported most likely

rm -r ${ED}/opt/${PN}/uninstall* || die
doenvd 99${PN}
}






[gentoo-commits] gentoo-x86 commit in eclass: ChangeLog multilib-build.eclass

2015-06-26 Thread Michal Gorny (mgorny)
mgorny  15/06/26 20:43:13

  Modified: ChangeLog multilib-build.eclass
  Log:
  Remove emul-linux-x86 hack, since emul-linux-x86 is no more.

Revision  ChangesPath
1.1685   eclass/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1685view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1685content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.1684r2=1.1685

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
retrieving revision 1.1684
retrieving revision 1.1685
diff -u -r1.1684 -r1.1685
--- ChangeLog   24 Jun 2015 17:04:53 -  1.1684
+++ ChangeLog   26 Jun 2015 20:43:13 -  1.1685
@@ -1,6 +1,9 @@
 # ChangeLog for eclass directory
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1684 2015/06/24 
17:04:53 williamh Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1685 2015/06/26 
20:43:13 mgorny Exp $
+
+  26 Jun 2015; Michał Górny mgo...@gentoo.org multilib-build.eclass:
+  Remove emul-linux-x86 hack, since emul-linux-x86 is no more.
 
   24 Jun 2015; William Hubbs willi...@gentoo.org golang-build.eclass:
   typo fix, use double brackets



1.66 eclass/multilib-build.eclass

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/multilib-build.eclass?rev=1.66view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/multilib-build.eclass?rev=1.66content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/multilib-build.eclass?r1=1.65r2=1.66

Index: multilib-build.eclass
===
RCS file: /var/cvsroot/gentoo-x86/eclass/multilib-build.eclass,v
retrieving revision 1.65
retrieving revision 1.66
diff -u -r1.65 -r1.66
--- multilib-build.eclass   13 Dec 2014 08:41:37 -  1.65
+++ multilib-build.eclass   26 Jun 2015 20:43:13 -  1.66
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/multilib-build.eclass,v 1.65 
2014/12/13 08:41:37 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/multilib-build.eclass,v 1.66 
2015/06/26 20:43:13 mgorny Exp $
 
 # @ECLASS: multilib-build.eclass
 # @MAINTAINER:
@@ -513,14 +513,6 @@
sed -e /${MULTILIB_ABI_FLAG} 
/serror.*include ${CHOST}${f} \
-i ${wrapper} || die
 
-   # Hack for emul-linux-x86 compatibility.
-   # It assumes amd64 will come after x86, 
and will use amd64
-   # headers if no specific x86 headers 
were installed.
-   if [[ ${ABI} == amd64 ]]; then
-   sed -e /abi_x86_32 
/serror.*include ${CHOST}${f} \
-   -i ${wrapper} || die
-   fi
-
# Needed for swig.
if multilib_is_native_abi; then
sed -e /Native 
ABI/serror.*include ${CHOST}${f} \






[gentoo-commits] gentoo-x86 commit in net-libs/iojs: iojs-2.3.1.ebuild ChangeLog

2015-06-25 Thread Michal Gorny (mgorny)
mgorny  15/06/25 18:44:42

  Modified: ChangeLog
  Added:iojs-2.3.1.ebuild
  Log:
  Version bump with upstream fix for bug #552232. 
https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/153 by jbergstroem.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.22 net-libs/iojs/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/iojs/ChangeLog?rev=1.22view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/iojs/ChangeLog?rev=1.22content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/iojs/ChangeLog?r1=1.21r2=1.22

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-libs/iojs/ChangeLog,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- ChangeLog   15 Jun 2015 11:53:24 -  1.21
+++ ChangeLog   25 Jun 2015 18:44:42 -  1.22
@@ -1,6 +1,12 @@
 # ChangeLog for net-libs/iojs
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/iojs/ChangeLog,v 1.21 2015/06/15 
11:53:24 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/iojs/ChangeLog,v 1.22 2015/06/25 
18:44:42 mgorny Exp $
+
+*iojs-2.3.1 (25 Jun 2015)
+
+  25 Jun 2015; Michał Górny mgo...@gentoo.org +iojs-2.3.1.ebuild:
+  Version bump with upstream fix for bug #552232. https://github.com/gentoo
+  /gentoo-portage-rsync-mirror/pull/153 by jbergstroem.
 
 *iojs-2.3.0 (15 Jun 2015)
 



1.1  net-libs/iojs/iojs-2.3.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/iojs/iojs-2.3.1.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/iojs/iojs-2.3.1.ebuild?rev=1.1content-type=text/plain

Index: iojs-2.3.1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/iojs/iojs-2.3.1.ebuild,v 1.1 
2015/06/25 18:44:42 mgorny Exp $

EAPI=5

PYTHON_COMPAT=( python2_7 )

MY_PV=v${PV}
MY_P=${PN}-${MY_PV}

inherit flag-o-matic pax-utils python-single-r1 toolchain-funcs

DESCRIPTION=An npm compatible platform originally based on node.js
HOMEPAGE=http://iojs.org/;
SRC_URI=http://iojs.org/dist/${MY_PV}/${MY_P}.tar.xz;

LICENSE=Apache-1.1 Apache-2.0 BSD BSD-2 MIT
SLOT=0
KEYWORDS=~amd64 ~arm ~x86 ~x64-macos
IUSE=bundled-libs debug icu +npm snapshot +ssl

RDEPEND=icu? ( dev-libs/icu )
${PYTHON_DEPS}
!bundled-libs? (
=net-libs/http-parser-2.5
=dev-libs/libuv-1.6.1
=dev-libs/openssl-1.0.2c[-bindist]
)
DEPEND=${RDEPEND}
!!net-libs/nodejs
S=${WORKDIR}/${MY_P}
REQUIRED_USE=${PYTHON_REQUIRED_USE}

pkg_pretend() {
if ! test-flag-CXX -std=c++11 ; then
die Your compiler doesn't support C++11. Use GCC 4.8, Clang 
3.3 or newer.
fi
}

src_prepare() {
tc-export CC CXX PKG_CONFIG
export V=1 # Verbose build
export BUILDTYPE=Release

# fix compilation on Darwin
# http://code.google.com/p/gyp/issues/detail?id=260
sed -i -e /append('-arch/d tools/gyp/pylib/gyp/xcode_emulation.py || 
die

# make sure we use python2.* while using gyp
sed -i -e s/python/${EPYTHON}/ deps/npm/node_modules/node-gyp/gyp/gyp 
|| die
sed -i -e s/|| 'python'/|| '${EPYTHON}'/ 
deps/npm/node_modules/node-gyp/lib/configure.js || die

# less verbose install output (stating the same as portage, basically)
sed -i -e /print/d tools/install.py || die

# proper libdir, hat tip @ryanpcmcquen 
https://github.com/iojs/io.js/issues/504
local LIBDIR=$(get_libdir)
sed -i -e s|lib/|${LIBDIR}/|g tools/install.py || die
sed -i -e s/'lib'/'${LIBDIR}'/ lib/module.js || die
sed -i -e s|\lib\|\${LIBDIR}\| deps/npm/lib/npm.js || die

# Avoid a test that I've only been able to reproduce from emerge. It 
doesnt
# seem sandbox related either (invoking it from a sandbox works fine).
# The issue is that no stdin handle is openened when asked for one.
# It doesn't really belong upstream , so it'll just be removed until 
someone
# with more gentoo-knowledge than me (jbergstroem) figures it out.
rm test/parallel/test-stdout-close-unref.js || die

# debug builds. change install path, remove optimisations and override 
buildtype
if use debug; then
sed -i -e s|out/Release/|out/Debug/|g tools/install.py || die
BUILDTYPE=Debug
fi

epatch_user
}

src_configure() {
local myconf=()
local myarch=
use bundled-libs || myconf+=( --shared-openssl --shared-libuv 
--shared-http-parser 

[gentoo-commits] gentoo-x86 commit in xfce-extra/xfce4-cpufreq-plugin: xfce4-cpufreq-plugin-1.1.2.ebuild ChangeLog

2015-06-24 Thread Michal Gorny (mgorny)
mgorny  15/06/24 14:24:21

  Modified: ChangeLog
  Added:xfce4-cpufreq-plugin-1.1.2.ebuild
  Log:
  Version bump with minor build-time fixes and translation update
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.17 xfce-extra/xfce4-cpufreq-plugin/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-cpufreq-plugin/ChangeLog?rev=1.17view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-cpufreq-plugin/ChangeLog?rev=1.17content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-cpufreq-plugin/ChangeLog?r1=1.16r2=1.17

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-cpufreq-plugin/ChangeLog,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- ChangeLog   12 Apr 2015 18:53:12 -  1.16
+++ ChangeLog   24 Jun 2015 14:24:21 -  1.17
@@ -1,6 +1,12 @@
 # ChangeLog for xfce-extra/xfce4-cpufreq-plugin
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-cpufreq-plugin/ChangeLog,v 
1.16 2015/04/12 18:53:12 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-cpufreq-plugin/ChangeLog,v 
1.17 2015/06/24 14:24:21 mgorny Exp $
+
+*xfce4-cpufreq-plugin-1.1.2 (24 Jun 2015)
+
+  24 Jun 2015; Michał Górny mgo...@gentoo.org
+  +xfce4-cpufreq-plugin-1.1.2.ebuild:
+  Version bump with minor build-time fixes and translation update
 
 *xfce4-cpufreq-plugin-1.1.1 (12 Apr 2015)
 



1.1  
xfce-extra/xfce4-cpufreq-plugin/xfce4-cpufreq-plugin-1.1.2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-cpufreq-plugin/xfce4-cpufreq-plugin-1.1.2.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-cpufreq-plugin/xfce4-cpufreq-plugin-1.1.2.ebuild?rev=1.1content-type=text/plain

Index: xfce4-cpufreq-plugin-1.1.2.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/xfce-extra/xfce4-cpufreq-plugin/xfce4-cpufreq-plugin-1.1.2.ebuild,v
 1.1 2015/06/24 14:24:21 mgorny Exp $

EAPI=5
inherit xfconf

DESCRIPTION=A panel plugin for showing information about cpufreq settings
HOMEPAGE=http://goodies.xfce.org/projects/panel-plugins/xfce4-cpufreq-plugin;
SRC_URI=mirror://xfce/src/panel-plugins/${PN}/${PV%.*}/${P}.tar.bz2

LICENSE=GPL-2
SLOT=0
KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~x86
IUSE=debug

RDEPEND==dev-libs/glib-2.20:=
=x11-libs/gtk+-2.14:2=
=xfce-base/libxfce4ui-4.10:=
=xfce-base/libxfce4util-4.10:=
=xfce-base/xfce4-panel-4.10:=
DEPEND=${RDEPEND}
dev-util/intltool
sys-devel/gettext
virtual/pkgconfig

pkg_setup() {
XFCONF=(
$(xfconf_use_debug)
)

DOCS=( AUTHORS ChangeLog NEWS README )
}






[gentoo-commits] gentoo-x86 commit in xfce-extra/xfce4-weather-plugin: xfce4-weather-plugin-0.8.6.ebuild ChangeLog

2015-06-24 Thread Michal Gorny (mgorny)
mgorny  15/06/24 14:18:14

  Modified: ChangeLog
  Added:xfce4-weather-plugin-0.8.6.ebuild
  Log:
  Version bump with minor fixes.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.44 xfce-extra/xfce4-weather-plugin/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-weather-plugin/ChangeLog?rev=1.44view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-weather-plugin/ChangeLog?rev=1.44content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-weather-plugin/ChangeLog?r1=1.43r2=1.44

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-weather-plugin/ChangeLog,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -r1.43 -r1.44
--- ChangeLog   12 Apr 2015 20:04:27 -  1.43
+++ ChangeLog   24 Jun 2015 14:18:14 -  1.44
@@ -1,6 +1,12 @@
 # ChangeLog for xfce-extra/xfce4-weather-plugin
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-weather-plugin/ChangeLog,v 
1.43 2015/04/12 20:04:27 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-weather-plugin/ChangeLog,v 
1.44 2015/06/24 14:18:14 mgorny Exp $
+
+*xfce4-weather-plugin-0.8.6 (24 Jun 2015)
+
+  24 Jun 2015; Michał Górny mgo...@gentoo.org
+  +xfce4-weather-plugin-0.8.6.ebuild:
+  Version bump with minor fixes.
 
 *xfce4-weather-plugin-0.8.5 (12 Apr 2015)
 



1.1  
xfce-extra/xfce4-weather-plugin/xfce4-weather-plugin-0.8.6.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-weather-plugin/xfce4-weather-plugin-0.8.6.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-weather-plugin/xfce4-weather-plugin-0.8.6.ebuild?rev=1.1content-type=text/plain

Index: xfce4-weather-plugin-0.8.6.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/xfce-extra/xfce4-weather-plugin/xfce4-weather-plugin-0.8.6.ebuild,v
 1.1 2015/06/24 14:18:14 mgorny Exp $

EAPI=5
inherit xfconf

DESCRIPTION=A weather plug-in for the Xfce desktop environment
HOMEPAGE=http://goodies.xfce.org/projects/panel-plugins/xfce4-weather-plugin;
SRC_URI=mirror://xfce/src/panel-plugins/${PN}/${PV%.*}/${P}.tar.bz2

LICENSE=GPL-2
SLOT=0
KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~x86
IUSE=debug upower

RDEPEND==dev-libs/glib-2.20:=
dev-libs/libxml2:=
=net-libs/libsoup-2.32:=
=x11-libs/gtk+-2.14:2=
=xfce-base/libxfce4ui-4.10:=
=xfce-base/libxfce4util-4.10:=
=xfce-base/xfce4-panel-4.10:=
upower? ( || ( =sys-power/upower-0.9.23 sys-power/upower-pm-utils ) )
DEPEND=${RDEPEND}
dev-util/intltool
virtual/pkgconfig

pkg_setup() {
# For GEONAMES_USERNAME, read README file and ask ssuominen@!
XFCONF=(
$(use_enable upower)
$(xfconf_use_debug)
GEONAMES_USERNAME=Gentoo
)

DOCS=( AUTHORS ChangeLog NEWS README TODO )
}






[gentoo-commits] gentoo-x86 commit in xfce-extra/xfce4-notes-plugin: xfce4-notes-plugin-1.8.1.ebuild ChangeLog

2015-06-24 Thread Michal Gorny (mgorny)
mgorny  15/06/25 04:08:22

  Modified: ChangeLog
  Added:xfce4-notes-plugin-1.8.1.ebuild
  Log:
  Version bump with visual fixes.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.40 xfce-extra/xfce4-notes-plugin/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-notes-plugin/ChangeLog?rev=1.40view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-notes-plugin/ChangeLog?rev=1.40content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-notes-plugin/ChangeLog?r1=1.39r2=1.40

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-notes-plugin/ChangeLog,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -r1.39 -r1.40
--- ChangeLog   19 Apr 2015 22:05:58 -  1.39
+++ ChangeLog   25 Jun 2015 04:08:22 -  1.40
@@ -1,6 +1,12 @@
 # ChangeLog for xfce-extra/xfce4-notes-plugin
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-notes-plugin/ChangeLog,v 
1.39 2015/04/19 22:05:58 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-notes-plugin/ChangeLog,v 
1.40 2015/06/25 04:08:22 mgorny Exp $
+
+*xfce4-notes-plugin-1.8.1 (25 Jun 2015)
+
+  25 Jun 2015; Michał Górny mgo...@gentoo.org
+  +xfce4-notes-plugin-1.8.1.ebuild:
+  Version bump with visual fixes.
 
 *xfce4-notes-plugin-1.8.0 (19 Apr 2015)
 



1.1  
xfce-extra/xfce4-notes-plugin/xfce4-notes-plugin-1.8.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-notes-plugin/xfce4-notes-plugin-1.8.1.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-notes-plugin/xfce4-notes-plugin-1.8.1.ebuild?rev=1.1content-type=text/plain

Index: xfce4-notes-plugin-1.8.1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/xfce-extra/xfce4-notes-plugin/xfce4-notes-plugin-1.8.1.ebuild,v
 1.1 2015/06/25 04:08:22 mgorny Exp $

EAPI=5
inherit versionator xfconf

DESCRIPTION=Xfce4 panel sticky notes plugin
HOMEPAGE=http://goodies.xfce.org/projects/panel-plugins/xfce4-notes-plugin;
SRC_URI=mirror://xfce/src/panel-plugins/${PN}/$(get_version_component_range 
1-2)/${P}.tar.bz2

LICENSE=GPL-2
SLOT=0
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux
IUSE=

RDEPEND==dev-libs/glib-2.24:2=
=x11-libs/gtk+-2.20:2=
=xfce-base/libxfce4ui-4.10:=
=xfce-base/libxfce4util-4.10:=
=xfce-base/xfce4-panel-4.10:=
=xfce-base/xfconf-4.10:=
dev-libs/libunique:1=
DEPEND=${RDEPEND}
virtual/pkgconfig
dev-util/intltool

pkg_setup() {
DOCS=( AUTHORS ChangeLog NEWS README )
}






[gentoo-commits] gentoo-x86 commit in dev-java/ant-eclipse-ecj: ChangeLog ant-eclipse-ecj-3.7.1.ebuild

2015-06-22 Thread Michal Gorny (mgorny)
mgorny  15/06/22 14:56:57

  Modified: ChangeLog
  Removed:  ant-eclipse-ecj-3.7.1.ebuild
  Log:
  Drop old version that requires removed package
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.52 dev-java/ant-eclipse-ecj/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/ant-eclipse-ecj/ChangeLog?rev=1.52view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/ant-eclipse-ecj/ChangeLog?rev=1.52content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/ant-eclipse-ecj/ChangeLog?r1=1.51r2=1.52

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-java/ant-eclipse-ecj/ChangeLog,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -r1.51 -r1.52
--- ChangeLog   17 May 2015 20:10:25 -  1.51
+++ ChangeLog   22 Jun 2015 14:56:57 -  1.52
@@ -1,6 +1,9 @@
 # ChangeLog for dev-java/ant-eclipse-ecj
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/ant-eclipse-ecj/ChangeLog,v 1.51 
2015/05/17 20:10:25 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/ant-eclipse-ecj/ChangeLog,v 1.52 
2015/06/22 14:56:57 mgorny Exp $
+
+  22 Jun 2015; Michał Górny mgo...@gentoo.org -ant-eclipse-ecj-3.7.1.ebuild:
+  Drop old version that requires removed package
 
   17 May 2015; Pacho Ramos pa...@gentoo.org ant-eclipse-ecj-3.7.2.ebuild:
   ppc64 stable wrt bug #503890






[gentoo-commits] gentoo-x86 commit in xfce-base/xfconf: xfconf-4.12.0-r1.ebuild ChangeLog xfconf-4.12.0.ebuild

2015-06-21 Thread Michal Gorny (mgorny)
mgorny  15/06/22 05:56:55

  Modified: ChangeLog
  Added:xfconf-4.12.0-r1.ebuild
  Removed:  xfconf-4.12.0.ebuild
  Log:
  Add proper perl dep, bug #552790. Fix gtk-doc install path.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.80 xfce-base/xfconf/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfconf/ChangeLog?rev=1.80view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfconf/ChangeLog?rev=1.80content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfconf/ChangeLog?r1=1.79r2=1.80

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/xfce-base/xfconf/ChangeLog,v
retrieving revision 1.79
retrieving revision 1.80
diff -u -r1.79 -r1.80
--- ChangeLog   1 May 2015 12:51:57 -   1.79
+++ ChangeLog   22 Jun 2015 05:56:55 -  1.80
@@ -1,6 +1,12 @@
 # ChangeLog for xfce-base/xfconf
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfconf/ChangeLog,v 1.79 
2015/05/01 12:51:57 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfconf/ChangeLog,v 1.80 
2015/06/22 05:56:55 mgorny Exp $
+
+*xfconf-4.12.0-r1 (22 Jun 2015)
+
+  22 Jun 2015; Michał Górny mgo...@gentoo.org +xfconf-4.12.0-r1.ebuild,
+  -xfconf-4.12.0.ebuild:
+  Add proper perl dep, bug #552790. Fix gtk-doc install path.
 
   01 May 2015; Andreas K. Huettel dilfri...@gentoo.org xfconf-4.10.0.ebuild,
   xfconf-4.12.0.ebuild:



1.1  xfce-base/xfconf/xfconf-4.12.0-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfconf/xfconf-4.12.0-r1.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfconf/xfconf-4.12.0-r1.ebuild?rev=1.1content-type=text/plain

Index: xfconf-4.12.0-r1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfconf/xfconf-4.12.0-r1.ebuild,v 
1.1 2015/06/22 05:56:55 mgorny Exp $

EAPI=5
inherit xfconf

DESCRIPTION=A simple client-server configuration storage and query system for 
the Xfce desktop environment
HOMEPAGE=http://www.xfce.org/projects/;
SRC_URI=mirror://xfce/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2

LICENSE=GPL-2
SLOT=0
KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux 
~x86-linux ~x64-solaris
IUSE=debug perl

RDEPEND==dev-libs/dbus-glib-0.98
=dev-libs/glib-2.30
=xfce-base/libxfce4util-4.10
perl? (
dev-lang/perl:=[-build(-)]
dev-perl/glib-perl
)
DEPEND=${RDEPEND}
dev-util/intltool
virtual/pkgconfig
sys-devel/gettext
perl? (
dev-perl/ExtUtils-Depends
dev-perl/extutils-pkgconfig
)

pkg_setup() {
XFCONF=(
$(use_enable perl perl-bindings)
$(xfconf_use_debug)
$(use_enable debug checks)
--with-perl-options=INSTALLDIRS=vendor
)

[[ ${CHOST} == *-darwin* ]]  XFCONF+=( --disable-visibility ) #366857

DOCS=( AUTHORS ChangeLog NEWS TODO )
}

src_prepare() {
# http://bugzilla.xfce.org/show_bug.cgi?id=9556
cat -EOF  po/POTFILES.skip
xfconf-perl/xs/Xfconf.c
xfconf-perl/xs/XfconfBinding.c
xfconf-perl/xs/XfconfChannel.c
EOF
xfconf_src_prepare
}

src_compile() {
emake OTHERLDFLAGS=${LDFLAGS}
}

src_install() {
xfconf_src_install

if use perl; then
find ${ED} -type f -name perllocal.pod -exec rm -f {} +
find ${ED} -depth -mindepth 1 -type d -empty -exec rm -rf {} +
fi
}






  1   2   3   4   5   6   7   8   9   10   >