[gentoo-commits] proj/portage:plugin-sync commit in: pym/portage/sync/

2014-10-20 Thread Zac Medico
commit: c41be414d849554b4fc985e2537eb82208e308d2
Author: Brian Dolbec dolsen AT gentoo DOT org
AuthorDate: Sun Sep  7 01:40:25 2014 +
Commit: Zac Medico zmedico AT gentoo DOT org
CommitDate: Mon Oct 20 03:48:35 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=c41be414

sync/controller.py: Use assert() on tasks, func

---
 pym/portage/sync/controller.py | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/pym/portage/sync/controller.py b/pym/portage/sync/controller.py
index a5c93dc..21b57f4 100644
--- a/pym/portage/sync/controller.py
+++ b/pym/portage/sync/controller.py
@@ -36,8 +36,9 @@ class TaskHandler(object):
 
def run_tasks(self, tasks, func, status=None, verbose=True, 
options=None):
Runs the module tasks
-   if tasks is None or func is None:
-   return
+   # Ensure we have a task and function
+   assert(tasks)
+   assert(func)
for task in tasks:
inst = task()
show_progress = self.show_progress_bar and self.isatty



[gentoo-commits] proj/portage:plugin-sync commit in: pym/portage/emaint/modules/sync/

2014-10-20 Thread Zac Medico
commit: 5f8d42361964d3e9654a33941f6056f2c75a69ec
Author: Brian Dolbec dolsen AT gentoo DOT org
AuthorDate: Sun May 11 16:46:09 2014 +
Commit: Zac Medico zmedico AT gentoo DOT org
CommitDate: Mon Oct 20 03:48:34 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=5f8d4236

emaint/modules/sync/sync.py: Set portage _sync_mode immediately

This way it will not discard non-existent repos if thier directory does not 
exist.

---
 pym/portage/emaint/modules/sync/sync.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/pym/portage/emaint/modules/sync/sync.py 
b/pym/portage/emaint/modules/sync/sync.py
index 3aa318a..ab7591d 100644
--- a/pym/portage/emaint/modules/sync/sync.py
+++ b/pym/portage/emaint/modules/sync/sync.py
@@ -6,6 +6,8 @@ import os
 import sys
 
 import portage
+portage._internal_caller = True
+portage._sync_mode = True
 from portage.localization import _
 from portage.output import bold, create_color_func
 from portage.sync import get_syncer
@@ -169,7 +171,6 @@ class SyncRepos(object):
return [('None', os.EX_OK)]
# Portage needs to ensure a sane umask for the files it creates.
os.umask(0o22)
-   portage._sync_mode = True
 
sync_manager = 
get_syncer(self.emerge_config.target_config.settings, emergelog)
retvals = []



[gentoo-commits] proj/portage:plugin-sync commit in: pym/portage/sync/modules/svn/

2014-10-20 Thread Zac Medico
commit: 9132fdaedfcb8aac0cebdc4154120fbf45b04a42
Author: Brian Dolbec dolsen AT gentoo DOT org
AuthorDate: Mon Jun 16 17:58:09 2014 +
Commit: Zac Medico zmedico AT gentoo DOT org
CommitDate: Mon Oct 20 03:48:34 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=9132fdae

sync/modules/svn: Add snv upgrade to sync operation

This prevents errors when a newer svn has been installed that requires a db 
upgrade.

---
 pym/portage/sync/modules/svn/svn.py | 23 +++
 1 file changed, 23 insertions(+)

diff --git a/pym/portage/sync/modules/svn/svn.py 
b/pym/portage/sync/modules/svn/svn.py
index 182a7ac..0365e90 100644
--- a/pym/portage/sync/modules/svn/svn.py
+++ b/pym/portage/sync/modules/svn/svn.py
@@ -62,6 +62,10 @@ class SVNSync(SyncBase):
@rtype: (int, bool)

 
+   exitcode, d = self._svn_upgrade()
+   if exitcode != os.EX_OK:
+   return (exitcode, False)
+
svn_root = self.repo.sync_uri
 
if svn_root.startswith(svn://):
@@ -79,3 +83,22 @@ class SVNSync(SyncBase):
self.logger(self.xterm_titles, msg)
writemsg_level(msg + \n, noiselevel=-1, 
level=logging.ERROR)
return (exitcode, False)
+
+
+   def _svn_upgrade(self):
+   
+   Internal function which performs an svn upgrade on the repo
+
+   @return: tuple of return code (0=success), whether the cache
+   needs to be updated
+   @rtype: (int, bool)
+   
+   exitcode = portage.process.spawn_bash(
+   cd %s; exec svn upgrade %
+   (portage._shell_quote(self.repo.location),),
+   **portage._native_kwargs(self.spawn_kwargs))
+   if exitcode != os.EX_OK:
+   msg = !!! svn upgrade error; exiting.
+   self.logger(self.xterm_titles, msg)
+   writemsg_level(msg + \n, noiselevel=-1, 
level=logging.ERROR)
+   return (exitcode, False)



[gentoo-commits] dev/sera:master commit in: dev-libs/efl/

2014-10-20 Thread Ralph Sennhauser
commit: 6abd4b9c39e0f50424aa77eae74dce8da52dc75c
Author: Ralph Sennhauser sera AT gentoo DOT org
AuthorDate: Mon Oct 20 06:42:34 2014 +
Commit: Ralph Sennhauser sera AT gentoo DOT org
CommitDate: Mon Oct 20 06:42:34 2014 +
URL:http://sources.gentoo.org/gitweb/?p=dev/sera.git;a=commit;h=6abd4b9c

efl: sdl is sdl2

Package-Manager: portage-2.2.14_rc1
Manifest-Sign-Key: 3C5CF75A

---
 dev-libs/efl/Manifest  | 14 ++
 dev-libs/efl/efl-1.11.3.ebuild |  2 +-
 dev-libs/efl/metadata.xml  |  1 +
 3 files changed, 16 insertions(+), 1 deletion(-)

diff --git a/dev-libs/efl/Manifest b/dev-libs/efl/Manifest
index fb21e5a..bbd6730 100644
--- a/dev-libs/efl/Manifest
+++ b/dev-libs/efl/Manifest
@@ -1 +1,15 @@
+-BEGIN PGP SIGNED MESSAGE-
+Hash: SHA256
+
 DIST efl-1.11.3.tar.bz2 40946585 SHA256 
ead3f7edf4b9dff5f7b35c673e3a98e48a8bfae7569dc65a16a24de8c94f7ce3 SHA512 
2c8df415dc5803a3106ea944b767acd0548134b5d1c416bab9f3ee4a883781441df243222eb205894c0b13310e39de4b0fa26d91d284e34d7b1f5a9da2a1e27a
 WHIRLPOOL 
b945e92b5a66b2dc3f851a588ca856cc1907c7f2d6b6d151c9f4cc0fb0beb79870552fc0a9d7618001e378f4cc4998b4a290e3d1bae58940b0aed9cd238e9c28
+-BEGIN PGP SIGNATURE-
+Version: GnuPG v2
+
+iQEcBAEBCAAGBQJURK6FAAoJELjwI6Q8XPdaHrQH+wczuozbzJ4LkmUlDqw+0NoX
+eo1hFPOgzNicqVQsTR8AYMdSwrYRVZlm1v1z663FigpbIDV0dDINcgsOLYUYo2F0
+B0KiAP9dz3SPvsH/2dpY3kq5GjyaA0dyB90tQstCbUuZn1vlUhIwSKj0LLCe6KCA
+MT8VM1rP1L+2ukOvoPrLCo5OblCbvW+aIW3+RCjS++ZHU6oqVSvm9biFPbPNsncw
+AWSStLcHK1gEEW5OD0QCURWaJyaBAGkyFF86pvij7bki4TbVf59Q1EnJr3Wu41KC
+uZnBSInt3EvUysq+h8GEk3wnQMKUc0DBU2jdRddU8FNhkiPHPzhfy5c/zsS9CKY=
+=wQju
+-END PGP SIGNATURE-

diff --git a/dev-libs/efl/efl-1.11.3.ebuild b/dev-libs/efl/efl-1.11.3.ebuild
index c1a8ab6..9b279d4 100644
--- a/dev-libs/efl/efl-1.11.3.ebuild
+++ b/dev-libs/efl/efl-1.11.3.ebuild
@@ -68,7 +68,7 @@ COMMON_DEP=
)
scim?   ( app-i18n/scim )
sdl? (
-   =media-libs/libsdl-2.0.0:0[opengl?,gles?]
+   =media-libs/libsdl2-2.0.0:0[opengl?,gles?]
)
systemd? ( sys-apps/systemd )
tiff? ( media-libs/tiff:0 )

diff --git a/dev-libs/efl/metadata.xml b/dev-libs/efl/metadata.xml
index e1d6a8f..f6c6e8d 100644
--- a/dev-libs/efl/metadata.xml
+++ b/dev-libs/efl/metadata.xml
@@ -6,6 +6,7 @@
 nameRalph Sennhauser/name
   /maintainer
   use
+flag name=cxx-bindings/flag
 flag name=drm/flag
 flag name=egl/flag
 flag name=fribidi/flag



[gentoo-commits] gentoo-x86 commit in games-strategy/lgeneral: ChangeLog lgeneral-1.2.3.ebuild

2014-10-20 Thread Alfredo Tupone (tupone)
tupone  14/10/20 07:00:23

  Modified: ChangeLog lgeneral-1.2.3.ebuild
  Log:
  Fix compile with format-security. Bug #520568
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key 
0145142D)

Revision  ChangesPath
1.45 games-strategy/lgeneral/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/lgeneral/ChangeLog?rev=1.45view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/lgeneral/ChangeLog?rev=1.45content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/lgeneral/ChangeLog?r1=1.44r2=1.45

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/games-strategy/lgeneral/ChangeLog,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -r1.44 -r1.45
--- ChangeLog   15 May 2014 17:05:05 -  1.44
+++ ChangeLog   20 Oct 2014 07:00:23 -  1.45
@@ -1,6 +1,10 @@
 # ChangeLog for games-strategy/lgeneral
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-strategy/lgeneral/ChangeLog,v 1.44 
2014/05/15 17:05:05 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/lgeneral/ChangeLog,v 1.45 
2014/10/20 07:00:23 tupone Exp $
+
+  20 Oct 2014; Alfredo Tupone tup...@gentoo.org lgeneral-1.2.3.ebuild,
+  +files/lgeneral-1.2.3-format.patch:
+  Fix compile with format-security. Bug #520568 by Agostino Sarubbo
 
   15 May 2014; Ulrich Müller u...@gentoo.org lgeneral-1.2.3.ebuild:
   Fix USE dependency on media-libs/libsdl, audio USE flag was renamed to



1.6  games-strategy/lgeneral/lgeneral-1.2.3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/lgeneral/lgeneral-1.2.3.ebuild?rev=1.6view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/lgeneral/lgeneral-1.2.3.ebuild?rev=1.6content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/lgeneral/lgeneral-1.2.3.ebuild?r1=1.5r2=1.6

Index: lgeneral-1.2.3.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/games-strategy/lgeneral/lgeneral-1.2.3.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- lgeneral-1.2.3.ebuild   15 May 2014 17:05:05 -  1.5
+++ lgeneral-1.2.3.ebuild   20 Oct 2014 07:00:23 -  1.6
@@ -1,8 +1,8 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/games-strategy/lgeneral/lgeneral-1.2.3.ebuild,v 1.5 
2014/05/15 17:05:05 ulm Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/games-strategy/lgeneral/lgeneral-1.2.3.ebuild,v 1.6 
2014/10/20 07:00:23 tupone Exp $
 
-EAPI=2
+EAPI=5
 inherit eutils autotools games
 
 MY_P=${P/_/}
@@ -26,6 +26,7 @@
 S=${WORKDIR}/${MY_P}
 
 src_prepare() {
+   epatch ${FILESDIR}/${P}-format.patch
sed -i \
-e '/desktop_DATA/d' \
-e '/icon_DATA/d' \
@@ -53,29 +54,25 @@
 
 src_configure() {
egamesconf \
-   --disable-dependency-tracking \
-   $(use_enable nls) \
-   || die
+   $(use_enable nls)
 
# Build the temporary lgc-pg:
cd ${WORKDIR}/tmp-build
egamesconf \
-   --disable-dependency-tracking \
--disable-nls \
-   --datadir=${D}/${GAMES_DATADIR} \
-   || die
+   --datadir=${D}/${GAMES_DATADIR}
 }
 
 src_compile() {
-   emake || die emake failed
+   emake
 
# Build the temporary lgc-pg:
cd ${WORKDIR}/tmp-build
-   emake || die emake failed (tmp)
+   emake
 }
 
 src_install() {
-   emake DESTDIR=${D} install || die emake install failed
+   default
keepdir ${GAMES_DATADIR}/${PN}/{ai_modules,music,terrain}
 
# Generate scenario data:
@@ -85,7 +82,6 @@
-d ${D}/${GAMES_DATADIR}/${PN} \
|| die Failed to generate scenario data
 
-   dodoc AUTHORS ChangeLog README.lgeneral README.lgc-pg TODO
newicon lgeneral48.png ${PN}.png
make_desktop_entry ${PN} LGeneral
prepgamesdirs






[gentoo-commits] gentoo-x86 commit in games-strategy/lgeneral/files: lgeneral-1.2.3-format.patch

2014-10-20 Thread Alfredo Tupone (tupone)
tupone  14/10/20 07:00:23

  Added:lgeneral-1.2.3-format.patch
  Log:
  Fix compile with format-security. Bug #520568
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key 
0145142D)

Revision  ChangesPath
1.1  games-strategy/lgeneral/files/lgeneral-1.2.3-format.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/lgeneral/files/lgeneral-1.2.3-format.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/lgeneral/files/lgeneral-1.2.3-format.patch?rev=1.1content-type=text/plain

Index: lgeneral-1.2.3-format.patch
===
--- lgc-pg/units.c.old  2014-10-20 08:42:12.389153753 +0200
+++ lgc-pg/units.c  2014-10-20 08:42:41.412883009 +0200
@@ -552,7 +552,7 @@
 }
 }
 /* get flags */
-sprintf( flags, unit_classes[entry.class * 3 + 2] );
+sprintf( flags, %s, unit_classes[entry.class * 3 + 2] );
 if ( apply_unit_mods ) {
 i = 0;
 while ( add_flags[i*2][0] != 'X' ) {
--- src/engine.c.old2014-10-20 08:44:21.867947804 +0200
+++ src/engine.c2014-10-20 08:45:19.299413602 +0200
@@ -2311,7 +2311,7 @@
 if ( gui-module_dlg-subdir[0] != 0 )
 sprintf( path, %s/%s, gui-module_dlg-subdir, 
(char*)gui-module_dlg-lbox-cur_item );
 else
-sprintf( path, (char*)gui-module_dlg-lbox-cur_item );
+sprintf( path, %s, 
(char*)gui-module_dlg-lbox-cur_item );
 free( setup.modules[gui-setup-sel_id] );
 setup.modules[gui-setup-sel_id] = strdup( path );
 gui_handle_player_select( gui-setup-list-cur_item );
@@ -2756,7 +2756,7 @@
  result = gui_get_message_pane_selection(camp_pane);
  if (result  strcmp(result, nextscen) == 0) {
  /* start scenario */
- sprintf( setup.fname, camp_cur_scen-scen );
+ sprintf( setup.fname, %s, camp_cur_scen-scen );
  setup.type = SETUP_DEFAULT_SCEN;
  end_scen = 1;
  *reinit = 1;
@@ -4243,7 +4243,7 @@
 }
 else {
 /* next scenario */
-sprintf( setup.fname, camp_cur_scen-scen );
+sprintf( setup.fname, %s, camp_cur_scen-scen );
 setup.type = SETUP_CAMP_BRIEFING;
 reinit = 1;
 }






[gentoo-commits] gentoo-x86 commit in sys-firmware/ipxe: ipxe-1.0.0_p20130925.ebuild ChangeLog

2014-10-20 Thread Agostino Sarubbo (ago)
ago 14/10/20 07:02:24

  Modified: ipxe-1.0.0_p20130925.ebuild ChangeLog
  Log:
  Stable for x86, wrt bug #523788
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, RepoMan options: 
--include-arches=x86, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.3  sys-firmware/ipxe/ipxe-1.0.0_p20130925.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-firmware/ipxe/ipxe-1.0.0_p20130925.ebuild?rev=1.3view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-firmware/ipxe/ipxe-1.0.0_p20130925.ebuild?rev=1.3content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-firmware/ipxe/ipxe-1.0.0_p20130925.ebuild?r1=1.2r2=1.3

Index: ipxe-1.0.0_p20130925.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/sys-firmware/ipxe/ipxe-1.0.0_p20130925.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ipxe-1.0.0_p20130925.ebuild 12 Oct 2014 09:04:21 -  1.2
+++ ipxe-1.0.0_p20130925.ebuild 20 Oct 2014 07:02:24 -  1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/sys-firmware/ipxe/ipxe-1.0.0_p20130925.ebuild,v 1.2 
2014/10/12 09:04:21 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/sys-firmware/ipxe/ipxe-1.0.0_p20130925.ebuild,v 1.3 
2014/10/20 07:02:24 ago Exp $
 
 EAPI=5
 
@@ -15,7 +15,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=amd64 ~x86
+KEYWORDS=amd64 x86
 IUSE=iso +qemu undi usb vmware
 
 DEPEND=sys-devel/make



1.17 sys-firmware/ipxe/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-firmware/ipxe/ChangeLog?rev=1.17view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-firmware/ipxe/ChangeLog?rev=1.17content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-firmware/ipxe/ChangeLog?r1=1.16r2=1.17

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-firmware/ipxe/ChangeLog,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- ChangeLog   12 Oct 2014 09:04:21 -  1.16
+++ ChangeLog   20 Oct 2014 07:02:24 -  1.17
@@ -1,6 +1,9 @@
 # ChangeLog for sys-firmware/ipxe
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-firmware/ipxe/ChangeLog,v 1.16 
2014/10/12 09:04:21 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-firmware/ipxe/ChangeLog,v 1.17 
2014/10/20 07:02:24 ago Exp $
+
+  20 Oct 2014; Agostino Sarubbo a...@gentoo.org ipxe-1.0.0_p20130925.ebuild:
+  Stable for x86, wrt bug #523788
 
   12 Oct 2014; Agostino Sarubbo a...@gentoo.org ipxe-1.0.0_p20130925.ebuild:
   Stable for amd64, wrt bug #523788






[gentoo-commits] gentoo-x86 commit in x11-misc/imake: imake-1.0.7.ebuild ChangeLog

2014-10-20 Thread Agostino Sarubbo (ago)
ago 14/10/20 07:03:01

  Modified: imake-1.0.7.ebuild ChangeLog
  Log:
  Stable for sparc, wrt bug #499166
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, RepoMan options: 
--include-arches=sparc, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.8  x11-misc/imake/imake-1.0.7.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/imake/imake-1.0.7.ebuild?rev=1.8view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/imake/imake-1.0.7.ebuild?rev=1.8content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/imake/imake-1.0.7.ebuild?r1=1.7r2=1.8

Index: imake-1.0.7.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/x11-misc/imake/imake-1.0.7.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- imake-1.0.7.ebuild  11 Oct 2014 09:21:17 -  1.7
+++ imake-1.0.7.ebuild  20 Oct 2014 07:03:01 -  1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/imake/imake-1.0.7.ebuild,v 1.7 
2014/10/11 09:21:17 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/imake/imake-1.0.7.ebuild,v 1.8 
2014/10/20 07:03:01 ago Exp $
 
 EAPI=5
 
@@ -8,7 +8,7 @@
 inherit xorg-2
 
 DESCRIPTION=C preprocessor interface to the make utility
-KEYWORDS=alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris
 IUSE=
 
 RDEPEND=x11-misc/xorg-cf-files



1.76 x11-misc/imake/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/imake/ChangeLog?rev=1.76view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/imake/ChangeLog?rev=1.76content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/imake/ChangeLog?r1=1.75r2=1.76

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-misc/imake/ChangeLog,v
retrieving revision 1.75
retrieving revision 1.76
diff -u -r1.75 -r1.76
--- ChangeLog   11 Oct 2014 09:21:17 -  1.75
+++ ChangeLog   20 Oct 2014 07:03:01 -  1.76
@@ -1,6 +1,9 @@
 # ChangeLog for x11-misc/imake
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/imake/ChangeLog,v 1.75 2014/10/11 
09:21:17 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/imake/ChangeLog,v 1.76 2014/10/20 
07:03:01 ago Exp $
+
+  20 Oct 2014; Agostino Sarubbo a...@gentoo.org imake-1.0.7.ebuild:
+  Stable for sparc, wrt bug #499166
 
   11 Oct 2014; Tobias Klausmann klaus...@gentoo.org imake-1.0.7.ebuild:
   Stable on alpha, bug 499166






[gentoo-commits] gentoo-x86 commit in x11-misc/imake: imake-1.0.7.ebuild ChangeLog

2014-10-20 Thread Agostino Sarubbo (ago)
ago 14/10/20 07:03:25

  Modified: imake-1.0.7.ebuild ChangeLog
  Log:
  Stable for ia64, wrt bug #499166
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, RepoMan options: 
--include-arches=ia64, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.9  x11-misc/imake/imake-1.0.7.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/imake/imake-1.0.7.ebuild?rev=1.9view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/imake/imake-1.0.7.ebuild?rev=1.9content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/imake/imake-1.0.7.ebuild?r1=1.8r2=1.9

Index: imake-1.0.7.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/x11-misc/imake/imake-1.0.7.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- imake-1.0.7.ebuild  20 Oct 2014 07:03:01 -  1.8
+++ imake-1.0.7.ebuild  20 Oct 2014 07:03:25 -  1.9
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/imake/imake-1.0.7.ebuild,v 1.8 
2014/10/20 07:03:01 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/imake/imake-1.0.7.ebuild,v 1.9 
2014/10/20 07:03:25 ago Exp $
 
 EAPI=5
 
@@ -8,7 +8,7 @@
 inherit xorg-2
 
 DESCRIPTION=C preprocessor interface to the make utility
-KEYWORDS=alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris
 IUSE=
 
 RDEPEND=x11-misc/xorg-cf-files



1.77 x11-misc/imake/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/imake/ChangeLog?rev=1.77view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/imake/ChangeLog?rev=1.77content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/imake/ChangeLog?r1=1.76r2=1.77

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-misc/imake/ChangeLog,v
retrieving revision 1.76
retrieving revision 1.77
diff -u -r1.76 -r1.77
--- ChangeLog   20 Oct 2014 07:03:01 -  1.76
+++ ChangeLog   20 Oct 2014 07:03:25 -  1.77
@@ -1,6 +1,9 @@
 # ChangeLog for x11-misc/imake
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/imake/ChangeLog,v 1.76 2014/10/20 
07:03:01 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/imake/ChangeLog,v 1.77 2014/10/20 
07:03:25 ago Exp $
+
+  20 Oct 2014; Agostino Sarubbo a...@gentoo.org imake-1.0.7.ebuild:
+  Stable for ia64, wrt bug #499166
 
   20 Oct 2014; Agostino Sarubbo a...@gentoo.org imake-1.0.7.ebuild:
   Stable for sparc, wrt bug #499166






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

2014-10-20 Thread Michal Gorny (mgorny)
mgorny  14/10/20 07:08:16

  Modified: llvm-3.5.0.ebuild llvm-.ebuild ChangeLog
  Log:
  Fix old dev-python/configparser blocker. Bug #525916.
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with 
key EFB4464E!)

Revision  ChangesPath
1.4  sys-devel/llvm/llvm-3.5.0.ebuild

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

Index: llvm-3.5.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-devel/llvm/llvm-3.5.0.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- llvm-3.5.0.ebuild   29 Sep 2014 16:03:23 -  1.3
+++ llvm-3.5.0.ebuild   20 Oct 2014 07:08:16 -  1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/llvm/llvm-3.5.0.ebuild,v 1.3 
2014/09/29 16:03:23 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/llvm/llvm-3.5.0.ebuild,v 1.4 
2014/10/20 07:08:16 mgorny Exp $
 
 EAPI=5
 
@@ -53,7 +53,7 @@
clang? ( xml? ( virtual/pkgconfig ) )
doc? ( dev-python/sphinx )
libffi? ( virtual/pkgconfig )
-   !dev-python/configparser-3.3.0.2
+   !!dev-python/configparser-3.3.0.2
${PYTHON_DEPS}
 RDEPEND=${COMMON_DEPEND}
clang? ( !=sys-devel/clang-${PV}-r99



1.92 sys-devel/llvm/llvm-.ebuild

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

Index: llvm-.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-devel/llvm/llvm-.ebuild,v
retrieving revision 1.91
retrieving revision 1.92
diff -u -r1.91 -r1.92
--- llvm-.ebuild29 Sep 2014 16:03:23 -  1.91
+++ llvm-.ebuild20 Oct 2014 07:08:16 -  1.92
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 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.91 
2014/09/29 16:03:23 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/llvm/llvm-.ebuild,v 1.92 
2014/10/20 07:08:16 mgorny Exp $
 
 EAPI=5
 
@@ -50,7 +50,7 @@
|| ( =sys-devel/binutils-2.18 =sys-devel/binutils-apple-3.2.3 )
clang? ( xml? ( virtual/pkgconfig ) )
libffi? ( virtual/pkgconfig )
-   !dev-python/configparser-3.3.0.2
+   !!dev-python/configparser-3.3.0.2
${PYTHON_DEPS}
 RDEPEND=${COMMON_DEPEND}
clang? ( !=sys-devel/clang-${PV}-r99 )



1.209sys-devel/llvm/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-devel/llvm/ChangeLog,v
retrieving revision 1.208
retrieving revision 1.209
diff -u -r1.208 -r1.209
--- ChangeLog   29 Sep 2014 16:03:23 -  1.208
+++ ChangeLog   20 Oct 2014 07:08:16 -  1.209
@@ -1,6 +1,10 @@
 # ChangeLog for sys-devel/llvm
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/llvm/ChangeLog,v 1.208 2014/09/29 
16:03:23 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/llvm/ChangeLog,v 1.209 2014/10/20 
07:08:16 mgorny Exp $
+
+  20 Oct 2014; Michał Górny mgo...@gentoo.org llvm-3.5.0.ebuild,
+  llvm-.ebuild:
+  Fix old dev-python/configparser blocker. Bug #525916.
 
   29 Sep 2014; Michał Górny mgo...@gentoo.org llvm-3.5.0.ebuild,
   llvm-.ebuild:






[gentoo-commits] gentoo-x86 commit in media-sound/mpd: ChangeLog mpd-0.18.16.ebuild

2014-10-20 Thread Jeroen Roovers (jer)
jer 14/10/20 07:13:57

  Modified: ChangeLog mpd-0.18.16.ebuild
  Log:
  Stable for HPPA (bug #525736).
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, RepoMan options: 
--ignore-arches, signed Manifest commit with key A792A613)

Revision  ChangesPath
1.358media-sound/mpd/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/mpd/ChangeLog?rev=1.358view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/mpd/ChangeLog?rev=1.358content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/mpd/ChangeLog?r1=1.357r2=1.358

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-sound/mpd/ChangeLog,v
retrieving revision 1.357
retrieving revision 1.358
diff -u -r1.357 -r1.358
--- ChangeLog   19 Oct 2014 08:56:15 -  1.357
+++ ChangeLog   20 Oct 2014 07:13:57 -  1.358
@@ -1,6 +1,9 @@
 # ChangeLog for media-sound/mpd
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/mpd/ChangeLog,v 1.357 
2014/10/19 08:56:15 angelos Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/mpd/ChangeLog,v 1.358 
2014/10/20 07:13:57 jer Exp $
+
+  20 Oct 2014; Jeroen Roovers j...@gentoo.org mpd-0.18.16.ebuild:
+  Stable for HPPA (bug #525736).
 
 *mpd-0.19.1 (19 Oct 2014)
 



1.2  media-sound/mpd/mpd-0.18.16.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/mpd/mpd-0.18.16.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/mpd/mpd-0.18.16.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/mpd/mpd-0.18.16.ebuild?r1=1.1r2=1.2

Index: mpd-0.18.16.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-sound/mpd/mpd-0.18.16.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- mpd-0.18.16.ebuild  26 Sep 2014 17:12:42 -  1.1
+++ mpd-0.18.16.ebuild  20 Oct 2014 07:13:57 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/mpd/mpd-0.18.16.ebuild,v 1.1 
2014/09/26 17:12:42 angelos Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/mpd/mpd-0.18.16.ebuild,v 1.2 
2014/10/20 07:13:57 jer Exp $
 
 EAPI=5
 inherit eutils flag-o-matic linux-info multilib readme.gentoo systemd user
@@ -11,7 +11,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=~amd64 ~arm ~hppa ~ppc ~sh ~x86 ~x86-fbsd ~x64-macos
+KEYWORDS=~amd64 ~arm hppa ~ppc ~sh ~x86 ~x86-fbsd ~x64-macos
 IUSE=adplug +alsa ao audiofile bzip2 cdio +curl debug faad +fifo +ffmpeg flac
fluidsynth gme +id3tag inotify ipv6 jack lame mms libmpdclient
libsamplerate +mad mikmod modplug mpg123 musepack +network ogg openal 
opus






[gentoo-commits] proj/sci:master commit in: sci-chemistry/pymol/files/, sci-chemistry/pymol/

2014-10-20 Thread Justin Lecher
commit: 0ea640fba1bbdfa7a73a48ee8dcbe81185f21193
Author: Justin Lecher jlec AT gentoo DOT org
AuthorDate: Mon Oct 20 07:19:12 2014 +
Commit: Justin Lecher jlec AT gentoo DOT org
CommitDate: Mon Oct 20 07:19:12 2014 +
URL:http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=0ea640fb

sci-chemistry/pymol: Fix upstream buildsystem

Package-Manager: portage-2.2.14_rc1

---
 sci-chemistry/pymol/ChangeLog  |  4 
 sci-chemistry/pymol/files/pymol--options.patch | 15 +++
 sci-chemistry/pymol/pymol-.ebuild  |  4 
 3 files changed, 23 insertions(+)

diff --git a/sci-chemistry/pymol/ChangeLog b/sci-chemistry/pymol/ChangeLog
index bb3c5db..2cce805 100644
--- a/sci-chemistry/pymol/ChangeLog
+++ b/sci-chemistry/pymol/ChangeLog
@@ -2,6 +2,10 @@
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  20 Oct 2014; Justin Lecher j...@gentoo.org pymol-.ebuild,
+  +files/pymol--options.patch:
+  Fix upstream buildsystem
+
   17 Oct 2014; Justin Lecher j...@gentoo.org pymol-.ebuild:
   Import tree changes
 

diff --git a/sci-chemistry/pymol/files/pymol--options.patch 
b/sci-chemistry/pymol/files/pymol--options.patch
new file mode 100644
index 000..ce05e17
--- /dev/null
+++ b/sci-chemistry/pymol/files/pymol--options.patch
@@ -0,0 +1,15 @@
+ pymol/setup.py | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/pymol/setup.py b/pymol/setup.py
+index c446d6c..b7b353b 100644
+--- a/pymol/setup.py
 b/pymol/setup.py
+@@ -51,6 +51,7 @@ def CCompiler_compile(self, sources, output_dir=None, 
macros=None,
+ class options:
+ osx_frameworks = False
+ jobs = int(os.getenv('JOBS', 0))
++no_libxml = False
+ 
+ try:
+ import argparse

diff --git a/sci-chemistry/pymol/pymol-.ebuild 
b/sci-chemistry/pymol/pymol-.ebuild
index b45111e..a811e69 100644
--- a/sci-chemistry/pymol/pymol-.ebuild
+++ b/sci-chemistry/pymol/pymol-.ebuild
@@ -37,6 +37,10 @@ DEPEND=
web? ( !dev-python/webpy[${PYTHON_USEDEP}] )
 RDEPEND=${DEPEND}
 
+PATCHES=(
+   ${FILESDIR}/${P}-options.patch
+)
+
 src_unpack() {
unpack ${A}
subversion_src_unpack



[gentoo-commits] gentoo-x86 commit in app-doc/php-docs: ChangeLog php-docs-20101029.ebuild php-docs-20100730.ebuild php-docs-20071125-r2.ebuild

2014-10-20 Thread Ole Markus With (olemarkus)
olemarkus14/10/20 07:32:12

  Modified: ChangeLog
  Removed:  php-docs-20101029.ebuild php-docs-20100730.ebuild
php-docs-20071125-r2.ebuild
  Log:
  Remove older versions
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
C4A92BF5)

Revision  ChangesPath
1.59 app-doc/php-docs/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-doc/php-docs/ChangeLog?rev=1.59view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-doc/php-docs/ChangeLog?rev=1.59content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-doc/php-docs/ChangeLog?r1=1.58r2=1.59

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-doc/php-docs/ChangeLog,v
retrieving revision 1.58
retrieving revision 1.59
diff -u -r1.58 -r1.59
--- ChangeLog   29 May 2012 16:55:57 -  1.58
+++ ChangeLog   20 Oct 2014 07:32:12 -  1.59
@@ -1,6 +1,11 @@
 # ChangeLog for app-doc/php-docs
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-doc/php-docs/ChangeLog,v 1.58 
2012/05/29 16:55:57 aballier Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-doc/php-docs/ChangeLog,v 1.59 
2014/10/20 07:32:12 olemarkus Exp $
+
+  20 Oct 2014; Ole Markus With olemar...@gentoo.org
+  -php-docs-20071125-r2.ebuild, -php-docs-20100730.ebuild,
+  -php-docs-20101029.ebuild:
+  Remove older versions
 
   29 May 2012; Alexis Ballier aball...@gentoo.org
   php-docs-20101029-r1.ebuild:






[gentoo-commits] gentoo-x86 commit in sys-fs/aufs3: ChangeLog aufs3-3_p20141020.ebuild

2014-10-20 Thread Justin Lecher (jlec)
jlec14/10/20 07:44:19

  Modified: ChangeLog
  Added:aufs3-3_p20141020.ebuild
  Log:
  sys-fs/aufs3: Bump to latest aufs3
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with 
key B9D4F231BD1558AB!)

Revision  ChangesPath
1.110sys-fs/aufs3/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/aufs3/ChangeLog?rev=1.110view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/aufs3/ChangeLog?rev=1.110content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/aufs3/ChangeLog?r1=1.109r2=1.110

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-fs/aufs3/ChangeLog,v
retrieving revision 1.109
retrieving revision 1.110
diff -u -r1.109 -r1.110
--- ChangeLog   14 Oct 2014 07:10:53 -  1.109
+++ ChangeLog   20 Oct 2014 07:44:19 -  1.110
@@ -1,6 +1,11 @@
 # ChangeLog for sys-fs/aufs3
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/aufs3/ChangeLog,v 1.109 2014/10/14 
07:10:53 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/aufs3/ChangeLog,v 1.110 2014/10/20 
07:44:19 jlec Exp $
+
+*aufs3-3_p20141020 (20 Oct 2014)
+
+  20 Oct 2014; Justin Lecher j...@gentoo.org +aufs3-3_p20141020.ebuild:
+  Bump to latest aufs3
 
   14 Oct 2014; Justin Lecher j...@gentoo.org aufs3-3_p20141013.ebuild:
   Correct patches, #525340



1.1  sys-fs/aufs3/aufs3-3_p20141020.ebuild

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

Index: aufs3-3_p20141020.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-fs/aufs3/aufs3-3_p20141020.ebuild,v 1.1 
2014/10/20 07:44:19 jlec Exp $

EAPI=5

inherit eutils flag-o-matic linux-info linux-mod multilib readme.gentoo 
toolchain-funcs

AUFS_VERSION=${PV%%_p*}
# highest branch version
PATCH_MAX_VER=17
# highest supported version
KERN_MAX_VER=18
# lowest supported version
KERN_MIN_VER=10

DESCRIPTION=An entirely re-designed and re-implemented Unionfs
HOMEPAGE=http://aufs.sourceforge.net/;
SRC_URI=http://dev.gentoo.org/~jlec/distfiles/aufs3-standalone-${PV}.tar.xz;

LICENSE=GPL-2
SLOT=0
KEYWORDS=~amd64 ~x86
IUSE=debug doc fuse hfs inotify kernel-patch nfs pax_kernel ramfs

DEPEND=
dev-util/patchutils
dev-vcs/git
RDEPEND=
sys-fs/aufs-util
!sys-fs/aufs
!sys-fs/aufs2

S=${WORKDIR}/${PN}-standalone

MODULE_NAMES=aufs(misc:${S})

README_GENTOO_SUFFIX=-r1

pkg_setup() {
CONFIG_CHECK+= !AUFS_FS
use inotify  CONFIG_CHECK+= ~FSNOTIFY
use nfs  CONFIG_CHECK+= EXPORTFS
use fuse  CONFIG_CHECK+= ~FUSE_FS
use hfs  CONFIG_CHECK+= ~HFSPLUS_FS
use pax_kernel  CONFIG_CHECK+= PAX  ERROR_PAX=Please use 
hardened sources

# this is needed so merging a binpkg ${PN} is possible w/out a kernel 
unpacked on the system
[ -n $PKG_SETUP_HAS_BEEN_RAN ]  return

get_version
kernel_is lt 3 ${KERN_MIN_VER} 0  die the kernel version isn't 
supported by upstream anymore. Please upgrade.
kernel_is gt 3 ${KERN_MAX_VER} 99  die kernel too new

linux-mod_pkg_setup

if [[ ${KV_MINOR} -gt ${PATCH_MAX_VER} ]]; then
PATCH_BRANCH=x-rcN
elif [[ ${KV_MINOR} == 10 ]]  [[ ${KV_PATCH} -ge 28 ]]; then
PATCH_BRANCH=${KV_MINOR}.x
elif [[ ${KV_MINOR} == 12 ]]; then
PATCH_BRANCH=${KV_MINOR}.x
elif [[ ${KV_MINOR} == 14 ]]; then
PATCH_BRANCH=${KV_MINOR}.21+
else
PATCH_BRANCH=${KV_MINOR}
fi

case ${KV_EXTRA} in
)
elog It seems you are using vanilla-sources 
with aufs3
elog Please use sys-kernel/aufs-sources with 
USE=vanilla
elog This will save you the nasty reemerge of 
sys-fs/aufs3 on every kernel upgrade
;;
-gentoo)
elog It seems you are using gentoo-sources 
with aufs3
elog Please use sys-kernel/aufs-sources
elog This will save you the nasty reemerge of 
sys-fs/aufs3 on every kernel upgrade
;;
esac

pushd ${T}  /dev/null
unpack ${A}
cd ${PN}-standalone || die
local module_branch=origin/${PN}.${PATCH_BRANCH}
einfo Using ${module_branch} as patch source
git checkout -q -b 

[gentoo-commits] gentoo-x86 commit in media-libs/openctm/files: openctm-fix-makefiles.patch

2014-10-20 Thread Justin Lecher (jlec)
jlec14/10/20 08:02:33

  Modified: openctm-fix-makefiles.patch
  Log:
  media-libs/openctm: Fix for multilib-strict
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with 
key B9D4F231BD1558AB!)

Revision  ChangesPath
1.3  media-libs/openctm/files/openctm-fix-makefiles.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/openctm/files/openctm-fix-makefiles.patch?rev=1.3view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/openctm/files/openctm-fix-makefiles.patch?rev=1.3content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/openctm/files/openctm-fix-makefiles.patch?r1=1.2r2=1.3

Index: openctm-fix-makefiles.patch
===
RCS file: 
/var/cvsroot/gentoo-x86/media-libs/openctm/files/openctm-fix-makefiles.patch,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- openctm-fix-makefiles.patch 10 Aug 2014 12:28:12 -  1.2
+++ openctm-fix-makefiles.patch 20 Oct 2014 08:02:33 -  1.3
@@ -1,12 +1,46 @@
-diff -urN OpenCTM-1.0.3.old/doc/Makefile.linux OpenCTM-1.0.3/doc/Makefile.linux
 OpenCTM-1.0.3.old/doc/Makefile.linux   1970-01-01 01:00:00.0 
+0100
-+++ OpenCTM-1.0.3/doc/Makefile.linux   2014-08-10 13:56:45.821979758 +0200
-@@ -0,0 +1,2 @@
-+%:
-+  true
-diff -urN OpenCTM-1.0.3.old/lib/Makefile.linux OpenCTM-1.0.3/lib/Makefile.linux
 OpenCTM-1.0.3.old/lib/Makefile.linux   2014-08-10 13:55:34.090983462 
+0200
-+++ OpenCTM-1.0.3/lib/Makefile.linux   2014-08-10 13:59:03.312971874 +0200
+ Makefile.linux   | 18 ---
+ lib/Makefile.linux   | 23 ---
+ tools/Makefile.linux | 64 
+ 3 files changed, 50 insertions(+), 55 deletions(-)
+
+diff --git a/Makefile.linux b/Makefile.linux
+index 24ca137..51fc88c 100644
+--- a/Makefile.linux
 b/Makefile.linux
+@@ -47,19 +47,21 @@ documentation:
+ 
+ 
+ # Installation settings
+-LIBDIR  = /usr/lib/
+-INCDIR  = /usr/local/include/
+-BINDIR  = /usr/local/bin/
+-MAN1DIR = /usr/local/share/man/man1/
+-CP = cp
++LIBDIR  = $(DESTDIR)/usr/@GENTOO_LIBDIR@/$(DEB_HOST_MULTIARCH)
++INCDIR  = $(DESTDIR)/usr/include/
++BINDIR  = $(DESTDIR)/usr/bin/
++MAN1DIR = $(DESTDIR)/usr/share/man/man1/
++CP = cp -P
+ MKDIR = mkdir -p
+ 
+-install:
+-  $(CP) lib/libopenctm.so $(LIBDIR)
++$(LIBDIR) $(INCDIR) $(BINDIR) $(MAN1DIR):
++  mkdir -p $@
++
++install: $(LIBDIR) $(INCDIR) $(BINDIR) $(MAN1DIR)
++  $(CP) lib/libopenctm.so* $(LIBDIR)
+   $(CP) lib/openctm.h $(INCDIR)
+   $(CP) lib/openctmpp.h $(INCDIR)
+   $(CP) tools/ctmconv $(BINDIR)
+   $(CP) tools/ctmviewer $(BINDIR)
+-  $(MKDIR) $(MAN1DIR)
+   $(CP) doc/ctmconv.1 $(MAN1DIR)
+   $(CP) doc/ctmviewer.1 $(MAN1DIR)
+diff --git a/lib/Makefile.linux b/lib/Makefile.linux
+index 7643127..1e622ec 100644
+--- a/lib/Makefile.linux
 b/lib/Makefile.linux
 @@ -27,13 +27,18 @@
  
###
  
@@ -30,7 +64,7 @@
  
  OBJS = openctm.o \
 stream.o \
-@@ -64,16 +69,18 @@
+@@ -64,16 +69,18 @@ LZMA_SRCS = $(LZMADIR)/Alloc.c \
  all: $(DYNAMICLIB)
  
  clean:
@@ -53,42 +87,10 @@
  
  depend:
$(DEPEND) $(SRCS) $(LZMA_SRCS)  make.depend
-diff -urN OpenCTM-1.0.3.old/Makefile.linux OpenCTM-1.0.3/Makefile.linux
 OpenCTM-1.0.3.old/Makefile.linux   2014-08-10 13:55:34.096983462 +0200
-+++ OpenCTM-1.0.3/Makefile.linux   2014-08-10 13:56:45.821979758 +0200
-@@ -47,19 +47,21 @@
- 
- 
- # Installation settings
--LIBDIR  = /usr/lib/
--INCDIR  = /usr/local/include/
--BINDIR  = /usr/local/bin/
--MAN1DIR = /usr/local/share/man/man1/
--CP = cp
-+LIBDIR  = $(DESTDIR)/usr/lib/$(DEB_HOST_MULTIARCH)
-+INCDIR  = $(DESTDIR)/usr/include/
-+BINDIR  = $(DESTDIR)/usr/bin/
-+MAN1DIR = $(DESTDIR)/usr/share/man/man1/
-+CP = cp -P
- MKDIR = mkdir -p
- 
--install:
--  $(CP) lib/libopenctm.so $(LIBDIR)
-+$(LIBDIR) $(INCDIR) $(BINDIR) $(MAN1DIR):
-+  mkdir -p $@
-+
-+install: $(LIBDIR) $(INCDIR) $(BINDIR) $(MAN1DIR)
-+  $(CP) lib/libopenctm.so* $(LIBDIR)
-   $(CP) lib/openctm.h $(INCDIR)
-   $(CP) lib/openctmpp.h $(INCDIR)
-   $(CP) tools/ctmconv $(BINDIR)
-   $(CP) tools/ctmviewer $(BINDIR)
--  $(MKDIR) $(MAN1DIR)
-   $(CP) doc/ctmconv.1 $(MAN1DIR)
-   $(CP) doc/ctmviewer.1 $(MAN1DIR)
-diff -urN OpenCTM-1.0.3.old/tools/Makefile.linux 
OpenCTM-1.0.3/tools/Makefile.linux
 OpenCTM-1.0.3.old/tools/Makefile.linux 2014-08-10 13:55:34.094983462 
+0200
-+++ OpenCTM-1.0.3/tools/Makefile.linux 2014-08-10 14:00:52.484964897 +0200
+diff --git a/tools/Makefile.linux b/tools/Makefile.linux
+index fa3e6e5..46276d1 100644
+--- a/tools/Makefile.linux
 b/tools/Makefile.linux
 @@ -26,49 +26,50 @@
  
###
  
@@ 

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

2014-10-20 Thread Justin Lecher (jlec)
jlec14/10/20 08:02:33

  Modified: metadata.xml ChangeLog openctm-1.0.3.ebuild
  Log:
  media-libs/openctm: Fix for multilib-strict
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with 
key B9D4F231BD1558AB!)

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

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

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/openctm/metadata.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- metadata.xml13 Aug 2014 20:17:26 -  1.2
+++ metadata.xml20 Oct 2014 08:02:33 -  1.3
@@ -1,11 +1,11 @@
 ?xml version=1.0 encoding=UTF-8?
 !DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
 pkgmetadata
-herd3dprint/herd
-maintainer
-   emailamy...@gentoo.org/email
-/maintainer
-longdescription
+  herd3dprint/herd
+  maintainer
+emailamy...@gentoo.org/email
+  /maintainer
+  longdescription
OpenCTM - the Open Compressed Triangle Mesh file format - is a file 
format, a software library and a tool set for compression of 3D triangle meshes.
 /longdescription
 /pkgmetadata



1.7  media-libs/openctm/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/openctm/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ChangeLog   20 Aug 2014 10:58:35 -  1.6
+++ ChangeLog   20 Oct 2014 08:02:33 -  1.7
@@ -1,6 +1,10 @@
 # ChangeLog for media-libs/openctm
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/openctm/ChangeLog,v 1.6 
2014/08/20 10:58:35 amynka Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/openctm/ChangeLog,v 1.7 
2014/10/20 08:02:33 jlec Exp $
+
+  20 Oct 2014; Justin Lecher j...@gentoo.org openctm-1.0.3.ebuild,
+  files/openctm-fix-makefiles.patch, metadata.xml:
+  Fix for multilib-strict
 
   20 Aug 2014; Amy Winston amy...@gentoo.org +files/openctm-no-strip.patch,
   openctm-1.0.3.ebuild:



1.6  media-libs/openctm/openctm-1.0.3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/openctm/openctm-1.0.3.ebuild?rev=1.6view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/openctm/openctm-1.0.3.ebuild?rev=1.6content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/openctm/openctm-1.0.3.ebuild?r1=1.5r2=1.6

Index: openctm-1.0.3.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/openctm/openctm-1.0.3.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- openctm-1.0.3.ebuild20 Aug 2014 10:58:35 -  1.5
+++ openctm-1.0.3.ebuild20 Oct 2014 08:02:33 -  1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/openctm/openctm-1.0.3.ebuild,v 
1.5 2014/08/20 10:58:35 amynka Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/openctm/openctm-1.0.3.ebuild,v 
1.6 2014/10/20 08:02:33 jlec Exp $
 
 EAPI=5
 
@@ -27,9 +27,13 @@
 S=${WORKDIR}/${MY_PF}
 
 src_prepare() {
-   epatch ${FILESDIR}/openctm-fix-makefiles.patch \
+   epatch \
+   ${FILESDIR}/openctm-fix-makefiles.patch \
${FILESDIR}/openctm-no-strip.patch
-   mv Makefile.linux Makefile
+   mv Makefile.linux Makefile || die
+   sed \
+   -e s:@GENTOO_LIBDIR@:$(get_libdir):g \
+   -i Makefile || die
 }
 
 src_compile() {






[gentoo-commits] gentoo-x86 commit in sys-kernel/aufs-sources: aufs-sources-3.17.1-r1.ebuild ChangeLog aufs-sources-3.17.1.ebuild

2014-10-20 Thread Justin Lecher (jlec)
jlec14/10/20 08:28:43

  Modified: ChangeLog aufs-sources-3.17.1.ebuild
  Added:aufs-sources-3.17.1-r1.ebuild
  Log:
  sys-kernel/aufs-sources: Bump to latest aufs3, genpatches and linux release
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with 
key B9D4F231BD1558AB!)

Revision  ChangesPath
1.156sys-kernel/aufs-sources/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/aufs-sources/ChangeLog?rev=1.156view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/aufs-sources/ChangeLog?rev=1.156content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/aufs-sources/ChangeLog?r1=1.155r2=1.156

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-kernel/aufs-sources/ChangeLog,v
retrieving revision 1.155
retrieving revision 1.156
diff -u -r1.155 -r1.156
--- ChangeLog   16 Oct 2014 13:02:37 -  1.155
+++ ChangeLog   20 Oct 2014 08:28:43 -  1.156
@@ -1,6 +1,12 @@
 # ChangeLog for sys-kernel/aufs-sources
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-kernel/aufs-sources/ChangeLog,v 1.155 
2014/10/16 13:02:37 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-kernel/aufs-sources/ChangeLog,v 1.156 
2014/10/20 08:28:43 jlec Exp $
+
+*aufs-sources-3.17.1-r1 (20 Oct 2014)
+
+  20 Oct 2014; Justin Lecher j...@gentoo.org aufs-sources-3.17.1.ebuild,
+  +aufs-sources-3.17.1-r1.ebuild:
+  Bump to latest aufs3, genpatches and linux release
 
 *aufs-sources-3.17.1 (16 Oct 2014)
 *aufs-sources-3.16.6 (16 Oct 2014)



1.2  sys-kernel/aufs-sources/aufs-sources-3.17.1.ebuild

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

Index: aufs-sources-3.17.1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/sys-kernel/aufs-sources/aufs-sources-3.17.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- aufs-sources-3.17.1.ebuild  16 Oct 2014 13:02:37 -  1.1
+++ aufs-sources-3.17.1.ebuild  20 Oct 2014 08:28:43 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/sys-kernel/aufs-sources/aufs-sources-3.17.1.ebuild,v 
1.1 2014/10/16 13:02:37 jlec Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/sys-kernel/aufs-sources/aufs-sources-3.17.1.ebuild,v 
1.2 2014/10/20 08:28:43 jlec Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 detect_version
 detect_arch
 
-AUFS_VERSION=3.17_p20141013
+AUFS_VERSION=3.17_p20141020
 AUFS_TARBALL=aufs-sources-${AUFS_VERSION}.tar.xz
 # git archive -v --remote=git://git.code.sf.net/p/aufs/aufs3-standalone 
aufs${AUFS_VERSION/_p*}  aufs-sources-${AUFS_VERSION}.tar
 AUFS_URI=http://dev.gentoo.org/~jlec/distfiles/${AUFS_TARBALL};



1.1  sys-kernel/aufs-sources/aufs-sources-3.17.1-r1.ebuild

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

Index: aufs-sources-3.17.1-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/sys-kernel/aufs-sources/aufs-sources-3.17.1-r1.ebuild,v 
1.1 2014/10/20 08:28:43 jlec Exp $

EAPI=5

ETYPE=sources
K_WANT_GENPATCHES=base extras experimental
K_GENPATCHES_VER=3
K_DEBLOB_AVAILABLE=1
UNIPATCH_STRICTORDER=1
inherit kernel-2 eutils readme.gentoo
detect_version
detect_arch

AUFS_VERSION=3.17_p20141013
AUFS_TARBALL=aufs-sources-${AUFS_VERSION}.tar.xz
# git archive -v --remote=git://git.code.sf.net/p/aufs/aufs3-standalone 
aufs${AUFS_VERSION/_p*}  aufs-sources-${AUFS_VERSION}.tar
AUFS_URI=http://dev.gentoo.org/~jlec/distfiles/${AUFS_TARBALL};

KEYWORDS=~amd64 ~x86
HOMEPAGE=http://dev.gentoo.org/~mpagano/genpatches 
http://aufs.sourceforge.net/;
IUSE=deblob experimental module vanilla

DESCRIPTION=Full sources including the Gentoo patchset for the 
${KV_MAJOR}.${KV_MINOR} kernel tree and aufs3 support
SRC_URI=
${KERNEL_URI}
${ARCH_URI}
${AUFS_URI}
!vanilla? ( ${GENPATCHES_URI} )


PDEPEND==sys-fs/aufs-util-3.9

README_GENTOO_SUFFIX=-r1

src_unpack() {
if use vanilla; then
unset 

[gentoo-commits] gentoo-x86 commit in dev-python/pypy-bin: pypy-bin-2.4.0.ebuild ChangeLog

2014-10-20 Thread Patrick Lauer (patrick)
patrick 14/10/20 08:32:50

  Modified: ChangeLog
  Added:pypy-bin-2.4.0.ebuild
  Log:
  Bump, keywords dropped as it's still buggy and x86 no worky
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.22 dev-python/pypy-bin/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pypy-bin/ChangeLog?rev=1.22view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pypy-bin/ChangeLog?rev=1.22content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pypy-bin/ChangeLog?r1=1.21r2=1.22

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/pypy-bin/ChangeLog,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- ChangeLog   12 Jul 2014 21:27:07 -  1.21
+++ ChangeLog   20 Oct 2014 08:32:50 -  1.22
@@ -1,6 +1,11 @@
 # ChangeLog for dev-python/pypy-bin
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pypy-bin/ChangeLog,v 1.21 
2014/07/12 21:27:07 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pypy-bin/ChangeLog,v 1.22 
2014/10/20 08:32:50 patrick Exp $
+
+*pypy-bin-2.4.0 (20 Oct 2014)
+
+  20 Oct 2014; Patrick Lauer patr...@gentoo.org +pypy-bin-2.4.0.ebuild:
+  Bump, keywords dropped as it's still buggy and x86 no worky
 
 *pypy-bin-2.3.1 (12 Jul 2014)
 



1.1  dev-python/pypy-bin/pypy-bin-2.4.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pypy-bin/pypy-bin-2.4.0.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pypy-bin/pypy-bin-2.4.0.ebuild?rev=1.1content-type=text/plain

Index: pypy-bin-2.4.0.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pypy-bin/pypy-bin-2.4.0.ebuild,v 
1.1 2014/10/20 08:32:50 patrick Exp $

EAPI=5

PYTHON_COMPAT=( python2_7 pypy pypy2_0 )
inherit eutils multilib pax-utils python-any-r1 vcs-snapshot versionator

BINHOST=http://packages.gentooexperimental.org/pypy/;

# x86 currently fails, so no pypy-bin yet

DESCRIPTION=A fast, compliant alternative implementation of the Python 
language (binary package)
HOMEPAGE=http://pypy.org/;
SRC_URI=https://www.bitbucket.org/pypy/pypy/downloads/pypy-${PV}-src.tar.bz2
amd64? (
jit? ( shadowstack? (

${BINHOST}/${P}-amd64+bzip2+jit+ncurses+shadowstack.tar.xz
- 
${P}-r1-amd64+bzip2+jit+ncurses+shadowstack.tar.xz
) )
jit? ( !shadowstack? (
${BINHOST}/${P}-amd64+bzip2+jit+ncurses.tar.xz
- ${P}-r1-amd64+bzip2+jit+ncurses.tar.xz
) )
!jit? ( !shadowstack? (
${BINHOST}/${P}-amd64+bzip2+ncurses.tar.xz
- ${P}-r1-amd64+bzip2+ncurses.tar.xz
) )
)

#   x86? (
#   sse2? (
#   jit? ( shadowstack? (
#   
${BINHOST}/${P}-x86+bzip2+jit+ncurses+shadowstack+sse2.tar.xz
#   - 
${P}-r1-x86+bzip2+jit+ncurses+shadowstack+sse2.tar.xz
#   ) )
#   jit? ( !shadowstack? (
#   
${BINHOST}/${P}-x86+bzip2+jit+ncurses+sse2.tar.xz
#   - 
${P}-r1-x86+bzip2+jit+ncurses+sse2.tar.xz
#   ) )
#   !jit? ( !shadowstack? (
#   ${BINHOST}/${P}-x86+bzip2+ncurses+sse2.tar.xz
#   - ${P}-r1-x86+bzip2+ncurses+sse2.tar.xz
#   ) )
#   )
#   !sse2? (
#   !jit? ( !shadowstack? (
#   ${BINHOST}/${P}-x86+bzip2+ncurses.tar.xz
#   - ${P}-r1-x86+bzip2+ncurses.tar.xz
#   ) )
#   )
#   )

# Supported variants
REQUIRED_USE=!jit? ( !shadowstack )
x86? ( !sse2? ( !jit !shadowstack ) )

LICENSE=MIT
SLOT=0/$(get_version_component_range 1-2 ${PV})
#KEYWORDS=~amd64
# Needs some more sanity checks before it gets unleashed on users
KEYWORDS=
IUSE=doc +jit shadowstack sqlite sse2 test tk

# yep, world would be easier if people started filling subslots...
RDEPEND=
app-arch/bzip2:0
dev-libs/expat:0
dev-libs/libffi:0
dev-libs/openssl:0
sys-libs/glibc:2.2
sys-libs/ncurses:5
sys-libs/zlib:0
sqlite? ( dev-db/sqlite:3 )
tk? (
dev-lang/tk:0

[gentoo-commits] gentoo-x86 commit in net-ftp/filezilla: ChangeLog filezilla-3.9.0.6.ebuild

2014-10-20 Thread Bernard Cafarelli (voyageur)
voyageur14/10/20 08:54:22

  Modified: ChangeLog
  Added:filezilla-3.9.0.6.ebuild
  Log:
  Version bump, disables legacy SSL 3.0 support
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
C74525F2)

Revision  ChangesPath
1.119net-ftp/filezilla/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/filezilla/ChangeLog?rev=1.119view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/filezilla/ChangeLog?rev=1.119content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/filezilla/ChangeLog?r1=1.118r2=1.119

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-ftp/filezilla/ChangeLog,v
retrieving revision 1.118
retrieving revision 1.119
diff -u -r1.118 -r1.119
--- ChangeLog   6 Oct 2014 08:49:33 -   1.118
+++ ChangeLog   20 Oct 2014 08:54:22 -  1.119
@@ -1,6 +1,12 @@
 # ChangeLog for net-ftp/filezilla
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-ftp/filezilla/ChangeLog,v 1.118 
2014/10/06 08:49:33 voyageur Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-ftp/filezilla/ChangeLog,v 1.119 
2014/10/20 08:54:22 voyageur Exp $
+
+*filezilla-3.9.0.6 (20 Oct 2014)
+
+  20 Oct 2014; Bernard Cafarelli voyag...@gentoo.org
+  +filezilla-3.9.0.6.ebuild:
+  Version bump, disables legacy SSL 3.0 support
 
 *filezilla-3.9.0.5 (06 Oct 2014)
 



1.1  net-ftp/filezilla/filezilla-3.9.0.6.ebuild

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

Index: filezilla-3.9.0.6.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-ftp/filezilla/filezilla-3.9.0.6.ebuild,v 
1.1 2014/10/20 08:54:22 voyageur Exp $

EAPI=5

WX_GTK_VER=3.0

inherit autotools eutils flag-o-matic multilib wxwidgets

MY_PV=${PV/_/-}
MY_P=FileZilla_${MY_PV}

DESCRIPTION=FTP client with lots of useful features and an intuitive interface
HOMEPAGE=http://filezilla-project.org/;
SRC_URI=mirror://sourceforge/${PN}/${MY_P}_src.tar.bz2

LICENSE=GPL-2
SLOT=0
KEYWORDS=~amd64 ~arm ~ia64 ~ppc ~sparc ~x86 ~amd64-linux ~ia64-linux 
~x86-linux ~x86-macos
IUSE=aqua dbus nls test

RDEPEND==app-admin/eselect-wxwidgets-0.7-r1
=dev-db/sqlite-3.7
=dev-libs/tinyxml-2.6.1-r1[stl]
net-dns/libidn
=net-libs/gnutls-3.1.12
aqua? ( =x11-libs/wxGTK-3.0.1:3.0[aqua] )
!aqua? ( =x11-libs/wxGTK-3.0.1:3.0[X] x11-misc/xdg-utils )
dbus? ( sys-apps/dbus )
DEPEND=${RDEPEND}
virtual/pkgconfig
=sys-devel/libtool-1.4
nls? ( =sys-devel/gettext-0.11 )
test? ( dev-util/cppunit )

S=${WORKDIR}/${PN}-${MY_PV}

src_prepare() {
epatch ${FILESDIR}/${PN}-3.7.4-debug.patch
append-cppflags -DTIXML_USE_STL
eautoreconf
}

src_configure() {
econf $(use_with dbus) $(use_enable nls locales) \
--with-tinyxml=system \
--disable-autoupdatecheck
}

src_install() {
emake DESTDIR=${D} install

doicon src/interface/resources/48x48/${PN}.png

dodoc AUTHORS ChangeLog NEWS

if use aqua ; then
cat  ${T}/${PN} -EOF
#!${EPREFIX}/bin/bash
open ${EPREFIX}/Applications/FileZilla.app
EOF
rm ${ED}/usr/bin/${PN} || die
dobin ${T}/${PN}
insinto /Applications
doins -r ${S}/FileZilla.app
fi
}






[gentoo-commits] gentoo-x86 commit in mail-mta/postfix: postfix-2.10.5.ebuild postfix-2.11.3.ebuild ChangeLog

2014-10-20 Thread Eray Aslan (eras)
eras14/10/20 09:14:32

  Modified: ChangeLog
  Added:postfix-2.10.5.ebuild postfix-2.11.3.ebuild
  Log:
  Version bump
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with 
key 0x77F1F175586A3B1F)

Revision  ChangesPath
1.539mail-mta/postfix/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/postfix/ChangeLog?rev=1.539view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/postfix/ChangeLog?rev=1.539content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/postfix/ChangeLog?r1=1.538r2=1.539

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/mail-mta/postfix/ChangeLog,v
retrieving revision 1.538
retrieving revision 1.539
diff -u -r1.538 -r1.539
--- ChangeLog   16 Oct 2014 08:39:31 -  1.538
+++ ChangeLog   20 Oct 2014 09:14:31 -  1.539
@@ -1,6 +1,13 @@
 # ChangeLog for mail-mta/postfix
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-mta/postfix/ChangeLog,v 1.538 
2014/10/16 08:39:31 eras Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-mta/postfix/ChangeLog,v 1.539 
2014/10/20 09:14:31 eras Exp $
+
+*postfix-2.10.5 (20 Oct 2014)
+*postfix-2.11.3 (20 Oct 2014)
+
+  20 Oct 2014; Eray Aslan e...@gentoo.org +postfix-2.10.5.ebuild,
+  +postfix-2.11.3.ebuild:
+  Version bump
 
 *postfix-2.12_pre20141015 (16 Oct 2014)
 



1.1  mail-mta/postfix/postfix-2.10.5.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/postfix/postfix-2.10.5.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/postfix/postfix-2.10.5.ebuild?rev=1.1content-type=text/plain

Index: postfix-2.10.5.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-mta/postfix/postfix-2.10.5.ebuild,v 1.1 
2014/10/20 09:14:31 eras Exp $

EAPI=5
inherit eutils multilib ssl-cert toolchain-funcs flag-o-matic pam user 
versionator systemd

MY_PV=${PV/_pre/-}
MY_SRC=${PN}-${MY_PV}
MY_URI=ftp://ftp.porcupine.org/mirrors/postfix-release/official;
VDA_PV=2.10.0
VDA_P=${PN}-vda-v13-${VDA_PV}
RC_VER=2.7

DESCRIPTION=A fast and secure drop-in replacement for sendmail
HOMEPAGE=http://www.postfix.org/;
SRC_URI=${MY_URI}/${MY_SRC}.tar.gz
vda? ( http://vda.sourceforge.net/VDA/${VDA_P}.patch ) 

LICENSE=IBM
SLOT=0
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~x86-fbsd
IUSE=+berkdb cdb doc dovecot-sasl hardened ldap ldap-bind memcached mbox mysql 
nis pam postgres sasl selinux sqlite ssl vda

DEPEND==dev-libs/libpcre-3.4
dev-lang/perl
berkdb? ( =sys-libs/db-3.2 )
cdb? ( || ( =dev-db/tinycdb-0.76 =dev-db/cdb-0.75-r1 ) )
ldap? ( net-nds/openldap )
ldap-bind? ( net-nds/openldap[sasl] )
mysql? ( virtual/mysql )
pam? ( virtual/pam )
postgres? ( dev-db/postgresql-base )
sasl? (  =dev-libs/cyrus-sasl-2 )
sqlite? ( dev-db/sqlite:3 )
ssl? ( =dev-libs/openssl-0.9.6g )

RDEPEND=${DEPEND}
dovecot-sasl? ( net-mail/dovecot )
memcached? ( net-misc/memcached )
net-mail/mailbase
selinux? ( sec-policy/selinux-postfix )
!mail-mta/courier
!mail-mta/esmtp
!mail-mta/exim
!mail-mta/mini-qmail
!mail-mta/msmtp[mta]
!mail-mta/netqmail
!mail-mta/nullmailer
!mail-mta/qmail-ldap
!mail-mta/sendmail
!mail-mta/opensmtpd
!mail-mta/ssmtp-2.64-r2
!=mail-mta/ssmtp-2.64-r2[mta]
!net-mail/fastforward

REQUIRED_USE=ldap-bind? ( ldap sasl )

S=${WORKDIR}/${MY_SRC}

pkg_setup() {
# Add postfix, postdrop user/group (bug #77565)
enewgroup postfix 207
enewgroup postdrop 208
enewuser postfix 207 -1 /var/spool/postfix postfix,mail
}

src_prepare() {
epatch ${FILESDIR}/${PN}-2.11.1-db6.patch
if use vda; then
epatch ${DISTDIR}/${VDA_P}.patch
fi

sed -i -e /^#define ALIAS_DB_MAP/s|:/etc/aliases|:/etc/mail/aliases| \
src/util/sys_defs.h || die sed failed

# change default paths to better comply with portage standard paths
sed -i -e s:/usr/local/:/usr/:g conf/master.cf || die sed failed
}

src_configure() {
# Make sure LDFLAGS get passed down to the executables.
local mycc=-DHAS_PCRE mylibs=${LDFLAGS} -lpcre -lcrypt -lpthread

use pam  mylibs=${mylibs} -lpam

if use ldap; then
mycc=${mycc} -DHAS_LDAP
mylibs=${mylibs} -lldap -llber
fi

if use mysql; then
mycc=${mycc} -DHAS_MYSQL $(mysql_config --include)

[gentoo-commits] gentoo-x86 commit in media-sound/mpd: mpd-0.19.1.ebuild ChangeLog

2014-10-20 Thread Jeroen Roovers (jer)
jer 14/10/20 09:27:52

  Modified: mpd-0.19.1.ebuild ChangeLog
  Log:
  Marked ~hppa (bug #525846).
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, RepoMan options: 
--ignore-arches, signed Manifest commit with key A792A613)

Revision  ChangesPath
1.2  media-sound/mpd/mpd-0.19.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/mpd/mpd-0.19.1.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/mpd/mpd-0.19.1.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/mpd/mpd-0.19.1.ebuild?r1=1.1r2=1.2

Index: mpd-0.19.1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-sound/mpd/mpd-0.19.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- mpd-0.19.1.ebuild   19 Oct 2014 08:56:15 -  1.1
+++ mpd-0.19.1.ebuild   20 Oct 2014 09:27:52 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/mpd/mpd-0.19.1.ebuild,v 1.1 
2014/10/19 08:56:15 angelos Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/mpd/mpd-0.19.1.ebuild,v 1.2 
2014/10/20 09:27:52 jer Exp $
 
 EAPI=5
 inherit eutils flag-o-matic linux-info multilib readme.gentoo systemd user
@@ -11,7 +11,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=~amd64 ~arm ~sh ~x86 ~x86-fbsd ~x64-macos
+KEYWORDS=~amd64 ~arm ~hppa ~sh ~x86 ~x86-fbsd ~x64-macos
 IUSE=adplug +alsa ao audiofile bzip2 cdio +curl debug expat faad +fifo +ffmpeg
flac fluidsynth +glib gme +icu +id3tag +inotify +ipv6 jack lame mms
libmpdclient libsamplerate libsoxr +mad mikmod modplug mp4v2 mpg123 
musepack



1.359media-sound/mpd/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/mpd/ChangeLog?rev=1.359view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/mpd/ChangeLog?rev=1.359content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/mpd/ChangeLog?r1=1.358r2=1.359

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-sound/mpd/ChangeLog,v
retrieving revision 1.358
retrieving revision 1.359
diff -u -r1.358 -r1.359
--- ChangeLog   20 Oct 2014 07:13:57 -  1.358
+++ ChangeLog   20 Oct 2014 09:27:52 -  1.359
@@ -1,6 +1,9 @@
 # ChangeLog for media-sound/mpd
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/mpd/ChangeLog,v 1.358 
2014/10/20 07:13:57 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/mpd/ChangeLog,v 1.359 
2014/10/20 09:27:52 jer Exp $
+
+  20 Oct 2014; Jeroen Roovers j...@gentoo.org mpd-0.19.1.ebuild:
+  Marked ~hppa (bug #525846).
 
   20 Oct 2014; Jeroen Roovers j...@gentoo.org mpd-0.18.16.ebuild:
   Stable for HPPA (bug #525736).






[gentoo-commits] gentoo-x86 commit in sys-process/htop: ChangeLog htop-1.0.3.ebuild

2014-10-20 Thread Jeroen Roovers (jer)
jer 14/10/20 09:46:23

  Modified: ChangeLog htop-1.0.3.ebuild
  Log:
  Stable for HPPA (bug #525450).
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, RepoMan options: 
--ignore-arches, signed Manifest commit with key A792A613)

Revision  ChangesPath
1.144sys-process/htop/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/htop/ChangeLog?rev=1.144view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/htop/ChangeLog?rev=1.144content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/htop/ChangeLog?r1=1.143r2=1.144

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-process/htop/ChangeLog,v
retrieving revision 1.143
retrieving revision 1.144
diff -u -r1.143 -r1.144
--- ChangeLog   19 Oct 2014 14:35:47 -  1.143
+++ ChangeLog   20 Oct 2014 09:46:23 -  1.144
@@ -1,6 +1,9 @@
 # ChangeLog for sys-process/htop
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-process/htop/ChangeLog,v 1.143 
2014/10/19 14:35:47 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-process/htop/ChangeLog,v 1.144 
2014/10/20 09:46:23 jer Exp $
+
+  20 Oct 2014; Jeroen Roovers j...@gentoo.org htop-1.0.3.ebuild:
+  Stable for HPPA (bug #525450).
 
   19 Oct 2014; Anthony G. Basile bluen...@gentoo.org htop-1.0.3.ebuild:
   Stable on arm, ppc and ppc64, bug #525450



1.4  sys-process/htop/htop-1.0.3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/htop/htop-1.0.3.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/htop/htop-1.0.3.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/htop/htop-1.0.3.ebuild?r1=1.3r2=1.4

Index: htop-1.0.3.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-process/htop/htop-1.0.3.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- htop-1.0.3.ebuild   19 Oct 2014 14:35:47 -  1.3
+++ htop-1.0.3.ebuild   20 Oct 2014 09:46:23 -  1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-process/htop/htop-1.0.3.ebuild,v 1.3 
2014/10/19 14:35:47 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-process/htop/htop-1.0.3.ebuild,v 1.4 
2014/10/20 09:46:23 jer Exp $
 
 EAPI=5
 
@@ -16,7 +16,7 @@
 
 LICENSE=BSD GPL-2
 SLOT=0
-KEYWORDS=~alpha ~amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~sh ~sparc ~x86 
~amd64-linux ~x86-linux
+KEYWORDS=~alpha ~amd64 arm hppa ~ia64 ~mips ppc ppc64 ~sh ~sparc ~x86 
~amd64-linux ~x86-linux
 IUSE=kernel_FreeBSD kernel_linux oom openvz unicode vserver
 
 RDEPEND=sys-libs/ncurses[unicode?]






[gentoo-commits] gentoo-x86 commit in sys-apps/pv: pv-1.5.7.ebuild ChangeLog

2014-10-20 Thread Jeroen Roovers (jer)
jer 14/10/20 09:47:43

  Modified: pv-1.5.7.ebuild ChangeLog
  Log:
  Stable for HPPA (bug #525634).
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, RepoMan options: 
--ignore-arches, signed Manifest commit with key A792A613)

Revision  ChangesPath
1.2  sys-apps/pv/pv-1.5.7.ebuild

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

Index: pv-1.5.7.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/pv/pv-1.5.7.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- pv-1.5.7.ebuild 27 Aug 2014 08:44:26 -  1.1
+++ pv-1.5.7.ebuild 20 Oct 2014 09:47:43 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/pv/pv-1.5.7.ebuild,v 1.1 
2014/08/27 08:44:26 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/pv/pv-1.5.7.ebuild,v 1.2 
2014/10/20 09:47:43 jer Exp $
 
 EAPI=5
 inherit toolchain-funcs
@@ -11,7 +11,7 @@
 
 LICENSE=Artistic-2
 SLOT=0
-KEYWORDS=~alpha ~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x86-macos ~sparc64-solaris ~x86-solaris
+KEYWORDS=~alpha ~amd64 ~arm hppa ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x86-macos ~sparc64-solaris ~x86-solaris
 IUSE=debug nls
 
 PV_LINGUAS=( de fr pl pt )



1.98 sys-apps/pv/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/pv/ChangeLog,v
retrieving revision 1.97
retrieving revision 1.98
diff -u -r1.97 -r1.98
--- ChangeLog   27 Aug 2014 08:44:26 -  1.97
+++ ChangeLog   20 Oct 2014 09:47:43 -  1.98
@@ -1,6 +1,9 @@
 # ChangeLog for sys-apps/pv
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/pv/ChangeLog,v 1.97 2014/08/27 
08:44:26 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/pv/ChangeLog,v 1.98 2014/10/20 
09:47:43 jer Exp $
+
+  20 Oct 2014; Jeroen Roovers j...@gentoo.org pv-1.5.7.ebuild:
+  Stable for HPPA (bug #525634).
 
 *pv-1.5.7 (27 Aug 2014)
 






[gentoo-commits] gentoo-x86 commit in dev-python/gconf-python: ChangeLog gconf-python-2.28.1.ebuild

2014-10-20 Thread Pacho Ramos (pacho)
pacho   14/10/20 09:52:22

  Modified: ChangeLog
  Removed:  gconf-python-2.28.1.ebuild
  Log:
  Drop old
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 
A188FBD4)

Revision  ChangesPath
1.51 dev-python/gconf-python/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/gconf-python/ChangeLog,v
retrieving revision 1.50
retrieving revision 1.51
diff -u -r1.50 -r1.51
--- ChangeLog   11 Oct 2014 11:47:04 -  1.50
+++ ChangeLog   20 Oct 2014 09:52:22 -  1.51
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/gconf-python
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/gconf-python/ChangeLog,v 1.50 
2014/10/11 11:47:04 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/gconf-python/ChangeLog,v 1.51 
2014/10/20 09:52:22 pacho Exp $
+
+  20 Oct 2014; Pacho Ramos pa...@gentoo.org -gconf-python-2.28.1.ebuild:
+  Drop old
 
   11 Oct 2014; Markus Meier mae...@gentoo.org gconf-python-2.28.1-r1.ebuild:
   arm stable, bug #512012






[gentoo-commits] gentoo-x86 commit in dev-python/libbonobo-python: ChangeLog libbonobo-python-2.28.1.ebuild

2014-10-20 Thread Pacho Ramos (pacho)
pacho   14/10/20 09:53:20

  Modified: ChangeLog
  Removed:  libbonobo-python-2.28.1.ebuild
  Log:
  Drop old
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 
A188FBD4)

Revision  ChangesPath
1.47 dev-python/libbonobo-python/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/libbonobo-python/ChangeLog,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -r1.46 -r1.47
--- ChangeLog   11 Oct 2014 11:51:47 -  1.46
+++ ChangeLog   20 Oct 2014 09:53:20 -  1.47
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/libbonobo-python
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/libbonobo-python/ChangeLog,v 
1.46 2014/10/11 11:51:47 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/libbonobo-python/ChangeLog,v 
1.47 2014/10/20 09:53:20 pacho Exp $
+
+  20 Oct 2014; Pacho Ramos pa...@gentoo.org -libbonobo-python-2.28.1.ebuild:
+  Drop old
 
   11 Oct 2014; Markus Meier mae...@gentoo.org
   libbonobo-python-2.28.1-r1.ebuild:






[gentoo-commits] gentoo-x86 commit in dev-python/gnome-vfs-python: ChangeLog gnome-vfs-python-2.28.1.ebuild

2014-10-20 Thread Pacho Ramos (pacho)
pacho   14/10/20 09:52:51

  Modified: ChangeLog
  Removed:  gnome-vfs-python-2.28.1.ebuild
  Log:
  Drop old
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 
A188FBD4)

Revision  ChangesPath
1.48 dev-python/gnome-vfs-python/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/gnome-vfs-python/ChangeLog,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
--- ChangeLog   11 Oct 2014 11:49:51 -  1.47
+++ ChangeLog   20 Oct 2014 09:52:50 -  1.48
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/gnome-vfs-python
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/gnome-vfs-python/ChangeLog,v 
1.47 2014/10/11 11:49:51 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/gnome-vfs-python/ChangeLog,v 
1.48 2014/10/20 09:52:50 pacho Exp $
+
+  20 Oct 2014; Pacho Ramos pa...@gentoo.org -gnome-vfs-python-2.28.1.ebuild:
+  Drop old
 
   11 Oct 2014; Markus Meier mae...@gentoo.org
   gnome-vfs-python-2.28.1-r1.ebuild:






[gentoo-commits] gentoo-x86 commit in dev-python/libgnome-python: ChangeLog libgnome-python-2.28.1.ebuild

2014-10-20 Thread Pacho Ramos (pacho)
pacho   14/10/20 09:53:49

  Modified: ChangeLog
  Removed:  libgnome-python-2.28.1.ebuild
  Log:
  Drop old
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 
A188FBD4)

Revision  ChangesPath
1.47 dev-python/libgnome-python/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/libgnome-python/ChangeLog,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -r1.46 -r1.47
--- ChangeLog   11 Oct 2014 11:52:19 -  1.46
+++ ChangeLog   20 Oct 2014 09:53:49 -  1.47
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/libgnome-python
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/libgnome-python/ChangeLog,v 1.46 
2014/10/11 11:52:19 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/libgnome-python/ChangeLog,v 1.47 
2014/10/20 09:53:49 pacho Exp $
+
+  20 Oct 2014; Pacho Ramos pa...@gentoo.org -libgnome-python-2.28.1.ebuild:
+  Drop old
 
   11 Oct 2014; Markus Meier mae...@gentoo.org
   libgnome-python-2.28.1-r1.ebuild:






[gentoo-commits] gentoo-x86 commit in dev-python/libgnomecanvas-python: ChangeLog libgnomecanvas-python-2.28.1.ebuild

2014-10-20 Thread Pacho Ramos (pacho)
pacho   14/10/20 09:54:17

  Modified: ChangeLog
  Removed:  libgnomecanvas-python-2.28.1.ebuild
  Log:
  Drop old
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 
A188FBD4)

Revision  ChangesPath
1.49 dev-python/libgnomecanvas-python/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/libgnomecanvas-python/ChangeLog,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -r1.48 -r1.49
--- ChangeLog   11 Oct 2014 11:51:10 -  1.48
+++ ChangeLog   20 Oct 2014 09:54:17 -  1.49
@@ -1,6 +1,10 @@
 # ChangeLog for dev-python/libgnomecanvas-python
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-python/libgnomecanvas-python/ChangeLog,v 1.48 
2014/10/11 11:51:10 maekke Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-python/libgnomecanvas-python/ChangeLog,v 1.49 
2014/10/20 09:54:17 pacho Exp $
+
+  20 Oct 2014; Pacho Ramos pa...@gentoo.org
+  -libgnomecanvas-python-2.28.1.ebuild:
+  Drop old
 
   11 Oct 2014; Markus Meier mae...@gentoo.org
   libgnomecanvas-python-2.28.1-r1.ebuild:






[gentoo-commits] gentoo-x86 commit in dev-cpp/libgnomecanvasmm: ChangeLog libgnomecanvasmm-2.26.0.ebuild

2014-10-20 Thread Pacho Ramos (pacho)
pacho   14/10/20 09:54:57

  Modified: ChangeLog
  Removed:  libgnomecanvasmm-2.26.0.ebuild
  Log:
  Drop old
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 
A188FBD4)

Revision  ChangesPath
1.92 dev-cpp/libgnomecanvasmm/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/libgnomecanvasmm/ChangeLog?rev=1.92view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/libgnomecanvasmm/ChangeLog?rev=1.92content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/libgnomecanvasmm/ChangeLog?r1=1.91r2=1.92

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/libgnomecanvasmm/ChangeLog,v
retrieving revision 1.91
retrieving revision 1.92
diff -u -r1.91 -r1.92
--- ChangeLog   11 Oct 2014 13:35:20 -  1.91
+++ ChangeLog   20 Oct 2014 09:54:57 -  1.92
@@ -1,6 +1,9 @@
 # ChangeLog for dev-cpp/libgnomecanvasmm
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libgnomecanvasmm/ChangeLog,v 1.91 
2014/10/11 13:35:20 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libgnomecanvasmm/ChangeLog,v 1.92 
2014/10/20 09:54:57 pacho Exp $
+
+  20 Oct 2014; Pacho Ramos pa...@gentoo.org -libgnomecanvasmm-2.26.0.ebuild:
+  Drop old
 
   11 Oct 2014; Markus Meier mae...@gentoo.org
   libgnomecanvasmm-2.26.0-r1.ebuild:






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

2014-10-20 Thread Pacho Ramos (pacho)
pacho   14/10/20 10:15:44

  Modified: ChangeLog
  Log:
  Update mask

Revision  ChangesPath
1.9474   profiles/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v
retrieving revision 1.9473
retrieving revision 1.9474
diff -u -r1.9473 -r1.9474
--- ChangeLog   20 Oct 2014 00:26:50 -  1.9473
+++ ChangeLog   20 Oct 2014 10:15:44 -  1.9474
@@ -1,11 +1,16 @@
 # ChangeLog for profile directory
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.9473 2014/10/20 
00:26:50 pesa Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.9474 2014/10/20 
10:15:44 pacho 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!
 
+  20 Oct 2014; Pacho Ramos pa...@gentoo.org
+  arch/amd64/no-emul-linux-x86/package.use.stable.mask,
+  arch/amd64/package.use.stable.mask:
+  Update mask
+
   20 Oct 2014; Davide Pesavento p...@gentoo.org package.mask:
   Mask net-im/qutim for removal.
 






[gentoo-commits] gentoo-x86 commit in profiles/arch/amd64/no-emul-linux-x86: package.use.stable.mask

2014-10-20 Thread Pacho Ramos (pacho)
pacho   14/10/20 10:15:44

  Modified: package.use.stable.mask
  Log:
  Update mask

Revision  ChangesPath
1.5  
profiles/arch/amd64/no-emul-linux-x86/package.use.stable.mask

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/amd64/no-emul-linux-x86/package.use.stable.mask?rev=1.5view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/amd64/no-emul-linux-x86/package.use.stable.mask?rev=1.5content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/amd64/no-emul-linux-x86/package.use.stable.mask?r1=1.4r2=1.5

Index: package.use.stable.mask
===
RCS file: 
/var/cvsroot/gentoo-x86/profiles/arch/amd64/no-emul-linux-x86/package.use.stable.mask,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- package.use.stable.mask 18 Oct 2014 18:07:53 -  1.4
+++ package.use.stable.mask 20 Oct 2014 10:15:44 -  1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/profiles/arch/amd64/no-emul-linux-x86/package.use.stable.mask,v
 1.4 2014/10/18 18:07:53 pacho Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/profiles/arch/amd64/no-emul-linux-x86/package.use.stable.mask,v
 1.5 2014/10/20 10:15:44 pacho Exp $
 
 # Michał Górny mgo...@gentoo.org (14 Sep 2014)
 # on behalf of gx86-multilib project multi...@gentoo.org
@@ -316,6 +316,7 @@
 media-sound/gsm -abi_x86_32
 media-sound/jack-audio-connection-kit -abi_x86_32
 media-sound/lame -abi_x86_32
+media-sound/lame -abi_x86_32
 media-sound/mpg123 -abi_x86_32
 media-sound/musepack-tools -abi_x86_32
 media-sound/pulseaudio -abi_x86_32






[gentoo-commits] gentoo-x86 commit in profiles/arch/amd64: package.use.stable.mask

2014-10-20 Thread Pacho Ramos (pacho)
pacho   14/10/20 10:15:44

  Modified: package.use.stable.mask
  Log:
  Update mask

Revision  ChangesPath
1.75 profiles/arch/amd64/package.use.stable.mask

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/amd64/package.use.stable.mask?rev=1.75view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/amd64/package.use.stable.mask?rev=1.75content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/amd64/package.use.stable.mask?r1=1.74r2=1.75

Index: package.use.stable.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/amd64/package.use.stable.mask,v
retrieving revision 1.74
retrieving revision 1.75
diff -u -r1.74 -r1.75
--- package.use.stable.mask 18 Oct 2014 18:07:53 -  1.74
+++ package.use.stable.mask 20 Oct 2014 10:15:44 -  1.75
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/profiles/arch/amd64/package.use.stable.mask,v 1.74 
2014/10/18 18:07:53 pacho Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/profiles/arch/amd64/package.use.stable.mask,v 1.75 
2014/10/20 10:15:44 pacho Exp $
 
 # When you add an entry to the top of this file, add your name, the date, and
 # an explanation of why something is getting masked. Please be extremely
@@ -338,6 +338,7 @@
 media-sound/gsm abi_x86_32
 media-sound/jack-audio-connection-kit abi_x86_32
 media-sound/lame abi_x86_32
+media-sound/lash abi_x86_32
 media-sound/mpg123 abi_x86_32
 media-sound/musepack-tools abi_x86_32
 media-sound/pulseaudio abi_x86_32






[gentoo-commits] gentoo-x86 commit in media-sound/lash: lash-0.5.4-r2.ebuild ChangeLog

2014-10-20 Thread Pacho Ramos (pacho)
pacho   14/10/20 10:16:18

  Modified: lash-0.5.4-r2.ebuild ChangeLog
  Log:
  amd64 stable, bug #525804
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 
A188FBD4)

Revision  ChangesPath
1.3  media-sound/lash/lash-0.5.4-r2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lash/lash-0.5.4-r2.ebuild?rev=1.3view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lash/lash-0.5.4-r2.ebuild?rev=1.3content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lash/lash-0.5.4-r2.ebuild?r1=1.2r2=1.3

Index: lash-0.5.4-r2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-sound/lash/lash-0.5.4-r2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- lash-0.5.4-r2.ebuild9 Jul 2014 18:25:49 -   1.2
+++ lash-0.5.4-r2.ebuild20 Oct 2014 10:16:18 -  1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/lash/lash-0.5.4-r2.ebuild,v 1.2 
2014/07/09 18:25:49 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/lash/lash-0.5.4-r2.ebuild,v 1.3 
2014/10/20 10:16:18 pacho Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86
+KEYWORDS=~alpha amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86
 IUSE=alsa debug gtk python static-libs # doc
 
 RDEPEND=dev-libs/libxml2



1.42 media-sound/lash/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lash/ChangeLog?rev=1.42view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lash/ChangeLog?rev=1.42content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lash/ChangeLog?r1=1.41r2=1.42

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-sound/lash/ChangeLog,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -r1.41 -r1.42
--- ChangeLog   9 Jul 2014 18:25:49 -   1.41
+++ ChangeLog   20 Oct 2014 10:16:18 -  1.42
@@ -1,6 +1,9 @@
 # ChangeLog for media-sound/lash
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/lash/ChangeLog,v 1.41 
2014/07/09 18:25:49 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/lash/ChangeLog,v 1.42 
2014/10/20 10:16:18 pacho Exp $
+
+  20 Oct 2014; Pacho Ramos pa...@gentoo.org lash-0.5.4-r2.ebuild:
+  amd64 stable, bug #525804
 
   09 Jul 2014; Samuli Suominen ssuomi...@gentoo.org
   +files/lash-0.5.4-strcmp.patch, +files/lash-0.5.4-underlinking.patch,






[gentoo-commits] gentoo-x86 commit in media-sound/lash: lash-0.5.4-r2.ebuild ChangeLog

2014-10-20 Thread Pacho Ramos (pacho)
pacho   14/10/20 10:19:34

  Modified: lash-0.5.4-r2.ebuild ChangeLog
  Log:
  x86 stable, bug #525804
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 
A188FBD4)

Revision  ChangesPath
1.4  media-sound/lash/lash-0.5.4-r2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lash/lash-0.5.4-r2.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lash/lash-0.5.4-r2.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lash/lash-0.5.4-r2.ebuild?r1=1.3r2=1.4

Index: lash-0.5.4-r2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-sound/lash/lash-0.5.4-r2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- lash-0.5.4-r2.ebuild20 Oct 2014 10:16:18 -  1.3
+++ lash-0.5.4-r2.ebuild20 Oct 2014 10:19:34 -  1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/lash/lash-0.5.4-r2.ebuild,v 1.3 
2014/10/20 10:16:18 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/lash/lash-0.5.4-r2.ebuild,v 1.4 
2014/10/20 10:19:34 pacho Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=~alpha amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86
+KEYWORDS=~alpha amd64 ~hppa ~ppc ~ppc64 ~sparc x86
 IUSE=alsa debug gtk python static-libs # doc
 
 RDEPEND=dev-libs/libxml2



1.43 media-sound/lash/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lash/ChangeLog?rev=1.43view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lash/ChangeLog?rev=1.43content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lash/ChangeLog?r1=1.42r2=1.43

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-sound/lash/ChangeLog,v
retrieving revision 1.42
retrieving revision 1.43
diff -u -r1.42 -r1.43
--- ChangeLog   20 Oct 2014 10:16:18 -  1.42
+++ ChangeLog   20 Oct 2014 10:19:34 -  1.43
@@ -1,6 +1,9 @@
 # ChangeLog for media-sound/lash
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/lash/ChangeLog,v 1.42 
2014/10/20 10:16:18 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/lash/ChangeLog,v 1.43 
2014/10/20 10:19:34 pacho Exp $
+
+  20 Oct 2014; Pacho Ramos pa...@gentoo.org lash-0.5.4-r2.ebuild:
+  x86 stable, bug #525804
 
   20 Oct 2014; Pacho Ramos pa...@gentoo.org lash-0.5.4-r2.ebuild:
   amd64 stable, bug #525804






[gentoo-commits] gentoo-x86 commit in x11-drivers/nvidia-drivers: ChangeLog nvidia-drivers-331.104.ebuild nvidia-drivers-331.89.ebuild

2014-10-20 Thread Jeroen Roovers (jer)
jer 14/10/20 10:20:08

  Modified: ChangeLog nvidia-drivers-331.104.ebuild
  Removed:  nvidia-drivers-331.89.ebuild
  Log:
  Stable for AMD64 x86 too.
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, RepoMan options: 
--ignore-arches, signed Manifest commit with key A792A613)

Revision  ChangesPath
1.586x11-drivers/nvidia-drivers/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/nvidia-drivers/ChangeLog?rev=1.586view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/nvidia-drivers/ChangeLog?rev=1.586content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/nvidia-drivers/ChangeLog?r1=1.585r2=1.586

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-drivers/nvidia-drivers/ChangeLog,v
retrieving revision 1.585
retrieving revision 1.586
diff -u -r1.585 -r1.586
--- ChangeLog   19 Oct 2014 14:28:58 -  1.585
+++ ChangeLog   20 Oct 2014 10:20:08 -  1.586
@@ -1,6 +1,10 @@
 # ChangeLog for x11-drivers/nvidia-drivers
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-drivers/nvidia-drivers/ChangeLog,v 
1.585 2014/10/19 14:28:58 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-drivers/nvidia-drivers/ChangeLog,v 
1.586 2014/10/20 10:20:08 jer Exp $
+
+  20 Oct 2014; Jeroen Roovers j...@gentoo.org -nvidia-drivers-331.89.ebuild,
+  nvidia-drivers-331.104.ebuild:
+  Stable for AMD64 x86 too.
 
   19 Oct 2014; Jeroen Roovers j...@gentoo.org nvidia-drivers-331.104.ebuild,
   nvidia-drivers-334.21-r3.ebuild, nvidia-drivers-337.25.ebuild,



1.3  x11-drivers/nvidia-drivers/nvidia-drivers-331.104.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/nvidia-drivers/nvidia-drivers-331.104.ebuild?rev=1.3view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/nvidia-drivers/nvidia-drivers-331.104.ebuild?rev=1.3content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/nvidia-drivers/nvidia-drivers-331.104.ebuild?r1=1.2r2=1.3

Index: nvidia-drivers-331.104.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/x11-drivers/nvidia-drivers/nvidia-drivers-331.104.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- nvidia-drivers-331.104.ebuild   19 Oct 2014 14:28:58 -  1.2
+++ nvidia-drivers-331.104.ebuild   20 Oct 2014 10:20:08 -  1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/x11-drivers/nvidia-drivers/nvidia-drivers-331.104.ebuild,v
 1.2 2014/10/19 14:28:58 jer Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/x11-drivers/nvidia-drivers/nvidia-drivers-331.104.ebuild,v
 1.3 2014/10/20 10:20:08 jer Exp $
 
 EAPI=5
 
@@ -24,7 +24,7 @@
 
 LICENSE=GPL-2 NVIDIA-r2
 SLOT=0
-KEYWORDS=-* ~amd64 ~x86 ~amd64-fbsd ~x86-fbsd
+KEYWORDS=-* amd64 x86 ~amd64-fbsd ~x86-fbsd
 IUSE=acpi multilib kernel_FreeBSD kernel_linux pax_kernel +tools +X uvm
 RESTRICT=bindist mirror strip
 EMULTILIB_PKG=true






[gentoo-commits] gentoo-x86 commit in sci-chemistry/ccpn: ChangeLog ccpn-2.4.1_p141020.ebuild

2014-10-20 Thread Justin Lecher (jlec)
jlec14/10/20 10:44:36

  Modified: ChangeLog
  Added:ccpn-2.4.1_p141020.ebuild
  Log:
  sci-chemistry/ccpn: Todays python patches
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with 
key B9D4F231BD1558AB!)

Revision  ChangesPath
1.151sci-chemistry/ccpn/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/ccpn/ChangeLog?rev=1.151view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/ccpn/ChangeLog?rev=1.151content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/ccpn/ChangeLog?r1=1.150r2=1.151

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/ccpn/ChangeLog,v
retrieving revision 1.150
retrieving revision 1.151
diff -u -r1.150 -r1.151
--- ChangeLog   8 Oct 2014 07:29:07 -   1.150
+++ ChangeLog   20 Oct 2014 10:44:36 -  1.151
@@ -1,6 +1,11 @@
 # ChangeLog for sci-chemistry/ccpn
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/ccpn/ChangeLog,v 1.150 
2014/10/08 07:29:07 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/ccpn/ChangeLog,v 1.151 
2014/10/20 10:44:36 jlec Exp $
+
+*ccpn-2.4.1_p141020 (20 Oct 2014)
+
+  20 Oct 2014; Justin Lecher j...@gentoo.org +ccpn-2.4.1_p141020.ebuild:
+  Todays python patches
 
   08 Oct 2014; Justin Lecher j...@gentoo.org ccpn-2.4.1_p141008.ebuild:
   Uncomment variable



1.1  sci-chemistry/ccpn/ccpn-2.4.1_p141020.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/ccpn/ccpn-2.4.1_p141020.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/ccpn/ccpn-2.4.1_p141020.ebuild?rev=1.1content-type=text/plain

Index: ccpn-2.4.1_p141020.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/sci-chemistry/ccpn/ccpn-2.4.1_p141020.ebuild,v 1.1 
2014/10/20 10:44:36 jlec Exp $

EAPI=5

PYTHON_COMPAT=( python2_7 )
PYTHON_REQ_USE=ssl,tk

inherit eutils flag-o-matic multilib portability python-single-r1 
toolchain-funcs versionator

PATCHSET=${PV##*_p}
MY_PN=${PN}mr
MY_PV=$(replace_version_separator 3 _ ${PV%%_p*})
MY_MAJOR=$(get_version_component_range 1-3)

DESCRIPTION=The Collaborative Computing Project for NMR
HOMEPAGE=http://www.ccpn.ac.uk/ccpn;
SRC_URI=http://www-old.ccpn.ac.uk/download/${MY_PN}/analysis${MY_PV}.tar.gz;
[[ -n ${PATCHSET} ]] \
 SRC_URI+= 
http://dev.gentoo.org/~jlec/distfiles/ccpn-update-${MY_MAJOR}-${PATCHSET}.patch.xz;

SLOT=0
LICENSE=|| ( CCPN LGPL-2.1 )
KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux
IUSE=+opengl

REQUIRED_USE=${PYTHON_REQUIRED_USE}

RDEPEND=
${PYTHON_DEPS}
dev-lang/tk[threads]
dev-python/numpy[${PYTHON_USEDEP}]
dev-tcltk/tix
=sci-libs/ccpn-data-${MY_MAJOR}*[${PYTHON_USEDEP}]
sci-biology/psipred
x11-libs/libXext
x11-libs/libX11
opengl? (
media-libs/freeglut
dev-python/pyglet[${PYTHON_USEDEP}] )
DEPEND=${RDEPEND}

RESTRICT=mirror

S=${WORKDIR}/${MY_PN}/${MY_PN}$(get_version_component_range 1-2)

src_prepare() {
[[ -n ${PATCHSET} ]]  \
EPATCH_OPTS=-p2 epatch 
${WORKDIR}/ccpn-update-${MY_MAJOR}-${PATCHSET}.patch

epatch ${FILESDIR}/2.3.1-parallel.patch

append-lfs-flags

sed \
-e /PSIPRED_DIR/s:'data':'share/psipred/data':g \
-e s:weights_s:weights:g \
-i python/ccpnmr/analysis/wrappers/Psipred.py || die

local tk_ver
local myconf

tk_ver=$(best_version dev-lang/tk | cut -d- -f3 | cut -d. -f1,2)

if use opengl; then
GLUT_NEED_INIT=-DNEED_GLUT_INIT
IGNORE_GL_FLAG=
GL_FLAG=-DUSE_GL_TRUE
GL_DIR=${EPREFIX}/usr
GL_LIB=-lglut -lGLU -lGL
GL_INCLUDE_FLAGS=-I\$(GL_DIR)/include
GL_LIB_FLAGS=-L\$(GL_DIR)/$(get_libdir)

else
IGNORE_GL_FLAG=-DIGNORE_GL
GL_FLAG=-DUSE_GL_FALSE
fi

GLUT_NOT_IN_GL=
GLUT_FLAG=\$(GLUT_NEED_INIT) \$(GLUT_NOT_IN_GL)

rm -rf data model doc license || die

sed \
-e s|/usr|${EPREFIX}/usr|g \
-e s|^\(CC =\).*|\1 $(tc-getCC)|g \
-e s|^\(OPT_FLAG =\).*|\1 ${CPPFLAGS} ${CFLAGS}|g \
-e s|^\(LINK_FLAGS =.*\)|\1 ${LDFLAGS}|g \
-e s|^\(IGNORE_GL_FLAG =\).*|\1 ${IGNORE_GL_FLAG}|g \
-e s|^\(GL_FLAG =\).*|\1 ${GL_FLAG}|g \
-e s|^\(GL_DIR =\).*|\1 ${GL_DIR}|g \
-e s|^\(GL_LIB =\).*|\1 ${GL_LIB}|g \
   

[gentoo-commits] gentoo-x86 commit in sys-kernel/git-sources: git-sources-3.18_rc1.ebuild ChangeLog

2014-10-20 Thread Mike Pagano (mpagano)
mpagano 14/10/20 10:48:44

  Modified: ChangeLog
  Added:git-sources-3.18_rc1.ebuild
  Log:
  Version bump
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 
B576E4E3)

Revision  ChangesPath
1.1402   sys-kernel/git-sources/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/git-sources/ChangeLog?rev=1.1402view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/git-sources/ChangeLog?rev=1.1402content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/git-sources/ChangeLog?r1=1.1401r2=1.1402

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-kernel/git-sources/ChangeLog,v
retrieving revision 1.1401
retrieving revision 1.1402
diff -u -r1.1401 -r1.1402
--- ChangeLog   29 Sep 2014 07:17:59 -  1.1401
+++ ChangeLog   20 Oct 2014 10:48:44 -  1.1402
@@ -1,6 +1,11 @@
 # ChangeLog for sys-kernel/git-sources
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-kernel/git-sources/ChangeLog,v 1.1401 
2014/09/29 07:17:59 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-kernel/git-sources/ChangeLog,v 1.1402 
2014/10/20 10:48:44 mpagano Exp $
+
+*git-sources-3.18_rc1 (20 Oct 2014)
+
+  20 Oct 2014; Mike Pagano mpag...@gentoo.org +git-sources-3.18_rc1.ebuild:
+  Version bump
 
 *git-sources-3.17_rc7 (29 Sep 2014)
 



1.1  sys-kernel/git-sources/git-sources-3.18_rc1.ebuild

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

Index: git-sources-3.18_rc1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/sys-kernel/git-sources/git-sources-3.18_rc1.ebuild,v 
1.1 2014/10/20 10:48:44 mpagano Exp $

EAPI=5
UNIPATCH_STRICTORDER=yes
K_NOUSENAME=yes
K_NOSETEXTRAVERSION=yes
K_NOUSEPR=yes
K_SECURITY_UNSUPPORTED=yes
K_DEBLOB_AVAILABLE=0
ETYPE=sources
CKV=${PVR/-r/-git}

# only use this if it's not an _rc/_pre release
[ ${PV/_pre} == ${PV} ]  [ ${PV/_rc} == ${PV} ]  OKV=${PV}
inherit kernel-2
detect_version

DESCRIPTION=The very latest -git version of the Linux kernel
HOMEPAGE=http://www.kernel.org;
SRC_URI=${KERNEL_URI}

KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86
IUSE=

K_EXTRAEINFO=This kernel is not supported by Gentoo due to its unstable and
experimental nature. If you have any issues, try a matching vanilla-sources
ebuild -- if the problem is not there, please contact the upstream kernel
developers at http://bugzilla.kernel.org and on the linux-kernel mailing list to
report the problem so it can be fixed in time for the next kernel release.

RDEPEND=
DEPEND=${RDEPEND}
=sys-devel/patch-2.7.1-r3

pkg_postinst() {
postinst_sources
}






[gentoo-commits] gentoo-x86 commit in sys-kernel/git-sources: ChangeLog git-sources-3.17_rc7.ebuild git-sources-3.17_rc4.ebuild git-sources-3.17_rc2.ebuild git-sources-3.17_rc5.ebuild git-sources-3.17

2014-10-20 Thread Mike Pagano (mpagano)
mpagano 14/10/20 10:52:37

  Modified: ChangeLog
  Removed:  git-sources-3.17_rc7.ebuild
git-sources-3.17_rc4.ebuild
git-sources-3.17_rc2.ebuild
git-sources-3.17_rc5.ebuild
git-sources-3.17_rc3.ebuild
git-sources-3.17_rc1.ebuild
git-sources-3.17_rc6.ebuild
  Log:
  Drop old.
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 
B576E4E3)

Revision  ChangesPath
1.1403   sys-kernel/git-sources/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/git-sources/ChangeLog?rev=1.1403view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/git-sources/ChangeLog?rev=1.1403content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/git-sources/ChangeLog?r1=1.1402r2=1.1403

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-kernel/git-sources/ChangeLog,v
retrieving revision 1.1402
retrieving revision 1.1403
diff -u -r1.1402 -r1.1403
--- ChangeLog   20 Oct 2014 10:48:44 -  1.1402
+++ ChangeLog   20 Oct 2014 10:52:36 -  1.1403
@@ -1,6 +1,12 @@
 # ChangeLog for sys-kernel/git-sources
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-kernel/git-sources/ChangeLog,v 1.1402 
2014/10/20 10:48:44 mpagano Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-kernel/git-sources/ChangeLog,v 1.1403 
2014/10/20 10:52:36 mpagano Exp $
+
+  20 Oct 2014; Mike Pagano mpag...@gentoo.org -git-sources-3.17_rc1.ebuild,
+  -git-sources-3.17_rc2.ebuild, -git-sources-3.17_rc3.ebuild,
+  -git-sources-3.17_rc4.ebuild, -git-sources-3.17_rc5.ebuild,
+  -git-sources-3.17_rc6.ebuild, -git-sources-3.17_rc7.ebuild:
+  Drop old.
 
 *git-sources-3.18_rc1 (20 Oct 2014)
 






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

2014-10-20 Thread Anthony G. Basile (blueness)
blueness14/10/20 11:39:45

  Modified: ChangeLog
  Log:
  Mask app-misc/pax-utils-0.7 on musl for bug #526048

Revision  ChangesPath
1.72 profiles/hardened/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/hardened/ChangeLog,v
retrieving revision 1.71
retrieving revision 1.72
diff -u -r1.71 -r1.72
--- ChangeLog   18 Oct 2014 22:53:00 -  1.71
+++ ChangeLog   20 Oct 2014 11:39:45 -  1.72
@@ -1,9 +1,12 @@
 # ChangeLog for Gentoo/AMD64 profile directory
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/hardened/ChangeLog,v 1.71 
2014/10/18 22:53:00 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/hardened/ChangeLog,v 1.72 
2014/10/20 11:39:45 blueness Exp $
+
+  20 Oct 2014; Anthony G. Basile bluen...@gentoo.org linux/musl/package.mask:
+  Mask app-misc/pax-utils-0.7 on musl for bug #526048
 
   18 Oct 2014; Anthony G. Basile bluen...@gentoo.org linux/musl/package.mask:
-  Maske sys-apps/file-5.17 on musl for bug #525816
+  Mask sys-apps/file-5.17 on musl for bug #525816
 
   12 Oct 2014; Magnus Granberg zo...@gentoo.org linux/amd64/package.use:
   Add pic for media-libs/libpostpros needed for the x86 part #523736






[gentoo-commits] gentoo-x86 commit in profiles/hardened/linux/musl: package.mask

2014-10-20 Thread Anthony G. Basile (blueness)
blueness14/10/20 11:39:45

  Modified: package.mask
  Log:
  Mask app-misc/pax-utils-0.7 on musl for bug #526048

Revision  ChangesPath
1.5  profiles/hardened/linux/musl/package.mask

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/hardened/linux/musl/package.mask?rev=1.5view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/hardened/linux/musl/package.mask?rev=1.5content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/hardened/linux/musl/package.mask?r1=1.4r2=1.5

Index: package.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/hardened/linux/musl/package.mask,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- package.mask18 Oct 2014 22:53:00 -  1.4
+++ package.mask20 Oct 2014 11:39:45 -  1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation.
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/hardened/linux/musl/package.mask,v 
1.4 2014/10/18 22:53:00 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/hardened/linux/musl/package.mask,v 
1.5 2014/10/20 11:39:45 blueness Exp $
 
 sys-libs/uclibc
 sys-libs/glibc
@@ -14,3 +14,6 @@
 
 # bug #525816
 sys-apps/file-5.17
+
+# bug #526048
+app-misc/pax-utils-0.7






[gentoo-commits] gentoo-x86 commit in dev-perl/XML-Simple: ChangeLog XML-Simple-2.180.0.ebuild

2014-10-20 Thread Mikle Kolyada (zlogene)
zlogene 14/10/20 12:21:10

  Modified: ChangeLog
  Removed:  XML-Simple-2.180.0.ebuild
  Log:
  Drop old.
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key 
0xC42EB5D6)

Revision  ChangesPath
1.87 dev-perl/XML-Simple/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/XML-Simple/ChangeLog?rev=1.87view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/XML-Simple/ChangeLog?rev=1.87content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/XML-Simple/ChangeLog?r1=1.86r2=1.87

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/XML-Simple/ChangeLog,v
retrieving revision 1.86
retrieving revision 1.87
diff -u -r1.86 -r1.87
--- ChangeLog   20 Aug 2014 17:31:36 -  1.86
+++ ChangeLog   20 Oct 2014 12:21:10 -  1.87
@@ -1,6 +1,9 @@
 # ChangeLog for dev-perl/XML-Simple
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/XML-Simple/ChangeLog,v 1.86 
2014/08/20 17:31:36 axs Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/XML-Simple/ChangeLog,v 1.87 
2014/10/20 12:21:10 zlogene Exp $
+
+  20 Oct 2014; Mikle Kolyada zlog...@gentoo.org -XML-Simple-2.180.0.ebuild:
+  Drop old.
 
 *XML-Simple-2.200.0-r1 (20 Aug 2014)
 






[gentoo-commits] gentoo-x86 commit in dev-perl/MooseX-Types: MooseX-Types-0.350.0.ebuild MooseX-Types-0.360.0.ebuild ChangeLog

2014-10-20 Thread Mikle Kolyada (zlogene)
zlogene 14/10/20 12:23:19

  Modified: MooseX-Types-0.350.0.ebuild
MooseX-Types-0.360.0.ebuild ChangeLog
  Log:
  Bump to EAPI=5
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key 
0xC42EB5D6)

Revision  ChangesPath
1.2  dev-perl/MooseX-Types/MooseX-Types-0.350.0.ebuild

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

Index: MooseX-Types-0.350.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-perl/MooseX-Types/MooseX-Types-0.350.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- MooseX-Types-0.350.0.ebuild 19 May 2012 13:45:41 -  1.1
+++ MooseX-Types-0.350.0.ebuild 20 Oct 2014 12:23:19 -  1.2
@@ -1,8 +1,8 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/MooseX-Types/MooseX-Types-0.350.0.ebuild,v 1.1 
2012/05/19 13:45:41 tove Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/MooseX-Types/MooseX-Types-0.350.0.ebuild,v 1.2 
2014/10/20 12:23:19 zlogene Exp $
 
-EAPI=4
+EAPI=5
 
 MODULE_AUTHOR=DROLSKY
 MODULE_VERSION=0.35



1.3  dev-perl/MooseX-Types/MooseX-Types-0.360.0.ebuild

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

Index: MooseX-Types-0.360.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-perl/MooseX-Types/MooseX-Types-0.360.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- MooseX-Types-0.360.0.ebuild 2 Apr 2014 12:26:28 -   1.2
+++ MooseX-Types-0.360.0.ebuild 20 Oct 2014 12:23:19 -  1.3
@@ -1,8 +1,8 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/MooseX-Types/MooseX-Types-0.360.0.ebuild,v 1.2 
2014/04/02 12:26:28 zlogene Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/MooseX-Types/MooseX-Types-0.360.0.ebuild,v 1.3 
2014/10/20 12:23:19 zlogene Exp $
 
-EAPI=4
+EAPI=5
 
 MODULE_AUTHOR=ETHER
 MODULE_VERSION=0.36



1.35 dev-perl/MooseX-Types/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/MooseX-Types/ChangeLog?rev=1.35view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/MooseX-Types/ChangeLog?rev=1.35content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/MooseX-Types/ChangeLog?r1=1.34r2=1.35

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/MooseX-Types/ChangeLog,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- ChangeLog   2 Apr 2014 12:26:28 -   1.34
+++ ChangeLog   20 Oct 2014 12:23:19 -  1.35
@@ -1,6 +1,10 @@
 # ChangeLog for dev-perl/MooseX-Types
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/MooseX-Types/ChangeLog,v 1.34 
2014/04/02 12:26:28 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/MooseX-Types/ChangeLog,v 1.35 
2014/10/20 12:23:19 zlogene Exp $
+
+  20 Oct 2014; Mikle Kolyada zlog...@gentoo.org MooseX-Types-0.350.0.ebuild,
+  MooseX-Types-0.360.0.ebuild:
+  Bump to EAPI=5
 
   02 Apr 2014; Mikle Kolyada zlog...@gentoo.org MooseX-Types-0.360.0.ebuild:
   Add mising test dependency wrt bug #506536






[gentoo-commits] gentoo-x86 commit in games-rpg/adonthell/files: adonthell-0.3.5-format.patch

2014-10-20 Thread Alfredo Tupone (tupone)
tupone  14/10/20 12:26:24

  Added:adonthell-0.3.5-format.patch
  Log:
  Fix compile with format-security. Bug #520470
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key 
0145142D)

Revision  ChangesPath
1.1  games-rpg/adonthell/files/adonthell-0.3.5-format.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-rpg/adonthell/files/adonthell-0.3.5-format.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-rpg/adonthell/files/adonthell-0.3.5-format.patch?rev=1.1content-type=text/plain

Index: adonthell-0.3.5-format.patch
===
--- src/py_adonthell_wrap.cc.old2014-10-20 14:21:57.495642785 +0200
+++ src/py_adonthell_wrap.cc2014-10-20 14:22:35.019293237 +0200
@@ -867,7 +867,7 @@
 Py_DECREF(old_str);
 Py_DECREF(value);
   } else {
-PyErr_Format(PyExc_RuntimeError, mesg);
+PyErr_Format(PyExc_RuntimeError, %s, mesg);
   }
 }
 






[gentoo-commits] gentoo-x86 commit in games-rpg/adonthell: adonthell-0.3.5-r1.ebuild ChangeLog

2014-10-20 Thread Alfredo Tupone (tupone)
tupone  14/10/20 12:26:24

  Modified: adonthell-0.3.5-r1.ebuild ChangeLog
  Log:
  Fix compile with format-security. Bug #520470
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key 
0145142D)

Revision  ChangesPath
1.8  games-rpg/adonthell/adonthell-0.3.5-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-rpg/adonthell/adonthell-0.3.5-r1.ebuild?rev=1.8view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-rpg/adonthell/adonthell-0.3.5-r1.ebuild?rev=1.8content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-rpg/adonthell/adonthell-0.3.5-r1.ebuild?r1=1.7r2=1.8

Index: adonthell-0.3.5-r1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/games-rpg/adonthell/adonthell-0.3.5-r1.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- adonthell-0.3.5-r1.ebuild   15 May 2014 16:57:07 -  1.7
+++ adonthell-0.3.5-r1.ebuild   20 Oct 2014 12:26:24 -  1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/games-rpg/adonthell/adonthell-0.3.5-r1.ebuild,v 1.7 
2014/05/15 16:57:07 ulm Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/games-rpg/adonthell/adonthell-0.3.5-r1.ebuild,v 1.8 
2014/10/20 12:26:24 tupone Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python2_6 python2_7 )
@@ -44,6 +44,7 @@
epatch \
${FILESDIR}/${P}-configure.in.patch \
${FILESDIR}/${P}-glibc-2.10.patch \
+   ${FILESDIR}/${P}-format.patch \
${FILESDIR}/${P}-gcc46.patch
sed -i \
-e /AC_PATH_PROGS/s:python:${EPYTHON}: \



1.31 games-rpg/adonthell/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-rpg/adonthell/ChangeLog?rev=1.31view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-rpg/adonthell/ChangeLog?rev=1.31content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-rpg/adonthell/ChangeLog?r1=1.30r2=1.31

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/games-rpg/adonthell/ChangeLog,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- ChangeLog   29 Jul 2014 07:19:16 -  1.30
+++ ChangeLog   20 Oct 2014 12:26:24 -  1.31
@@ -1,6 +1,10 @@
 # ChangeLog for games-rpg/adonthell
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-rpg/adonthell/ChangeLog,v 1.30 
2014/07/29 07:19:16 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-rpg/adonthell/ChangeLog,v 1.31 
2014/10/20 12:26:24 tupone Exp $
+
+  20 Oct 2014; Alfredo Tupone tup...@gentoo.org adonthell-0.3.5-r1.ebuild,
+  +files/adonthell-0.3.5-format.patch:
+  Fix compile with format-security. Bug #520470 by Agostino Sarubbo
 
   29 Jul 2014; Michael Sterrett mr_bon...@gentoo.org -adonthell-0.3.5.ebuild:
   old






[gentoo-commits] gentoo-x86 commit in dev-perl/Devel-Size: ChangeLog Devel-Size-0.780.0.ebuild

2014-10-20 Thread Mikle Kolyada (zlogene)
zlogene 14/10/20 12:27:42

  Modified: ChangeLog
  Removed:  Devel-Size-0.780.0.ebuild
  Log:
  Drop old.
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key 
0xC42EB5D6)

Revision  ChangesPath
1.45 dev-perl/Devel-Size/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Devel-Size/ChangeLog?rev=1.45view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Devel-Size/ChangeLog?rev=1.45content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Devel-Size/ChangeLog?r1=1.44r2=1.45

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/Devel-Size/ChangeLog,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -r1.44 -r1.45
--- ChangeLog   22 Aug 2014 19:10:43 -  1.44
+++ ChangeLog   20 Oct 2014 12:27:42 -  1.45
@@ -1,6 +1,9 @@
 # ChangeLog for dev-perl/Devel-Size
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/Devel-Size/ChangeLog,v 1.44 
2014/08/22 19:10:43 axs Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/Devel-Size/ChangeLog,v 1.45 
2014/10/20 12:27:42 zlogene Exp $
+
+  20 Oct 2014; Mikle Kolyada zlog...@gentoo.org -Devel-Size-0.780.0.ebuild:
+  Drop old.
 
 *Devel-Size-0.790.0-r1 (22 Aug 2014)
 






[gentoo-commits] gentoo-x86 commit in dev-perl/AnyEvent-I3: ChangeLog AnyEvent-I3-0.90.0.ebuild

2014-10-20 Thread Mikle Kolyada (zlogene)
zlogene 14/10/20 12:30:16

  Modified: ChangeLog
  Removed:  AnyEvent-I3-0.90.0.ebuild
  Log:
  Drop old.
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key 
0xC42EB5D6)

Revision  ChangesPath
1.10 dev-perl/AnyEvent-I3/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/AnyEvent-I3/ChangeLog?rev=1.10view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/AnyEvent-I3/ChangeLog?rev=1.10content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/AnyEvent-I3/ChangeLog?r1=1.9r2=1.10

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/AnyEvent-I3/ChangeLog,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- ChangeLog   24 Sep 2014 19:42:40 -  1.9
+++ ChangeLog   20 Oct 2014 12:30:16 -  1.10
@@ -1,6 +1,9 @@
 # ChangeLog for dev-perl/AnyEvent-I3
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/AnyEvent-I3/ChangeLog,v 1.9 
2014/09/24 19:42:40 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/AnyEvent-I3/ChangeLog,v 1.10 
2014/10/20 12:30:16 zlogene Exp $
+
+  20 Oct 2014; Mikle Kolyada zlog...@gentoo.org -AnyEvent-I3-0.90.0.ebuild:
+  Drop old.
 
   24 Sep 2014; Markus Meier mae...@gentoo.org AnyEvent-I3-0.150.0.ebuild:
   add ~arm, bug #521374






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

2014-10-20 Thread Mark Wright
commit: 08e04d6e9d0357253d1ea001d7c957a74e537384
Author: gienah gienah AT gentoo DOT org
AuthorDate: Mon Oct 20 12:31:36 2014 +
Commit: Mark Wright gienah AT gentoo DOT org
CommitDate: Mon Oct 20 12:31:36 2014 +
URL:http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=08e04d6e

Thanks to kiwifb for reporting https://github.com/gentoo-science/sci/issues/280 
- Fix openblas: discrepancy between installed libraries and .pc file.

---
 sci-libs/openblas/ChangeLog| 5 +
 sci-libs/openblas/openblas-.ebuild | 9 -
 2 files changed, 13 insertions(+), 1 deletion(-)

diff --git a/sci-libs/openblas/ChangeLog b/sci-libs/openblas/ChangeLog
index cc7349a..fee0835 100644
--- a/sci-libs/openblas/ChangeLog
+++ b/sci-libs/openblas/ChangeLog
@@ -2,6 +2,11 @@
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  20 Oct 2014; Mark Wright gie...@gentoo.org openblas-.ebuild:
+  Thanks to kiwifb for reporting
+  https://github.com/gentoo-science/sci/issues/280 - Fix openblas: discrepancy
+  between installed libraries and .pc file.
+
   19 Oct 2014; Mark Wright gie...@gentoo.org openblas-.ebuild:
   The fix for Bug 524612 failed in src_install building openblas from git. The
   fix is to move applying the patch to src_compile after building the library,

diff --git a/sci-libs/openblas/openblas-.ebuild 
b/sci-libs/openblas/openblas-.ebuild
index 7c22ca6..a532fe8 100644
--- a/sci-libs/openblas/openblas-.ebuild
+++ b/sci-libs/openblas/openblas-.ebuild
@@ -42,7 +42,7 @@ get_openblas_flags() {
use dynamic  \
openblas_flags+= DYNAMIC_ARCH=1 TARGET=GENERIC NUM_THREADS=64 
NO_AFFINITY=1
$(fortran-int64_is_int64_build)  \
-   openblas_flags+= INTERFACE64=1 LIBNAMESUFFIX=${INT64_SUFFIX}
+   openblas_flags+= INTERFACE64=1
# choose posix threads over openmp when the two are set
# yet to see the need of having the two profiles simultaneously
if use threads; then
@@ -50,6 +50,13 @@ get_openblas_flags() {
elif use openmp; then
openblas_flags+= USE_THREAD=0 USE_OPENMP=1
fi
+   local profname=$(fortran-int64_get_profname)
+   local libname=${profname//-/_}
+   local underscoresuffix=${libname#${PN}}
+   if [[ ${underscoresuffix} != _ ]]; then
+   local libnamesuffix=${underscoresuffix#_}
+   openblas_flags+= LIBNAMESUFFIX=${libnamesuffix}
+   fi
echo ${openblas_flags}
 }
 



[gentoo-commits] gentoo-x86 commit in eclass: ChangeLog perl-module.eclass

2014-10-20 Thread Andreas HAttel (dilfridge)
dilfridge14/10/20 12:47:32

  Modified: ChangeLog perl-module.eclass
  Log:
  Output which ebuild actually has bad EAPI

Revision  ChangesPath
1.1390   eclass/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
retrieving revision 1.1389
retrieving revision 1.1390
diff -u -r1.1389 -r1.1390
--- ChangeLog   19 Oct 2014 20:59:15 -  1.1389
+++ ChangeLog   20 Oct 2014 12:47:32 -  1.1390
@@ -1,6 +1,9 @@
 # ChangeLog for eclass directory
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1389 2014/10/19 
20:59:15 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1390 2014/10/20 
12:47:32 dilfridge Exp $
+
+  20 Oct 2014; Andreas K. Huettel dilfri...@gentoo.org perl-module.eclass:
+  Output which ebuild actually has bad EAPI
 
   19 Oct 2014; Andreas K. Huettel dilfri...@gentoo.org perl-module.eclass:
   Move EAPI=0,1,2,3 warning into global scope to become ultra-annoying. Add QA



1.143eclass/perl-module.eclass

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/perl-module.eclass?rev=1.143view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/perl-module.eclass?rev=1.143content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/perl-module.eclass?r1=1.142r2=1.143

Index: perl-module.eclass
===
RCS file: /var/cvsroot/gentoo-x86/eclass/perl-module.eclass,v
retrieving revision 1.142
retrieving revision 1.143
diff -u -r1.142 -r1.143
--- perl-module.eclass  19 Oct 2014 20:59:15 -  1.142
+++ perl-module.eclass  20 Oct 2014 12:47:32 -  1.143
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.142 
2014/10/19 20:59:15 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.143 
2014/10/20 12:47:32 dilfridge Exp $
 
 # @ECLASS: perl-module.eclass
 # @MAINTAINER:
@@ -58,6 +58,7 @@
*)
ewarn
ewarn 
**
+   ewarn ${EBUILD}:
ewarn Support for EAPI=${EAPI:-0} in perl-module.eclass will 
be removed
ewarn on 1/Nov/2014. Please fix your overlay ebuilds to use 
EAPI=5.
ewarn 
**






[gentoo-commits] gentoo-x86 commit in gnustep-base/gnustep-base: ChangeLog gnustep-base-1.24.7.ebuild

2014-10-20 Thread Bernard Cafarelli (voyageur)
voyageur14/10/20 13:16:57

  Modified: ChangeLog
  Added:gnustep-base-1.24.7.ebuild
  Log:
  Version bump, bugfix release with TLS and other security improvements, latest 
timezone data
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
C74525F2)

Revision  ChangesPath
1.129gnustep-base/gnustep-base/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/gnustep-base/gnustep-base/ChangeLog,v
retrieving revision 1.128
retrieving revision 1.129
diff -u -r1.128 -r1.129
--- ChangeLog   10 Aug 2014 21:18:23 -  1.128
+++ ChangeLog   20 Oct 2014 13:16:57 -  1.129
@@ -1,6 +1,13 @@
 # ChangeLog for gnustep-base/gnustep-base
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/gnustep-base/gnustep-base/ChangeLog,v 1.128 
2014/08/10 21:18:23 slyfox Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnustep-base/gnustep-base/ChangeLog,v 1.129 
2014/10/20 13:16:57 voyageur Exp $
+
+*gnustep-base-1.24.7 (20 Oct 2014)
+
+  20 Oct 2014; Bernard Cafarelli voyag...@gentoo.org
+  +gnustep-base-1.24.7.ebuild:
+  Version bump, bugfix release with TLS and other security improvements, latest
+  timezone data
 
   10 Aug 2014; Sergei Trofimovich sly...@gentoo.org
   gnustep-base-1.24.6-r1.ebuild:



1.1  gnustep-base/gnustep-base/gnustep-base-1.24.7.ebuild

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

Index: gnustep-base-1.24.7.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/gnustep-base/gnustep-base/gnustep-base-1.24.7.ebuild,v 
1.1 2014/10/20 13:16:57 voyageur Exp $

EAPI=5
inherit eutils gnustep-base

DESCRIPTION=A library of general-purpose, non-graphical Objective C objects
HOMEPAGE=http://www.gnustep.org;
SRC_URI=ftp://ftp.gnustep.org/pub/gnustep/core/${P}.tar.gz;

LICENSE=GPL-2 LGPL-2.1
SLOT=0
KEYWORDS=~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux 
~x86-linux ~sparc-solaris ~x86-solaris
IUSE=+icu +libffi ssl zeroconf

RDEPEND=${GNUSTEP_CORE_DEPEND}
=gnustep-base/gnustep-make-2.6.0
icu? ( =dev-libs/icu-4.0:= )
!libffi? ( dev-libs/ffcall
gnustep-base/gnustep-make[-native-exceptions] )
libffi? ( virtual/libffi )
ssl? ( net-libs/gnutls )
=dev-libs/libxml2-2.6
=dev-libs/libxslt-1.1
=dev-libs/gmp-4.1
=dev-libs/openssl-0.9.7
=sys-libs/zlib-1.2
zeroconf? ( net-dns/avahi )
DEPEND=${RDEPEND}
virtual/pkgconfig

src_configure() {
egnustep_env

local myconf
if use libffi;
then
myconf=--enable-libffi --disable-ffcall 
--with-ffi-include=$(pkg-config --variable=includedir libffi)
else
myconf=--disable-libffi --enable-ffcall
fi

myconf=$myconf $(use_enable icu)
myconf=$myconf $(use_enable ssl tls)
myconf=$myconf $(use_enable zeroconf)
myconf=$myconf --with-xml-prefix=${EPREFIX}/usr
myconf=$myconf --with-gmp-include=${EPREFIX}/usr/include 
--with-gmp-library=${EPREFIX}/usr/lib
myconf=$myconf 
--with-default-config=${EPREFIX}/etc/GNUstep/GNUstep.conf

econf $myconf
}

src_install() {
# We need to set LD_LIBRARY_PATH because the doc generation program
# uses the gnustep-base libraries.  Since egnustep_env cleans the
# environment including our LD_LIBRARY_PATH, we're left no choice
# but doing it like this.

egnustep_env
egnustep_install

if use doc ; then
export LD_LIBRARY_PATH=${S}/Source/obj:${LD_LIBRARY_PATH}
egnustep_doc
fi
egnustep_install_config
}






[gentoo-commits] gentoo-x86 commit in dev-util/babeltrace: ChangeLog babeltrace-1.2.3.ebuild babeltrace-1.2.0.ebuild

2014-10-20 Thread Yixun Lan (dlan)
dlan14/10/20 13:32:05

  Modified: ChangeLog
  Added:babeltrace-1.2.3.ebuild
  Removed:  babeltrace-1.2.0.ebuild
  Log:
  version bump, drop old
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with 
key 0xAABEFD55)

Revision  ChangesPath
1.3  dev-util/babeltrace/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-util/babeltrace/ChangeLog,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ChangeLog   31 Jul 2014 15:03:05 -  1.2
+++ ChangeLog   20 Oct 2014 13:32:05 -  1.3
@@ -1,6 +1,12 @@
 # ChangeLog for dev-util/babeltrace
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/babeltrace/ChangeLog,v 1.2 
2014/07/31 15:03:05 dlan Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/babeltrace/ChangeLog,v 1.3 
2014/10/20 13:32:05 dlan Exp $
+
+*babeltrace-1.2.3 (20 Oct 2014)
+
+  20 Oct 2014; Yixun Lan d...@gentoo.org -babeltrace-1.2.0.ebuild,
+  +babeltrace-1.2.3.ebuild:
+  version bump, drop old
 
 *babeltrace-1.2.2 (31 Jul 2014)
 



1.1  dev-util/babeltrace/babeltrace-1.2.3.ebuild

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

Index: babeltrace-1.2.3.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-util/babeltrace/babeltrace-1.2.3.ebuild,v 1.1 
2014/10/20 13:32:05 dlan Exp $

EAPI=5

inherit eutils

DESCRIPTION=A command-line tool and library to read and convert trace files
HOMEPAGE=http://lttng.org;
SRC_URI=http://lttng.org/files/${PN}/${P}.tar.bz2;

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

RDEPEND=dev-libs/glib:2
dev-libs/popt
sys-apps/util-linux

DEPEND=${RDEPEND}
sys-devel/bison
sys-devel/flex

src_configure() {
econf $(use_enable test glibtest)
}

src_install() {
default
prune_libtool_files --all
}






[gentoo-commits] gentoo-x86 commit in gnustep-apps/gnumail/files: gnumail-1.2.0_pre3-pgpversion.patch gnumail-1.2.0_pre3-index.patch

2014-10-20 Thread Bernard Cafarelli (voyageur)
voyageur14/10/20 13:33:58

  Removed:  gnumail-1.2.0_pre3-pgpversion.patch
gnumail-1.2.0_pre3-index.patch
  Log:
  Drop old version, relax pantomime dependency
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
C74525F2)



[gentoo-commits] gentoo-x86 commit in gnustep-apps/gnumail: gnumail-1.2.0.ebuild ChangeLog gnumail-1.2.0_pre3-r1.ebuild

2014-10-20 Thread Bernard Cafarelli (voyageur)
voyageur14/10/20 13:33:58

  Modified: gnumail-1.2.0.ebuild ChangeLog
  Removed:  gnumail-1.2.0_pre3-r1.ebuild
  Log:
  Drop old version, relax pantomime dependency
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
C74525F2)

Revision  ChangesPath
1.5  gnustep-apps/gnumail/gnumail-1.2.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnustep-apps/gnumail/gnumail-1.2.0.ebuild?rev=1.5view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnustep-apps/gnumail/gnumail-1.2.0.ebuild?rev=1.5content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnustep-apps/gnumail/gnumail-1.2.0.ebuild?r1=1.4r2=1.5

Index: gnumail-1.2.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/gnustep-apps/gnumail/gnumail-1.2.0.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- gnumail-1.2.0.ebuild24 Aug 2012 07:15:29 -  1.4
+++ gnumail-1.2.0.ebuild20 Oct 2014 13:33:58 -  1.5
@@ -1,6 +1,6 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/gnustep-apps/gnumail/gnumail-1.2.0.ebuild,v 
1.4 2012/08/24 07:15:29 xmw Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnustep-apps/gnumail/gnumail-1.2.0.ebuild,v 
1.5 2014/10/20 13:33:58 voyageur Exp $
 
 EAPI=4
 inherit gnustep-2
@@ -17,9 +17,9 @@
 SLOT=0
 
 IUSE=crypt +emoticon +xface
-DEPEND=~gnustep-libs/pantomime-${PV}
-   =gnustep-base/gnustep-gui-0.11.0
-   || ( gnustep-apps/addresses gnustep-libs/addresseskit )
+DEPEND==gnustep-base/gnustep-gui-0.11.0
+   =gnustep-libs/pantomime-1.2*
+   gnustep-apps/addresses
 RDEPEND=crypt? ( app-crypt/gnupg )
 
 src_prepare() {



1.38 gnustep-apps/gnumail/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/gnustep-apps/gnumail/ChangeLog,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -r1.37 -r1.38
--- ChangeLog   24 Aug 2012 07:15:29 -  1.37
+++ ChangeLog   20 Oct 2014 13:33:58 -  1.38
@@ -1,6 +1,12 @@
 # ChangeLog for gnustep-apps/gnumail
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/gnustep-apps/gnumail/ChangeLog,v 1.37 
2012/08/24 07:15:29 xmw Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/gnustep-apps/gnumail/ChangeLog,v 1.38 
2014/10/20 13:33:58 voyageur Exp $
+
+  20 Oct 2014; Bernard Cafarelli voyag...@gentoo.org
+  -gnumail-1.2.0_pre3-r1.ebuild, gnumail-1.2.0.ebuild,
+  -files/gnumail-1.2.0_pre3-index.patch,
+  -files/gnumail-1.2.0_pre3-pgpversion.patch:
+  Drop old version, relax pantomime dependency
 
   24 Aug 2012; Michael Weber x...@gentoo.org gnumail-1.2.0.ebuild:
   ppc stable (bug 421335).






[gentoo-commits] gentoo-x86 commit in gnustep-libs/pantomime: pantomime-1.2.2.ebuild ChangeLog pantomime-1.2.0_pre3-r1.ebuild pantomime-1.2.0_pre3.ebuild

2014-10-20 Thread Bernard Cafarelli (voyageur)
voyageur14/10/20 13:36:43

  Modified: ChangeLog
  Added:pantomime-1.2.2.ebuild
  Removed:  pantomime-1.2.0_pre3-r1.ebuild
pantomime-1.2.0_pre3.ebuild
  Log:
  Version bump, mostly portability and bug fixes
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
C74525F2)

Revision  ChangesPath
1.31 gnustep-libs/pantomime/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/gnustep-libs/pantomime/ChangeLog,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- ChangeLog   10 Aug 2014 21:18:12 -  1.30
+++ ChangeLog   20 Oct 2014 13:36:43 -  1.31
@@ -1,6 +1,13 @@
 # ChangeLog for gnustep-libs/pantomime
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/gnustep-libs/pantomime/ChangeLog,v 1.30 
2014/08/10 21:18:12 slyfox Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnustep-libs/pantomime/ChangeLog,v 1.31 
2014/10/20 13:36:43 voyageur Exp $
+
+*pantomime-1.2.2 (20 Oct 2014)
+
+  20 Oct 2014; Bernard Cafarelli voyag...@gentoo.org
+  -pantomime-1.2.0_pre3.ebuild, -pantomime-1.2.0_pre3-r1.ebuild,
+  +pantomime-1.2.2.ebuild, -files/pantomime-1.2.0_pre3-gscategories.patch:
+  Version bump, mostly portability and bug fixes
 
   10 Aug 2014; Sergei Trofimovich sly...@gentoo.org pantomime-1.2.0.ebuild,
   pantomime-1.2.0_pre3-r1.ebuild, pantomime-1.2.0_pre3.ebuild:



1.1  gnustep-libs/pantomime/pantomime-1.2.2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnustep-libs/pantomime/pantomime-1.2.2.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnustep-libs/pantomime/pantomime-1.2.2.ebuild?rev=1.1content-type=text/plain

Index: pantomime-1.2.2.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/gnustep-libs/pantomime/pantomime-1.2.2.ebuild,v 1.1 
2014/10/20 13:36:43 voyageur Exp $

EAPI=5
inherit eutils gnustep-2

MY_P=${P/p/P}

S=${WORKDIR}/${MY_P}

DESCRIPTION=A set of Objective-C classes that model a mail system
HOMEPAGE=http://www.collaboration-world.com/pantomime/;
SRC_URI=http://download.gna.org/gnustep-nonfsf/${MY_P}.tar.gz;

LICENSE=LGPL-2.1 Elm
KEYWORDS=~amd64 ~ppc ~x86 ~x86-fbsd
SLOT=0
IUSE=

DEPEND=dev-libs/openssl
RDEPEND=${DEPEND}

src_prepare() {
sed -i -e s|ADDITIONAL_LDFLAGS|LIBRARIES_DEPEND_UPON| \
Framework/Pantomime/GNUmakefile || die as-needed sed failed
}

src_install() {
gnustep-base_src_install

cd ${S}/Documentation
dodoc AUTHORS README TODO
docinto rfc
dodoc RFC/*
}






[gentoo-commits] gentoo-x86 commit in gnustep-libs/pantomime/files: pantomime-1.2.0_pre3-gscategories.patch

2014-10-20 Thread Bernard Cafarelli (voyageur)
voyageur14/10/20 13:36:43

  Removed:  pantomime-1.2.0_pre3-gscategories.patch
  Log:
  Version bump, mostly portability and bug fixes
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
C74525F2)



[gentoo-commits] gentoo-x86 commit in dev-libs/libelf: ChangeLog libelf-0.8.13-r2.ebuild

2014-10-20 Thread Jeroen Roovers (jer)
jer 14/10/20 13:42:34

  Modified: ChangeLog libelf-0.8.13-r2.ebuild
  Log:
  Stable for HPPA (bug #525746).
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, RepoMan options: 
--ignore-arches, signed Manifest commit with key A792A613)

Revision  ChangesPath
1.46 dev-libs/libelf/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libelf/ChangeLog,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -r1.45 -r1.46
--- ChangeLog   18 Oct 2014 15:33:29 -  1.45
+++ ChangeLog   20 Oct 2014 13:42:34 -  1.46
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/libelf
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libelf/ChangeLog,v 1.45 2014/10/18 
15:33:29 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libelf/ChangeLog,v 1.46 2014/10/20 
13:42:34 jer Exp $
+
+  20 Oct 2014; Jeroen Roovers j...@gentoo.org libelf-0.8.13-r2.ebuild:
+  Stable for HPPA (bug #525746).
 
   18 Oct 2014; Anthony G. Basile bluen...@gentoo.org libelf-0.8.13-r2.ebuild:
   Stable on arm, ppc and ppc64.  Bug #525746



1.3  dev-libs/libelf/libelf-0.8.13-r2.ebuild

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

Index: libelf-0.8.13-r2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libelf/libelf-0.8.13-r2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- libelf-0.8.13-r2.ebuild 18 Oct 2014 15:33:29 -  1.2
+++ libelf-0.8.13-r2.ebuild 20 Oct 2014 13:42:34 -  1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libelf/libelf-0.8.13-r2.ebuild,v 
1.2 2014/10/18 15:33:29 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libelf/libelf-0.8.13-r2.ebuild,v 
1.3 2014/10/20 13:42:34 jer Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 
 LICENSE=LGPL-2
 SLOT=0
-KEYWORDS=~alpha ~amd64 arm ~hppa ~mips ppc ppc64 ~sparc ~x86 ~amd64-fbsd 
~sparc-fbsd ~x86-fbsd ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=~alpha ~amd64 arm hppa ~mips ppc ppc64 ~sparc ~x86 ~amd64-fbsd 
~sparc-fbsd ~x86-fbsd ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
 IUSE=debug nls elibc_FreeBSD
 
 RDEPEND=!dev-libs/elfutils






[gentoo-commits] proj/gamerlay:master commit in: dev-games/openscenegraph/files/, dev-games/openscenegraph/

2014-10-20 Thread Christian Schmitt
commit: 1bd5695c1b1793cb002181e310c97c20d7cc23b4
Author: Christian Schmitt chris AT ilovelinux DOT de
AuthorDate: Mon Oct 20 14:33:47 2014 +
Commit: Christian Schmitt chris AT ilovelinux DOT de
CommitDate: Mon Oct 20 14:33:47 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/gamerlay.git;a=commit;h=1bd5695c

[dev-games/openscenegraph] remove old version. newer one is in portage

---
 .../files/openscenegraph-3.2.0-cmake.patch | 307 -
 .../files/openscenegraph-3.2.0-ffmpeg.patch|  13 -
 .../files/openscenegraph-3.2.0-freetype2.patch |  39 ---
 dev-games/openscenegraph/metadata.xml  |  19 --
 .../openscenegraph/openscenegraph-3.2.0-r1.ebuild  | 148 --
 .../openscenegraph/openscenegraph-3.2.0.ebuild | 147 --
 6 files changed, 673 deletions(-)

diff --git a/dev-games/openscenegraph/files/openscenegraph-3.2.0-cmake.patch 
b/dev-games/openscenegraph/files/openscenegraph-3.2.0-cmake.patch
deleted file mode 100644
index a527c32..000
--- a/dev-games/openscenegraph/files/openscenegraph-3.2.0-cmake.patch
+++ /dev/null
@@ -1,307 +0,0 @@
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index be8f2b4..20e325a 100644
 a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -483,6 +483,7 @@ 
CONFIGURE_FILE(${CMAKE_CURRENT_SOURCE_DIR}/src/osg/Version.in
- 
- # INSTALL_FILES(/include/osg/ FILES ${OPENSCENEGRAPH_CONFIG_HEADER})
- 
-+INCLUDE(MacroOptionalFindPackage)
- 
- 

- # Set Version Info resource file
-@@ -512,37 +513,35 @@ IF(ANDROID)
- ANDROID_3RD_PARTY()
- ELSE()
- # Common to all platforms except android:
--FIND_PACKAGE(FreeType)
--FIND_PACKAGE(Inventor)
--FIND_PACKAGE(Jasper)
--FIND_PACKAGE(OpenEXR)
--FIND_PACKAGE(COLLADA)
--FIND_PACKAGE(FBX)
--FIND_PACKAGE(ZLIB)
--FIND_PACKAGE(Xine)
--FIND_PACKAGE(OpenVRML)
--FIND_PACKAGE(Performer)
--FIND_PACKAGE(GDAL)
--FIND_PACKAGE(GTA)
--FIND_PACKAGE(CURL)
--FIND_PACKAGE(LibVNCServer)
--FIND_PACKAGE(OurDCMTK)
--FIND_PACKAGE(FFmpeg)
-+MACRO_OPTIONAL_FIND_PACKAGE(FreeType)
-+MACRO_OPTIONAL_FIND_PACKAGE(Inventor)
-+MACRO_OPTIONAL_FIND_PACKAGE(Jasper)
-+MACRO_OPTIONAL_FIND_PACKAGE(OpenEXR)
-+MACRO_OPTIONAL_FIND_PACKAGE(COLLADA)
-+MACRO_OPTIONAL_FIND_PACKAGE(FBX)
-+MACRO_OPTIONAL_FIND_PACKAGE(ZLIB)
-+MACRO_OPTIONAL_FIND_PACKAGE(Xine)
-+MACRO_OPTIONAL_FIND_PACKAGE(OpenVRML)
-+MACRO_OPTIONAL_FIND_PACKAGE(Performer)
-+MACRO_OPTIONAL_FIND_PACKAGE(GDAL)
-+MACRO_OPTIONAL_FIND_PACKAGE(GTA)
-+MACRO_OPTIONAL_FIND_PACKAGE(CURL)
-+MACRO_OPTIONAL_FIND_PACKAGE(LibVNCServer)
-+MACRO_OPTIONAL_FIND_PACKAGE(OurDCMTK)
-+MACRO_OPTIONAL_FIND_PACKAGE(FFmpeg)
- FIND_PACKAGE(DirectShow)
--FIND_PACKAGE(SDL)
--FIND_PACKAGE(Poppler-glib)
--FIND_PACKAGE(RSVG)
--FIND_PACKAGE(GtkGl)
-+MACRO_OPTIONAL_FIND_PACKAGE(SDL)
-+MACRO_OPTIONAL_FIND_PACKAGE(Poppler-glib)
-+MACRO_OPTIONAL_FIND_PACKAGE(RSVG)
-+MACRO_OPTIONAL_FIND_PACKAGE(GtkGl)
- FIND_PACKAGE(DirectInput)
--FIND_PACKAGE(NVTT)
--IF (NOT WIN32)
--FIND_PACKAGE(Asio)
--ENDIF()
--FIND_PACKAGE(ZeroConf)
-+MACRO_OPTIONAL_FIND_PACKAGE(NVTT)
-+MACRO_OPTIONAL_FIND_PACKAGE(Asio)
-+MACRO_OPTIONAL_FIND_PACKAGE(ZeroConf)
- ENDIF()
- 
- IF(CMAKE_MAJOR_VERSION EQUAL 2 AND CMAKE_MINOR_VERSION LESS 8)
--FIND_PACKAGE(ITK)
-+MACRO_OPTIONAL_FIND_PACKAGE(ITK)
- ENDIF()
- 
- # Include macro utilities here
-@@ -557,16 +556,16 @@ IF(OSG_USE_QT AND NOT ANDROID)
- 
- IF  (DESIRED_QT_VERSION)
- IF  (DESIRED_QT_VERSION MATCHES 5)
--  FIND_PACKAGE(Qt5Widgets)
-+  MACRO_OPTIONAL_FIND_PACKAGE(Qt5Widgets)
- ELSEIF (DESIRED_QT_VERSION MATCHES 4)
--  FIND_PACKAGE(Qt4)
-+  MACRO_OPTIONAL_FIND_PACKAGE(Qt4)
- ELSE()
--  FIND_PACKAGE(Qt3)
-+  MACRO_OPTIONAL_FIND_PACKAGE(Qt3)
- ENDIF()
- 
- ELSE()
- 
--FIND_PACKAGE(Qt5Widgets QUIET)
-+MACRO_OPTIONAL_FIND_PACKAGE(Qt5Widgets QUIET)
- 
- IF ( Qt5Widgets_FOUND )
- # CMake 2.8.8 or greater required
-@@ -582,10 +581,10 @@ IF(OSG_USE_QT AND NOT ANDROID)
- ENDIF( )
- 
- IF ( NOT Qt5Widgets_FOUND )
--FIND_PACKAGE(Qt4)
-+MACRO_OPTIONAL_FIND_PACKAGE(Qt4)
- 
- IF (NOT QT4_FOUND)
--FIND_PACKAGE(Qt3)
-+MACRO_OPTIONAL_FIND_PACKAGE(Qt3)
- ENDIF()
- ENDIF()
- ENDIF()
-@@ -601,12 +600,12 @@ ENDIF()
- IF   (BUILD_OSG_EXAMPLES AND NOT ANDROID)
- 
- 
--FIND_PACKAGE(FLTK)
--FIND_PACKAGE(GLUT)
--FIND_PACKAGE(FOX)
-+MACRO_OPTIONAL_FIND_PACKAGE(FLTK)
-+MACRO_OPTIONAL_FIND_PACKAGE(GLUT)
-+MACRO_OPTIONAL_FIND_PACKAGE(FOX)
- 
- SET(wxWidgets_USE_LIBS base core gl net)
--FIND_PACKAGE(wxWidgets)
-+MACRO_OPTIONAL_FIND_PACKAGE(wxWidgets)
- 
- ENDIF(BUILD_OSG_EXAMPLES AND NOT ANDROID)
- 
-@@ -627,10 

[gentoo-commits] gentoo-x86 commit in media-video/makemkv: ChangeLog

2014-10-20 Thread Matthew Marlow (mattm)
mattm   14/10/20 14:39:06

  Modified: ChangeLog
  Log:
  Updated 1.8.13 Patch.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
786037A7)

Revision  ChangesPath
1.47 media-video/makemkv/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-video/makemkv/ChangeLog,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -r1.46 -r1.47
--- ChangeLog   19 Oct 2014 21:55:56 -  1.46
+++ ChangeLog   20 Oct 2014 14:39:06 -  1.47
@@ -1,6 +1,10 @@
 # ChangeLog for media-video/makemkv
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/makemkv/ChangeLog,v 1.46 
2014/10/19 21:55:56 mattm Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/makemkv/ChangeLog,v 1.47 
2014/10/20 14:39:06 mattm Exp $
+
+  20 Oct 2014; Matthew Marlowe ma...@gentoo.org
+  +files/makemkv-1.8.13-makefile.linux.patch:
+  Updated 1.8.13 Patch.
 
 *makemkv-1.8.13 (19 Oct 2014)
 






[gentoo-commits] gentoo-x86 commit in media-video/makemkv/files: makemkv-1.8.13-makefile.linux.patch

2014-10-20 Thread Matthew Marlow (mattm)
mattm   14/10/20 14:39:06

  Added:makemkv-1.8.13-makefile.linux.patch
  Log:
  Updated 1.8.13 Patch.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
786037A7)

Revision  ChangesPath
1.1  
media-video/makemkv/files/makemkv-1.8.13-makefile.linux.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/makemkv/files/makemkv-1.8.13-makefile.linux.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/makemkv/files/makemkv-1.8.13-makefile.linux.patch?rev=1.1content-type=text/plain

Index: makemkv-1.8.13-makefile.linux.patch
===
--- makemkv-oss-1.8.13/Makefile.in.orig 2014-04-25 09:25:24.558767575 -0600
+++ makemkv-oss-1.8.13/Makefile.in  2014-04-25 09:25:44.930534931 -0600
@@ -50,7 +50,7 @@
 endif
 
 out/%: out/%.full
-   $(OBJCOPY) --strip-all --strip-debug --strip-unneeded --discard-all $ 
$@ 
+   $(OBJCOPY) --discard-all $ $@ 
 
 out/libdriveio.so.0.full:
mkdir -p out






[gentoo-commits] gentoo-x86 commit in app-office/texmacs: ChangeLog texmacs-1.99.2.ebuild

2014-10-20 Thread Andrey Grozin (grozin)
grozin  14/10/20 14:49:18

  Modified: ChangeLog
  Added:texmacs-1.99.2.ebuild
  Log:
  Version bump
  
  (Portage version: 2.2.14_rc1/cvs/Linux i686, signed Manifest commit with key 
0x3AFFCE974D34BD8C!)

Revision  ChangesPath
1.119app-office/texmacs/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/texmacs/ChangeLog?rev=1.119view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/texmacs/ChangeLog?rev=1.119content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/texmacs/ChangeLog?r1=1.118r2=1.119

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-office/texmacs/ChangeLog,v
retrieving revision 1.118
retrieving revision 1.119
diff -u -r1.118 -r1.119
--- ChangeLog   11 Oct 2014 13:34:53 -  1.118
+++ ChangeLog   20 Oct 2014 14:49:18 -  1.119
@@ -1,6 +1,11 @@
 # ChangeLog for app-office/texmacs
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/texmacs/ChangeLog,v 1.118 
2014/10/11 13:34:53 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/texmacs/ChangeLog,v 1.119 
2014/10/20 14:49:18 grozin Exp $
+
+*texmacs-1.99.2 (20 Oct 2014)
+
+  20 Oct 2014; Andrey Grozin gro...@gentoo.org +texmacs-1.99.2.ebuild:
+  Version bump
 
   11 Oct 2014; Tobias Klausmann klaus...@gentoo.org texmacs-1.99.1.ebuild:
   Stable on alpha, bug 512486



1.1  app-office/texmacs/texmacs-1.99.2.ebuild

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

Index: texmacs-1.99.2.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-office/texmacs/texmacs-1.99.2.ebuild,v 
1.1 2014/10/20 14:49:18 grozin Exp $

EAPI=4

inherit autotools eutils fdo-mime gnome2-utils

MY_P=${P/tex/TeX}-src

DESCRIPTION=Wysiwyg text processor with high-quality maths
HOMEPAGE=http://www.texmacs.org/;
SRC_URI=ftp://ftp.texmacs.org/pub/TeXmacs/tmftp/source/${MY_P}.tar.gz;

LICENSE=GPL-3
SLOT=0
IUSE=imlib jpeg netpbm pdf qt4 svg spell
KEYWORDS=~alpha ~amd64 ~ppc ~x86 ~x86-interix ~amd64-linux ~x86-linux

RDEPEND=dev-scheme/guile[deprecated]
virtual/latex-base
app-text/ghostscript-gpl
media-libs/freetype
x11-libs/libXext
x11-apps/xmodmap
qt4? ( dev-qt/qtgui:4 )
imlib? ( media-libs/imlib2 )
jpeg? ( || ( media-gfx/imagemagick media-gfx/jpeg2ps ) )
svg? ( || ( media-gfx/inkscape gnome-base/librsvg:2 ) )
netpbm? ( media-libs/netpbm )
spell? ( app-text/aspell )
DEPEND=${RDEPEND}
x11-proto/xproto

S=${WORKDIR}/${MY_P}

src_prepare() {
# respect LDFLAGS, bug #338459
epatch ${FILESDIR}/${PN}-plugins-1.patch

# dont update mime and desktop databases and icon cache
epatch ${FILESDIR}/${PN}-updates.patch

eautoreconf
}

src_configure() {
econf --enable-optimize=${CXXFLAGS} \
$(use_with imlib imlib2) \
$(use_enable qt4 qt) \
$(use_enable pdf pdf-renderer)
}

src_install() {
default
domenu ${FILESDIR}/TeXmacs.desktop
}

pkg_postinst() {
fdo-mime_desktop_database_update
fdo-mime_mime_database_update
gnome2_icon_cache_update
}

pkg_postrm() {
fdo-mime_desktop_database_update
fdo-mime_mime_database_update
gnome2_icon_cache_update
}






[gentoo-commits] gentoo-x86 commit in dev-lisp/asdf: ChangeLog asdf-3.1.4.ebuild asdf-3.0.2.1.ebuild asdf-3.0.1.ebuild asdf-3.0.2.4.ebuild

2014-10-20 Thread Andrey Grozin (grozin)
grozin  14/10/20 14:50:25

  Modified: ChangeLog
  Added:asdf-3.1.4.ebuild
  Removed:  asdf-3.0.2.1.ebuild asdf-3.0.1.ebuild
asdf-3.0.2.4.ebuild
  Log:
  Version bump
  
  (Portage version: 2.2.14_rc1/cvs/Linux i686, signed Manifest commit with key 
0x3AFFCE974D34BD8C!)

Revision  ChangesPath
1.18 dev-lisp/asdf/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-lisp/asdf/ChangeLog,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- ChangeLog   11 Jul 2014 08:46:18 -  1.17
+++ ChangeLog   20 Oct 2014 14:50:25 -  1.18
@@ -1,6 +1,12 @@
 # ChangeLog for dev-lisp/asdf
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lisp/asdf/ChangeLog,v 1.17 2014/07/11 
08:46:18 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lisp/asdf/ChangeLog,v 1.18 2014/10/20 
14:50:25 grozin Exp $
+
+*asdf-3.1.4 (20 Oct 2014)
+
+  20 Oct 2014; Andrey Grozin gro...@gentoo.org -asdf-3.0.1.ebuild,
+  -asdf-3.0.2.1.ebuild, -asdf-3.0.2.4.ebuild, +asdf-3.1.4.ebuild:
+  Version bump
 
   11 Jul 2014; Patrick Lauer patr...@gentoo.org asdf-3.0.3.ebuild:
   Stable on amd64 #511170



1.1  dev-lisp/asdf/asdf-3.1.4.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lisp/asdf/asdf-3.1.4.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lisp/asdf/asdf-3.1.4.ebuild?rev=1.1content-type=text/plain

Index: asdf-3.1.4.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lisp/asdf/asdf-3.1.4.ebuild,v 1.1 
2014/10/20 14:50:25 grozin Exp $

EAPI=5
inherit eutils

DESCRIPTION=ASDF is Another System Definition Facility for Common Lisp
HOMEPAGE=http://common-lisp.net/project/asdf/;
SRC_URI=http://common-lisp.net/project/${PN}/archives/${P}.tar.gz;

LICENSE=MIT
SLOT=0
KEYWORDS=~amd64 ~ppc ~sparc ~x86
IUSE=doc

SLOT=0/${PVR}

DEPEND=!dev-lisp/cl-${PN}
!dev-lisp/asdf-binary-locations
!dev-lisp/gentoo-init
!dev-lisp/asdf-2.33-r3
doc? ( virtual/texi2dvi )
RDEPEND=
PDEPEND=~dev-lisp/uiop-${PV}

S=${WORKDIR}

src_compile() {
make
use doc  make doc
}

src_install() {
insinto /usr/share/common-lisp/source/${PN}
doins -r build version.lisp-expr
dodoc README.md TODO
dohtml doc/*.{html,css,ico,png}
if use doc; then
dohtml -r doc/${PN}
insinto /usr/share/doc/${PF}
doins doc/${PN}.pdf
fi

insinto /etc/common-lisp
doins ${FILESDIR}/gentoo-init.lisp ${FILESDIR}/source-registry.conf
}






[gentoo-commits] gentoo-x86 commit in dev-lisp/uiop: uiop-3.1.4.ebuild ChangeLog uiop-3.0.1.ebuild uiop-3.0.2.4.ebuild uiop-3.0.2.1.ebuild

2014-10-20 Thread Andrey Grozin (grozin)
grozin  14/10/20 14:51:08

  Modified: ChangeLog
  Added:uiop-3.1.4.ebuild
  Removed:  uiop-3.0.1.ebuild uiop-3.0.2.4.ebuild
uiop-3.0.2.1.ebuild
  Log:
  Version bump
  
  (Portage version: 2.2.14_rc1/cvs/Linux i686, signed Manifest commit with key 
0x3AFFCE974D34BD8C!)

Revision  ChangesPath
1.13 dev-lisp/uiop/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lisp/uiop/ChangeLog?rev=1.13view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lisp/uiop/ChangeLog?rev=1.13content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lisp/uiop/ChangeLog?r1=1.12r2=1.13

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-lisp/uiop/ChangeLog,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- ChangeLog   5 Oct 2014 00:03:15 -   1.12
+++ ChangeLog   20 Oct 2014 14:51:08 -  1.13
@@ -1,6 +1,12 @@
 # ChangeLog for dev-lisp/uiop
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lisp/uiop/ChangeLog,v 1.12 2014/10/05 
00:03:15 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lisp/uiop/ChangeLog,v 1.13 2014/10/20 
14:51:08 grozin Exp $
+
+*uiop-3.1.4 (20 Oct 2014)
+
+  20 Oct 2014; Andrey Grozin gro...@gentoo.org -uiop-3.0.1.ebuild,
+  -uiop-3.0.2.1.ebuild, -uiop-3.0.2.4.ebuild, +uiop-3.1.4.ebuild:
+  Version bump
 
   05 Oct 2014; Anthony G. Basile bluen...@gentoo.org uiop-3.0.1.ebuild,
   uiop-3.0.2.1.ebuild, uiop-3.0.2.4.ebuild, uiop-3.0.3.ebuild:



1.1  dev-lisp/uiop/uiop-3.1.4.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lisp/uiop/uiop-3.1.4.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lisp/uiop/uiop-3.1.4.ebuild?rev=1.1content-type=text/plain

Index: uiop-3.1.4.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lisp/uiop/uiop-3.1.4.ebuild,v 1.1 
2014/10/20 14:51:08 grozin Exp $

EAPI=5
inherit eutils

DESCRIPTION=UIOP is a portability layer spun off ASDF3
HOMEPAGE=http://common-lisp.net/project/asdf/;
SRC_URI=http://common-lisp.net/project/asdf/archives/asdf-${PV}.tar.gz;

LICENSE=MIT
SLOT=0
KEYWORDS=~amd64 ~ppc ~sparc ~x86
IUSE=

RDEPEND=~dev-lisp/asdf-${PV}

S=${WORKDIR}/${PN}

src_install() {
insinto /usr/share/common-lisp/source/${PN}
doins -r contrib *.lisp ../version.lisp-expr uiop.asd asdf-driver.asd
dodir /usr/share/common-lisp/systems
dosym /usr/share/common-lisp/source/${PN}/uiop.asd 
/usr/share/common-lisp/systems/uiop.asd
dosym /usr/share/common-lisp/source/${PN}/asdf-driver.asd 
/usr/share/common-lisp/systems/asdf-driver.asd
}






[gentoo-commits] gentoo-x86 commit in dev-lisp/sbcl: sbcl-1.2.4.ebuild ChangeLog sbcl-1.2.2.ebuild sbcl-1.1.18.ebuild sbcl-1.1.17.ebuild sbcl-1.1.16.ebuild sbcl-1.0.55-r2.ebuild sbcl-1.1.15.ebuild

2014-10-20 Thread Andrey Grozin (grozin)
grozin  14/10/20 14:51:55

  Modified: ChangeLog sbcl-1.2.2.ebuild sbcl-1.1.18.ebuild
  Added:sbcl-1.2.4.ebuild
  Removed:  sbcl-1.1.17.ebuild sbcl-1.1.16.ebuild
sbcl-1.0.55-r2.ebuild sbcl-1.1.15.ebuild
  Log:
  Version bump
  
  (Portage version: 2.2.14_rc1/cvs/Linux i686, signed Manifest commit with key 
0x3AFFCE974D34BD8C!)

Revision  ChangesPath
1.210dev-lisp/sbcl/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lisp/sbcl/ChangeLog?rev=1.210view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lisp/sbcl/ChangeLog?rev=1.210content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lisp/sbcl/ChangeLog?r1=1.209r2=1.210

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-lisp/sbcl/ChangeLog,v
retrieving revision 1.209
retrieving revision 1.210
diff -u -r1.209 -r1.210
--- ChangeLog   5 Aug 2014 12:47:08 -   1.209
+++ ChangeLog   20 Oct 2014 14:51:55 -  1.210
@@ -1,6 +1,13 @@
 # ChangeLog for dev-lisp/sbcl
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lisp/sbcl/ChangeLog,v 1.209 2014/08/05 
12:47:08 gienah Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lisp/sbcl/ChangeLog,v 1.210 2014/10/20 
14:51:55 grozin Exp $
+
+*sbcl-1.2.4 (20 Oct 2014)
+
+  20 Oct 2014; Andrey Grozin gro...@gentoo.org -sbcl-1.0.55-r2.ebuild,
+  -sbcl-1.1.15.ebuild, -sbcl-1.1.16.ebuild, -sbcl-1.1.17.ebuild,
+  sbcl-1.1.18.ebuild, sbcl-1.2.2.ebuild, +sbcl-1.2.4.ebuild:
+  Version bump
 
   05 Aug 2014; Mark Wright gie...@gentoo.org sbcl-1.0.55-r1.ebuild,
   sbcl-1.0.55-r2.ebuild, sbcl-1.1.15.ebuild, sbcl-1.1.16.ebuild,



1.4  dev-lisp/sbcl/sbcl-1.2.2.ebuild

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

Index: sbcl-1.2.2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-lisp/sbcl/sbcl-1.2.2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- sbcl-1.2.2.ebuild   5 Aug 2014 12:47:08 -   1.3
+++ sbcl-1.2.2.ebuild   20 Oct 2014 14:51:55 -  1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lisp/sbcl/sbcl-1.2.2.ebuild,v 1.3 
2014/08/05 12:47:08 gienah Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lisp/sbcl/sbcl-1.2.2.ebuild,v 1.4 
2014/10/20 14:51:55 grozin Exp $
 
 EAPI=5
 inherit multilib eutils flag-o-matic pax-utils
@@ -26,7 +26,7 @@
 KEYWORDS=~amd64 ~ppc ~sparc ~x86
 IUSE=debug doc source +threads +unicode pax_kernel zlib
 
-CDEPEND==dev-lisp/asdf-2.33-r3:=
+CDEPEND==dev-lisp/asdf-3.0*:=
 DEPEND=${CDEPEND}
doc? ( sys-apps/texinfo =media-gfx/graphviz-2.26.0 )
pax_kernel? ( sys-apps/paxctl sys-apps/elfix )



1.5  dev-lisp/sbcl/sbcl-1.1.18.ebuild

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

Index: sbcl-1.1.18.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-lisp/sbcl/sbcl-1.1.18.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- sbcl-1.1.18.ebuild  5 Aug 2014 12:47:08 -   1.4
+++ sbcl-1.1.18.ebuild  20 Oct 2014 14:51:55 -  1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lisp/sbcl/sbcl-1.1.18.ebuild,v 1.4 
2014/08/05 12:47:08 gienah Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lisp/sbcl/sbcl-1.1.18.ebuild,v 1.5 
2014/10/20 14:51:55 grozin Exp $
 
 EAPI=5
 inherit multilib eutils flag-o-matic pax-utils
@@ -26,7 +26,7 @@
 KEYWORDS=amd64 ~ppc ~sparc ~x86
 IUSE=debug doc source +threads +unicode pax_kernel zlib
 
-CDEPEND==dev-lisp/asdf-2.33-r3:=
+CDEPEND==dev-lisp/asdf-3.0*:=
 DEPEND=${CDEPEND}
doc? ( sys-apps/texinfo =media-gfx/graphviz-2.26.0 )
pax_kernel? ( sys-apps/paxctl sys-apps/elfix )



1.1  dev-lisp/sbcl/sbcl-1.2.4.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lisp/sbcl/sbcl-1.2.4.ebuild?rev=1.1view=markup
plain: 

[gentoo-commits] gentoo-x86 commit in app-misc/subsurface: ChangeLog subsurface-4.0.ebuild subsurface-4.0.3.ebuild

2014-10-20 Thread Yixun Lan (dlan)
dlan14/10/20 14:47:20

  Modified: ChangeLog
  Removed:  subsurface-4.0.ebuild subsurface-4.0.3.ebuild
  Log:
  drop old granted by maintainer, bug 500158#c8
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with 
key 0xAABEFD55)

Revision  ChangesPath
1.14 app-misc/subsurface/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/subsurface/ChangeLog?rev=1.14view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/subsurface/ChangeLog?rev=1.14content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/subsurface/ChangeLog?r1=1.13r2=1.14

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-misc/subsurface/ChangeLog,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- ChangeLog   29 Aug 2014 02:08:55 -  1.13
+++ ChangeLog   20 Oct 2014 14:47:20 -  1.14
@@ -1,6 +1,10 @@
 # ChangeLog for app-misc/subsurface
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/subsurface/ChangeLog,v 1.13 
2014/08/29 02:08:55 dlan Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/subsurface/ChangeLog,v 1.14 
2014/10/20 14:47:20 dlan Exp $
+
+  20 Oct 2014; Yixun Lan d...@gentoo.org -subsurface-4.0.ebuild,
+  -subsurface-4.0.3.ebuild:
+  drop old granted by maintainer, bug 500158#c8
 
 *subsurface-4.2 (29 Aug 2014)
 






[gentoo-commits] proj/betagarden:master commit in: games-board/gambit/, media-gfx/glmixer/

2014-10-20 Thread Sebastian Pipping
commit: 0eb9b88c2afb0f57fca5d80d39dfc8850460a343
Author: Sebastian Pipping sebastian AT pipping DOT org
AuthorDate: Mon Oct 20 14:51:39 2014 +
Commit: Sebastian Pipping sping AT gentoo DOT org
CommitDate: Mon Oct 20 14:51:39 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/betagarden.git;a=commit;h=0eb9b88c

media-gfx/glmixer: Enable more features

---
 .../gambit/{gambit-0_p65.ebuild = gambit-.ebuild}|  0
 media-gfx/glmixer/glmixer-.ebuild | 15 ++-
 2 files changed, 14 insertions(+), 1 deletion(-)

diff --git a/games-board/gambit/gambit-0_p65.ebuild 
b/games-board/gambit/gambit-.ebuild
similarity index 100%
rename from games-board/gambit/gambit-0_p65.ebuild
rename to games-board/gambit/gambit-.ebuild

diff --git a/media-gfx/glmixer/glmixer-.ebuild 
b/media-gfx/glmixer/glmixer-.ebuild
index f4e17ea..822e76f 100644
--- a/media-gfx/glmixer/glmixer-.ebuild
+++ b/media-gfx/glmixer/glmixer-.ebuild
@@ -24,10 +24,23 @@ RDEPEND=
dev-qt/qtwebkit
media-libs/glew
media-libs/glu
+   media-libs/opencv
virtual/ffmpeg
 DEPEND=${RDEPEND}
 
 src_prepare() {
epatch ${FILESDIR}/${P}-subversion.patch
-   ewarn 'Libraries still bundled: libQtProperty, libOSCPack, 
libFreeFrameGL'
+   rm -Rf libFreeFrameGL/FFGL-SDK-1.5 || die
+   ewarn 'Libraries still bundled: libQtProperty, libOSCPack, 
libFreeFrameGL 1.6'
+}
+
+src_configure() {
+   local mycmakeargs=(
+   -DUSE_SHAREDMEMORY=yes
+   -DUSE_OPENCV=yes
+   -DUSE_FREEFRAMEGL=1.6
+   -Wno-dev
+   )
+
+   cmake-utils_src_configure
 }



[gentoo-commits] proj/betagarden:master commit in: x11-misc/glmixer/files/, x11-misc/glmixer/, media-gfx/glmixer/, ...

2014-10-20 Thread Sebastian Pipping
commit: a5dc757e75297687e2fcc66a03ee8d714ffb9500
Author: Sebastian Pipping sebastian AT pipping DOT org
AuthorDate: Sun Oct 19 22:11:38 2014 +
Commit: Sebastian Pipping sping AT gentoo DOT org
CommitDate: Sun Oct 19 22:11:38 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/betagarden.git;a=commit;h=a5dc757e

x11-misc/glmixer: Move to media-gfx/glmixer

---
 {x11-misc = media-gfx}/glmixer/files/glmixer--subversion.patch | 0
 {x11-misc = media-gfx}/glmixer/glmixer-.ebuild | 0
 {x11-misc = media-gfx}/glmixer/metadata.xml| 0
 profiles/updates/4Q-2014| 1 +
 4 files changed, 1 insertion(+)

diff --git a/x11-misc/glmixer/files/glmixer--subversion.patch 
b/media-gfx/glmixer/files/glmixer--subversion.patch
similarity index 100%
rename from x11-misc/glmixer/files/glmixer--subversion.patch
rename to media-gfx/glmixer/files/glmixer--subversion.patch

diff --git a/x11-misc/glmixer/glmixer-.ebuild 
b/media-gfx/glmixer/glmixer-.ebuild
similarity index 100%
rename from x11-misc/glmixer/glmixer-.ebuild
rename to media-gfx/glmixer/glmixer-.ebuild

diff --git a/x11-misc/glmixer/metadata.xml b/media-gfx/glmixer/metadata.xml
similarity index 100%
rename from x11-misc/glmixer/metadata.xml
rename to media-gfx/glmixer/metadata.xml

diff --git a/profiles/updates/4Q-2014 b/profiles/updates/4Q-2014
new file mode 100644
index 000..3a7a4c5
--- /dev/null
+++ b/profiles/updates/4Q-2014
@@ -0,0 +1 @@
+move x11-misc/glmixer media-gfx/glmixer



[gentoo-commits] proj/betagarden:master commit in: games-board/gambit/

2014-10-20 Thread Sebastian Pipping
commit: ee08d18bc95d5f2ccddd2d79802f2c849390e446
Author: Sebastian Pipping sebastian AT pipping DOT org
AuthorDate: Mon Oct 20 14:52:47 2014 +
Commit: Sebastian Pipping sping AT gentoo DOT org
CommitDate: Mon Oct 20 14:57:09 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/betagarden.git;a=commit;h=ee08d18b

games-board/gambit: 1.0/

---
 games-board/gambit/{gambit-.ebuild = gambit-1.0.ebuild} | 9 -
 games-board/gambit/gambit-.ebuild| 3 +--
 2 files changed, 5 insertions(+), 7 deletions(-)

diff --git a/games-board/gambit/gambit-.ebuild 
b/games-board/gambit/gambit-1.0.ebuild
similarity index 87%
copy from games-board/gambit/gambit-.ebuild
copy to games-board/gambit/gambit-1.0.ebuild
index 2156d43..273c4f3 100644
--- a/games-board/gambit/gambit-.ebuild
+++ b/games-board/gambit/gambit-1.0.ebuild
@@ -5,12 +5,11 @@
 EAPI=5
 
 CMAKE_IN_SOURCE_BUILD=true
-inherit cmake-utils subversion
+inherit cmake-utils
 
 DESCRIPTION=Qt-based chess application + engine \gupta\
 HOMEPAGE=http://sourceforge.net/projects/gambitchess/;
-ESVN_REPO_URI=svn://svn.code.sf.net/p/gambitchess/code/trunk/
-ESVN_REVISION=${PV/*_p/}
+SRC_URI=mirror://sourceforge/project/${PN}chess/${PN^}-${PV}/${PN^}-${PV}-src.tar.bz2
 
 LICENSE=CC0-1.0
 SLOT=0
@@ -22,13 +21,13 @@ DEPEND=dev-qt/qtgui
x11-libs/libICE
 RDEPEND=${DEPEND}
 
-S=${WORKDIR}/${PN^}-${PV}
+S=${WORKDIR}/${PN^}-${PV}-src
 
 src_prepare() {
rm svn_update_revision_number_header.sh || die
sed 's|svn_update_revision_number_header\.sh|/dev/null|' -i 
CMakeLists.txt || die
 
-   subversion_wc_info  # to fill ESVN_WC_REVISION
+   local ESVN_WC_REVISION=67
cat -HEADER_H  src/svn_revision_number.h
#ifndef SVN_REVISION_NUMBER_H
#define SVN_REVISION_NUMBER_H

diff --git a/games-board/gambit/gambit-.ebuild 
b/games-board/gambit/gambit-.ebuild
index 2156d43..6ca391f 100644
--- a/games-board/gambit/gambit-.ebuild
+++ b/games-board/gambit/gambit-.ebuild
@@ -10,11 +10,10 @@ inherit cmake-utils subversion
 DESCRIPTION=Qt-based chess application + engine \gupta\
 HOMEPAGE=http://sourceforge.net/projects/gambitchess/;
 ESVN_REPO_URI=svn://svn.code.sf.net/p/gambitchess/code/trunk/
-ESVN_REVISION=${PV/*_p/}
 
 LICENSE=CC0-1.0
 SLOT=0
-KEYWORDS=~amd64 ~x86
+KEYWORDS=
 IUSE=
 
 DEPEND=dev-qt/qtgui



[gentoo-commits] gentoo-x86 commit in x11-wm/ratpoison: ratpoison-9999.ebuild ChangeLog ratpoison-1.4.8.ebuild

2014-10-20 Thread Jeroen Roovers (jer)
jer 14/10/20 15:11:09

  Modified: ratpoison-.ebuild ChangeLog
ratpoison-1.4.8.ebuild
  Log:
  Remove PN from DESCRIPTION.
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with 
key A792A613)

Revision  ChangesPath
1.7  x11-wm/ratpoison/ratpoison-.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/ratpoison/ratpoison-.ebuild?rev=1.7view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/ratpoison/ratpoison-.ebuild?rev=1.7content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/ratpoison/ratpoison-.ebuild?r1=1.6r2=1.7

Index: ratpoison-.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/x11-wm/ratpoison/ratpoison-.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ratpoison-.ebuild   17 Sep 2014 09:56:39 -  1.6
+++ ratpoison-.ebuild   20 Oct 2014 15:11:09 -  1.7
@@ -1,12 +1,12 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-wm/ratpoison/ratpoison-.ebuild,v 
1.6 2014/09/17 09:56:39 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-wm/ratpoison/ratpoison-.ebuild,v 
1.7 2014/10/20 15:11:09 jer Exp $
 
 EAPI=5
 
 inherit autotools elisp-common eutils git-r3 toolchain-funcs
 
-DESCRIPTION=Ratpoison is an extremely light-weight and barebones wm modelled 
after screen
+DESCRIPTION=an extremely light-weight and barebones wm modelled after screen
 HOMEPAGE=http://www.nongnu.org/ratpoison/;
 EGIT_REPO_URI=git://git.savannah.nongnu.org/ratpoison.git
 



1.109x11-wm/ratpoison/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-wm/ratpoison/ChangeLog,v
retrieving revision 1.108
retrieving revision 1.109
diff -u -r1.108 -r1.109
--- ChangeLog   17 Sep 2014 09:56:39 -  1.108
+++ ChangeLog   20 Oct 2014 15:11:09 -  1.109
@@ -1,6 +1,10 @@
 # ChangeLog for x11-wm/ratpoison
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-wm/ratpoison/ChangeLog,v 1.108 
2014/09/17 09:56:39 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-wm/ratpoison/ChangeLog,v 1.109 
2014/10/20 15:11:09 jer Exp $
+
+  20 Oct 2014; Jeroen Roovers j...@gentoo.org ratpoison-1.4.8.ebuild,
+  ratpoison-.ebuild:
+  Remove PN from DESCRIPTION.
 
   17 Sep 2014; Jeroen Roovers j...@gentoo.org ratpoison-1.4.8.ebuild,
   ratpoison-.ebuild:



1.3  x11-wm/ratpoison/ratpoison-1.4.8.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/ratpoison/ratpoison-1.4.8.ebuild?rev=1.3view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/ratpoison/ratpoison-1.4.8.ebuild?rev=1.3content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/ratpoison/ratpoison-1.4.8.ebuild?r1=1.2r2=1.3

Index: ratpoison-1.4.8.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/x11-wm/ratpoison/ratpoison-1.4.8.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ratpoison-1.4.8.ebuild  17 Sep 2014 09:56:39 -  1.2
+++ ratpoison-1.4.8.ebuild  20 Oct 2014 15:11:09 -  1.3
@@ -1,12 +1,12 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-wm/ratpoison/ratpoison-1.4.8.ebuild,v 
1.2 2014/09/17 09:56:39 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-wm/ratpoison/ratpoison-1.4.8.ebuild,v 
1.3 2014/10/20 15:11:09 jer Exp $
 
 EAPI=5
 
 inherit elisp-common eutils toolchain-funcs
 
-DESCRIPTION=Ratpoison is an extremely light-weight and barebones wm modelled 
after screen
+DESCRIPTION=an extremely light-weight and barebones wm modelled after screen
 HOMEPAGE=http://www.nongnu.org/ratpoison/;
 SRC_URI=http://savannah.nongnu.org/download/${PN}/${P}.tar.xz;
 






[gentoo-commits] gentoo-x86 commit in app-cdr/graveman: ChangeLog graveman-0.3.12_p5-r1.ebuild

2014-10-20 Thread Samuli Suominen (ssuominen)
ssuominen14/10/20 15:19:26

  Modified: ChangeLog
  Removed:  graveman-0.3.12_p5-r1.ebuild
  Log:
  old
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.57 app-cdr/graveman/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-cdr/graveman/ChangeLog?rev=1.57view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-cdr/graveman/ChangeLog?rev=1.57content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-cdr/graveman/ChangeLog?r1=1.56r2=1.57

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-cdr/graveman/ChangeLog,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -r1.56 -r1.57
--- ChangeLog   19 Oct 2014 23:47:51 -  1.56
+++ ChangeLog   20 Oct 2014 15:19:26 -  1.57
@@ -1,6 +1,10 @@
 # ChangeLog for app-cdr/graveman
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-cdr/graveman/ChangeLog,v 1.56 
2014/10/19 23:47:51 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-cdr/graveman/ChangeLog,v 1.57 
2014/10/20 15:19:26 ssuominen Exp $
+
+  20 Oct 2014; Samuli Suominen ssuomi...@gentoo.org
+  -graveman-0.3.12_p5-r1.ebuild:
+  old
 
   19 Oct 2014; Anthony G. Basile bluen...@gentoo.org
   graveman-0.3.12_p5-r2.ebuild:






[gentoo-commits] gentoo-x86 commit in profiles/arch/amd64/no-emul-linux-x86: package.use.stable.mask

2014-10-20 Thread Ian Stakenvicius (axs)
axs 14/10/20 15:45:51

  Modified: package.use.stable.mask
  Log:
  fix misnaming of unmask in no-emul-linux-x86

Revision  ChangesPath
1.6  
profiles/arch/amd64/no-emul-linux-x86/package.use.stable.mask

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/amd64/no-emul-linux-x86/package.use.stable.mask?rev=1.6view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/amd64/no-emul-linux-x86/package.use.stable.mask?rev=1.6content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/amd64/no-emul-linux-x86/package.use.stable.mask?r1=1.5r2=1.6

Index: package.use.stable.mask
===
RCS file: 
/var/cvsroot/gentoo-x86/profiles/arch/amd64/no-emul-linux-x86/package.use.stable.mask,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- package.use.stable.mask 20 Oct 2014 10:15:44 -  1.5
+++ package.use.stable.mask 20 Oct 2014 15:45:51 -  1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/profiles/arch/amd64/no-emul-linux-x86/package.use.stable.mask,v
 1.5 2014/10/20 10:15:44 pacho Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/profiles/arch/amd64/no-emul-linux-x86/package.use.stable.mask,v
 1.6 2014/10/20 15:45:51 axs Exp $
 
 # Michał Górny mgo...@gentoo.org (14 Sep 2014)
 # on behalf of gx86-multilib project multi...@gentoo.org
@@ -316,7 +316,7 @@
 media-sound/gsm -abi_x86_32
 media-sound/jack-audio-connection-kit -abi_x86_32
 media-sound/lame -abi_x86_32
-media-sound/lame -abi_x86_32
+media-sound/lash -abi_x86_32
 media-sound/mpg123 -abi_x86_32
 media-sound/musepack-tools -abi_x86_32
 media-sound/pulseaudio -abi_x86_32






[gentoo-commits] gentoo-x86 commit in dev-java/guava: ChangeLog guava-18.0.ebuild

2014-10-20 Thread Johann Schmitz (ercpe)
ercpe   14/10/20 15:47:02

  Modified: ChangeLog
  Added:guava-18.0.ebuild
  Log:
  Version bump (bug #525600)
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key 
77C501ED)

Revision  ChangesPath
1.13 dev-java/guava/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-java/guava/ChangeLog,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- ChangeLog   25 Apr 2014 05:53:38 -  1.12
+++ ChangeLog   20 Oct 2014 15:47:02 -  1.13
@@ -1,6 +1,11 @@
 # ChangeLog for dev-java/guava
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/guava/ChangeLog,v 1.12 2014/04/25 
05:53:38 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/guava/ChangeLog,v 1.13 2014/10/20 
15:47:02 ercpe Exp $
+
+*guava-18.0 (20 Oct 2014)
+
+  20 Oct 2014; Johann Schmitz er...@gentoo.org +guava-18.0.ebuild:
+  Version bump (bug #525600)
 
   25 Apr 2014; Tim Harder radher...@gentoo.org -guava-16.0.ebuild:
   Remove old.



1.1  dev-java/guava/guava-18.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/guava/guava-18.0.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/guava/guava-18.0.ebuild?rev=1.1content-type=text/plain

Index: guava-18.0.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/guava/guava-18.0.ebuild,v 1.1 
2014/10/20 15:47:02 ercpe Exp $

EAPI=5
JAVA_PKG_IUSE=doc source

inherit java-pkg-2 java-pkg-simple

DESCRIPTION=A collection of Google's core Java libraries
HOMEPAGE=http://code.google.com/p/guava-libraries/;
SRC_URI=http://search.maven.org/remotecontent?filepath=com/google/${PN}/${PN}/${PV}/${P}-sources.jar;

LICENSE=Apache-2.0
SLOT=18
KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos

COMMON_DEP=
dev-java/javax-inject:0
dev-java/jsr305:0
java-virtuals/jdk-with-com-sun:0
RDEPEND=${COMMON_DEP}
=virtual/jre-1.6
DEPEND=${COMMON_DEP}
app-arch/unzip
=virtual/jdk-1.7 # 
http://code.google.com/p/guava-libraries/issues/detail?id=635

JAVA_GENTOO_CLASSPATH=jsr305,javax-inject






[gentoo-commits] gentoo-x86 commit in dev-libs/uriparser: ChangeLog uriparser-0.8.1.ebuild

2014-10-20 Thread Sebastian Pipping (sping)
sping   14/10/20 15:56:31

  Modified: ChangeLog
  Added:uriparser-0.8.1.ebuild
  Log:
  dev-libs/uriparser: 0.8.1
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 
0x401A1600)

Revision  ChangesPath
1.48 dev-libs/uriparser/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/uriparser/ChangeLog,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
--- ChangeLog   24 Mar 2014 15:09:32 -  1.47
+++ ChangeLog   20 Oct 2014 15:56:31 -  1.48
@@ -1,6 +1,11 @@
 # ChangeLog for dev-libs/uriparser
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/uriparser/ChangeLog,v 1.47 
2014/03/24 15:09:32 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/uriparser/ChangeLog,v 1.48 
2014/10/20 15:56:31 sping Exp $
+
+*uriparser-0.8.1 (20 Oct 2014)
+
+  20 Oct 2014; Sebastian Pipping sp...@gentoo.org +uriparser-0.8.1.ebuild:
+  Bump to 0.8.1
 
   24 Mar 2014; Agostino Sarubbo a...@gentoo.org uriparser-0.8.0.ebuild:
   Stable for ppc, wrt bug #502726



1.1  dev-libs/uriparser/uriparser-0.8.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/uriparser/uriparser-0.8.1.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/uriparser/uriparser-0.8.1.ebuild?rev=1.1content-type=text/plain

Index: uriparser-0.8.1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/uriparser/uriparser-0.8.1.ebuild,v 
1.1 2014/10/20 15:56:31 sping Exp $

EAPI=4

inherit eutils

DESCRIPTION=Uriparser is a strictly RFC 3986 compliant URI parsing library in 
C
HOMEPAGE=http://uriparser.sourceforge.net/;
SRC_URI=mirror://sourceforge/${PN}/${P}.tar.bz2

LICENSE=BSD
SLOT=0
KEYWORDS=~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos 
~x86-solaris
IUSE=doc qt4 test unicode

RDEPEND=
DEPEND=virtual/pkgconfig
doc? ( =app-doc/doxygen-1.5.8
qt4? ( dev-qt/qthelp:4 ) )
test? ( =dev-util/cpptest-1.1.1 )

REQUIRED_USE=test? ( unicode )

src_configure() {
econf \
--disable-sizedown \
$(use_enable test) \
--enable-char \
$(use_enable unicode wchar_t) \
$(use_enable doc) \
--disable-dependency-tracking \
--docdir=/usr/share/doc/${PF}/
}

src_install() {
emake DESTDIR=${D} install || die make install failed
dodoc AUTHORS ChangeLog THANKS || die

if use doc  use qt4; then
insinto /usr/share/doc/${PF}/
doins doc/*.qch || die  # Using doins to avoid dodoc's 
compression
fi
}






[gentoo-commits] gentoo-x86 commit in net-misc/tor: tor-0.2.5.9_rc.ebuild ChangeLog tor-0.2.5.8_rc.ebuild tor-0.2.5.8_rc-r1.ebuild tor-0.2.5.7_rc.ebuild

2014-10-20 Thread Anthony G. Basile (blueness)
blueness14/10/20 16:48:46

  Modified: ChangeLog
  Added:tor-0.2.5.9_rc.ebuild
  Removed:  tor-0.2.5.8_rc.ebuild tor-0.2.5.8_rc-r1.ebuild
tor-0.2.5.7_rc.ebuild
  Log:
  Version bump RC
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.434net-misc/tor/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/tor/ChangeLog?rev=1.434view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/tor/ChangeLog?rev=1.434content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/tor/ChangeLog?r1=1.433r2=1.434

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/tor/ChangeLog,v
retrieving revision 1.433
retrieving revision 1.434
diff -u -r1.433 -r1.434
--- ChangeLog   23 Sep 2014 23:14:00 -  1.433
+++ ChangeLog   20 Oct 2014 16:48:46 -  1.434
@@ -1,6 +1,12 @@
 # ChangeLog for net-misc/tor
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/tor/ChangeLog,v 1.433 2014/09/23 
23:14:00 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/tor/ChangeLog,v 1.434 2014/10/20 
16:48:46 blueness Exp $
+
+*tor-0.2.5.9_rc (20 Oct 2014)
+
+  20 Oct 2014; Anthony G. Basile bluen...@gentoo.org +tor-0.2.5.9_rc.ebuild,
+  -tor-0.2.5.7_rc.ebuild, -tor-0.2.5.8_rc-r1.ebuild, -tor-0.2.5.8_rc.ebuild:
+  Version bump RC
 
 *tor-0.2.5.8_rc-r1 (23 Sep 2014)
 



1.1  net-misc/tor/tor-0.2.5.9_rc.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/tor/tor-0.2.5.9_rc.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/tor/tor-0.2.5.9_rc.ebuild?rev=1.1content-type=text/plain

Index: tor-0.2.5.9_rc.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/tor/tor-0.2.5.9_rc.ebuild,v 1.1 
2014/10/20 16:48:46 blueness Exp $

EAPI=5

inherit eutils flag-o-matic readme.gentoo systemd toolchain-funcs versionator 
user

MY_PV=$(replace_version_separator 4 -)
MY_PF=${PN}-${MY_PV}
DESCRIPTION=Anonymizing overlay network for TCP
HOMEPAGE=http://www.torproject.org/;
SRC_URI=https://www.torproject.org/dist/${MY_PF}.tar.gz
https://archive.torproject.org/tor-package-archive/${MY_PF}.tar.gz;
S=${WORKDIR}/${MY_PF}

LICENSE=BSD GPL-2
SLOT=0
KEYWORDS=~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd
IUSE=-bufferevents +ecc nat-pmp selinux stats tor-hardening transparent-proxy 
threads test upnp web

DEPEND=dev-libs/openssl
sys-libs/zlib
dev-libs/libevent
bufferevents? ( dev-libs/libevent[ssl] )
nat-pmp? ( net-libs/libnatpmp )
upnp? ( net-libs/miniupnpc )
selinux? ( sec-policy/selinux-tor )
RDEPEND=${DEPEND}

pkg_setup() {
enewgroup tor
enewuser tor -1 -1 /var/lib/tor tor
}

src_prepare() {
epatch ${FILESDIR}/${PN}-0.2.3.14_alpha-torrc.sample.patch
}

src_configure() {
# Upstream isn't sure of all the user provided CFLAGS that
# will break tor, but does recommend against -fstrict-aliasing.
# We'll filter-flags them here as we encounter them.
filter-flags -fstrict-aliasing
econf \
--disable-buf-freelists \
--enable-asciidoc \
--docdir=/usr/share/doc/${PF} \
$(use_enable stats instrument-downloads) \
$(use_enable bufferevents) \
$(use_enable ecc curve25519) \
$(use_enable nat-pmp) \
$(use_enable tor-hardening gcc-hardening) \
$(use_enable tor-hardening linker-hardening) \
$(use_enable transparent-proxy transparent) \
$(use_enable threads) \
$(use_enable upnp) \
$(use_enable web tor2web-mode) \
$(use_enable test unittests) \
$(use_enable test coverage)
}

src_test() {
emake check
}

src_install() {
readme.gentoo_create_doc

newconfd ${FILESDIR}/tor.confd tor
newinitd ${FILESDIR}/tor.initd-r7 tor
systemd_dounit ${FILESDIR}/${PN}.service
systemd_dotmpfilesd ${FILESDIR}/${PN}.conf

emake DESTDIR=${D} install

keepdir /var/lib/tor

dodoc README ChangeLog ReleaseNotes doc/HACKING

fperms 750 /var/lib/tor
fowners tor:tor /var/lib/tor

insinto /etc/tor/
newins ${FILESDIR}/torrc-r1 torrc
}

pkg_postinst() {
readme.gentoo_pkg_postinst

if [[ $(gcc-major-version) -eq 4  $(gcc-minor-version) -eq 8  
$(gcc-micro-version) -ge 1 ]] ; then
ewarn Due to a bug in  =gcc-4.8.1, 

[gentoo-commits] proj/qt:master commit in: app-admin/lxqt-admin/

2014-10-20 Thread Davide Pesavento
commit: 280af55f2c136e1619275c8e95338e4c2c887797
Author: Jauhien Piatlicki jauhien AT gentoo DOT org
AuthorDate: Mon Oct 20 14:18:31 2014 +
Commit: Davide Pesavento pesa AT gentoo DOT org
CommitDate: Mon Oct 20 14:18:31 2014 +
URL:http://sources.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=280af55f

[app-admin/lxqt-admin] update live ebuild, drop QT4 support

---
 app-admin/lxqt-admin/lxqt-admin-.ebuild | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/app-admin/lxqt-admin/lxqt-admin-.ebuild 
b/app-admin/lxqt-admin/lxqt-admin-.ebuild
index cdee4d5..5725b1c 100644
--- a/app-admin/lxqt-admin/lxqt-admin-.ebuild
+++ b/app-admin/lxqt-admin/lxqt-admin-.ebuild
@@ -16,7 +16,6 @@ SLOT=0
 
 DEPEND=dev-libs/glib:2
dev-libs/liboobs
-   dev-qt/qtcore:4
-   dev-qt/qtgui:4
+   dev-qt/qtwidgets:5
~lxqt-base/liblxqt-${PV}
 RDEPEND=${DEPEND}



[gentoo-commits] proj/qt:master commit in: lxqt-base/liblxqt-mount/

2014-10-20 Thread Davide Pesavento
commit: 291937d9f82cd66307f0143404557b44af8210d9
Author: Jauhien Piatlicki jauhien AT gentoo DOT org
AuthorDate: Mon Oct 20 09:45:33 2014 +
Commit: Davide Pesavento pesa AT gentoo DOT org
CommitDate: Mon Oct 20 09:45:46 2014 +
URL:http://sources.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=291937d9

[liblxqt-mount] update live ebuild, drop QT4 support

---
 lxqt-base/liblxqt-mount/liblxqt-mount-.ebuild | 10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/lxqt-base/liblxqt-mount/liblxqt-mount-.ebuild 
b/lxqt-base/liblxqt-mount/liblxqt-mount-.ebuild
index 8dbd564..23e4968 100644
--- a/lxqt-base/liblxqt-mount/liblxqt-mount-.ebuild
+++ b/lxqt-base/liblxqt-mount/liblxqt-mount-.ebuild
@@ -14,16 +14,16 @@ if [[ ${PV} = ** ]]; then
 else
SRC_URI=http://lxqt.org/downloads/${PV}/${P}.tar.xz;
KEYWORDS=~amd64 ~x86
-   S=${WORKDIR}
 fi
 
 LICENSE=GPL-2 LGPL-2.1+
 SLOT=0
 
-DEPEND=dev-qt/qtcore:4
-   dev-qt/qtdbus:4
-   dev-qt/qtgui:4
-   lxqt-base/liblxqt
+DEPEND=dev-qt/qtcore:5
+   dev-qt/qtdbus:5
+   dev-qt/qtgui:5
+   dev-qt/linguist-tools:5
+   ~lxqt-base/liblxqt-${PV}
sys-fs/udisks:2
x11-libs/libX11
virtual/udev



[gentoo-commits] proj/qt:master commit in: razorqt-base/libqtxdg/

2014-10-20 Thread Davide Pesavento
commit: 76090721163a7e5ac0b9d934dc3e5ae180b6e085
Author: Jauhien Piatlicki jauhien AT gentoo DOT org
AuthorDate: Mon Oct 20 09:49:51 2014 +
Commit: Davide Pesavento pesa AT gentoo DOT org
CommitDate: Mon Oct 20 09:49:51 2014 +
URL:http://sources.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=76090721

[razorqt-base/libqtxdg] fix indentation

---
 razorqt-base/libqtxdg/libqtxdg-.ebuild | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/razorqt-base/libqtxdg/libqtxdg-.ebuild 
b/razorqt-base/libqtxdg/libqtxdg-.ebuild
index 54ac184..56154e5 100644
--- a/razorqt-base/libqtxdg/libqtxdg-.ebuild
+++ b/razorqt-base/libqtxdg/libqtxdg-.ebuild
@@ -28,8 +28,7 @@ CDEPEND=
dev-qt/linguist-tools:5
 
 DEPEND=${CDEPEND}
-   test? (
-   dev-qt/qttest:5 )
+   test? ( dev-qt/qttest:5 )
 
 RDEPEND=${CDEPEND}
x11-misc/xdg-utils



[gentoo-commits] proj/qt:master commit in: lxqt-base/lxqt-about/

2014-10-20 Thread Davide Pesavento
commit: 306b15ad715459ef6a1c6de83f6c84073ab53016
Author: Jauhien Piatlicki jauhien AT gentoo DOT org
AuthorDate: Mon Oct 20 09:57:01 2014 +
Commit: Davide Pesavento pesa AT gentoo DOT org
CommitDate: Mon Oct 20 09:57:01 2014 +
URL:http://sources.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=306b15ad

[lxqt-base/lxqt-about] update live ebuild, drop QT4 support

---
 lxqt-base/lxqt-about/lxqt-about-.ebuild | 7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/lxqt-base/lxqt-about/lxqt-about-.ebuild 
b/lxqt-base/lxqt-about/lxqt-about-.ebuild
index 0469ecd..b23bc0a 100644
--- a/lxqt-base/lxqt-about/lxqt-about-.ebuild
+++ b/lxqt-base/lxqt-about/lxqt-about-.ebuild
@@ -14,12 +14,13 @@ if [[ ${PV} = ** ]]; then
 else
SRC_URI=http://lxqt.org/downloads/${PV}/${P}.tar.xz;
KEYWORDS=~amd64 ~x86
-   S=${WORKDIR}
 fi
 
 LICENSE=GPL-2 LGPL-2.1+
 SLOT=0
 
-DEPEND=dev-qt/qtgui:4
-   lxqt-base/liblxqt
+DEPEND=dev-qt/qtdbus:5
+   dev-qt/qtwidgets:5
+   dev-qt/qtx11extras:5
+   ~lxqt-base/liblxqt-${PV}
 RDEPEND=${DEPEND}



[gentoo-commits] gentoo-x86 commit in eclass: toolchain.eclass

2014-10-20 Thread Mike Frysinger (vapier)
vapier  14/10/20 17:16:45

  Modified: toolchain.eclass
  Log:
  restrict --enable-linker-build-id to known ELF targets #525942

Revision  ChangesPath
1.640eclass/toolchain.eclass

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

Index: toolchain.eclass
===
RCS file: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v
retrieving revision 1.639
retrieving revision 1.640
diff -u -r1.639 -r1.640
--- toolchain.eclass19 Oct 2014 05:42:28 -  1.639
+++ toolchain.eclass20 Oct 2014 17:16:45 -  1.640
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.639 2014/10/19 
05:42:28 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.640 2014/10/20 
17:16:45 vapier Exp $
 
 # Maintainer: Toolchain Ninjas toolch...@gentoo.org
 
@@ -894,11 +894,15 @@
confgcc+=( --enable-libstdcxx-time )
fi
 
-   # Turn on the -Wl,--build-id flag by default.
+   # Turn on the -Wl,--build-id flag by default for ELF targets. #525942
# This helps with locating debug files.
-   tc_version_is_at_least 4.5  confgcc+=(
-   --enable-linker-build-id
-   )
+   case ${CTARGET} in
+   *-linux-*|*-elf|*-eabi)
+   tc_version_is_at_least 4.5  confgcc+=(
+   --enable-linker-build-id
+   )
+   ;;
+   esac
 
# newer gcc versions like to bootstrap themselves with C++,
# so we need to manually disable it ourselves






[gentoo-commits] gentoo-x86 commit in dev-python/cov-core: ChangeLog cov-core-1.7.ebuild

2014-10-20 Thread Jeroen Roovers (jer)
jer 14/10/20 17:19:52

  Modified: ChangeLog cov-core-1.7.ebuild
  Log:
  Marked ~hppa (bug #525562).
  
  (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --ignore-arches, 
signed Manifest commit with key A792A613)

Revision  ChangesPath
1.9  dev-python/cov-core/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cov-core/ChangeLog?rev=1.9view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cov-core/ChangeLog?rev=1.9content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cov-core/ChangeLog?r1=1.8r2=1.9

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/cov-core/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog   16 Oct 2014 12:28:35 -  1.8
+++ ChangeLog   20 Oct 2014 17:19:52 -  1.9
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/cov-core
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/cov-core/ChangeLog,v 1.8 
2014/10/16 12:28:35 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/cov-core/ChangeLog,v 1.9 
2014/10/20 17:19:52 jer Exp $
+
+  20 Oct 2014; Jeroen Roovers j...@gentoo.org cov-core-1.7.ebuild:
+  Marked ~hppa (bug #525562).
 
   16 Oct 2014; Ian Delaney idel...@gentoo.org cov-core-1.7.ebuild:
   add keywords for prefix



1.9  dev-python/cov-core/cov-core-1.7.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cov-core/cov-core-1.7.ebuild?rev=1.9view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cov-core/cov-core-1.7.ebuild?rev=1.9content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cov-core/cov-core-1.7.ebuild?r1=1.8r2=1.9

Index: cov-core-1.7.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/cov-core/cov-core-1.7.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- cov-core-1.7.ebuild 16 Oct 2014 12:28:35 -  1.8
+++ cov-core-1.7.ebuild 20 Oct 2014 17:19:52 -  1.9
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/cov-core/cov-core-1.7.ebuild,v 
1.8 2014/10/16 12:28:35 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/cov-core/cov-core-1.7.ebuild,v 
1.9 2014/10/20 17:19:52 jer Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE=MIT
 SLOT=0
-KEYWORDS=~amd64 ~arm ~x86 ~amd64-linux ~x86-linux
+KEYWORDS=~amd64 ~arm ~hppa ~x86 ~amd64-linux ~x86-linux
 IUSE=
 
 RDEPEND=dev-python/coverage[${PYTHON_USEDEP}]






[gentoo-commits] gentoo-x86 commit in dev-python/pytest-cov: pytest-cov-1.6.ebuild ChangeLog

2014-10-20 Thread Jeroen Roovers (jer)
jer 14/10/20 17:20:10

  Modified: pytest-cov-1.6.ebuild ChangeLog
  Log:
  Marked ~hppa (bug #525562).
  
  (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --ignore-arches, 
signed Manifest commit with key A792A613)

Revision  ChangesPath
1.8  dev-python/pytest-cov/pytest-cov-1.6.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pytest-cov/pytest-cov-1.6.ebuild?rev=1.8view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pytest-cov/pytest-cov-1.6.ebuild?rev=1.8content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pytest-cov/pytest-cov-1.6.ebuild?r1=1.7r2=1.8

Index: pytest-cov-1.6.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/pytest-cov/pytest-cov-1.6.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- pytest-cov-1.6.ebuild   16 Oct 2014 12:02:33 -  1.7
+++ pytest-cov-1.6.ebuild   20 Oct 2014 17:20:10 -  1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-python/pytest-cov/pytest-cov-1.6.ebuild,v 1.7 
2014/10/16 12:02:33 idella4 Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-python/pytest-cov/pytest-cov-1.6.ebuild,v 1.8 
2014/10/20 17:20:10 jer Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE=MIT
 SLOT=0
-KEYWORDS=~amd64 ~arm ~x86 ~amd64-linux ~x86-linux
+KEYWORDS=~amd64 ~arm ~hppa ~x86 ~amd64-linux ~x86-linux
 IUSE=
 
 DEPEND=



1.8  dev-python/pytest-cov/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pytest-cov/ChangeLog?rev=1.8view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pytest-cov/ChangeLog?rev=1.8content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pytest-cov/ChangeLog?r1=1.7r2=1.8

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/pytest-cov/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog   16 Oct 2014 12:02:33 -  1.7
+++ ChangeLog   20 Oct 2014 17:20:10 -  1.8
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/pytest-cov
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest-cov/ChangeLog,v 1.7 
2014/10/16 12:02:33 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest-cov/ChangeLog,v 1.8 
2014/10/20 17:20:10 jer Exp $
+
+  20 Oct 2014; Jeroen Roovers j...@gentoo.org pytest-cov-1.6.ebuild:
+  Marked ~hppa (bug #525562).
 
   16 Oct 2014; Ian Delaney idel...@gentoo.org pytest-cov-1.6.ebuild:
   add keywords for prefix






[gentoo-commits] gentoo-x86 commit in dev-python/python-sqlparse: ChangeLog python-sqlparse-0.1.12.ebuild

2014-10-20 Thread Jeroen Roovers (jer)
jer 14/10/20 17:20:30

  Modified: ChangeLog python-sqlparse-0.1.12.ebuild
  Log:
  Marked ~hppa (bug #525562).
  
  (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --ignore-arches, 
signed Manifest commit with key A792A613)

Revision  ChangesPath
1.34 dev-python/python-sqlparse/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/python-sqlparse/ChangeLog,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -r1.33 -r1.34
--- ChangeLog   16 Oct 2014 12:23:33 -  1.33
+++ ChangeLog   20 Oct 2014 17:20:30 -  1.34
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/python-sqlparse
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/python-sqlparse/ChangeLog,v 1.33 
2014/10/16 12:23:33 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/python-sqlparse/ChangeLog,v 1.34 
2014/10/20 17:20:30 jer Exp $
+
+  20 Oct 2014; Jeroen Roovers j...@gentoo.org python-sqlparse-0.1.12.ebuild:
+  Marked ~hppa (bug #525562).
 
 *python-sqlparse-0.1.12 (16 Oct 2014)
 



1.2  dev-python/python-sqlparse/python-sqlparse-0.1.12.ebuild

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

Index: python-sqlparse-0.1.12.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-python/python-sqlparse/python-sqlparse-0.1.12.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- python-sqlparse-0.1.12.ebuild   16 Oct 2014 12:23:33 -  1.1
+++ python-sqlparse-0.1.12.ebuild   20 Oct 2014 17:20:30 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-python/python-sqlparse/python-sqlparse-0.1.12.ebuild,v
 1.1 2014/10/16 12:23:33 idella4 Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-python/python-sqlparse/python-sqlparse-0.1.12.ebuild,v
 1.2 2014/10/20 17:20:30 jer Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 SRC_URI=https://github.com/andialbrecht/sqlparse/archive/${PV}.tar.gz - 
${P}.tar.gz
 
 SLOT=0
-KEYWORDS=~amd64 ~arm ~x86 ~amd64-linux ~x86-linux
+KEYWORDS=~amd64 ~arm ~hppa ~x86 ~amd64-linux ~x86-linux
 LICENSE=BSD-2
 IUSE=doc examples test
 






[gentoo-commits] gentoo-x86 commit in dev-python/sqlalchemy-migrate: ChangeLog sqlalchemy-migrate-0.9.2.ebuild

2014-10-20 Thread Jeroen Roovers (jer)
jer 14/10/20 17:21:02

  Modified: ChangeLog sqlalchemy-migrate-0.9.2.ebuild
  Log:
  Marked ~hppa (bug #525246).
  
  (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --ignore-arches, 
signed Manifest commit with key A792A613)

Revision  ChangesPath
1.36 dev-python/sqlalchemy-migrate/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sqlalchemy-migrate/ChangeLog?rev=1.36view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sqlalchemy-migrate/ChangeLog?rev=1.36content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sqlalchemy-migrate/ChangeLog?r1=1.35r2=1.36

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/sqlalchemy-migrate/ChangeLog,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -r1.35 -r1.36
--- ChangeLog   20 Oct 2014 04:14:49 -  1.35
+++ ChangeLog   20 Oct 2014 17:21:02 -  1.36
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/sqlalchemy-migrate
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/sqlalchemy-migrate/ChangeLog,v 
1.35 2014/10/20 04:14:49 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/sqlalchemy-migrate/ChangeLog,v 
1.36 2014/10/20 17:21:02 jer Exp $
+
+  20 Oct 2014; Jeroen Roovers j...@gentoo.org 
sqlalchemy-migrate-0.9.2.ebuild:
+  Marked ~hppa (bug #525246).
 
 *sqlalchemy-migrate-0.9.2 (20 Oct 2014)
 



1.2  
dev-python/sqlalchemy-migrate/sqlalchemy-migrate-0.9.2.ebuild

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

Index: sqlalchemy-migrate-0.9.2.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-python/sqlalchemy-migrate/sqlalchemy-migrate-0.9.2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sqlalchemy-migrate-0.9.2.ebuild 20 Oct 2014 04:14:49 -  1.1
+++ sqlalchemy-migrate-0.9.2.ebuild 20 Oct 2014 17:21:02 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-python/sqlalchemy-migrate/sqlalchemy-migrate-0.9.2.ebuild,v
 1.1 2014/10/20 04:14:49 idella4 Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-python/sqlalchemy-migrate/sqlalchemy-migrate-0.9.2.ebuild,v
 1.2 2014/10/20 17:21:02 jer Exp $
 
 EAPI=5
 # py3 has a syntax error X2 output @ install however it is non fatal
@@ -14,7 +14,7 @@
 
 LICENSE=MIT
 SLOT=0
-KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~x86
+KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86
 IUSE=
 
 DEPEND=dev-python/setuptools[${PYTHON_USEDEP}]






[gentoo-commits] gentoo-x86 commit in dev-vcs/git-cola/files: README.gentoo

2014-10-20 Thread Justin Lecher (jlec)
jlec14/10/20 17:21:42

  Modified: README.gentoo
  Log:
  dev-vcs/git-cola: Fix borked README, #526096
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
B9D4F231BD1558AB!)

Revision  ChangesPath
1.2  dev-vcs/git-cola/files/README.gentoo

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/git-cola/files/README.gentoo?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/git-cola/files/README.gentoo?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/git-cola/files/README.gentoo?r1=1.1r2=1.2

Index: README.gentoo
===
RCS file: /var/cvsroot/gentoo-x86/dev-vcs/git-cola/files/README.gentoo,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- README.gentoo   25 Jun 2014 13:54:25 -  1.1
+++ README.gentoo   20 Oct 2014 17:21:42 -  1.2
@@ -1,10 +1,3 @@
-   PYTHONPATH=${S}:${S}/build/lib:${PYTHONPATH} LC_ALL=C nosetests \
-   --verbose --with-doctest --with-id --exclude=jsonpickle 
--exclude=json \
-   || die running nosetests failed
-}
-
-pkg_postinst() {
-   elog Please make sure you have either a SSH key management installed 
and activated or
-   elog installed a SSH askpass app like net-misc/x11-ssh-askpass.
-   elog Otherwise git-cole may hang when pushing/pulling from remote git 
repositories via SSH. 
-}
+Please make sure you have either a SSH key management installed and activated 
or
+installed a SSH askpass app like net-misc/x11-ssh-askpass.
+Otherwise git-cole may hang when pushing/pulling from remote git repositories 
via SSH.






[gentoo-commits] gentoo-x86 commit in dev-vcs/git-cola: ChangeLog

2014-10-20 Thread Justin Lecher (jlec)
jlec14/10/20 17:21:42

  Modified: ChangeLog
  Log:
  dev-vcs/git-cola: Fix borked README, #526096
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
B9D4F231BD1558AB!)

Revision  ChangesPath
1.35 dev-vcs/git-cola/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/git-cola/ChangeLog?rev=1.35view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/git-cola/ChangeLog?rev=1.35content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/git-cola/ChangeLog?r1=1.34r2=1.35

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-vcs/git-cola/ChangeLog,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- ChangeLog   1 Oct 2014 12:38:40 -   1.34
+++ ChangeLog   20 Oct 2014 17:21:42 -  1.35
@@ -1,6 +1,9 @@
 # ChangeLog for dev-vcs/git-cola
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-vcs/git-cola/ChangeLog,v 1.34 
2014/10/01 12:38:40 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-vcs/git-cola/ChangeLog,v 1.35 
2014/10/20 17:21:42 jlec Exp $
+
+  20 Oct 2014; Justin Lecher j...@gentoo.org files/README.gentoo:
+  Fix borked README, #526096
 
 *git-cola-2.0.7 (01 Oct 2014)
 






[gentoo-commits] gentoo-x86 commit in sys-boot/grub: grub-0.97-r14.ebuild ChangeLog

2014-10-20 Thread Ian Stakenvicius (axs)
axs 14/10/20 17:22:05

  Modified: ChangeLog
  Added:grub-0.97-r14.ebuild
  Log:
  revbump of grub:0 , supporting gx86-multilib (bug 510758) and addressing bugs 
479296, 466536 and 418287
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key 
2B6559ED)

Revision  ChangesPath
1.322sys-boot/grub/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-boot/grub/ChangeLog?rev=1.322view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-boot/grub/ChangeLog?rev=1.322content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-boot/grub/ChangeLog?r1=1.321r2=1.322

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-boot/grub/ChangeLog,v
retrieving revision 1.321
retrieving revision 1.322
diff -u -r1.321 -r1.322
--- ChangeLog   19 Oct 2014 01:51:58 -  1.321
+++ ChangeLog   20 Oct 2014 17:22:05 -  1.322
@@ -1,6 +1,14 @@
 # ChangeLog for sys-boot/grub
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-boot/grub/ChangeLog,v 1.321 2014/10/19 
01:51:58 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-boot/grub/ChangeLog,v 1.322 2014/10/20 
17:22:05 axs Exp $
+
+*grub-0.97-r14 (20 Oct 2014)
+
+  20 Oct 2014; Ian Stakenvicius (_AxS_) a...@gentoo.org
+  +files/grub-0.97-force-ld.bfd.patch, +grub-0.97-r14.ebuild,
+  files/grub.conf.gentoo:
+  revbump of grub:0 , supporting gx86-multilib (bug 510758) and addressing bugs
+  479296, 466536 and 418287
 
   19 Oct 2014; Mike Gilbert flop...@gentoo.org grub--r1.ebuild:
   Update to latest unifont.



1.1  sys-boot/grub/grub-0.97-r14.ebuild

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

Index: grub-0.97-r14.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-boot/grub/grub-0.97-r14.ebuild,v 1.1 
2014/10/20 17:22:05 axs Exp $

# XXX: we need to review menu.lst vs grub.conf handling.  We've been converting
#  all systems to grub.conf (and symlinking menu.lst to grub.conf), but
#  we never updated any of the source code (it still all wants menu.lst),
#  and there is no indication that upstream is making the transition.

# If you need to roll a new grub-static distfile, here is how.
# - Robin H. Johnson robb...@gentoo.org - 29 Nov 2010
# FEATURES='-noauto -noinfo -nodoc -noman -splitdebug nostrip' \
# USE='static -ncurses -netboot -custom-cflags' \
# PORTAGE_COMPRESS=true GRUB_STATIC_PACKAGE_BUILDING=1 ebuild \
# grub-${PVR}.ebuild clean package  \
# qtbz2 -s -j ${PKGDIR}/${CAT}/${PF}.tbz2  \
# mv ${PF}.tar.bz2 ${DISTDIR}/grub-static-${PVR}.tar.bz2

EAPI=4

inherit eutils mount-boot toolchain-funcs linux-info flag-o-matic autotools 
pax-utils multiprocessing

PATCHVER=1.14 # Should match the revision ideally
DESCRIPTION=GNU GRUB Legacy boot loader
HOMEPAGE=http://www.gnu.org/software/grub/;
SRC_URI=mirror://gentoo/${P}.tar.gz
mirror://gnu-alpha/${PN}/${P}.tar.gz
mirror://gentoo/splash.xpm.gz
mirror://gentoo/${P}-patches-${PATCHVER}.tar.bz2

LICENSE=GPL-2
SLOT=0
KEYWORDS=~amd64 ~x86 ~x86-fbsd
IUSE=custom-cflags ncurses netboot static

LIB_DEPEND=ncurses? (
=sys-libs/ncurses-5.9-r3[static-libs(+)]
amd64? ( || (
=sys-libs/ncurses-5.9-r3[abi_x86_32(-)]
app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)]
) )
)
RDEPEND=!static? ( ${LIB_DEPEND//\[static-libs(+)\]/} )
DEPEND=${RDEPEND}
static? ( ${LIB_DEPEND} )

pkg_setup() {
case $(tc-arch) in
amd64) CONFIG_CHECK='~IA32_EMULATION' check_extra_config ;;
esac
}

src_prepare() {
# Grub will not handle a kernel larger than EXTENDED_MEMSIZE Mb as
# discovered in bug 160801. We can change this, however, using larger 
values
# for this variable means that Grub needs more memory to run and boot. 
For a
# kernel of size N, Grub needs (N+1)*2.  Advanced users should set a 
custom
# value in make.conf, it is possible to make kernels ~16Mb in size, but 
it
# needs the kitchen sink built-in.
local t=custom
if [[ -z ${GRUB_MAX_KERNEL_SIZE} ]] ; then
case $(tc-arch) in
amd64) GRUB_MAX_KERNEL_SIZE=9 ;;
x86)   GRUB_MAX_KERNEL_SIZE=5 ;;
esac
t=default
fi
einfo Grub will support the ${t} maximum kernel size of 
${GRUB_MAX_KERNEL_SIZE} Mb (GRUB_MAX_KERNEL_SIZE)

sed -i \

[gentoo-commits] gentoo-x86 commit in sys-boot/grub: grub-0.97-r14.ebuild ChangeLog

2014-10-20 Thread Ian Stakenvicius (axs)
axs 14/10/20 17:29:22

  Modified: grub-0.97-r14.ebuild ChangeLog
  Log:
  A quick fix regarding amd64 static building without ncurses
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key 
2B6559ED)

Revision  ChangesPath
1.2  sys-boot/grub/grub-0.97-r14.ebuild

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

Index: grub-0.97-r14.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-boot/grub/grub-0.97-r14.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- grub-0.97-r14.ebuild20 Oct 2014 17:22:05 -  1.1
+++ grub-0.97-r14.ebuild20 Oct 2014 17:29:22 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-boot/grub/grub-0.97-r14.ebuild,v 1.1 
2014/10/20 17:22:05 axs Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-boot/grub/grub-0.97-r14.ebuild,v 1.2 
2014/10/20 17:29:22 axs Exp $
 
 # XXX: we need to review menu.lst vs grub.conf handling.  We've been converting
 #  all systems to grub.conf (and symlinking menu.lst to grub.conf), but
@@ -115,7 +115,7 @@
eerror is specifically intended for building the 
tarballs for the
eerror grub-static package via USE='static -ncurses'.
eerror All bets are now off.
-   elif ! has_package 
=sys-libs/ncurses-5.9-r3[abi_x86_32(-),static-libs]; then
+   elif use ncurses  ! has_version 
=sys-libs/ncurses-5.9-r3[abi_x86_32,static-libs]; then
die You must use the grub-static package if you want a 
static Grub on amd64!
fi
fi



1.323sys-boot/grub/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-boot/grub/ChangeLog?rev=1.323view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-boot/grub/ChangeLog?rev=1.323content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-boot/grub/ChangeLog?r1=1.322r2=1.323

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-boot/grub/ChangeLog,v
retrieving revision 1.322
retrieving revision 1.323
diff -u -r1.322 -r1.323
--- ChangeLog   20 Oct 2014 17:22:05 -  1.322
+++ ChangeLog   20 Oct 2014 17:29:22 -  1.323
@@ -1,6 +1,9 @@
 # ChangeLog for sys-boot/grub
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-boot/grub/ChangeLog,v 1.322 2014/10/20 
17:22:05 axs Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-boot/grub/ChangeLog,v 1.323 2014/10/20 
17:29:22 axs Exp $
+
+  20 Oct 2014; Ian Stakenvicius (_AxS_) a...@gentoo.org grub-0.97-r14.ebuild:
+  A quick fix regarding amd64 static building without ncurses
 
 *grub-0.97-r14 (20 Oct 2014)
 






[gentoo-commits] gentoo-x86 commit in x11-misc/xautolock: ChangeLog xautolock-2.2.ebuild

2014-10-20 Thread Jeroen Roovers (jer)
jer 14/10/20 17:34:43

  Modified: ChangeLog xautolock-2.2.ebuild
  Log:
  Add alternative dependency on x11-misc/slim (remove x11-misc/slimlock) by 
eroen (bug #489018). EAPI bump.
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)

Revision  ChangesPath
1.31 x11-misc/xautolock/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xautolock/ChangeLog?rev=1.31view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xautolock/ChangeLog?rev=1.31content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xautolock/ChangeLog?r1=1.30r2=1.31

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-misc/xautolock/ChangeLog,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- ChangeLog   10 Aug 2014 20:04:48 -  1.30
+++ ChangeLog   20 Oct 2014 17:34:43 -  1.31
@@ -1,6 +1,10 @@
 # ChangeLog for x11-misc/xautolock
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/xautolock/ChangeLog,v 1.30 
2014/08/10 20:04:48 slyfox Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/xautolock/ChangeLog,v 1.31 
2014/10/20 17:34:43 jer Exp $
+
+  20 Oct 2014; Jeroen Roovers j...@gentoo.org xautolock-2.2.ebuild:
+  Add alternative dependency on x11-misc/slim (remove x11-misc/slimlock) by
+  eroen (bug #489018). EAPI bump.
 
   10 Aug 2014; Sergei Trofimovich sly...@gentoo.org xautolock-2.2.ebuild:
   QA: drop trailing '.' from DESCRIPTION



1.11 x11-misc/xautolock/xautolock-2.2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xautolock/xautolock-2.2.ebuild?rev=1.11view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xautolock/xautolock-2.2.ebuild?rev=1.11content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xautolock/xautolock-2.2.ebuild?r1=1.10r2=1.11

Index: xautolock-2.2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/x11-misc/xautolock/xautolock-2.2.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- xautolock-2.2.ebuild10 Aug 2014 20:04:48 -  1.10
+++ xautolock-2.2.ebuild20 Oct 2014 17:34:43 -  1.11
@@ -1,7 +1,8 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/xautolock/xautolock-2.2.ebuild,v 
1.10 2014/08/10 20:04:48 slyfox Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/xautolock/xautolock-2.2.ebuild,v 
1.11 2014/10/20 17:34:43 jer Exp $
 
+EAPI=5
 inherit toolchain-funcs
 
 DESCRIPTION=An automatic X screen-locker/screen-saver
@@ -10,31 +11,38 @@
 LICENSE=GPL-2
 SLOT=0
 KEYWORDS=amd64 ppc sparc x86
-IUSE=
 
 RDEPEND=
|| (
x11-misc/alock
x11-misc/i3lock
-   x11-misc/slimlock
+   x11-misc/slim
x11-misc/slock
x11-misc/xlockmore
x11-misc/xtrlock
)
-   x11-libs/libXScrnSaver
-DEPEND=${RDEPEND}
-   x11-misc/imake
+   x11-libs/libXScrnSaver
+
+DEPEND=
+   ${RDEPEND}
app-text/rman
-   x11-proto/scrnsaverproto
+   x11-misc/imake
+   x11-proto/scrnsaverproto
+
 
-src_compile() {
+src_configure() {
xmkmf || die
-   emake EXTRA_LDOPTIONS=${LDFLAGS} CC=$(tc-getCC) \
-   CDEBUGFLAGS=${CFLAGS} || die
+}
+
+src_compile() {
+   emake \
+   CC=$(tc-getCC) \
+   CDEBUGFLAGS=${CFLAGS} \
+   EXTRA_LDOPTIONS=${LDFLAGS}
 }
 
 src_install () {
-   dobin xautolock || die
+   dobin xautolock
newman xautolock.man xautolock.1
-   dodoc Changelog Readme Todo || die
+   dodoc Changelog Readme Todo
 }






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

2014-10-20 Thread Mike Frysinger (vapier)
vapier  14/10/20 17:42:08

  Modified: net-tools-.ebuild ChangeLog
  Log:
  Drop USE=old-output flag.
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with 
key D2E96200)

Revision  ChangesPath
1.7  sys-apps/net-tools/net-tools-.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/net-tools/net-tools-.ebuild?rev=1.7view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/net-tools/net-tools-.ebuild?rev=1.7content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/net-tools/net-tools-.ebuild?r1=1.6r2=1.7

Index: net-tools-.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/net-tools/net-tools-.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- net-tools-.ebuild   7 Apr 2014 20:11:30 -   1.6
+++ net-tools-.ebuild   20 Oct 2014 17:42:08 -  1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/net-tools/net-tools-.ebuild,v 
1.6 2014/04/07 20:11:30 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/net-tools/net-tools-.ebuild,v 
1.7 2014/10/20 17:42:08 vapier Exp $
 
 EAPI=3
 
@@ -21,7 +21,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-IUSE=nls old-output selinux static
+IUSE=nls selinux static
 
 RDEPEND=!sys-apps/openrc-0.9.9.3
selinux? ( sys-libs/libselinux )
@@ -66,7 +66,6 @@
 
 src_prepare() {
if [[ -n ${PATCH_VER} ]] ; then
-   use old-output || 
EPATCH_EXCLUDE=0001-revert-621a2f376334f8097604b9fee5783e0f1141e66d-for-.patch
EPATCH_SUFFIX=patch EPATCH_FORCE=yes epatch 
${WORKDIR}/${P}-patches-${PATCH_VER}
fi
 }



1.152sys-apps/net-tools/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/net-tools/ChangeLog?rev=1.152view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/net-tools/ChangeLog?rev=1.152content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/net-tools/ChangeLog?r1=1.151r2=1.152

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/net-tools/ChangeLog,v
retrieving revision 1.151
retrieving revision 1.152
diff -u -r1.151 -r1.152
--- ChangeLog   19 Oct 2014 04:24:16 -  1.151
+++ ChangeLog   20 Oct 2014 17:42:08 -  1.152
@@ -1,6 +1,9 @@
 # ChangeLog for sys-apps/net-tools
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/net-tools/ChangeLog,v 1.151 
2014/10/19 04:24:16 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/net-tools/ChangeLog,v 1.152 
2014/10/20 17:42:08 vapier Exp $
+
+  20 Oct 2014; Mike Frysinger vap...@gentoo.org net-tools-.ebuild:
+  Drop USE=old-output flag.
 
 *net-tools-1.60_p20141019041918 (19 Oct 2014)
 






[gentoo-commits] gentoo-x86 commit in sys-libs/gdbm: gdbm-1.11.ebuild ChangeLog

2014-10-20 Thread Mike Frysinger (vapier)
vapier  14/10/20 17:43:50

  Modified: gdbm-1.11.ebuild ChangeLog
  Log:
  Mark arm64/m68k/s390/sh stable.
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with 
key D2E96200)

Revision  ChangesPath
1.15 sys-libs/gdbm/gdbm-1.11.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/gdbm/gdbm-1.11.ebuild?rev=1.15view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/gdbm/gdbm-1.11.ebuild?rev=1.15content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/gdbm/gdbm-1.11.ebuild?r1=1.14r2=1.15

Index: gdbm-1.11.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-libs/gdbm/gdbm-1.11.ebuild,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- gdbm-1.11.ebuild26 Aug 2014 11:02:23 -  1.14
+++ gdbm-1.11.ebuild20 Oct 2014 17:43:50 -  1.15
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/gdbm/gdbm-1.11.ebuild,v 1.14 
2014/08/26 11:02:23 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/gdbm/gdbm-1.11.ebuild,v 1.15 
2014/10/20 17:43:50 vapier Exp $
 
 EAPI=4
 
@@ -14,7 +14,7 @@
 
 LICENSE=GPL-3
 SLOT=0
-KEYWORDS=alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd 
~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris
+KEYWORDS=alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix 
~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
 IUSE=+berkdb exporter nls static-libs
 
 RDEPEND=



1.81 sys-libs/gdbm/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/gdbm/ChangeLog?rev=1.81view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/gdbm/ChangeLog?rev=1.81content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/gdbm/ChangeLog?r1=1.80r2=1.81

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-libs/gdbm/ChangeLog,v
retrieving revision 1.80
retrieving revision 1.81
diff -u -r1.80 -r1.81
--- ChangeLog   26 Aug 2014 11:02:23 -  1.80
+++ ChangeLog   20 Oct 2014 17:43:50 -  1.81
@@ -1,6 +1,9 @@
 # ChangeLog for sys-libs/gdbm
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/gdbm/ChangeLog,v 1.80 2014/08/26 
11:02:23 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/gdbm/ChangeLog,v 1.81 2014/10/20 
17:43:50 vapier Exp $
+
+  20 Oct 2014; Mike Frysinger vap...@gentoo.org gdbm-1.11.ebuild:
+  Mark arm64/m68k/s390/sh stable.
 
   26 Aug 2014; Michał Górny mgo...@gentoo.org gdbm-1.10-r1.ebuild,
   gdbm-1.11.ebuild:






[gentoo-commits] gentoo-x86 commit in mail-client/thunderbird: thunderbird-31.2.0-r1.ebuild ChangeLog thunderbird-31.2.0.ebuild

2014-10-20 Thread Ian Stakenvicius (axs)
axs 14/10/20 17:53:11

  Modified: ChangeLog
  Added:thunderbird-31.2.0-r1.ebuild
  Removed:  thunderbird-31.2.0.ebuild
  Log:
  added pax-mark -p for USE=jit per bug 519068
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key 
2B6559ED)

Revision  ChangesPath
1.303mail-client/thunderbird/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/thunderbird/ChangeLog?rev=1.303view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/thunderbird/ChangeLog?rev=1.303content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/thunderbird/ChangeLog?r1=1.302r2=1.303

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/mail-client/thunderbird/ChangeLog,v
retrieving revision 1.302
retrieving revision 1.303
diff -u -r1.302 -r1.303
--- ChangeLog   14 Oct 2014 20:05:59 -  1.302
+++ ChangeLog   20 Oct 2014 17:53:11 -  1.303
@@ -1,6 +1,12 @@
 # ChangeLog for mail-client/thunderbird
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-client/thunderbird/ChangeLog,v 1.302 
2014/10/14 20:05:59 axs Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-client/thunderbird/ChangeLog,v 1.303 
2014/10/20 17:53:11 axs Exp $
+
+*thunderbird-31.2.0-r1 (20 Oct 2014)
+
+  20 Oct 2014; Ian Stakenvicius (_AxS_) a...@gentoo.org
+  +thunderbird-31.2.0-r1.ebuild, -thunderbird-31.2.0.ebuild:
+  added pax-mark -p for USE=jit per bug 519068
 
 *thunderbird-31.2.0 (14 Oct 2014)
 



1.1  mail-client/thunderbird/thunderbird-31.2.0-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/thunderbird/thunderbird-31.2.0-r1.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/thunderbird/thunderbird-31.2.0-r1.ebuild?rev=1.1content-type=text/plain

Index: thunderbird-31.2.0-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/mail-client/thunderbird/thunderbird-31.2.0-r1.ebuild,v 
1.1 2014/10/20 17:53:11 axs Exp $

EAPI=5
WANT_AUTOCONF=2.1
MOZ_ESR=
MOZ_LIGHTNING_VER=3.3
MOZ_LIGHTNING_GDATA_VER=2.6.3

# This list can be updated using scripts/get_langs.sh from the mozilla overlay
MOZ_LANGS=(ar ast be bg bn-BD br ca cs da de el en en-GB en-US es-AR
es-ES et eu fi fr fy-NL ga-IE gd gl he hr hu hy-AM id is it ja ko lt nb-NO
nl nn-NO pa-IN pl pt-BR pt-PT rm ro ru si sk sl sq sr sv-SE ta-LK tr uk vi
zh-CN zh-TW )

# Convert the ebuild version to th firefox-24.0-patches-0.4.tar.xze upstream 
mozilla version, used by mozlinguas
MOZ_PV=${PV/_beta/b}
# ESR releases have slightly version numbers
if [[ ${MOZ_ESR} == 1 ]]; then
MOZ_PV=${MOZ_PV}esr
fi
MOZ_P=${PN}-${MOZ_PV}

# Enigmail version
EMVER=1.7.2
# Upstream ftp release URI that's used by mozlinguas.eclass
# We don't use the http mirror because it deletes old tarballs.
MOZ_FTP_URI=ftp://ftp.mozilla.org/pub/${PN}/releases/;
MOZ_HTTP_URI=http://ftp.mozilla.org/pub/${PN}/releases/;

MOZCONFIG_OPTIONAL_JIT=enabled
inherit flag-o-matic toolchain-funcs mozconfig-v5.31 makeedit multilib 
autotools pax-utils check-reqs nsplugins mozlinguas

DESCRIPTION=Thunderbird Mail Client
HOMEPAGE=http://www.mozilla.com/en-US/thunderbird/;

KEYWORDS=~alpha ~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux
SLOT=0
LICENSE=MPL-2.0 GPL-2 LGPL-2.1
IUSE=bindist crypt ldap +lightning +minimal mozdom selinux

PATCH=thunderbird-31.0-patches-0.1
PATCHFF=firefox-31.0-patches-0.2

SRC_URI=${SRC_URI}
${MOZ_FTP_URI}${MOZ_PV}/source/${MOZ_P}.source.tar.bz2
${MOZ_HTTP_URI}${MOZ_PV}/source/${MOZ_P}.source.tar.bz2
crypt? ( 
http://www.enigmail.net/download/source/enigmail-${EMVER}.tar.gz )
lightning? (

${MOZ_HTTP_URI/${PN}/calendar/lightning}${MOZ_LIGHTNING_VER}/linux/lightning.xpi
 - lightning-${MOZ_LIGHTNING_VER}.xpi

${MOZ_HTTP_URI/${PN}/calendar/lightning}${MOZ_LIGHTNING_GDATA_VER}/linux/gdata-provider.xpi
 - gdata-provider-${MOZ_LIGHTNING_GDATA_VER}.xpi
)
http://dev.gentoo.org/~anarchy/mozilla/patchsets/${PATCH}.tar.xz
http://dev.gentoo.org/~anarchy/mozilla/patchsets/${PATCHFF}.tar.xz
http://dev.gentoo.org/~axs/distfiles/${PATCH}.tar.xz
http://dev.gentoo.org/~axs/distfiles/${PATCHFF}.tar.xz
http://dev.gentoo.org/~polynomial-c/mozilla/patchsets/${PATCH}.tar.xz;

ASM_DEPEND==dev-lang/yasm-1.1

RDEPEND=
=dev-libs/nss-3.16.5
=dev-libs/nspr-4.10.6
selinux? ( sec-policy/selinux-thunderbird )
!x11-plugins/enigmail
crypt?  ( || (
( =app-crypt/gnupg-2.0
|| (

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

2014-10-20 Thread Justin Lecher
commit: beb6c45e8ef0cf87a89011e9ca1cd44d850a36e5
Author: gienah gienah AT gentoo DOT org
AuthorDate: Mon Oct 20 12:31:36 2014 +
Commit: Justin Lecher jlec AT gentoo DOT org
CommitDate: Mon Oct 20 12:34:54 2014 +
URL:http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=beb6c45e

Thanks to kiwifb for reporting https://github.com/gentoo-science/sci/issues/280 
- Fix openblas: discrepancy between installed libraries and .pc file.

---
 sci-libs/openblas/ChangeLog| 5 +
 sci-libs/openblas/openblas-.ebuild | 9 -
 2 files changed, 13 insertions(+), 1 deletion(-)

diff --git a/sci-libs/openblas/ChangeLog b/sci-libs/openblas/ChangeLog
index cc7349a..fee0835 100644
--- a/sci-libs/openblas/ChangeLog
+++ b/sci-libs/openblas/ChangeLog
@@ -2,6 +2,11 @@
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  20 Oct 2014; Mark Wright gie...@gentoo.org openblas-.ebuild:
+  Thanks to kiwifb for reporting
+  https://github.com/gentoo-science/sci/issues/280 - Fix openblas: discrepancy
+  between installed libraries and .pc file.
+
   19 Oct 2014; Mark Wright gie...@gentoo.org openblas-.ebuild:
   The fix for Bug 524612 failed in src_install building openblas from git. The
   fix is to move applying the patch to src_compile after building the library,

diff --git a/sci-libs/openblas/openblas-.ebuild 
b/sci-libs/openblas/openblas-.ebuild
index 7c22ca6..a532fe8 100644
--- a/sci-libs/openblas/openblas-.ebuild
+++ b/sci-libs/openblas/openblas-.ebuild
@@ -42,7 +42,7 @@ get_openblas_flags() {
use dynamic  \
openblas_flags+= DYNAMIC_ARCH=1 TARGET=GENERIC NUM_THREADS=64 
NO_AFFINITY=1
$(fortran-int64_is_int64_build)  \
-   openblas_flags+= INTERFACE64=1 LIBNAMESUFFIX=${INT64_SUFFIX}
+   openblas_flags+= INTERFACE64=1
# choose posix threads over openmp when the two are set
# yet to see the need of having the two profiles simultaneously
if use threads; then
@@ -50,6 +50,13 @@ get_openblas_flags() {
elif use openmp; then
openblas_flags+= USE_THREAD=0 USE_OPENMP=1
fi
+   local profname=$(fortran-int64_get_profname)
+   local libname=${profname//-/_}
+   local underscoresuffix=${libname#${PN}}
+   if [[ ${underscoresuffix} != _ ]]; then
+   local libnamesuffix=${underscoresuffix#_}
+   openblas_flags+= LIBNAMESUFFIX=${libnamesuffix}
+   fi
echo ${openblas_flags}
 }
 



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

2014-10-20 Thread Justin Lecher
commit: 7b3cbc010f744fab3e6731ef3887ed72a27d14b2
Author: Justin Lecher jlec AT gentoo DOT org
AuthorDate: Mon Oct 20 18:01:13 2014 +
Commit: Justin Lecher jlec AT gentoo DOT org
CommitDate: Mon Oct 20 18:01:13 2014 +
URL:http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=7b3cbc01

Merge remote-tracking branch 'github/master'

* github/master:
  Thanks to kiwifb for reporting 
https://github.com/gentoo-science/sci/issues/280 - Fix openblas: discrepancy 
between installed libraries and .pc file.
  dev-python/ccdproc: Version bump to 0.2.1




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

2014-10-20 Thread Justin Lecher
commit: a6fc4907717a900bfe2fabf897d7a1cbf3b71c47
Author: Justin jlec AT gentoo DOT org
AuthorDate: Mon Oct 20 11:54:35 2014 +
Commit: Justin Lecher jlec AT gentoo DOT org
CommitDate: Mon Oct 20 11:54:35 2014 +
URL:http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=a6fc4907

Merge pull request #279 from sargas/ccdproc-0.2.1

dev-python/ccdproc: Version bump to 0.2.1


 dev-python/ccdproc/ChangeLog| 9 -
 dev-python/ccdproc/Manifest | 1 +
 dev-python/ccdproc/{ccdproc-0.2.ebuild = ccdproc-0.2.1.ebuild} | 0
 3 files changed, 5 insertions(+), 5 deletions(-)



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

2014-10-20 Thread Justin Lecher
commit: 83fa9874bfedfa55200a6785923b3261a5ea39b8
Author: Joseph Jon Booker joe AT neoturbine DOT net
AuthorDate: Sat Oct 18 16:19:43 2014 +
Commit: Justin Lecher jlec AT gentoo DOT org
CommitDate: Mon Oct 20 18:01:10 2014 +
URL:http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=83fa9874

dev-python/ccdproc: Version bump to 0.2.1

Package-Manager: portage-2.2.14_rc1

---
 dev-python/ccdproc/ChangeLog|  9 +++--
 dev-python/ccdproc/ccdproc-0.2.1.ebuild | 59 +
 2 files changed, 63 insertions(+), 5 deletions(-)

diff --git a/dev-python/ccdproc/ChangeLog b/dev-python/ccdproc/ChangeLog
index ffd4297..bb3af4d 100644
--- a/dev-python/ccdproc/ChangeLog
+++ b/dev-python/ccdproc/ChangeLog
@@ -2,9 +2,8 @@
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
-*ccdproc-0.2 (08 Aug 2014)
-*ccdproc- (08 Aug 2014)
+*ccdproc-0.2.1 (18 Oct 2014)
 
-  08 Aug 2014; Joseph Jon Booker j...@neoturbine.net +ccdproc-0.2.ebuild,
-  +ccdproc-.ebuild, +metadata.xml:
-  dev-python/ccdproc: Add ccdproc package
+  18 Oct 2014; Joseph Jon Booker j...@neoturbine.net +ccdproc-0.2.1.ebuild,
+  -ChangeLog:
+  dev-python/ccdproc: Version bump to 0.2.1

diff --git a/dev-python/ccdproc/ccdproc-0.2.1.ebuild 
b/dev-python/ccdproc/ccdproc-0.2.1.ebuild
new file mode 100644
index 000..1fd337a
--- /dev/null
+++ b/dev-python/ccdproc/ccdproc-0.2.1.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} )
+inherit distutils-r1
+
+if [ ${PV} ==  ] ; then
+   inherit git-r3
+   EGIT_REPO_URI=https://github.com/astropy/${PN}.git;
+else
+   SRC_URI=mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz
+   KEYWORDS=~amd64
+fi
+
+DESCRIPTION=Astropy affiliated package for reducing optical/IR CCD data
+HOMEPAGE=https://github.com/astropy/ccdproc;
+
+LICENSE=BSD
+SLOT=0
+IUSE=doc
+DOCS=( README.rst )
+
+RDEPEND=
+   =dev-python/astropy-0.4[${PYTHON_USEDEP}]
+   dev-python/astropy-helpers[${PYTHON_USEDEP}]
+   dev-python/numpy[${PYTHON_USEDEP}]
+   sci-libs/scipy[${PYTHON_USEDEP}]
+
+DEPEND=${RDEPEND}
+
+python_prepare_all() {
+   distutils-r1_python_prepare_all
+   sed -e '/import ah_bootstrap/d' -i setup.py || die Removing 
ah_bootstrap failed
+}
+
+python_compile_all() {
+   if use doc; then
+   python_export_best
+   VARTEXFONTS=${T}/fonts \
+   MPLCONFIGDIR=${BUILD_DIR} \
+   PYTHONPATH=${BUILD_DIR}/lib \
+   esetup.py build_sphinx
+   fi
+}
+
+python_test() {
+   distutils_install_for_testing
+   cd ${TEST_DIR} || die
+   ${EPYTHON} -c import ${PN}, sys;r = 
${PN}.test(verbose=True);sys.exit(r) \
+   || die tests fail with ${EPYTHON}
+}
+
+python_install_all() {
+   use doc  local HTML_DOCS=( docs/_build/html/. )
+   distutils-r1_python_install_all
+}



[gentoo-commits] proj/sci:master commit in: sci-chemistry/pymol/, sci-chemistry/pymol/files/

2014-10-20 Thread Justin Lecher
commit: 5f7b312a1fa336fc5f4b98909502579ce5557155
Author: Justin Lecher jlec AT gentoo DOT org
AuthorDate: Mon Oct 20 18:00:45 2014 +
Commit: Justin Lecher jlec AT gentoo DOT org
CommitDate: Mon Oct 20 18:01:10 2014 +
URL:http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=5f7b312a

sci-chemistry/pymol: Fix broken plugin listing

Package-Manager: portage-2.2.14

---
 sci-chemistry/pymol/ChangeLog  |  4 
 sci-chemistry/pymol/files/pymol--listing.patch | 17 +
 sci-chemistry/pymol/pymol-.ebuild  |  1 +
 3 files changed, 22 insertions(+)

diff --git a/sci-chemistry/pymol/ChangeLog b/sci-chemistry/pymol/ChangeLog
index 2cce805..0364715 100644
--- a/sci-chemistry/pymol/ChangeLog
+++ b/sci-chemistry/pymol/ChangeLog
@@ -3,6 +3,10 @@
 # $Header: $
 
   20 Oct 2014; Justin Lecher j...@gentoo.org pymol-.ebuild,
+  +files/pymol--listing.patch:
+  Fix broken plugin listing
+
+  20 Oct 2014; Justin Lecher j...@gentoo.org pymol-.ebuild,
   +files/pymol--options.patch:
   Fix upstream buildsystem
 

diff --git a/sci-chemistry/pymol/files/pymol--listing.patch 
b/sci-chemistry/pymol/files/pymol--listing.patch
new file mode 100644
index 000..1b4039c
--- /dev/null
+++ b/sci-chemistry/pymol/files/pymol--listing.patch
@@ -0,0 +1,17 @@
+ pymol/modules/pymol/plugins/repository.py | 3 ++-
+ 1 file changed, 2 insertions(+), 1 deletion(-)
+
+diff --git a/pymol/modules/pymol/plugins/repository.py 
b/pymol/modules/pymol/plugins/repository.py
+index 9697f68..9820fac 100644
+--- a/pymol/modules/pymol/plugins/repository.py
 b/pymol/modules/pymol/plugins/repository.py
+@@ -182,7 +182,8 @@ class GithubRepository(HttpRepository):
+ 
+ def fetchjson(self, url):
+ handle = urlopen('https://api.github.com' + url)
+-return eval(handle.read())
++ret = handle.read().replace(false, False)
++return eval(ret)
+ 
+ class LocalRepository(Repository):
+ def __init__(self, url):

diff --git a/sci-chemistry/pymol/pymol-.ebuild 
b/sci-chemistry/pymol/pymol-.ebuild
index a811e69..cbc6a4b 100644
--- a/sci-chemistry/pymol/pymol-.ebuild
+++ b/sci-chemistry/pymol/pymol-.ebuild
@@ -39,6 +39,7 @@ RDEPEND=${DEPEND}
 
 PATCHES=(
${FILESDIR}/${P}-options.patch
+   ${FILESDIR}/${P}-listing.patch
 )
 
 src_unpack() {



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

2014-10-20 Thread Justin Lecher
commit: 7a2f48d23ac520a4402333148fbb35be4653db22
Author: Joseph Jon Booker joe AT neoturbine DOT net
AuthorDate: Sat Oct 18 16:19:43 2014 +
Commit: Justin Lecher jlec AT gentoo DOT org
CommitDate: Sat Oct 18 16:19:43 2014 +
URL:http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=7a2f48d2

dev-python/ccdproc: Version bump to 0.2.1

Package-Manager: portage-2.2.14_rc1

---
 dev-python/ccdproc/ChangeLog|  9 +++--
 dev-python/ccdproc/ccdproc-0.2.1.ebuild | 59 +
 2 files changed, 63 insertions(+), 5 deletions(-)

diff --git a/dev-python/ccdproc/ChangeLog b/dev-python/ccdproc/ChangeLog
index ffd4297..bb3af4d 100644
--- a/dev-python/ccdproc/ChangeLog
+++ b/dev-python/ccdproc/ChangeLog
@@ -2,9 +2,8 @@
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
-*ccdproc-0.2 (08 Aug 2014)
-*ccdproc- (08 Aug 2014)
+*ccdproc-0.2.1 (18 Oct 2014)
 
-  08 Aug 2014; Joseph Jon Booker j...@neoturbine.net +ccdproc-0.2.ebuild,
-  +ccdproc-.ebuild, +metadata.xml:
-  dev-python/ccdproc: Add ccdproc package
+  18 Oct 2014; Joseph Jon Booker j...@neoturbine.net +ccdproc-0.2.1.ebuild,
+  -ChangeLog:
+  dev-python/ccdproc: Version bump to 0.2.1

diff --git a/dev-python/ccdproc/ccdproc-0.2.1.ebuild 
b/dev-python/ccdproc/ccdproc-0.2.1.ebuild
new file mode 100644
index 000..1fd337a
--- /dev/null
+++ b/dev-python/ccdproc/ccdproc-0.2.1.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} )
+inherit distutils-r1
+
+if [ ${PV} ==  ] ; then
+   inherit git-r3
+   EGIT_REPO_URI=https://github.com/astropy/${PN}.git;
+else
+   SRC_URI=mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz
+   KEYWORDS=~amd64
+fi
+
+DESCRIPTION=Astropy affiliated package for reducing optical/IR CCD data
+HOMEPAGE=https://github.com/astropy/ccdproc;
+
+LICENSE=BSD
+SLOT=0
+IUSE=doc
+DOCS=( README.rst )
+
+RDEPEND=
+   =dev-python/astropy-0.4[${PYTHON_USEDEP}]
+   dev-python/astropy-helpers[${PYTHON_USEDEP}]
+   dev-python/numpy[${PYTHON_USEDEP}]
+   sci-libs/scipy[${PYTHON_USEDEP}]
+
+DEPEND=${RDEPEND}
+
+python_prepare_all() {
+   distutils-r1_python_prepare_all
+   sed -e '/import ah_bootstrap/d' -i setup.py || die Removing 
ah_bootstrap failed
+}
+
+python_compile_all() {
+   if use doc; then
+   python_export_best
+   VARTEXFONTS=${T}/fonts \
+   MPLCONFIGDIR=${BUILD_DIR} \
+   PYTHONPATH=${BUILD_DIR}/lib \
+   esetup.py build_sphinx
+   fi
+}
+
+python_test() {
+   distutils_install_for_testing
+   cd ${TEST_DIR} || die
+   ${EPYTHON} -c import ${PN}, sys;r = 
${PN}.test(verbose=True);sys.exit(r) \
+   || die tests fail with ${EPYTHON}
+}
+
+python_install_all() {
+   use doc  local HTML_DOCS=( docs/_build/html/. )
+   distutils-r1_python_install_all
+}



[gentoo-commits] gentoo-x86 commit in sci-chemistry/pymol: ChangeLog pymol-1.7.3.2.ebuild

2014-10-20 Thread Justin Lecher (jlec)
jlec14/10/20 18:05:38

  Modified: ChangeLog
  Added:pymol-1.7.3.2.ebuild
  Log:
  sci-chemistry/pymol: Version Bump
  
  (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --force, signed 
Manifest commit with key B9D4F231BD1558AB!)

Revision  ChangesPath
1.120sci-chemistry/pymol/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/pymol/ChangeLog?rev=1.120view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/pymol/ChangeLog?rev=1.120content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/pymol/ChangeLog?r1=1.119r2=1.120

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/pymol/ChangeLog,v
retrieving revision 1.119
retrieving revision 1.120
diff -u -r1.119 -r1.120
--- ChangeLog   17 Oct 2014 06:54:03 -  1.119
+++ ChangeLog   20 Oct 2014 18:05:38 -  1.120
@@ -1,6 +1,12 @@
 # ChangeLog for sci-chemistry/pymol
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/pymol/ChangeLog,v 1.119 
2014/10/17 06:54:03 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/pymol/ChangeLog,v 1.120 
2014/10/20 18:05:38 jlec Exp $
+
+*pymol-1.7.3.2 (20 Oct 2014)
+
+  20 Oct 2014; Justin Lecher j...@gentoo.org +pymol-1.7.3.2.ebuild,
+  +files/pymol--listing.patch, +files/pymol--options.patch:
+  Version Bump
 
 *pymol-1.7.3.1 (17 Oct 2014)
 



1.1  sci-chemistry/pymol/pymol-1.7.3.2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/pymol/pymol-1.7.3.2.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/pymol/pymol-1.7.3.2.ebuild?rev=1.1content-type=text/plain

Index: pymol-1.7.3.2.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/pymol/pymol-1.7.3.2.ebuild,v 
1.1 2014/10/20 18:05:38 jlec Exp $

EAPI=5

PYTHON_COMPAT=( python2_7 )
PYTHON_REQ_USE=tk

inherit distutils-r1 fdo-mime versionator

DESCRIPTION=A Python-extensible molecular graphics system
HOMEPAGE=http://www.pymol.org/;
SRC_URI=
http://dev.gentoo.org/~jlec/distfiles/${PN}-1.7.0.0.png.xz
http://dev.gentoo.org/~jlec/distfiles/${P}.tar.xz

#   mirror://sourceforge/project/${PN}/${PN}/$(get_version_component_range 
1-2)/${PN}-v${PV}.tar.bz2
# git archive -v --prefix=${P}/ master -o ${P}.tar.xz

LICENSE=PSF-2.2
SLOT=0
KEYWORDS=~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos
IUSE=apbs web

DEPEND=
dev-python/numpy[${PYTHON_USEDEP}]
dev-python/pmw[${PYTHON_USEDEP}]
dev-python/pyopengl[${PYTHON_USEDEP}]
media-libs/freetype:2
media-libs/glew
media-libs/libpng
media-video/mpeg-tools
sys-libs/zlib
media-libs/freeglut
apbs? (
sci-chemistry/apbs
sci-chemistry/pdb2pqr
sci-chemistry/pymol-apbs-plugin[${PYTHON_USEDEP}]
)
web? ( !dev-python/webpy[${PYTHON_USEDEP}] )
RDEPEND=${DEPEND}

S=${WORKDIR}/${P}/${PN}

PATCHES=(
${FILESDIR}/${PN}-1.7.3.1-maeffplugin.cpp.patch
${FILESDIR}/${PN}--options.patch
${FILESDIR}/${PN}--listing.patch
)

python_prepare_all() {
sed \
-e s:\/usr:\${EPREFIX}/usr:g \
-e /ext_comp_args.*+=/s:\[.*\]$:\[\]:g \
-e /import/s:argparse:argparseX:g \
-i setup.py || die

rm ./modules/pmg_tk/startup/apbs_tools.py || die

sed \
-e s:/opt/local:${EPREFIX}/usr:g \
-e '/ext_comp_args/s:\[.*\]:[]:g' \
-i setup.py || die

distutils-r1_python_prepare_all
}

python_install() {
distutils-r1_python_install --pymol-path=${EPREFIX}/usr/share/pymol
}

python_install_all() {
distutils-r1_python_install_all

python_export python2_7 EPYTHON

# These environment variables should not go in the wrapper script, or 
else
# it will be impossible to use the PyMOL libraries from Python.
cat  ${T}/20pymol - EOF
PYMOL_PATH=$(python_get_sitedir)/${PN}
PYMOL_DATA=${EPREFIX}/usr/share/pymol/data
PYMOL_SCRIPTS=${EPREFIX}/usr/share/pymol/scripts
EOF

doenvd ${T}/20pymol

newicon ${WORKDIR}/${PN}-1.7.0.0.png ${PN}.png
make_desktop_entry ${PN} PyMol ${PN} \
Graphics;Education;Science;Chemistry; \

MimeType=chemical/x-pdb;chemical/x-mdl-molfile;chemical/x-mol2;chemical/seq-aa-fasta;chemical/seq-na-fasta;chemical/x-xyz;chemical/x-mdl-sdf;

if ! use web; then
rm -rf 

[gentoo-commits] gentoo-x86 commit in sci-chemistry/pymol/files: pymol-9999-options.patch pymol-9999-listing.patch

2014-10-20 Thread Justin Lecher (jlec)
jlec14/10/20 18:05:38

  Added:pymol--options.patch pymol--listing.patch
  Log:
  sci-chemistry/pymol: Version Bump
  
  (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --force, signed 
Manifest commit with key B9D4F231BD1558AB!)

Revision  ChangesPath
1.1  sci-chemistry/pymol/files/pymol--options.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/pymol/files/pymol--options.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/pymol/files/pymol--options.patch?rev=1.1content-type=text/plain

Index: pymol--options.patch
===
 pymol/setup.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/pymol/setup.py b/pymol/setup.py
index c446d6c..b7b353b 100644
--- a/pymol/setup.py
+++ b/pymol/setup.py
@@ -51,6 +51,7 @@ def CCompiler_compile(self, sources, output_dir=None, 
macros=None,
 class options:
 osx_frameworks = False
 jobs = int(os.getenv('JOBS', 0))
+no_libxml = False
 
 try:
 import argparse



1.1  sci-chemistry/pymol/files/pymol--listing.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/pymol/files/pymol--listing.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/pymol/files/pymol--listing.patch?rev=1.1content-type=text/plain

Index: pymol--listing.patch
===
 pymol/modules/pymol/plugins/repository.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/pymol/modules/pymol/plugins/repository.py 
b/pymol/modules/pymol/plugins/repository.py
index 9697f68..9820fac 100644
--- a/pymol/modules/pymol/plugins/repository.py
+++ b/pymol/modules/pymol/plugins/repository.py
@@ -182,7 +182,8 @@ class GithubRepository(HttpRepository):
 
 def fetchjson(self, url):
 handle = urlopen('https://api.github.com' + url)
-return eval(handle.read())
+ret = handle.read().replace(false, False)
+return eval(ret)
 
 class LocalRepository(Repository):
 def __init__(self, url):






[gentoo-commits] proj/hardened-patchset: New tag: 20141019

2014-10-20 Thread Anthony G. Basile
commit: 
Commit: Anthony G. Basile blueness AT gentoo DOT org
CommitDate: Mon Oct 20 19:01:26 2014 +

New tag: 20141019




[gentoo-commits] gentoo-x86 commit in media-tv/mythtv: mythtv-0.27.4_p20141018.ebuild ChangeLog

2014-10-20 Thread Richard Freeman (rich0)
rich0   14/10/20 19:05:34

  Modified: ChangeLog
  Added:mythtv-0.27.4_p20141018.ebuild
  Log:
  Bump, new patches.
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key 
0x08C170DE55EC123A)

Revision  ChangesPath
1.423media-tv/mythtv/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-tv/mythtv/ChangeLog?rev=1.423view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-tv/mythtv/ChangeLog?rev=1.423content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-tv/mythtv/ChangeLog?r1=1.422r2=1.423

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-tv/mythtv/ChangeLog,v
retrieving revision 1.422
retrieving revision 1.423
diff -u -r1.422 -r1.423
--- ChangeLog   11 Oct 2014 19:02:52 -  1.422
+++ ChangeLog   20 Oct 2014 19:05:34 -  1.423
@@ -1,6 +1,12 @@
 # ChangeLog for media-tv/mythtv
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-tv/mythtv/ChangeLog,v 1.422 
2014/10/11 19:02:52 rich0 Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-tv/mythtv/ChangeLog,v 1.423 
2014/10/20 19:05:34 rich0 Exp $
+
+*mythtv-0.27.4_p20141018 (20 Oct 2014)
+
+  20 Oct 2014; Richard Freeman ri...@gentoo.org
+  +mythtv-0.27.4_p20141018.ebuild:
+  Bump, new patches.
 
 *mythtv-0.27.3_p20141009 (11 Oct 2014)
 



1.1  media-tv/mythtv/mythtv-0.27.4_p20141018.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-tv/mythtv/mythtv-0.27.4_p20141018.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-tv/mythtv/mythtv-0.27.4_p20141018.ebuild?rev=1.1content-type=text/plain

Index: mythtv-0.27.4_p20141018.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/media-tv/mythtv/mythtv-0.27.4_p20141018.ebuild,v 1.1 
2014/10/20 19:05:34 rich0 Exp $

EAPI=5

PYTHON_DEPEND=python? 2:2.6
BACKPORTS=b305eb5b7fc662146e74983fa3754d622695cdeb
MY_P=${P%_p*}

inherit flag-o-matic multilib eutils python user systemd

MYTHTV_VERSION=v0.27.4
MYTHTV_BRANCH=fixes/0.27

DESCRIPTION=Homebrew PVR project
HOMEPAGE=http://www.mythtv.org;
SRC_URI=https://github.com/MythTV/mythtv/archive/v0.27.4.tar.gz - 
mythtv-0.27.4.tar.gz

${BACKPORTS:+http://dev.gentoo.org/~rich0/distfiles/${MY_P}-${BACKPORTS}.tar.xz};

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

IUSE_INPUT_DEVICES=input_devices_joystick
IUSE=alsa altivec libass autostart bluray cec crystalhd debug dvb dvd \
egl fftw +hls ieee1394 jack lcd lirc perl pulseaudio python raop +theora \
vaapi vdpau +vorbis +xml xmltv +xvid ${IUSE_INPUT_DEVICES}

REQUIRED_USE=
bluray? ( xml )
theora? ( vorbis )

COMMON=
=media-libs/freetype-2.0:=
sys-libs/zlib:=
x11-libs/libX11:=
x11-libs/libXext:=
x11-libs/libXinerama:=
x11-libs/libXv:=
x11-libs/libXrandr:=
x11-libs/libXxf86vm:=
=dev-qt/qtcore-4.7.2:4=
=dev-qt/qtdbus-4.7.2:4=
=dev-qt/qtgui-4.7.2:4=
=dev-qt/qtscript-4.7.2:4=
=dev-qt/qtsql-4.7.2:4=[mysql]
=dev-qt/qtopengl-4.7.2:4=[egl?]
=dev-qt/qtwebkit-4.7.2:4=
x11-misc/wmctrl:=
virtual/mysql:=
virtual/opengl:=
alsa? ( =media-libs/alsa-lib-1.0.24:= )
bluray? (
dev-libs/libcdio:=
media-libs/libbluray:=
)
cec? ( dev-libs/libcec:= )
dvb? (
media-libs/libdvb:=
virtual/linuxtv-dvb-headers:=
)
dvd? ( dev-libs/libcdio:= )
egl? ( media-libs/mesa:=[egl] )
fftw? ( sci-libs/fftw:3.0= )
hls? (
media-libs/faac:=
media-libs/libvpx:=
=media-libs/x264-0.0.20111220:=
=media-sound/lame-3.93.1
)
ieee1394? (
=sys-libs/libraw1394-1.2.0:=
=sys-libs/libavc1394-0.5.3:=
=media-libs/libiec61883-1.0.0:=
)
jack? ( media-sound/jack-audio-connection-kit )
lcd? ( app-misc/lcdproc )
libass? ( =media-libs/libass-0.9.11:= )
lirc? ( app-misc/lirc )
perl? (
dev-perl/DBD-mysql
dev-perl/Net-UPnP
dev-perl/LWP-Protocol-https
dev-perl/HTTP-Message
dev-perl/IO-Socket-INET6
=dev-perl/libwww-perl-5
)
pulseaudio? ( media-sound/pulseaudio )
python? (
dev-python/mysql-python
dev-python/lxml
dev-python/urlgrabber
)
raop? (
dev-libs/openssl:=
net-dns/avahi[mdnsresponder-compat]
 

[gentoo-commits] gentoo-x86 commit in media-plugins/mythplugins: mythplugins-0.27.4_p20141018.ebuild ChangeLog

2014-10-20 Thread Richard Freeman (rich0)
rich0   14/10/20 19:06:04

  Modified: ChangeLog
  Added:mythplugins-0.27.4_p20141018.ebuild
  Log:
  Bump, new patches.
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key 
0x08C170DE55EC123A)

Revision  ChangesPath
1.35 media-plugins/mythplugins/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/mythplugins/ChangeLog?rev=1.35view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/mythplugins/ChangeLog?rev=1.35content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/mythplugins/ChangeLog?r1=1.34r2=1.35

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-plugins/mythplugins/ChangeLog,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- ChangeLog   11 Oct 2014 19:03:17 -  1.34
+++ ChangeLog   20 Oct 2014 19:06:04 -  1.35
@@ -1,6 +1,12 @@
 # ChangeLog for media-plugins/mythplugins
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-plugins/mythplugins/ChangeLog,v 1.34 
2014/10/11 19:03:17 rich0 Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-plugins/mythplugins/ChangeLog,v 1.35 
2014/10/20 19:06:04 rich0 Exp $
+
+*mythplugins-0.27.4_p20141018 (20 Oct 2014)
+
+  20 Oct 2014; Richard Freeman ri...@gentoo.org
+  +mythplugins-0.27.4_p20141018.ebuild:
+  Bump, new patches.
 
 *mythplugins-0.27.3_p20141009 (11 Oct 2014)
 



1.1  
media-plugins/mythplugins/mythplugins-0.27.4_p20141018.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/mythplugins/mythplugins-0.27.4_p20141018.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/mythplugins/mythplugins-0.27.4_p20141018.ebuild?rev=1.1content-type=text/plain

Index: mythplugins-0.27.4_p20141018.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/media-plugins/mythplugins/mythplugins-0.27.4_p20141018.ebuild,v
 1.1 2014/10/20 19:06:04 rich0 Exp $

EAPI=5

PYTHON_DEPEND=2:2.6
BACKPORTS=b305eb5b7fc662146e74983fa3754d622695cdeb
MY_P=${P%_p*}

inherit eutils python

DESCRIPTION=Official MythTV plugins
HOMEPAGE=http://www.mythtv.org;
SRC_URI=https://github.com/MythTV/mythtv/archive/v0.27.4.tar.gz - 
mythtv-0.27.4.tar.gz

${BACKPORTS:+http://dev.gentoo.org/~rich0/distfiles/${MY_P}-${BACKPORTS}.tar.xz};

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

MYTHPLUGINS=mytharchive mythbrowser mythgallery mythgame \
mythmusic mythnetvision mythnews mythweather mythzoneminder

IUSE=${MYTHPLUGINS} alsa cdda cdr exif fftw hls ieee1394 libass raw theora 
vorbis xml xvid

DEPEND=!media-plugins/mytharchive
!media-plugins/mythbrowser
!media-plugins/mythgallery
!media-plugins/mythgame
!media-plugins/mythmovies
!media-plugins/mythmusic
!media-plugins/mythnetvision
!media-plugins/mythnews
!media-plugins/mythweather

=media-tv/mythtv-${PV}*:=[alsa=,hls=,ieee1394=,libass=,python,theora=,vorbis=,xml=,xvid=]
dev-libs/glib:=
xml? ( =dev-libs/libxml2-2.6.0:= )
dev-qt/qtcore:=
dev-qt/qtgui:=
dev-qt/qtopengl:=
dev-qt/qtsql:=
dev-libs/openssl:=
alsa? ( =media-libs/alsa-lib-1.0.24:= )
hls? (
media-libs/faac:=
media-libs/libvpx:=
=media-libs/x264-0.0.20111220:=
=media-sound/lame-3.93.1
)
media-libs/freetype:=
libass? ( =media-libs/libass-0.9.11:= )
media-libs/libpng:=
theora? ( media-libs/libtheora:= media-libs/libogg:= )
vorbis? ( media-libs/libogg:= )
xvid? ( =media-libs/xvid-1.1.0:= )
virtual/libudev:=
ieee1394? (
=sys-libs/libraw1394-1.2.0:=
=sys-libs/libavc1394-0.5.3:=
=media-libs/libiec61883-1.0.0:=
)
x11-libs/libX11:=
sys-libs/zlib:=
x11-libs/libXext:=
x11-libs/libXinerama:=
x11-libs/libXrandr:=
x11-libs/libXv:=
x11-libs/libXxf86vm:=
fftw? ( sci-libs/fftw:= )
sys-apps/util-linux:=
mythzoneminder? ( virtual/mysql:= )
mytharchive? (
app-cdr/dvd+rw-tools
virtual/python-imaging:=
media-video/dvdauthor
media-video/mjpegtools[png]
media-video/transcode
virtual/cdrtools
)
mythgallery? (
media-libs/tiff:=
virtual/opengl
exif? ( media-libs/libexif-0.6.9:= )
raw? ( media-gfx/dcraw )
)
mythmusic? (
   

  1   2   3   >