[gentoo-commits] proj/perl-overlay:master commit in: eclass/

2014-10-11 Thread Kent Fredric
commit: d709c163243c21f1338ede069911aa9906fd0c87
Author: Kent Fredric  gmail  com>
AuthorDate: Sat Oct 11 17:19:49 2014 +
Commit: Kent Fredric  gmail  com>
CommitDate: Sat Oct 11 17:19:49 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/perl-overlay.git;a=commit;h=d709c163

[eclass] perl-module.eclass: EQAWarn on EAPI0 and 1

---
 eclass/perl-module.eclass | 1 +
 1 file changed, 1 insertion(+)

diff --git a/eclass/perl-module.eclass b/eclass/perl-module.eclass
index 1dc824e..a61f6d1 100644
--- a/eclass/perl-module.eclass
+++ b/eclass/perl-module.eclass
@@ -19,6 +19,7 @@ PERL_EXPF="src_unpack src_compile src_test src_install"
 
 case "${EAPI:-0}" in
0|1)
+   eqawarn "$P: EAPI 0 and 1 are deprecated both in ::gentoo and 
::perl-experimental"
PERL_EXPF+=" pkg_setup pkg_preinst pkg_postinst pkg_prerm 
pkg_postrm"
;;
2|3|4|5)



[gentoo-commits] proj/perl-overlay:master commit in: eclass/

2014-10-11 Thread Kent Fredric
commit: fa40465a56e6b0f5484c8a1994d3270ee0316d38
Author: Kent Fredric  gmail  com>
AuthorDate: Sat Oct 11 18:09:17 2014 +
Commit: Kent Fredric  gmail  com>
CommitDate: Sat Oct 11 18:09:17 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/perl-overlay.git;a=commit;h=fa40465a

[eclass] perl-module.eclass: default tests and parallel testing to ON.

This is a respectable change that needs much testing, and is a staging
test for ::gentoo to see how it works out.

Gentoo has only planned to phase in this kind of behaviour in, or after,
   EAPI6, so I'm chasing the concepts tail to make sure it will
   work.

Thus, the behaviour is now "On" by default in **all** EAPIs.

Things that break, please file bugs to have RESTRICT=test,
   PERL_RESTRICT=parallel-test or PERL_RESTRICT=network-test where
   applicable.

Also, there's a new user ENV control flag for those who want it,
  USER_PERL_RESTRICT.

  Adding "parallel-test" to this will disable parallel testing globally
  if its too much of a problem for you.

  Adding "network-test" will make Gentoo do their best to skip testing
  where network interaction is involved.

Enjoy.

---
 eclass/perl-module.eclass | 89 ++-
 1 file changed, 64 insertions(+), 25 deletions(-)

diff --git a/eclass/perl-module.eclass b/eclass/perl-module.eclass
index a61f6d1..dd7ffc2 100644
--- a/eclass/perl-module.eclass
+++ b/eclass/perl-module.eclass
@@ -198,40 +198,79 @@ perl-module_src_compile() {
fi
 }
 
-# For testers:
-#  This code attempts to work out your threadingness from MAKEOPTS
-#  and apply them to Test::Harness.
+# Starting 2014-10-12:
 #
-#  If you want more verbose testing, set TEST_VERBOSE=1
-#  in your bashrc | /etc/make.conf | ENV
+# AUTHORS:
 #
-# For ebuild writers:
-#  If you wish to enable default tests w/ 'make test' ,
+# - src_test is enabled by default
+# - if tests dont work or should not be run, modify your ebuild to use 
RESTRICT=test
+# - parallel testing is enabled by default
+# - if parallel testing breaks an ebuild, turn it off with 
PERL_RESTRICT=parallel-test
+# - if your ebuild calls out to network, set PERL_RESTRICT=network-test and it 
will normally do nothing different.
 #
-#   SRC_TEST="do"
+# USERS:
 #
-#  If you wish to have threads run in parallel ( using the users makeopts )
-#  all of the following have been tested to work.
+# If you get sick of parallel tests, set USER_PERL_RESTRICT=parallel-test, and 
it will go away.
+# If your environment means you can't run tests that require the network, set 
USER_PERL_RESTRICT=network-test and they'll stop being run
+#  if an author is nice enough to set PERL_RESTRICT=network-test.
 #
-#   SRC_TEST="do parallel"
-#   SRC_TEST="parallel"
-#   SRC_TEST="parallel do"
-#   SRC_TEST=parallel
 #
+# VARIABLES:
+#
+# PERL_RESTRICT:
+#parallel-test - parallel testing is unsupported
+#network-test  - a test requires network access ( File Bugs upstream 
to use NO_NETWORK_TESTING )
+# USER_PERL_RESTRICT:
+#parallel-test - never do parallel testing
+#network-test  - never run tests that require network access
+# SRC_TEST:
+#No longer used and completely ignored
 
 perl-module_src_test() {
debug-print-function $FUNCNAME "$@"
-   if has 'do' ${SRC_TEST} || has 'parallel' ${SRC_TEST} ; then
-   if has "${TEST_VERBOSE:-0}" 0 && has 'parallel' ${SRC_TEST} ; 
then
-   export HARNESS_OPTIONS=j$(makeopts_jobs)
-   einfo "Test::Harness Jobs=$(makeopts_jobs)"
-   fi
-   ${perlinfo_done} || perl_set_version
-   if [[ -f Build ]] ; then
-   ./Build test verbose=${TEST_VERBOSE:-0} || die "test 
failed"
-   elif [[ -f Makefile ]] ; then
-   emake test TEST_VERBOSE=${TEST_VERBOSE:-0} || die "test 
failed"
-   fi
+
+   # Turn it off globally per user choice.
+   if has 'parallel-test' ${USER_PERL_RESTRICT}; then
+   einfo "Disabling Parallel Testing: 
USER_PERL_RESTRICT=parallel-test";
+   export HARNESS_OPTIONS="";
+
+   # If user has TEST_VERBOSE globally, disable parallelism because 
verboseness
+   # can break parallel testing.
+   elif ! has "${TEST_VERBOSE:-0}" 0; then
+   einfo "Disabling Parallel Testing: 
TEST_VERBOSE=${TEST_VERBOSE}";
+   export HARNESS_OPTIONS="";
+
+   # If ebuild says parallel tests dont work, turn them off.
+   elif has 'parallel-test' ${PERL_RESTRICT}; then
+   einfo "Disabling Parallel Testing: PERL_RESTRICT=parallel-test";
+   export HARNESS_OPTIONS="";
+   else
+   # Default is on.
+   einfo "Test::Harness Jobs=$(makeopts_jobs)"
+   export HARNESS_OPTIONS=j$(makeopts_jobs)
+   fi
+
+   # If a user says "USER_PERL_RESTRICT=network-test",
+   # then assume

[gentoo-commits] proj/perl-overlay:master commit in: dev-perl/Log-Contextual/

2014-10-11 Thread Kent Fredric
commit: b5195a8303cdced8ff3800c5e01e887fd1050625
Author: Kent Fredric  gmail  com>
AuthorDate: Sat Oct 11 18:30:10 2014 +
Commit: Kent Fredric  gmail  com>
CommitDate: Sat Oct 11 18:30:10 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/perl-overlay.git;a=commit;h=b5195a83

[cleanup] dev-perl/Log-Contextual remove old

Package-Manager: portage-2.2.10

---
 .../Log-Contextual/Log-Contextual-0.3.40.ebuild| 25 
 .../Log-Contextual/Log-Contextual-0.3.50.ebuild| 25 
 .../Log-Contextual/Log-Contextual-0.4.1.ebuild | 26 
 .../Log-Contextual/Log-Contextual-0.4.100.ebuild   | 44 -
 .../Log-Contextual/Log-Contextual-0.4.201.ebuild   | 44 -
 .../Log-Contextual/Log-Contextual-0.4.202.ebuild   | 44 -
 .../Log-Contextual/Log-Contextual-0.4.300.ebuild   | 44 -
 .../Log-Contextual/Log-Contextual-0.5.2.ebuild | 46 --
 8 files changed, 298 deletions(-)

diff --git a/dev-perl/Log-Contextual/Log-Contextual-0.3.40.ebuild 
b/dev-perl/Log-Contextual/Log-Contextual-0.3.40.ebuild
deleted file mode 100644
index ddeac9f..000
--- a/dev-perl/Log-Contextual/Log-Contextual-0.3.40.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-EAPI=4
-MODULE_AUTHOR=FREW
-MODULE_VERSION=0.00304
-inherit perl-module
-
-DESCRIPTION="Simple logging interface with a contextual log"
-LICENSE="|| ( Artistic GPL-2 )"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-comment() { echo ''; }
-COMMON_DEPEND="
-   dev-perl/Data-Dumper-Concise
-"
-DEPEND="
-   ${COMMON_DEPEND}
-   >=virtual/perl-ExtUtils-MakeMaker-6.42 $(comment 6.420.0)
-"
-RDEPEND="
-   ${COMMON_DEPEND}
-"
-SRC_TEST="do"

diff --git a/dev-perl/Log-Contextual/Log-Contextual-0.3.50.ebuild 
b/dev-perl/Log-Contextual/Log-Contextual-0.3.50.ebuild
deleted file mode 100644
index 02fda3d..000
--- a/dev-perl/Log-Contextual/Log-Contextual-0.3.50.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-EAPI=4
-MODULE_AUTHOR=FREW
-MODULE_VERSION=0.00305
-inherit perl-module
-
-DESCRIPTION="Simple logging interface with a contextual log"
-LICENSE="|| ( Artistic GPL-2 )"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-comment() { echo ''; }
-COMMON_DEPEND="
-   dev-perl/Data-Dumper-Concise
-"
-DEPEND="
-   ${COMMON_DEPEND}
-   >=virtual/perl-ExtUtils-MakeMaker-6.42 $(comment 6.420.0)
-"
-RDEPEND="
-   ${COMMON_DEPEND}
-"
-SRC_TEST="do"

diff --git a/dev-perl/Log-Contextual/Log-Contextual-0.4.1.ebuild 
b/dev-perl/Log-Contextual/Log-Contextual-0.4.1.ebuild
deleted file mode 100644
index 52ecec6..000
--- a/dev-perl/Log-Contextual/Log-Contextual-0.4.1.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-EAPI=4
-MODULE_AUTHOR=FREW
-MODULE_VERSION=0.004001
-inherit perl-module
-
-DESCRIPTION="Simple logging interface with a contextual log"
-LICENSE="|| ( Artistic GPL-2 )"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-comment() { true;}
-COMMON_DEPEND="
-   dev-perl/Data-Dumper-Concise
-   >=dev-perl/Exporter-Declare-0.105.0
-"
-DEPEND="
-   ${COMMON_DEPEND}
-   >=virtual/perl-ExtUtils-MakeMaker-6.42 $(comment 6.420.0)
-"
-RDEPEND="
-   ${COMMON_DEPEND}
-"
-SRC_TEST="do"

diff --git a/dev-perl/Log-Contextual/Log-Contextual-0.4.100.ebuild 
b/dev-perl/Log-Contextual/Log-Contextual-0.4.100.ebuild
deleted file mode 100644
index f46349e..000
--- a/dev-perl/Log-Contextual/Log-Contextual-0.4.100.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-EAPI=4
-MODULE_AUTHOR=FREW
-MODULE_VERSION=0.004100
-inherit perl-module
-
-DESCRIPTION='Simple logging interface with a contextual log'
-LICENSE=" || ( Artistic GPL-2 )"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-perl_meta_configure() {
-   # ExtUtils::MakeMaker 6.59 ( 6.590.0 )
-   echo \>=virtual/perl-ExtUtils-MakeMaker-6.590.0
-}
-perl_meta_build() {
-   # ExtUtils::MakeMaker 6.59 ( 6.590.0 )
-   echo \>=virtual/perl-ExtUtils-MakeMaker-6.590.0
-   # Test::Fatal
-   echo dev-perl/Test-Fatal
-}
-perl_meta_runtime() {
-   # Carp
-   # echo virtual/perl-Carp
-   # Data::Dumper::Concise
-   echo dev-perl/Data-Dumper-Concise
-   # Exporter::Declare 0.105 ( 0.105.0 )
-   echo \>=dev-perl/Exporter-Declare-0.105.0
-   # Scalar::Util
-   echo virtual/perl-Scalar-List-Utils
-   # perl v5.6.0 ( 5.6.0 )
-   echo \>=dev-lang/perl-5.6.0
-}
-DEPEND="
-   $(perl_meta_configure)
-   $(perl_meta_build)
-   $(perl_meta_runtime)
-"
-RDEPEND="
-   $(perl_me

[gentoo-commits] proj/perl-overlay:master commit in: dev-perl/MetaCPAN-API/

2014-10-11 Thread Kent Fredric
commit: b48e8eba65c049c9cd8e94b349eb1bad2b8fa0bd
Author: Kent Fredric  gmail  com>
AuthorDate: Sat Oct 11 18:39:03 2014 +
Commit: Kent Fredric  gmail  com>
CommitDate: Sat Oct 11 18:39:03 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/perl-overlay.git;a=commit;h=b48e8eba

[cleanup] dev-perl/MetaCPAN-API remove old

Package-Manager: portage-2.2.10

---
 dev-perl/MetaCPAN-API/MetaCPAN-API-0.420.0.ebuild | 62 ---
 1 file changed, 62 deletions(-)

diff --git a/dev-perl/MetaCPAN-API/MetaCPAN-API-0.420.0.ebuild 
b/dev-perl/MetaCPAN-API/MetaCPAN-API-0.420.0.ebuild
deleted file mode 100644
index 36573a2..000
--- a/dev-perl/MetaCPAN-API/MetaCPAN-API-0.420.0.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-EAPI=4
-MODULE_AUTHOR=XSAWYERX
-MODULE_VERSION=0.42
-inherit perl-module
-
-DESCRIPTION='A comprehensive, DWIM-featured API to MetaCPAN'
-LICENSE=" || ( Artistic GPL-2 )"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-perl_meta_configure() {
-   # ExtUtils::MakeMaker 6.30 ( 6.300.0 )
-   echo \>=virtual/perl-ExtUtils-MakeMaker-6.30
-   # Module::Build 0.3601 ( 0.360.100 )
-   echo \>=virtual/perl-Module-Build-0.36.01
-}
-perl_meta_build() {
-   # English
-   echo dev-lang/perl
-   # File::Find
-   echo dev-lang/perl
-   # File::Temp
-   echo virtual/perl-File-Temp
-   # Module::Build 0.3601 ( 0.360.100 )
-   echo \>=virtual/perl-Module-Build-0.36.01
-   # Test::Fatal
-   echo dev-perl/Test-Fatal
-   # Test::More
-   echo virtual/perl-Test-Simple
-   # Test::TinyMocker
-   echo dev-perl/Test-TinyMocker
-}
-perl_meta_runtime() {
-   # Any::Moose
-   echo dev-perl/Any-Moose
-   # Carp
-   # echo dev-perl/Carp
-   # HTTP::Tiny
-   echo virtual/perl-HTTP-Tiny
-   # JSON
-   echo dev-perl/JSON
-   # Try::Tiny
-   echo dev-perl/Try-Tiny
-   # URI::Escape
-   echo dev-perl/URI
-   # strict
-   echo dev-lang/perl
-   # warnings
-   echo dev-lang/perl
-}
-DEPEND="
-   $(perl_meta_configure)
-   $(perl_meta_build)
-   $(perl_meta_runtime)
-"
-RDEPEND="
-   $(perl_meta_runtime)
-"
-SRC_TEST="network"



[gentoo-commits] proj/perl-overlay:master commit in: dev-perl/Lingua-Translate/

2014-10-11 Thread Kent Fredric
commit: 26e49462eca2c682a556767ab7d372622a99aa50
Author: Kent Fredric  gmail  com>
AuthorDate: Sat Oct 11 18:29:19 2014 +
Commit: Kent Fredric  gmail  com>
CommitDate: Sat Oct 11 18:29:34 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/perl-overlay.git;a=commit;h=26e49462

[fixup] dev-perl/Lingua-Translate SRC_TEST=broken to RESTRICT=test

Package-Manager: portage-2.2.10

---
 dev-perl/Lingua-Translate/Lingua-Translate-0.90.0.ebuild | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/dev-perl/Lingua-Translate/Lingua-Translate-0.90.0.ebuild 
b/dev-perl/Lingua-Translate/Lingua-Translate-0.90.0.ebuild
index 2e4f19e..6b49d17 100644
--- a/dev-perl/Lingua-Translate/Lingua-Translate-0.90.0.ebuild
+++ b/dev-perl/Lingua-Translate/Lingua-Translate-0.90.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Header: $
 EAPI=5
@@ -7,7 +7,7 @@ MODULE_VERSION=0.09
 inherit perl-module
 
 DESCRIPTION='Translate text from one language to another'
-LICENSE="|| ( Artistic GPL-2 )"
+RESTRICT=test
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
 IUSE=""
@@ -29,4 +29,3 @@ DEPEND="
 RDEPEND="
$(perl_meta_runtime)
 "
-SRC_TEST="broken"



[gentoo-commits] proj/perl-overlay:master commit in: dev-perl/MetaCPAN-API/

2014-10-11 Thread Kent Fredric
commit: e8118dfeb2658aa7b7820cdaf9e61a5f0ce473db
Author: Kent Fredric  gmail  com>
AuthorDate: Sat Oct 11 18:40:34 2014 +
Commit: Kent Fredric  gmail  com>
CommitDate: Sat Oct 11 18:40:34 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/perl-overlay.git;a=commit;h=e8118dfe

[fixup] dev-perl/MetaCPAN-API EAPI5, PERL_RESTRICT=network-test

Package-Manager: portage-2.2.10

---
 ...{MetaCPAN-API-0.430.0.ebuild => MetaCPAN-API-0.430.0-r1.ebuild} | 7 +++
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/dev-perl/MetaCPAN-API/MetaCPAN-API-0.430.0.ebuild 
b/dev-perl/MetaCPAN-API/MetaCPAN-API-0.430.0-r1.ebuild
similarity index 92%
rename from dev-perl/MetaCPAN-API/MetaCPAN-API-0.430.0.ebuild
rename to dev-perl/MetaCPAN-API/MetaCPAN-API-0.430.0-r1.ebuild
index d0cd925..c853536 100644
--- a/dev-perl/MetaCPAN-API/MetaCPAN-API-0.430.0.ebuild
+++ b/dev-perl/MetaCPAN-API/MetaCPAN-API-0.430.0-r1.ebuild
@@ -1,15 +1,15 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Header: $
-EAPI=4
+EAPI=5
 MODULE_AUTHOR=XSAWYERX
 MODULE_VERSION=0.43
 inherit perl-module
 
 DESCRIPTION='A comprehensive, DWIM-featured API to MetaCPAN'
-LICENSE=" || ( Artistic GPL-2 )"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
+PERL_RESTRICT=network-test
 IUSE=""
 perl_meta_configure() {
# ExtUtils::MakeMaker 6.30 ( 6.300.0 )
@@ -59,4 +59,3 @@ DEPEND="
 RDEPEND="
$(perl_meta_runtime)
 "
-SRC_TEST="do"



[gentoo-commits] proj/perl-overlay:master commit in: dev-perl/MooseX-App-Cmd/

2014-10-11 Thread Kent Fredric
commit: 4a11155a42761b2d1cf5aa202ed28bb963fc64c3
Author: Kent Fredric  gmail  com>
AuthorDate: Sat Oct 11 18:33:22 2014 +
Commit: Kent Fredric  gmail  com>
CommitDate: Sat Oct 11 18:33:22 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/perl-overlay.git;a=commit;h=4a11155a

[cleanup] dev-perl/MooseX-App-Cmd remove old

Package-Manager: portage-2.2.10

---
 .../MooseX-App-Cmd/MooseX-App-Cmd-0.60.0.ebuild| 27 --
 .../MooseX-App-Cmd/MooseX-App-Cmd-0.70.0.ebuild| 43 --
 2 files changed, 70 deletions(-)

diff --git a/dev-perl/MooseX-App-Cmd/MooseX-App-Cmd-0.60.0.ebuild 
b/dev-perl/MooseX-App-Cmd/MooseX-App-Cmd-0.60.0.ebuild
deleted file mode 100644
index b66a14c..000
--- a/dev-perl/MooseX-App-Cmd/MooseX-App-Cmd-0.60.0.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-EAPI=2
-MODULE_AUTHOR=NUFFIN
-MODULE_VERSION="0.06"
-inherit perl-module
-
-DESCRIPTION="Mashes up MooseX::Getopt and App::Cmd."
-LICENSE="|| ( Artistic GPL-2 )"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-COMMON_DEPEND="
-   dev-perl/Test-use-ok
-   >=dev-perl/App-Cmd-0.300.0
-   >=dev-perl/Moose-0.860.0
-   >=dev-perl/MooseX-Getopt-0.18
-   dev-perl/Getopt-Long-Descriptive
-"
-DEPEND="
-   ${COMMON_DEPEND}
-"
-RDEPEND="
-   ${COMMON_DEPEND}
-"
-SRC_TEST="do"

diff --git a/dev-perl/MooseX-App-Cmd/MooseX-App-Cmd-0.70.0.ebuild 
b/dev-perl/MooseX-App-Cmd/MooseX-App-Cmd-0.70.0.ebuild
deleted file mode 100644
index 88b2095..000
--- a/dev-perl/MooseX-App-Cmd/MooseX-App-Cmd-0.70.0.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-EAPI=4
-MODULE_AUTHOR=OFFERK
-MODULE_VERSION=0.07
-inherit perl-module
-
-DESCRIPTION='MooseX-App-Cmd'
-LICENSE="|| ( Artistic GPL-2 )"
-SLOT="0"
-KEYWORDS=""
-#KEYWORDS="~amd64 ~x86"
-IUSE=""
-perl_meta_configure() {
-   # ExtUtils::MakeMaker
-   echo virtual/perl-ExtUtils-MakeMaker
-}
-perl_meta_build() {
-   # ExtUtils::MakeMaker
-   echo virtual/perl-ExtUtils-MakeMaker
-}
-perl_meta_runtime() {
-   # App::Cmd 0.3 ( 0.300.0 )
-   echo \>=dev-perl/App-Cmd-0.300.0
-   # Getopt::Long::Descriptive
-   echo dev-perl/Getopt-Long-Descriptive
-   # Moose 0.86 ( 0.860.0 )
-   echo \>=dev-perl/Moose-0.860.0
-   # MooseX::Getopt 0.18 ( 0.180.0 )
-   echo \>=dev-perl/MooseX-Getopt-0.180.0
-   # Test::use::ok
-   echo dev-perl/Test-use-ok
-}
-DEPEND="
-   $(perl_meta_configure)
-   $(perl_meta_build)
-   $(perl_meta_runtime)
-"
-RDEPEND="
-   $(perl_meta_runtime)
-"
-SRC_TEST="broken"



[gentoo-commits] proj/perl-overlay:master commit in: dev-perl/Catalyst-Controller-RequestToken/

2014-10-11 Thread Kent Fredric
commit: 2a4d058c00c70cdc78bc66c6f78b715ef1a0ec1c
Author: Kent Fredric  gmail  com>
AuthorDate: Sat Oct 11 18:20:49 2014 +
Commit: Kent Fredric  gmail  com>
CommitDate: Sat Oct 11 18:20:49 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/perl-overlay.git;a=commit;h=2a4d058c

[fixup] dev-perl/Catalyst-Controller-RequestToken EAPI5,move SRC_TEST=broken to 
RESTRICT=test

Package-Manager: portage-2.2.10

---
 ...0-r1.ebuild => Catalyst-Controller-RequestToken-0.70.0-r2.ebuild} | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git 
a/dev-perl/Catalyst-Controller-RequestToken/Catalyst-Controller-RequestToken-0.70.0-r1.ebuild
 
b/dev-perl/Catalyst-Controller-RequestToken/Catalyst-Controller-RequestToken-0.70.0-r2.ebuild
similarity index 95%
rename from 
dev-perl/Catalyst-Controller-RequestToken/Catalyst-Controller-RequestToken-0.70.0-r1.ebuild
rename to 
dev-perl/Catalyst-Controller-RequestToken/Catalyst-Controller-RequestToken-0.70.0-r2.ebuild
index 6b5a592..5a42c54 100644
--- 
a/dev-perl/Catalyst-Controller-RequestToken/Catalyst-Controller-RequestToken-0.70.0-r1.ebuild
+++ 
b/dev-perl/Catalyst-Controller-RequestToken/Catalyst-Controller-RequestToken-0.70.0-r2.ebuild
@@ -1,13 +1,13 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Header: $
-EAPI=4
+EAPI=5
 MODULE_AUTHOR=HIDE
 MODULE_VERSION=0.07
 inherit perl-module
 
 DESCRIPTION='Handling transaction tokens across forms'
-LICENSE=" || ( Artistic GPL-2 )"
+RESTRICT=test
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
 IUSE=""
@@ -45,4 +45,3 @@ DEPEND="
 RDEPEND="
$(perl_meta_runtime)
 "
-SRC_TEST="broken"



[gentoo-commits] gentoo-x86 commit in dev-perl/perl-tk: ChangeLog perl-tk-804.31.0-r1.ebuild perl-tk-804.30.0.ebuild perl-tk-804.31.0.ebuild perl-tk-804.29.0.ebuild

2014-10-11 Thread Andreas HAttel (dilfridge)
dilfridge14/10/11 18:44:58

  Modified: ChangeLog
  Removed:  perl-tk-804.31.0-r1.ebuild perl-tk-804.30.0.ebuild
perl-tk-804.31.0.ebuild perl-tk-804.29.0.ebuild
  Log:
  Remove old
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with 
key EBE6A336BE19039C!)

Revision  ChangesPath
1.102dev-perl/perl-tk/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/perl-tk/ChangeLog?rev=1.102&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/perl-tk/ChangeLog?rev=1.102&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/perl-tk/ChangeLog?r1=1.101&r2=1.102

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/perl-tk/ChangeLog,v
retrieving revision 1.101
retrieving revision 1.102
diff -u -r1.101 -r1.102
--- ChangeLog   10 Aug 2014 17:44:12 -  1.101
+++ ChangeLog   11 Oct 2014 18:44:58 -  1.102
@@ -1,6 +1,13 @@
 # ChangeLog for dev-perl/perl-tk
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/perl-tk/ChangeLog,v 1.101 
2014/08/10 17:44:12 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/perl-tk/ChangeLog,v 1.102 
2014/10/11 18:44:58 dilfridge Exp $
+
+  11 Oct 2014; Andreas K. Huettel 
+  -perl-tk-804.29.0.ebuild, -perl-tk-804.30.0.ebuild, -perl-tk-804.31.0.ebuild,
+  -perl-tk-804.31.0-r1.ebuild, -files/804.028-path.patch,
+  -files/perl-tk-804.31.0-fix-libpng-option.patch,
+  -files/804.029-X11_XLIB_H.patch, -files/xorg.patch:
+  Remove old
 
   10 Aug 2014; Agostino Sarubbo  perl-tk-804.32.0.ebuild:
   Stable for ia64, wrt bug #518032






[gentoo-commits] gentoo-x86 commit in dev-perl/perl-tk/files: xorg.patch 804.029-X11_XLIB_H.patch perl-tk-804.31.0-fix-libpng-option.patch 804.028-path.patch

2014-10-11 Thread Andreas HAttel (dilfridge)
dilfridge14/10/11 18:44:58

  Removed:  xorg.patch 804.029-X11_XLIB_H.patch
perl-tk-804.31.0-fix-libpng-option.patch
804.028-path.patch
  Log:
  Remove old
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with 
key EBE6A336BE19039C!)



[gentoo-commits] gentoo-x86 commit in dev-perl/Convert-UUlib: ChangeLog Convert-UUlib-1.400.0-r2.ebuild

2014-10-11 Thread Andreas HAttel (dilfridge)
dilfridge14/10/11 18:36:17

  Modified: ChangeLog
  Added:Convert-UUlib-1.400.0-r2.ebuild
  Log:
  Unbundle uulib, bug 268307
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with 
key EBE6A336BE19039C!)

Revision  ChangesPath
1.68 dev-perl/Convert-UUlib/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Convert-UUlib/ChangeLog?rev=1.68&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Convert-UUlib/ChangeLog?rev=1.68&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Convert-UUlib/ChangeLog?r1=1.67&r2=1.68

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/Convert-UUlib/ChangeLog,v
retrieving revision 1.67
retrieving revision 1.68
diff -u -r1.67 -r1.68
--- ChangeLog   22 Aug 2014 19:07:36 -  1.67
+++ ChangeLog   11 Oct 2014 18:36:17 -  1.68
@@ -1,6 +1,13 @@
 # ChangeLog for dev-perl/Convert-UUlib
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/Convert-UUlib/ChangeLog,v 1.67 
2014/08/22 19:07:36 axs Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/Convert-UUlib/ChangeLog,v 1.68 
2014/10/11 18:36:17 dilfridge Exp $
+
+*Convert-UUlib-1.400.0-r2 (11 Oct 2014)
+
+  11 Oct 2014; Andreas K. Huettel 
+  +Convert-UUlib-1.400.0-r2.ebuild,
+  +files/Convert-UUlib-1.400.0-unbundle.patch:
+  Unbundle uulib, bug 268307
 
 *Convert-UUlib-1.400.0-r1 (22 Aug 2014)
 



1.1  dev-perl/Convert-UUlib/Convert-UUlib-1.400.0-r2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Convert-UUlib/Convert-UUlib-1.400.0-r2.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Convert-UUlib/Convert-UUlib-1.400.0-r2.ebuild?rev=1.1&content-type=text/plain

Index: Convert-UUlib-1.400.0-r2.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/Convert-UUlib/Convert-UUlib-1.400.0-r2.ebuild,v
 1.1 2014/10/11 18:36:17 dilfridge Exp $

EAPI=5

MODULE_AUTHOR=MLEHMANN
MODULE_VERSION=1.4
inherit perl-module

DESCRIPTION="A Perl interface to the uulib library"

LICENSE="Artistic GPL-2" # needs both
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~ppc ~s390 ~sh ~sparc ~x86"
IUSE=""

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

RDEPEND=">=dev-libs/uulib-0.5.20-r1"
DEPEND="${RDEPEND}"

SRC_TEST="do"






[gentoo-commits] gentoo-x86 commit in dev-perl/Convert-UUlib/files: Convert-UUlib-1.400.0-unbundle.patch

2014-10-11 Thread Andreas HAttel (dilfridge)
dilfridge14/10/11 18:36:17

  Added:Convert-UUlib-1.400.0-unbundle.patch
  Log:
  Unbundle uulib, bug 268307
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with 
key EBE6A336BE19039C!)

Revision  ChangesPath
1.1  
dev-perl/Convert-UUlib/files/Convert-UUlib-1.400.0-unbundle.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Convert-UUlib/files/Convert-UUlib-1.400.0-unbundle.patch?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Convert-UUlib/files/Convert-UUlib-1.400.0-unbundle.patch?rev=1.1&content-type=text/plain

Index: Convert-UUlib-1.400.0-unbundle.patch
===
diff -ruN Convert-UUlib-1.4.orig/Makefile.PL Convert-UUlib-1.4/Makefile.PL
--- Convert-UUlib-1.4.orig/Makefile.PL  2009-07-10 22:44:52.0 +0200
+++ Convert-UUlib-1.4/Makefile.PL   2014-10-11 19:06:36.816968279 +0200
@@ -1,22 +1,5 @@
 use ExtUtils::MakeMaker;
 
-sub MY::postamble {
-my $postamble =<<'END';
-
-uulib/Makefile:
-   cd uulib && CC="$(CC)" CFLAGS="$(OPTIMIZE) $(CFLAGS) $(CCCDLFLAGS)" 
./configure
-
-clean::
-   -cd uulib && make distclean
-
-force:
-
-$(MYEXTLIB): uulib/Makefile uulib/uulib.c force
-   cd uulib && $(MAKE) all
-
-END
-}
-
 WriteMakefile(
 'dist' => {
PREOP   => 'pod2text UUlib.pm | tee README 
>$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ; chmod -R u=rwX,go=rX . ;',
@@ -25,8 +8,7 @@
   },
 'NAME' => 'Convert::UUlib',
 'VERSION_FROM' => 'UUlib.pm',
-'MYEXTLIB'  => 'uulib/libuu$(LIB_EXT)',
-'LIBS' => [''],
+'LIBS' => ['-luu'],
 'DEFINE'   => '',
 'INC'  => '',
 );






[gentoo-commits] gentoo-x86 commit in app-editors/gvim: gvim-7.4.430.ebuild ChangeLog

2014-10-11 Thread Michal Gorny (mgorny)
mgorny  14/10/11 18:35:54

  Modified: gvim-7.4.430.ebuild ChangeLog
  Log:
  Install necessary bash-completion aliases, bug #521152. Update completed 
command list in the file.
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with 
key EFB4464E!)

Revision  ChangesPath
1.3  app-editors/gvim/gvim-7.4.430.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/gvim/gvim-7.4.430.ebuild?rev=1.3&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/gvim/gvim-7.4.430.ebuild?rev=1.3&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/gvim/gvim-7.4.430.ebuild?r1=1.2&r2=1.3

Index: gvim-7.4.430.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-editors/gvim/gvim-7.4.430.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- gvim-7.4.430.ebuild 6 Sep 2014 17:53:59 -   1.2
+++ gvim-7.4.430.ebuild 11 Oct 2014 18:35:54 -  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/app-editors/gvim/gvim-7.4.430.ebuild,v 1.2 
2014/09/06 17:53:59 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/gvim/gvim-7.4.430.ebuild,v 1.3 
2014/10/11 18:35:54 mgorny Exp $
 
 EAPI=5
 VIM_VERSION="7.4"
@@ -363,6 +363,8 @@
 
# bash completion script, bug #79018.
newbashcomp "${FILESDIR}"/${PN}-completion ${PN}
+   # keep in sync with 'complete ... -F' list
+   bashcomp_alias gvim evim eview gview gvimdiff rgvim rgview
 
# We shouldn't be installing the ex or view man page symlinks, as they
# are managed by eselect-vi



1.439app-editors/gvim/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/gvim/ChangeLog?rev=1.439&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/gvim/ChangeLog?rev=1.439&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/gvim/ChangeLog?r1=1.438&r2=1.439

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-editors/gvim/ChangeLog,v
retrieving revision 1.438
retrieving revision 1.439
diff -u -r1.438 -r1.439
--- ChangeLog   19 Sep 2014 08:59:31 -  1.438
+++ ChangeLog   11 Oct 2014 18:35:54 -  1.439
@@ -1,6 +1,11 @@
 # ChangeLog for app-editors/gvim
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/gvim/ChangeLog,v 1.438 
2014/09/19 08:59:31 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/gvim/ChangeLog,v 1.439 
2014/10/11 18:35:54 mgorny Exp $
+
+  11 Oct 2014; Michał Górny  files/gvim-completion,
+  gvim-7.4.430.ebuild:
+  Install necessary bash-completion aliases, bug #521152. Update completed
+  command list in the file.
 
   19 Sep 2014; Agostino Sarubbo  gvim-7.4.273.ebuild:
   Stable for ppc64, wrt bug #511190






[gentoo-commits] gentoo-x86 commit in app-editors/gvim/files: gvim-completion

2014-10-11 Thread Michal Gorny (mgorny)
mgorny  14/10/11 18:35:54

  Modified: gvim-completion
  Log:
  Install necessary bash-completion aliases, bug #521152. Update completed 
command list in the file.
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with 
key EFB4464E!)

Revision  ChangesPath
1.3  app-editors/gvim/files/gvim-completion

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/gvim/files/gvim-completion?rev=1.3&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/gvim/files/gvim-completion?rev=1.3&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/gvim/files/gvim-completion?r1=1.2&r2=1.3

Index: gvim-completion
===
RCS file: /var/cvsroot/gentoo-x86/app-editors/gvim/files/gvim-completion,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- gvim-completion 8 Mar 2005 21:46:19 -   1.2
+++ gvim-completion 11 Oct 2014 18:35:54 -  1.3
@@ -35,6 +35,6 @@
 fi
 }
 
-complete -o filenames -F _gvim gvim gview rgview rgview
+complete -o filenames -F _gvim gvim evim eview gview gvimdiff rgvim rgview
 
 # vim: set ft=sh sw=4 et sts=4 :






[gentoo-commits] gentoo-x86 commit in app-editors/vim: vim-9999.ebuild vim-7.4.430.ebuild ChangeLog

2014-10-11 Thread Michal Gorny (mgorny)
mgorny  14/10/11 18:34:46

  Modified: vim-.ebuild vim-7.4.430.ebuild ChangeLog
  Log:
  Install necessary bash-completion aliases, bug #521152. Update completed 
command list in the file.
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with 
key EFB4464E!)

Revision  ChangesPath
1.15 app-editors/vim/vim-.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/vim/vim-.ebuild?rev=1.15&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/vim/vim-.ebuild?rev=1.15&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/vim/vim-.ebuild?r1=1.14&r2=1.15

Index: vim-.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-editors/vim/vim-.ebuild,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- vim-.ebuild 6 Sep 2014 17:52:52 -   1.14
+++ vim-.ebuild 11 Oct 2014 18:34:46 -  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/app-editors/vim/vim-.ebuild,v 1.14 
2014/09/06 17:52:52 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/vim/vim-.ebuild,v 1.15 
2014/10/11 18:34:46 mgorny Exp $
 
 EAPI=5
 VIM_VERSION="7.4"
@@ -333,6 +333,8 @@
fi
 
newbashcomp "${FILESDIR}"/${PN}-completion ${PN}
+   # keep in sync with 'complete ... -F' list
+   bashcomp_alias vim ex vi view rvim rview vimdiff
 
# We shouldn't be installing the ex or view man page symlinks, as they
# are managed by eselect-vi



1.3  app-editors/vim/vim-7.4.430.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/vim/vim-7.4.430.ebuild?rev=1.3&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/vim/vim-7.4.430.ebuild?rev=1.3&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/vim/vim-7.4.430.ebuild?r1=1.2&r2=1.3

Index: vim-7.4.430.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-editors/vim/vim-7.4.430.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- vim-7.4.430.ebuild  6 Sep 2014 17:52:52 -   1.2
+++ vim-7.4.430.ebuild  11 Oct 2014 18:34:46 -  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/app-editors/vim/vim-7.4.430.ebuild,v 1.2 
2014/09/06 17:52:52 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/vim/vim-7.4.430.ebuild,v 1.3 
2014/10/11 18:34:46 mgorny Exp $
 
 EAPI=5
 VIM_VERSION="7.4"
@@ -333,6 +333,8 @@
fi
 
newbashcomp "${FILESDIR}"/${PN}-completion ${PN}
+   # keep in sync with 'complete ... -F' list
+   bashcomp_alias vim ex vi view rvim rview vimdiff
 
# We shouldn't be installing the ex or view man page symlinks, as they
# are managed by eselect-vi



1.471app-editors/vim/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/vim/ChangeLog?rev=1.471&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/vim/ChangeLog?rev=1.471&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/vim/ChangeLog?r1=1.470&r2=1.471

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-editors/vim/ChangeLog,v
retrieving revision 1.470
retrieving revision 1.471
diff -u -r1.470 -r1.471
--- ChangeLog   19 Sep 2014 08:59:36 -  1.470
+++ ChangeLog   11 Oct 2014 18:34:46 -  1.471
@@ -1,6 +1,11 @@
 # ChangeLog for app-editors/vim
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/vim/ChangeLog,v 1.470 
2014/09/19 08:59:36 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/vim/ChangeLog,v 1.471 
2014/10/11 18:34:46 mgorny Exp $
+
+  11 Oct 2014; Michał Górny  files/vim-completion,
+  vim-7.4.430.ebuild, vim-.ebuild:
+  Install necessary bash-completion aliases, bug #521152. Update completed
+  command list in the file.
 
   19 Sep 2014; Agostino Sarubbo  vim-7.4.273.ebuild:
   Stable for ppc64, wrt bug #511190






[gentoo-commits] gentoo-x86 commit in app-editors/vim/files: vim-completion

2014-10-11 Thread Michal Gorny (mgorny)
mgorny  14/10/11 18:34:46

  Modified: vim-completion
  Log:
  Install necessary bash-completion aliases, bug #521152. Update completed 
command list in the file.
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with 
key EFB4464E!)

Revision  ChangesPath
1.3  app-editors/vim/files/vim-completion

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/vim/files/vim-completion?rev=1.3&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/vim/files/vim-completion?rev=1.3&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/vim/files/vim-completion?r1=1.2&r2=1.3

Index: vim-completion
===
RCS file: /var/cvsroot/gentoo-x86/app-editors/vim/files/vim-completion,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- vim-completion  8 Mar 2005 21:45:07 -   1.2
+++ vim-completion  11 Oct 2014 18:34:46 -  1.3
@@ -31,6 +31,6 @@
 fi
 }
 
-complete -o filenames -F _vim vim ex view evim rvim rview
+complete -o filenames -F _vim vim ex vi view rvim rview vimdiff
 
 # vim: set ft=sh sw=4 et sts=4 :






[gentoo-commits] gentoo-x86 commit in dev-libs/uulib/files: uulib-0.5.20-shared.patch

2014-10-11 Thread Andreas HAttel (dilfridge)
dilfridge14/10/11 18:30:40

  Added:uulib-0.5.20-shared.patch
  Log:
  Add patch to also build and install a shared object, needed for bug 268307
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with 
key EBE6A336BE19039C!)

Revision  ChangesPath
1.1  dev-libs/uulib/files/uulib-0.5.20-shared.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/uulib/files/uulib-0.5.20-shared.patch?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/uulib/files/uulib-0.5.20-shared.patch?rev=1.1&content-type=text/plain

Index: uulib-0.5.20-shared.patch
===
Source: PDL Linux
https://raw.githubusercontent.com/pld-linux/uudeview/master/uudeview-shared.patch
https://github.com/pld-linux/uudeview


diff -ruN uudeview-0.5.20.orig/uulib/Makefile.in 
uudeview-0.5.20/uulib/Makefile.in
--- uudeview-0.5.20.orig/uulib/Makefile.in  2002-03-11 10:15:46.0 
+0100
+++ uudeview-0.5.20/uulib/Makefile.in   2014-10-11 20:20:04.280175737 +0200
@@ -40,9 +40,13 @@
 VDEF   =   -DVERSION=\"$(VERSION)\" -DPATCH=\"$(PATCH)\"
 #
 
+DESTDIR =
+libdir = @libdir@
+includedir = @prefix@/@includedir@
+
 UULIB_SOURCE   =   uulib.c uucheck.c uunconc.c uuutil.c uuencode.c \
uuscan.c uustring.c fptools.c crc32.c
-UULIB_OBJ  =   ${UULIB_SOURCE:.c=.o}
+UULIB_OBJ  =   ${UULIB_SOURCE:.c=.lo}
 
 #
 # make stuff
@@ -51,11 +55,11 @@
 .SUFFIXES:
 .SUFFIXES: .c .o
 
-all:   libuu.a
+all:   libuu.la
 
 clean:
rm -f [Xx]deview gif2gfp
-   rm -f *.o *.a *.so core *~ TAGS
+   rm -f *.o *.a *.so core *~ TAGS *.lo *.la
 
 distclean: clean
rm -f config.status config.cache config.log Makefile config.h
@@ -64,25 +68,28 @@
 realclean: distclean
 
 new:   clean
-   rm -f libuu.a
+   rm -f libuu.la
$(MAKE) all
 
-libuu.a:   $(UULIB_OBJ)
-   rm -f $@
-   ar r $@ $(UULIB_OBJ)
-   -$(RANLIB) $@
-
-.c.o:
-   $(CC) -c $(CFLAGS) $(VDEF) $<
-
-uuencode.o:uuencode.c uudeview.h uuint.h uustring.h fptools.h config.h
-uulib.o:   uulib.c uudeview.h uuint.h uustring.h fptools.h config.h
-uunconc.o: uunconc.c uudeview.h uuint.h uustring.h fptools.h config.h
-uucheck.o: uucheck.c uudeview.h uuint.h uustring.h fptools.h config.h
-uuutil.o:  uuutil.c  uudeview.h uuint.h uustring.h fptools.h config.h
-uuscan.o:  uuutil.c  uudeview.h uuint.h uustring.h fptools.h config.h
-uustring.o:uustring.c uudeview.h uuint.h uustring.h config.h
-fptools.o: fptools.c fptools.h config.h
+libuu.la:  $(UULIB_OBJ)
+   libtool --mode=link $(CC) -o libuu.la $(LDFLAGS) $(UULIB_OBJ) -rpath 
$(libdir)
+
+%.lo : %.c
+   libtool --mode=compile $(CC) -c $(CFLAGS) $(VDEF) $<
+
+install:   libuu.la
+   install -d $(DESTDIR)$(libdir) $(DESTDIR)$(includedir)
+   libtool --mode=install install libuu.la $(DESTDIR)$(libdir)
+   install uudeview.h fptools.h $(DESTDIR)$(includedir)
+
+uuencode.lo:   uuencode.c uudeview.h uuint.h uustring.h fptools.h config.h
+uulib.lo:  uulib.c uudeview.h uuint.h uustring.h fptools.h config.h
+uunconc.lo:uunconc.c uudeview.h uuint.h uustring.h fptools.h config.h
+uucheck.lo:uucheck.c uudeview.h uuint.h uustring.h fptools.h config.h
+uuutil.lo: uuutil.c  uudeview.h uuint.h uustring.h fptools.h config.h
+uuscan.lo: uuutil.c  uudeview.h uuint.h uustring.h fptools.h config.h
+uustring.lo:   uustring.c uudeview.h uuint.h uustring.h config.h
+fptools.lo:fptools.c fptools.h config.h
 
 uustring.h:uustring.c
awk -f uustring.awk < uustring.c > uustring.h






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

2014-10-11 Thread Andreas HAttel (dilfridge)
dilfridge14/10/11 18:30:40

  Modified: ChangeLog
  Added:uulib-0.5.20-r1.ebuild
  Log:
  Add patch to also build and install a shared object, needed for bug 268307
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with 
key EBE6A336BE19039C!)

Revision  ChangesPath
1.22 dev-libs/uulib/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/uulib/ChangeLog,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- ChangeLog   11 Mar 2014 19:49:51 -  1.21
+++ ChangeLog   11 Oct 2014 18:30:40 -  1.22
@@ -1,6 +1,12 @@
 # ChangeLog for dev-libs/uulib
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/uulib/ChangeLog,v 1.21 2014/03/11 
19:49:51 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/uulib/ChangeLog,v 1.22 2014/10/11 
18:30:40 dilfridge Exp $
+
+*uulib-0.5.20-r1 (11 Oct 2014)
+
+  11 Oct 2014; Andreas K. Huettel 
+  +uulib-0.5.20-r1.ebuild, +files/uulib-0.5.20-shared.patch:
+  Add patch to also build and install a shared object, needed for bug 268307
 
   11 Mar 2014; Pacho Ramos  metadata.xml:
   Cleanup due #53266



1.1  dev-libs/uulib/uulib-0.5.20-r1.ebuild

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

Index: uulib-0.5.20-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/uulib/uulib-0.5.20-r1.ebuild,v 1.1 
2014/10/11 18:30:40 dilfridge Exp $

EAPI=5

inherit eutils toolchain-funcs

MY_P=uudeview-${PV}

DESCRIPTION="Library that supports Base64 (MIME), uuencode, xxencode and binhex 
coding"
HOMEPAGE="http://www.fpx.de/fp/Software/UUDeview/";
SRC_URI="http://www.fpx.de/fp/Software/UUDeview/download/${MY_P}.tar.gz";

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~sh ~sparc ~x86 ~amd64-linux 
~x86-linux ~ppc-macos"
IUSE=""

S=${WORKDIR}/${MY_P}/${PN}

src_prepare() {
epatch "${FILESDIR}/${P}-shared.patch"
sed -i 's:\:$(AR):' Makefile.in || die
tc-export AR CC RANLIB
}






[gentoo-commits] dev/maekke:master commit in: /

2014-10-11 Thread Markus Meier
commit: 266ad0d7595cfdf7d593d2845ad8ed2772de27b5
Author: Markus Meier  gentoo  org>
AuthorDate: Sat Oct 11 18:15:27 2014 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sat Oct 11 18:15:27 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=dev/maekke.git;a=commit;h=266ad0d7

bump .travis.yml

---
 .travis.yml | 8 +---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index 1bf4c6e..0050353 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -3,9 +3,9 @@
 #
 language: python
 python:
-- "3.3"
+- "3.4"
 env:
-- PORTAGE_VER="2.2.11"
+- PORTAGE_VER="2.2.13"
 before_script:
 - mkdir travis-overlay
 - mv !(travis-overlay) travis-overlay/
@@ -24,7 +24,9 @@ before_script:
 - rsync --recursive --links --safe-links --perms --times --omit-dir-times 
--compress --force --whole-file --delete --stats --human-readable --timeout=180 
--exclude=/distfiles --checksum --quiet rsync://rsync.gentoo.org/gentoo-portage 
/usr/portage
 - ln -s /usr/portage/profiles/base/ /etc/portage/make.profile
 - wget "http://www.gentoo.org/dtd/metadata.dtd"; -O 
/usr/portage/distfiles/metadata.dtd
-- if ! cmp -s .travis.yml .travis.yml.upstream; then  echo -e "\e[31m !!! 
.travis.yml outdated! Update available https://github.com/mrueg/repoman-travis 
\e[0m" > /tmp/update ; fi
+- SIZE=`stat -c %s .travis.yml.upstream`
+- if ! cmp -n $SIZE -s .travis.yml .travis.yml.upstream; then  echo -e 
"\e[31m !!! .travis.yml outdated! Update available 
https://github.com/mrueg/repoman-travis \e[0m" > /tmp/update ; fi
 - cd travis-overlay
 script:
 - ./../spinner.sh "./../portage-${PORTAGE_VER}/bin/repoman full -d"
+# You can append own scripts after this line



[gentoo-commits] gentoo-x86 commit in media-gfx/shotwell: ChangeLog shotwell-0.20.1.ebuild

2014-10-11 Thread Justin Lecher (jlec)
jlec14/10/11 17:52:19

  Modified: ChangeLog
  Added:shotwell-0.20.1.ebuild
  Log:
  media-gfx/shotwell: Version BUmp, #525040
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with 
key B9D4F231BD1558AB!)

Revision  ChangesPath
1.73 media-gfx/shotwell/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/shotwell/ChangeLog?rev=1.73&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/shotwell/ChangeLog?rev=1.73&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/shotwell/ChangeLog?r1=1.72&r2=1.73

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-gfx/shotwell/ChangeLog,v
retrieving revision 1.72
retrieving revision 1.73
diff -u -r1.72 -r1.73
--- ChangeLog   20 Sep 2014 16:48:51 -  1.72
+++ ChangeLog   11 Oct 2014 17:52:19 -  1.73
@@ -1,6 +1,11 @@
 # ChangeLog for media-gfx/shotwell
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/shotwell/ChangeLog,v 1.72 
2014/09/20 16:48:51 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/shotwell/ChangeLog,v 1.73 
2014/10/11 17:52:19 jlec Exp $
+
+*shotwell-0.20.1 (11 Oct 2014)
+
+  11 Oct 2014; Justin Lecher  +shotwell-0.20.1.ebuild:
+  Version BUmp, #525040
 
 *shotwell-0.20.0 (20 Sep 2014)
 



1.1  media-gfx/shotwell/shotwell-0.20.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/shotwell/shotwell-0.20.1.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/shotwell/shotwell-0.20.1.ebuild?rev=1.1&content-type=text/plain

Index: shotwell-0.20.1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/shotwell/shotwell-0.20.1.ebuild,v 
1.1 2014/10/11 17:52:19 jlec Exp $

EAPI=5

GCONF_DEBUG="no"
VALA_MIN_API_VERSION="0.20"
VALA_MAX_API_VERSION="0.22"

inherit eutils gnome2 multilib toolchain-funcs vala versionator

MY_PV=$(get_version_component_range 1-2)
DESCRIPTION="Open source photo manager for GNOME"
HOMEPAGE="http://yorba.org/shotwell/";
SRC_URI="mirror://gnome/sources/${PN}/$(get_version_component_range 
1-2)/${P}.tar.xz"

LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE=""

CORE_SUPPORTED_LANGUAGES="
af ar as ast bg bn bn_IN ca cs da de el en_GB eo es et eu fi fr gd gl 
gu he
hi hr hu ia id it ja kk km kn ko ky lt lv mk ml mr nb nl nn or pa pl pt
pt_BR ro ru sk sl sr sv ta te th tr uk vi zh_CN zh_HK zh_TW"

for x in ${CORE_SUPPORTED_LANGUAGES}; do
IUSE+="linguas_${x} "
done

RDEPEND="
app-text/gnome-doc-utils
>=dev-db/sqlite-3.5.9:3
>=dev-libs/dbus-glib-0.80
>=dev-libs/glib-2.30.0:2
>=dev-libs/json-glib-0.7.6
>=dev-libs/libgee-0.8.5:0.8
>=dev-libs/libxml2-2.6.32:2
>=dev-util/desktop-file-utils-0.13
gnome-base/dconf
>=media-libs/gexiv2-0.4.90
media-libs/gst-plugins-base:1.0
media-libs/gst-plugins-good:1.0
media-libs/gstreamer:1.0
media-libs/lcms:2
>=media-libs/libexif-0.6.16:=
>=media-libs/libgphoto2-2.4.2:=
>=media-libs/libraw-0.13.2:=
>=net-libs/libsoup-2.26.0:2.4
>=net-libs/rest-0.7:0.7
>=net-libs/webkit-gtk-1.4:3
virtual/libgudev:=[introspection]
>=x11-libs/gtk+-3.6.0:3"
DEPEND="${RDEPEND}
$(vala_depend)
>=sys-devel/m4-1.4.13"

DOCS=( AUTHORS MAINTAINERS NEWS README THANKS )

# This probably comes from libraries that
# shotwell-video-thumbnailer links to.
# Nothing we can do at the moment. #435048
QA_FLAGS_IGNORED="/usr/libexec/${PN}/${PN}-video-thumbnailer"

pkg_setup() {
tc-export CC
G2CONF="${G2CONF}
--disable-schemas-compile
--disable-desktop-update
--disable-icon-update
--prefix=/usr
--lib=$(get_libdir)"
}

src_prepare() {
vala_src_prepare
sed \
-e 's|CFLAGS :|CFLAGS +|g' \
-i plugins/Makefile.plugin.mk || die
epatch \
"${FILESDIR}"/${PN}-0.13.1-ldflags.patch
}

src_configure() {
./configure \
${G2CONF} \
|| die
}

src_compile() {
local valaver="$(vala_best_api_version)"
emake VALAC="$(type -p valac-${valaver})"
}

src_install() {
gnome2_src_install
for x in ${LANGS}; do
if ! has ${x} ${LINGUAS}; then
find "${D}"/usr/share/locale/${x} -type f -exec rm {} \;
fi
done
}






[gentoo-commits] gentoo-x86 commit in dev-php/PEAR-HTML_Common2: ChangeLog PEAR-HTML_Common2-2.0.0.ebuild

2014-10-11 Thread Brian Evans (grknight)
grknight14/10/11 17:47:48

  Modified: ChangeLog
  Removed:  PEAR-HTML_Common2-2.0.0.ebuild
  Log:
  Drop old
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key 
67C78E1D)

Revision  ChangesPath
1.12 dev-php/PEAR-HTML_Common2/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/PEAR-HTML_Common2/ChangeLog?rev=1.12&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/PEAR-HTML_Common2/ChangeLog?rev=1.12&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/PEAR-HTML_Common2/ChangeLog?r1=1.11&r2=1.12

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-php/PEAR-HTML_Common2/ChangeLog,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- ChangeLog   10 Aug 2014 20:48:05 -  1.11
+++ ChangeLog   11 Oct 2014 17:47:48 -  1.12
@@ -1,6 +1,10 @@
 # ChangeLog for dev-php/PEAR-HTML_Common2
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-HTML_Common2/ChangeLog,v 1.11 
2014/08/10 20:48:05 slyfox Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-HTML_Common2/ChangeLog,v 1.12 
2014/10/11 17:47:48 grknight Exp $
+
+  11 Oct 2014; Brian Evans 
+  -PEAR-HTML_Common2-2.0.0.ebuild:
+  Drop old
 
   10 Aug 2014; Sergei Trofimovich 
   PEAR-HTML_Common2-2.0.0.ebuild, PEAR-HTML_Common2-2.1.0.ebuild:






[gentoo-commits] gentoo-x86 commit in dev-php/PEAR-XML_Beautifier: PEAR-XML_Beautifier-1.2.2-r1.ebuild PEAR-XML_Beautifier-1.2.2.ebuild ChangeLog PEAR-XML_Beautifier-1.1-r1.ebuild

2014-10-11 Thread Brian Evans (grknight)
grknight14/10/11 17:38:08

  Modified: PEAR-XML_Beautifier-1.2.2.ebuild ChangeLog
  Added:PEAR-XML_Beautifier-1.2.2-r1.ebuild
  Removed:  PEAR-XML_Beautifier-1.1-r1.ebuild
  Log:
  Drop old; Revbump for EAPI5; Fix Description
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key 
67C78E1D)

Revision  ChangesPath
1.8  
dev-php/PEAR-XML_Beautifier/PEAR-XML_Beautifier-1.2.2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/PEAR-XML_Beautifier/PEAR-XML_Beautifier-1.2.2.ebuild?rev=1.8&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/PEAR-XML_Beautifier/PEAR-XML_Beautifier-1.2.2.ebuild?rev=1.8&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/PEAR-XML_Beautifier/PEAR-XML_Beautifier-1.2.2.ebuild?r1=1.7&r2=1.8

Index: PEAR-XML_Beautifier-1.2.2.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-php/PEAR-XML_Beautifier/PEAR-XML_Beautifier-1.2.2.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- PEAR-XML_Beautifier-1.2.2.ebuild10 Aug 2014 20:57:41 -  1.7
+++ PEAR-XML_Beautifier-1.2.2.ebuild11 Oct 2014 17:38:08 -  1.8
@@ -1,10 +1,10 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-php/PEAR-XML_Beautifier/PEAR-XML_Beautifier-1.2.2.ebuild,v
 1.7 2014/08/10 20:57:41 slyfox Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-php/PEAR-XML_Beautifier/PEAR-XML_Beautifier-1.2.2.ebuild,v
 1.8 2014/10/11 17:38:08 grknight Exp $
 
 inherit php-pear-r1
 
-DESCRIPTION="XML_Beautifier will add indentation and linebreaks to you XML 
files, replace all entities, format your comments and makes your document 
easier to read"
+DESCRIPTION="Adds indentation and linebreaks, replace entities, formats 
comments and makes XML easier to read"
 LICENSE="PHP-2.02"
 SLOT="0"
 KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86"



1.32 dev-php/PEAR-XML_Beautifier/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-php/PEAR-XML_Beautifier/ChangeLog,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- ChangeLog   10 Aug 2014 20:57:41 -  1.31
+++ ChangeLog   11 Oct 2014 17:38:08 -  1.32
@@ -1,6 +1,13 @@
 # ChangeLog for dev-php/PEAR-XML_Beautifier
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-XML_Beautifier/ChangeLog,v 
1.31 2014/08/10 20:57:41 slyfox Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-XML_Beautifier/ChangeLog,v 
1.32 2014/10/11 17:38:08 grknight Exp $
+
+*PEAR-XML_Beautifier-1.2.2-r1 (11 Oct 2014)
+
+  11 Oct 2014; Brian Evans 
+  +PEAR-XML_Beautifier-1.2.2-r1.ebuild, -PEAR-XML_Beautifier-1.1-r1.ebuild,
+  PEAR-XML_Beautifier-1.2.2.ebuild:
+  Drop old; Revbump for EAPI5; Fix Description
 
   10 Aug 2014; Sergei Trofimovich 
   PEAR-XML_Beautifier-1.1-r1.ebuild, PEAR-XML_Beautifier-1.2.2.ebuild:



1.1  
dev-php/PEAR-XML_Beautifier/PEAR-XML_Beautifier-1.2.2-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/PEAR-XML_Beautifier/PEAR-XML_Beautifier-1.2.2-r1.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/PEAR-XML_Beautifier/PEAR-XML_Beautifier-1.2.2-r1.ebuild?rev=1.1&content-type=text/plain

Index: PEAR-XML_Beautifier-1.2.2-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-php/PEAR-XML_Beautifier/PEAR-XML_Beautifier-1.2.2-r1.ebuild,v
 1.1 2014/10/11 17:38:08 grknight Exp $

EAPI=5

inherit php-pear-r1

DESCRIPTION="Adds indentation and linebreaks, replace entities, formats 
comments and makes XML easier to read"
LICENSE="PHP-2.02"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE=""
RDEPEND="dev-php/PEAR-XML_Util
dev-php/PEAR-XML_Parser"






[gentoo-commits] gentoo-x86 commit in dev-php/PEAR-File_Gettext: ChangeLog PEAR-File_Gettext-0.4.1-r1.ebuild

2014-10-11 Thread Brian Evans (grknight)
grknight14/10/11 17:25:35

  Modified: ChangeLog
  Removed:  PEAR-File_Gettext-0.4.1-r1.ebuild
  Log:
  Drop old
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key 
67C78E1D)

Revision  ChangesPath
1.40 dev-php/PEAR-File_Gettext/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/PEAR-File_Gettext/ChangeLog?rev=1.40&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/PEAR-File_Gettext/ChangeLog?rev=1.40&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/PEAR-File_Gettext/ChangeLog?r1=1.39&r2=1.40

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-php/PEAR-File_Gettext/ChangeLog,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -r1.39 -r1.40
--- ChangeLog   10 Aug 2014 20:47:03 -  1.39
+++ ChangeLog   11 Oct 2014 17:25:35 -  1.40
@@ -1,6 +1,10 @@
 # ChangeLog for dev-php/PEAR-File_Gettext
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-File_Gettext/ChangeLog,v 1.39 
2014/08/10 20:47:03 slyfox Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-File_Gettext/ChangeLog,v 1.40 
2014/10/11 17:25:35 grknight Exp $
+
+  11 Oct 2014; Brian Evans 
+  -PEAR-File_Gettext-0.4.1-r1.ebuild:
+  Drop old
 
   10 Aug 2014; Sergei Trofimovich 
   PEAR-File_Gettext-0.4.1-r1.ebuild, PEAR-File_Gettext-0.4.2.ebuild:






[gentoo-commits] gentoo commit in xml/htdocs/proj/en/qa/treecleaners: maintainer-needed.xml

2014-10-11 Thread Markos Chandras (hwoarang)
hwoarang14/10/11 17:22:13

  Modified: maintainer-needed.xml
  Log:
  Automated update of maintainer-needed package list

Revision  ChangesPath
1.448xml/htdocs/proj/en/qa/treecleaners/maintainer-needed.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/qa/treecleaners/maintainer-needed.xml?rev=1.448&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/qa/treecleaners/maintainer-needed.xml?rev=1.448&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/qa/treecleaners/maintainer-needed.xml?r1=1.447&r2=1.448

Index: maintainer-needed.xml
===
RCS file: 
/var/cvsroot/gentoo/xml/htdocs/proj/en/qa/treecleaners/maintainer-needed.xml,v
retrieving revision 1.447
retrieving revision 1.448
diff -u -r1.447 -r1.448
--- maintainer-needed.xml   28 Sep 2014 20:44:25 -  1.447
+++ maintainer-needed.xml   11 Oct 2014 17:22:13 -  1.448
@@ -1,6 +1,6 @@
 
 
-
+
 
 
 
@@ -23,7 +23,7 @@
   
 
   1.2
-  2014-09-28
+  2014-10-11
   
   Maintainer-Needed packages
   
@@ -38,7 +38,7 @@
 
 Package List
 
-The following 1170 packages are marked as maintainer-needed
+The following 1167 packages are marked as maintainer-needed
 
 
 Package NameDescriptionBugs
@@ -1911,9 +1911,6 @@
 http://packages.gentoo.org/package/gnome-extra/connman-gnome";>gnome-extra/connman-gnome
 Provides a daemon for managing internet connections
 https://bugs.gentoo.org/buglist.cgi?quicksearch=gnome-extra/connman-gnome";>Open
 Bugs
-http://packages.gentoo.org/package/gnome-extra/file-browser-applet";>gnome-extra/file-browser-applet
-Browse, open and manage files in your computer directly from the GNOME 
panel
-https://bugs.gentoo.org/buglist.cgi?quicksearch=gnome-extra/file-browser-applet";>Open
 Bugs
 http://packages.gentoo.org/package/gnome-extra/gdesklets-core";>gnome-extra/gdesklets-core
 GNOME Desktop Applets: Core library for desktop applets
 https://bugs.gentoo.org/buglist.cgi?quicksearch=gnome-extra/gdesklets-core";>Open
 Bugs
@@ -2715,9 +2712,6 @@
 http://packages.gentoo.org/package/rox-base/rox-lib";>rox-base/rox-lib
 ROX-Lib2 - Shared code for ROX applications by Thomas Leonard
 https://bugs.gentoo.org/buglist.cgi?quicksearch=rox-base/rox-lib";>Open 
Bugs
-http://packages.gentoo.org/package/rox-base/rox-media";>rox-base/rox-media
-Manage removable drives for ROX and other lightweight desktops
-https://bugs.gentoo.org/buglist.cgi?quicksearch=rox-base/rox-media";>Open 
Bugs
 http://packages.gentoo.org/package/rox-base/rox-session";>rox-base/rox-session
 Rox-Session is a really simple session manager
 https://bugs.gentoo.org/buglist.cgi?quicksearch=rox-base/rox-session";>Open
 Bugs
@@ -3465,9 +3459,6 @@
 http://packages.gentoo.org/package/x11-themes/fvwm_sounds";>x11-themes/fvwm_sounds
 Sounds for use with FVWM
 https://bugs.gentoo.org/buglist.cgi?quicksearch=x11-themes/fvwm_sounds";>Open
 Bugs
-http://packages.gentoo.org/package/x11-themes/gdm-themes";>x11-themes/gdm-themes
-Some nice themes for the GDM Greeter
-https://bugs.gentoo.org/buglist.cgi?quicksearch=x11-themes/gdm-themes";>Open
 Bugs
 http://packages.gentoo.org/package/x11-themes/gentoo-artwork";>x11-themes/gentoo-artwork
 A collection of miscellaneous Gentoo Linux logos and artwork
 https://bugs.gentoo.org/buglist.cgi?quicksearch=x11-themes/gentoo-artwork";>Open
 Bugs






[gentoo-commits] gentoo-x86 commit in dev-python/enum34: ChangeLog metadata.xml enum34-1.0.ebuild

2014-10-11 Thread Alex Brandt (alunduil)
alunduil14/10/11 17:08:45

  Added:ChangeLog metadata.xml enum34-1.0.ebuild
  Log:
  add ebuild for enum34—dependence of fig
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with 
key 11A8217C!)

Revision  ChangesPath
1.1  dev-python/enum34/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/enum34/ChangeLog?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/enum34/ChangeLog?rev=1.1&content-type=text/plain

Index: ChangeLog
===
# ChangeLog for dev-python/enum34
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/enum34/ChangeLog,v 1.1 2014/10/11 
17:08:45 alunduil Exp $

*enum34-1.0 (11 Oct 2014)

  11 Oct 2014; Alex Brandt  +enum34-1.0.ebuild,
  +metadata.xml:
  add ebuild written by me




1.1  dev-python/enum34/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/enum34/metadata.xml?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/enum34/metadata.xml?rev=1.1&content-type=text/plain

Index: metadata.xml
===

http://www.gentoo.org/dtd/metadata.dtd";>


alund...@gentoo.org
Alex Brandt







1.1  dev-python/enum34/enum34-1.0.ebuild

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

Index: enum34-1.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/enum34/enum34-1.0.ebuild,v 1.1 
2014/10/11 17:08:45 alunduil Exp $

EAPI=5
PYTHON_COMPAT=( python2_7 python3_3 )

inherit distutils-r1

DESCRIPTION="Python 3.4 Enum backported"
HOMEPAGE="https://pypi.python.org/pypi/enum34";
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64"
IUSE="doc"

DEPEND=""
RDEPEND=""

python_test() {
"${PYTHON}" enum/test_enum.py || die "Tests failed under ${EPYTHON}"
}

python_install_all() {
use doc && local DOCS=( enum/doc/. enum/README enum/LICENSE )

distutils-r1_python_install_all
}






[gentoo-commits] gentoo-x86 commit in dev-python/enum34: - New directory

2014-10-11 Thread Alex Brandt (alunduil)
alunduil14/10/11 17:07:22

  Log:
  Directory /var/cvsroot/gentoo-x86/dev-python/enum34 added to the repository



[gentoo-commits] proj/perl-overlay:master commit in: dev-perl/Data-GUID/

2014-10-11 Thread Kent Fredric
commit: 42398dc75e83299bc2ff837dbc22742403594225
Author: Kent Fredric  gmail  com>
AuthorDate: Sat Oct 11 16:47:35 2014 +
Commit: Kent Fredric  gmail  com>
CommitDate: Sat Oct 11 16:47:35 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/perl-overlay.git;a=commit;h=42398dc7

[treeclean] dev-perl/Data-GUID -> Superceded by ::gentoo

---
 dev-perl/Data-GUID/Data-GUID-0.46.0.ebuild | 25 --
 dev-perl/Data-GUID/Data-GUID-0.47.0.ebuild | 52 --
 dev-perl/Data-GUID/metadata.xml| 13 
 3 files changed, 90 deletions(-)

diff --git a/dev-perl/Data-GUID/Data-GUID-0.46.0.ebuild 
b/dev-perl/Data-GUID/Data-GUID-0.46.0.ebuild
deleted file mode 100644
index f6de46c..000
--- a/dev-perl/Data-GUID/Data-GUID-0.46.0.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-EAPI=4
-MODULE_AUTHOR=RJBS
-MODULE_VERSION="0.046"
-inherit perl-module perl-declaredeps
-
-DESCRIPTION="Globally unique identifiers"
-LICENSE="|| ( Artistic GPL-2 )"
-
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-IUSE=""
-
-depend Data-UUID 1.148;
-depend Sub-Exporter 0.90;
-depend Sub-Install 0.03;
-depend-virtual Test-Simple; # Test::More
-bdepend-virtual ExtUtils-MakeMaker 6.46;
-
-ddep_setup;
-
-SRC_TEST="do"

diff --git a/dev-perl/Data-GUID/Data-GUID-0.47.0.ebuild 
b/dev-perl/Data-GUID/Data-GUID-0.47.0.ebuild
deleted file mode 100644
index 1f47237..000
--- a/dev-perl/Data-GUID/Data-GUID-0.47.0.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-EAPI=5
-MODULE_AUTHOR=RJBS
-MODULE_VERSION=0.047
-inherit perl-module
-
-DESCRIPTION='globally unique identifiers'
-LICENSE=" || ( Artistic GPL-2 )"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-perl_meta_configure() {
-   # ExtUtils::MakeMaker 6.30 ( 6.300.0 )
-   echo \>=virtual/perl-ExtUtils-MakeMaker-6.30
-}
-perl_meta_runtime() {
-   # Carp
-   # echo virtual/perl-Carp
-   # Data::UUID 1.148 ( 1.148.0 )
-   echo \>=dev-perl/Data-UUID-1.148.0
-   # Sub::Exporter 0.90 ( 0.900.0 )
-   echo \>=dev-perl/Sub-Exporter-0.900.0
-   # Sub::Install 0.03 ( 0.30.0 )
-   echo \>=dev-perl/Sub-Install-0.30.0
-   # bytes
-   # echo dev-lang/perl
-   # overload
-   # echo dev-lang/perl
-   # strict
-   # echo dev-lang/perl
-   # warnings
-   # echo dev-lang/perl
-}
-perl_meta_test() {
-   # File::Find
-   # echo dev-lang/perl
-   # File::Temp
-   echo virtual/perl-File-Temp
-   # Test::More 0.96 ( 0.960.0 )
-   echo \>=virtual/perl-Test-Simple-0.960.0
-}
-DEPEND="
-   $(perl_meta_configure)
-   $(perl_meta_runtime)
-   test? ( $(perl_meta_test) )
-"
-RDEPEND="
-   $(perl_meta_runtime)
-"
-SRC_TEST="do parallel"

diff --git a/dev-perl/Data-GUID/metadata.xml b/dev-perl/Data-GUID/metadata.xml
deleted file mode 100644
index 65fa6c5..000
--- a/dev-perl/Data-GUID/metadata.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd";>
-
-perl
-
-m...@italpro.net
-Michele Beltrame
-
-
-Data-GUID
-Data::GUID
-
-



[gentoo-commits] proj/perl-overlay:master commit in: dev-perl/Module-Build-Tiny/

2014-10-11 Thread Kent Fredric
commit: 3a40cde7c2edf7ba8571445731af8710e0234ad0
Author: Kent Fredric  gmail  com>
AuthorDate: Sat Oct 11 16:51:19 2014 +
Commit: Kent Fredric  gmail  com>
CommitDate: Sat Oct 11 16:51:19 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/perl-overlay.git;a=commit;h=3a40cde7

[treeclean] dev-perl/Module-Build-Tiny -> Superceded by ::gentoo

---
 .../Module-Build-Tiny-0.18.0.ebuild| 116 --
 .../Module-Build-Tiny-0.19.0.ebuild| 116 --
 .../Module-Build-Tiny-0.30.0.ebuild| 136 -
 .../Module-Build-Tiny-0.35.0.ebuild| 134 
 dev-perl/Module-Build-Tiny/metadata.xml|  13 --
 5 files changed, 515 deletions(-)

diff --git a/dev-perl/Module-Build-Tiny/Module-Build-Tiny-0.18.0.ebuild 
b/dev-perl/Module-Build-Tiny/Module-Build-Tiny-0.18.0.ebuild
deleted file mode 100644
index fde1aa2..000
--- a/dev-perl/Module-Build-Tiny/Module-Build-Tiny-0.18.0.ebuild
+++ /dev/null
@@ -1,116 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-EAPI=5
-MODULE_AUTHOR=LEONT
-MODULE_VERSION=0.018
-inherit perl-mb-tiny
-
-DESCRIPTION='A tiny replacement for Module::Build'
-LICENSE=" || ( Artistic GPL-2 )"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-perl_meta_configure() {
-   # CPAN::Meta
-   echo virtual/perl-CPAN-Meta
-   # Exporter 5.57 ( 5.570.0 )
-   echo \>=virtual/perl-Exporter-5.570.0
-   # ExtUtils::Config 0.003 ( 0.3.0 )
-   echo \>=dev-perl/ExtUtils-Config-0.3.0
-   # ExtUtils::Helpers 0.019 ( 0.19.0 )
-   echo \>=dev-perl/ExtUtils-Helpers-0.19.0
-   # ExtUtils::Install
-   echo virtual/perl-ExtUtils-MakeMaker
-   # ExtUtils::InstallPaths 0.002 ( 0.2.0 )
-   echo \>=dev-perl/ExtUtils-InstallPaths-0.2.0
-   # File::Basename
-   echo dev-lang/perl
-   # File::Find
-   echo dev-lang/perl
-   # File::Path
-   echo virtual/perl-File-Path
-   # File::Spec::Functions
-   echo virtual/perl-File-Spec
-   # Getopt::Long
-   echo virtual/perl-Getopt-Long
-   # JSON::PP 2 ( 2.0.0 )
-   echo \>=dev-perl/JSON-2.0.0
-   # Pod::Man
-   echo virtual/perl-podlators
-   # TAP::Harness
-   echo virtual/perl-Test-Harness
-   # perl 5.006 ( 5.6.0 )
-   echo \>=dev-lang/perl-5.6.0
-   # strict
-   echo dev-lang/perl
-   # warnings
-   echo dev-lang/perl
-}
-perl_meta_runtime() {
-   # CPAN::Meta
-   echo virtual/perl-CPAN-Meta
-   # Exporter 5.57 ( 5.570.0 )
-   echo \>=virtual/perl-Exporter-5.570.0
-   # ExtUtils::Config 0.003 ( 0.3.0 )
-   echo \>=dev-perl/ExtUtils-Config-0.3.0
-   # ExtUtils::Helpers 0.019 ( 0.19.0 )
-   echo \>=dev-perl/ExtUtils-Helpers-0.19.0
-   # ExtUtils::Install
-   echo virtual/perl-ExtUtils-MakeMaker
-   # ExtUtils::InstallPaths 0.002 ( 0.2.0 )
-   echo \>=dev-perl/ExtUtils-InstallPaths-0.2.0
-   # File::Basename
-   echo dev-lang/perl
-   # File::Find
-   echo dev-lang/perl
-   # File::Path
-   echo virtual/perl-File-Path
-   # File::Spec::Functions
-   echo virtual/perl-File-Spec
-   # Getopt::Long
-   echo virtual/perl-Getopt-Long
-   # JSON::PP 2 ( 2.0.0 )
-   echo \>=dev-perl/JSON-2.0.0
-   # Pod::Man
-   echo virtual/perl-podlators
-   # TAP::Harness
-   echo virtual/perl-Test-Harness
-   # perl 5.006 ( 5.6.0 )
-   echo \>=dev-lang/perl-5.6.0
-   # strict
-   echo dev-lang/perl
-   # warnings
-   echo dev-lang/perl
-}
-perl_meta_test() {
-   # Carp
-   echo dev-lang/perl
-   # Config
-   #echo unresolved
-   # Cwd
-   echo virtual/perl-File-Spec
-   # Data::Dumper
-   echo virtual/perl-Data-Dumper
-   # File::Spec
-   echo virtual/perl-File-Spec
-   # File::Temp
-   echo virtual/perl-File-Temp
-   # IO::File
-   echo virtual/perl-IO
-   # IPC::Open2
-   echo dev-lang/perl
-   # Test::More 0.88 ( 0.880.0 )
-   echo \>=virtual/perl-Test-Simple-0.88
-   # blib
-   echo dev-lang/perl
-}
-DEPEND="
-   $(perl_meta_configure)
-   $(perl_meta_runtime)
-   test? ( $(perl_meta_test) )
-"
-RDEPEND="
-   $(perl_meta_runtime)
-"
-SRC_TEST="do"

diff --git a/dev-perl/Module-Build-Tiny/Module-Build-Tiny-0.19.0.ebuild 
b/dev-perl/Module-Build-Tiny/Module-Build-Tiny-0.19.0.ebuild
deleted file mode 100644
index d5be651..000
--- a/dev-perl/Module-Build-Tiny/Module-Build-Tiny-0.19.0.ebuild
+++ /dev/null
@@ -1,116 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-EAPI=5
-MODULE_AUTHOR=LEONT
-MODULE_VERSION=0.019
-inherit perl-mb-tiny
-
-DESCRIPTION='A tiny replacement for Module::Build'
-LICENSE=" || ( Artistic GPL-2 )"
-SLOT="0"
-KE

[gentoo-commits] proj/perl-overlay:master commit in: dev-perl/ExtUtils-Config/

2014-10-11 Thread Kent Fredric
commit: 0d306176a7762c87362b957b9e750b99b6e0d632
Author: Kent Fredric  gmail  com>
AuthorDate: Sat Oct 11 16:48:46 2014 +
Commit: Kent Fredric  gmail  com>
CommitDate: Sat Oct 11 16:48:46 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/perl-overlay.git;a=commit;h=0d306176

[treeclean] dev-perl/ExtUtils-Config -> Superceded by ::gentoo

---
 .../ExtUtils-Config/ExtUtils-Config-0.7.0.ebuild   | 46 --
 dev-perl/ExtUtils-Config/metadata.xml  | 13 --
 2 files changed, 59 deletions(-)

diff --git a/dev-perl/ExtUtils-Config/ExtUtils-Config-0.7.0.ebuild 
b/dev-perl/ExtUtils-Config/ExtUtils-Config-0.7.0.ebuild
deleted file mode 100644
index 484418c..000
--- a/dev-perl/ExtUtils-Config/ExtUtils-Config-0.7.0.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-EAPI=5
-MODULE_AUTHOR=LEONT
-MODULE_VERSION=0.007
-inherit perl-module
-
-DESCRIPTION='A wrapper for perl'\''s configuration'
-LICENSE=" || ( Artistic GPL-2 )"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-perl_meta_configure() {
-   # ExtUtils::MakeMaker 6.30 ( 6.300.0 )
-   echo \>=virtual/perl-ExtUtils-MakeMaker-6.30
-}
-perl_meta_runtime() {
-   # Config
-   #echo unresolved
-   # Data::Dumper
-   echo virtual/perl-Data-Dumper
-   # perl 5.006 ( 5.6.0 )
-   echo \>=dev-lang/perl-5.6.0
-   # strict
-   echo dev-lang/perl
-   # warnings
-   echo dev-lang/perl
-}
-perl_meta_test() {
-   # File::Find
-   echo dev-lang/perl
-   # File::Temp
-   echo virtual/perl-File-Temp
-   # Test::More 0.88 ( 0.880.0 )
-   echo \>=virtual/perl-Test-Simple-0.88
-}
-DEPEND="
-   $(perl_meta_configure)
-   $(perl_meta_runtime)
-   test? ( $(perl_meta_test) )
-"
-RDEPEND="
-   $(perl_meta_runtime)
-"
-SRC_TEST="do"

diff --git a/dev-perl/ExtUtils-Config/metadata.xml 
b/dev-perl/ExtUtils-Config/metadata.xml
deleted file mode 100644
index 9bc86eb..000
--- a/dev-perl/ExtUtils-Config/metadata.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd";>
-
-   perl
-   
-   kentfred...@gmail.com
-   Kent Fredric
-   
-   
-   ExtUtils-Config
-   ExtUtils::Config
-   
-



[gentoo-commits] proj/perl-overlay:master commit in: dev-perl/ExtUtils-Helpers/

2014-10-11 Thread Kent Fredric
commit: 020ea676fece7f7f7ad5159b15412d6795299b96
Author: Kent Fredric  gmail  com>
AuthorDate: Sat Oct 11 16:49:05 2014 +
Commit: Kent Fredric  gmail  com>
CommitDate: Sat Oct 11 16:49:05 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/perl-overlay.git;a=commit;h=020ea676

[treeclean] dev-perl/ExtUtils-Helpers -> Superceded by ::gentoo

---
 .../ExtUtils-Helpers-0.19.0.ebuild | 60 --
 .../ExtUtils-Helpers-0.20.0.ebuild | 60 --
 .../ExtUtils-Helpers-0.21.0.ebuild | 60 --
 dev-perl/ExtUtils-Helpers/metadata.xml | 16 --
 4 files changed, 196 deletions(-)

diff --git a/dev-perl/ExtUtils-Helpers/ExtUtils-Helpers-0.19.0.ebuild 
b/dev-perl/ExtUtils-Helpers/ExtUtils-Helpers-0.19.0.ebuild
deleted file mode 100644
index 5e17fec..000
--- a/dev-perl/ExtUtils-Helpers/ExtUtils-Helpers-0.19.0.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-EAPI=5
-MODULE_AUTHOR=LEONT
-MODULE_VERSION=0.019
-inherit perl-module
-
-DESCRIPTION='Various portability utilities for module builders'
-LICENSE=" || ( Artistic GPL-2 )"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-perl_meta_configure() {
-   # ExtUtils::MakeMaker 6.30 ( 6.300.0 )
-   echo \>=virtual/perl-ExtUtils-MakeMaker-6.300.0
-}
-perl_meta_runtime() {
-   # Carp
-   echo dev-lang/perl
-   # Config
-   #echo unresolved
-   # Exporter 5.57 ( 5.570.0 )
-   echo \>=virtual/perl-Exporter-5.570.0
-   # File::Basename
-   echo dev-lang/perl
-   # File::Copy
-   echo dev-lang/perl
-   # File::Spec::Functions
-   echo virtual/perl-File-Spec
-   # Module::Load
-   echo virtual/perl-Module-Load
-   # Text::ParseWords 3.24 ( 3.240.0 )
-   echo \>=virtual/perl-Text-ParseWords-3.240.0
-   # perl 5.006 ( 5.6.0 )
-   echo \>=dev-lang/perl-5.6.0
-   # strict
-   echo dev-lang/perl
-   # warnings
-   echo dev-lang/perl
-}
-perl_meta_test() {
-   # Cwd
-   echo virtual/perl-File-Spec
-   # File::Find
-   echo dev-lang/perl
-   # File::Temp
-   echo virtual/perl-File-Temp
-   # Test::More
-   echo virtual/perl-Test-Simple
-}
-DEPEND="
-   $(perl_meta_configure)
-   $(perl_meta_runtime)
-   test? ( $(perl_meta_test) )
-"
-RDEPEND="
-   $(perl_meta_runtime)
-"
-SRC_TEST="do"

diff --git a/dev-perl/ExtUtils-Helpers/ExtUtils-Helpers-0.20.0.ebuild 
b/dev-perl/ExtUtils-Helpers/ExtUtils-Helpers-0.20.0.ebuild
deleted file mode 100644
index dfbbcc9..000
--- a/dev-perl/ExtUtils-Helpers/ExtUtils-Helpers-0.20.0.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-EAPI=5
-MODULE_AUTHOR=LEONT
-MODULE_VERSION=0.020
-inherit perl-module
-
-DESCRIPTION='Various portability utilities for module builders'
-LICENSE=" || ( Artistic GPL-2 )"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-perl_meta_configure() {
-   # ExtUtils::MakeMaker 6.30 ( 6.300.0 )
-   echo \>=virtual/perl-ExtUtils-MakeMaker-6.300.0
-}
-perl_meta_runtime() {
-   # Carp
-   echo dev-lang/perl
-   # Config
-   #echo unresolved
-   # Exporter 5.57 ( 5.570.0 )
-   echo \>=virtual/perl-Exporter-5.570.0
-   # File::Basename
-   echo dev-lang/perl
-   # File::Copy
-   echo dev-lang/perl
-   # File::Spec::Functions
-   echo virtual/perl-File-Spec
-   # Module::Load
-   echo virtual/perl-Module-Load
-   # Text::ParseWords 3.24 ( 3.240.0 )
-   echo \>=virtual/perl-Text-ParseWords-3.240.0
-   # perl 5.006 ( 5.6.0 )
-   echo \>=dev-lang/perl-5.6.0
-   # strict
-   echo dev-lang/perl
-   # warnings
-   echo dev-lang/perl
-}
-perl_meta_test() {
-   # Cwd
-   echo virtual/perl-File-Spec
-   # File::Find
-   echo dev-lang/perl
-   # File::Temp
-   echo virtual/perl-File-Temp
-   # Test::More
-   echo virtual/perl-Test-Simple
-}
-DEPEND="
-   $(perl_meta_configure)
-   $(perl_meta_runtime)
-   test? ( $(perl_meta_test) )
-"
-RDEPEND="
-   $(perl_meta_runtime)
-"
-SRC_TEST="do"

diff --git a/dev-perl/ExtUtils-Helpers/ExtUtils-Helpers-0.21.0.ebuild 
b/dev-perl/ExtUtils-Helpers/ExtUtils-Helpers-0.21.0.ebuild
deleted file mode 100644
index c77858e..000
--- a/dev-perl/ExtUtils-Helpers/ExtUtils-Helpers-0.21.0.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-EAPI=5
-MODULE_AUTHOR=LEONT
-MODULE_VERSION=0.021
-inherit perl-module
-
-DESCRIPTION='Various portability utilities for module builders'
-LICENSE=" || ( Artistic GPL-2 )"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-perl_meta_confi

[gentoo-commits] proj/perl-overlay:master commit in: dev-perl/Capture-Tiny/

2014-10-11 Thread Kent Fredric
commit: 4780bcf29bea7ee2cb8485e000cad0fe98cc311d
Author: Kent Fredric  gmail  com>
AuthorDate: Sat Oct 11 16:45:26 2014 +
Commit: Kent Fredric  gmail  com>
CommitDate: Sat Oct 11 16:45:37 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/perl-overlay.git;a=commit;h=4780bcf2

[treeclean] dev-perl/Capture-Tiny -> Superceded by ::gentoo

---
 dev-perl/Capture-Tiny/Capture-Tiny-0.220.0.ebuild | 62 ---
 dev-perl/Capture-Tiny/metadata.xml|  9 
 2 files changed, 71 deletions(-)

diff --git a/dev-perl/Capture-Tiny/Capture-Tiny-0.220.0.ebuild 
b/dev-perl/Capture-Tiny/Capture-Tiny-0.220.0.ebuild
deleted file mode 100644
index 3e7f47d..000
--- a/dev-perl/Capture-Tiny/Capture-Tiny-0.220.0.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-EAPI=5
-MODULE_AUTHOR=DAGOLDEN
-MODULE_VERSION=0.22
-inherit perl-module
-
-DESCRIPTION='Capture STDOUT and STDERR from Perl, XS or external programs'
-LICENSE=" Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-perl_meta_configure() {
-   # ExtUtils::MakeMaker 6.30 ( 6.300.0 )
-   echo \>=virtual/perl-ExtUtils-MakeMaker-6.30
-}
-perl_meta_runtime() {
-   # Carp
-   echo dev-lang/perl
-   # Exporter
-   echo virtual/perl-Exporter
-   # File::Spec
-   echo virtual/perl-File-Spec
-   # File::Temp
-   echo virtual/perl-File-Temp
-   # IO::Handle
-   echo virtual/perl-IO
-   # Scalar::Util
-   echo virtual/perl-Scalar-List-Utils
-   # perl 5.008 ( 5.8.0 )
-   echo \>=dev-lang/perl-5.8.0
-   # strict
-   echo dev-lang/perl
-   # warnings
-   echo dev-lang/perl
-}
-perl_meta_test() {
-   # Config
-   #echo unresolved
-   # ExtUtils::MakeMaker
-   echo virtual/perl-ExtUtils-MakeMaker
-   # File::Find
-   echo dev-lang/perl
-   # File::Spec::Functions
-   echo virtual/perl-File-Spec
-   # IO::File
-   echo virtual/perl-IO
-   # List::Util
-   echo virtual/perl-Scalar-List-Utils
-   # Test::More 0.62 ( 0.620.0 )
-   echo \>=virtual/perl-Test-Simple-0.62
-}
-DEPEND="
-   $(perl_meta_configure)
-   $(perl_meta_runtime)
-   test? ( $(perl_meta_test) )
-"
-RDEPEND="
-   $(perl_meta_runtime)
-"
-SRC_TEST="do parallel"

diff --git a/dev-perl/Capture-Tiny/metadata.xml 
b/dev-perl/Capture-Tiny/metadata.xml
deleted file mode 100644
index f6442cf..000
--- a/dev-perl/Capture-Tiny/metadata.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd";>
-
-  perl
-  
-Capture-Tiny
-Capture::Tiny
-  
-



[gentoo-commits] proj/perl-overlay:master commit in: virtual/perl-Carp/

2014-10-11 Thread Kent Fredric
commit: 676c01d22ab2ce35794247a590fc713e246401ca
Author: Kent Fredric  gmail  com>
AuthorDate: Sat Oct 11 16:57:37 2014 +
Commit: Kent Fredric  gmail  com>
CommitDate: Sat Oct 11 16:57:37 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/perl-overlay.git;a=commit;h=676c01d2

[treeclean] virtual/perl-Carp -> Superceded by ::gentoo

---
 virtual/perl-Carp/metadata.xml   |  9 -
 virtual/perl-Carp/perl-Carp-1.330.100.ebuild | 19 ---
 2 files changed, 28 deletions(-)

diff --git a/virtual/perl-Carp/metadata.xml b/virtual/perl-Carp/metadata.xml
deleted file mode 100644
index 1027ac9..000
--- a/virtual/perl-Carp/metadata.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd";>
-
-   perl
-   
-   kentfred...@gmail.com
-   Kent Fredric
-   
-

diff --git a/virtual/perl-Carp/perl-Carp-1.330.100.ebuild 
b/virtual/perl-Carp/perl-Carp-1.330.100.ebuild
deleted file mode 100644
index 06042fb..000
--- a/virtual/perl-Carp/perl-Carp-1.330.100.ebuild
+++ /dev/null
@@ -1,19 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-EAPI=5
-DESCRIPTION="Virtual for ${PN#perl-}"
-HOMEPAGE=""
-SRC_URI=""
-
-LICENSE=""
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND=""
-RDEPEND="
-   || ( =dev-lang/perl-5.20* ~perl-core/${PN#perl-}-${PV} )
-   !perl-core/${PN#perl-}-${PV}-r999
-"



[gentoo-commits] proj/perl-overlay:master commit in: dev-perl/Class-Mix/

2014-10-11 Thread Kent Fredric
commit: 5a33076ad3ea0689cf3502b2d2eb35d45abebff6
Author: Kent Fredric  gmail  com>
AuthorDate: Sat Oct 11 16:46:11 2014 +
Commit: Kent Fredric  gmail  com>
CommitDate: Sat Oct 11 16:46:11 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/perl-overlay.git;a=commit;h=5a33076a

[treeclean] dev-perl/Class-Mix -> Superceded by ::gentoo

---
 dev-perl/Class-Mix/Class-Mix-0.3.0.ebuild | 30 ---
 dev-perl/Class-Mix/Class-Mix-0.4.0.ebuild | 31 ---
 dev-perl/Class-Mix/Class-Mix-0.5.0.ebuild | 64 ---
 dev-perl/Class-Mix/metadata.xml   | 13 ---
 4 files changed, 138 deletions(-)

diff --git a/dev-perl/Class-Mix/Class-Mix-0.3.0.ebuild 
b/dev-perl/Class-Mix/Class-Mix-0.3.0.ebuild
deleted file mode 100644
index 266e26e..000
--- a/dev-perl/Class-Mix/Class-Mix-0.3.0.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=3
-
-MODULE_AUTHOR=ZEFRAM
-MODULE_VERSION="0.003"
-inherit perl-module
-
-DESCRIPTION="Dynamic class mixing"
-
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-
-COMMON_DEPEND="
-   virtual/perl-parent
-"
-DEPEND="
-   ${COMMON_DEPEND}
-   virtual/perl-Module-Build
-   test? (
-   virtual/perl-Test-Simple
-   )
-"
-RDEPEND="
-   ${COMMON_DEPEND}
-"
-SRC_TEST="do"

diff --git a/dev-perl/Class-Mix/Class-Mix-0.4.0.ebuild 
b/dev-perl/Class-Mix/Class-Mix-0.4.0.ebuild
deleted file mode 100644
index f4e41b4..000
--- a/dev-perl/Class-Mix/Class-Mix-0.4.0.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=3
-
-MODULE_AUTHOR=ZEFRAM
-MODULE_VERSION="0.004"
-inherit perl-module
-
-DESCRIPTION="Dynamic class mixing"
-
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-
-COMMON_DEPEND="
-   virtual/perl-parent
-   dev-perl/Params-Classify
-"
-DEPEND="
-   ${COMMON_DEPEND}
-   virtual/perl-Module-Build
-   test? (
-   virtual/perl-Test-Simple
-   )
-"
-RDEPEND="
-   ${COMMON_DEPEND}
-"
-SRC_TEST="do"

diff --git a/dev-perl/Class-Mix/Class-Mix-0.5.0.ebuild 
b/dev-perl/Class-Mix/Class-Mix-0.5.0.ebuild
deleted file mode 100644
index 440b659..000
--- a/dev-perl/Class-Mix/Class-Mix-0.5.0.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-EAPI=4
-MODULE_AUTHOR=ZEFRAM
-MODULE_VERSION=0.005
-inherit perl-module
-
-DESCRIPTION='dynamic class mixing'
-LICENSE=" || ( Artistic GPL-2 )"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-perl_meta_configure() {
-   # Module::Build
-   echo virtual/perl-Module-Build
-   # perl 5.006 ( 5.6.0 )
-   echo \>=dev-lang/perl-5.6.0
-   # strict
-   echo dev-lang/perl
-   # warnings
-   echo dev-lang/perl
-}
-perl_meta_build() {
-   # Module::Build
-   echo virtual/perl-Module-Build
-   # Test::More
-   echo virtual/perl-Test-Simple
-   # perl 5.006 ( 5.6.0 )
-   echo \>=dev-lang/perl-5.6.0
-   # strict
-   echo dev-lang/perl
-   # warnings
-   echo dev-lang/perl
-}
-perl_meta_runtime() {
-   # Carp
-   echo dev-lang/perl
-   # Exporter
-   echo virtual/perl-Exporter
-   # Params::Classify
-   echo dev-perl/Params-Classify
-   # constant
-   # echo virtual/perl-constant
-   # if
-   # echo virtual/perl-if
-   # parent
-   echo virtual/perl-parent
-   # perl 5.006 ( 5.6.0 )
-   echo \>=dev-lang/perl-5.6.0
-   # strict
-   echo dev-lang/perl
-   # warnings
-   echo dev-lang/perl
-}
-DEPEND="
-   $(perl_meta_configure)
-   $(perl_meta_build)
-   $(perl_meta_runtime)
-"
-RDEPEND="
-   $(perl_meta_runtime)
-"
-SRC_TEST="do"

diff --git a/dev-perl/Class-Mix/metadata.xml b/dev-perl/Class-Mix/metadata.xml
deleted file mode 100644
index 9f91bda..000
--- a/dev-perl/Class-Mix/metadata.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd";>
-
-perl
-
-kentfred...@gmail.com
-Kent Fredric
-
-
-Class-Mix
-Class::Mix
-
-



[gentoo-commits] proj/perl-overlay:master commit in: dev-perl/Template-Plugin-Cycle/

2014-10-11 Thread Kent Fredric
commit: 481a53002ccb1fdb6cd12f52a0897ac04d3a0bd0
Author: Kent Fredric  gmail  com>
AuthorDate: Sat Oct 11 16:52:53 2014 +
Commit: Kent Fredric  gmail  com>
CommitDate: Sat Oct 11 16:52:53 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/perl-overlay.git;a=commit;h=481a5300

[treeclean] dev-perl/Template-Plugin-Cycle -> Superceded by ::gentoo

---
 .../Template-Plugin-Cycle-1.06.ebuild   | 21 -
 dev-perl/Template-Plugin-Cycle/metadata.xml |  9 -
 2 files changed, 30 deletions(-)

diff --git a/dev-perl/Template-Plugin-Cycle/Template-Plugin-Cycle-1.06.ebuild 
b/dev-perl/Template-Plugin-Cycle/Template-Plugin-Cycle-1.06.ebuild
deleted file mode 100644
index 966562b..000
--- a/dev-perl/Template-Plugin-Cycle/Template-Plugin-Cycle-1.06.ebuild
+++ /dev/null
@@ -1,21 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=3
-
-MODULE_AUTHOR=ADAMK
-inherit perl-module
-
-DESCRIPTION="Cyclically insert into a Template from a sequence of values"
-
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="dev-perl/Template-Toolkit
-   virtual/perl-File-Spec
-   >=dev-perl/Params-Util-0.20"
-DEPEND="${RDEPEND}"
-
-SRC_TEST=do

diff --git a/dev-perl/Template-Plugin-Cycle/metadata.xml 
b/dev-perl/Template-Plugin-Cycle/metadata.xml
deleted file mode 100644
index 81c54da..000
--- a/dev-perl/Template-Plugin-Cycle/metadata.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd";>
-
-perl
-
-Template-Plugin-Cycle
-Template::Plugin::Cycle
-
-



[gentoo-commits] proj/perl-overlay:master commit in: dev-perl/Test-Warnings/

2014-10-11 Thread Kent Fredric
commit: 08a6e4cdfe17fbd8d82a43188b462489b22c0563
Author: Kent Fredric  gmail  com>
AuthorDate: Sat Oct 11 16:53:15 2014 +
Commit: Kent Fredric  gmail  com>
CommitDate: Sat Oct 11 16:53:15 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/perl-overlay.git;a=commit;h=08a6e4cd

[treeclean] dev-perl/Test-Warnings -> Superceded by ::gentoo

---
 dev-perl/Test-Warnings/Test-Warnings-0.14.0.ebuild | 60 --
 dev-perl/Test-Warnings/metadata.xml| 13 -
 2 files changed, 73 deletions(-)

diff --git a/dev-perl/Test-Warnings/Test-Warnings-0.14.0.ebuild 
b/dev-perl/Test-Warnings/Test-Warnings-0.14.0.ebuild
deleted file mode 100644
index fdbfea2..000
--- a/dev-perl/Test-Warnings/Test-Warnings-0.14.0.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-EAPI=5
-MODULE_AUTHOR=ETHER
-MODULE_VERSION=0.014
-inherit perl-mb-tiny
-
-DESCRIPTION='Test for warnings and the lack of them'
-LICENSE=" || ( Artistic GPL-2 )"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-perl_meta_configure() {
-   # ExtUtils::MakeMaker 6.30 ( 6.300.0 )
-   echo \>=virtual/perl-ExtUtils-MakeMaker-6.30
-   # Module::Build::Tiny 0.035 ( 0.35.0 )
-   echo \>=dev-perl/Module-Build-Tiny-0.35.0
-}
-perl_meta_runtime() {
-   # Exporter
-   echo virtual/perl-Exporter
-   # Test::Builder
-   echo virtual/perl-Test-Simple
-   # parent
-   echo virtual/perl-parent
-   # perl 5.006 ( 5.6.0 )
-   echo \>=dev-lang/perl-5.6.0
-   # strict
-   echo dev-lang/perl
-   # warnings
-   echo dev-lang/perl
-}
-perl_meta_test() {
-   # ExtUtils::MakeMaker
-   echo virtual/perl-ExtUtils-MakeMaker
-   # File::Spec::Functions
-   echo virtual/perl-File-Spec
-   # List::Util
-   echo virtual/perl-Scalar-List-Utils
-   # Test::Deep
-   echo dev-perl/Test-Deep
-   # Test::More 0.94 ( 0.940.0 )
-   echo \>=virtual/perl-Test-Simple-0.94
-   # Test::Tester 0.108 ( 0.108.0 )
-   echo \>=dev-perl/Test-Tester-0.108.0
-   # if
-   # echo virtual/perl-if
-   # version
-   echo virtual/perl-version
-}
-DEPEND="
-   $(perl_meta_configure)
-   $(perl_meta_runtime)
-   test? ( $(perl_meta_test) )
-"
-RDEPEND="
-   $(perl_meta_runtime)
-"
-SRC_TEST="do parallel"

diff --git a/dev-perl/Test-Warnings/metadata.xml 
b/dev-perl/Test-Warnings/metadata.xml
deleted file mode 100644
index dee20dd..000
--- a/dev-perl/Test-Warnings/metadata.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd";>
-
-   perl
-   
-   kentfred...@gmail.com
-   Kent Fredric
-   
-   
-   Test-Warnings
-   Test::Warnings
-   
-



[gentoo-commits] proj/perl-overlay:master commit in: dev-perl/ExtUtils-InstallPaths/

2014-10-11 Thread Kent Fredric
commit: 7a7b77d5fa129c9b58b8b5f17e71691c5471dabc
Author: Kent Fredric  gmail  com>
AuthorDate: Sat Oct 11 16:49:29 2014 +
Commit: Kent Fredric  gmail  com>
CommitDate: Sat Oct 11 16:49:29 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/perl-overlay.git;a=commit;h=7a7b77d5

[treeclean] dev-perl/ExtUtils-InstallPaths -> Superceded by ::gentoo

---
 .../ExtUtils-InstallPaths-0.9.0.ebuild | 52 --
 dev-perl/ExtUtils-InstallPaths/metadata.xml| 13 --
 2 files changed, 65 deletions(-)

diff --git a/dev-perl/ExtUtils-InstallPaths/ExtUtils-InstallPaths-0.9.0.ebuild 
b/dev-perl/ExtUtils-InstallPaths/ExtUtils-InstallPaths-0.9.0.ebuild
deleted file mode 100644
index 28dda49..000
--- a/dev-perl/ExtUtils-InstallPaths/ExtUtils-InstallPaths-0.9.0.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-EAPI=5
-MODULE_AUTHOR=LEONT
-MODULE_VERSION=0.009
-inherit perl-module
-
-DESCRIPTION='Build.PL install path logic made easy'
-LICENSE=" || ( Artistic GPL-2 )"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-perl_meta_configure() {
-   # ExtUtils::MakeMaker 6.30 ( 6.300.0 )
-   echo \>=virtual/perl-ExtUtils-MakeMaker-6.30
-}
-perl_meta_runtime() {
-   # Carp
-   echo dev-lang/perl
-   # ExtUtils::Config 0.002 ( 0.2.0 )
-   echo \>=dev-perl/ExtUtils-Config-0.2.0
-   # File::Spec
-   echo virtual/perl-File-Spec
-   # perl 5.006 ( 5.6.0 )
-   echo \>=dev-lang/perl-5.6.0
-   # strict
-   echo dev-lang/perl
-   # warnings
-   echo dev-lang/perl
-}
-perl_meta_test() {
-   # Config
-   #echo unresolved
-   # File::Find
-   echo dev-lang/perl
-   # File::Spec::Functions
-   echo virtual/perl-File-Spec
-   # File::Temp
-   echo virtual/perl-File-Temp
-   # Test::More
-   echo virtual/perl-Test-Simple
-}
-DEPEND="
-   $(perl_meta_configure)
-   $(perl_meta_runtime)
-   test? ( $(perl_meta_test) )
-"
-RDEPEND="
-   $(perl_meta_runtime)
-"
-SRC_TEST="do"

diff --git a/dev-perl/ExtUtils-InstallPaths/metadata.xml 
b/dev-perl/ExtUtils-InstallPaths/metadata.xml
deleted file mode 100644
index 4bdcae1..000
--- a/dev-perl/ExtUtils-InstallPaths/metadata.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd";>
-
-   perl
-   
-   kentfred...@gmail.com
-   Kent Fredric
-   
-   
-   ExtUtils-InstallPaths
-   ExtUtils::InstallPaths
-   
-



[gentoo-commits] proj/perl-overlay:master commit in: profiles/

2014-10-11 Thread Kent Fredric
commit: f8f428f4f341a0d1424db2e7fa2e0b29038ca630
Author: Kent Fredric  gmail  com>
AuthorDate: Sat Oct 11 16:59:34 2014 +
Commit: Kent Fredric  gmail  com>
CommitDate: Sat Oct 11 16:59:44 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/perl-overlay.git;a=commit;h=f8f428f4

[pmask] cleanup redundant entries

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 529282a..a599ebf 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -25,8 +25,6 @@ virtual/perl-Term-UI
 # Experimental Ebuilds for Perl-Core stuff
 perl-core/B-Debug
 virtual/perl-B-Debug
-perl-core/B-Lint
-virtual/perl-B-Lint
 perl-core/SelfLoader
 virtual/perl-SelfLoader
 perl-core/Devel-SelfStubber
@@ -35,8 +33,6 @@ perl-core/IPC-SysV
 virtual/perl-IPC-SysV
 perl-core/NEXT
 virtual/perl-NEXT
-perl-core/Pod-LaTeX
-virtual/perl-Pod-LaTeX
 perl-core/Unicode-Collate
 virtual/perl-Unicode-Collate
 perl-core/Unicode-Normalize



[gentoo-commits] proj/perl-overlay:master commit in: dev-perl/List-AllUtils/

2014-10-11 Thread Kent Fredric
commit: bd62b99fffaced1cfe9a1ddfb5385bff2cb22cb3
Author: Kent Fredric  gmail  com>
AuthorDate: Sat Oct 11 16:50:49 2014 +
Commit: Kent Fredric  gmail  com>
CommitDate: Sat Oct 11 16:50:49 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/perl-overlay.git;a=commit;h=bd62b99f

[treeclean] dev-perl/List-AllUtils -> Superceded by ::gentoo

---
 .../List-AllUtils/List-AllUtils-0.30.0-r1.ebuild   | 22 ---
 dev-perl/List-AllUtils/List-AllUtils-0.80.0.ebuild | 31 --
 dev-perl/List-AllUtils/metadata.xml|  9 ---
 3 files changed, 62 deletions(-)

diff --git a/dev-perl/List-AllUtils/List-AllUtils-0.30.0-r1.ebuild 
b/dev-perl/List-AllUtils/List-AllUtils-0.30.0-r1.ebuild
deleted file mode 100644
index fde8ec3..000
--- a/dev-perl/List-AllUtils/List-AllUtils-0.30.0-r1.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-MODULE_AUTHOR=DROLSKY
-MODULE_VERSION=0.03
-inherit perl-module
-
-DESCRIPTION='Combines List::Util and List::MoreUtils in one bite-sized package'
-
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="
-   >=dev-perl/List-MoreUtils-0.280.0
-   >=virtual/perl-Scalar-List-Utils-1.190.0
-"
-DEPEND="${RDEPEND}"
-
-SRC_TEST="do"

diff --git a/dev-perl/List-AllUtils/List-AllUtils-0.80.0.ebuild 
b/dev-perl/List-AllUtils/List-AllUtils-0.80.0.ebuild
deleted file mode 100644
index 85c1095..000
--- a/dev-perl/List-AllUtils/List-AllUtils-0.80.0.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-MODULE_AUTHOR=DROLSKY
-MODULE_VERSION=0.08
-inherit perl-module
-
-DESCRIPTION='Combines List::Util and List::MoreUtils in one bite-sized package'
-
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-
-RDEPEND="
-   virtual/perl-Exporter
-   >=dev-perl/List-MoreUtils-0.280.0
-   >=virtual/perl-Scalar-List-Utils-1.310.0
-"
-DEPEND="
-   >=virtual/perl-ExtUtils-MakeMaker-6.300.0
-   ${RDEPEND}
-   test? (
-   virtual/perl-File-Temp
-   >=virtual/perl-Test-Simple-0.880.0
-   dev-perl/Test-Warnings
-   )
-"
-
-SRC_TEST="do parallel"

diff --git a/dev-perl/List-AllUtils/metadata.xml 
b/dev-perl/List-AllUtils/metadata.xml
deleted file mode 100644
index b2adbd6..000
--- a/dev-perl/List-AllUtils/metadata.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd";>
-
-  perl
-  
-List-AllUtils
-List::AllUtils
-  
-



[gentoo-commits] proj/perl-overlay:master commit in: dev-perl/Crypt-Eksblowfish/

2014-10-11 Thread Kent Fredric
commit: b7169964a323eff1378b5350c7e45c817a9c3182
Author: Kent Fredric  gmail  com>
AuthorDate: Sat Oct 11 16:47:11 2014 +
Commit: Kent Fredric  gmail  com>
CommitDate: Sat Oct 11 16:47:11 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/perl-overlay.git;a=commit;h=b7169964

[treeclean] dev-perl/Crypt-Eksblowfish -> Superceded by ::gentoo

---
 .../Crypt-Eksblowfish-0.8.0-r1.ebuild  | 33 ---
 .../Crypt-Eksblowfish-0.9.0-r1.ebuild  | 47 --
 dev-perl/Crypt-Eksblowfish/metadata.xml| 18 -
 3 files changed, 98 deletions(-)

diff --git a/dev-perl/Crypt-Eksblowfish/Crypt-Eksblowfish-0.8.0-r1.ebuild 
b/dev-perl/Crypt-Eksblowfish/Crypt-Eksblowfish-0.8.0-r1.ebuild
deleted file mode 100644
index c1c4d20..000
--- a/dev-perl/Crypt-Eksblowfish/Crypt-Eksblowfish-0.8.0-r1.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=3
-
-MODULE_AUTHOR=ZEFRAM
-MODULE_VERSION="0.008"
-inherit perl-module
-
-DESCRIPTION="the Eksblowfish block cipher"
-
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-
-COMMON_DEPEND="
-   >=dev-perl/Class-Mix-0.1.0
-   >=virtual/perl-MIME-Base64-2.21
-   virtual/perl-parent
-"
-DEPEND="
-   ${COMMON_DEPEND}
-   virtual/perl-Module-Build
-   >=virtual/perl-ExtUtils-CBuilder-0.15
-   test? (
-   virtual/perl-Test-Simple
-   )
-"
-RDEPEND="
-   ${COMMON_DEPEND}
-"
-SRC_TEST="do"

diff --git a/dev-perl/Crypt-Eksblowfish/Crypt-Eksblowfish-0.9.0-r1.ebuild 
b/dev-perl/Crypt-Eksblowfish/Crypt-Eksblowfish-0.9.0-r1.ebuild
deleted file mode 100644
index 1cd711d..000
--- a/dev-perl/Crypt-Eksblowfish/Crypt-Eksblowfish-0.9.0-r1.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=4
-
-MODULE_AUTHOR=ZEFRAM
-MODULE_VERSION=0.009
-inherit perl-module
-
-DESCRIPTION="the Eksblowfish block cipher"
-
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-comment() { echo ''; }
-COMMON_DEPEND="
-   $(comment virtual/perl-Carp)
-   >=dev-perl/Class-Mix-0.1.0
-   $(comment virtual/perl-Exporter)
-   >=virtual/perl-MIME-Base64-2.21 $(comment 2.210.0)
-   virtual/perl-XSLoader
-   virtual/perl-parent
-   $(comment perl 5.6)
-   $(comment virtual/perl-strict)
-   $(comment virtual/perl-warnings)
-"
-DEPEND="
-   ${COMMON_DEPEND}
-   $(comment CONFIGURE REQUIRES )
-   virtual/perl-Module-Build
-   $(comment perl 5.6)
-   $(comment virtual/perl-strict)
-   $(comment virtual/perl-warnings)
-
-   $(comment BUILD REQUIRES)
-   >=virtual/perl-ExtUtils-CBuilder-0.15 $(comment 0.150.0)
-   virtual/perl-Module-Build
-   virtual/perl-Test-Simple $(comment Test::More)
-   $(comment perl 5.6)
-   $(comment virtual/perl-strict)
-   $(comment virtual/perl-warnings)
-"
-RDEPEND="
-   ${COMMON_DEPEND}
-"
-SRC_TEST="do"

diff --git a/dev-perl/Crypt-Eksblowfish/metadata.xml 
b/dev-perl/Crypt-Eksblowfish/metadata.xml
deleted file mode 100644
index abf8cc7..000
--- a/dev-perl/Crypt-Eksblowfish/metadata.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd";>
-
-perl
-
-kentfred...@gmail.com
-Kent Fredric
-
-
-Crypt-Eksblowfish
-Crypt::Eksblowfish
-Crypt::Eksblowfish::Bcrypt
-Crypt::Eksblowfish::Blowfish
-Crypt::Eksblowfish::Family
-Crypt::Eksblowfish::Subkeyed
-Crypt::Eksblowfish::Uklblowfish
-
-



[gentoo-commits] proj/perl-overlay:master commit in: dev-perl/Config-AutoConf/

2014-10-11 Thread Kent Fredric
commit: 5148b1afcde8f5aa771ed51963d02e7489b78580
Author: Kent Fredric  gmail  com>
AuthorDate: Sat Oct 11 16:46:42 2014 +
Commit: Kent Fredric  gmail  com>
CommitDate: Sat Oct 11 16:46:42 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/perl-overlay.git;a=commit;h=5148b1af

[treeclean] dev-perl/Config-AutoConf -> Superceded by ::gentoo

---
 .../Config-AutoConf/Config-AutoConf-0.220.0.ebuild | 39 --
 dev-perl/Config-AutoConf/metadata.xml  |  9 -
 2 files changed, 48 deletions(-)

diff --git a/dev-perl/Config-AutoConf/Config-AutoConf-0.220.0.ebuild 
b/dev-perl/Config-AutoConf/Config-AutoConf-0.220.0.ebuild
deleted file mode 100644
index 8179765..000
--- a/dev-perl/Config-AutoConf/Config-AutoConf-0.220.0.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-EAPI=5
-MODULE_AUTHOR=AMBS
-MODULE_VERSION=0.22
-MODULE_SECTION=Config
-inherit perl-module
-
-DESCRIPTION='A module to implement some of AutoConf macros in pure perl.'
-LICENSE=" || ( Artistic GPL-2 )"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-perl_meta_configure() {
-   # ExtUtils::MakeMaker
-   echo virtual/perl-ExtUtils-MakeMaker
-}
-perl_meta_build() {
-   # ExtUtils::MakeMaker
-   echo virtual/perl-ExtUtils-MakeMaker
-}
-perl_meta_runtime() {
-   # Capture::Tiny
-   echo dev-perl/Capture-Tiny
-   # ExtUtils::CBuilder 0.23 ( 0.230.0 )
-   echo \>=virtual/perl-ExtUtils-CBuilder-0.23.00
-   # Test::More
-   echo virtual/perl-Test-Simple
-}
-DEPEND="
-   $(perl_meta_configure)
-   $(perl_meta_build)
-   $(perl_meta_runtime)
-"
-RDEPEND="
-   $(perl_meta_runtime)
-"
-SRC_TEST="do"

diff --git a/dev-perl/Config-AutoConf/metadata.xml 
b/dev-perl/Config-AutoConf/metadata.xml
deleted file mode 100644
index ff017b2..000
--- a/dev-perl/Config-AutoConf/metadata.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd";>
-
-perl
-
-Config-AutoConf
-Config::AutoConf
-
-



[gentoo-commits] proj/gnome:master commit in: dev-libs/libgit2-glib/

2014-10-11 Thread Gilles Dartiguelongue
commit: 7c96aaea23dd5bf52030a35d234ec37422b0b742
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Sat Oct 11 15:53:29 2014 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Sat Oct 11 16:01:47 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=7c96aaea

dev-libs/libgit2-glib: 0.0.16 → 0.0.22

---
 dev-libs/libgit2-glib/libgit2-glib-0.0.22.ebuild | 47 
 dev-libs/libgit2-glib/metadata.xml   |  5 +++
 2 files changed, 52 insertions(+)

diff --git a/dev-libs/libgit2-glib/libgit2-glib-0.0.22.ebuild 
b/dev-libs/libgit2-glib/libgit2-glib-0.0.22.ebuild
new file mode 100644
index 000..ccdc887
--- /dev/null
+++ b/dev-libs/libgit2-glib/libgit2-glib-0.0.22.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+GCONF_DEBUG="no"
+PYTHON_COMPAT=( python{3_2,3_3,3_4} )
+VALA_MIN_API_VERSION="0.22"
+VALA_USE_DEPEND="vapigen"
+
+inherit gnome2 python-r1 vala
+
+DESCRIPTION="Git library for GLib"
+HOMEPAGE="https://wiki.gnome.org/Projects/Libgit2-glib";
+
+LICENSE="LGPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="python vala"
+
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
+RDEPEND="
+   >=dev-libs/libgit2-0.21.0:=
+   >=dev-libs/glib-2.28.0:2
+   >=dev-libs/gobject-introspection-0.10.1
+   python? (
+   ${PYTHON_DEPS}
+   dev-python/pygobject:3[${PYTHON_USEDEP}] )
+"
+DEPEND="${RDEPEND}
+   >=dev-util/gtk-doc-am-1.11
+   virtual/pkgconfig
+   vala? ( $(vala_depend) )
+"
+
+src_prepare() {
+   use vala && vala_src_prepare
+   gnome2_src_prepare
+}
+
+src_configure() {
+   gnome2_src_configure \
+   $(use_enable python) \
+   $(use_enable vala)
+}

diff --git a/dev-libs/libgit2-glib/metadata.xml 
b/dev-libs/libgit2-glib/metadata.xml
new file mode 100644
index 000..6e0e2ec
--- /dev/null
+++ b/dev-libs/libgit2-glib/metadata.xml
@@ -0,0 +1,5 @@
+
+http://www.gentoo.org/dtd/metadata.dtd";>
+
+  gnome
+



[gentoo-commits] proj/gnome:master commit in: media-libs/clutter/

2014-10-11 Thread Gilles Dartiguelongue
commit: 0aa385646e70d7c7221d65161b8934e4d4439711
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Sat Oct 11 15:26:59 2014 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Sat Oct 11 15:26:59 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=0aa38564

media-libs/clutter: 1.18.4 → 1.20.0

---
 .../{clutter-1.18.2.ebuild => clutter-1.20.0.ebuild}   | 14 --
 media-libs/clutter/clutter-.ebuild | 14 --
 2 files changed, 8 insertions(+), 20 deletions(-)

diff --git a/media-libs/clutter/clutter-1.18.2.ebuild 
b/media-libs/clutter/clutter-1.20.0.ebuild
similarity index 91%
rename from media-libs/clutter/clutter-1.18.2.ebuild
rename to media-libs/clutter/clutter-1.20.0.ebuild
index 11ac915..9cff4b5 100644
--- a/media-libs/clutter/clutter-1.18.2.ebuild
+++ b/media-libs/clutter/clutter-1.20.0.ebuild
@@ -3,12 +3,12 @@
 # $Header: $
 
 EAPI="5"
-CLUTTER_LA_PUNT="yes"
+GCONF_DEBUG="no"
+GNOME2_LA_PUNT="yes"
 
-# Inherit gnome2 after clutter to download sources from gnome.org
-# since clutter-project.org doesn't provide .xz tarballs
-inherit clutter gnome2 virtualx
+inherit gnome2 virtualx
 
+HOMEPAGE="https://wiki.gnome.org/Projects/Clutter";
 DESCRIPTION="Clutter is a library for creating graphical user interfaces"
 
 LICENSE="LGPL-2.1+ FDL-1.1+"
@@ -66,8 +66,6 @@ src_prepare() {
 }
 
 src_configure() {
-   DOCS="README NEWS ChangeLog*"
-
# XXX: Conformance test suite (and clutter itself) does not work under 
Xvfb
# (GLX error blabla)
# XXX: Profiling, coverage disabled for now
@@ -96,7 +94,3 @@ src_configure() {
 src_test() {
Xemake check -C tests/conform
 }
-
-src_install() {
-   clutter_src_install
-}

diff --git a/media-libs/clutter/clutter-.ebuild 
b/media-libs/clutter/clutter-.ebuild
index 0f07f3f..28f14a7 100644
--- a/media-libs/clutter/clutter-.ebuild
+++ b/media-libs/clutter/clutter-.ebuild
@@ -3,15 +3,15 @@
 # $Header: $
 
 EAPI="5"
-CLUTTER_LA_PUNT="yes"
+GCONF_DEBUG="no"
+GNOME2_LA_PUNT="yes"
 
-# Inherit gnome2 after clutter to download sources from gnome.org
-# since clutter-project.org doesn't provide .xz tarballs
-inherit clutter gnome2 virtualx
+inherit gnome2 virtualx
 if [[ ${PV} =  ]]; then
inherit gnome2-live
 fi
 
+HOMEPAGE="https://wiki.gnome.org/Projects/Clutter";
 DESCRIPTION="Clutter is a library for creating graphical user interfaces"
 
 LICENSE="LGPL-2.1+ FDL-1.1+"
@@ -73,8 +73,6 @@ src_prepare() {
 }
 
 src_configure() {
-   DOCS="README NEWS ChangeLog*"
-
# XXX: Conformance test suite (and clutter itself) does not work under 
Xvfb
# (GLX error blabla)
# XXX: Profiling, coverage disabled for now
@@ -103,7 +101,3 @@ src_configure() {
 src_test() {
Xemake check -C tests/conform
 }
-
-src_install() {
-   clutter_src_install
-}



[gentoo-commits] proj/gnome:master commit in: x11-wm/mutter/

2014-10-11 Thread Gilles Dartiguelongue
commit: 329544642a838be44dc42334e1ff865b54814144
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Sat Oct 11 15:20:41 2014 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Sat Oct 11 15:20:41 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=32954464

x11-wm/mutter: 3.13.92 → 3.14.0

---
 x11-wm/mutter/{mutter-3.13.92.ebuild => mutter-3.14.0.ebuild} | 6 +++---
 x11-wm/mutter/mutter-.ebuild  | 7 ---
 2 files changed, 7 insertions(+), 6 deletions(-)

diff --git a/x11-wm/mutter/mutter-3.13.92.ebuild 
b/x11-wm/mutter/mutter-3.14.0.ebuild
similarity index 97%
rename from x11-wm/mutter/mutter-3.13.92.ebuild
rename to x11-wm/mutter/mutter-3.14.0.ebuild
index 04b8849..ba2f364 100644
--- a/x11-wm/mutter/mutter-3.13.92.ebuild
+++ b/x11-wm/mutter/mutter-3.14.0.ebuild
@@ -15,6 +15,7 @@ SLOT="0"
 IUSE="+introspection test"
 KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 
+# FIXME: automagic on systemd/libinput/wayland
 COMMON_DEPEND="
>=x11-libs/pango-1.2[X,introspection?]
>=x11-libs/cairo-1.10[X]
@@ -29,9 +30,6 @@ COMMON_DEPEND="
gnome-base/gnome-desktop:3=
>sys-power/upower-0.99
 
-   # gbm
-   # clutter-egl-1.0
-
x11-libs/libICE
x11-libs/libSM
x11-libs/libX11
@@ -53,6 +51,8 @@ COMMON_DEPEND="
 
introspection? ( >=dev-libs/gobject-introspection-0.9.5 )
 "
+   # clutter-egl-1.0
+
 DEPEND="${COMMON_DEPEND}
>=dev-util/gtk-doc-am-1.15
>=dev-util/intltool-0.41

diff --git a/x11-wm/mutter/mutter-.ebuild b/x11-wm/mutter/mutter-.ebuild
index ef41eca..e9d98d8 100644
--- a/x11-wm/mutter/mutter-.ebuild
+++ b/x11-wm/mutter/mutter-.ebuild
@@ -22,6 +22,7 @@ else
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 fi
 
+# FIXME: automagic on systemd/libinput/wayland
 COMMON_DEPEND="
>=x11-libs/pango-1.2[X,introspection?]
>=x11-libs/cairo-1.10[X]
@@ -36,9 +37,6 @@ COMMON_DEPEND="
gnome-base/gnome-desktop:3=
>sys-power/upower-0.99
 
-   # gbm
-   # clutter-egl-1.0
-
x11-libs/libICE
x11-libs/libSM
x11-libs/libX11
@@ -60,6 +58,9 @@ COMMON_DEPEND="
 
introspection? ( >=dev-libs/gobject-introspection-0.9.5 )
 "
+   # gbm: mesa
+   # clutter-egl-1.0
+
 DEPEND="${COMMON_DEPEND}
>=dev-util/gtk-doc-am-1.15
>=dev-util/intltool-0.41



[gentoo-commits] proj/gnome:master commit in: app-accessibility/at-spi2-atk/

2014-10-11 Thread Gilles Dartiguelongue
commit: ca7fcbadf3d1fe019e451005a3c05c498c7a2443
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Sat Oct 11 16:35:36 2014 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Sat Oct 11 16:35:36 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=ca7fcbad

app-accessibility/at-spi2-atk: 2.12.1 → 2.14.0

---
 .../at-spi2-atk/{at-spi2-atk-2.12.1.ebuild => at-spi2-atk-2.14.0.ebuild}  | 0
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/app-accessibility/at-spi2-atk/at-spi2-atk-2.12.1.ebuild 
b/app-accessibility/at-spi2-atk/at-spi2-atk-2.14.0.ebuild
similarity index 100%
rename from app-accessibility/at-spi2-atk/at-spi2-atk-2.12.1.ebuild
rename to app-accessibility/at-spi2-atk/at-spi2-atk-2.14.0.ebuild



[gentoo-commits] proj/gnome:master commit in: dev-libs/libgweather/

2014-10-11 Thread Gilles Dartiguelongue
commit: 0be2a4f1e32772798f5aa599c09510b12a2569ee
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Sat Oct 11 16:13:01 2014 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Sat Oct 11 16:13:01 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=0be2a4f1

dev-libs/libgweather: 3.12.2-r1 → 3.14.0

---
 .../{libgweather-3.12.1.ebuild => libgweather-3.14.0.ebuild}| 6 --
 dev-libs/libgweather/libgweather-.ebuild| 5 +++--
 2 files changed, 7 insertions(+), 4 deletions(-)

diff --git a/dev-libs/libgweather/libgweather-3.12.1.ebuild 
b/dev-libs/libgweather/libgweather-3.14.0.ebuild
similarity index 90%
rename from dev-libs/libgweather/libgweather-3.12.1.ebuild
rename to dev-libs/libgweather/libgweather-3.14.0.ebuild
index bfd15da..243e633 100644
--- a/dev-libs/libgweather/libgweather-3.12.1.ebuild
+++ b/dev-libs/libgweather/libgweather-3.14.0.ebuild
@@ -10,19 +10,21 @@ VALA_USE_DEPEND="vapigen"
 inherit gnome2 vala
 
 DESCRIPTION="Library to access weather information from online services"
-HOMEPAGE="https://wiki.gnome.org/LibGWeather";
+HOMEPAGE="https://wiki.gnome.org/Projects/LibGWeather";
 
 LICENSE="GPL-2+"
 SLOT="2/3-6" # subslot = 3-(libgweather-3 soname suffix)
 IUSE="glade +introspection vala"
 REQUIRED_USE="vala? ( introspection )"
+
 KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd 
~x86-interix ~amd64-linux ~x86-linux ~x86-solaris"
 
 COMMON_DEPEND="
-   >=x11-libs/gtk+-2.90.0:3[introspection?]
+   >=x11-libs/gtk+-3.13.5:3[introspection?]
>=dev-libs/glib-2.35.1:2
>=net-libs/libsoup-2.34:2.4
>=dev-libs/libxml2-2.6.0
+   sci-geosciences/geocode-glib
>=sys-libs/timezone-data-2010k
 
glade? ( >=dev-util/glade-3.16:3.10 )

diff --git a/dev-libs/libgweather/libgweather-.ebuild 
b/dev-libs/libgweather/libgweather-.ebuild
index 4d15e6e..30117be 100644
--- a/dev-libs/libgweather/libgweather-.ebuild
+++ b/dev-libs/libgweather/libgweather-.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} =  ]]; then
 fi
 
 DESCRIPTION="Library to access weather information from online services"
-HOMEPAGE="https://wiki.gnome.org/LibGWeather";
+HOMEPAGE="https://wiki.gnome.org/Projects/LibGWeather";
 
 LICENSE="GPL-2+"
 SLOT="2/3-6" # subslot = 3-(libgweather-3 soname suffix)
@@ -27,10 +27,11 @@ else
 fi
 
 COMMON_DEPEND="
-   >=x11-libs/gtk+-2.90.0:3[introspection?]
+   >=x11-libs/gtk+-3.13.5:3[introspection?]
>=dev-libs/glib-2.35.1:2
>=net-libs/libsoup-2.34:2.4
>=dev-libs/libxml2-2.6.0
+   sci-geosciences/geocode-glib
>=sys-libs/timezone-data-2010k
 
glade? ( >=dev-util/glade-3.16:3.10 )



[gentoo-commits] proj/gnome:master commit in: games-board/iagno/

2014-10-11 Thread Gilles Dartiguelongue
commit: bd1dcb9f9f8184513778bf3909feab9d9c03161b
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Sat Oct 11 16:42:34 2014 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Sat Oct 11 16:42:34 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=bd1dcb9f

games-board/iagno: 3.14.0 → 3.14.1

---
 games-board/iagno/{iagno-3.14.0.ebuild => iagno-3.14.1.ebuild} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/games-board/iagno/iagno-3.14.0.ebuild 
b/games-board/iagno/iagno-3.14.1.ebuild
similarity index 96%
rename from games-board/iagno/iagno-3.14.0.ebuild
rename to games-board/iagno/iagno-3.14.1.ebuild
index 07ab8d4..2301d7a 100644
--- a/games-board/iagno/iagno-3.14.0.ebuild
+++ b/games-board/iagno/iagno-3.14.1.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="https://wiki.gnome.org/Apps/Iagno";
 
 LICENSE="LGPL-2+"
 SLOT="0"
-KEYWORDS="amd64 ~arm x86"
+KEYWORDS="~amd64 ~arm ~x86"
 IUSE=""
 
 COMMON_DEPEND="



[gentoo-commits] gentoo-x86 commit in media-libs/libmp3splt: ChangeLog libmp3splt-0.9.1a.ebuild

2014-10-11 Thread Tobias Klausmann (klausman)
klausman14/10/11 16:42:56

  Modified: ChangeLog libmp3splt-0.9.1a.ebuild
  Log:
  Stable on alpha, bug 514880
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with 
key CE5D54E8)

Revision  ChangesPath
1.47 media-libs/libmp3splt/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/libmp3splt/ChangeLog,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -r1.46 -r1.47
--- ChangeLog   14 Aug 2014 17:14:24 -  1.46
+++ ChangeLog   11 Oct 2014 16:42:56 -  1.47
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/libmp3splt
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libmp3splt/ChangeLog,v 1.46 
2014/08/14 17:14:24 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libmp3splt/ChangeLog,v 1.47 
2014/10/11 16:42:56 klausman Exp $
+
+  11 Oct 2014; Tobias Klausmann  libmp3splt-0.9.1a.ebuild:
+  Stable on alpha, bug 514880
 
   14 Aug 2014; Pawel Hajdan jr 
   libmp3splt-0.9.1a.ebuild:



1.5  media-libs/libmp3splt/libmp3splt-0.9.1a.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libmp3splt/libmp3splt-0.9.1a.ebuild?rev=1.5&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libmp3splt/libmp3splt-0.9.1a.ebuild?rev=1.5&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libmp3splt/libmp3splt-0.9.1a.ebuild?r1=1.4&r2=1.5

Index: libmp3splt-0.9.1a.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/media-libs/libmp3splt/libmp3splt-0.9.1a.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- libmp3splt-0.9.1a.ebuild14 Aug 2014 17:14:24 -  1.4
+++ libmp3splt-0.9.1a.ebuild11 Oct 2014 16:42:56 -  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/media-libs/libmp3splt/libmp3splt-0.9.1a.ebuild,v 1.4 
2014/08/14 17:14:24 phajdan.jr Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/media-libs/libmp3splt/libmp3splt-0.9.1a.ebuild,v 1.5 
2014/10/11 16:42:56 klausman Exp $
 
 EAPI=4
 inherit versionator autotools eutils multilib
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="alpha amd64 ~hppa ~ppc ~ppc64 ~sparc x86"
 IUSE="doc flac pcre"
 
 RDEPEND="media-libs/libmad






[gentoo-commits] proj/gnome:master commit in: gnome-base/gnome-desktop/

2014-10-11 Thread Gilles Dartiguelongue
commit: 16e5ff76343bfdd281d2173b411535ffe6790aee
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Sat Oct 11 16:21:59 2014 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Sat Oct 11 16:34:10 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=16e5ff76

gnome-base/gnome-desktop: 3.12.2 → 3.14.0

---
 ...ome-desktop-3.12.1.ebuild => gnome-desktop-3.14.0.ebuild} | 12 ++--
 gnome-base/gnome-desktop/gnome-desktop-.ebuild   | 12 ++--
 2 files changed, 20 insertions(+), 4 deletions(-)

diff --git a/gnome-base/gnome-desktop/gnome-desktop-3.12.1.ebuild 
b/gnome-base/gnome-desktop/gnome-desktop-3.14.0.ebuild
similarity index 90%
rename from gnome-base/gnome-desktop/gnome-desktop-3.12.1.ebuild
rename to gnome-base/gnome-desktop/gnome-desktop-3.14.0.ebuild
index 4d99099..7337ead 100644
--- a/gnome-base/gnome-desktop/gnome-desktop-3.12.1.ebuild
+++ b/gnome-base/gnome-desktop/gnome-desktop-3.14.0.ebuild
@@ -5,7 +5,7 @@
 EAPI="5"
 GCONF_DEBUG="yes"
 
-inherit gnome2
+inherit gnome2 virtualx
 
 DESCRIPTION="Libraries for the gnome desktop that are not part of the UI"
 HOMEPAGE="https://git.gnome.org/browse/gnome-desktop";
@@ -18,7 +18,7 @@ KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh 
~sparc ~x86 ~x86-fbsd ~
 # cairo[X] needed for gnome-bg
 COMMON_DEPEND="
app-text/iso-codes
-   >=dev-libs/glib-2.35:2
+   >=dev-libs/glib-2.38:2
>=x11-libs/gdk-pixbuf-2.21.3:2[introspection?]
>=x11-libs/gtk+-3.3.6:3[introspection?]
>=x11-libs/libXext-1.1
@@ -34,6 +34,7 @@ RDEPEND="${COMMON_DEPEND}
 "
 DEPEND="${COMMON_DEPEND}
app-text/docbook-xml-dtd:4.1.2
+   dev-util/gdbus-codegen
>=dev-util/gtk-doc-am-1.4
>=dev-util/intltool-0.40.6
sys-devel/gettext
@@ -58,3 +59,10 @@ src_configure() {
$(use_enable introspection) \
ITSTOOL=$(type -P true)
 }
+
+src_test() {
+   # Makes unittest fail without this locale installed
+   rm ${S}/tests/he_IL* || due
+
+   Xemake check
+}

diff --git a/gnome-base/gnome-desktop/gnome-desktop-.ebuild 
b/gnome-base/gnome-desktop/gnome-desktop-.ebuild
index 6733c1e..d6779da 100644
--- a/gnome-base/gnome-desktop/gnome-desktop-.ebuild
+++ b/gnome-base/gnome-desktop/gnome-desktop-.ebuild
@@ -5,7 +5,7 @@
 EAPI="5"
 GCONF_DEBUG="yes"
 
-inherit gnome2
+inherit gnome2 virtualx
 if [[ ${PV} =  ]]; then
inherit git-2 gnome2-live
 fi
@@ -26,7 +26,7 @@ fi
 # cairo[X] needed for gnome-bg
 COMMON_DEPEND="
app-text/iso-codes
-   >=dev-libs/glib-2.35:2
+   >=dev-libs/glib-2.38:2
>=x11-libs/gdk-pixbuf-2.21.3:2[introspection?]
>=x11-libs/gtk+-3.3.6:3[introspection?]
>=x11-libs/libXext-1.1
@@ -42,6 +42,7 @@ RDEPEND="${COMMON_DEPEND}
 "
 DEPEND="${COMMON_DEPEND}
app-text/docbook-xml-dtd:4.1.2
+   dev-util/gdbus-codegen
>=dev-util/gtk-doc-am-1.4
>=dev-util/intltool-0.40.6
sys-devel/gettext
@@ -102,3 +103,10 @@ src_configure() {
$(use_enable introspection) \
${myconf}
 }
+
+src_test() {
+   # Makes unittest fail without this locale installed
+   rm ${S}/tests/he_IL* || due
+
+   Xemake check
+}



[gentoo-commits] proj/gnome:master commit in: dev-libs/atk/

2014-10-11 Thread Gilles Dartiguelongue
commit: 6e5e445d8cde7e5161d805e6558062dc37425c00
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Sat Oct 11 16:24:50 2014 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Sat Oct 11 16:34:11 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=6e5e445d

dev-libs/atk: 2.12.0-r1 → 2.14.0

---
 .../atk/{atk-2.12.0.ebuild => atk-2.14.0.ebuild}   | 25 +-
 1 file changed, 20 insertions(+), 5 deletions(-)

diff --git a/dev-libs/atk/atk-2.12.0.ebuild b/dev-libs/atk/atk-2.14.0.ebuild
similarity index 63%
rename from dev-libs/atk/atk-2.12.0.ebuild
rename to dev-libs/atk/atk-2.14.0.ebuild
index b9c8a8e..52f8b0a 100644
--- a/dev-libs/atk/atk-2.12.0.ebuild
+++ b/dev-libs/atk/atk-2.14.0.ebuild
@@ -5,7 +5,7 @@
 EAPI="5"
 GCONF_DEBUG="no"
 
-inherit gnome2
+inherit gnome2 multilib-minimal
 
 DESCRIPTION="GTK+ & GNOME Accessibility Toolkit"
 HOMEPAGE="http://projects.gnome.org/accessibility/";
@@ -16,13 +16,17 @@ KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc ~x86
 IUSE="+introspection nls test"
 
 RDEPEND="
-   >=dev-libs/glib-2.31.2:2
+   >=dev-libs/glib-2.34.3:2[${MULTILIB_USEDEP}]
introspection? ( >=dev-libs/gobject-introspection-0.6.7 )
+   abi_x86_32? (
+   !<=app-emulation/emul-linux-x86-gtklibs-20140508
+   !app-emulation/emul-linux-x86-gtklibs[-abi_x86_32(-)]
+   )
 "
 DEPEND="${RDEPEND}
>=dev-lang/perl-5
dev-util/gtk-doc-am
-   virtual/pkgconfig
+   >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}]
nls? ( sys-devel/gettext )
 "
 
@@ -36,6 +40,17 @@ src_prepare() {
fi
 }
 
-src_configure() {
-   gnome2_src_configure $(use_enable introspection)
+multilib_src_configure() {
+   ECONF_SOURCE=${S} \
+   gnome2_src_configure \
+   $(multilib_native_use_enable introspection)
+
+   # work-around gtk-doc out-of-source brokedness
+   if multilib_is_native_abi; then
+   ln -s "${S}"/docs/html docs/html || die
+   fi
+}
+
+multilib_src_install() {
+   gnome2_src_install
 }



[gentoo-commits] proj/gnome:master commit in: media-libs/clutter-gtk/

2014-10-11 Thread Gilles Dartiguelongue
commit: 63fedb213328ce8d6a270afa63ed04869d82fecc
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Sat Oct 11 15:34:09 2014 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Sat Oct 11 15:34:09 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=63fedb21

media-libs/clutter-gtk: 1.5.2 → 1.6.0

---
 .../{clutter-gtk-.ebuild => clutter-gtk-1.6.0.ebuild} | 15 +++
 media-libs/clutter-gtk/clutter-gtk-.ebuild|  4 ++--
 2 files changed, 5 insertions(+), 14 deletions(-)

diff --git a/media-libs/clutter-gtk/clutter-gtk-.ebuild 
b/media-libs/clutter-gtk/clutter-gtk-1.6.0.ebuild
similarity index 71%
copy from media-libs/clutter-gtk/clutter-gtk-.ebuild
copy to media-libs/clutter-gtk/clutter-gtk-1.6.0.ebuild
index 7ca1411..4c4afb5 100644
--- a/media-libs/clutter-gtk/clutter-gtk-.ebuild
+++ b/media-libs/clutter-gtk/clutter-gtk-1.6.0.ebuild
@@ -8,26 +8,17 @@ CLUTTER_LA_PUNT="yes"
 
 # inherit clutter after gnome2 so that defaults aren't overriden
 inherit gnome2 clutter gnome.org
-if [[ ${PV} =  ]]; then
-   inherit gnome2-live
-fi
 
 DESCRIPTION="Library for embedding a Clutter canvas (stage) in GTK+"
-HOMEPAGE="http://live.gnome.org/Clutter";
+HOMEPAGE="https://wiki.gnome.org/Projects/Clutter";
 
 SLOT="1.0"
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
 IUSE="examples +introspection"
-if [[ ${PV} =  ]]; then
-   KEYWORDS=""
-   IUSE="${IUSE} doc"
-else
-   KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
-fi
 
-# XXX: Needs gtk with X support (!directfb)
 RDEPEND="
>=x11-libs/gtk+-3.6.0:3[introspection?]
-   >=media-libs/clutter-1.13.7:1.0=[introspection?]
+   >=media-libs/clutter-1.18:1.0[introspection?]
media-libs/cogl:1.0=[introspection?]
introspection? ( >=dev-libs/gobject-introspection-0.9.12 )
 "

diff --git a/media-libs/clutter-gtk/clutter-gtk-.ebuild 
b/media-libs/clutter-gtk/clutter-gtk-.ebuild
index 7ca1411..212d73e 100644
--- a/media-libs/clutter-gtk/clutter-gtk-.ebuild
+++ b/media-libs/clutter-gtk/clutter-gtk-.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} =  ]]; then
 fi
 
 DESCRIPTION="Library for embedding a Clutter canvas (stage) in GTK+"
-HOMEPAGE="http://live.gnome.org/Clutter";
+HOMEPAGE="https://wiki.gnome.org/Projects/Clutter";
 
 SLOT="1.0"
 IUSE="examples +introspection"
@@ -27,7 +27,7 @@ fi
 # XXX: Needs gtk with X support (!directfb)
 RDEPEND="
>=x11-libs/gtk+-3.6.0:3[introspection?]
-   >=media-libs/clutter-1.13.7:1.0=[introspection?]
+   >=media-libs/clutter-1.18:1.0[introspection?]
media-libs/cogl:1.0=[introspection?]
introspection? ( >=dev-libs/gobject-introspection-0.9.12 )
 "



[gentoo-commits] proj/gnome:master commit in: gnome-base/gnome-menus/

2014-10-11 Thread Gilles Dartiguelongue
commit: 4ddfe590faf7d3cf114736bf8d2ec28d335e013c
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Sat Oct 11 15:42:52 2014 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Sat Oct 11 15:42:52 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=4ddfe590

gnome-base/gnome-menus: 3.10.1-r1 → 3.13.3

---
 .../{gnome-menus-.ebuild => gnome-menus-3.13.3.ebuild}  | 13 +++--
 gnome-base/gnome-menus/gnome-menus-.ebuild  |  4 ++--
 2 files changed, 5 insertions(+), 12 deletions(-)

diff --git a/gnome-base/gnome-menus/gnome-menus-.ebuild 
b/gnome-base/gnome-menus/gnome-menus-3.13.3.ebuild
similarity index 78%
copy from gnome-base/gnome-menus/gnome-menus-.ebuild
copy to gnome-base/gnome-menus/gnome-menus-3.13.3.ebuild
index f14607f..44c314b 100644
--- a/gnome-base/gnome-menus/gnome-menus-.ebuild
+++ b/gnome-base/gnome-menus/gnome-menus-3.13.3.ebuild
@@ -1,25 +1,18 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Header: $
 
 EAPI="5"
 GCONF_DEBUG="no"
 
-inherit gnome2
-if [[ ${PV} =  ]]; then
-   inherit gnome2-live
-fi
+inherit eutils gnome2
 
 DESCRIPTION="Library for the Desktop Menu fd.o specification"
 HOMEPAGE="https://git.gnome.org/browse/gnome-menus";
 
 LICENSE="GPL-2+ LGPL-2+"
 SLOT="3"
-if [[ ${PV} =  ]]; then
-   KEYWORDS=""
-else
-   KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 
~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos 
~x86-macos ~x86-solaris"
-fi
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd 
~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos 
~x86-solaris"
 
 IUSE="debug +introspection test"
 

diff --git a/gnome-base/gnome-menus/gnome-menus-.ebuild 
b/gnome-base/gnome-menus/gnome-menus-.ebuild
index f14607f..a95c4f5 100644
--- a/gnome-base/gnome-menus/gnome-menus-.ebuild
+++ b/gnome-base/gnome-menus/gnome-menus-.ebuild
@@ -1,11 +1,11 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Header: $
 
 EAPI="5"
 GCONF_DEBUG="no"
 
-inherit gnome2
+inherit eutils gnome2
 if [[ ${PV} =  ]]; then
inherit gnome2-live
 fi



[gentoo-commits] proj/gnome:master commit in: dev-libs/libpeas/

2014-10-11 Thread Gilles Dartiguelongue
commit: c14d8780cbc72a6c2d882ab2210e5f9c22174855
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Sat Oct 11 16:16:29 2014 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Sat Oct 11 16:16:29 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=c14d8780

dev-libs/libpeas: 1.10.1 → 1.12.1

---
 dev-libs/libpeas/{libpeas-1.10.0.ebuild => libpeas-1.12.1.ebuild} | 6 +++---
 dev-libs/libpeas/libpeas-.ebuild  | 4 ++--
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/dev-libs/libpeas/libpeas-1.10.0.ebuild 
b/dev-libs/libpeas/libpeas-1.12.1.ebuild
similarity index 92%
rename from dev-libs/libpeas/libpeas-1.10.0.ebuild
rename to dev-libs/libpeas/libpeas-1.12.1.ebuild
index 5b1dd2e..22f8c3a 100644
--- a/dev-libs/libpeas/libpeas-1.10.0.ebuild
+++ b/dev-libs/libpeas/libpeas-1.12.1.ebuild
@@ -7,7 +7,7 @@ GCONF_DEBUG="no"
 GNOME2_LA_PUNT="yes"
 PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
 
-inherit eutils gnome2 multilib python-r1 virtualx
+inherit gnome2 multilib python-r1 virtualx
 
 DESCRIPTION="A GObject plugins library"
 HOMEPAGE="http://developer.gnome.org/libpeas/stable/";
@@ -59,8 +59,8 @@ src_configure() {
 
configuration() {
local myconf="$@"
-   [[ ${EPYTHON} == python2* ]] && myconf+=" --enable-python2 
--disable-python3 PYTHON2_CONFIG=/usr/bin/python-config-${EPYTHON#python}"
-   [[ ${EPYTHON} == python3* ]] && myconf+=" --enable-python3 
--disable-python2 PYTHON3_CONFIG=/usr/bin/python-config-${EPYTHON#python}"
+   [[ ${EPYTHON} == python2* ]] && myconf+=" --enable-python2 
--disable-python3 PYTHON2_CONFIG=/usr/bin/python-config"
+   [[ ${EPYTHON} == python3* ]] && myconf+=" --enable-python3 
--disable-python2 PYTHON3_CONFIG=/usr/bin/python-config"
gnome2_src_configure ${myconf}
}
 

diff --git a/dev-libs/libpeas/libpeas-.ebuild 
b/dev-libs/libpeas/libpeas-.ebuild
index 8845db2..3de7afe 100644
--- a/dev-libs/libpeas/libpeas-.ebuild
+++ b/dev-libs/libpeas/libpeas-.ebuild
@@ -71,8 +71,8 @@ src_configure() {
 
configuration() {
local myconf="$@"
-   [[ ${EPYTHON} == python2* ]] && myconf+=" --enable-python2 
--disable-python3 PYTHON2_CONFIG=/usr/bin/python-config-${EPYTHON#python}"
-   [[ ${EPYTHON} == python3* ]] && myconf+=" --enable-python3 
--disable-python2 PYTHON3_CONFIG=/usr/bin/python-config-${EPYTHON#python}"
+   [[ ${EPYTHON} == python2* ]] && myconf+=" --enable-python2 
--disable-python3 PYTHON2_CONFIG=/usr/bin/python-config"
+   [[ ${EPYTHON} == python3* ]] && myconf+=" --enable-python3 
--disable-python2 PYTHON3_CONFIG=/usr/bin/python-config"
gnome2_src_configure ${myconf}
}
 



[gentoo-commits] proj/gnome:master commit in: app-accessibility/at-spi2-core/

2014-10-11 Thread Gilles Dartiguelongue
commit: 502f2beb44398376696ef84a4030c63e3bc75692
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Sat Oct 11 16:28:01 2014 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Sat Oct 11 16:34:11 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=502f2beb

app-accessibility/at-spi2-core: 2.12.0 → 2.14.0

---
 .../{at-spi2-core-2.12.0.ebuild => at-spi2-core-2.14.0.ebuild}| 0
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/app-accessibility/at-spi2-core/at-spi2-core-2.12.0.ebuild 
b/app-accessibility/at-spi2-core/at-spi2-core-2.14.0.ebuild
similarity index 100%
rename from app-accessibility/at-spi2-core/at-spi2-core-2.12.0.ebuild
rename to app-accessibility/at-spi2-core/at-spi2-core-2.14.0.ebuild



[gentoo-commits] proj/gnome:master commit in: sci-geosciences/geocode-glib/

2014-10-11 Thread Gilles Dartiguelongue
commit: 02fbe2aaf82ac30c90f4058a09c3151f4f9215ac
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Sat Oct 11 16:40:13 2014 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Sat Oct 11 16:40:13 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=02fbe2aa

sci-geosciences/geocode-glib: 3.12.2 → 3.14.0

---
 ...de-glib-3.12.0.ebuild => geocode-glib-3.14.0.ebuild} | 17 +
 1 file changed, 5 insertions(+), 12 deletions(-)

diff --git a/sci-geosciences/geocode-glib/geocode-glib-3.12.0.ebuild 
b/sci-geosciences/geocode-glib/geocode-glib-3.14.0.ebuild
similarity index 79%
rename from sci-geosciences/geocode-glib/geocode-glib-3.12.0.ebuild
rename to sci-geosciences/geocode-glib/geocode-glib-3.14.0.ebuild
index 9382fda..9f3b3ee 100644
--- a/sci-geosciences/geocode-glib/geocode-glib-3.12.0.ebuild
+++ b/sci-geosciences/geocode-glib/geocode-glib-3.14.0.ebuild
@@ -39,16 +39,9 @@ DEPEND="${RDEPEND}
 
 RESTRICT="test" # Need network #424719
 
-src_prepare() {
-   gnome2_src_prepare
-
-   # Crazy flags
-   sed -e 's:-Wall ::' -i configure || die
+src_test() {
+   export GVFS_DISABLE_FUSE=1
+   export GIO_USE_VFS=gvfs
+   ewarn "Tests require network access to http://where.yahooapis.com";
+   dbus-launch emake check || die "tests failed"
 }
-
-#src_test() {
-#  export GVFS_DISABLE_FUSE=1
-#  export GIO_USE_VFS=gvfs
-#  ewarn "Tests require network access to http://where.yahooapis.com";
-#  dbus-launch emake check || die "tests failed"
-#}



[gentoo-commits] gentoo-x86 commit in media-sound/mp3splt: ChangeLog mp3splt-2.6.1a.ebuild

2014-10-11 Thread Tobias Klausmann (klausman)
klausman14/10/11 16:43:05

  Modified: ChangeLog mp3splt-2.6.1a.ebuild
  Log:
  Stable on alpha, bug 514880
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with 
key CE5D54E8)

Revision  ChangesPath
1.66 media-sound/mp3splt/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/mp3splt/ChangeLog?rev=1.66&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/mp3splt/ChangeLog?rev=1.66&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/mp3splt/ChangeLog?r1=1.65&r2=1.66

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-sound/mp3splt/ChangeLog,v
retrieving revision 1.65
retrieving revision 1.66
diff -u -r1.65 -r1.66
--- ChangeLog   14 Aug 2014 17:15:01 -  1.65
+++ ChangeLog   11 Oct 2014 16:43:05 -  1.66
@@ -1,6 +1,9 @@
 # ChangeLog for media-sound/mp3splt
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/mp3splt/ChangeLog,v 1.65 
2014/08/14 17:15:01 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/mp3splt/ChangeLog,v 1.66 
2014/10/11 16:43:05 klausman Exp $
+
+  11 Oct 2014; Tobias Klausmann  mp3splt-2.6.1a.ebuild:
+  Stable on alpha, bug 514880
 
   14 Aug 2014; Pawel Hajdan jr  mp3splt-2.6.1a.ebuild:
   x86 stable wrt bug #514880



1.5  media-sound/mp3splt/mp3splt-2.6.1a.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/mp3splt/mp3splt-2.6.1a.ebuild?rev=1.5&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/mp3splt/mp3splt-2.6.1a.ebuild?rev=1.5&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/mp3splt/mp3splt-2.6.1a.ebuild?r1=1.4&r2=1.5

Index: mp3splt-2.6.1a.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-sound/mp3splt/mp3splt-2.6.1a.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- mp3splt-2.6.1a.ebuild   14 Aug 2014 17:15:01 -  1.4
+++ mp3splt-2.6.1a.ebuild   11 Oct 2014 16:43:05 -  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/media-sound/mp3splt/mp3splt-2.6.1a.ebuild,v 
1.4 2014/08/14 17:15:01 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/mp3splt/mp3splt-2.6.1a.ebuild,v 
1.5 2014/10/11 16:43:05 klausman Exp $
 
 EAPI=4
 inherit multilib
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="alpha amd64 ~hppa ~ppc ~ppc64 ~sparc x86"
 IUSE="flac"
 
 RDEPEND="~media-libs/libmp3splt-0.9.1a[flac?]"






[gentoo-commits] gentoo-x86 commit in profiles: ChangeLog package.mask

2014-10-11 Thread Pacho Ramos (pacho)
pacho   14/10/11 16:36:05

  Modified: ChangeLog package.mask
  Log:
  Mask Gnome 2 for removal (#508854)

Revision  ChangesPath
1.9442   profiles/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v
retrieving revision 1.9441
retrieving revision 1.9442
diff -u -r1.9441 -r1.9442
--- ChangeLog   11 Oct 2014 13:19:31 -  1.9441
+++ ChangeLog   11 Oct 2014 16:36:04 -  1.9442
@@ -1,11 +1,14 @@
 # ChangeLog for profile directory
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.9441 2014/10/11 
13:19:31 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.9442 2014/10/11 
16:36:04 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!
 
+  11 Oct 2014; Pacho Ramos  package.mask:
+  Mask Gnome 2 for removal (#508854)
+
   11 Oct 2014; Andreas K. Huettel  +updates/4Q-2014:
   IO::Socket::IP is part of core Perl since 5.20
 



1.16087  profiles/package.mask

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/package.mask?rev=1.16087&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/package.mask?rev=1.16087&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/package.mask?r1=1.16086&r2=1.16087

Index: package.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/package.mask,v
retrieving revision 1.16086
retrieving revision 1.16087
diff -u -r1.16086 -r1.16087
--- package.mask11 Oct 2014 10:36:53 -  1.16086
+++ package.mask11 Oct 2014 16:36:04 -  1.16087
@@ -1,5 +1,5 @@
 
-# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.16086 2014/10/11 
10:36:53 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.16087 2014/10/11 
16:36:04 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
@@ -30,6 +30,192 @@
 
 #--- END OF EXAMPLES ---
 
+# Pacho Ramos  (11 Oct 2014)
+# Masked for removal in a month.
+# Obsolete and unmaintained for years. You should switch
+# to one of the many available alternatives like (#508854):
+# - >=gnome-base/gnome-3.12 (either with standard or 'Classic' modes)
+# - gnome-extra/cinnamon
+# - mate-base/mate
+# - xfce-base/xfce4-meta
+# - ...
+ (11 Oct 2014)
 # Dev channel releases are only for people who are developers or want more
 # experimental features and accept a more unstable release.






[gentoo-commits] proj/vmware:master commit in: app-emulation/open-vm-tools-kmod/files/, app-emulation/open-vm-tools-kmod/

2014-10-11 Thread Evan Teran
commit: b55dad0ffdcb610e070ebf66cc1f7bd5be37ea4a
Author: Evan Teran  gmail  com>
AuthorDate: Sat Oct 11 15:58:05 2014 +
Commit: Evan Teran  gmail  com>
CommitDate: Sat Oct 11 15:58:05 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/vmware.git;a=commit;h=b55dad0f

synching open-vm-tools-kmod with latest in mainline

---
 app-emulation/open-vm-tools-kmod/Manifest  |   5 -
 .../open-vm-tools-kmod/files/fragsize.patch| 104 -
 .../open-vm-tools-kmod/files/frozen.patch  |  28 --
 .../open-vm-tools-kmod/files/putname.patch |  13 ---
 .../files/vmhgfs-linux-3.11.patch  |  42 +
 .../open-vm-tools-kmod-2012.10.14.874563.ebuild|  77 ---
 .../open-vm-tools-kmod-2012.12.26.958366.ebuild|  77 ---
 .../open-vm-tools-kmod-2013.04.16.1098359.ebuild   |  79 
 .../open-vm-tools-kmod-2013.09.16.1328054.ebuild   |  67 +
 .../open-vm-tools-kmod-8.8.2.590212-r1.ebuild  |  76 ---
 .../open-vm-tools-kmod-9.2.2.893683.ebuild |  77 ---
 11 files changed, 109 insertions(+), 536 deletions(-)

diff --git a/app-emulation/open-vm-tools-kmod/Manifest 
b/app-emulation/open-vm-tools-kmod/Manifest
deleted file mode 100644
index 50c1c4c..000
--- a/app-emulation/open-vm-tools-kmod/Manifest
+++ /dev/null
@@ -1,5 +0,0 @@
-DIST open-vm-tools-2012.10.14-874563.tar.gz 3618001 SHA256 
57832997ae206becd1c281dbc1ab361fa33320fb77866126b4ef7f077e66d739 SHA512 
ec97e3ef6f6b338994d09d2b25b3ddf7a2aecc5d98818733d2524c65edd0b46ecd1e0107ac33677b4a26bcda30b7fadec1b324e36d1ea4d9fc148824f0a88f31
 WHIRLPOOL 
c31cee1074a04bcfd7bfd5e54c2509028abd1fee76b833c29e171f5c408ac4970a2e1ff85a6ea4be3493dbe25c074fe2882e55a8ea8de0bdba7618e0b625c2cb
-DIST open-vm-tools-2012.12.26-958366.tar.gz 3622541 SHA256 
8d63a9c1e36ef968b87125b3c55c8ed5f75ecc9eafe84716eddee687b5b81606 SHA512 
748d44951dcdff570faab071a5681ce68f8647df002de3a79853fbf1571835499f2dabc863cc7782b23fd55ad568d479ab10db9ff0bfc7c27cab4999b61f2a89
 WHIRLPOOL 
ce4a51e9a40afea2a2f410e05ff9ca3535611a53d99c05e4d079f9b6df2cef1373113e3ec82bec378441f5f6689f6211c570c0ed4cfffe84534943d875f1bacb
-DIST open-vm-tools-2013.04.16-1098359.tar.gz 3737845 SHA256 
fc939de4133d66c0cced8d0a7b5d87edcad3f598393b71c341e66bfec5087960 SHA512 
682c25e315e3108617fd4d419f5bba8bf45f4966f13fa60944650390f63af2a7e4fcf740052106693403fcc2ec6f8b126e9911cbba044fc227f0c663e19f68e0
 WHIRLPOOL 
eb13974f1e0a837617fad8c49f45e73570b343071c0619cc8408b5b9812e135cd9eafffc35a761740a58875c3e5583c625300398346d5863a2fa468044f6dd5f
-DIST open-vm-tools-8.8.2-590212.tar.gz 3795261 SHA256 
c985c8fe7b292209ec1ac7c2b60749d7a9dd7859d789c332deb6baaf53ba8878 SHA512 
5bcf97fe59287d73db43c46895f857ec34da750318150d6878b21ba8df79c76164a688e009585c7a14574f645e1e3ce66c5f9e9bcfc592a79b6f3bbd620dd619
 WHIRLPOOL 
486b22d74925b4813470ae3f3f5c725f2fec8919a36681cbfb6b47e0fa7452d7ae7b92085e823a96ff22da9f2f59d20267965799d32f609a27864ebce070db56
-DIST open-vm-tools-9.2.2-893683.tar.gz 3561799 SHA256 
1ae795e75bf4b38185f39083b8075686d3bab4c1222f4e39c863aeccb2f5f387 SHA512 
13490bdff2b8b316b1cd09e06c76293f21b83ede025ded5ddc71251e4f64279296f7dd0f248335f7e3d0714759be13f07263f154683878870a062c9ba55644fc
 WHIRLPOOL 
16cbb0977a14a5f0f1efa1194dc1255d343767f7c55d3e97e03172c30117b24018634e870db7ad0d5010f5dd87d4664aa054d24e70e816b54cb1ca6148abb872

diff --git a/app-emulation/open-vm-tools-kmod/files/fragsize.patch 
b/app-emulation/open-vm-tools-kmod/files/fragsize.patch
deleted file mode 100644
index 1f85df5..000
--- a/app-emulation/open-vm-tools-kmod/files/fragsize.patch
+++ /dev/null
@@ -1,104 +0,0 @@
-diff --git a/modules/linux/vmxnet/vmxnet.c b/modules/linux/vmxnet/vmxnet.c
-index a6f5740..3c75bb2 100644
 a/modules/linux/vmxnet/vmxnet.c
-+++ b/modules/linux/vmxnet/vmxnet.c
-@@ -989,7 +989,7 @@ vmxnet_probe_device(struct pci_dev *pdev, // 
IN: vmxnet PCI device
-   .ndo_start_xmit = &vmxnet_start_tx,
-   .ndo_stop = &vmxnet_close,
-   .ndo_get_stats = &vmxnet_get_stats,
--  .ndo_set_multicast_list = &vmxnet_set_multicast_list,
-+  .ndo_set_rx_mode = &vmxnet_set_multicast_list,
-   .ndo_change_mtu = &vmxnet_change_mtu,
- #   ifdef VMW_HAVE_POLL_CONTROLLER
-   .ndo_poll_controller = vmxnet_netpoll,
-@@ -2033,21 +2033,23 @@ vmxnet_map_pkt(struct sk_buff *skb,
-   offset -= skb_headlen(skb);
- 
-   for ( ; nextFrag < skb_shinfo(skb)->nr_frags; nextFrag++){
-+ int fragSize;
-  frag = &skb_shinfo(skb)->frags[nextFrag];
-+  fragSize = skb_frag_size(frag);
- 
-  // skip those frags that are completely copied
-- if (offset >= frag->size){
--offset -= frag->size;
-+ if (offset >= fragSize){
-+offset -= fragSize;
-  } else {
- // map the part of the frag that is not copied
- dma = pci_map_page(lp->pdev,
--   frag->page

[gentoo-commits] proj/vmware:master commit in: app-emulation/vmware-modules/, app-emulation/vmware-tools/

2014-10-11 Thread Evan Teran
commit: fd40acca7d289df68b3fc616b0e3b184dc05f8d4
Author: Evan Teran  gmail  com>
AuthorDate: Sat Oct 11 16:09:24 2014 +
Commit: Evan Teran  gmail  com>
CommitDate: Sat Oct 11 16:09:24 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/vmware.git;a=commit;h=fd40acca

more synching with mainline

---
 app-emulation/vmware-modules/Manifest  | 44 +
 app-emulation/vmware-tools/Manifest| 48 +--
 .../vmware-tools/vmware-tools-8.4.9.744570.ebuild  | 55 -
 .../vmware-tools/vmware-tools-9.2.3.1031769.ebuild | 56 --
 ...25.ebuild => vmware-tools-9.6.2.1744117.ebuild} |  6 +--
 5 files changed, 59 insertions(+), 150 deletions(-)

diff --git a/app-emulation/vmware-modules/Manifest 
b/app-emulation/vmware-modules/Manifest
index e69de29..30288f3 100644
--- a/app-emulation/vmware-modules/Manifest
+++ b/app-emulation/vmware-modules/Manifest
@@ -0,0 +1,44 @@
+-BEGIN PGP SIGNED MESSAGE-
+Hash: SHA256
+
+AUX 271-3.10.0.patch 23418 SHA256 
346d1ca7705dd5f791e0d69cdbb346ebd31f2f4f11f3989c23d1a89e11e1b91b SHA512 
878678f951b05137deb1656ccd7fd3185887f02649f2a223ef60ccecdedc7aeda6ca08ddd108e379734b5e04ef11d326b20e45c069c53cc52b7a6869b8db6410
 WHIRLPOOL 
196515870addefcd6857dd3e44a04b8a6c0da39185e7cea7826f1498f5a4c17997ebe43aada7f22a1c3fa94302576ced2a7ed36e2452de00711256c83f7fa41e
+AUX 271-apic.patch 302 SHA256 
60e7df881281fedcabe9ea4427b324b5e1142a1a2b6ab5236ac0843bd1051048 SHA512 
003240043e5875d8c6425c146e708eb3c3d8be7fa48a2ac42b3071f00dafdbd51f7796d6f884298b135adccaf8a3eac32fd82b34a436a724da125dac5f6261d7
 WHIRLPOOL 
4707d0ddd532d5ec27ee2ba3d0fb25c1972bbc9f958b4b89f2f5cceffdf955ba88cd1be0cde046aa5fa688d52faeab5ccf3f03bbccb3e9b088abc37ad579e8e0
+AUX 271-filldir.patch 2485 SHA256 
539e8940b47cb7a5f39ab2ba6f18ceb290a2627c81bd6daead6e5850aec02a63 SHA512 
e5f85031f459a79a0f64b15224ae8c1ef23892ef159a37955b9c2a2b13ab6e892325a5aeedd4fd2969da3b187cedcaea8fc41540638d02cf56dce2d3e9194937
 WHIRLPOOL 
a455300e72624e4f9c8d3dc79fa5c3ab1b288e79a04483503006a61d44bc83bf14faf0bfa753f82a70dbd23f870b2f6bfe1b06d23792eb1522a7265799ce03eb
+AUX 271-makefile-include.patch 2501 SHA256 
208121855fe18ecb279ff40f2833463559363461c2170d32c17040211a01f169 SHA512 
c498c025c7eb025f6554cee683242dd73e4a284e4b28c95b75339f4f4a912a156acc1845881fbd78bf399c2092af7413f5d6c4782cd066527ea275518b411c1d
 WHIRLPOOL 
e03a6d7139ab7b309e0ca1527cb8b52a8f84f5f5d997a510305d2a6ccdd39f33b18c7276df8ac78d92d2a17a66236f582baaa5e374069d3912090544908a0338
+AUX 271-makefile-kernel-dir.patch 2153 SHA256 
d76b1028d21b804836e36478d243cd7914435a34f3fe014058e0a9cc7a020653 SHA512 
f18339dc8ac4c864b0c2fb234ad2db8f4638a5cd28e8fd11b5593c82107925b41b42e0d0acac52232a373780d79a3e397f70886534cdf889055e86cfda718f62
 WHIRLPOOL 
70c869bf4efab6843856addd0c5f5a295ed2fe38f9fc2a8ab2ca55523cd39cb92018d6bd0dac75658fa0f5260962c98f0bbd001593f3f11c2d204c693061c5b6
+AUX 271-netdevice.patch 833 SHA256 
8f17ce379abda45a8f94e1dcd6e43367273f97f76edd41f9941beb3b1730a751 SHA512 
b4ec7c1694968a1843f10e8bfe0dbfdc99bd3b5fc1391456d91a3648b848b82df681a0748d967afa19e728c4d19b79b6a3cb9fd3e15a52a5cab048a6ac9b06a9
 WHIRLPOOL 
b0cabe2ec1b8ca52d427c02593d6057c98d4ed00c578d006de65460138c37a5be76a7938d85f5a35eb6f49ee5e34065ce62b60a51b0ccf021639a59b27aeac8a
+AUX 271-putname.patch 394 SHA256 
b8103d3c72c24696e974e49dcdcdf2d5a2b2c2fdd5f6ca050842b840e906ba77 SHA512 
86a0a0ec3ff225940190056e85d498fd7eb260bcc52882fea8921398f572bc46f56c3f2941d3f3d1587a07bc72c8885cbddacf632d2b5fed7d8c9d284399d6d8
 WHIRLPOOL 
e1e8afcafe00131fd6d90b61e5d911da69d7c26b7fd19be085eb5cfd23c2ab19784ae5ddf18928f9cc4a178d87c6d51e8de27dfab8507e2d57fc18868fde9f45
+AUX 271-vfsfollowlink.patch 1219 SHA256 
b195f6492a172f682d55fb506ba02c473fd924bb47dc0d1359dd5de163b4da22 SHA512 
b675f68175be0b7003d2f80c54dce05a064f8d5bd8744d40571d3d1e0153c01f909e37e0403e53f23a6d61383a9b054c40a2a9ffa95dd765eeffb0c7e739ff1d
 WHIRLPOOL 
3e108ee29c2050029c6079f652e2670529a9f6b220524db214c7dadba3dcaef8fa1ab261f0e10ffa7506456d9f3954bf6a82960e78ebd120c1eb2aac68e8
+AUX 271-vmmon.patch 1581 SHA256 
a4e89766232d0fc0456bb026978dedca17fcc62e247c8d65ae747b537e62fd13 SHA512 
10aca60b959647c058fa69f851892a0245acad971028876da8d0a0e6002d0e8f6f2677fd0d9b140ee8a1a68cf2cfa3f8937a992f8b0e7e163aa6bcc17b75c979
 WHIRLPOOL 
28d1a34e89c7a995dbde48d87d8942c6f58e61f4a24189a1463c148c843fdf16cea7df497993eb6fb8d8de228f07ae8a44233bb63e42b54ab1f762e7e24889ba
+AUX 279-apic.patch 302 SHA256 
60e7df881281fedcabe9ea4427b324b5e1142a1a2b6ab5236ac0843bd1051048 SHA512 
003240043e5875d8c6425c146e708eb3c3d8be7fa48a2ac42b3071f00dafdbd51f7796d6f884298b135adccaf8a3eac32fd82b34a436a724da125dac5f6261d7
 WHIRLPOOL 
4707d0ddd532d5ec27ee2ba3d0fb25c1972bbc9f958b4b89f2f5cceffdf955ba88cd1be0cde046aa5fa688d52faeab5ccf3f03bbccb3e9b088abc37ad579e8e0
+AUX 279-filldir.patch 2485 SHA256 
539e8940b47cb7a5f39ab2ba6f18ceb290a2627c81bd6daead6e5850aec02a63 SHA512 
e5f85031f459a79a0f64b15224ae8c1ef23892ef159a3795

[gentoo-commits] proj/vmware:master commit in: app-emulation/vmware-player/files/, app-emulation/vmware-player/

2014-10-11 Thread Evan Teran
commit: 93fed3f8c723a8d1f20f8face5028c3fc109edee
Author: Evan Teran  gmail  com>
AuthorDate: Sat Oct 11 16:02:17 2014 +
Commit: Evan Teran  gmail  com>
CommitDate: Sat Oct 11 16:02:17 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/vmware.git;a=commit;h=93fed3f8

synching with mainline

---
 app-emulation/vmware-player/files/config-3.0   | 10 ---
 .../vmware-player/files/list-bundle-components.xsl | 17 ---
 .../vmware-player/files/list-component-files.xsl   | 19 -
 app-emulation/vmware-player/files/vmware-3.0.rc| 33 --
 ...9.ebuild => vmware-player-6.0.2.1744117.ebuild} |  8 +++---
 5 files changed, 4 insertions(+), 83 deletions(-)

diff --git a/app-emulation/vmware-player/files/config-3.0 
b/app-emulation/vmware-player/files/config-3.0
deleted file mode 100644
index cc83931..000
--- a/app-emulation/vmware-player/files/config-3.0
+++ /dev/null
@@ -1,10 +0,0 @@
-VMCI_CONFED = "yes"
-NETWORKING = "yes"
-initscriptdir = "/etc/init.d"
-VMBLOCK_CONFED = "yes"
-authd.fullpath = "@@VM_INSTALL_DIR@@/sbin/vmware-authd"
-gksu.rootMethod = "su"
-VSOCK_CONFED = "yes"
-libdir = "@@VM_INSTALL_DIR@@/lib/vmware"
-bindir = "@@VM_INSTALL_DIR@@/bin"
-product.buildNumber = "@@BUILD_NUMBER@@"

diff --git a/app-emulation/vmware-player/files/list-bundle-components.xsl 
b/app-emulation/vmware-player/files/list-bundle-components.xsl
deleted file mode 100644
index db1a4e4..000
--- a/app-emulation/vmware-player/files/list-bundle-components.xsl
+++ /dev/null
@@ -1,17 +0,0 @@
-
-http://www.w3.org/1999/XSL/Transform";>
-
-   
-
-   
-
-   
-   
-
-   
-
-   
-   

-   
-
-

diff --git a/app-emulation/vmware-player/files/list-component-files.xsl 
b/app-emulation/vmware-player/files/list-component-files.xsl
deleted file mode 100644
index 91c6152..000
--- a/app-emulation/vmware-player/files/list-component-files.xsl
+++ /dev/null
@@ -1,19 +0,0 @@
-
-http://www.w3.org/1999/XSL/Transform";>
-
-   
-
-   
-
-   
-   
-
-   
-
-   
-
-   
-   

-   
-
-

diff --git a/app-emulation/vmware-player/files/vmware-3.0.rc 
b/app-emulation/vmware-player/files/vmware-3.0.rc
deleted file mode 100644
index 573799a..000
--- a/app-emulation/vmware-player/files/vmware-3.0.rc
+++ /dev/null
@@ -1,33 +0,0 @@
-#!/sbin/runscript
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-depend() {
-   need localmount
-   use net 
-}
-
-start() {
-   ebegin Starting VMware USB Arbitrator
-   #start-stop-daemon --start --exec @@BINDIR@@/vmware-usbarbitrator
-   @@BINDIR@@/vmware-usbarbitrator 
-   eend $?
-   ebegin Starting VMware services
-   modprobe -a vmmon vmci vsock vmblock vmnet 
-   eend $?
-   @@BINDIR@@/vmware-networks --start
-   eend $?
-}
-
-stop() {
-   ebegin Stopping VMware USB Arbitrator
-   #start-stop-daemon --stop --exec @@BINDIR@@/vmware-usbarbitrator
-   killall --wait @@BINDIR@@/vmware-usbarbitrator 
-   eend $?
-   @@BINDIR@@/vmware-networks --stop 
-   eend $?
-   ebegin Stopping VMware services
-   modprobe -r vsock vmci vmmon vmblock vmnet
-   eend $?
-}

diff --git a/app-emulation/vmware-player/vmware-player-5.0.2.1031769.ebuild 
b/app-emulation/vmware-player/vmware-player-6.0.2.1744117.ebuild
similarity index 97%
rename from app-emulation/vmware-player/vmware-player-5.0.2.1031769.ebuild
rename to app-emulation/vmware-player/vmware-player-6.0.2.1744117.ebuild
index 8776e08..39b2ee2 100644
--- a/app-emulation/vmware-player/vmware-player-5.0.2.1031769.ebuild
+++ b/app-emulation/vmware-player/vmware-player-6.0.2.1744117.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/app-emulation/vmware-player/vmware-player-5.0.2.1031769.ebuild,v
 1.2 2013/06/22 22:37:55 dilfridge Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/app-emulation/vmware-player/vmware-player-6.0.2.1744117.ebuild,v
 1.1 2014/04/19 15:01:08 dilfridge Exp $
 
-EAPI="4"
+EAPI=5
 
 inherit eutils versionator fdo-mime gnome2-utils pax-utils vmware-bundle
 
@@ -77,7 +77,7 @@ RDEPEND="dev-cpp/cairomm
x11-libs/pango
x11-libs/startup-notification
!app-emulation/vmware-workstation"
-PDEPEND="~app-emulation/vmware-modules-271.${PV_MINOR}
+PDEPEND="~app-emulation/vmware-modules-279.${PV_MINOR}
vmware-tools? ( app-emulation/vmware-tools )"
 
 S=${WORKDIR}



[gentoo-commits] proj/vmware:master commit in: app-emulation/vmware-modules/, app-emulation/vmware-player/

2014-10-11 Thread Evan Teran
commit: b23ef6aca3d68aa9a6ad81d1351372306db6e42c
Author: Evan Teran  gmail  com>
AuthorDate: Sat Oct 11 16:04:35 2014 +
Commit: Evan Teran  gmail  com>
CommitDate: Sat Oct 11 16:04:35 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/vmware.git;a=commit;h=b23ef6ac

trying to generate some manifests

---
 app-emulation/vmware-modules/Manifest | 0
 app-emulation/vmware-player/Manifest  | 4 ++--
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-emulation/vmware-modules/Manifest 
b/app-emulation/vmware-modules/Manifest
new file mode 100644
index 000..e69de29

diff --git a/app-emulation/vmware-player/Manifest 
b/app-emulation/vmware-player/Manifest
index ea1f747..65d7b3e 100644
--- a/app-emulation/vmware-player/Manifest
+++ b/app-emulation/vmware-player/Manifest
@@ -1,2 +1,2 @@
-DIST VMware-Player-5.0.2-1031769.i386.bundle.tar 220037120 SHA256 
9ed94f5137f96d5ab1b4898abb7bdc1ab84edf7eb8b6477ca3f33a9b18e4d0be SHA512 
5fac9dc97ff36631c40765fe4e63c734176891441f3dfbeb417d1dae7db02db7b65c799ae706cbbb8edd91c8aed3fe6d11ebbae8c69a82d37b3ddc48261bff5c
 WHIRLPOOL 
c7e634f59c6852e58f7665de7db9c4295451592ba61de738e4cac927907b9d662a9b944579aca1474b5bf5c241d1a5bbcc1ed8c07aff1c31d1d39d4a66309fe4
-DIST VMware-Player-5.0.2-1031769.x86_64.bundle.tar 185395200 SHA256 
5ba11b8d4ece91c9dc1f9ed096e7c2d420370d8809b4d009a355fca390698482 SHA512 
58695587244c142953a55b9f8c4400e54f0951297aab594544d569d15ec3e25c71f4885eb59bfa453cfb6a8c33bfcaff77412dc4a79349c22285b72ec700f635
 WHIRLPOOL 
554986c680cd4caa760cdc9c9ddf75769be9a92a45ebefa7daabc6697801fa170e6f738ce513d819d4d3f22e3a33424fc559408187a6ee48b969c109bd86ee52
+DIST VMware-Player-6.0.2-1744117.i386.bundle.tar 233226240 SHA256 
b3314b1b4658fff3a3bd821381e141b4039bc6925088d509f073dfdc19f78937 SHA512 
da912c898306a50392cdf814f523321962e70d6d2afabe2cbcec35e581c60d1ba3e28fdf11f4e83306c9057038a7ab8d1d1e2e4281068fdb9997f6d1aaf34e74
 WHIRLPOOL 
bdd81a3620a56a689f48443d8cb0fc5dbde8ec5d996fcff5e38a983eb4fa5d6bfb73658f1b15837f6c4272578b4f90875f9393db3318ee9ad84cf1266fbcbed5
+DIST VMware-Player-6.0.2-1744117.x86_64.bundle.tar 200560640 SHA256 
6e8ef0982303128fe2d41f59cc6d4031edcc85f4dcc8ba20e17df9837a4c972f SHA512 
8e71b59e5152ec6a21e2bc87e11462fbc9f25a27ea48e73ace6daa198bc75fb0cf49d895755abe10b3fb52df0ec0586fd00e8bd51c461b7a638e745c6bbd996e
 WHIRLPOOL 
a9af879ce290a9f0ac2fb5f6af425e509455d6fb553156250013a941e782c416435be7326498ed544ee81623fbac4a5924940cc05dd56325c0d8e4c71c44b0b8



[gentoo-commits] proj/vmware:master commit in: app-emulation/open-vm-tools-kmod/, app-emulation/vmware-workstation/files/, ...

2014-10-11 Thread Evan Teran
commit: ca8c57bf573ea8326c4fb6528fabf190a5cc5ee9
Author: Evan Teran  gmail  com>
AuthorDate: Sat Oct 11 16:14:05 2014 +
Commit: Evan Teran  gmail  com>
CommitDate: Sat Oct 11 16:14:05 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/vmware.git;a=commit;h=ca8c57bf

more synching with mainline

---
 app-emulation/open-vm-tools-kmod/Manifest  |  1 +
 app-emulation/vmware-workstation/Manifest  | 11 ++---
 .../vmware-workstation/files/configure-hostd.sh| 20 
 .../files/list-bundle-components.xsl   | 17 ---
 .../files/list-component-files.xsl | 19 
 .../vmware-workstation/files/vmware-9.0.rc | 33 -
 .../vmware-workstation/files/vmware-server-8.0.rc  | 55 --
 .../vmware-workstation/files/vmware-server-9.0.rc  | 55 --
 ...ld => vmware-workstation-10.0.2.1744117.ebuild} | 26 ++
 9 files changed, 22 insertions(+), 215 deletions(-)

diff --git a/app-emulation/open-vm-tools-kmod/Manifest 
b/app-emulation/open-vm-tools-kmod/Manifest
new file mode 100644
index 000..b35af64
--- /dev/null
+++ b/app-emulation/open-vm-tools-kmod/Manifest
@@ -0,0 +1 @@
+DIST open-vm-tools-2013.09.16-1328054.tar.gz 3793719 SHA256 
470a6ea3ce14c2c5ea6b7bc59745eccbacc8d88a3f343e712312786435975d13 SHA512 
7ae62d5411b4bdefd0e8db5f0a81bb357bfd4a624af06bf9a5a74f49ede0b7051b41dfe548c758fd7e73cded34af983c8aa0c412e65343092e05ae9b997895cb
 WHIRLPOOL 
688fb4e494fb7aab7d0eb09189afff95ec8727bcc1893a4ec632bb8198661a1a55d58a813d2d56a3ac330fd7a55afc1fa7dc11f1d60c06c91ecf6a0bf866b249

diff --git a/app-emulation/vmware-workstation/Manifest 
b/app-emulation/vmware-workstation/Manifest
index 6d9b424..0c6a39b 100644
--- a/app-emulation/vmware-workstation/Manifest
+++ b/app-emulation/vmware-workstation/Manifest
@@ -1,8 +1,3 @@
-DIST VMware-Workstation-7.1.6-744570.i386.bundle 130391795 SHA256 
fbeadabe7c0929a10f144dc82e37afc73bbd60bedf299bb2c6142dda379ad5b4 SHA512 
c57148f0ef7041bdadf46668aaddd0315134185103706dc23815bf3ebe4f2389a9387c63d0caf3fb0e1baf236320c633264e473439b2e00eb26c11d489e6af0a
 WHIRLPOOL 
e631ccb14424d5165fc2f9bbe7d910e60c06ed3f4c5fbddbbf5b4bc66153a84927a3779359f3d07b258a59766ff9d063585e1ecc70dc4d107c073bf529541dbf
-DIST VMware-Workstation-7.1.6-744570.x86_64.bundle 137422513 SHA256 
1a0694349393ce326f62c291d76c1c5e8d5473b49bf986476e1485df422a2f8f SHA512 
df72b0c770f9e356efd1bbffe2c596909f193bc2100a015cfbab819fea017ee735fcc932180c0cc5ffbe8223fa66a06dcd35e34d183b06f71c7ba937c440e2fd
 WHIRLPOOL 
e7b50e706b88e30801ccaeaedf59f5fbdf06342d8566a65b3cb19ec2c433da52768b55f9e5e58e274071c284d38280e0635f8a9c3fd2d01f53037c1082d15af3
-DIST VMware-Workstation-8.0.4-744019.i386.bundle.tar 189839360 SHA256 
5b469de4f583fc0d33750253244c23e0f6a9d5b713e8d46ea3dd07f01af2b5ed SHA512 
f0b17262594bf613a971c49843eec8fd1182a031c0cdca91824a1c6a0315e87183c0d99f6e37e2aa3a9a9a00f57efbbc6ff155094aa6cc776901177697aa8e49
 WHIRLPOOL 
bf5a7a2f8c7cfc53fe2d0dfbe1b8b1fa9452a3eb0a1b5a70363dab4bd23c86a628a3938b5c5c30301639ea748347230fc3ad0b8977dabc1c2b828f6dde81b1f1
-DIST VMware-Workstation-8.0.4-744019.x86_64.bundle.tar 189552640 SHA256 
83cdf3f4cf99afdd3e9685b5cc50f613094cc24e7502a2dc577f05640382a6c5 SHA512 
87258301b157f9bade30094a02a5f3749342b00ccb5b1359d10152331d3d257bb1afe23fa7b68c973e2f4e2b9e9afc7ca52e99118041e1d45be3099f8d10d51c
 WHIRLPOOL 
1bf6ce95e63042bb47971c36f55f943ef8ce736c5f9355fe7afbc114a09f716277199a847af041bd467cdb02170414bd660bafa54cce59029347e27ffda6eb73
-DIST VMware-Workstation-8.0.5-893925.i386.bundle.tar 188180480 SHA256 
79033aa837a1b2fcf1229c407b159586152d41f3c624ae1745264443bad06a90 SHA512 
2ea55d6ba1b64ee33ca73af46ce4ba58be441ecb973e4f9e3711b7d516b1d6233ee8e125c0d90226169258a5bbccf73f67ea593a1eaa48e7368275f545db3306
 WHIRLPOOL 
270b37814ee4c19bbe3e1d573016cf1899a90dc1c3500181eeb336220eebde276fb11bb4e46d3121a8e1517f749fe9a127eb76f642938d7b8e8f22ae3fbed556
-DIST VMware-Workstation-8.0.5-893925.x86_64.bundle.tar 187729920 SHA256 
39010a8b712c9e9ea86f0bf32b1ad86a7788748f00292f344b1bdea899a6ac0d SHA512 
010cbe7a6ffa6cd07b6daab8534c4da260aae17a6c7988e74792aa450f266bea306cca49820a65dfb3e0b76e912a5430fe98f4f0446f750fe26b867cfe2ed48d
 WHIRLPOOL 
dbf6994fbf87b3eca0fe882075dbdd68de599c7b699e609a43d3bade5e23704158ef11a13dea12b41c2c3c7d57ba493e324b4ebf2b138c9cf5835699ba76ae55
-DIST VMware-Workstation-9.0.2-1031769.i386.bundle.tar 264898560 SHA256 
f23efa3db418790cffa38a90639edd0f5e0834fa98c69a3146489cc3774a71c7 SHA512 
ea38c747e236e3a5ae3da809f22a997044c3306239afbc2cc28dfd04f3589dc23e35295bcb5dfb7f5ea687a908b790fb56afa062b7a5cea523c8645d94d652b0
 WHIRLPOOL 
18aaed121c973911d00a89790b98c8b22b942d29a3580181e7937fe27882d4cd30b2e0a7c13d22129c2e72c7cbce87cff0c80f32e6726d25cf67ec159506db46
-DIST VMware-Workstation-9.0.2-1031769.x86_64.bundle.tar 232693760 SHA256 
53e175340086f8be2a9cf6c272fe1f8721aa06ed227a2c880a23323c4c491ee3 SHA512 
2b11078e96826eaf8b83053fa091d9b7799810fdd93ef730f9732876f29a1d989728cd94c0daf

[gentoo-commits] gentoo-x86 commit in dev-util/scons: ChangeLog

2014-10-11 Thread Ian Delaney (idella4)
idella4 14/10/11 16:12:26

  Modified: ChangeLog
  Log:
  typo
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0xB8072B0D)

Revision  ChangesPath
1.155dev-util/scons/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/scons/ChangeLog?rev=1.155&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/scons/ChangeLog?rev=1.155&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/scons/ChangeLog?r1=1.154&r2=1.155

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-util/scons/ChangeLog,v
retrieving revision 1.154
retrieving revision 1.155
diff -u -r1.154 -r1.155
--- ChangeLog   11 Oct 2014 16:10:05 -  1.154
+++ ChangeLog   11 Oct 2014 16:12:26 -  1.155
@@ -1,12 +1,12 @@
 # ChangeLog for dev-util/scons
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/scons/ChangeLog,v 1.154 2014/10/11 
16:10:05 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/scons/ChangeLog,v 1.155 2014/10/11 
16:12:26 idella4 Exp $
 
 *scons-2.3.4 (11 Oct 2014)
 
   11 Oct 2014; Ian Delaney  +scons-2.3.4.ebuild,
   scons-2.3.2.ebuild:
-  drop py2.4 add pypy, bump
+  drop py2.6 add pypy, bump
 
 *scons-2.3.2 (09 Jul 2014)
 






[gentoo-commits] gentoo-x86 commit in dev-util/scons: ChangeLog scons-2.3.4.ebuild

2014-10-11 Thread Ian Delaney (idella4)
idella4 14/10/11 16:10:05

  Modified: ChangeLog
  Added:scons-2.3.4.ebuild
  Log:
  edit Changelog to final changes
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0xB8072B0D)

Revision  ChangesPath
1.154dev-util/scons/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/scons/ChangeLog?rev=1.154&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/scons/ChangeLog?rev=1.154&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/scons/ChangeLog?r1=1.153&r2=1.154

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-util/scons/ChangeLog,v
retrieving revision 1.153
retrieving revision 1.154
diff -u -r1.153 -r1.154
--- ChangeLog   11 Oct 2014 15:50:57 -  1.153
+++ ChangeLog   11 Oct 2014 16:10:05 -  1.154
@@ -1,9 +1,12 @@
 # ChangeLog for dev-util/scons
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/scons/ChangeLog,v 1.153 2014/10/11 
15:50:57 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/scons/ChangeLog,v 1.154 2014/10/11 
16:10:05 idella4 Exp $
 
-  11 Oct 2014; Ian Delaney  scons-2.3.2.ebuild:
-  bump
+*scons-2.3.4 (11 Oct 2014)
+
+  11 Oct 2014; Ian Delaney  +scons-2.3.4.ebuild,
+  scons-2.3.2.ebuild:
+  drop py2.4 add pypy, bump
 
 *scons-2.3.2 (09 Jul 2014)
 



1.1  dev-util/scons/scons-2.3.4.ebuild

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

Index: scons-2.3.4.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/scons/scons-2.3.4.ebuild,v 1.1 
2014/10/11 16:10:05 idella4 Exp $

EAPI=5
PYTHON_COMPAT=( python2_7 pypy )
PYTHON_REQ_USE="threads(+)"

inherit distutils-r1

DESCRIPTION="Extensible Python-based build utility"
HOMEPAGE="http://www.scons.org/";
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz
doc? ( http://www.scons.org/doc/${PV}/PDF/${PN}-user.pdf -> 
${P}-user.pdf
   http://www.scons.org/doc/${PV}/HTML/${PN}-user.html -> 
${P}-user.html )"

LICENSE="MIT"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
IUSE="doc"

PATCHES=( "${FILESDIR}/${PN}-2.1.0-jython.patch" )

python_prepare_all() {
# https://bugs.gentoo.org/show_bug.cgi?id=361061
sed -i -e 
"s|/usr/local/bin:/opt/bin:/bin:/usr/bin|${EPREFIX}/usr/local/bin:${EPREFIX}/opt/bin:${EPREFIX}/bin:${EPREFIX}/usr/bin:/usr/local/bin:/opt/bin:/bin:/usr/bin|g"
 engine/SCons/Platform/posix.py || die
# and make sure the build system doesn't "force" /usr/local/ :(
sed -i -e "s/'darwin'/'NOWAYdarwinWAYNO'/" setup.py || die

distutils-r1_python_prepare_all
}

python_install() {
distutils-r1_python_install \
--standard-lib \
--no-version-script \
--install-data "${EPREFIX}"/usr/share
}

python_install_all() {
local DOCS=( {CHANGES,README,RELEASE}.txt )
distutils-r1_python_install_all

use doc && dodoc "${DISTDIR}"/${P}-user.{pdf,html}
}

src_install() {
distutils-r1_src_install

# Build system does not use build_scripts properly.
# http://scons.tigris.org/issues/show_bug.cgi?id=2891
python_replicate_script "${ED}"usr/bin/scons{,ign,-time}
}






[gentoo-commits] gentoo-x86 commit in media-libs/jasper: jasper-1.900.1-r6.ebuild ChangeLog

2014-10-11 Thread Tobias Klausmann (klausman)
klausman14/10/11 16:02:52

  Modified: jasper-1.900.1-r6.ebuild ChangeLog
  Log:
  Stable on alpha, bug 513812
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with 
key CE5D54E8)

Revision  ChangesPath
1.9  media-libs/jasper/jasper-1.900.1-r6.ebuild

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

Index: jasper-1.900.1-r6.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/jasper/jasper-1.900.1-r6.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- jasper-1.900.1-r6.ebuild14 Aug 2014 17:03:38 -  1.8
+++ jasper-1.900.1-r6.ebuild11 Oct 2014 16:02: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/media-libs/jasper/jasper-1.900.1-r6.ebuild,v 1.8 
2014/08/14 17:03:38 phajdan.jr Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/media-libs/jasper/jasper-1.900.1-r6.ebuild,v 1.9 
2014/10/11 16:02:52 klausman Exp $
 
 EAPI=5
 
@@ -18,7 +18,7 @@
 
 LICENSE="JasPer2.0"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha ~amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
 IUSE="jpeg opengl static-libs"
 
 RDEPEND="



1.85 media-libs/jasper/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/jasper/ChangeLog?rev=1.85&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/jasper/ChangeLog?rev=1.85&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/jasper/ChangeLog?r1=1.84&r2=1.85

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/jasper/ChangeLog,v
retrieving revision 1.84
retrieving revision 1.85
diff -u -r1.84 -r1.85
--- ChangeLog   14 Aug 2014 17:03:38 -  1.84
+++ ChangeLog   11 Oct 2014 16:02:52 -  1.85
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/jasper
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/jasper/ChangeLog,v 1.84 
2014/08/14 17:03:38 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/jasper/ChangeLog,v 1.85 
2014/10/11 16:02:52 klausman Exp $
+
+  11 Oct 2014; Tobias Klausmann  jasper-1.900.1-r6.ebuild:
+  Stable on alpha, bug 513812
 
   14 Aug 2014; Pawel Hajdan jr 
   jasper-1.900.1-r6.ebuild:






[gentoo-commits] gentoo-x86 commit in net-libs/phodav: ChangeLog phodav-0.4.ebuild

2014-10-11 Thread Tobias Klausmann (klausman)
klausman14/10/11 15:54:34

  Modified: ChangeLog phodav-0.4.ebuild
  Log:
  Keyworded on alpha, bug 513108
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with 
key CE5D54E8)

Revision  ChangesPath
1.6  net-libs/phodav/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/phodav/ChangeLog?rev=1.6&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/phodav/ChangeLog?rev=1.6&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/phodav/ChangeLog?r1=1.5&r2=1.6

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-libs/phodav/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog   11 Oct 2014 12:26:45 -  1.5
+++ ChangeLog   11 Oct 2014 15:54:34 -  1.6
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/phodav
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/phodav/ChangeLog,v 1.5 2014/10/11 
12:26:45 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/phodav/ChangeLog,v 1.6 2014/10/11 
15:54:34 klausman Exp $
+
+  11 Oct 2014; Tobias Klausmann  phodav-0.4.ebuild:
+  Keyworded on alpha, bug 513108
 
   11 Oct 2014; Markus Meier  phodav-0.4.ebuild:
   arm stable, bug #512012



1.6  net-libs/phodav/phodav-0.4.ebuild

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

Index: phodav-0.4.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-libs/phodav/phodav-0.4.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- phodav-0.4.ebuild   11 Oct 2014 12:26:45 -  1.5
+++ phodav-0.4.ebuild   11 Oct 2014 15:54:34 -  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/net-libs/phodav/phodav-0.4.ebuild,v 1.5 
2014/10/11 12:26:45 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/phodav/phodav-0.4.ebuild,v 1.6 
2014/10/11 15:54:34 klausman Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 
 LICENSE="LGPL-2.1+"
 SLOT="0"
-KEYWORDS="amd64 arm ~ppc ~ppc64"
+KEYWORDS="~alpha amd64 arm ~ppc ~ppc64"
 IUSE="avahi spice systemd"
 
 RDEPEND="dev-libs/glib






[gentoo-commits] gentoo-x86 commit in net-misc/spice-gtk: ChangeLog spice-gtk-0.25-r1.ebuild

2014-10-11 Thread Tobias Klausmann (klausman)
klausman14/10/11 15:54:20

  Modified: ChangeLog spice-gtk-0.25-r1.ebuild
  Log:
  Keyworded on alpha, bug 513108
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with 
key CE5D54E8)

Revision  ChangesPath
1.89 net-misc/spice-gtk/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/spice-gtk/ChangeLog?rev=1.89&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/spice-gtk/ChangeLog?rev=1.89&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/spice-gtk/ChangeLog?r1=1.88&r2=1.89

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/spice-gtk/ChangeLog,v
retrieving revision 1.88
retrieving revision 1.89
diff -u -r1.88 -r1.89
--- ChangeLog   17 Aug 2014 23:47:44 -  1.88
+++ ChangeLog   11 Oct 2014 15:54:20 -  1.89
@@ -1,6 +1,9 @@
 # ChangeLog for net-misc/spice-gtk
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/spice-gtk/ChangeLog,v 1.88 
2014/08/17 23:47:44 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/spice-gtk/ChangeLog,v 1.89 
2014/10/11 15:54:20 klausman Exp $
+
+  11 Oct 2014; Tobias Klausmann  spice-gtk-0.25-r1.ebuild:
+  Keyworded on alpha, bug 513108
 
   17 Aug 2014; Anthony G. Basile  
spice-gtk-0.25-r1.ebuild:
   Keyword ~ppc ~ppc64, bug #513108



1.4  net-misc/spice-gtk/spice-gtk-0.25-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/spice-gtk/spice-gtk-0.25-r1.ebuild?rev=1.4&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/spice-gtk/spice-gtk-0.25-r1.ebuild?rev=1.4&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/spice-gtk/spice-gtk-0.25-r1.ebuild?r1=1.3&r2=1.4

Index: spice-gtk-0.25-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/spice-gtk/spice-gtk-0.25-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- spice-gtk-0.25-r1.ebuild17 Aug 2014 23:47:44 -  1.3
+++ spice-gtk-0.25-r1.ebuild11 Oct 2014 15:54:20 -  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/net-misc/spice-gtk/spice-gtk-0.25-r1.ebuild,v 1.3 
2014/08/17 23:47:44 blueness Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/net-misc/spice-gtk/spice-gtk-0.25-r1.ebuild,v 1.4 
2014/10/11 15:54:20 klausman Exp $
 
 EAPI=5
 GCONF_DEBUG="no"
@@ -18,7 +18,7 @@
 LICENSE="LGPL-2.1"
 SLOT="0"
 SRC_URI="http://spice-space.org/download/gtk/${P}.tar.bz2";
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64"
+KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64"
 IUSE="dbus doc gstreamer gtk3 +introspection policykit pulseaudio
 python sasl smartcard static-libs usbredir vala webdav"
 






[gentoo-commits] proj/vmware:master commit in: app-emulation/vmware-modules/files/, app-emulation/vmware-modules/

2014-10-11 Thread Evan Teran
commit: 1a5f058793742777d3e60ca3b930fc54bb42a344
Author: Evan Teran  gmail  com>
AuthorDate: Sat Oct 11 15:43:43 2014 +
Commit: Evan Teran  gmail  com>
CommitDate: Sat Oct 11 15:43:43 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/vmware.git;a=commit;h=1a5f0587

now supports 3.13.0

---
 .../vmware-modules/files/279-3.13-00-vmnet.patch   | 36 ++
 .../vmware-modules/vmware-modules-279.2-r1.ebuild  |  1 +
 2 files changed, 37 insertions(+)

diff --git a/app-emulation/vmware-modules/files/279-3.13-00-vmnet.patch 
b/app-emulation/vmware-modules/files/279-3.13-00-vmnet.patch
new file mode 100644
index 000..4e9d7e9
--- /dev/null
+++ b/app-emulation/vmware-modules/files/279-3.13-00-vmnet.patch
@@ -0,0 +1,36 @@
+--- work/vmnet-only/filter.c   2013-08-27 20:29:04.0 +0100
 patched/vmnet-only/filter.c   2014-01-26 01:09:05.184893854 +
+@@ -27,6 +27,7 @@
+ #include "compat_module.h"
+ #include 
+ #include 
++#include 
+ #if COMPAT_LINUX_VERSION_CHECK_LT(3, 2, 0)
+ #   include 
+ #else
+@@ -203,7 +204,11 @@
+ #endif
+
+ static unsigned int
++#if LINUX_VERSION_CODE < KERNEL_VERSION(3, 13, 0)
+ VNetFilterHookFn(unsigned int hooknum, // IN:
++#else
++VNetFilterHookFn(const struct nf_hook_ops *ops,// IN:
++#endif
+ #ifdef VMW_NFHOOK_USES_SKB
+  struct sk_buff *skb,  // IN:
+ #else
+@@ -252,7 +257,12 @@
+
+/* When the host transmits, hooknum is VMW_NF_INET_POST_ROUTING. */
+/* When the host receives, hooknum is VMW_NF_INET_LOCAL_IN. */
+-   transmit = (hooknum == VMW_NF_INET_POST_ROUTING);
++
++   #if LINUX_VERSION_CODE < KERNEL_VERSION(3, 13, 0)
++  transmit = (hooknum == VMW_NF_INET_POST_ROUTING);
++   #else
++  transmit = (ops->hooknum == VMW_NF_INET_POST_ROUTING);
++   #endif
+
+packetHeader = compat_skb_network_header(skb);
+ip = (struct iphdr*)packetHeader;

diff --git a/app-emulation/vmware-modules/vmware-modules-279.2-r1.ebuild 
b/app-emulation/vmware-modules/vmware-modules-279.2-r1.ebuild
index 1212ca8..cd4419a 100644
--- a/app-emulation/vmware-modules/vmware-modules-279.2-r1.ebuild
+++ b/app-emulation/vmware-modules/vmware-modules-279.2-r1.ebuild
@@ -90,6 +90,7 @@ src_prepare() {
kernel_is ge 3 10 0 && epatch 
"${FILESDIR}/${PV_MAJOR}-3.10-05-hub.patch"

kernel_is ge 3 11 0 && epatch "${FILESDIR}/${PV_MAJOR}-filldir.patch"
+   kernel_is ge 3 13 0 && epatch 
"${FILESDIR}/${PV_MAJOR}-3.13-00-vmnet.patch"
 
 
# Allow user patches so they can support RC kernels and whatever else



[gentoo-commits] proj/vmware:master commit in: app-emulation/vmware-modules/, app-emulation/vmware-modules/files/

2014-10-11 Thread Evan Teran
commit: 195bd13fb5abc21ec6c31396b0a7018df192796d
Author: Evan Teran  gmail  com>
AuthorDate: Sat Oct 11 15:51:14 2014 +
Commit: Evan Teran  gmail  com>
CommitDate: Sat Oct 11 15:51:14 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/vmware.git;a=commit;h=195bd13f

now compiles on 3.17.0 :-)

---
 app-emulation/vmware-modules/files/279-3.17-00-netdev.patch | 12 
 app-emulation/vmware-modules/vmware-modules-279.2-r1.ebuild |  1 +
 2 files changed, 13 insertions(+)

diff --git a/app-emulation/vmware-modules/files/279-3.17-00-netdev.patch 
b/app-emulation/vmware-modules/files/279-3.17-00-netdev.patch
new file mode 100644
index 000..fbe1741
--- /dev/null
+++ b/app-emulation/vmware-modules/files/279-3.17-00-netdev.patch
@@ -0,0 +1,12 @@
+diff -rupN vmnet-only/netif.c vmnet-only.new/netif.c
+--- vmnet-only/netif.c 2013-11-06 00:40:52.0 -0500
 vmnet-only.new/netif.c 2014-10-09 17:29:12.361307961 -0400
+@@ -149,7 +149,7 @@ VNetNetIf_Create(char *devName,  // IN:
+memcpy(deviceName, devName, sizeof deviceName);
+NULL_TERMINATE_STRING(deviceName);
+ 
+-   dev = alloc_netdev(sizeof *netIf, deviceName, VNetNetIfSetup);
++   dev = alloc_netdev(sizeof *netIf, deviceName, NET_NAME_UNKNOWN, 
VNetNetIfSetup);
+if (!dev) {
+   retval = -ENOMEM;
+   goto out;

diff --git a/app-emulation/vmware-modules/vmware-modules-279.2-r1.ebuild 
b/app-emulation/vmware-modules/vmware-modules-279.2-r1.ebuild
index e5875a7..d6cc8ea 100644
--- a/app-emulation/vmware-modules/vmware-modules-279.2-r1.ebuild
+++ b/app-emulation/vmware-modules/vmware-modules-279.2-r1.ebuild
@@ -94,6 +94,7 @@ src_prepare() {
kernel_is ge 3 13 0 && epatch 
"${FILESDIR}/${PV_MAJOR}-3.13-00-vmnet.patch"
kernel_is ge 3 15 0 && epatch 
"${FILESDIR}/${PV_MAJOR}-3.15-00-readlink.patch"
kernel_is ge 3 15 0 && epatch 
"${FILESDIR}/${PV_MAJOR}-3.15-01-vsock.patch"
+   kernel_is ge 3 17 0 && epatch 
"${FILESDIR}/${PV_MAJOR}-3.17-00-netdev.patch"
 
# Allow user patches so they can support RC kernels and whatever else
epatch_user



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

2014-10-11 Thread Tobias Klausmann (klausman)
klausman14/10/11 15:53:34

  Modified: ChangeLog package.use.mask
  Log:
  Mask net-misc/spice-gtk smartcard USE flag to avoid qemu dependency.

Revision  ChangesPath
1.201profiles/arch/alpha/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/alpha/ChangeLog?rev=1.201&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/alpha/ChangeLog?rev=1.201&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/alpha/ChangeLog?r1=1.200&r2=1.201

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/alpha/ChangeLog,v
retrieving revision 1.200
retrieving revision 1.201
diff -u -r1.200 -r1.201
--- ChangeLog   5 Oct 2014 12:33:58 -   1.200
+++ ChangeLog   11 Oct 2014 15:53:34 -  1.201
@@ -1,6 +1,9 @@
 # ChangeLog for Gentoo/Alpha profile directory
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/alpha/ChangeLog,v 1.200 
2014/10/05 12:33:58 eva Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/alpha/ChangeLog,v 1.201 
2014/10/11 15:53:34 klausman Exp $
+
+  11 Oct 2014; Tobias Klausmann  package.use.mask:
+  Mask net-misc/spice-gtk smartcard USE flag to avoid qemu dependency.
 
   05 Oct 2014; Gilles Dartiguelongue  package.use.mask:
   Add use.mask for app-accessibility/orca due to missing keywords, bug #524352.



1.165profiles/arch/alpha/package.use.mask

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/alpha/package.use.mask?rev=1.165&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/alpha/package.use.mask?rev=1.165&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/alpha/package.use.mask?r1=1.164&r2=1.165

Index: package.use.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/alpha/package.use.mask,v
retrieving revision 1.164
retrieving revision 1.165
diff -u -r1.164 -r1.165
--- package.use.mask5 Oct 2014 12:33:58 -   1.164
+++ package.use.mask11 Oct 2014 15:53:34 -  1.165
@@ -1,8 +1,13 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/alpha/package.use.mask,v 
1.164 2014/10/05 12:33:58 eva Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/alpha/package.use.mask,v 
1.165 2014/10/11 15:53:34 klausman Exp $
 
-# Gilles Dartiguelongue  (05 Oct 2014
+# Tobias Klausmann  (11 Oct 2014)
+# app-emulation/qemu is not keyworded on alpha, masking flag that triggers
+# dependency
+net-misc/spice-gtk smartcard
+
+# Gilles Dartiguelongue  (05 Oct 2014)
 # Missing keyword on app-accessibility/brltty
 app-accessibility/orca braille
 






[gentoo-commits] proj/vmware:master commit in: app-emulation/vmware-modules/, app-emulation/vmware-modules/files/

2014-10-11 Thread Evan Teran
commit: 86a9b9c8758c45e519653a5652a7869cd990ffc8
Author: Evan Teran  gmail  com>
AuthorDate: Sat Oct 11 15:48:56 2014 +
Commit: Evan Teran  gmail  com>
CommitDate: Sat Oct 11 15:48:56 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/vmware.git;a=commit;h=86a9b9c8

compiles on 3.16.0

---
 .../files/279-3.15-00-readlink.patch   | 12 ++
 .../vmware-modules/files/279-3.15-01-vsock.patch   | 43 ++
 .../vmware-modules/vmware-modules-279.2-r1.ebuild  |  3 +-
 3 files changed, 57 insertions(+), 1 deletion(-)

diff --git a/app-emulation/vmware-modules/files/279-3.15-00-readlink.patch 
b/app-emulation/vmware-modules/files/279-3.15-00-readlink.patch
new file mode 100644
index 000..36be37f
--- /dev/null
+++ b/app-emulation/vmware-modules/files/279-3.15-00-readlink.patch
@@ -0,0 +1,12 @@
+diff -rupN vmblock-only/linux/inode.c vmblock-only/linux/inode.c
+--- vmblock-only/linux/inode.c 2014-10-05 23:20:14.545218357 -0400
 vmblock-only/linux/inode.c 2014-10-05 23:33:01.549259933 -0400
+@@ -178,7 +178,7 @@ InodeOpReadlink(struct dentry *dentry,
+   return -EINVAL;
+}
+ 
+-   return vfs_readlink(dentry, buffer, buflen, iinfo->name);
++   return readlink_copy(buffer, buflen, iinfo->name);
+ }
+ 
+ 

diff --git a/app-emulation/vmware-modules/files/279-3.15-01-vsock.patch 
b/app-emulation/vmware-modules/files/279-3.15-01-vsock.patch
new file mode 100644
index 000..a880a75
--- /dev/null
+++ b/app-emulation/vmware-modules/files/279-3.15-01-vsock.patch
@@ -0,0 +1,43 @@
+diff -rupN vsock-only/linux/notify.c vsock-only.new/linux/notify.c
+--- vsock-only/linux/notify.c  2013-11-05 23:33:27.0 -0500
 vsock-only.new/linux/notify.c  2014-10-05 23:46:47.943304728 -0400
+@@ -515,8 +515,11 @@ VSockVmciHandleWrote(struct sock *sk,
+vsk = vsock_sk(sk);
+PKT_FIELD(vsk, sentWaitingRead) = FALSE;
+ #endif
+-
++#if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 15, 0)
++   sk->sk_data_ready(sk);
++#else
+sk->sk_data_ready(sk, 0);
++#endif
+ }
+ 
+ 
+diff -rupN vsock-only/linux/notifyQState.c vsock-only.new/linux/notifyQState.c
+--- vsock-only/linux/notifyQState.c2013-11-05 23:33:27.0 -0500
 vsock-only.new/linux/notifyQState.c2014-10-05 23:46:33.231303931 
-0400
+@@ -164,7 +164,11 @@ VSockVmciHandleWrote(struct sock *sk,
+  struct sockaddr_vm *dst,// IN: unused
+  struct sockaddr_vm *src)// IN: unused
+ {
++#if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 15, 0)
++   sk->sk_data_ready(sk);
++#else
+sk->sk_data_ready(sk, 0);
++#endif
+ }
+ 
+ 
+@@ -566,7 +570,11 @@ VSockVmciNotifyPktRecvPostDequeue(struct
+   }
+ 
+   /* See the comment in VSockVmciNotifyPktSendPostEnqueue */
++#if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 15, 0)
++  sk->sk_data_ready(sk);
++#else
+   sk->sk_data_ready(sk, 0);
++#endif
+}
+ 
+return err;

diff --git a/app-emulation/vmware-modules/vmware-modules-279.2-r1.ebuild 
b/app-emulation/vmware-modules/vmware-modules-279.2-r1.ebuild
index 131d93a..e5875a7 100644
--- a/app-emulation/vmware-modules/vmware-modules-279.2-r1.ebuild
+++ b/app-emulation/vmware-modules/vmware-modules-279.2-r1.ebuild
@@ -92,7 +92,8 @@ src_prepare() {

kernel_is ge 3 11 0 && epatch "${FILESDIR}/${PV_MAJOR}-filldir.patch"
kernel_is ge 3 13 0 && epatch 
"${FILESDIR}/${PV_MAJOR}-3.13-00-vmnet.patch"
-
+   kernel_is ge 3 15 0 && epatch 
"${FILESDIR}/${PV_MAJOR}-3.15-00-readlink.patch"
+   kernel_is ge 3 15 0 && epatch 
"${FILESDIR}/${PV_MAJOR}-3.15-01-vsock.patch"
 
# Allow user patches so they can support RC kernels and whatever else
epatch_user



[gentoo-commits] proj/vmware:master commit in: app-emulation/vmware-modules/, app-emulation/vmware-modules/files/

2014-10-11 Thread Evan Teran
commit: 8435434eab0fc7c5d08581822ebda283458578c1
Author: Evan Teran  gmail  com>
AuthorDate: Sat Oct 11 15:40:41 2014 +
Commit: Evan Teran  gmail  com>
CommitDate: Sat Oct 11 15:40:41 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/vmware.git;a=commit;h=8435434e

adding vmware-modules-279.2-r1, (workstation 10) which compiles cleanrly on 
3.10.0, 3.11.0 and 3.12.0

---
 .../vmware-modules/files/279-3.10-00-userns.patch  |  37 +++
 .../vmware-modules/files/279-3.10-01-getname.patch |  19 
 .../files/279-3.10-02-unused-typedef.patch | 112 
 .../vmware-modules/files/279-3.10-03-dentry.patch  |  30 ++
 .../vmware-modules/files/279-3.10-04-inode.patch   |  31 ++
 .../vmware-modules/files/279-3.10-05-hub.patch |  21 
 app-emulation/vmware-modules/files/279-apic.patch  |  12 +++
 .../vmware-modules/files/279-filldir.patch |  91 +
 .../vmware-modules/files/279-hardened.patch| 113 +
 .../files/279-makefile-include.patch   |  65 
 .../files/279-makefile-kernel-dir.patch|  85 
 .../vmware-modules/files/279-netdevice.patch   |  24 +
 .../vmware-modules/files/279-putname.patch |  13 +++
 .../vmware-modules/files/279-vmblock.patch |  23 +
 .../vmware-modules/vmware-modules-279.2-r1.ebuild  | 109 
 15 files changed, 785 insertions(+)

diff --git a/app-emulation/vmware-modules/files/279-3.10-00-userns.patch 
b/app-emulation/vmware-modules/files/279-3.10-00-userns.patch
new file mode 100644
index 000..c960b78
--- /dev/null
+++ b/app-emulation/vmware-modules/files/279-3.10-00-userns.patch
@@ -0,0 +1,37 @@
+--- a/vmblock-only/linux/inode.c   2013-03-20 17:37:48.0 +0100
 b/vmblock-only/linux/inode.c   2013-03-20 17:41:22.0 +0100
+@@ -135,7 +135,8 @@
+inode->i_size = INODE_TO_IINFO(inode)->nameLen;
+inode->i_version = 1;
+inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
+-   inode->i_uid = inode->i_gid = 0;
++   inode->i_uid = GLOBAL_ROOT_UID;
++   inode->i_gid = GLOBAL_ROOT_GID;
+inode->i_op = &LinkInodeOps;
+ 
+d_add(dentry, inode);
+
+--- a/vmci-only/linux/driver.c2013-03-20 17:57:35.0 +0100
 b/vmci-only/linux/driver.c2013-03-20 17:57:43.0 +0100
+@@ -740,7 +740,7 @@
+  goto init_release;
+   }
+ 
+-  user = current_uid();
++  user = from_kuid(current_user_ns(), current_uid());
+   retval = VMCIContext_InitContext(initBlock.cid, initBlock.flags,
+0 /* Unused */, vmciLinux->userVersion,
+&user, &vmciLinux->context);
+
+--- a/vsock-only/linux/af_vsock.c 2013-03-20 18:01:48.0 +0100
 b/vsock-only/linux/af_vsock.c 2013-03-20 18:01:58.0 +0100
+@@ -2866,7 +2866,7 @@
+   vsk->connectTimeout = psk->connectTimeout;
+} else {
+   vsk->trusted = capable(CAP_NET_ADMIN);
+-  vsk->owner = current_uid();
++  vsk->owner = from_kuid(current_user_ns(), current_uid());
+   vsk->queuePairSize = VSOCK_DEFAULT_QP_SIZE;
+   vsk->queuePairMinSize = VSOCK_DEFAULT_QP_SIZE_MIN;
+   vsk->queuePairMaxSize = VSOCK_DEFAULT_QP_SIZE_MAX;
+

diff --git a/app-emulation/vmware-modules/files/279-3.10-01-getname.patch 
b/app-emulation/vmware-modules/files/279-3.10-01-getname.patch
new file mode 100644
index 000..7bcf536
--- /dev/null
+++ b/app-emulation/vmware-modules/files/279-3.10-01-getname.patch
@@ -0,0 +1,19 @@
+--- vmblock-only/linux/control.c   2014-03-15 15:28:40.871076076 +0100
 vmblock-only/linux/control.c.new   2014-03-15 15:29:15.079074439 +0100
+@@ -279,11 +279,17 @@
+int i;
+int retval;
+ 
+-   name = getname(buf);
++   name = __getname();
+if (IS_ERR(name)) {
+   return PTR_ERR(name);
+}
+ 
++   i = strncpy_from_user(name, buf, PATH_MAX);
++   if (i < 0 || i == PATH_MAX) {
++  __putname(name);
++  return -EINVAL;
++   }
++
+for (i = strlen(name) - 1; i >= 0 && name[i] == '/'; i--) {

diff --git 
a/app-emulation/vmware-modules/files/279-3.10-02-unused-typedef.patch 
b/app-emulation/vmware-modules/files/279-3.10-02-unused-typedef.patch
new file mode 100644
index 000..d030110
--- /dev/null
+++ b/app-emulation/vmware-modules/files/279-3.10-02-unused-typedef.patch
@@ -0,0 +1,112 @@
+--- vmblock-only/shared/vm_assert.h2014-10-07 22:43:39.519402467 -0400
 vmblock-only/shared/vm_assert.h2014-10-07 22:48:01.346409957 -0400
+@@ -317,7 +317,7 @@ EXTERN void WarningThrottled(uint32 *cou
+ #define ASSERT_ON_COMPILE(e) \
+do { \
+   enum { AssertOnCompileMisused = ((e) ? 1 : -1) }; \
+-  typedef char AssertOnCompileFailed[AssertOnCompileMisused]; \
++  __attribute__((unused)) typedef char 
AssertOnCompileFailed[AssertOnCompileMisused]; \
+} while (0)
+ 
+ 
+--- vmci-only/shared/vm_assert.h   2014-10-07 22:43

[gentoo-commits] proj/vmware:master commit in: app-emulation/vmware-modules/files/, app-emulation/vmware-modules/

2014-10-11 Thread Evan Teran
commit: 87ec4f2abfca54db62bfa89450aa1c55a2e5d9b5
Author: Evan Teran  gmail  com>
AuthorDate: Sat Oct 11 15:47:01 2014 +
Commit: Evan Teran  gmail  com>
CommitDate: Sat Oct 11 15:47:01 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/vmware.git;a=commit;h=87ec4f2a

build on 3.14.0

---
 .../files/279-3.10-03-deprecated.patch | 85 ++
 ...10-03-dentry.patch => 279-3.10-04-dentry.patch} |  0
 ...3.10-04-inode.patch => 279-3.10-05-inode.patch} |  0
 .../vmware-modules/vmware-modules-279.2-r1.ebuild  |  5 +-
 4 files changed, 88 insertions(+), 2 deletions(-)

diff --git a/app-emulation/vmware-modules/files/279-3.10-03-deprecated.patch 
b/app-emulation/vmware-modules/files/279-3.10-03-deprecated.patch
new file mode 100644
index 000..3a9f785
--- /dev/null
+++ b/app-emulation/vmware-modules/files/279-3.10-03-deprecated.patch
@@ -0,0 +1,85 @@
+diff -rupN vmblock-only/shared/vm_assert.h vmblock-only.new/shared/vm_assert.h
+--- vmblock-only/shared/vm_assert.h2014-10-09 21:50:54.221159088 -0400
 vmblock-only.new/shared/vm_assert.h2014-10-09 21:53:04.612166156 
-0400
+@@ -237,11 +237,13 @@ EXTERN void WarningThrottled(uint32 *cou
+ #define LOG_ONCE(_s) DO_ONCE(Log _s)
+ 
+ #ifdef VMX86_DEVEL
++   #undef DEPRECATED
+#define DEPRECATED(_fix) DO_ONCE(\
+Warning("%s:%d: %s is DEPRECATED; %s\n", \
+   __FILE__, __LINE__, __FUNCTION__, \
+   _fix))
+ #else
++   #undef DEPRECATED
+#define DEPRECATED(_fix) do {} while (0)
+ #endif
+ 
+diff -rupN vmci-only/shared/vm_assert.h vmci-only.new/shared/vm_assert.h
+--- vmci-only/shared/vm_assert.h   2014-10-09 21:50:54.222159088 -0400
 vmci-only.new/shared/vm_assert.h   2014-10-09 21:52:52.348165492 -0400
+@@ -237,11 +237,13 @@ EXTERN void WarningThrottled(uint32 *cou
+ #define LOG_ONCE(_s) DO_ONCE(Log _s)
+ 
+ #ifdef VMX86_DEVEL
++   #undef DEPRECATED
+#define DEPRECATED(_fix) DO_ONCE(\
+Warning("%s:%d: %s is DEPRECATED; %s\n", \
+   __FILE__, __LINE__, __FUNCTION__, \
+   _fix))
+ #else
++   #undef DEPRECATED
+#define DEPRECATED(_fix) do {} while (0)
+ #endif
+ 
+diff -rupN vmmon-only/include/vm_assert.h vmmon-only.new/include/vm_assert.h
+--- vmmon-only/include/vm_assert.h 2014-10-09 21:50:54.222159088 -0400
 vmmon-only.new/include/vm_assert.h 2014-10-09 21:52:36.877164653 -0400
+@@ -237,11 +237,13 @@ EXTERN void WarningThrottled(uint32 *cou
+ #define LOG_ONCE(_s) DO_ONCE(Log _s)
+ 
+ #ifdef VMX86_DEVEL
++   #undef DEPRECATED
+#define DEPRECATED(_fix) DO_ONCE(\
+Warning("%s:%d: %s is DEPRECATED; %s\n", \
+   __FILE__, __LINE__, __FUNCTION__, \
+   _fix))
+ #else
++   #undef DEPRECATED
+#define DEPRECATED(_fix) do {} while (0)
+ #endif
+ 
+diff -rupN vmnet-only/vm_assert.h vmnet-only.new/vm_assert.h
+--- vmnet-only/vm_assert.h 2014-10-09 21:50:54.222159088 -0400
 vmnet-only.new/vm_assert.h 2014-10-09 21:52:57.736165784 -0400
+@@ -237,11 +237,13 @@ EXTERN void WarningThrottled(uint32 *cou
+ #define LOG_ONCE(_s) DO_ONCE(Log _s)
+ 
+ #ifdef VMX86_DEVEL
++   #undef DEPRECATED
+#define DEPRECATED(_fix) DO_ONCE(\
+Warning("%s:%d: %s is DEPRECATED; %s\n", \
+   __FILE__, __LINE__, __FUNCTION__, \
+   _fix))
+ #else
++   #undef DEPRECATED
+#define DEPRECATED(_fix) do {} while (0)
+ #endif
+ 
+diff -rupN vsock-only/shared/vm_assert.h vsock-only.new/shared/vm_assert.h
+--- vsock-only/shared/vm_assert.h  2014-10-09 21:50:54.222159088 -0400
 vsock-only.new/shared/vm_assert.h  2014-10-09 21:52:45.352165112 -0400
+@@ -237,11 +237,13 @@ EXTERN void WarningThrottled(uint32 *cou
+ #define LOG_ONCE(_s) DO_ONCE(Log _s)
+ 
+ #ifdef VMX86_DEVEL
++   #undef DEPRECATED
+#define DEPRECATED(_fix) DO_ONCE(\
+Warning("%s:%d: %s is DEPRECATED; %s\n", \
+   __FILE__, __LINE__, __FUNCTION__, \
+   _fix))
+ #else
++   #undef DEPRECATED
+#define DEPRECATED(_fix) do {} while (0)
+ #endif
+ 

diff --git a/app-emulation/vmware-modules/files/279-3.10-03-dentry.patch 
b/app-emulation/vmware-modules/files/279-3.10-04-dentry.patch
similarity index 100%
rename from app-emulation/vmware-modules/files/279-3.10-03-dentry.patch
rename to app-emulation/vmware-modules/files/279-3.10-04-dentry.patch

diff --git 

[gentoo-commits] gentoo-x86 commit in dev-util/scons: scons-2.3.2.ebuild ChangeLog

2014-10-11 Thread Ian Delaney (idella4)
idella4 14/10/11 15:50:58

  Modified: scons-2.3.2.ebuild ChangeLog
  Log:
  bump
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0xB8072B0D)

Revision  ChangesPath
1.2  dev-util/scons/scons-2.3.2.ebuild

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

Index: scons-2.3.2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-util/scons/scons-2.3.2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- scons-2.3.2.ebuild  9 Jul 2014 08:15:04 -   1.1
+++ scons-2.3.2.ebuild  11 Oct 2014 15:50:57 -  1.2
@@ -1,9 +1,9 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/scons/scons-2.3.2.ebuild,v 1.1 
2014/07/09 08:15:04 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/scons/scons-2.3.2.ebuild,v 1.2 
2014/10/11 15:50:57 idella4 Exp $
 
 EAPI=5
-PYTHON_COMPAT=( python{2_6,2_7} )
+PYTHON_COMPAT=( python2_7 pypy )
 PYTHON_REQ_USE="threads(+)"
 
 inherit distutils-r1
@@ -19,11 +19,9 @@
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
 IUSE="doc"
 
-python_prepare_all() {
-   local PATCHES=(
-   "${FILESDIR}/${PN}-2.1.0-jython.patch"
-   )
+PATCHES=( "${FILESDIR}/${PN}-2.1.0-jython.patch" )
 
+python_prepare_all() {
# https://bugs.gentoo.org/show_bug.cgi?id=361061
sed -i -e 
"s|/usr/local/bin:/opt/bin:/bin:/usr/bin|${EPREFIX}/usr/local/bin:${EPREFIX}/opt/bin:${EPREFIX}/bin:${EPREFIX}/usr/bin:/usr/local/bin:/opt/bin:/bin:/usr/bin|g"
 engine/SCons/Platform/posix.py || die
# and make sure the build system doesn't "force" /usr/local/ :(



1.153dev-util/scons/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/scons/ChangeLog?rev=1.153&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/scons/ChangeLog?rev=1.153&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/scons/ChangeLog?r1=1.152&r2=1.153

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-util/scons/ChangeLog,v
retrieving revision 1.152
retrieving revision 1.153
diff -u -r1.152 -r1.153
--- ChangeLog   9 Jul 2014 08:15:04 -   1.152
+++ ChangeLog   11 Oct 2014 15:50:57 -  1.153
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/scons
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/scons/ChangeLog,v 1.152 2014/07/09 
08:15:04 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/scons/ChangeLog,v 1.153 2014/10/11 
15:50:57 idella4 Exp $
+
+  11 Oct 2014; Ian Delaney  scons-2.3.2.ebuild:
+  bump
 
 *scons-2.3.2 (09 Jul 2014)
 






[gentoo-commits] gentoo-x86 commit in dev-python/pyhamcrest: ChangeLog metadata.xml pyhamcrest-1.8.1.ebuild

2014-10-11 Thread Alex Brandt (alunduil)
alunduil14/10/11 15:39:46

  Added:ChangeLog metadata.xml pyhamcrest-1.8.1.ebuild
  Log:
  add ebuild for pyhamcrest—dependence for fig
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with 
key 11A8217C!)

Revision  ChangesPath
1.1  dev-python/pyhamcrest/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyhamcrest/ChangeLog?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyhamcrest/ChangeLog?rev=1.1&content-type=text/plain

Index: ChangeLog
===
# ChangeLog for dev-python/pyhamcrest
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pyhamcrest/ChangeLog,v 1.1 
2014/10/11 15:39:46 alunduil Exp $

*pyhamcrest-1.8.1 (11 Oct 2014)

  11 Oct 2014; Alex Brandt  +pyhamcrest-1.8.1.ebuild,
  +metadata.xml:
  add ebuild written by me




1.1  dev-python/pyhamcrest/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyhamcrest/metadata.xml?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyhamcrest/metadata.xml?rev=1.1&content-type=text/plain

Index: metadata.xml
===

http://www.gentoo.org/dtd/metadata.dtd";>


alund...@gentoo.org
Alex Brandt




Enable optional dependence on 
dev-python/numpy





1.1  dev-python/pyhamcrest/pyhamcrest-1.8.1.ebuild

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

Index: pyhamcrest-1.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-python/pyhamcrest/pyhamcrest-1.8.1.ebuild,v 1.1 
2014/10/11 15:39:46 alunduil Exp $

EAPI=5
PYTHON_COMPAT=( python2_7 python3_3 python3_4 pypy )

inherit distutils-r1

MY_PN="PyHamcrest"

DESCRIPTION="Hamcrest framework for matcher objects"
HOMEPAGE="https://github.com/hamcrest/PyHamcrest";
SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"

S="${WORKDIR}/${MY_PN}-${PV}"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64"
IUSE="doc examples numpy test"

CDEPEND="$(python_gen_cond_dep 'numpy? ( dev-python/numpy[${PYTHON_USEDEP}] )' 
'python*')"
DEPEND="
doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
test? (
${CDEPEND}
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/six[${PYTHON_USEDEP}]
)
"
RDEPEND="${CDEPEND}"

python_compile_all() {
use doc && emake -C doc html
}

python_test() {
py.test -v || die "Tests failed under ${EPYTHON}"
}

python_install_all() {
use doc && local HTML_DOCS=( doc/_build/html/. )
use examples && local EXAMPLES=( examples/. )

distutils-r1_python_install_all
}






[gentoo-commits] gentoo-x86 commit in dev-python/pyhamcrest: - New directory

2014-10-11 Thread Alex Brandt (alunduil)
alunduil14/10/11 15:37:06

  Log:
  Directory /var/cvsroot/gentoo-x86/dev-python/pyhamcrest added to the 
repository



[gentoo-commits] gentoo-x86 commit in net-libs/webkit-gtk: webkit-gtk-2.4.6-r200.ebuild webkit-gtk-2.4.6.ebuild ChangeLog

2014-10-11 Thread Pacho Ramos (pacho)
pacho   14/10/11 14:48:43

  Modified: webkit-gtk-2.4.6-r200.ebuild
webkit-gtk-2.4.6.ebuild ChangeLog
  Log:
  Fix building with USE -gstreamer, bug #524518 by Xavier Miller, Lars Wendler 
(Polynomial-C), Michael Weber
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 
A188FBD4)

Revision  ChangesPath
1.3  net-libs/webkit-gtk/webkit-gtk-2.4.6-r200.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-2.4.6-r200.ebuild?rev=1.3&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-2.4.6-r200.ebuild?rev=1.3&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-2.4.6-r200.ebuild?r1=1.2&r2=1.3

Index: webkit-gtk-2.4.6-r200.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-2.4.6-r200.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- webkit-gtk-2.4.6-r200.ebuild5 Oct 2014 11:08:44 -   1.2
+++ webkit-gtk-2.4.6-r200.ebuild11 Oct 2014 14:48:43 -  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/net-libs/webkit-gtk/webkit-gtk-2.4.6-r200.ebuild,v 1.2 
2014/10/05 11:08:44 pacho Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-2.4.6-r200.ebuild,v 1.3 
2014/10/11 14:48:43 pacho Exp $
 
 EAPI="5"
 GCONF_DEBUG="no"
@@ -178,6 +178,10 @@
 
epatch "${FILESDIR}"/${PN}-2.4.4-jpeg-9a.patch #481688
 
+   # Fix building with USE -gstreamer, bug #524518
+   # https://bugs.webkit.org/show_bug.cgi?id=137445
+   epatch "${FILESDIR}"/${PN}-2.4.6-gstreamer-check.patch
+
AT_M4DIR=Source/autotools eautoreconf
 
gnome2_src_prepare



1.3  net-libs/webkit-gtk/webkit-gtk-2.4.6.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-2.4.6.ebuild?rev=1.3&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-2.4.6.ebuild?rev=1.3&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-2.4.6.ebuild?r1=1.2&r2=1.3

Index: webkit-gtk-2.4.6.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-2.4.6.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- webkit-gtk-2.4.6.ebuild 5 Oct 2014 11:08:44 -   1.2
+++ webkit-gtk-2.4.6.ebuild 11 Oct 2014 14:48:43 -  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/net-libs/webkit-gtk/webkit-gtk-2.4.6.ebuild,v 1.2 
2014/10/05 11:08:44 pacho Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-2.4.6.ebuild,v 1.3 
2014/10/11 14:48:43 pacho Exp $
 
 EAPI="5"
 GCONF_DEBUG="no"
@@ -188,6 +188,10 @@
 
epatch "${FILESDIR}"/${PN}-2.4.4-jpeg-9a.patch #481688
 
+   # Fix building with USE -gstreamer, bug #524518
+   # https://bugs.webkit.org/show_bug.cgi?id=137445
+   epatch "${FILESDIR}"/${PN}-2.4.6-gstreamer-check.patch
+
AT_M4DIR=Source/autotools eautoreconf
 
gnome2_src_prepare



1.286net-libs/webkit-gtk/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/webkit-gtk/ChangeLog?rev=1.286&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/webkit-gtk/ChangeLog?rev=1.286&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/webkit-gtk/ChangeLog?r1=1.285&r2=1.286

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/ChangeLog,v
retrieving revision 1.285
retrieving revision 1.286
diff -u -r1.285 -r1.286
--- ChangeLog   11 Oct 2014 11:50:48 -  1.285
+++ ChangeLog   11 Oct 2014 14:48:43 -  1.286
@@ -1,6 +1,12 @@
 # ChangeLog for net-libs/webkit-gtk
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/ChangeLog,v 1.285 
2014/10/11 11:50:48 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/ChangeLog,v 1.286 
2014/10/11 14:48:43 pacho Exp $
+
+  11 Oct 2014; Pacho Ramos 
+  +files/webkit-gtk-2.4.6-gstreamer-check.patch, webkit-gtk-2.4.6-r200.ebuild,
+  webkit-gtk-2.4.6.ebuild:
+  Fix building with USE -gstreamer, bug #524518 by Xavier Miller, Lars Wendler
+  (Polynomial-C), Michael Weber
 
   11 Oct 2014; Pacho Ramos  webkit-gtk-2.4.4-r1.ebuild,
   webkit-gtk-2.4.4-r201.ebuild:






[gentoo-commits] gentoo-x86 commit in net-libs/webkit-gtk/files: webkit-gtk-2.4.6-gstreamer-check.patch

2014-10-11 Thread Pacho Ramos (pacho)
pacho   14/10/11 14:48:43

  Added:webkit-gtk-2.4.6-gstreamer-check.patch
  Log:
  Fix building with USE -gstreamer, bug #524518 by Xavier Miller, Lars Wendler 
(Polynomial-C), Michael Weber
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 
A188FBD4)

Revision  ChangesPath
1.1  
net-libs/webkit-gtk/files/webkit-gtk-2.4.6-gstreamer-check.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/webkit-gtk/files/webkit-gtk-2.4.6-gstreamer-check.patch?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/webkit-gtk/files/webkit-gtk-2.4.6-gstreamer-check.patch?rev=1.1&content-type=text/plain

Index: webkit-gtk-2.4.6-gstreamer-check.patch
===
--- webkitgtk-2.4.6/Source/autotools/SetupWebKitFeatures.m4
+++ webkitgtk-2.4.6/Source/autotools/SetupWebKitFeatures.m4
@@ -24,9 +24,9 @@
 fi
 
 if test "$enable_video" = "yes"; then
-CONFIGURABLE_FEATURE_DEFINES="$CONFIGURABLE_FEATURE_DEFINES ENABLE_VIDEO=1"
+CONFIGURABLE_FEATURE_DEFINES="$CONFIGURABLE_FEATURE_DEFINES ENABLE_VIDEO=1 
ENABLE_VIDEO_TRACK=1"
 else
-CONFIGURABLE_FEATURE_DEFINES="$CONFIGURABLE_FEATURE_DEFINES ENABLE_VIDEO=0"
+CONFIGURABLE_FEATURE_DEFINES="$CONFIGURABLE_FEATURE_DEFINES ENABLE_VIDEO=0 
ENABLE_VIDEO_TRACK=0"
 fi
 
 if test "$enable_css_filters" = "yes"; then
@@ -171,7 +171,6 @@
 ENABLE_TOUCH_ICON_LOADING=0 \
 ENABLE_USER_TIMING=0 \
 ENABLE_VIBRATION=0 \
-ENABLE_VIDEO_TRACK=1 \
 ENABLE_VIEW_MODE_CSS_MEDIA=1 \
 ENABLE_WEB_SOCKETS=1 \
 ENABLE_WEB_TIMING=1 \






[gentoo-commits] gentoo-x86 commit in app-misc/tmux: ChangeLog tmux-1.9a.ebuild

2014-10-11 Thread Tobias Klausmann (klausman)
klausman14/10/11 14:00:58

  Modified: ChangeLog tmux-1.9a.ebuild
  Log:
  Stable on alpha, bug 512640
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with 
key CE5D54E8)

Revision  ChangesPath
1.112app-misc/tmux/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/tmux/ChangeLog?rev=1.112&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/tmux/ChangeLog?rev=1.112&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/tmux/ChangeLog?r1=1.111&r2=1.112

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-misc/tmux/ChangeLog,v
retrieving revision 1.111
retrieving revision 1.112
diff -u -r1.111 -r1.112
--- ChangeLog   10 Aug 2014 17:43:26 -  1.111
+++ ChangeLog   11 Oct 2014 14:00:58 -  1.112
@@ -1,6 +1,9 @@
 # ChangeLog for app-misc/tmux
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/tmux/ChangeLog,v 1.111 2014/08/10 
17:43:26 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/tmux/ChangeLog,v 1.112 2014/10/11 
14:00:58 klausman Exp $
+
+  11 Oct 2014; Tobias Klausmann  tmux-1.9a.ebuild:
+  Stable on alpha, bug 512640
 
   10 Aug 2014; Agostino Sarubbo  tmux-1.9a.ebuild:
   Stable for ia64, wrt bug #512640



1.10 app-misc/tmux/tmux-1.9a.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/tmux/tmux-1.9a.ebuild?rev=1.10&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/tmux/tmux-1.9a.ebuild?rev=1.10&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/tmux/tmux-1.9a.ebuild?r1=1.9&r2=1.10

Index: tmux-1.9a.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-misc/tmux/tmux-1.9a.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- tmux-1.9a.ebuild10 Aug 2014 17:43:26 -  1.9
+++ tmux-1.9a.ebuild11 Oct 2014 14:00:58 -  1.10
@@ -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/app-misc/tmux/tmux-1.9a.ebuild,v 1.9 
2014/08/10 17:43:26 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/tmux/tmux-1.9a.ebuild,v 1.10 
2014/10/11 14:00:58 klausman Exp $
 
 EAPI=5
 AUTOTOOLS_AUTORECONF=true
@@ -13,7 +13,7 @@
 
 LICENSE="ISC"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd ~x64-freebsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd ~x64-freebsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos"
 IUSE="debug selinux vim-syntax"
 
 COMMON_DEPEND="






[gentoo-commits] gentoo-x86 commit in app-misc/geoclue: geoclue-2.1.9.ebuild ChangeLog

2014-10-11 Thread Markus Meier (maekke)
maekke  14/10/11 13:47:00

  Modified: geoclue-2.1.9.ebuild ChangeLog
  Log:
  arm stable, bug #512012
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, RepoMan options: 
--include-arches="arm", signed Manifest commit with key 072AD062)

Revision  ChangesPath
1.4  app-misc/geoclue/geoclue-2.1.9.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/geoclue/geoclue-2.1.9.ebuild?rev=1.4&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/geoclue/geoclue-2.1.9.ebuild?rev=1.4&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/geoclue/geoclue-2.1.9.ebuild?r1=1.3&r2=1.4

Index: geoclue-2.1.9.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-misc/geoclue/geoclue-2.1.9.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- geoclue-2.1.9.ebuild23 Jul 2014 15:13:23 -  1.3
+++ geoclue-2.1.9.ebuild11 Oct 2014 13:47:00 -  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/app-misc/geoclue/geoclue-2.1.9.ebuild,v 1.3 
2014/07/23 15:13:23 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/geoclue/geoclue-2.1.9.ebuild,v 1.4 
2014/10/11 13:47:00 maekke Exp $
 
 EAPI="5"
 GCONF_DEBUG="no"
@@ -14,7 +14,7 @@
 
 LICENSE="LGPL-2"
 SLOT="2.0"
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 ~amd64-fbsd"
+KEYWORDS="~alpha amd64 arm ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 ~amd64-fbsd"
 IUSE="+modemmanager"
 
 RDEPEND="



1.38 app-misc/geoclue/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/geoclue/ChangeLog?rev=1.38&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/geoclue/ChangeLog?rev=1.38&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/geoclue/ChangeLog?r1=1.37&r2=1.38

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-misc/geoclue/ChangeLog,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -r1.37 -r1.38
--- ChangeLog   9 Oct 2014 09:19:14 -   1.37
+++ ChangeLog   11 Oct 2014 13:47:00 -  1.38
@@ -1,6 +1,9 @@
 # ChangeLog for app-misc/geoclue
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/geoclue/ChangeLog,v 1.37 
2014/10/09 09:19:14 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/geoclue/ChangeLog,v 1.38 
2014/10/11 13:47:00 maekke Exp $
+
+  11 Oct 2014; Markus Meier  geoclue-2.1.9.ebuild:
+  arm stable, bug #512012
 
 *geoclue-2.1.10 (09 Oct 2014)
 






[gentoo-commits] gentoo-x86 commit in media-plugins/gst-plugins-resindvd: ChangeLog gst-plugins-resindvd-0.10.23-r1.ebuild

2014-10-11 Thread Markus Meier (maekke)
maekke  14/10/11 13:46:23

  Modified: ChangeLog gst-plugins-resindvd-0.10.23-r1.ebuild
  Log:
  arm stable, bug #512012
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, RepoMan options: 
--include-arches="arm", signed Manifest commit with key 072AD062)

Revision  ChangesPath
1.90 media-plugins/gst-plugins-resindvd/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/gst-plugins-resindvd/ChangeLog?rev=1.90&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/gst-plugins-resindvd/ChangeLog?rev=1.90&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/gst-plugins-resindvd/ChangeLog?r1=1.89&r2=1.90

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-resindvd/ChangeLog,v
retrieving revision 1.89
retrieving revision 1.90
diff -u -r1.89 -r1.90
--- ChangeLog   15 Sep 2014 08:22:45 -  1.89
+++ ChangeLog   11 Oct 2014 13:46:23 -  1.90
@@ -1,6 +1,10 @@
 # ChangeLog for media-plugins/gst-plugins-resindvd
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: 
/var/cvsroot/gentoo-x86/media-plugins/gst-plugins-resindvd/ChangeLog,v 1.89 
2014/09/15 08:22:45 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/media-plugins/gst-plugins-resindvd/ChangeLog,v 1.90 
2014/10/11 13:46:23 maekke Exp $
+
+  11 Oct 2014; Markus Meier 
+  gst-plugins-resindvd-0.10.23-r1.ebuild:
+  arm stable, bug #512012
 
   15 Sep 2014; Agostino Sarubbo 
   gst-plugins-resindvd-0.10.23-r1.ebuild, gst-plugins-resindvd-1.2.4-r1.ebuild:



1.10 
media-plugins/gst-plugins-resindvd/gst-plugins-resindvd-0.10.23-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/gst-plugins-resindvd/gst-plugins-resindvd-0.10.23-r1.ebuild?rev=1.10&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/gst-plugins-resindvd/gst-plugins-resindvd-0.10.23-r1.ebuild?rev=1.10&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/gst-plugins-resindvd/gst-plugins-resindvd-0.10.23-r1.ebuild?r1=1.9&r2=1.10

Index: gst-plugins-resindvd-0.10.23-r1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/media-plugins/gst-plugins-resindvd/gst-plugins-resindvd-0.10.23-r1.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- gst-plugins-resindvd-0.10.23-r1.ebuild  15 Sep 2014 08:22:45 -  
1.9
+++ gst-plugins-resindvd-0.10.23-r1.ebuild  11 Oct 2014 13:46:23 -  
1.10
@@ -1,13 +1,13 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/media-plugins/gst-plugins-resindvd/gst-plugins-resindvd-0.10.23-r1.ebuild,v
 1.9 2014/09/15 08:22:45 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/media-plugins/gst-plugins-resindvd/gst-plugins-resindvd-0.10.23-r1.ebuild,v
 1.10 2014/10/11 13:46:23 maekke Exp $
 
 EAPI="5"
 
 GST_ORG_MODULE=gst-plugins-bad
 inherit gstreamer
 
-KEYWORDS="alpha amd64 ~arm hppa ~ia64 ppc ppc64 sparc x86 ~amd64-fbsd"
+KEYWORDS="alpha amd64 arm hppa ~ia64 ppc ppc64 sparc x86 ~amd64-fbsd"
 IUSE=""
 
 RDEPEND="






[gentoo-commits] gentoo-x86 commit in dev-libs/json-glib: json-glib-1.0.2.ebuild ChangeLog

2014-10-11 Thread Markus Meier (maekke)
maekke  14/10/11 13:45:52

  Modified: json-glib-1.0.2.ebuild ChangeLog
  Log:
  arm stable, bug #512012
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, RepoMan options: 
--include-arches="arm", signed Manifest commit with key 072AD062)

Revision  ChangesPath
1.10 dev-libs/json-glib/json-glib-1.0.2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/json-glib/json-glib-1.0.2.ebuild?rev=1.10&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/json-glib/json-glib-1.0.2.ebuild?rev=1.10&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/json-glib/json-glib-1.0.2.ebuild?r1=1.9&r2=1.10

Index: json-glib-1.0.2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/json-glib/json-glib-1.0.2.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- json-glib-1.0.2.ebuild  15 Sep 2014 08:18:29 -  1.9
+++ json-glib-1.0.2.ebuild  11 Oct 2014 13:45:52 -  1.10
@@ -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/json-glib/json-glib-1.0.2.ebuild,v 
1.9 2014/09/15 08:18:29 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/json-glib/json-glib-1.0.2.ebuild,v 
1.10 2014/10/11 13:45:52 maekke Exp $
 
 EAPI="5"
 GCONF_DEBUG="no"
@@ -12,7 +12,7 @@
 
 LICENSE="LGPL-2.1+"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 ~s390 sparc x86 
~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 sparc x86 
~amd64-fbsd ~x86-fbsd"
 IUSE="debug +introspection"
 
 RDEPEND="



1.73 dev-libs/json-glib/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/json-glib/ChangeLog?rev=1.73&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/json-glib/ChangeLog?rev=1.73&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/json-glib/ChangeLog?r1=1.72&r2=1.73

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/json-glib/ChangeLog,v
retrieving revision 1.72
retrieving revision 1.73
diff -u -r1.72 -r1.73
--- ChangeLog   15 Sep 2014 08:18:29 -  1.72
+++ ChangeLog   11 Oct 2014 13:45:52 -  1.73
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/json-glib
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/json-glib/ChangeLog,v 1.72 
2014/09/15 08:18:29 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/json-glib/ChangeLog,v 1.73 
2014/10/11 13:45:52 maekke Exp $
+
+  11 Oct 2014; Markus Meier  json-glib-1.0.2.ebuild:
+  arm stable, bug #512012
 
   15 Sep 2014; Agostino Sarubbo  json-glib-1.0.2.ebuild:
   Stable for sparc, wrt bug #512012






[gentoo-commits] gentoo-x86 commit in media-libs/libpostproc: ChangeLog libpostproc-10.20140517-r1.ebuild

2014-10-11 Thread Markus Meier (maekke)
maekke  14/10/11 13:45:22

  Modified: ChangeLog libpostproc-10.20140517-r1.ebuild
  Log:
  arm stable, bug #512012
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, RepoMan options: 
--include-arches="arm", signed Manifest commit with key 072AD062)

Revision  ChangesPath
1.33 media-libs/libpostproc/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libpostproc/ChangeLog?rev=1.33&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libpostproc/ChangeLog?rev=1.33&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libpostproc/ChangeLog?r1=1.32&r2=1.33

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/libpostproc/ChangeLog,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- ChangeLog   25 Aug 2014 11:00:07 -  1.32
+++ ChangeLog   11 Oct 2014 13:45:22 -  1.33
@@ -1,6 +1,10 @@
 # ChangeLog for media-libs/libpostproc
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libpostproc/ChangeLog,v 1.32 
2014/08/25 11:00:07 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libpostproc/ChangeLog,v 1.33 
2014/10/11 13:45:22 maekke Exp $
+
+  11 Oct 2014; Markus Meier 
+  libpostproc-10.20140517-r1.ebuild:
+  arm stable, bug #512012
 
   25 Aug 2014; Agostino Sarubbo 
   libpostproc-10.20140517-r1.ebuild:



1.8  media-libs/libpostproc/libpostproc-10.20140517-r1.ebuild

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

Index: libpostproc-10.20140517-r1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/media-libs/libpostproc/libpostproc-10.20140517-r1.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- libpostproc-10.20140517-r1.ebuild   25 Aug 2014 11:00:07 -  1.7
+++ libpostproc-10.20140517-r1.ebuild   11 Oct 2014 13:45:22 -  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/media-libs/libpostproc/libpostproc-10.20140517-r1.ebuild,v
 1.7 2014/08/25 11:00:07 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/media-libs/libpostproc/libpostproc-10.20140517-r1.ebuild,v
 1.8 2014/10/11 13:45:22 maekke Exp $
 
 EAPI="5"
 
@@ -25,7 +25,7 @@
 LICENSE="GPL-2"
 SLOT="0"
 if [ "${PV#}" = "${PV}" ] ; then
-   KEYWORDS="alpha amd64 ~arm ~hppa ~ia64 ppc ppc64 ~sparc x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux"
+   KEYWORDS="alpha amd64 arm ~hppa ~ia64 ppc ppc64 ~sparc x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux"
 fi
 IUSE="pic static-libs"
 






[gentoo-commits] gentoo-x86 commit in media-libs/harfbuzz: ChangeLog harfbuzz-0.9.28.ebuild

2014-10-11 Thread Markus Meier (maekke)
maekke  14/10/11 13:44:52

  Modified: ChangeLog harfbuzz-0.9.28.ebuild
  Log:
  arm stable, bug #512012
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, RepoMan options: 
--include-arches="arm", signed Manifest commit with key 072AD062)

Revision  ChangesPath
1.89 media-libs/harfbuzz/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/harfbuzz/ChangeLog?rev=1.89&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/harfbuzz/ChangeLog?rev=1.89&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/harfbuzz/ChangeLog?r1=1.88&r2=1.89

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/harfbuzz/ChangeLog,v
retrieving revision 1.88
retrieving revision 1.89
diff -u -r1.88 -r1.89
--- ChangeLog   15 Sep 2014 08:21:07 -  1.88
+++ ChangeLog   11 Oct 2014 13:44:52 -  1.89
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/harfbuzz
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/harfbuzz/ChangeLog,v 1.88 
2014/09/15 08:21:07 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/harfbuzz/ChangeLog,v 1.89 
2014/10/11 13:44:52 maekke Exp $
+
+  11 Oct 2014; Markus Meier  harfbuzz-0.9.28.ebuild:
+  arm stable, bug #512012
 
   15 Sep 2014; Agostino Sarubbo  harfbuzz-0.9.28.ebuild:
   Stable for sparc, wrt bug #512012



1.13 media-libs/harfbuzz/harfbuzz-0.9.28.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/harfbuzz/harfbuzz-0.9.28.ebuild?rev=1.13&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/harfbuzz/harfbuzz-0.9.28.ebuild?rev=1.13&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/harfbuzz/harfbuzz-0.9.28.ebuild?r1=1.12&r2=1.13

Index: harfbuzz-0.9.28.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/harfbuzz/harfbuzz-0.9.28.ebuild,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- harfbuzz-0.9.28.ebuild  15 Sep 2014 08:21:07 -  1.12
+++ harfbuzz-0.9.28.ebuild  11 Oct 2014 13:44:52 -  1.13
@@ -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/harfbuzz/harfbuzz-0.9.28.ebuild,v 1.12 
2014/09/15 08:21:07 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/media-libs/harfbuzz/harfbuzz-0.9.28.ebuild,v 1.13 
2014/10/11 13:44:52 maekke Exp $
 
 EAPI=5
 
@@ -18,7 +18,7 @@
 LICENSE="Old-MIT ISC icu"
 SLOT="0/0.9.18" # 0.9.18 introduced the harfbuzz-icu split; bug #472416
 [[ ${PV} ==  ]] || \
-KEYWORDS="alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~x64-macos ~x86-macos 
~x64-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~x64-macos ~x86-macos 
~x64-solaris"
 IUSE="+cairo +glib +graphite icu +introspection static-libs test +truetype"
 REQUIRED_USE="introspection? ( glib )"
 






[gentoo-commits] gentoo-x86 commit in media-gfx/graphite2: graphite2-1.2.4-r1.ebuild ChangeLog

2014-10-11 Thread Markus Meier (maekke)
maekke  14/10/11 13:44:20

  Modified: graphite2-1.2.4-r1.ebuild ChangeLog
  Log:
  arm stable, bug #512012
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, RepoMan options: 
--include-arches="arm", signed Manifest commit with key 072AD062)

Revision  ChangesPath
1.11 media-gfx/graphite2/graphite2-1.2.4-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/graphite2/graphite2-1.2.4-r1.ebuild?rev=1.11&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/graphite2/graphite2-1.2.4-r1.ebuild?rev=1.11&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/graphite2/graphite2-1.2.4-r1.ebuild?r1=1.10&r2=1.11

Index: graphite2-1.2.4-r1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/media-gfx/graphite2/graphite2-1.2.4-r1.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- graphite2-1.2.4-r1.ebuild   15 Sep 2014 08:20:46 -  1.10
+++ graphite2-1.2.4-r1.ebuild   11 Oct 2014 13:44:20 -  1.11
@@ -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-gfx/graphite2/graphite2-1.2.4-r1.ebuild,v 1.10 
2014/09/15 08:20:46 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/media-gfx/graphite2/graphite2-1.2.4-r1.ebuild,v 1.11 
2014/10/11 13:44:20 maekke Exp $
 
 EAPI=5
 
@@ -15,7 +15,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~x64-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~x64-solaris"
 IUSE="perl test"
 
 RDEPEND="



1.75 media-gfx/graphite2/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/graphite2/ChangeLog?rev=1.75&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/graphite2/ChangeLog?rev=1.75&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/graphite2/ChangeLog?r1=1.74&r2=1.75

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-gfx/graphite2/ChangeLog,v
retrieving revision 1.74
retrieving revision 1.75
diff -u -r1.74 -r1.75
--- ChangeLog   15 Sep 2014 08:20:46 -  1.74
+++ ChangeLog   11 Oct 2014 13:44:20 -  1.75
@@ -1,6 +1,9 @@
 # ChangeLog for media-gfx/graphite2
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/graphite2/ChangeLog,v 1.74 
2014/09/15 08:20:46 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/graphite2/ChangeLog,v 1.75 
2014/10/11 13:44:20 maekke Exp $
+
+  11 Oct 2014; Markus Meier  graphite2-1.2.4-r1.ebuild:
+  arm stable, bug #512012
 
   15 Sep 2014; Agostino Sarubbo  graphite2-1.2.4-r1.ebuild:
   Stable for sparc, wrt bug #512012






[gentoo-commits] gentoo-x86 commit in media-libs/libshout: ChangeLog libshout-2.3.1-r1.ebuild

2014-10-11 Thread Markus Meier (maekke)
maekke  14/10/11 13:42:56

  Modified: ChangeLog libshout-2.3.1-r1.ebuild
  Log:
  arm stable, bug #512012
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, RepoMan options: 
--include-arches="arm", signed Manifest commit with key 072AD062)

Revision  ChangesPath
1.60 media-libs/libshout/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libshout/ChangeLog?rev=1.60&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libshout/ChangeLog?rev=1.60&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libshout/ChangeLog?r1=1.59&r2=1.60

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/libshout/ChangeLog,v
retrieving revision 1.59
retrieving revision 1.60
diff -u -r1.59 -r1.60
--- ChangeLog   15 Sep 2014 08:21:37 -  1.59
+++ ChangeLog   11 Oct 2014 13:42:56 -  1.60
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/libshout
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libshout/ChangeLog,v 1.59 
2014/09/15 08:21:37 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libshout/ChangeLog,v 1.60 
2014/10/11 13:42:56 maekke Exp $
+
+  11 Oct 2014; Markus Meier  libshout-2.3.1-r1.ebuild:
+  arm stable, bug #512012
 
   15 Sep 2014; Agostino Sarubbo  libshout-2.3.1-r1.ebuild:
   Stable for sparc, wrt bug #512012



1.13 media-libs/libshout/libshout-2.3.1-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libshout/libshout-2.3.1-r1.ebuild?rev=1.13&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libshout/libshout-2.3.1-r1.ebuild?rev=1.13&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libshout/libshout-2.3.1-r1.ebuild?r1=1.12&r2=1.13

Index: libshout-2.3.1-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/libshout/libshout-2.3.1-r1.ebuild,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- libshout-2.3.1-r1.ebuild15 Sep 2014 08:21:37 -  1.12
+++ libshout-2.3.1-r1.ebuild11 Oct 2014 13:42:56 -  1.13
@@ -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/libshout/libshout-2.3.1-r1.ebuild,v 1.12 
2014/09/15 08:21:37 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/media-libs/libshout/libshout-2.3.1-r1.ebuild,v 1.13 
2014/10/11 13:42:56 maekke Exp $
 
 EAPI=5
 inherit autotools eutils multilib-minimal
@@ -11,7 +11,7 @@
 
 LICENSE="LGPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm hppa ia64 ppc ppc64 ~sh sparc x86 ~amd64-fbsd 
~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 ~sh sparc x86 ~amd64-fbsd 
~x86-fbsd"
 IUSE="speex static-libs theora"
 
 RDEPEND=">=media-libs/libogg-1.3.0[${MULTILIB_USEDEP}]






[gentoo-commits] gentoo-x86 commit in media-libs/libvisual: ChangeLog libvisual-0.4.0-r3.ebuild

2014-10-11 Thread Markus Meier (maekke)
maekke  14/10/11 13:41:56

  Modified: ChangeLog libvisual-0.4.0-r3.ebuild
  Log:
  arm stable, bug #512012
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, RepoMan options: 
--include-arches="arm", signed Manifest commit with key 072AD062)

Revision  ChangesPath
1.59 media-libs/libvisual/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvisual/ChangeLog?rev=1.59&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvisual/ChangeLog?rev=1.59&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvisual/ChangeLog?r1=1.58&r2=1.59

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/libvisual/ChangeLog,v
retrieving revision 1.58
retrieving revision 1.59
diff -u -r1.58 -r1.59
--- ChangeLog   15 Sep 2014 08:21:41 -  1.58
+++ ChangeLog   11 Oct 2014 13:41:56 -  1.59
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/libvisual
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libvisual/ChangeLog,v 1.58 
2014/09/15 08:21:41 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libvisual/ChangeLog,v 1.59 
2014/10/11 13:41:56 maekke Exp $
+
+  11 Oct 2014; Markus Meier  libvisual-0.4.0-r3.ebuild:
+  arm stable, bug #512012
 
   15 Sep 2014; Agostino Sarubbo  libvisual-0.4.0-r3.ebuild:
   Stable for sparc, wrt bug #512012



1.10 media-libs/libvisual/libvisual-0.4.0-r3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvisual/libvisual-0.4.0-r3.ebuild?rev=1.10&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvisual/libvisual-0.4.0-r3.ebuild?rev=1.10&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvisual/libvisual-0.4.0-r3.ebuild?r1=1.9&r2=1.10

Index: libvisual-0.4.0-r3.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/media-libs/libvisual/libvisual-0.4.0-r3.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- libvisual-0.4.0-r3.ebuild   15 Sep 2014 08:21:41 -  1.9
+++ libvisual-0.4.0-r3.ebuild   11 Oct 2014 13:41:56 -  1.10
@@ -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/libvisual/libvisual-0.4.0-r3.ebuild,v 1.9 
2014/09/15 08:21:41 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/media-libs/libvisual/libvisual-0.4.0-r3.ebuild,v 1.10 
2014/10/11 13:41:56 maekke Exp $
 
 EAPI=5
 
@@ -15,7 +15,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="0.4"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 sparc x86 ~amd64-fbsd 
~x86-fbsd"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 sparc x86 ~amd64-fbsd 
~x86-fbsd"
 IUSE="debug nls static-libs threads"
 
 RDEPEND="abi_x86_32? ( !<=app-emulation/emul-linux-x86-medialibs-20130224-r9






[gentoo-commits] gentoo-x86 commit in media-plugins/libvisual-plugins: libvisual-plugins-0.4.0-r3.ebuild ChangeLog

2014-10-11 Thread Markus Meier (maekke)
maekke  14/10/11 13:42:26

  Modified: libvisual-plugins-0.4.0-r3.ebuild ChangeLog
  Log:
  arm stable, bug #512012
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, RepoMan options: 
--include-arches="arm", signed Manifest commit with key 072AD062)

Revision  ChangesPath
1.9  
media-plugins/libvisual-plugins/libvisual-plugins-0.4.0-r3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/libvisual-plugins/libvisual-plugins-0.4.0-r3.ebuild?rev=1.9&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/libvisual-plugins/libvisual-plugins-0.4.0-r3.ebuild?rev=1.9&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/libvisual-plugins/libvisual-plugins-0.4.0-r3.ebuild?r1=1.8&r2=1.9

Index: libvisual-plugins-0.4.0-r3.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/media-plugins/libvisual-plugins/libvisual-plugins-0.4.0-r3.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- libvisual-plugins-0.4.0-r3.ebuild   15 Sep 2014 08:23:13 -  1.8
+++ libvisual-plugins-0.4.0-r3.ebuild   11 Oct 2014 13:42:26 -  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/media-plugins/libvisual-plugins/libvisual-plugins-0.4.0-r3.ebuild,v
 1.8 2014/09/15 08:23:13 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/media-plugins/libvisual-plugins/libvisual-plugins-0.4.0-r3.ebuild,v
 1.9 2014/10/11 13:42:26 maekke Exp $
 
 EAPI=5
 inherit autotools eutils multilib-minimal
@@ -15,7 +15,7 @@
 
 LICENSE="GPL-2"
 SLOT="0.4"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 sparc x86 ~amd64-fbsd 
~x86-fbsd"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 sparc x86 ~amd64-fbsd 
~x86-fbsd"
 IUSE="alsa debug gtk jack mplayer opengl"
 
 RDEPEND=">=media-libs/fontconfig-2.10.92[${MULTILIB_USEDEP}]



1.70 media-plugins/libvisual-plugins/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/libvisual-plugins/ChangeLog?rev=1.70&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/libvisual-plugins/ChangeLog?rev=1.70&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/libvisual-plugins/ChangeLog?r1=1.69&r2=1.70

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-plugins/libvisual-plugins/ChangeLog,v
retrieving revision 1.69
retrieving revision 1.70
diff -u -r1.69 -r1.70
--- ChangeLog   15 Sep 2014 08:23:13 -  1.69
+++ ChangeLog   11 Oct 2014 13:42:26 -  1.70
@@ -1,6 +1,10 @@
 # ChangeLog for media-plugins/libvisual-plugins
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-plugins/libvisual-plugins/ChangeLog,v 
1.69 2014/09/15 08:23:13 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-plugins/libvisual-plugins/ChangeLog,v 
1.70 2014/10/11 13:42:26 maekke Exp $
+
+  11 Oct 2014; Markus Meier 
+  libvisual-plugins-0.4.0-r3.ebuild:
+  arm stable, bug #512012
 
   15 Sep 2014; Agostino Sarubbo 
   libvisual-plugins-0.4.0-r3.ebuild:






[gentoo-commits] gentoo-x86 commit in media-libs/gd: ChangeLog gd-2.0.35-r4.ebuild

2014-10-11 Thread Markus Meier (maekke)
maekke  14/10/11 13:40:08

  Modified: ChangeLog gd-2.0.35-r4.ebuild
  Log:
  arm stable, bug #512012
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, RepoMan options: 
--include-arches="arm", signed Manifest commit with key 072AD062)

Revision  ChangesPath
1.103media-libs/gd/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gd/ChangeLog?rev=1.103&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gd/ChangeLog?rev=1.103&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gd/ChangeLog?r1=1.102&r2=1.103

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/gd/ChangeLog,v
retrieving revision 1.102
retrieving revision 1.103
diff -u -r1.102 -r1.103
--- ChangeLog   15 Sep 2014 08:20:50 -  1.102
+++ ChangeLog   11 Oct 2014 13:40:08 -  1.103
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/gd
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/gd/ChangeLog,v 1.102 2014/09/15 
08:20:50 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/gd/ChangeLog,v 1.103 2014/10/11 
13:40:08 maekke Exp $
+
+  11 Oct 2014; Markus Meier  gd-2.0.35-r4.ebuild:
+  arm stable, bug #512012
 
   15 Sep 2014; Agostino Sarubbo  gd-2.0.35-r4.ebuild:
   Stable for sparc, wrt bug #512012



1.15 media-libs/gd/gd-2.0.35-r4.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gd/gd-2.0.35-r4.ebuild?rev=1.15&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gd/gd-2.0.35-r4.ebuild?rev=1.15&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gd/gd-2.0.35-r4.ebuild?r1=1.14&r2=1.15

Index: gd-2.0.35-r4.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/gd/gd-2.0.35-r4.ebuild,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- gd-2.0.35-r4.ebuild 15 Sep 2014 08:20:50 -  1.14
+++ gd-2.0.35-r4.ebuild 11 Oct 2014 13:40:08 -  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/media-libs/gd/gd-2.0.35-r4.ebuild,v 1.14 
2014/09/15 08:20:50 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/gd/gd-2.0.35-r4.ebuild,v 1.15 
2014/10/11 13:40:08 maekke Exp $
 
 EAPI="5"
 
@@ -12,7 +12,7 @@
 
 LICENSE="gd IJG HPND BSD"
 SLOT="2"
-KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
 IUSE="fontconfig jpeg png static-libs truetype xpm zlib"
 
 #fontconfig has prefixed font paths, details see bug #518970






[gentoo-commits] gentoo-x86 commit in dev-python/bsddb3: ChangeLog bsddb3-6.0.1.ebuild

2014-10-11 Thread Markus Meier (maekke)
maekke  14/10/11 13:39:36

  Modified: ChangeLog bsddb3-6.0.1.ebuild
  Log:
  arm stable, bug #512012
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, RepoMan options: 
--include-arches="arm", signed Manifest commit with key 072AD062)

Revision  ChangesPath
1.119dev-python/bsddb3/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/bsddb3/ChangeLog?rev=1.119&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/bsddb3/ChangeLog?rev=1.119&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/bsddb3/ChangeLog?r1=1.118&r2=1.119

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/bsddb3/ChangeLog,v
retrieving revision 1.118
retrieving revision 1.119
diff -u -r1.118 -r1.119
--- ChangeLog   15 Sep 2014 08:18:54 -  1.118
+++ ChangeLog   11 Oct 2014 13:39:36 -  1.119
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/bsddb3
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/bsddb3/ChangeLog,v 1.118 
2014/09/15 08:18:54 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/bsddb3/ChangeLog,v 1.119 
2014/10/11 13:39:36 maekke Exp $
+
+  11 Oct 2014; Markus Meier  bsddb3-6.0.1.ebuild:
+  arm stable, bug #512012
 
   15 Sep 2014; Agostino Sarubbo  bsddb3-6.0.1.ebuild:
   Stable for sparc, wrt bug #512012



1.13 dev-python/bsddb3/bsddb3-6.0.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/bsddb3/bsddb3-6.0.1.ebuild?rev=1.13&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/bsddb3/bsddb3-6.0.1.ebuild?rev=1.13&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/bsddb3/bsddb3-6.0.1.ebuild?r1=1.12&r2=1.13

Index: bsddb3-6.0.1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/bsddb3/bsddb3-6.0.1.ebuild,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- bsddb3-6.0.1.ebuild 15 Sep 2014 08:18:54 -  1.12
+++ bsddb3-6.0.1.ebuild 11 Oct 2014 13:39:36 -  1.13
@@ -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/bsddb3/bsddb3-6.0.1.ebuild,v 
1.12 2014/09/15 08:18:54 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/bsddb3/bsddb3-6.0.1.ebuild,v 
1.13 2014/10/11 13:39:36 maekke Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3,3_4} )
@@ -13,7 +13,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm hppa ia64 ppc ppc64 sparc x86 ~amd64-linux 
~x86-linux"
+KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~amd64-linux 
~x86-linux"
 IUSE="doc"
 
 RDEPEND=">=sys-libs/db-4.8.30






[gentoo-commits] gentoo-x86 commit in sys-libs/tevent: ChangeLog tevent-0.9.21-r1.ebuild

2014-10-11 Thread Markus Meier (maekke)
maekke  14/10/11 13:38:57

  Modified: ChangeLog tevent-0.9.21-r1.ebuild
  Log:
  arm stable, bug #512012
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, RepoMan options: 
--include-arches="arm", signed Manifest commit with key 072AD062)

Revision  ChangesPath
1.72 sys-libs/tevent/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-libs/tevent/ChangeLog,v
retrieving revision 1.71
retrieving revision 1.72
diff -u -r1.71 -r1.72
--- ChangeLog   3 Oct 2014 21:02:14 -   1.71
+++ ChangeLog   11 Oct 2014 13:38:57 -  1.72
@@ -1,6 +1,9 @@
 # ChangeLog for sys-libs/tevent
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/tevent/ChangeLog,v 1.71 2014/10/03 
21:02:14 polynomial-c Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/tevent/ChangeLog,v 1.72 2014/10/11 
13:38:57 maekke Exp $
+
+  11 Oct 2014; Markus Meier  tevent-0.9.21-r1.ebuild:
+  arm stable, bug #512012
 
 *tevent-0.9.22 (03 Oct 2014)
 



1.13 sys-libs/tevent/tevent-0.9.21-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/tevent/tevent-0.9.21-r1.ebuild?rev=1.13&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/tevent/tevent-0.9.21-r1.ebuild?rev=1.13&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/tevent/tevent-0.9.21-r1.ebuild?r1=1.12&r2=1.13

Index: tevent-0.9.21-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-libs/tevent/tevent-0.9.21-r1.ebuild,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- tevent-0.9.21-r1.ebuild 15 Sep 2014 08:24:20 -  1.12
+++ tevent-0.9.21-r1.ebuild 11 Oct 2014 13:38:57 -  1.13
@@ -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/tevent/tevent-0.9.21-r1.ebuild,v 
1.12 2014/09/15 08:24:20 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/tevent/tevent-0.9.21-r1.ebuild,v 
1.13 2014/10/11 13:38:57 maekke Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python2_{6,7} )
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~x86-fbsd ~arm-linux ~x86-linux"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~x86-fbsd ~arm-linux ~x86-linux"
 IUSE="python"
 
 RDEPEND=">=sys-libs/talloc-2.1.0[python?,${MULTILIB_USEDEP}]






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

2014-10-11 Thread Markus Meier (maekke)
maekke  14/10/11 13:37:57

  Modified: ChangeLog libev-4.15-r1.ebuild
  Log:
  arm stable, bug #512012
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, RepoMan options: 
--include-arches="arm", signed Manifest commit with key 072AD062)

Revision  ChangesPath
1.75 dev-libs/libev/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libev/ChangeLog?rev=1.75&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libev/ChangeLog?rev=1.75&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libev/ChangeLog?r1=1.74&r2=1.75

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libev/ChangeLog,v
retrieving revision 1.74
retrieving revision 1.75
diff -u -r1.74 -r1.75
--- ChangeLog   15 Sep 2014 08:18:33 -  1.74
+++ ChangeLog   11 Oct 2014 13:37:57 -  1.75
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/libev
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libev/ChangeLog,v 1.74 2014/09/15 
08:18:33 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libev/ChangeLog,v 1.75 2014/10/11 
13:37:57 maekke Exp $
+
+  11 Oct 2014; Markus Meier  libev-4.15-r1.ebuild:
+  arm stable, bug #512012
 
   15 Sep 2014; Agostino Sarubbo  libev-4.15-r1.ebuild:
   Stable for sparc, wrt bug #512012



1.10 dev-libs/libev/libev-4.15-r1.ebuild

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

Index: libev-4.15-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libev/libev-4.15-r1.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- libev-4.15-r1.ebuild15 Sep 2014 08:18:33 -  1.9
+++ libev-4.15-r1.ebuild11 Oct 2014 13:37:57 -  1.10
@@ -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/libev/libev-4.15-r1.ebuild,v 1.9 
2014/09/15 08:18:33 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libev/libev-4.15-r1.ebuild,v 1.10 
2014/10/11 13:37:57 maekke Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE="|| ( BSD GPL-2 )"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos 
~x86-macos"
+KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos 
~x86-macos"
 IUSE="elibc_glibc static-libs"
 
 # Bug #283558






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

2014-10-11 Thread Markus Meier (maekke)
maekke  14/10/11 13:38:27

  Modified: ChangeLog libevent-2.0.21-r1.ebuild
  Log:
  arm stable, bug #512012
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, RepoMan options: 
--include-arches="arm", signed Manifest commit with key 072AD062)

Revision  ChangesPath
1.279dev-libs/libevent/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libevent/ChangeLog?rev=1.279&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libevent/ChangeLog?rev=1.279&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libevent/ChangeLog?r1=1.278&r2=1.279

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libevent/ChangeLog,v
retrieving revision 1.278
retrieving revision 1.279
diff -u -r1.278 -r1.279
--- ChangeLog   15 Sep 2014 08:18:35 -  1.278
+++ ChangeLog   11 Oct 2014 13:38:27 -  1.279
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/libevent
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libevent/ChangeLog,v 1.278 
2014/09/15 08:18:35 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libevent/ChangeLog,v 1.279 
2014/10/11 13:38:27 maekke Exp $
+
+  11 Oct 2014; Markus Meier  libevent-2.0.21-r1.ebuild:
+  arm stable, bug #512012
 
   15 Sep 2014; Agostino Sarubbo  libevent-2.0.21-r1.ebuild:
   Stable for sparc, wrt bug #512012



1.12 dev-libs/libevent/libevent-2.0.21-r1.ebuild

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

Index: libevent-2.0.21-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libevent/libevent-2.0.21-r1.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- libevent-2.0.21-r1.ebuild   15 Sep 2014 08:18:35 -  1.11
+++ libevent-2.0.21-r1.ebuild   11 Oct 2014 13:38:27 -  1.12
@@ -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/libevent/libevent-2.0.21-r1.ebuild,v 1.11 
2014/09/15 08:18:35 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-libs/libevent/libevent-2.0.21-r1.ebuild,v 1.12 
2014/10/11 13:38:27 maekke Exp $
 
 EAPI=5
 inherit eutils libtool multilib-minimal
@@ -13,7 +13,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris 
~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris 
~x86-solaris"
 IUSE="+ssl static-libs test +threads"
 
 DEPEND="ssl? ( >=dev-libs/openssl-1.0.1h-r2[${MULTILIB_USEDEP}] )"






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

2014-10-11 Thread Markus Meier (maekke)
maekke  14/10/11 13:37:20

  Modified: ChangeLog libverto-0.2.5-r1.ebuild
  Log:
  arm stable, bug #512012
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, RepoMan options: 
--include-arches="arm", signed Manifest commit with key 072AD062)

Revision  ChangesPath
1.37 dev-libs/libverto/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libverto/ChangeLog?rev=1.37&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libverto/ChangeLog?rev=1.37&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libverto/ChangeLog?r1=1.36&r2=1.37

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libverto/ChangeLog,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -r1.36 -r1.37
--- ChangeLog   15 Sep 2014 08:18:39 -  1.36
+++ ChangeLog   11 Oct 2014 13:37:20 -  1.37
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/libverto
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libverto/ChangeLog,v 1.36 
2014/09/15 08:18:39 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libverto/ChangeLog,v 1.37 
2014/10/11 13:37:20 maekke Exp $
+
+  11 Oct 2014; Markus Meier  libverto-0.2.5-r1.ebuild:
+  arm stable, bug #512012
 
   15 Sep 2014; Agostino Sarubbo  libverto-0.2.5-r1.ebuild:
   Stable for sparc, wrt bug #512012



1.13 dev-libs/libverto/libverto-0.2.5-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libverto/libverto-0.2.5-r1.ebuild?rev=1.13&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libverto/libverto-0.2.5-r1.ebuild?rev=1.13&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libverto/libverto-0.2.5-r1.ebuild?r1=1.12&r2=1.13

Index: libverto-0.2.5-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libverto/libverto-0.2.5-r1.ebuild,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- libverto-0.2.5-r1.ebuild15 Sep 2014 08:18:39 -  1.12
+++ libverto-0.2.5-r1.ebuild11 Oct 2014 13:37:20 -  1.13
@@ -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/libverto/libverto-0.2.5-r1.ebuild,v 1.12 
2014/09/15 08:18:39 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-libs/libverto/libverto-0.2.5-r1.ebuild,v 1.13 
2014/10/11 13:37:20 maekke Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd"
 IUSE="glib +libev libevent tevent +threads static-libs"
 
 # file collisions






[gentoo-commits] gentoo-x86 commit in gnome-base/orbit: orbit-2.14.19-r4.ebuild ChangeLog

2014-10-11 Thread Markus Meier (maekke)
maekke  14/10/11 13:35:50

  Modified: orbit-2.14.19-r4.ebuild ChangeLog
  Log:
  arm stable, bug #512012
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, RepoMan options: 
--include-arches="arm", signed Manifest commit with key 072AD062)

Revision  ChangesPath
1.9  gnome-base/orbit/orbit-2.14.19-r4.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/orbit/orbit-2.14.19-r4.ebuild?rev=1.9&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/orbit/orbit-2.14.19-r4.ebuild?rev=1.9&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/orbit/orbit-2.14.19-r4.ebuild?r1=1.8&r2=1.9

Index: orbit-2.14.19-r4.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/gnome-base/orbit/orbit-2.14.19-r4.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- orbit-2.14.19-r4.ebuild 15 Sep 2014 08:20:36 -  1.8
+++ orbit-2.14.19-r4.ebuild 11 Oct 2014 13:35:50 -  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/gnome-base/orbit/orbit-2.14.19-r4.ebuild,v 
1.8 2014/09/15 08:20:36 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnome-base/orbit/orbit-2.14.19-r4.ebuild,v 
1.9 2014/10/11 13:35:50 maekke Exp $
 
 EAPI="5"
 GCONF_DEBUG="yes"
@@ -15,7 +15,7 @@
 
 LICENSE="GPL-2 LGPL-2"
 SLOT="2"
-KEYWORDS="alpha amd64 ~arm ia64 ~mips ppc ppc64 ~sh sparc x86 ~ppc-aix 
~amd64-fbsd ~x86-fbsd ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux 
~ppc-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris 
~x86-winnt"
+KEYWORDS="alpha amd64 arm ia64 ~mips ppc ppc64 ~sh sparc x86 ~ppc-aix 
~amd64-fbsd ~x86-fbsd ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux 
~ppc-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris 
~x86-winnt"
 IUSE="pic static-libs test"
 REQUIRED_USE="test? ( debug )"
 



1.216gnome-base/orbit/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/orbit/ChangeLog?rev=1.216&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/orbit/ChangeLog?rev=1.216&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/orbit/ChangeLog?r1=1.215&r2=1.216

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/gnome-base/orbit/ChangeLog,v
retrieving revision 1.215
retrieving revision 1.216
diff -u -r1.215 -r1.216
--- ChangeLog   15 Sep 2014 08:20:36 -  1.215
+++ ChangeLog   11 Oct 2014 13:35:50 -  1.216
@@ -1,6 +1,9 @@
 # ChangeLog for gnome-base/orbit
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/gnome-base/orbit/ChangeLog,v 1.215 
2014/09/15 08:20:36 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnome-base/orbit/ChangeLog,v 1.216 
2014/10/11 13:35:50 maekke Exp $
+
+  11 Oct 2014; Markus Meier  orbit-2.14.19-r4.ebuild:
+  arm stable, bug #512012
 
   15 Sep 2014; Agostino Sarubbo  orbit-2.14.19-r4.ebuild:
   Stable for sparc, wrt bug #512012






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

2014-10-11 Thread Markus Meier (maekke)
maekke  14/10/11 13:35:20

  Modified: ChangeLog libgnomecanvasmm-2.26.0-r1.ebuild
  Log:
  arm stable, bug #512012
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, RepoMan options: 
--include-arches="arm", signed Manifest commit with key 072AD062)

Revision  ChangesPath
1.91 dev-cpp/libgnomecanvasmm/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/libgnomecanvasmm/ChangeLog,v
retrieving revision 1.90
retrieving revision 1.91
diff -u -r1.90 -r1.91
--- ChangeLog   15 Sep 2014 08:18:02 -  1.90
+++ ChangeLog   11 Oct 2014 13:35:20 -  1.91
@@ -1,6 +1,10 @@
 # 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.90 
2014/09/15 08:18:02 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libgnomecanvasmm/ChangeLog,v 1.91 
2014/10/11 13:35:20 maekke Exp $
+
+  11 Oct 2014; Markus Meier 
+  libgnomecanvasmm-2.26.0-r1.ebuild:
+  arm stable, bug #512012
 
   15 Sep 2014; Agostino Sarubbo 
   libgnomecanvasmm-2.26.0-r1.ebuild:



1.9  dev-cpp/libgnomecanvasmm/libgnomecanvasmm-2.26.0-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/libgnomecanvasmm/libgnomecanvasmm-2.26.0-r1.ebuild?rev=1.9&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/libgnomecanvasmm/libgnomecanvasmm-2.26.0-r1.ebuild?rev=1.9&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/libgnomecanvasmm/libgnomecanvasmm-2.26.0-r1.ebuild?r1=1.8&r2=1.9

Index: libgnomecanvasmm-2.26.0-r1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-cpp/libgnomecanvasmm/libgnomecanvasmm-2.26.0-r1.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- libgnomecanvasmm-2.26.0-r1.ebuild   15 Sep 2014 08:18:02 -  1.8
+++ libgnomecanvasmm-2.26.0-r1.ebuild   11 Oct 2014 13:35:20 -  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-cpp/libgnomecanvasmm/libgnomecanvasmm-2.26.0-r1.ebuild,v
 1.8 2014/09/15 08:18:02 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-cpp/libgnomecanvasmm/libgnomecanvasmm-2.26.0-r1.ebuild,v
 1.9 2014/10/11 13:35:20 maekke Exp $
 
 EAPI="5"
 GCONF_DEBUG="no"
@@ -13,7 +13,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="2.6"
-KEYWORDS="alpha amd64 ~arm ia64 ppc ppc64 ~sh sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 arm ia64 ppc ppc64 ~sh sparc x86 ~x86-fbsd"
 IUSE="doc examples"
 
 RDEPEND="






[gentoo-commits] gentoo-x86 commit in net-wireless/bluez: ChangeLog bluez-5.21-r1.ebuild

2014-10-11 Thread Markus Meier (maekke)
maekke  14/10/11 13:34:17

  Modified: ChangeLog bluez-5.21-r1.ebuild
  Log:
  arm stable, bug #512012
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, RepoMan options: 
--include-arches="arm", signed Manifest commit with key 072AD062)

Revision  ChangesPath
1.220net-wireless/bluez/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/bluez/ChangeLog?rev=1.220&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/bluez/ChangeLog?rev=1.220&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/bluez/ChangeLog?r1=1.219&r2=1.220

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-wireless/bluez/ChangeLog,v
retrieving revision 1.219
retrieving revision 1.220
diff -u -r1.219 -r1.220
--- ChangeLog   11 Oct 2014 11:00:50 -  1.219
+++ ChangeLog   11 Oct 2014 13:34:17 -  1.220
@@ -1,6 +1,9 @@
 # ChangeLog for net-wireless/bluez
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-wireless/bluez/ChangeLog,v 1.219 
2014/10/11 11:00:50 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-wireless/bluez/ChangeLog,v 1.220 
2014/10/11 13:34:17 maekke Exp $
+
+  11 Oct 2014; Markus Meier  bluez-5.21-r1.ebuild:
+  arm stable, bug #512012
 
 *bluez-5.24 (11 Oct 2014)
 



1.6  net-wireless/bluez/bluez-5.21-r1.ebuild

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

Index: bluez-5.21-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-wireless/bluez/bluez-5.21-r1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- bluez-5.21-r1.ebuild21 Aug 2014 10:45:46 -  1.5
+++ bluez-5.21-r1.ebuild11 Oct 2014 13:34:17 -  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/net-wireless/bluez/bluez-5.21-r1.ebuild,v 
1.5 2014/08/21 10:45:46 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-wireless/bluez/bluez-5.21-r1.ebuild,v 
1.6 2014/10/11 13:34:17 maekke Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-2+ LGPL-2.1+"
 SLOT="0/3"
-KEYWORDS="amd64 ~arm hppa ppc ppc64 x86"
+KEYWORDS="amd64 arm hppa ppc ppc64 x86"
 IUSE="cups debug +obex +readline selinux systemd test +udev"
 REQUIRED_USE="test? ( ${PYTHON_REQUIRED_USE} )"
 






[gentoo-commits] gentoo-x86 commit in net-wireless/bluez: bluez-4.101-r9.ebuild ChangeLog

2014-10-11 Thread Markus Meier (maekke)
maekke  14/10/11 13:34:49

  Modified: bluez-4.101-r9.ebuild ChangeLog
  Log:
  arm stable, bug #512012
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, RepoMan options: 
--include-arches="arm", signed Manifest commit with key 072AD062)

Revision  ChangesPath
1.8  net-wireless/bluez/bluez-4.101-r9.ebuild

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

Index: bluez-4.101-r9.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-wireless/bluez/bluez-4.101-r9.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- bluez-4.101-r9.ebuild   14 Sep 2014 22:55:47 -  1.7
+++ bluez-4.101-r9.ebuild   11 Oct 2014 13:34:49 -  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/net-wireless/bluez/bluez-4.101-r9.ebuild,v 
1.7 2014/09/14 22:55:47 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-wireless/bluez/bluez-4.101-r9.ebuild,v 
1.8 2014/10/11 13:34:49 maekke Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_6,2_7} )
@@ -14,7 +14,7 @@
 
 LICENSE="GPL-2 LGPL-2.1"
 SLOT="0"
-KEYWORDS="amd64 ~arm hppa ppc ppc64 x86"
+KEYWORDS="amd64 arm hppa ppc ppc64 x86"
 IUSE="alsa cups debug gstreamer hid2hci pcmcia readline selinux test-programs 
usb"
 
 REQUIRED_USE="test-programs? ( ${PYTHON_REQUIRED_USE} )"



1.221net-wireless/bluez/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/bluez/ChangeLog?rev=1.221&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/bluez/ChangeLog?rev=1.221&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/bluez/ChangeLog?r1=1.220&r2=1.221

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-wireless/bluez/ChangeLog,v
retrieving revision 1.220
retrieving revision 1.221
diff -u -r1.220 -r1.221
--- ChangeLog   11 Oct 2014 13:34:17 -  1.220
+++ ChangeLog   11 Oct 2014 13:34:49 -  1.221
@@ -1,6 +1,9 @@
 # ChangeLog for net-wireless/bluez
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-wireless/bluez/ChangeLog,v 1.220 
2014/10/11 13:34:17 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-wireless/bluez/ChangeLog,v 1.221 
2014/10/11 13:34:49 maekke Exp $
+
+  11 Oct 2014; Markus Meier  bluez-4.101-r9.ebuild:
+  arm stable, bug #512012
 
   11 Oct 2014; Markus Meier  bluez-5.21-r1.ebuild:
   arm stable, bug #512012






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

2014-10-11 Thread Tobias Klausmann (klausman)
klausman14/10/11 13:34:53

  Modified: ChangeLog texmacs-1.99.1.ebuild
  Log:
  Stable on alpha, bug 512486
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with 
key CE5D54E8)

Revision  ChangesPath
1.118app-office/texmacs/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-office/texmacs/ChangeLog,v
retrieving revision 1.117
retrieving revision 1.118
diff -u -r1.117 -r1.118
--- ChangeLog   10 Aug 2014 17:35:02 -  1.117
+++ ChangeLog   11 Oct 2014 13:34:53 -  1.118
@@ -1,6 +1,9 @@
 # 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.117 
2014/08/10 17:35:02 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/texmacs/ChangeLog,v 1.118 
2014/10/11 13:34:53 klausman Exp $
+
+  11 Oct 2014; Tobias Klausmann  texmacs-1.99.1.ebuild:
+  Stable on alpha, bug 512486
 
   10 Aug 2014; Agostino Sarubbo  texmacs-1.0.7.21.ebuild:
   Stable for x86, wrt bug #512486



1.3  app-office/texmacs/texmacs-1.99.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/texmacs/texmacs-1.99.1.ebuild?rev=1.3&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/texmacs/texmacs-1.99.1.ebuild?rev=1.3&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/texmacs/texmacs-1.99.1.ebuild?r1=1.2&r2=1.3

Index: texmacs-1.99.1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-office/texmacs/texmacs-1.99.1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- texmacs-1.99.1.ebuild   1 Aug 2014 10:24:23 -   1.2
+++ texmacs-1.99.1.ebuild   11 Oct 2014 13:34:53 -  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/app-office/texmacs/texmacs-1.99.1.ebuild,v 
1.2 2014/08/01 10:24:23 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/texmacs/texmacs-1.99.1.ebuild,v 
1.3 2014/10/11 13:34:53 klausman Exp $
 
 EAPI=4
 
@@ -15,7 +15,7 @@
 LICENSE="GPL-3"
 SLOT="0"
 IUSE="imlib jpeg netpbm pdf qt4 svg spell"
-KEYWORDS="~alpha ~amd64 ~ppc ~x86 ~x86-interix ~amd64-linux ~x86-linux"
+KEYWORDS="alpha ~amd64 ~ppc ~x86 ~x86-interix ~amd64-linux ~x86-linux"
 
 RDEPEND="dev-scheme/guile[deprecated]
virtual/latex-base






[gentoo-commits] gentoo-x86 commit in net-im/pidgin: ChangeLog pidgin-2.10.9-r1.ebuild

2014-10-11 Thread Markus Meier (maekke)
maekke  14/10/11 13:33:38

  Modified: ChangeLog pidgin-2.10.9-r1.ebuild
  Log:
  arm stable, bug #512012
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, RepoMan options: 
--include-arches="arm", signed Manifest commit with key 072AD062)

Revision  ChangesPath
1.345net-im/pidgin/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/pidgin/ChangeLog?rev=1.345&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/pidgin/ChangeLog?rev=1.345&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/pidgin/ChangeLog?r1=1.344&r2=1.345

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-im/pidgin/ChangeLog,v
retrieving revision 1.344
retrieving revision 1.345
diff -u -r1.344 -r1.345
--- ChangeLog   15 Sep 2014 08:23:24 -  1.344
+++ ChangeLog   11 Oct 2014 13:33:38 -  1.345
@@ -1,6 +1,9 @@
 # ChangeLog for net-im/pidgin
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/pidgin/ChangeLog,v 1.344 2014/09/15 
08:23:24 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-im/pidgin/ChangeLog,v 1.345 2014/10/11 
13:33:38 maekke Exp $
+
+  11 Oct 2014; Markus Meier  pidgin-2.10.9-r1.ebuild:
+  arm stable, bug #512012
 
   15 Sep 2014; Agostino Sarubbo  pidgin-2.10.9-r1.ebuild:
   Stable for sparc, wrt bug #512012



1.16 net-im/pidgin/pidgin-2.10.9-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/pidgin/pidgin-2.10.9-r1.ebuild?rev=1.16&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/pidgin/pidgin-2.10.9-r1.ebuild?rev=1.16&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/pidgin/pidgin-2.10.9-r1.ebuild?r1=1.15&r2=1.16

Index: pidgin-2.10.9-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-im/pidgin/pidgin-2.10.9-r1.ebuild,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- pidgin-2.10.9-r1.ebuild 15 Sep 2014 08:23:24 -  1.15
+++ pidgin-2.10.9-r1.ebuild 11 Oct 2014 13:33:38 -  1.16
@@ -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/net-im/pidgin/pidgin-2.10.9-r1.ebuild,v 
1.15 2014/09/15 08:23:24 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-im/pidgin/pidgin-2.10.9-r1.ebuild,v 
1.16 2014/10/11 13:33:38 maekke Exp $
 
 EAPI=5
 
@@ -15,7 +15,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm hppa ia64 ppc ppc64 sparc x86 ~x86-freebsd 
~amd64-linux ~x86-linux ~x86-macos"
+KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-freebsd 
~amd64-linux ~x86-linux ~x86-macos"
 IUSE="dbus debug doc eds gadu gnutls +gstreamer +gtk idn meanwhile mxit"
 IUSE+=" networkmanager nls perl silc tcl tk spell sasl ncurses"
 IUSE+=" groupwise prediction python +xscreensaver zephyr zeroconf" # mono"






[gentoo-commits] gentoo-x86 commit in media-plugins/gst-plugins-xvid: ChangeLog gst-plugins-xvid-0.10.23-r1.ebuild

2014-10-11 Thread Markus Meier (maekke)
maekke  14/10/11 13:32:08

  Modified: ChangeLog gst-plugins-xvid-0.10.23-r1.ebuild
  Log:
  arm stable, bug #512012
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, RepoMan options: 
--include-arches="arm", signed Manifest commit with key 072AD062)

Revision  ChangesPath
1.43 media-plugins/gst-plugins-xvid/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-xvid/ChangeLog,v
retrieving revision 1.42
retrieving revision 1.43
diff -u -r1.42 -r1.43
--- ChangeLog   15 Sep 2014 08:23:09 -  1.42
+++ ChangeLog   11 Oct 2014 13:32:08 -  1.43
@@ -1,6 +1,10 @@
 # ChangeLog for media-plugins/gst-plugins-xvid
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-xvid/ChangeLog,v 
1.42 2014/09/15 08:23:09 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-xvid/ChangeLog,v 
1.43 2014/10/11 13:32:08 maekke Exp $
+
+  11 Oct 2014; Markus Meier 
+  gst-plugins-xvid-0.10.23-r1.ebuild:
+  arm stable, bug #512012
 
   15 Sep 2014; Agostino Sarubbo 
   gst-plugins-xvid-0.10.23-r1.ebuild:



1.11 
media-plugins/gst-plugins-xvid/gst-plugins-xvid-0.10.23-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/gst-plugins-xvid/gst-plugins-xvid-0.10.23-r1.ebuild?rev=1.11&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/gst-plugins-xvid/gst-plugins-xvid-0.10.23-r1.ebuild?rev=1.11&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/gst-plugins-xvid/gst-plugins-xvid-0.10.23-r1.ebuild?r1=1.10&r2=1.11

Index: gst-plugins-xvid-0.10.23-r1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/media-plugins/gst-plugins-xvid/gst-plugins-xvid-0.10.23-r1.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- gst-plugins-xvid-0.10.23-r1.ebuild  15 Sep 2014 08:23:09 -  1.10
+++ gst-plugins-xvid-0.10.23-r1.ebuild  11 Oct 2014 13:32:08 -  1.11
@@ -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-plugins/gst-plugins-xvid/gst-plugins-xvid-0.10.23-r1.ebuild,v
 1.10 2014/09/15 08:23:09 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/media-plugins/gst-plugins-xvid/gst-plugins-xvid-0.10.23-r1.ebuild,v
 1.11 2014/10/11 13:32:08 maekke Exp $
 
 EAPI="5"
 
@@ -8,7 +8,7 @@
 inherit gstreamer
 
 DESCRIPTION="GStreamer plugin for XviD (MPEG-4) video encoding/decoding 
support"
-KEYWORDS="alpha amd64 ~arm hppa ia64 ppc ppc64 sparc x86 ~amd64-fbsd"
+KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~amd64-fbsd"
 IUSE=""
 
 RDEPEND=">=media-libs/xvid-1.3.2-r1[${MULTILIB_USEDEP}]"






<    1   2   3   4   5   >