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

2016-01-16 Thread Andrew Savchenko
commit: 78e301088323f0655e506654adc48ae22470d86b
Author: Andrew Savchenko  gentoo  org>
AuthorDate: Sat Jan 16 10:20:03 2016 +
Commit: Andrew Savchenko  gentoo  org>
CommitDate: Sat Jan 16 10:21:29 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78e30108

sci-physics/root: fix compiler check

Previously compiler check was performed only against provided
clang++ version, which is wrong.

Package-Manager: portage-2.2.26
Signed-off-by: Andrew Savchenko  gentoo.org>

 sci-physics/root/root-5.34.26.ebuild| 9 ++---
 sci-physics/root/root-5.34.32.ebuild| 9 ++---
 sci-physics/root/root-6.02.05-r2.ebuild | 9 ++---
 sci-physics/root/root-6.04.06.ebuild| 9 ++---
 4 files changed, 24 insertions(+), 12 deletions(-)

diff --git a/sci-physics/root/root-5.34.26.ebuild 
b/sci-physics/root/root-5.34.26.ebuild
index b498a18..80feeae 100644
--- a/sci-physics/root/root-5.34.26.ebuild
+++ b/sci-physics/root/root-5.34.26.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -132,16 +132,19 @@ die_compiler() {
 # $3 - clang++
 # $4 - icc/icpc
 check_compiler() {
-   local ver
+   local cur ver
case "$(tc-getCXX)" in
*clang++*)
ver="$(best_version sys-devel/clang | sed 
's:sys-devel/clang-::')"
+   cur="$3"
;;
*g++*)
ver="$(gcc-version)"
+   cur="$2"
;;
*icc*|*icpc*)
ver="$(best_version dev-lang/icc | sed 
's:dev-lang/icc-::')"
+   cur="$4"
;;
*)
ewarn "You are using an unsupported compiler."
@@ -149,7 +152,7 @@ check_compiler() {
return 0
;;
esac
-   version_is_at_least "$3" "${ver}" || die_compiler "$1" "$2" "$3" "$4" 
"${ver}"
+   version_is_at_least "${cur}" "${ver}" || die_compiler "$1" "$2" "$3" 
"$4" "${ver}"
 }
 
 pkg_setup() {

diff --git a/sci-physics/root/root-5.34.32.ebuild 
b/sci-physics/root/root-5.34.32.ebuild
index 915e712..2fb31dc 100644
--- a/sci-physics/root/root-5.34.32.ebuild
+++ b/sci-physics/root/root-5.34.32.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -126,16 +126,19 @@ die_compiler() {
 # $3 - clang++
 # $4 - icc/icpc
 check_compiler() {
-   local ver
+   local cur ver
case "$(tc-getCXX)" in
*clang++*)
ver="$(best_version sys-devel/clang | sed 
's:sys-devel/clang-::')"
+   cur="$3"
;;
*g++*)
ver="$(gcc-version)"
+   cur="$2"
;;
*icc*|*icpc*)
ver="$(best_version dev-lang/icc | sed 
's:dev-lang/icc-::')"
+   cur="$4"
;;
*)
ewarn "You are using an unsupported compiler."
@@ -143,7 +146,7 @@ check_compiler() {
return 0
;;
esac
-   version_is_at_least "$3" "${ver}" || die_compiler "$1" "$2" "$3" "$4" 
"${ver}"
+   version_is_at_least "${cur}" "${ver}" || die_compiler "$1" "$2" "$3" 
"$4" "${ver}"
 }
 
 pkg_setup() {

diff --git a/sci-physics/root/root-6.02.05-r2.ebuild 
b/sci-physics/root/root-6.02.05-r2.ebuild
index 0ce7393..5bb8741 100644
--- a/sci-physics/root/root-6.02.05-r2.ebuild
+++ b/sci-physics/root/root-6.02.05-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -132,18 +132,21 @@ die_compiler() {
 # $3 - clang++
 # $4 - icc/icpc
 check_compiler() {
-   local ver
+   local cur ver
case "$(tc-getCXX)" in
*clang++*)
ver="$(best_version sys-devel/clang | sed 
's:sys-devel/clang-::')"
+   cur="$3"
;;
*g++*)
ver="$(gcc-version)"
+   cur="$2"
;;
*icc*|*icpc*)
ver="$(best_version dev-lang/icc | sed 
's:dev-lang/icc-::')"
eerror "ROOT-6 is known not to build with ICC."
eerror "Please report any isuses upstream."
+   cur="$4"
;;
*)
ewarn "You are using an unsupported compiler."
@@ -151,7 +154,7 @@ check_compiler() {
return 0
;;
esac
-   version_is_at_least "$3" "${ver}" || die_compiler "$1" 

[gentoo-commits] proj/qt:master commit in: www-client/qupzilla/

2016-01-16 Thread Michael Palimaka
commit: dd4a0061125ced4909a0c1767a39896335a1df86
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sat Jan 16 12:46:51 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Jan 16 12:46:51 2016 +
URL:https://gitweb.gentoo.org/proj/qt.git/commit/?id=dd4a0061

www-client/qupzilla: use newer plugins

Package-Manager: portage-2.2.26

 www-client/qupzilla/Manifest | 2 +-
 www-client/qupzilla/qupzilla-.ebuild | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/www-client/qupzilla/Manifest b/www-client/qupzilla/Manifest
index d4ede65..0841865 100644
--- a/www-client/qupzilla/Manifest
+++ b/www-client/qupzilla/Manifest
@@ -1 +1 @@
-DIST qupzilla-plugins-2015.06.05.tar.gz 335627 SHA256 
afc9589e54c3ed49f58c727c3ff7bd59d4467dfaf2ff78f57cd98afc4dfc1f7b SHA512 
5f2a4b1796431c62580e569b57445b2a309b2314f59ceb0c99da2a1703a2ee23bd2d1cac8a1532be5f2161976b4dd5f439c08abe5c1826115e9adf636fc12522
 WHIRLPOOL 
10b53426888dc8868de783403463d0bbf83ee59fdf74f2409b78a725b4f90d08aa9698e622d3acfdedbca469397b2e3d4ed8f06d3112bd9cff6e76527b1611eb
+DIST qupzilla-plugins-2015.10.02.tar.gz 335649 SHA256 
9e167a6f1234b0b51c26cbd4acc5bcdc83c760ef5c2ff8573f90aa64c3a40553 SHA512 
de2208fec40a1412a1feb4bd995ae25ff04a1f3577449f7c90bc5d2f46b01c8cf33757db5a0fa69ddb5a1a27764a0230664a5b2adc89ebc2b43df5df5e2b4f31
 WHIRLPOOL 
8fc24f0891fbb7e8378aae900c25bc29604f13febd9b30594e2e25d55a02707d047835e2fef82482c632ef35b93046a7e2990a82d285c159de6cf603525d01d5

diff --git a/www-client/qupzilla/qupzilla-.ebuild 
b/www-client/qupzilla/qupzilla-.ebuild
index 4f8da83..43e272e 100644
--- a/www-client/qupzilla/qupzilla-.ebuild
+++ b/www-client/qupzilla/qupzilla-.ebuild
@@ -18,8 +18,8 @@ else
 fi
 
 PLOCALES="ar_SA bg_BG ca_ES cs_CZ de_DE el_GR es_ES es_MX es_VE eu_ES fa_IR 
fi_FI fr_FR gl_ES he_IL hr_HR hu_HU id_ID it_IT ja_JP ka_GE lg lv_LV nl_NL nqo 
pl_PL pt_BR pt_PT ro_RO ru_RU sk_SK sr sr@ijekavian sr@ijekavianlatin sr@latin 
sv_SE tr_TR uk_UA uz@Latn zh_CN zh_TW"
-PLUGINS_HASH='7c66cb2efbd18eacbd04ba211162b1a042e5b759'
-PLUGINS_VERSION='2015.06.05' # if there are no updates, we can use the older 
archive
+PLUGINS_HASH='7b037cc326921cefbfc6b5e54e2091eb4191e73f'
+PLUGINS_VERSION='2015.10.02' # if there are no updates, we can use the older 
archive
 
 inherit eutils l10n multilib qmake-utils ${VCS_ECLASS}
 



[gentoo-commits] repo/gentoo:master commit in: x11-themes/gentoo10-backgrounds/

2016-01-16 Thread Michael Palimaka
commit: de9badcf8b0933c3c57a07c9373847c361b0dc9a
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sat Jan 16 13:45:31 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Jan 16 13:46:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de9badcf

x11-themes/gentoo10-backgrounds: drop release as a maintain

Gentoo-bug: 570194

Package-Manager: portage-2.2.26

 x11-themes/gentoo10-backgrounds/metadata.xml | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/x11-themes/gentoo10-backgrounds/metadata.xml 
b/x11-themes/gentoo10-backgrounds/metadata.xml
index b896643..63ac565 100644
--- a/x11-themes/gentoo10-backgrounds/metadata.xml
+++ b/x11-themes/gentoo10-backgrounds/metadata.xml
@@ -4,7 +4,4 @@
   
 flamee...@gentoo.org
   
-  
-rele...@gentoo.org
-  
 



[gentoo-commits] repo/gentoo:master commit in: sys-devel/crossdev/

2016-01-16 Thread Mike Frysinger
commit: 3a3d4f5bdf0ff247aea090bf657e9e8ac5fb7ff5
Author: Mike Frysinger  gentoo  org>
AuthorDate: Sat Jan 16 08:02:15 2016 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Sat Jan 16 08:16:45 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a3d4f5b

sys-devel/crossdev: version bump to 20151026

 sys-devel/crossdev/Manifest |  1 +
 sys-devel/crossdev/crossdev-20151026.ebuild | 36 +
 2 files changed, 37 insertions(+)

diff --git a/sys-devel/crossdev/Manifest b/sys-devel/crossdev/Manifest
index 5ba85ad..bdf27ef 100644
--- a/sys-devel/crossdev/Manifest
+++ b/sys-devel/crossdev/Manifest
@@ -1,2 +1,3 @@
 DIST crossdev-20150602.tar.xz 22388 SHA256 
7fef5b43f9ecbae0b9e1f7a993b53fc97b9bc1fa1d818aa46171c557c57aa23a SHA512 
2cc9f2ba9bba037c909204b872b84e1087737f0804fe5f900a5d6e0b2948885aa17dc91d77ac3e38ce9752c56936fe5a92a77b6a264a029c98ef43e641bb7e8d
 WHIRLPOOL 
5fd0e89c92c1ace214580bba200a5ff829a0547437949e0e4d39499305bd1ee75ddbe6ad32cbe1acc39392a8666d681b2c446bd10f257be788df5a7ed8a3a32d
 DIST crossdev-20150716.tar.xz 22152 SHA256 
3988039ebc5363cba752a04ba00df18b0d8c1ac10be342880feda5f848a20a22 SHA512 
8c41d9d5e6df8cc894e52b841f827b517a090edd0e281d181cc38d6ce472b75cb592eef487d1fdb99c31b6daf903d2636b625ebd5c8fa2fbbeadfb98e0e5cfbe
 WHIRLPOOL 
39f3e941a2dcb5915f8e81725d8d8abaf3fd9dfa676d7c7096cb188b75c9af439c6e75b34207bd3404f9a1f15954999d8a42dfaf09646aa3c6a0925bf40fb963
+DIST crossdev-20151026.tar.xz 22160 SHA256 
ad5ff1cc334325f83f60f87f9a6d795c606317665042cece9d8f12297312ca28 SHA512 
f60efd4ad867efd0eb33de5fe327ccbfe73b574c97507bc0edd7ef141ad74c035ae2a0d446180e6a9eb5f43197f44933a452245feec849bacfb03fc07067edd0
 WHIRLPOOL 
7a8f556e53e7142ccf9c56d6daf700b33d66e530d85e5a5ed5b154a52bbba450956381af06f7b5748a6a82a43666a8c1b7d879296869dadd090e8887fc623ea9

diff --git a/sys-devel/crossdev/crossdev-20151026.ebuild 
b/sys-devel/crossdev/crossdev-20151026.ebuild
new file mode 100644
index 000..3b816c2
--- /dev/null
+++ b/sys-devel/crossdev/crossdev-20151026.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="4"
+
+if [[ ${PV} == "" ]] ; then
+   EGIT_REPO_URI="git://anongit.gentoo.org/proj/crossdev.git"
+   inherit git-2
+   SRC_URI=""
+   #KEYWORDS=""
+else
+   SRC_URI="mirror://gentoo/${P}.tar.xz
+   https://dev.gentoo.org/~vapier/dist/${P}.tar.xz;
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc ~x86 ~x86-fbsd"
+fi
+
+DESCRIPTION="Gentoo Cross-toolchain generator"
+HOMEPAGE="https://www.gentoo.org/;
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE=""
+
+RDEPEND=">=sys-apps/portage-2.1
+   >=app-portage/portage-utils-0.55
+   app-shells/bash
+   !sys-devel/crossdev-wrappers"
+DEPEND="app-arch/xz-utils"
+
+src_install() {
+   default
+   if [[ "${PV}" == "" ]] ; then
+   sed -i "s:@CDEVPV@:${EGIT_VERSION}:" "${ED}"/usr/bin/crossdev 
|| die
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: sys-boot/gnu-efi/

2016-01-16 Thread Mike Frysinger
commit: c893d18969cf02e36095e98a798eda3c21b16710
Author: Mike Frysinger  gentoo  org>
AuthorDate: Sat Jan 16 03:08:25 2016 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Sat Jan 16 08:04:13 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c893d189

sys-boot/gnu-efi: add arm/arm64 love

 sys-boot/gnu-efi/gnu-efi-3.0.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-boot/gnu-efi/gnu-efi-3.0.3.ebuild 
b/sys-boot/gnu-efi/gnu-efi-3.0.3.ebuild
index 4e29efc..45997c7 100644
--- a/sys-boot/gnu-efi/gnu-efi-3.0.3.ebuild
+++ b/sys-boot/gnu-efi/gnu-efi-3.0.3.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/gnu-efi/${P}.tar.bz2"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="-* amd64 ia64 x86"
+KEYWORDS="-* amd64 ~arm ~arm64 ia64 x86"
 IUSE="abi_x86_32 abi_x86_64"
 
 DEPEND="sys-apps/pciutils"



[gentoo-commits] repo/gentoo:master commit in: sys-boot/gnu-efi/

2016-01-16 Thread Mike Frysinger
commit: 28d07b39dafead1f67ca10d069fee245b02317c1
Author: Mike Frysinger  gentoo  org>
AuthorDate: Sat Jan 16 03:13:19 2016 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Sat Jan 16 08:04:13 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28d07b39

sys-boot/gnu-efi: downgrade ia64 stable due to build failures

 sys-boot/gnu-efi/gnu-efi-3.0.2.ebuild | 2 +-
 sys-boot/gnu-efi/gnu-efi-3.0.3.ebuild | 4 +++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/sys-boot/gnu-efi/gnu-efi-3.0.2.ebuild 
b/sys-boot/gnu-efi/gnu-efi-3.0.2.ebuild
index f79b3b2..896e302 100644
--- a/sys-boot/gnu-efi/gnu-efi-3.0.2.ebuild
+++ b/sys-boot/gnu-efi/gnu-efi-3.0.2.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/gnu-efi/${P}.tar.bz2"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="-* ~amd64 ~ia64 ~x86"
+KEYWORDS="-* ~amd64 ia64 ~x86"
 IUSE=""
 
 DEPEND="sys-apps/pciutils"

diff --git a/sys-boot/gnu-efi/gnu-efi-3.0.3.ebuild 
b/sys-boot/gnu-efi/gnu-efi-3.0.3.ebuild
index 45997c7..741b506 100644
--- a/sys-boot/gnu-efi/gnu-efi-3.0.3.ebuild
+++ b/sys-boot/gnu-efi/gnu-efi-3.0.3.ebuild
@@ -12,7 +12,9 @@ SRC_URI="mirror://sourceforge/gnu-efi/${P}.tar.bz2"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="-* amd64 ~arm ~arm64 ia64 x86"
+# IA64 build is broken in setjmp code:
+# https://sourceforge.net/p/gnu-efi/bugs/9/
+KEYWORDS="-* amd64 ~arm ~arm64 -ia64 x86"
 IUSE="abi_x86_32 abi_x86_64"
 
 DEPEND="sys-apps/pciutils"



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

2016-01-16 Thread Lars Wendler
commit: 11e6585c2bffe51b132b1dbf63cf7daa61791391
Author: Lars Wendler  gentoo  org>
AuthorDate: Sat Jan 16 10:36:44 2016 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Sat Jan 16 10:37:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11e6585c

media-libs/libpng: Bump to versions 1.2.56, 1.5.26 and 1.6.21

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

 media-libs/libpng/Manifest |  5 +++
 media-libs/libpng/libpng-1.2.56.ebuild | 43 
 media-libs/libpng/libpng-1.5.26.ebuild | 60 ++
 media-libs/libpng/libpng-1.6.21.ebuild | 43 
 4 files changed, 151 insertions(+)

diff --git a/media-libs/libpng/Manifest b/media-libs/libpng/Manifest
index 26bcdd9..7f19a75 100644
--- a/media-libs/libpng/Manifest
+++ b/media-libs/libpng/Manifest
@@ -1,13 +1,18 @@
 DIST libpng-1.2.51.tar.xz 562940 SHA256 
c7d7b813b022afd70474f78bcc3655c7bb54edbf28dd4652e5521cbb6da56d4a SHA512 
63ba0df5eff78b254d53f6cfd4075d3ea93ee9445e37678fc7d29fa116137b2a7c441eda23851638f9185166e408f42c51d0678c466c8376a1de356c7db760f2
 WHIRLPOOL 
d829b07e950c64a8de37591ac5d40211f8e762feff8ff6f98db35714293997304b3eb063ea69a87064e6c66530a4fa2531dadcb1a0bb412066c558a5ff2f679c
 DIST libpng-1.2.54.tar.xz 571448 SHA256 
cf85516482780f2bc2c5b5073902f12b1519019d47bf473326c2018bdff1d272 SHA512 
3fde161bae1c61c0c099344518a59a312ac5bcd6063d7d01be156fd4e048fdaafed8a27e10bf2750d4ef678389e2782137c9e6540b7fd0859b820bb8d9443497
 WHIRLPOOL 
fd985ebc9982e20ec37b9a8889890406a334005648f90e429e71eae02c7308c8d64ff0f34e5a31fc817521d44a45f0740bc221bf73c00ade1ef2e2974fd22b9d
 DIST libpng-1.2.55.tar.xz 655728 SHA256 
5e5227345676fabbba28558f4396514bb06a239eaf69adba12f3669a1650797e SHA512 
d0bc9ebbbcff1c258c333d9ca64c15074d0e01df49b1d937242509b42307aebe22169ae322aa75dc6c60c0c31d29318d184ef8b1b87ae2c9e4d3d4f4c8a4dd45
 WHIRLPOOL 
49c2c3dcd142c5fd377a99495d74950440f4f662af9bf246570d0e99425f2b977c5b1b6b7f407dbc2efef0f93ffb5e1d7c3c25d9ef1dfaeab8ab2f0744e5427b
+DIST libpng-1.2.56.tar.xz 654688 SHA256 
24ce54581468b937734a6ecc86f7e121bc46a90d76a0d948dca08f32ee000dbe SHA512 
b50cd58246590267fb123d8618387897d438cdc9514e69ca346bd09c5013845d2ca35933b236b31af9d81ae738afa7b01e9a332bcf099f4fa0e3b85048a4ac5f
 WHIRLPOOL 
436209348dde13751e8c326b8a9bceacca281e3d59e548af7eb9246fb14ee2f657e3c10437f04148a0c244f2d3bc231260fb57a2cd145d87b5d07ef5e49a8b1d
 DIST libpng-1.5.24-apng.patch.gz 10318 SHA256 
7493734793803598a57f83274258118e9a31f6ec9a20b83a4d851cf359ed966a SHA512 
647bb8a780947b72c7aad1ffc2b2114ed43f22e6c3885621c83694875bcec4516e49b00856fabffd568bfed90748e96117d42e3817e83a25fcb25089e32225ea
 WHIRLPOOL 
38e6616930865bdaf8fa1ecf35bb8af8916f8bc3a9af9e9621455e378d7913b393f8ab3dd823bcc811974021dfdc24f5da95bfb14c3249cf67dc31fe037f80af
 DIST libpng-1.5.24.tar.xz 749016 SHA256 
b92e3474f3136b5d9443ba92822154ebc2573fc6feead90d364ee9ebc3741be2 SHA512 
d6faaba4844de0fbb0786e141265a17128387dd73dfdb5cbd1ab2915430578cd73f3f5efadcaaab966429f1a4908568b60829db63b00aadb320bf0f4a8ff9e78
 WHIRLPOOL 
14631ce41756faf2ec00315d7279a39fd06b488288db24a1d81345ec484a7289d187a579823b1be471e975041d5a1b4f0fbdc763a1a64cfdc29dd4ca71cc789a
 DIST libpng-1.5.25-apng.patch.gz 10305 SHA256 
32c706498b9edde98b8b55374c2188b0d1dce6b60048b167a6d99f97bef2595f SHA512 
602998b5e922cf1e547c5dad79a2a4f2ae81a86f7a3f4693e09e118417508629d66b734317a842d43ac13f213f79ef24a264d6790514d3383cd32eaf40a12b9b
 WHIRLPOOL 
8b2a24181c3c1b47a408283febf5d69cf485cd0665e26721d34873fce2bfb462383e3b40d51edcbfd62308241b1567aa5b4aa649d6343653162047bbba964116
 DIST libpng-1.5.25.tar.xz 748268 SHA256 
1224db3a8df90ce1b07ee67327e6846484450d05b9315a1d56fcc9772c0a51ca SHA512 
41663d277a4a0e59c0a797e34c9cbe17990333b3a93c008fbf449274053847d157ea12b2e93e941661e3921a0c202c395ba334474dd77b7f4d8dd85a76628a48
 WHIRLPOOL 
60afcc4f08855724f11a5ce146c40852b593f4fa3fb6eb2dcee129e59160f5e1fe572842f13434edb849d5f32f72ab02c031c66636585104c966107d57f666c5
+DIST libpng-1.5.26-apng.patch.gz 10318 SHA256 
bcc0d7f1154a5004610a9102f25ce6f35985a6033cfb52887f3f2b11017fcd45 SHA512 
f7e5228fab036e63be3de58f2f85041d834e2292d04682f0b20930d5cd58c078796a8c3d6742cd28c7dc808ac641aa5d5bfe6f8daee5fb2b0b75bfb856170861
 WHIRLPOOL 
449212c403b6e8c5724e402655b42d23ed3e27d3902b219767b663fab08dedc19e684497a1be4326a99ef4b8cc26eb6acdd1ed1b0ccc0c282f19a50b1c831d28
+DIST libpng-1.5.26.tar.xz 748164 SHA256 
7ba4d85efb79e60d7a8a84bca6a0b925e043bfb5c8a47a1b878ab4d3bcd6714d SHA512 
87214671af84665277f0ac3226e6feb41a3e1deb0d7d61e62c99e77d1386fcf928b21f9863c4166a7391230166190bad00e57c3fc42902b3a0a53ba68d4db1f5
 WHIRLPOOL 
e2eda0792fc5f6b41d4f5d878fdf4c8bde0cac2591647a092fed0e6f362fd9c532d265ca7dcdcd8ade9bc23fa385bfa71bd8b532e3d1091202583230a9306724
 DIST libpng-1.6.18-apng.patch.gz 9940 SHA256 
1d595b3b33c09529dddf869ca69f386528dfe1b991d2679377082e2acbca7009 SHA512 

[gentoo-commits] repo/gentoo:master commit in: dev-cpp/gtkmm/

2016-01-16 Thread Pacho Ramos
commit: 5474fa5c70b0b552ff4e445f2fe1190264e9e37d
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sat Jan 16 10:54:18 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sat Jan 16 10:56:40 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5474fa5c

dev-cpp/gtkmm: Drop old

Package-Manager: portage-2.2.26

 dev-cpp/gtkmm/gtkmm-3.18.0.ebuild | 71 ---
 1 file changed, 71 deletions(-)

diff --git a/dev-cpp/gtkmm/gtkmm-3.18.0.ebuild 
b/dev-cpp/gtkmm/gtkmm-3.18.0.ebuild
deleted file mode 100644
index 1e80a45..000
--- a/dev-cpp/gtkmm/gtkmm-3.18.0.ebuild
+++ /dev/null
@@ -1,71 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-GCONF_DEBUG="no"
-
-inherit gnome2 multilib-minimal
-
-DESCRIPTION="C++ interface for GTK+"
-HOMEPAGE="http://www.gtkmm.org;
-
-LICENSE="LGPL-2.1+"
-SLOT="3.0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd 
~x86-freebsd ~amd64-linux ~x86-linux ~x86-solaris"
-IUSE="aqua doc examples test wayland X"
-REQUIRED_USE="|| ( aqua wayland X )"
-
-RDEPEND="
-   >=dev-cpp/glibmm-2.46.1:2[${MULTILIB_USEDEP}]
-   >=x11-libs/gtk+-3.18.0:3[aqua?,wayland?,X?,${MULTILIB_USEDEP}]
-   >=x11-libs/gdk-pixbuf-2.28:2[${MULTILIB_USEDEP}]
-   >=dev-cpp/atkmm-2.24.1[${MULTILIB_USEDEP}]
-   >=dev-cpp/cairomm-1.12.0[${MULTILIB_USEDEP}]
-   >=dev-cpp/pangomm-2.38.1:1.4[${MULTILIB_USEDEP}]
-   >=dev-libs/libsigc++-2.3.2:2[${MULTILIB_USEDEP}]
-   >=media-libs/libepoxy-1.2[${MULTILIB_USEDEP}]
-"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig
-   doc? (
-   media-gfx/graphviz
-   dev-libs/libxslt
-   app-doc/doxygen )
-"
-#  dev-cpp/mm-common"
-# eautoreconf needs mm-common
-
-src_prepare() {
-   if ! use test; then
-   # don't waste time building tests
-   sed 's/^\(SUBDIRS =.*\)tests\(.*\)$/\1\2/' -i Makefile.am 
Makefile.in \
-   || die "sed 1 failed"
-   fi
-
-   if ! use examples; then
-   # don't waste time building tests
-   sed 's/^\(SUBDIRS =.*\)demos\(.*\)$/\1\2/' -i Makefile.am 
Makefile.in \
-   || die "sed 2 failed"
-   fi
-
-   gnome2_src_prepare
-}
-
-multilib_src_configure() {
-   ECONF_SOURCE="${S}" gnome2_src_configure \
-   --enable-api-atkmm \
-   $(multilib_native_use_enable doc documentation) \
-   $(use_enable aqua quartz-backend) \
-   $(use_enable wayland wayland-backend) \
-   $(use_enable X x11-backend)
-}
-
-multilib_src_install() {
-   gnome2_src_install
-}
-
-multilib_src_install_all() {
-   DOCS="AUTHORS ChangeLog PORTING NEWS README"
-   einstalldocs
-}



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

2016-01-16 Thread Sergei Trofimovich
commit: d956b8febb90b3e1bbc2aa57bb48aa51d2fa9f48
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sat Jan 16 10:56:31 2016 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat Jan 16 10:56:51 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d956b8fe

profiles/package.mask: unmask net-im/openfire-4.0.0

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 7c0bc5f..cd17934 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -40,10 +40,6 @@ media-sound/seq24
 # Superseded by gnu-classpath. Removal in 30 days.
 dev-java/gjdoc
 
-# Sergei Trofimovich  (14 Jan 2016)
-# Masked for testing.
->=net-im/openfire-4.0.0
-
 # Michał Górny  (11 Jan 2016)
 # (on behalf of Python team)
 # Masked for testing. python-exec now checks argv[0] to determine



[gentoo-commits] repo/gentoo:master commit in: dev-cpp/gtkmm/files/, dev-cpp/gtkmm/

2016-01-16 Thread Pacho Ramos
commit: 9c9c81dec0e264f29d52d9b9c14df9fc6fe5e63f
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sat Jan 16 10:55:57 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sat Jan 16 10:56:42 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c9c81de

dev-cpp/gtkmm: Fix compilation with gcc-4.7 (#567882 by Émeric Maschino)

Package-Manager: portage-2.2.26

 dev-cpp/gtkmm/files/gtkmm-3.18.0-gcc47.patch | 44 
 dev-cpp/gtkmm/gtkmm-3.18.0-r1.ebuild |  5 +++-
 2 files changed, 48 insertions(+), 1 deletion(-)

diff --git a/dev-cpp/gtkmm/files/gtkmm-3.18.0-gcc47.patch 
b/dev-cpp/gtkmm/files/gtkmm-3.18.0-gcc47.patch
new file mode 100644
index 000..6a70cd6
--- /dev/null
+++ b/dev-cpp/gtkmm/files/gtkmm-3.18.0-gcc47.patch
@@ -0,0 +1,44 @@
+--- a/gtk/src/menushell.ccg2015-07-16 21:00:55.0 +0200
 b/gtk/src/menushell.ccg2015-12-09 01:03:45.127863899 +0100
+@@ -43,7 +43,7 @@ MenuShell::MenuShell(GtkMenuShell* casti
+ {}
+ 
+ // TODO: Why do we need a custom dtor?
+-MenuShell::~MenuShell()
++MenuShell::~MenuShell() noexcept
+ {}
+ 
+ void MenuShell::accelerate(Window& window)
+--- a/gtk/gtkmm/menushell.cc   2015-09-22 11:41:47.0 +0200
 b/gtk/gtkmm/menushell.cc   2015-12-09 01:06:27.641701385 +0100
+@@ -54,7 +54,7 @@ MenuShell::MenuShell(GtkMenuShell* casti
+ {}
+ 
+ // TODO: Why do we need a custom dtor?
+-MenuShell::~MenuShell()
++MenuShell::~MenuShell() noexcept
+ {}
+ 
+ void MenuShell::accelerate(Window& window)
+--- a/gtk/src/widget.ccg   2015-07-16 21:00:55.0 +0200
 b/gtk/src/widget.ccg   2015-12-09 07:36:47.328538621 +0100
+@@ -413,7 +413,7 @@ void Widget_Class::get_preferred_width_f
+ (*base->get_preferred_width_for_height)(self, height, minimum_width, 
natural_width);
+ }
+ 
+-Widget::~Widget()
++Widget::~Widget() noexcept
+ {}
+ 
+ void Widget::reparent(Widget& new_parent)
+--- a/gtk/gtkmm/widget.cc  2015-09-22 11:44:13.0 +0200
 b/gtk/gtkmm/widget.cc  2015-12-09 07:39:29.318214641 +0100
+@@ -423,7 +423,7 @@ void Widget_Class::get_preferred_width_f
+ (*base->get_preferred_width_for_height)(self, height, minimum_width, 
natural_width);
+ }
+ 
+-Widget::~Widget()
++Widget::~Widget() noexcept
+ {}
+ 
+ void Widget::reparent(Widget& new_parent)

diff --git a/dev-cpp/gtkmm/gtkmm-3.18.0-r1.ebuild 
b/dev-cpp/gtkmm/gtkmm-3.18.0-r1.ebuild
index 14aad87..401ce99 100644
--- a/dev-cpp/gtkmm/gtkmm-3.18.0-r1.ebuild
+++ b/dev-cpp/gtkmm/gtkmm-3.18.0-r1.ebuild
@@ -5,7 +5,7 @@
 EAPI="5"
 GCONF_DEBUG="no"
 
-inherit gnome2 multilib-minimal
+inherit eutils gnome2 multilib-minimal
 
 DESCRIPTION="C++ interface for GTK+"
 HOMEPAGE="http://www.gtkmm.org;
@@ -37,6 +37,9 @@ DEPEND="${RDEPEND}
 # eautoreconf needs mm-common
 
 src_prepare() {
+   # Fix building with gcc-4.7, fixed in next version, bug #567882
+   epatch "${FILESDIR}"/${P}-gcc47.patch
+
if ! use test; then
# don't waste time building tests
sed 's/^\(SUBDIRS =.*\)tests\(.*\)$/\1\2/' -i Makefile.am 
Makefile.in \



[gentoo-commits] repo/gentoo:master commit in: x11-apps/copyq/

2016-01-16 Thread Pacho Ramos
commit: 2195ad682ebf8bc87adb0e0dc0b4cbd8c78f153f
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sat Jan 16 11:50:22 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sat Jan 16 11:50:42 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2195ad68

x11-apps/copyq: Drop old

Package-Manager: portage-2.2.26

 x11-apps/copyq/Manifest   |  1 -
 x11-apps/copyq/copyq-2.4.9.ebuild | 51 ---
 2 files changed, 52 deletions(-)

diff --git a/x11-apps/copyq/Manifest b/x11-apps/copyq/Manifest
index 5782a50..e408044 100644
--- a/x11-apps/copyq/Manifest
+++ b/x11-apps/copyq/Manifest
@@ -1,2 +1 @@
-DIST copyq-2.4.9.tar.gz 1415277 SHA256 
0736602eef82bd8ddfb7edb2a4c49b898897f7d25ddc2ae249ed50fd4406a8f4 SHA512 
e790b2d7531a3e4eb3b88af720074ba35aedae8ef530ee89c78d798720fcf5668b52f4c7f27ea22828dbfac33dbf22260f69294e3fff587c2d05a36844210421
 WHIRLPOOL 
0cf03d36a9a7b1f1f62453af30b2301929d0ffc022c7e6290346fe6a9af11cb0a1a7a8128daf10fd73166a9ba4f6c9f2c57899229b1fc404ffe6b81dedfa3b78
 DIST copyq-2.5.0.tar.gz 1428790 SHA256 
7726745056e8d82625531defc75b2a740d3c42131ecce1f3181bc0a0bae51fb1 SHA512 
0489c95fe8365ef9d927e14ad42c01ff9533928e403edbb92d0b9935713d7944edab1f939f100f74a0ddb219c4cf57cedf955362f35d23c706e25c64de725cc7
 WHIRLPOOL 
f41d6ee1bf4fea4ab38bb01b4ef26988bb9968f1a8bc6ed21637318e687419853fc406fe688f01bc83cbce90f67bd9f98db2e48cda80afebcb2bb9897b7e63a5

diff --git a/x11-apps/copyq/copyq-2.4.9.ebuild 
b/x11-apps/copyq/copyq-2.4.9.ebuild
deleted file mode 100644
index e33c6e6..000
--- a/x11-apps/copyq/copyq-2.4.9.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit cmake-utils multilib
-
-DESCRIPTION="Clipboard manager with advanced features"
-HOMEPAGE="https://github.com/hluk/CopyQ;
-SRC_URI="https://github.com/hluk/CopyQ/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-SLOT="0"
-LICENSE="GPL-3"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="qt4 +qt5 test webkit"
-
-REQUIRED_USE="|| ( qt4 qt5 )"
-
-RDEPEND="
-   x11-libs/libX11
-   x11-libs/libXfixes
-   x11-libs/libXtst
-   qt4? (
-   dev-qt/qtcore:4
-   dev-qt/qtgui:4
-   dev-qt/qtscript:4
-   webkit? ( dev-qt/qtwebkit:4 )
-   )
-   qt5? (
-   dev-qt/qtcore:5
-   dev-qt/qtgui:5
-   dev-qt/qtnetwork:5
-   dev-qt/qtscript:5
-   dev-qt/qtwidgets:5
-   webkit? ( dev-qt/qtwebkit:5 )
-   )
-"
-DEPEND="${RDEPEND}"
-
-S="${WORKDIR}"/CopyQ-${PV}
-
-src_configure() {
-   mycmakeargs=(
-   $(cmake-utils_use_with qt5)
-   $(cmake-utils_use_with webkit)
-   $(cmake-utils_use_with test TESTS)
-   -DPLUGIN_INSTALL_PREFIX=/usr/$(get_libdir)/${PN}/plugins/
-   )
-   cmake-utils_src_configure
-}



[gentoo-commits] repo/gentoo:master commit in: x11-apps/copyq/

2016-01-16 Thread Pacho Ramos
commit: 9bd0d1714e44d9af3f4b99c6ffed448414a95054
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sat Jan 16 11:50:10 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sat Jan 16 11:50:39 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9bd0d171

x11-apps/copyq: Version bump

Package-Manager: portage-2.2.26

 x11-apps/copyq/Manifest   |  1 +
 x11-apps/copyq/copyq-2.5.0.ebuild | 55 +++
 2 files changed, 56 insertions(+)

diff --git a/x11-apps/copyq/Manifest b/x11-apps/copyq/Manifest
index db3b0fd..5782a50 100644
--- a/x11-apps/copyq/Manifest
+++ b/x11-apps/copyq/Manifest
@@ -1 +1,2 @@
 DIST copyq-2.4.9.tar.gz 1415277 SHA256 
0736602eef82bd8ddfb7edb2a4c49b898897f7d25ddc2ae249ed50fd4406a8f4 SHA512 
e790b2d7531a3e4eb3b88af720074ba35aedae8ef530ee89c78d798720fcf5668b52f4c7f27ea22828dbfac33dbf22260f69294e3fff587c2d05a36844210421
 WHIRLPOOL 
0cf03d36a9a7b1f1f62453af30b2301929d0ffc022c7e6290346fe6a9af11cb0a1a7a8128daf10fd73166a9ba4f6c9f2c57899229b1fc404ffe6b81dedfa3b78
+DIST copyq-2.5.0.tar.gz 1428790 SHA256 
7726745056e8d82625531defc75b2a740d3c42131ecce1f3181bc0a0bae51fb1 SHA512 
0489c95fe8365ef9d927e14ad42c01ff9533928e403edbb92d0b9935713d7944edab1f939f100f74a0ddb219c4cf57cedf955362f35d23c706e25c64de725cc7
 WHIRLPOOL 
f41d6ee1bf4fea4ab38bb01b4ef26988bb9968f1a8bc6ed21637318e687419853fc406fe688f01bc83cbce90f67bd9f98db2e48cda80afebcb2bb9897b7e63a5

diff --git a/x11-apps/copyq/copyq-2.5.0.ebuild 
b/x11-apps/copyq/copyq-2.5.0.ebuild
new file mode 100644
index 000..0f9fa1d
--- /dev/null
+++ b/x11-apps/copyq/copyq-2.5.0.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+inherit cmake-utils multilib
+
+DESCRIPTION="Clipboard manager with advanced features"
+HOMEPAGE="https://github.com/hluk/CopyQ;
+SRC_URI="https://github.com/hluk/CopyQ/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+SLOT="0"
+LICENSE="GPL-3"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="qt4 +qt5 test webkit"
+
+REQUIRED_USE="|| ( qt4 qt5 )"
+
+RDEPEND="
+   x11-libs/libX11
+   x11-libs/libXfixes
+   x11-libs/libXtst
+   qt4? (
+   dev-qt/qtcore:4
+   dev-qt/qtgui:4
+   dev-qt/qtscript:4
+   webkit? ( dev-qt/qtwebkit:4 )
+   )
+   qt5? (
+   dev-qt/linguist-tools:5
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5
+   dev-qt/qtscript:5
+   dev-qt/qtsvg:5
+   dev-qt/qtwidgets:5
+   webkit? ( dev-qt/qtwebkit:5 )
+   )
+"
+DEPEND="${RDEPEND}
+   qt4? ( test? ( dev-qt/qttest:4 ) )
+   qt5? ( test? ( dev-qt/qttest:5 ) )
+"
+
+S="${WORKDIR}"/CopyQ-${PV}
+
+src_configure() {
+   mycmakeargs=(
+   $(cmake-utils_use_with qt5)
+   $(cmake-utils_use_with webkit)
+   $(cmake-utils_use_with test TESTS)
+   -DPLUGIN_INSTALL_PREFIX=/usr/$(get_libdir)/${PN}/plugins/
+   )
+   cmake-utils_src_configure
+}



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

2016-01-16 Thread Pacho Ramos
commit: 8771c8fcfe63acf56135ead50c616550b6fb4cc3
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sat Jan 16 09:59:18 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sat Jan 16 10:00:08 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8771c8fc

app-office/wps-office: Drop old

Package-Manager: portage-2.2.26

 app-office/wps-office/Manifest |   2 -
 .../wps-office-9.1.0.4975_alpha19_p1.ebuild| 141 -
 2 files changed, 143 deletions(-)

diff --git a/app-office/wps-office/Manifest b/app-office/wps-office/Manifest
index c2c868a..739830c 100644
--- a/app-office/wps-office/Manifest
+++ b/app-office/wps-office/Manifest
@@ -1,4 +1,2 @@
 DIST wps-office_10.1.0.5444~a20_amd64.deb 81954904 SHA256 
19380705962fb6f161dbf2ba40c6a5b5df34dc55b983ac6b1bd1776baeef2069 SHA512 
585bcf5f51c7fec073fdc284501e4f31199f5982badaf879b325b6e49b5e0d4c3eb0d719ce6b5ee180aed8b479531e8f060d036902a4efbe6c632bb0146e6eb3
 WHIRLPOOL 
246fb53eb3122966be033c0bcc20035b86fbd0b8f1a327fa21bbd27ffef14738c61f23d00431e5b7ab93fc95d759e6bc269c128de66ad45488d363f2e3d63d30
 DIST wps-office_10.1.0.5444~a20_i386.deb 81553560 SHA256 
130ac0926ae2c8bc4dc3b3092998556b5d949044d7630cc4d41b5339e6e487f5 SHA512 
02474a9948b1e2907a84522cb7d84a4acbda5bfdd5aa97068b60acf92646ef89858ee1eb5e834be7caa2eeb8c8e3eb33b5fd691d15711e5daf205611dfac0363
 WHIRLPOOL 
8d06d473ae042497173b68bedc3d776c1f3b133428035410c14d24ea12e0a340ab47a1362f60eb6b1113ab48a2bfb9aac55031a878f6097f644477b751130b73
-DIST wps-office_9.1.0.4975~a19p1_amd64.deb 64716800 SHA256 
79a49c9db0c4482c894e3c334e38bd299302e1c4bb4cd387f6a615f9e054a25d SHA512 
f92415eb8d652afa6601dbea8f87949ed05d970e610c5aedebda21f2b0386a80bcea164f86e7c680946302d2f953067fc9891a346353e4f15b547ecb8a3a
 WHIRLPOOL 
b8603756e4d3b09691974966d62f80dbe1ec668ae2eb5d99bbe2ad39a6c944de89292ede651143d894fad2631f7686036cd4a281ed5265a09f1af6361d75ea77
-DIST wps-office_9.1.0.4975~a19p1_i386.deb 66646188 SHA256 
5b843cfc44d062a6b9c8e3b57ca555bc76dba7d03bc489275ebda4388122 SHA512 
79e7ef4b3a7e906aa1811f5caa9bc056994e64c3abbf4ed9b1866d3d935235a092a55623ee4efe2de9a42b8ffe4737deba9cbc24ca187229a82adc05f30ab238
 WHIRLPOOL 
44f9e4f170decc923f47996683a070d32c10fee78b586c7fc160d5d7173c4197abe5384f78cad5b35349199dd2a81a4de7793299f16d708f0703182bad6e1264

diff --git a/app-office/wps-office/wps-office-9.1.0.4975_alpha19_p1.ebuild 
b/app-office/wps-office/wps-office-9.1.0.4975_alpha19_p1.ebuild
deleted file mode 100644
index cd7c16f..000
--- a/app-office/wps-office/wps-office-9.1.0.4975_alpha19_p1.ebuild
+++ /dev/null
@@ -1,141 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-inherit fdo-mime font gnome2-utils unpacker versionator
-
-MY_PV="$(get_version_component_range 1-4)"
-MY_V="$(get_version_component_range 5)"
-
-if [ -z "$(get_version_component_range 6)" ]; then
-   MY_SP=""
-else
-   MY_SP="$(get_version_component_range 6)"
-fi
-
-case ${PV} in
-   *_alpha*)
-   MY_BRANCH=${MY_V/alpha/a}
-   ;;
-   *_beta*)
-   MY_BRANCH=${MY_V/beta/b}
-   ;;
-   *)
-   die "Invalid value for \${PV}: ${PV}"
-   ;;
-esac
-MY_VV=${MY_PV}~${MY_BRANCH}${MY_SP}
-
-DESCRIPTION="WPS Office is an office productivity suite"
-HOMEPAGE="http://linux.wps.cn/;
-
-KEYWORDS="~amd64 ~x86"
-
-SRC_URI="
-   x86? ( 
http://kdl.cc.ksosoft.com/wps-community/download/${MY_BRANCH}/${PN}_${MY_VV}_i386.deb
 )
-   amd64? ( 
http://kdl.cc.ksosoft.com/wps-community/download/${MY_BRANCH}/${PN}_${MY_VV}_amd64.deb
 )
-"
-
-SLOT="0"
-RESTRICT="strip mirror" # mirror as explained at bug #547372
-LICENSE="WPS-EULA"
-IUSE="+sharedfonts"
-
-UNBUNDLED_LIBS="
-"
-#  media-libs/tiff:3
-#  dev-qt/qtwebkit:4
-#  dev-qt/qtcore:4
-#  dev-qt/qtdbus:4
-#  media-libs/phonon
-
-NATIVE_DEPEND="
-   app-arch/bzip2
-   dev-libs/expat
-   dev-libs/glib:2
-   dev-libs/libffi
-   dev-libs/libxml2:2
-   media-libs/fontconfig:1.0
-   media-libs/freetype:2
-   media-libs/glu
-   media-libs/gst-plugins-base:0.10
-   media-libs/gstreamer:0.10
-   media-libs/libpng:1.2
-   virtual/opengl
-   media-libs/tiff:3
-   sys-apps/util-linux
-   sys-libs/zlib
-   x11-libs/libdrm
-   x11-libs/libICE
-   x11-libs/libSM
-   x11-libs/libX11
-   x11-libs/libXau
-   x11-libs/libxcb
-   x11-libs/libXdamage
-   x11-libs/libXdmcp
-   x11-libs/libXext
-   x11-libs/libXfixes
-   x11-libs/libXrender
-   x11-libs/libXxf86vm
-   media-libs/libmng
-   net-print/cups
-"
-RDEPEND="
-   ${UNBUNDLED_LIBS}
-   ${NATIVE_DEPEND}
-   net-nds/openldap
-   dev-db/sqlite:3
-"
-DEPEND=""
-
-S="${WORKDIR}"
-
-src_prepare() {
-   # Remove bundled libs and rely on system versions if possible
-   # Commented lines are about 

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

2016-01-16 Thread Pacho Ramos
commit: fd866d14e2f0dce2133b57c05356cee219faf317
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sat Jan 16 09:59:40 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sat Jan 16 10:00:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd866d14

app-office/wps-office: Version bump

Package-Manager: portage-2.2.26

 app-office/wps-office/Manifest |   2 +
 .../wps-office-10.1.0.5460_alpha20_p1.ebuild   | 141 +
 2 files changed, 143 insertions(+)

diff --git a/app-office/wps-office/Manifest b/app-office/wps-office/Manifest
index 739830c..6213619 100644
--- a/app-office/wps-office/Manifest
+++ b/app-office/wps-office/Manifest
@@ -1,2 +1,4 @@
 DIST wps-office_10.1.0.5444~a20_amd64.deb 81954904 SHA256 
19380705962fb6f161dbf2ba40c6a5b5df34dc55b983ac6b1bd1776baeef2069 SHA512 
585bcf5f51c7fec073fdc284501e4f31199f5982badaf879b325b6e49b5e0d4c3eb0d719ce6b5ee180aed8b479531e8f060d036902a4efbe6c632bb0146e6eb3
 WHIRLPOOL 
246fb53eb3122966be033c0bcc20035b86fbd0b8f1a327fa21bbd27ffef14738c61f23d00431e5b7ab93fc95d759e6bc269c128de66ad45488d363f2e3d63d30
 DIST wps-office_10.1.0.5444~a20_i386.deb 81553560 SHA256 
130ac0926ae2c8bc4dc3b3092998556b5d949044d7630cc4d41b5339e6e487f5 SHA512 
02474a9948b1e2907a84522cb7d84a4acbda5bfdd5aa97068b60acf92646ef89858ee1eb5e834be7caa2eeb8c8e3eb33b5fd691d15711e5daf205611dfac0363
 WHIRLPOOL 
8d06d473ae042497173b68bedc3d776c1f3b133428035410c14d24ea12e0a340ab47a1362f60eb6b1113ab48a2bfb9aac55031a878f6097f644477b751130b73
+DIST wps-office_10.1.0.5460~a20p1_amd64.deb 81891888 SHA256 
5e4844a0da411f2ff01d3b1dd03ff7291799001ee7a78925d8c5dd3ca3fce8d0 SHA512 
ae3ff4923177f6fa8e097099045b7c7c7b03473cb55a074cc84a184e0e263445287783b9a123847645573928393708f0480300132614067c04fd2cb3a11076ec
 WHIRLPOOL 
8d0c6b596401e6dcdc5c11cd3cf2f842a3dbf52232a2b128a8678c86107ddc0aae9191de93bbb555fc3c0b57293348a1998cd20a8bd6063b7deb3855b813856e
+DIST wps-office_10.1.0.5460~a20p1_i386.deb 81407384 SHA256 
cf314da6a7f82a72664633f90bbfc75940a931661c01b6904db5229445d00fd0 SHA512 
d720ca78a35bf60fcdb209bd19b5c0d865da87681e08cf7848a01a76f260f23f5de41ba9d3c635f300cd27518f6b0643f6476970128fbb40429ffbc0d76d945c
 WHIRLPOOL 
edf33b0a1e2ebf2288bf6a6bf3ad216d99efd7bf68fad1c5c1aab216fc42c03ec503dacb60e6140873374006520b6d292ff03455d1368124fab3ab88989169c1

diff --git a/app-office/wps-office/wps-office-10.1.0.5460_alpha20_p1.ebuild 
b/app-office/wps-office/wps-office-10.1.0.5460_alpha20_p1.ebuild
new file mode 100644
index 000..cd7c16f
--- /dev/null
+++ b/app-office/wps-office/wps-office-10.1.0.5460_alpha20_p1.ebuild
@@ -0,0 +1,141 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+inherit fdo-mime font gnome2-utils unpacker versionator
+
+MY_PV="$(get_version_component_range 1-4)"
+MY_V="$(get_version_component_range 5)"
+
+if [ -z "$(get_version_component_range 6)" ]; then
+   MY_SP=""
+else
+   MY_SP="$(get_version_component_range 6)"
+fi
+
+case ${PV} in
+   *_alpha*)
+   MY_BRANCH=${MY_V/alpha/a}
+   ;;
+   *_beta*)
+   MY_BRANCH=${MY_V/beta/b}
+   ;;
+   *)
+   die "Invalid value for \${PV}: ${PV}"
+   ;;
+esac
+MY_VV=${MY_PV}~${MY_BRANCH}${MY_SP}
+
+DESCRIPTION="WPS Office is an office productivity suite"
+HOMEPAGE="http://linux.wps.cn/;
+
+KEYWORDS="~amd64 ~x86"
+
+SRC_URI="
+   x86? ( 
http://kdl.cc.ksosoft.com/wps-community/download/${MY_BRANCH}/${PN}_${MY_VV}_i386.deb
 )
+   amd64? ( 
http://kdl.cc.ksosoft.com/wps-community/download/${MY_BRANCH}/${PN}_${MY_VV}_amd64.deb
 )
+"
+
+SLOT="0"
+RESTRICT="strip mirror" # mirror as explained at bug #547372
+LICENSE="WPS-EULA"
+IUSE="+sharedfonts"
+
+UNBUNDLED_LIBS="
+"
+#  media-libs/tiff:3
+#  dev-qt/qtwebkit:4
+#  dev-qt/qtcore:4
+#  dev-qt/qtdbus:4
+#  media-libs/phonon
+
+NATIVE_DEPEND="
+   app-arch/bzip2
+   dev-libs/expat
+   dev-libs/glib:2
+   dev-libs/libffi
+   dev-libs/libxml2:2
+   media-libs/fontconfig:1.0
+   media-libs/freetype:2
+   media-libs/glu
+   media-libs/gst-plugins-base:0.10
+   media-libs/gstreamer:0.10
+   media-libs/libpng:1.2
+   virtual/opengl
+   media-libs/tiff:3
+   sys-apps/util-linux
+   sys-libs/zlib
+   x11-libs/libdrm
+   x11-libs/libICE
+   x11-libs/libSM
+   x11-libs/libX11
+   x11-libs/libXau
+   x11-libs/libxcb
+   x11-libs/libXdamage
+   x11-libs/libXdmcp
+   x11-libs/libXext
+   x11-libs/libXfixes
+   x11-libs/libXrender
+   x11-libs/libXxf86vm
+   media-libs/libmng
+   net-print/cups
+"
+RDEPEND="
+   ${UNBUNDLED_LIBS}
+   ${NATIVE_DEPEND}
+   net-nds/openldap
+   dev-db/sqlite:3
+"
+DEPEND=""
+
+S="${WORKDIR}"
+
+src_prepare() {
+   # Remove bundled libs and rely on system versions if possible
+   # Commented lines are 

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

2016-01-16 Thread Tim Harder
commit: 10f58c0ba02a2fc41beb834aa5c52124b6fdd0fa
Author: Tim Harder  gentoo  org>
AuthorDate: Sat Jan 16 10:13:32 2016 +
Commit: Tim Harder  gentoo  org>
CommitDate: Sat Jan 16 10:13:56 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10f58c0b

sys-apps/pkgcore: update zsh completion file location

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

diff --git a/sys-apps/pkgcore/pkgcore-.ebuild 
b/sys-apps/pkgcore/pkgcore-.ebuild
index ed12f08..5e72c4c 100644
--- a/sys-apps/pkgcore/pkgcore-.ebuild
+++ b/sys-apps/pkgcore/pkgcore-.ebuild
@@ -68,7 +68,7 @@ python_install_all() {
distutils-r1_python_install_all
 
insinto /usr/share/zsh/site-functions
-   doins shell/zsh-completion/*
+   doins shell/zsh/completion/*
 }
 
 pkg_postinst() {



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

2016-01-16 Thread Pacho Ramos
commit: aa4f70e8cb2b8e4284380fe103f5b63e3ff55bf3
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sat Jan 16 10:13:14 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sat Jan 16 10:13:14 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa4f70e8

profiles/package.mask: mask seq24 for removal

 profiles/package.mask | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/profiles/package.mask b/profiles/package.mask
index c66f297..7c0bc5f 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -30,6 +30,12 @@
 
 #--- END OF EXAMPLES ---
 
+# Pacho Ramos  (16 Jan 2016)
+# Dead for years, not compatible with latest libsigc++ (#569514), it
+# requires either a lot of patching or move to a forked project that tries
+# to continue it. Removal in a month.
+media-sound/seq24
+
 # James Le Cuirot  (14 Jan 2016)
 # Superseded by gnu-classpath. Removal in 30 days.
 dev-java/gjdoc



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

2016-01-16 Thread Patrice Clement
commit: e11d6453d6b442f68fb1df3be3b3b577dc034039
Author: Patrice Clement  gentoo  org>
AuthorDate: Sat Jan 16 10:51:10 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sat Jan 16 10:51:58 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e11d6453

dev-python/google-apitools: Fix DESCRIPTION lenght.

Package-Manager: portage-2.2.26
Signed-off-by: Patrice Clement  gentoo.org>

 dev-python/google-apitools/google-apitools-0.4.11.ebuild | 2 +-
 dev-python/google-apitools/google-apitools-0.4.12.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/google-apitools/google-apitools-0.4.11.ebuild 
b/dev-python/google-apitools/google-apitools-0.4.11.ebuild
index 670ec7c..4a978f9 100644
--- a/dev-python/google-apitools/google-apitools-0.4.11.ebuild
+++ b/dev-python/google-apitools/google-apitools-0.4.11.ebuild
@@ -8,7 +8,7 @@ PYTHON_COMPAT=( python2_7 )
 
 inherit distutils-r1
 
-DESCRIPTION="utilities to make it easier to build client-side tools, 
especially ones that use Google APIs"
+DESCRIPTION="Python library to manipulate Google APIs"
 HOMEPAGE="https://github.com/google/apitools;
 SRC_URI="https://github.com/google/apitools/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
 

diff --git a/dev-python/google-apitools/google-apitools-0.4.12.ebuild 
b/dev-python/google-apitools/google-apitools-0.4.12.ebuild
index bdb38f8..0c28107 100644
--- a/dev-python/google-apitools/google-apitools-0.4.12.ebuild
+++ b/dev-python/google-apitools/google-apitools-0.4.12.ebuild
@@ -8,7 +8,7 @@ PYTHON_COMPAT=( python2_7 )
 
 inherit distutils-r1
 
-DESCRIPTION="utilities to make it easier to build client-side tools, 
especially ones that use Google APIs"
+DESCRIPTION="Python library to manipulate Google APIs"
 HOMEPAGE="https://github.com/google/apitools;
 SRC_URI="https://github.com/google/apitools/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
 



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

2016-01-16 Thread Patrice Clement
commit: 85624d18c85638ad7620d39508029456d39af571
Author: Patrice Clement  gentoo  org>
AuthorDate: Sat Jan 16 10:49:39 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sat Jan 16 10:51:24 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85624d18

dev-python/google-apitools: Regenerate Manifest entries.

Package-Manager: portage-2.2.26
Signed-off-by: Patrice Clement  gentoo.org>

 dev-python/google-apitools/Manifest | 2 --
 1 file changed, 2 deletions(-)

diff --git a/dev-python/google-apitools/Manifest 
b/dev-python/google-apitools/Manifest
index dce6e80..15077b0 100644
--- a/dev-python/google-apitools/Manifest
+++ b/dev-python/google-apitools/Manifest
@@ -1,4 +1,2 @@
 DIST google-apitools-0.4.11.tar.gz 141425 SHA256 
60dae36e70c87909cb8942ebf401bbec50583461c9aa40d24564bc4c3832a550 SHA512 
3ee58add383da4ed0dec2e646b13e840c3bb9d4a7b1adf68293e8e22b3db1f7689d19282236995e9374aa160f0569a2b533e737e3ef4f1f4b60d00ff4d4d1bb9
 WHIRLPOOL 
c96200b26eed1ba92411f295a0f34dda995888687c136d7f0744fa09c5ba9bc6d93f168b4e12d905278128f8a28ecf173f968ee69c6636a580439ec3b5a3a223
 DIST google-apitools-0.4.12.tar.gz 198590 SHA256 
dd69b791b9421d3a9dd782f5a811555dd60ba198a71581186114c3779e6e31d5 SHA512 
6cdb55b94ebf9fcd26e0d4b8659ed44809b5fbd9bbb2830f3352219fb7231b79cf2f8668497a85bc8ea29dbf8b110a081b34c4783f71beb2cd707838e1e107dc
 WHIRLPOOL 
273cb43c7c42d3d99fd9f52484d30583723edcc4d511dfe9512dbf2197ada51a483141b66ac3e1349dcb8fdbde3de2a8c036648abc3e48f3f5dd49b54ca6f949
-DIST google-apitools-0.4.6.tar.gz 122851 SHA256 
1ff89a3b968e83b7fed87e43071decbffa6cfcf8a9adec4342708162b3018d54 SHA512 
9b672776b72fba2edd30f2a9cf098dff352dda78075643d55b10187a0ee12e689982c920f76fe4d745ccab829e3ff1fd9818c306ffba20be93020748750e85b4
 WHIRLPOOL 
abd70f06208e1d8b79cfa8b2cf5f01c40f0c520fbd744aa1bb400efd953fc151c0751045b29fdb9ab1610f995d75d64029fd293a3e6f31fdf3255c0d4dfc
-DIST google-apitools-0.4.8.tar.gz 128587 SHA256 
8d4009c5096cc1a8d9be73399bea678035d12c2e67e0d14dd9a9ceded8d771f7 SHA512 
28570a050cb7e6c839e39f24908734696a72e05cdb6d84376faf637affd8bf116785411402eddccc1cfa692f753acd82c49ad04ccdce1e4aec66fe2b1b901320
 WHIRLPOOL 
ec0cf908fe10e944199f4b677fd26f2099eb085261f7e2f2ff8441ab77f9cc2fe0fede9dd765fba8e47394f64e402e35fc0ad087af473992b35db665d67bc296



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

2016-01-16 Thread Lars Wendler
commit: 25522124d7e09662340c764227e317cccf0478eb
Author: Lars Wendler  gentoo  org>
AuthorDate: Sat Jan 16 11:25:02 2016 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Sat Jan 16 11:25:29 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25522124

media-libs/libpng: Security cleanup (bug #568216).

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

 media-libs/libpng/Manifest |  7 
 media-libs/libpng/libpng-1.2.51.ebuild | 41 ---
 media-libs/libpng/libpng-1.2.54.ebuild | 43 
 media-libs/libpng/libpng-1.2.55.ebuild | 43 
 media-libs/libpng/libpng-1.5.24.ebuild | 60 --
 media-libs/libpng/libpng-1.5.25.ebuild | 60 --
 6 files changed, 254 deletions(-)

diff --git a/media-libs/libpng/Manifest b/media-libs/libpng/Manifest
index 7f19a75..01eee45 100644
--- a/media-libs/libpng/Manifest
+++ b/media-libs/libpng/Manifest
@@ -1,11 +1,4 @@
-DIST libpng-1.2.51.tar.xz 562940 SHA256 
c7d7b813b022afd70474f78bcc3655c7bb54edbf28dd4652e5521cbb6da56d4a SHA512 
63ba0df5eff78b254d53f6cfd4075d3ea93ee9445e37678fc7d29fa116137b2a7c441eda23851638f9185166e408f42c51d0678c466c8376a1de356c7db760f2
 WHIRLPOOL 
d829b07e950c64a8de37591ac5d40211f8e762feff8ff6f98db35714293997304b3eb063ea69a87064e6c66530a4fa2531dadcb1a0bb412066c558a5ff2f679c
-DIST libpng-1.2.54.tar.xz 571448 SHA256 
cf85516482780f2bc2c5b5073902f12b1519019d47bf473326c2018bdff1d272 SHA512 
3fde161bae1c61c0c099344518a59a312ac5bcd6063d7d01be156fd4e048fdaafed8a27e10bf2750d4ef678389e2782137c9e6540b7fd0859b820bb8d9443497
 WHIRLPOOL 
fd985ebc9982e20ec37b9a8889890406a334005648f90e429e71eae02c7308c8d64ff0f34e5a31fc817521d44a45f0740bc221bf73c00ade1ef2e2974fd22b9d
-DIST libpng-1.2.55.tar.xz 655728 SHA256 
5e5227345676fabbba28558f4396514bb06a239eaf69adba12f3669a1650797e SHA512 
d0bc9ebbbcff1c258c333d9ca64c15074d0e01df49b1d937242509b42307aebe22169ae322aa75dc6c60c0c31d29318d184ef8b1b87ae2c9e4d3d4f4c8a4dd45
 WHIRLPOOL 
49c2c3dcd142c5fd377a99495d74950440f4f662af9bf246570d0e99425f2b977c5b1b6b7f407dbc2efef0f93ffb5e1d7c3c25d9ef1dfaeab8ab2f0744e5427b
 DIST libpng-1.2.56.tar.xz 654688 SHA256 
24ce54581468b937734a6ecc86f7e121bc46a90d76a0d948dca08f32ee000dbe SHA512 
b50cd58246590267fb123d8618387897d438cdc9514e69ca346bd09c5013845d2ca35933b236b31af9d81ae738afa7b01e9a332bcf099f4fa0e3b85048a4ac5f
 WHIRLPOOL 
436209348dde13751e8c326b8a9bceacca281e3d59e548af7eb9246fb14ee2f657e3c10437f04148a0c244f2d3bc231260fb57a2cd145d87b5d07ef5e49a8b1d
-DIST libpng-1.5.24-apng.patch.gz 10318 SHA256 
7493734793803598a57f83274258118e9a31f6ec9a20b83a4d851cf359ed966a SHA512 
647bb8a780947b72c7aad1ffc2b2114ed43f22e6c3885621c83694875bcec4516e49b00856fabffd568bfed90748e96117d42e3817e83a25fcb25089e32225ea
 WHIRLPOOL 
38e6616930865bdaf8fa1ecf35bb8af8916f8bc3a9af9e9621455e378d7913b393f8ab3dd823bcc811974021dfdc24f5da95bfb14c3249cf67dc31fe037f80af
-DIST libpng-1.5.24.tar.xz 749016 SHA256 
b92e3474f3136b5d9443ba92822154ebc2573fc6feead90d364ee9ebc3741be2 SHA512 
d6faaba4844de0fbb0786e141265a17128387dd73dfdb5cbd1ab2915430578cd73f3f5efadcaaab966429f1a4908568b60829db63b00aadb320bf0f4a8ff9e78
 WHIRLPOOL 
14631ce41756faf2ec00315d7279a39fd06b488288db24a1d81345ec484a7289d187a579823b1be471e975041d5a1b4f0fbdc763a1a64cfdc29dd4ca71cc789a
-DIST libpng-1.5.25-apng.patch.gz 10305 SHA256 
32c706498b9edde98b8b55374c2188b0d1dce6b60048b167a6d99f97bef2595f SHA512 
602998b5e922cf1e547c5dad79a2a4f2ae81a86f7a3f4693e09e118417508629d66b734317a842d43ac13f213f79ef24a264d6790514d3383cd32eaf40a12b9b
 WHIRLPOOL 
8b2a24181c3c1b47a408283febf5d69cf485cd0665e26721d34873fce2bfb462383e3b40d51edcbfd62308241b1567aa5b4aa649d6343653162047bbba964116
-DIST libpng-1.5.25.tar.xz 748268 SHA256 
1224db3a8df90ce1b07ee67327e6846484450d05b9315a1d56fcc9772c0a51ca SHA512 
41663d277a4a0e59c0a797e34c9cbe17990333b3a93c008fbf449274053847d157ea12b2e93e941661e3921a0c202c395ba334474dd77b7f4d8dd85a76628a48
 WHIRLPOOL 
60afcc4f08855724f11a5ce146c40852b593f4fa3fb6eb2dcee129e59160f5e1fe572842f13434edb849d5f32f72ab02c031c66636585104c966107d57f666c5
 DIST libpng-1.5.26-apng.patch.gz 10318 SHA256 
bcc0d7f1154a5004610a9102f25ce6f35985a6033cfb52887f3f2b11017fcd45 SHA512 
f7e5228fab036e63be3de58f2f85041d834e2292d04682f0b20930d5cd58c078796a8c3d6742cd28c7dc808ac641aa5d5bfe6f8daee5fb2b0b75bfb856170861
 WHIRLPOOL 
449212c403b6e8c5724e402655b42d23ed3e27d3902b219767b663fab08dedc19e684497a1be4326a99ef4b8cc26eb6acdd1ed1b0ccc0c282f19a50b1c831d28
 DIST libpng-1.5.26.tar.xz 748164 SHA256 
7ba4d85efb79e60d7a8a84bca6a0b925e043bfb5c8a47a1b878ab4d3bcd6714d SHA512 
87214671af84665277f0ac3226e6feb41a3e1deb0d7d61e62c99e77d1386fcf928b21f9863c4166a7391230166190bad00e57c3fc42902b3a0a53ba68d4db1f5
 WHIRLPOOL 
e2eda0792fc5f6b41d4f5d878fdf4c8bde0cac2591647a092fed0e6f362fd9c532d265ca7dcdcd8ade9bc23fa385bfa71bd8b532e3d1091202583230a9306724
 DIST libpng-1.6.18-apng.patch.gz 9940 SHA256 

[gentoo-commits] proj/qt:master commit in: www-client/qupzilla/

2016-01-16 Thread Michael Palimaka
commit: 81277184b9c4279a288b56c4038fb68055e841e8
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sat Jan 16 11:41:52 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Jan 16 11:41:52 2016 +
URL:https://gitweb.gentoo.org/proj/qt.git/commit/?id=81277184

www-client/qupzilla: remove unused dependency

Upstream-commit: cbc83e81ba5e234a01985c01524b92221e842da4

Package-Manager: portage-2.2.26

 www-client/qupzilla/qupzilla-.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/www-client/qupzilla/qupzilla-.ebuild 
b/www-client/qupzilla/qupzilla-.ebuild
index 83f2dae..5bfbc63 100644
--- a/www-client/qupzilla/qupzilla-.ebuild
+++ b/www-client/qupzilla/qupzilla-.ebuild
@@ -37,7 +37,6 @@ RDEPEND="dev-libs/openssl:0
>=dev-qt/qtgui-5.5:5
>=dev-qt/qtnetwork-5.5:5
>=dev-qt/qtprintsupport-5.5:5
-   >=dev-qt/qtscript-5.5:5
>=dev-qt/qtsql-5.5:5[sqlite]
>=dev-qt/qtwebengine-5.5:5[widgets]
>=dev-qt/qtwidgets-5.5:5



[gentoo-commits] proj/qt:master commit in: www-client/qupzilla/

2016-01-16 Thread Michael Palimaka
commit: 242e365bc68bd1c2afea0e2c40e387e673744037
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sat Jan 16 11:43:02 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Jan 16 11:43:02 2016 +
URL:https://gitweb.gentoo.org/proj/qt.git/commit/?id=242e365b

www-client/qupzilla: requires Qt 5.6

Upstream-commit: 07f828ddd51ded5d59d1fb997c8ed3b2318ad347

Package-Manager: portage-2.2.26

 www-client/qupzilla/qupzilla-.ebuild | 20 ++--
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/www-client/qupzilla/qupzilla-.ebuild 
b/www-client/qupzilla/qupzilla-.ebuild
index 5bfbc63..b9e361e 100644
--- a/www-client/qupzilla/qupzilla-.ebuild
+++ b/www-client/qupzilla/qupzilla-.ebuild
@@ -32,19 +32,19 @@ SLOT="0"
 IUSE="dbus debug gnome-keyring nonblockdialogs"
 
 RDEPEND="dev-libs/openssl:0
-   >=dev-qt/qtconcurrent-5.5:5
-   >=dev-qt/qtcore-5.5:5
-   >=dev-qt/qtgui-5.5:5
-   >=dev-qt/qtnetwork-5.5:5
-   >=dev-qt/qtprintsupport-5.5:5
-   >=dev-qt/qtsql-5.5:5[sqlite]
-   >=dev-qt/qtwebengine-5.5:5[widgets]
-   >=dev-qt/qtwidgets-5.5:5
+   >=dev-qt/qtconcurrent-5.6:5
+   >=dev-qt/qtcore-5.6:5
+   >=dev-qt/qtgui-5.6:5
+   >=dev-qt/qtnetwork-5.6:5
+   >=dev-qt/qtprintsupport-5.6:5
+   >=dev-qt/qtsql-5.6:5[sqlite]
+   >=dev-qt/qtwebengine-5.6:5[widgets]
+   >=dev-qt/qtwidgets-5.6:5
x11-libs/libX11
-   dbus? ( >=dev-qt/qtdbus-5.5:5 )
+   dbus? ( >=dev-qt/qtdbus-5.6:5 )
gnome-keyring? ( gnome-base/gnome-keyring )"
 DEPEND="${RDEPEND}
-   >=dev-qt/linguist-tools-5.5:5
+   >=dev-qt/linguist-tools-5.6:5
virtual/pkgconfig"
 
 DOCS=( AUTHORS BUILDING CHANGELOG FAQ README.md )



[gentoo-commits] proj/qt:master commit in: www-client/qupzilla/

2016-01-16 Thread Michael Palimaka
commit: 8dfafb59430b324c34379b70a5b13e9392181ce8
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sat Jan 16 11:59:21 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Jan 16 11:59:55 2016 +
URL:https://gitweb.gentoo.org/proj/qt.git/commit/?id=8dfafb59

www-client/qupzilla: remove adobe-flash warnings

Chromium no longer supports NPAPI.

Package-Manager: portage-2.2.26

 www-client/qupzilla/qupzilla-.ebuild | 9 +
 1 file changed, 1 insertion(+), 8 deletions(-)

diff --git a/www-client/qupzilla/qupzilla-.ebuild 
b/www-client/qupzilla/qupzilla-.ebuild
index b9e361e..4f8da83 100644
--- a/www-client/qupzilla/qupzilla-.ebuild
+++ b/www-client/qupzilla/qupzilla-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -98,10 +98,3 @@ src_install() {
emake INSTALL_ROOT="${D}" install
einstalldocs
 }
-
-pkg_postinst() {
-   if has_version www-plugins/adobe-flash; then
-   ewarn "For using adobe flash plugin you may need to run"
-   ewarn "\"paxctl-ng -m /usr/bin/qupzilla\""
-   fi
-}



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

2016-01-16 Thread Michael Palimaka
commit: f47a99716052055980b27e0187bc137b6b1afa5b
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sat Jan 16 12:21:51 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Jan 16 12:21:51 2016 +
URL:https://gitweb.gentoo.org/proj/qt.git/commit/?id=f47a9971

sci-calculators/speedcrunch: remove unfetchable package

 sci-calculators/speedcrunch/metadata.xml   |  5 --
 .../speedcrunch/speedcrunch-.ebuild| 55 --
 2 files changed, 60 deletions(-)

diff --git a/sci-calculators/speedcrunch/metadata.xml 
b/sci-calculators/speedcrunch/metadata.xml
deleted file mode 100644
index ab02f99..000
--- a/sci-calculators/speedcrunch/metadata.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   qt
-

diff --git a/sci-calculators/speedcrunch/speedcrunch-.ebuild 
b/sci-calculators/speedcrunch/speedcrunch-.ebuild
deleted file mode 100644
index 5a747ef..000
--- a/sci-calculators/speedcrunch/speedcrunch-.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=4
-
-inherit cmake-utils git-2
-
-DESCRIPTION="A fast and usable calculator for power users"
-HOMEPAGE="http://speedcrunch.org/;
-EGIT_REPO_URI="git://gitorious.org/${PN}/mainline"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS=""
-IUSE="doc"
-
-LANGS="ar_JO ca_ES cs_CZ de_DE en_US es_ES eu_ES fi_FI fr_FR he_IL id_ID it_IT
-   nb_NO nl_NL pl_PL pt_PT ro_RO ru_RU sv_SE tr_TR zh_CN"
-LANGSLONG="en_GB es_AR pt_BR"
-
-for X in ${LANGS}; do
-   IUSE="${IUSE} linguas_${X%_*}"
-done
-for X in ${LANGSLONG}; do
-   IUSE="${IUSE} linguas_${X}"
-done
-
-DEPEND="dev-qt/qtgui:4"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
-   for X in ${LANGS}; do
-   use linguas_${X%_*} && lrelease "src/locale/${X}.ts"
-   done
-   for X in ${LANGSLONG}; do
-   use linguas_${X} && lrelease "src/locale/${X}.ts"
-   done
-
-   S="${S}/src"
-}
-
-src_install() {
-   cmake-utils_src_install
-
-   # prevent install of empty dir
-   rmdir "${D}/usr/share/${PN}/locale" 2>/dev/null
-
-   cd ..
-   dodoc ChangeLog HACKING README
-   if use doc; then
-   insinto /usr/share/doc/${PF}
-   doins doc/*.pdf
-   fi
-}



[gentoo-commits] proj/qt:master commit in: x11-wm/kwin-standalone/

2016-01-16 Thread Michael Palimaka
commit: 48ff1ca03c64c57d55b69bfd58f6c891c664fae3
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sat Jan 16 12:16:39 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Jan 16 12:16:45 2016 +
URL:https://gitweb.gentoo.org/proj/qt.git/commit/?id=48ff1ca0

x11-wm/kwin-standalone: remove dead package

KWin4 is not seeing any further development, and we always shipped a split
package in Gentoo anyway.

 x11-wm/kwin-standalone/kwin-standalone-.ebuild | 44 --
 x11-wm/kwin-standalone/metadata.xml|  8 
 2 files changed, 52 deletions(-)

diff --git a/x11-wm/kwin-standalone/kwin-standalone-.ebuild 
b/x11-wm/kwin-standalone/kwin-standalone-.ebuild
deleted file mode 100644
index 3e454ac..000
--- a/x11-wm/kwin-standalone/kwin-standalone-.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-inherit cmake-utils git-2
-
-DESCRIPTION="KWin version that only depends on kdelibs"
-HOMEPAGE="https://groups.google.com/group/razor-qt/msg/b1d21a0cb8b665a2;
-SRC_URI=""
-EGIT_REPO_URI="git://anongit.kde.org/clones/kde-workspace/graesslin/kde-workspace.git"
-EGIT_BRANCH="kwin/standalone"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS=""
-IUSE="gles opengl"
-REQUIRED_USE="!opengl? ( gles ) !gles? ( opengl )"
-
-DEPEND="kde-base/kdelibs:4
-   !kde-base/kwin"
-RDEPEND="${DEPEND}"
-
-CMAKE_USE_DIR="${S}/kwin"
-
-src_prepare() {
-   sed -i -e "s:set(KWIN_NAME \"kwin\"):set(KWIN_NAME \"${PN}\"):" \
-   "${CMAKE_USE_DIR}/CMakeLists.txt" || die
-}
-
-src_configure() {
-   mycmakeargs=(
-   $(cmake-utils_use_with gles OpenGLES)
-   $(cmake-utils_use gles KWIN_BUILD_WITH_OPENGLES)
-   $(cmake-utils_use_with opengl OpenGL)
-   -DWITH_X11_Xcomposite=ON
-   -DKWIN_BUILD_OXYGEN=OFF
-   -DKWIN_BUILD_KCMS=OFF
-   -DKWIN_BUILD_KAPPMENU=OFF
-   -DKWIN_BUILD_ACTIVITIES=OFF
-   )
-
-   cmake-utils_src_configure
-}

diff --git a/x11-wm/kwin-standalone/metadata.xml 
b/x11-wm/kwin-standalone/metadata.xml
deleted file mode 100644
index d4d256e..000
--- a/x11-wm/kwin-standalone/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   qt
-   
-   Enable support for GLES.
-   
-



[gentoo-commits] proj/qt:master commit in: x11-misc/ptbatterysystemtray/

2016-01-16 Thread Michael Palimaka
commit: 723716487b632d5b97b42a5887adc714e63d7c56
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sat Jan 16 12:19:55 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Jan 16 12:19:58 2016 +
URL:https://gitweb.gentoo.org/proj/qt.git/commit/?id=72371648

x11-misc/ptbatterysystemtray: remove unfetchable package

 x11-misc/ptbatterysystemtray/metadata.xml  |  5 -
 .../ptbatterysystemtray-.ebuild| 23 --
 2 files changed, 28 deletions(-)

diff --git a/x11-misc/ptbatterysystemtray/metadata.xml 
b/x11-misc/ptbatterysystemtray/metadata.xml
deleted file mode 100644
index dc439f7..000
--- a/x11-misc/ptbatterysystemtray/metadata.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-qt
-

diff --git a/x11-misc/ptbatterysystemtray/ptbatterysystemtray-.ebuild 
b/x11-misc/ptbatterysystemtray/ptbatterysystemtray-.ebuild
deleted file mode 100644
index 5e8b190..000
--- a/x11-misc/ptbatterysystemtray/ptbatterysystemtray-.ebuild
+++ /dev/null
@@ -1,23 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=4
-
-inherit qt4-r2 git-2
-
-DESCRIPTION="A simple battery monitor in the system tray"
-HOMEPAGE="https://gitorious.org/ptbatterysystemtray;
-EGIT_REPO_URI="git://gitorious.org/${PN}/${PN}.git"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS=""
-IUSE="debug"
-
-DEPEND="dev-qt/qtgui:4"
-RDEPEND="${DEPEND}"
-
-src_configure() {
-   eqmake4 ${PN}.pro INSTALL_PREFIX=/usr
-}



[gentoo-commits] proj/qt:master commit in: x11-themes/xcurtheme/

2016-01-16 Thread Michael Palimaka
commit: 97d4ff8ee5b597cec6f1c2733309c9b0d1b2eb0f
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sat Jan 16 12:17:49 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Jan 16 12:17:49 2016 +
URL:https://gitweb.gentoo.org/proj/qt.git/commit/?id=97d4ff8e

x11-themes/xcurtheme: remove unfetchable package

 x11-themes/xcurtheme/metadata.xml  | 11 --
 x11-themes/xcurtheme/xcurtheme-.ebuild | 57 --
 2 files changed, 68 deletions(-)

diff --git a/x11-themes/xcurtheme/metadata.xml 
b/x11-themes/xcurtheme/metadata.xml
deleted file mode 100644
index 2219f17..000
--- a/x11-themes/xcurtheme/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   qt
-   
-   
-   Install the cursorFX converter (lcft)
-   
-   
-
-

diff --git a/x11-themes/xcurtheme/xcurtheme-.ebuild 
b/x11-themes/xcurtheme/xcurtheme-.ebuild
deleted file mode 100644
index a8557af..000
--- a/x11-themes/xcurtheme/xcurtheme-.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit qt4-r2 git-2
-
-DESCRIPTION="Qt utility to change Xcrusor themes without restarting X Server."
-HOMEPAGE="http://gitorious.org/qt-xcurtheme;
-EGIT_REPO_URI="git://gitorious.org/qt-xcurtheme/mainline"
-
-LICENSE="GPL-2 WTFPL-2"
-SLOT="0"
-KEYWORDS=""
-IUSE="tools"
-
-DEPEND="
-   dev-qt/qtgui:4
-   x11-libs/libXcursor
-   x11-libs/libXfixes
-"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
-   sed -i "/QMAKE_LFLAGS_RELEASE/d" xct.pro ||
-   die "xct.pro sed failed";
-   sed -i "/QMAKE_LFLAGS_RELEASE/d" tools/cursorFXconvert/lcft.pro ||
-   die "lcft.pro sed failed";
-}
-
-src_configure() {
-   qt4-r2_src_configure
-   if use tools; then
-   pushd tools/cursorFXconvert/ > /dev/null || die
-   eqmake4
-   popd > /dev/null || die
-   fi
-}
-
-src_compile() {
-   qt4-r2_src_compile
-   if use tools; then
-   pushd tools/cursorFXconvert/ > /dev/null || die
-   emake
-   popd > /dev/null || die
-   fi
-}
-
-src_install() {
-   dobin "${PN}"
-   if use tools; then
-   pushd tools/cursorFXconvert/ > /dev/null || die
-   dobin lcft
-   popd > /dev/null || die
-   fi
-}



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

2016-01-16 Thread Nicolas Bock
commit: 98f7954b614518bac4ef617cb386bff5a04cd966
Author: Nicolas Bock  gentoo  org>
AuthorDate: Sat Jan 16 14:19:24 2016 +
Commit: Nicolas Bock  gentoo  org>
CommitDate: Sat Jan 16 14:26:07 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98f7954b

app-text/jabref-bin: Version bump

Package-Manager: portage-2.2.26

 app-text/jabref-bin/Manifest  |  1 +
 app-text/jabref-bin/jabref-bin-3.2.ebuild | 36 +++
 2 files changed, 37 insertions(+)

diff --git a/app-text/jabref-bin/Manifest b/app-text/jabref-bin/Manifest
index 1506aa8..3bfd586 100644
--- a/app-text/jabref-bin/Manifest
+++ b/app-text/jabref-bin/Manifest
@@ -5,3 +5,4 @@ DIST JabRef-2.11b2.jar 15817749 SHA256 
f811eb98bdef938c9aaeee5e9807c6ea28a8b4d72
 DIST JabRef-2.11b3.jar 16426897 SHA256 
251192bc24448886bb62dbc5d01e0c68ee345c45d83fd586db16e5562894fa78 SHA512 
93f691928948346f2e3891d5a52be14159b6e0e953897d12a839026ae125bae9c97082bf8f2e160bf20fd42d7e81fa5385114c5e7800e17be07666aa4ec0f7ed
 WHIRLPOOL 
ecf0088eb1b30391851a2c30f502b34accd9d4b1e6133f2f06e6e6689160a1dcd74a7f719c3d1e7d8e489f0bcb1f5187a07403d998a0a3256bacf4cbcaa0a2fc
 DIST JabRef-2.11b4.jar 20366631 SHA256 
4f715c5e8849167b234cec2edbf6c8e32f3eaab5b69ff672210746bdb0c9204d SHA512 
28d57d75cbd197e9a2fd9307cfd1cac9f8b2a0855c440db2a06292770a068cf7eb67db1af31f7240f70ddd382b33c30cb10c1d4be7e53cfd302efc1671b6a2a3
 WHIRLPOOL 
6b90bd7668330fa1c41bf2622a3d48acaf98d1b3ae0e5174ec3e85ca12a12f56b6ec42887cda655bdb2863e69899a707eb2be7663dc27f53030315bd3c68da20
 DIST JabRef-3.1.jar 20307649 SHA256 
81adaa1b672535e7b64814b6ad8f6a00e8bcf0a82b0849ba4523e36cd440425d SHA512 
aab648f19feecf64a9afe3e69092736c0c2c177ee3a6c0dc3a9a9a8cea6d5a0d24201abed7048e4b569b0f1bb4736c1ad75df056243293e7b82795f50eb16476
 WHIRLPOOL 
437744b7236249e342ccaba9b08164727017b4136246c04a73c824c0df91e9b9f6d0814294f110ab935fb60bcd60d70f921774dfced0375ea19afafe60451c22
+DIST JabRef-3.2.jar 20246639 SHA256 
5f3d18052019dd10475de6e8e1d3c900300cd7195d6e1e6262fab104d06abadb SHA512 
db7c2cde0e1d858d14b80f7820a729cac97c74a442e65b18d7c8a7366dbc719bef14e652cf44f04256efffd9d42136e2c865347b3975a0450ec13ef4b3cf71c9
 WHIRLPOOL 
6cf53e25ce220750145282567cf4dbd11f6fcb7e90ae18d3cfafc3f2a001c3933ddcae6bfe33dcd9ee495719a795fdf2b313e872aab788176d038b2984888b39

diff --git a/app-text/jabref-bin/jabref-bin-3.2.ebuild 
b/app-text/jabref-bin/jabref-bin-3.2.ebuild
new file mode 100644
index 000..a772901
--- /dev/null
+++ b/app-text/jabref-bin/jabref-bin-3.2.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit eutils java-pkg-2
+
+MY_PV_1="${PV/_beta/b}"
+MY_PV="${MY_PV_1/_rc/}"
+MY_URI_PV_1="${PV/rc/}"
+MY_URI_PV="${MY_URI_PV_1//_/%20}"
+
+DESCRIPTION="Java GUI for managing BibTeX and other bibliographies"
+HOMEPAGE="http://jabref.sourceforge.net/;
+SRC_URI="mirror://sourceforge/jabref/JabRef-${MY_PV}.jar"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="|| ( >=virtual/jre-1.8 >=virtual/jdk-1.8 )"
+
+S="${WORKDIR}"
+
+src_unpack() {
+   cp -v "${DISTDIR}/${A}" . || die
+   jar xf  ${A} images/icons/JabRef-icon-48.png || die
+}
+
+src_install() {
+   java-pkg_newjar "JabRef-${MY_PV}.jar"
+   java-pkg_dolauncher "${PN}" --jar "${PN}.jar"
+   newicon images/icons/JabRef-icon-48.png JabRef-bin-icon.png
+   make_desktop_entry "${PN}" JabRef-bin JabRef-bin-icon Office
+}



[gentoo-commits] proj/crossdev:master commit in: wrappers/

2016-01-16 Thread Mike Frysinger
commit: 2cdf8714b2d575d6e1554b6ed397451b153ae76c
Author: Mike Frysinger  gentoo  org>
AuthorDate: Sat Jan 16 08:21:37 2016 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Sat Jan 16 08:21:37 2016 +
URL:https://gitweb.gentoo.org/proj/crossdev.git/commit/?id=2cdf8714

cross-pkg-config: fix typo w/pkg_config

URL: https://bugs.gentoo.org/570762
Reported-by: Fabio Rossi  inwind.it>
Signed-off-by: Mike Frysinger  gentoo.org>

 wrappers/cross-pkg-config | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/wrappers/cross-pkg-config b/wrappers/cross-pkg-config
index 6b68fa7..e7a234c 100755
--- a/wrappers/cross-pkg-config
+++ b/wrappers/cross-pkg-config
@@ -37,7 +37,7 @@ if [ "$1" = "--cross-pkg-config-install" ] ; then
-e "s:@CROSS_PKG_CONFIG_PATH@:${pkg_path}:" \
"${pkg_config}"
rm -f "${pkg_config}".tmp
-   chmod a+rx "{$pkg_config}"
+   chmod a+rx "${pkg_config}"
exit 0
 fi
 



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

2016-01-16 Thread Pacho Ramos
commit: 905ec0f878f101c8616e84533f598bc07cb3d91a
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sat Jan 16 10:07:58 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sat Jan 16 10:07:58 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=905ec0f8

profiles/package.mask: magicpoint was fixed

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 483c667..c66f297 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -492,11 +492,6 @@ net-misc/yaydl
 www-apps/gallery
 
 # Pacho Ramos  (05 Jan 2016)
-# Not compatible with latest gif, one of the last consumer of old imlib, bug
-# #486248. Removal in a month.
-app-office/magicpoint
-
-# Pacho Ramos  (05 Jan 2016)
 # Doesn't work with current twisted, bug #486810. Removal in a month.
 media-video/coherence
 



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

2016-01-16 Thread Pacho Ramos
commit: b270c97d6067b22a3fe19fba209b6dd6ef5fa69e
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sat Jan 16 10:07:39 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sat Jan 16 10:07:39 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b270c97d

app-office/magicpoint: Drop old

Package-Manager: portage-2.2.26

 app-office/magicpoint/Manifest|   1 -
 app-office/magicpoint/magicpoint-1.13a.ebuild | 132 --
 2 files changed, 133 deletions(-)

diff --git a/app-office/magicpoint/Manifest b/app-office/magicpoint/Manifest
index c969e1e..73d7534 100644
--- a/app-office/magicpoint/Manifest
+++ b/app-office/magicpoint/Manifest
@@ -1,2 +1 @@
-DIST magicpoint-1.13a.tar.gz 890670 SHA256 
205e6752e3cb024bcce0583b43dafc9b89490c0016daa91d2486891edcf2cfc1 SHA512 
c2399826d770f6307128eb1a88593404d5b495203319e0c90edf36e91ce82e2e42b1777cbf473f52376aa4645468ac65920839f94b58d7c9d90f08a961273df9
 WHIRLPOOL 
ed40897f528bd70ef785f5f0c2f5a0b55ad6f14fe9fbc65849b8713d7fa84590d5f668f008d8b0b737db7e95373f5865a85446489ea0790d6e8e206f30bb7d72
 DIST mgp-snap-20121015.tar.gz 886902 SHA256 
21134551d492995b0e6d9a20ecb1f2c1afdbbaef4f529ca6be59a80581c18ac2 SHA512 
fa59b1ec04e2e191b74c25fd3ae9b4c855ad96d23e9e5b071c959f56b9d2064d7bdf9217b5c62c5733cc2d9ec17981947febd7afb2552f1145262225909cc711
 WHIRLPOOL 
6d2086df981a0b67b1bbbf85284e6b7d808f09d0884388fdf83ac69917e7a01440bda34753f6c9f45bbd39640c28ab73509ff4f1ebfcc54f83931ef6a13b568e

diff --git a/app-office/magicpoint/magicpoint-1.13a.ebuild 
b/app-office/magicpoint/magicpoint-1.13a.ebuild
deleted file mode 100644
index 6f97fc0..000
--- a/app-office/magicpoint/magicpoint-1.13a.ebuild
+++ /dev/null
@@ -1,132 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=4
-inherit autotools elisp-common eutils fixheadtails toolchain-funcs
-
-DESCRIPTION="An X11 based presentation tool"
-SRC_URI="ftp://sh.wide.ad.jp/WIDE/free-ware/mgp/${P}.tar.gz
-   ftp://ftp.mew.org/pub/MagicPoint/${P}.tar.gz;
-HOMEPAGE="http://member.wide.ad.jp/wg/mgp/;
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="alpha amd64 ~ppc ~sparc x86"
-IUSE="cjk doc emacs examples gif imlib m17n-lib mng nls truetype"
-
-MY_DEPEND="x11-libs/libICE
-   x11-libs/libSM
-   x11-libs/libXrender
-   x11-libs/libXmu
-   >=media-libs/libpng-1.4
-   gif? ( >=media-libs/giflib-4.0.1 )
-   imlib? ( media-libs/imlib )
-   truetype? ( x11-libs/libXft )
-   emacs? ( virtual/emacs )
-   m17n-lib? ( dev-libs/m17n-lib )
-   mng? ( media-libs/libmng )"
-DEPEND="${MY_DEPEND}
-   sys-devel/autoconf
-   x11-proto/xextproto
-   x11-libs/libxkbfile
-   app-text/rman
-   x11-misc/imake"
-RDEPEND="${MY_DEPEND}
-   nls? ( sys-devel/gettext )
-   truetype? ( cjk? ( media-fonts/sazanami ) )"
-
-SITEFILE=50${PN}-gentoo.el
-
-src_prepare() {
-   epatch \
-   "${FILESDIR}"/${PN}-1.11b-gentoo.diff \
-   "${FILESDIR}"/${P}-implicit-declaration.patch \
-   "${FILESDIR}"/${P}-libpng15.patch
-
-   # fix compability with libpng14
-   sed -i \
-   -e 's:png_set_gray_1_2_4_to_8:png_set_expand_gray_1_2_4_to_8:' \
-   configure.in image/png.c || die
-
-   # bug #85720
-   sed -i -e "s/ungif/gif/g" configure.in || die
-   ht_fix_file configure.in
-   eautoreconf
-}
-
-src_configure() {
-   econf \
-   $(use_enable gif) \
-   $(use_enable imlib) \
-   $(use_enable nls locale) \
-   $(use_enable truetype xft2) \
-   $(use_with m17n-lib) \
-   --disable-vflib \
-   --disable-freetype \
-   --x-libraries=/usr/lib/X11 \
-   --x-includes=/usr/include/X11
-}
-
-src_compile() {
-   xmkmf || die
-   # no parallel build possibly, anywhere
-   emake -j1 Makefiles
-   emake -j1 clean
-   tc-export CC
-   emake -j1 CC="${CC}" CDEBUGFLAGS="${CFLAGS}" LOCAL_LDFLAGS="${LDFLAGS}" 
\
-   BINDIR=/usr/bin LIBDIR=/etc/X11
-   if use emacs; then
-  cd contrib/
-  elisp-compile *.el || die
-   fi
-}
-
-src_install() {
-   emake -j1 \
-   DESTDIR="${D}" \
-   BINDIR=/usr/bin \
-   LIBDIR=/etc/X11 \
-   install
-
-   emake -j1 \
-   DESTDIR="${D}" \
-   DOCHTMLDIR=/usr/share/doc/${PF} \
-   MANPATH=/usr/share/man \
-   MANSUFFIX=1 \
-   install.man
-
-   dobin contrib/{mgp2html.pl,mgp2latex.pl}
-
-   if use emacs; then
-   cd contrib/
-   elisp-install ${PN} *.el *.elc || die
-   elisp-site-file-install "${FILESDIR}/${SITEFILE}"
-   cd -
-   fi
-
-   use doc && dodoc FAQ README* RELNOTES SYNTAX TODO* USAGE*
-
-   if use examples; then
-   

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

2016-01-16 Thread Alexis Ballier
commit: 18ee3a62f967e0d88b33060d8ff905f146a568b3
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Jan 16 14:02:22 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sat Jan 16 14:02:29 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18ee3a62

media-libs/opus: bump to 1.1.2

Package-Manager: portage-2.2.26
Signed-off-by: Alexis Ballier  gentoo.org>

 media-libs/opus/Manifest  |  1 +
 media-libs/opus/opus-1.1.2.ebuild | 36 
 2 files changed, 37 insertions(+)

diff --git a/media-libs/opus/Manifest b/media-libs/opus/Manifest
index e34fae2..acef2f8 100644
--- a/media-libs/opus/Manifest
+++ b/media-libs/opus/Manifest
@@ -1,3 +1,4 @@
 DIST opus-1.0.2.tar.gz 777306 SHA256 
da615edbee5d019c1833071d69a4782c19f178cf9ca1401375036ecef25cd78a SHA512 
73f089ac9c6fcf6adea6c862f6ac0e56712473f9dcaec3aec444a988ded1abcec7fa69da286af38500182dfaf96ba0b6ca52431c39ed08f2aa1caf84ffd43b39
 WHIRLPOOL 
f953cc7f8bd4332524ee403e7dbd9647a29d324a30ef820e5b96a316366ab0a168f55e36a0ab5b239afe7f547874eb28aff1529e38774c1a880da1b7ce7daa86
 DIST opus-1.1.1.tar.gz 957948 SHA256 
9b84ff56bd7720d5554103c557664efac2b8b18acc4bbcc234cb881ab9a3371e SHA512 
1e55ed19f07ed399371aaf92544b3c5fb3d214c8ae67210a709edfede2102a5fa5c6f5b8287d26dcacad62b5c0a591bfe14ee7ae7d846629e5a814a05da4e149
 WHIRLPOOL 
35c20393f308beb56b07b722a78b82ad27d38095a0a4fcc5ad7d39f9dd99c9cae8e4646462faeb769c42e8286089e3d83d8f7cebc0362cdd9da7fb26da21b372
+DIST opus-1.1.2.tar.gz 959767 SHA256 
0e290078e31211baa7b5886bcc8ab6bc048b9fc83882532da4a1a45e58e907fd SHA512 
12ec6613190a09bf6f300fac70bcf927731b707eae2511cebe7098cb49c4bf43dd21a0af4d22900958636949226df50243c432d53dedeacd46a4978729b5fc0d
 WHIRLPOOL 
4de7a13a2102d2d8c9961af0dcc3d24a8b9f6a552bf5db93d7b000a0a379f68407d0fc4576e84522442fbb5115419fd6a4c4dd9fab2b504de27ef3a3b1eb
 DIST opus-1.1.tar.gz 850208 SHA256 
b9727015a58affcf3db527322bf8c4d2fcf39f5f6b8f15dbceca20206cbe1d95 SHA512 
b603efe66d65ef38dbcd0d2bbf213a1d15fa456aee00eca73e99abe4ec78668ed82e661ca7a69e9af4e0bc39e1aa76c4151b7f9840ff621ddcfd69f596cf2ba9
 WHIRLPOOL 
9d53e57d0c99b7e5e330822808f5b79e19bb3fbbffb9054e3d1d421b42fd70463d5fc39517eff1169d218bad8ab2440162c334ace013ffba846cbcfb57206201

diff --git a/media-libs/opus/opus-1.1.2.ebuild 
b/media-libs/opus/opus-1.1.2.ebuild
new file mode 100644
index 000..39593d1
--- /dev/null
+++ b/media-libs/opus/opus-1.1.2.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+inherit autotools-multilib
+
+if [[ ${PV} == * ]] ; then
+   inherit git-2
+   EGIT_REPO_URI="git://git.opus-codec.org/opus.git"
+else
+   SRC_URI="http://downloads.xiph.org/releases/${PN}/${P}.tar.gz;
+   KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd"
+fi
+
+DESCRIPTION="Open versatile codec designed for interactive speech and audio 
transmission over the internet"
+HOMEPAGE="http://opus-codec.org/;
+SRC_URI="http://downloads.xiph.org/releases/opus/${P}.tar.gz;
+
+LICENSE="BSD-2"
+SLOT="0"
+INTRINSIC_FLAGS="cpu_flags_x86_sse neon"
+IUSE="custom-modes doc static-libs ${INTRINSIC_FLAGS}"
+
+DEPEND="doc? ( app-doc/doxygen )"
+
+src_configure() {
+   local myeconfargs=(
+   $(use_enable custom-modes)
+   $(use_enable doc)
+   )
+   for i in ${INTRINSIC_FLAGS} ; do
+   use ${i} && myeconfargs+=( --enable-intrinsics )
+   done
+   autotools-multilib_src_configure
+}



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

2016-01-16 Thread Pacho Ramos
commit: 1df71dbf8a1e0b48f3d9d3a5886003ab261400dd
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sat Jan 16 10:34:08 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sat Jan 16 10:47:49 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1df71dbf

net-misc/networkmanager: Drop old

Package-Manager: portage-2.2.26

 net-misc/networkmanager/Manifest   |   1 -
 .../networkmanager/networkmanager-1.0.8.ebuild | 345 -
 2 files changed, 346 deletions(-)

diff --git a/net-misc/networkmanager/Manifest b/net-misc/networkmanager/Manifest
index 9e862a1..4a00c5c 100644
--- a/net-misc/networkmanager/Manifest
+++ b/net-misc/networkmanager/Manifest
@@ -1,3 +1,2 @@
 DIST NetworkManager-1.0.10.tar.xz 3488600 SHA256 
1bcfce8441dfd9f432a100d06b54f3831a22753b74b1b4c09a011e179fbc SHA512 
0c5df37565c1ec6fafe60fad0ede34d28e7d87200e338489f35eec18c3e88920f47d58eae5a8aba5caeddb26a6f7074e79e8f6a7d4f7584ce3cc9be0df99f1ef
 WHIRLPOOL 
e1a0158d69e444224c25a6287bbe4f3b89d623c85f39a59eb2aeffca83b38cd85ccf067af14e5ff79b23b4346f606e15e3d33b9d097c7ef8d50054fdc5056379
 DIST NetworkManager-1.0.6.tar.xz 3381092 SHA256 
38ea002403e3b884ffa9aae25aea431d2a8420f81f4919761c83fb92648254bd SHA512 
74e8f91bbd9a70f1764b06c729717e091d2be0a8e316fe1b6235e644b65f43add5214be7a1100fe9d30b1511f4a00b9892dce79bb8ba0f0b0d57089d2ba6ddbb
 WHIRLPOOL 
5f1d8c905e4aaa78c742c16e773f8fdbcdb2771edf36565f6b419af457776084573aa43b384ba32885992e76b399d4f2fc7dc94ad4295ac28dcfa3d6b6994b97
-DIST NetworkManager-1.0.8.tar.xz 3409672 SHA256 
8bb128950f8a79ff881afadb46dd55e16f952390cf7cb4e06063431e5144937f SHA512 
f27d22aed52fccd037c67983f845a94152263bfbc3a8d8d5693cd8e115dbd0cdfd28e4bed291fce61840ffa05426d48b3e0a18b9596202a7f5048090caa5d87c
 WHIRLPOOL 
ab550b88a2f68d74f2064ef2a0ae7473f739cd2640b6c365d1ff9f04d8dec51208f96cd46e36fbdb1dd999b109498d8f76cf683fc121168571b5565a8371cde0

diff --git a/net-misc/networkmanager/networkmanager-1.0.8.ebuild 
b/net-misc/networkmanager/networkmanager-1.0.8.ebuild
deleted file mode 100644
index b3970b8..000
--- a/net-misc/networkmanager/networkmanager-1.0.8.ebuild
+++ /dev/null
@@ -1,345 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-GCONF_DEBUG="no"
-GNOME_ORG_MODULE="NetworkManager"
-GNOME2_LA_PUNT="yes"
-VALA_USE_DEPEND="vapigen"
-PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} )
-
-inherit autotools bash-completion-r1 eutils gnome2 linux-info multilib 
python-any-r1 systemd \
-   user readme.gentoo toolchain-funcs vala versionator virtualx udev 
multilib-minimal
-
-DESCRIPTION="A set of co-operative tools that make networking simple and 
straightforward"
-HOMEPAGE="https://wiki.gnome.org/Projects/NetworkManager;
-
-LICENSE="GPL-2+"
-SLOT="0" # add subslot if libnm-util.so.2 or libnm-glib.so.4 bumps soname 
version
-
-IUSE="bluetooth connection-sharing consolekit +dhclient dhcpcd gnutls 
+introspection \
-kernel_linux +nss +modemmanager ncurses +ppp resolvconf selinux systemd teamd 
test \
-vala +wext +wifi zeroconf" # wimax
-
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
-
-REQUIRED_USE="
-   modemmanager? ( ppp )
-   wext? ( wifi )
-   ^^ ( nss gnutls )
-   ^^ ( dhclient dhcpcd )
-"
-
-# gobject-introspection-0.10.3 is needed due to gnome bug 642300
-# wpa_supplicant-0.7.3-r3 is needed due to bug 359271
-# TODO: Qt support?
-COMMON_DEPEND="
-   >=sys-apps/dbus-1.2[${MULTILIB_USEDEP}]
-   >=dev-libs/dbus-glib-0.100[${MULTILIB_USEDEP}]
-   >=dev-libs/glib-2.37.6:2[${MULTILIB_USEDEP}]
-   >=dev-libs/libnl-3.2.8:3=
-   >=sys-auth/polkit-0.106
-   net-libs/libndp
-   >=net-libs/libsoup-2.26:2.4=
-   net-misc/iputils
-   sys-libs/readline:0
-   >=virtual/libgudev-165:=[${MULTILIB_USEDEP}]
-   bluetooth? ( >=net-wireless/bluez-5 )
-   connection-sharing? (
-   net-dns/dnsmasq[dhcp]
-   net-firewall/iptables )
-   gnutls? (
-   dev-libs/libgcrypt:0=[${MULTILIB_USEDEP}]
-   net-libs/gnutls:=[${MULTILIB_USEDEP}] )
-   modemmanager? ( >=net-misc/modemmanager-0.7.991 )
-   ncurses? ( >=dev-libs/newt-0.52.15 )
-   nss? ( >=dev-libs/nss-3.11:=[${MULTILIB_USEDEP}] )
-   dhclient? ( >=net-misc/dhcp-4[client] )
-   dhcpcd? ( >=net-misc/dhcpcd-4.0.0_rc3 )
-   introspection? ( >=dev-libs/gobject-introspection-0.10.3:= )
-   ppp? ( >=net-dialup/ppp-2.4.5:=[ipv6] net-dialup/rp-pppoe )
-   resolvconf? ( net-dns/openresolv )
-   systemd? ( >=sys-apps/systemd-209:0= )
-   !systemd? ( || ( sys-power/upower sys-power/upower-pm-utils ) )
-   teamd? ( >=net-misc/libteam-1.9 )
-   zeroconf? ( net-dns/avahi:=[autoipd] )
-"
-RDEPEND="${COMMON_DEPEND}
-   consolekit? ( sys-auth/consolekit )
-   wifi? ( >=net-wireless/wpa_supplicant-0.7.3-r3[dbus] )
-"
-DEPEND="${COMMON_DEPEND}
-   dev-util/gdbus-codegen
-

[gentoo-commits] repo/gentoo:master commit in: net-misc/networkmanager/files/, net-misc/networkmanager/

2016-01-16 Thread Pacho Ramos
commit: 3a26ff7238436aaf23a73f6f53b3251f5bdd03f0
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sat Jan 16 10:40:01 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sat Jan 16 10:47:51 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a26ff72

net-misc/networkmanager: Fix VPN routes (#571246 by Lu Ran)

Package-Manager: portage-2.2.26

 .../files/networkmanager-1.0.10-vpn-routes.patch   |  51 +++
 .../networkmanager/networkmanager-1.0.10-r1.ebuild | 346 +
 2 files changed, 397 insertions(+)

diff --git 
a/net-misc/networkmanager/files/networkmanager-1.0.10-vpn-routes.patch 
b/net-misc/networkmanager/files/networkmanager-1.0.10-vpn-routes.patch
new file mode 100644
index 000..b7c2be6
--- /dev/null
+++ b/net-misc/networkmanager/files/networkmanager-1.0.10-vpn-routes.patch
@@ -0,0 +1,51 @@
+From 11aa07ed939193e85516c287a57dee1837242972 Mon Sep 17 00:00:00 2001
+From: Thomas Haller 
+Date: Mon, 4 Jan 2016 18:54:26 +0100
+Subject: core: fix failure to configure routes due to wrong device-route for
+ IPv4 peer-addresses
+
+As in the case of a OpenVPN connection, we might add an address like:
+  10.8.0.58/32 ptp 10.8.0.57
+
+In this case, kernel would automatically add a device-route like:
+  10.8.0.57/32 via 0.0.0.0 dev 32 metric 0 mss 0 src rtprot-kernel scope link 
pref-src 10.8.0.58
+
+nm_ip4_config_commit() checks all IP addresses to figure out
+the present device-routes. Then the routes are synced by NMRouteManager.
+Due to a bug, we would not consider the peer-address, but the local-address
+and configure a route 10.8.0.58/32, instead of 10.8.0.57/32.
+
+That stays mostly unnoticed, because usually the peer and the local-address are
+in the same subnet, so that there is no difference (/32 is an example of the
+peer-address being in a different subnet).
+
+It also seems that due to a bug fixed by df4e5357521 this issue didn't surface.
+Probably because we would not notice the 10.8.0.57/32 right away and thus
+nm_route_manager_ip4_route_sync() would not wrongly delete it.
+
+https://bugzilla.gnome.org/show_bug.cgi?id=759892
+
+https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=809195
+https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=809494
+https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=809526
+https://bugs.archlinux.org/task/47535
+https://bugzilla.redhat.com/show_bug.cgi?id=1294309
+https://mail.gnome.org/archives/networkmanager-list/2015-December/msg00059.html
+
+diff --git a/src/nm-ip4-config.c b/src/nm-ip4-config.c
+index f625d35..61e29af 100644
+--- a/src/nm-ip4-config.c
 b/src/nm-ip4-config.c
+@@ -298,7 +298,8 @@ nm_ip4_config_commit (const NMIP4Config *config, int 
ifindex, gboolean routes_fu
+ 
+   route.ifindex = ifindex;
+   route.source = NM_IP_CONFIG_SOURCE_KERNEL;
+-  route.network = 
nm_utils_ip4_address_clear_host_address (addr->address, addr->plen);
++  route.network = 
nm_utils_ip4_address_clear_host_address (addr->peer_address ? : addr->address,
++  
 addr->plen);
+   route.plen = addr->plen;
+   route.pref_src = addr->address;
+   route.metric = default_route_metric;
+-- 
+cgit v0.10.2
+

diff --git a/net-misc/networkmanager/networkmanager-1.0.10-r1.ebuild 
b/net-misc/networkmanager/networkmanager-1.0.10-r1.ebuild
new file mode 100644
index 000..e8d71e3
--- /dev/null
+++ b/net-misc/networkmanager/networkmanager-1.0.10-r1.ebuild
@@ -0,0 +1,346 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+GCONF_DEBUG="no"
+GNOME_ORG_MODULE="NetworkManager"
+GNOME2_LA_PUNT="yes"
+VALA_USE_DEPEND="vapigen"
+PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} )
+
+inherit autotools bash-completion-r1 eutils gnome2 linux-info multilib 
python-any-r1 systemd \
+   user readme.gentoo toolchain-funcs vala versionator virtualx udev 
multilib-minimal
+
+DESCRIPTION="A set of co-operative tools that make networking simple and 
straightforward"
+HOMEPAGE="https://wiki.gnome.org/Projects/NetworkManager;
+
+LICENSE="GPL-2+"
+SLOT="0" # add subslot if libnm-util.so.2 or libnm-glib.so.4 bumps soname 
version
+
+IUSE="bluetooth connection-sharing consolekit +dhclient dhcpcd gnutls 
+introspection \
+kernel_linux +nss +modemmanager ncurses +ppp resolvconf selinux systemd teamd 
test \
+vala +wext +wifi zeroconf" # wimax
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+
+REQUIRED_USE="
+   modemmanager? ( ppp )
+   wext? ( wifi )
+   ^^ ( nss gnutls )
+   ^^ ( dhclient dhcpcd )
+"
+
+# gobject-introspection-0.10.3 is needed due to gnome bug 642300
+# wpa_supplicant-0.7.3-r3 is needed due to bug 359271
+# TODO: Qt support?

[gentoo-commits] repo/gentoo:master commit in: gnome-extra/cinnamon-settings-daemon/

2016-01-16 Thread Pacho Ramos
commit: 94531ada58478e128210df44a83e35bba465e54f
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sat Jan 16 10:42:04 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sat Jan 16 10:47:54 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94531ada

gnome-extra/cinnamon-settings-daemon: Both upower packages are supported by 
upstream (#571722 by Oleg).

Package-Manager: portage-2.2.26

 ...-daemon-2.8.2.ebuild => cinnamon-settings-daemon-2.8.2-r1.ebuild} | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git 
a/gnome-extra/cinnamon-settings-daemon/cinnamon-settings-daemon-2.8.2.ebuild 
b/gnome-extra/cinnamon-settings-daemon/cinnamon-settings-daemon-2.8.2-r1.ebuild
similarity index 95%
rename from 
gnome-extra/cinnamon-settings-daemon/cinnamon-settings-daemon-2.8.2.ebuild
rename to 
gnome-extra/cinnamon-settings-daemon/cinnamon-settings-daemon-2.8.2-r1.ebuild
index c578786..4235b31 100644
--- a/gnome-extra/cinnamon-settings-daemon/cinnamon-settings-daemon-2.8.2.ebuild
+++ 
b/gnome-extra/cinnamon-settings-daemon/cinnamon-settings-daemon-2.8.2-r1.ebuild
@@ -46,8 +46,9 @@ RDEPEND="
x11-drivers/xf86-input-wacom
x11-libs/libXtst )
smartcard? ( >=dev-libs/nss-3.11.2 )
-   systemd? ( sys-apps/systemd:0= >=sys-power/upower-0.9.11:= )
-   !systemd? ( sys-auth/consolekit:0= sys-power/upower-pm-utils )
+   || ( >=sys-power/upower-0.9.11:= sys-power/upower-pm-utils )
+   systemd? ( sys-apps/systemd:0= )
+   !systemd? ( sys-auth/consolekit:0= )
 "
 DEPEND="${RDEPEND}
dev-libs/libxml2:2



[gentoo-commits] repo/gentoo:master commit in: gnome-extra/cinnamon-settings-daemon/

2016-01-16 Thread Pacho Ramos
commit: 54f55b14d082434dcf59a1dd7d86e745576505a4
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sat Jan 16 10:42:37 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sat Jan 16 10:47:57 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54f55b14

gnome-extra/cinnamon-settings-daemon: Drop old

Package-Manager: portage-2.2.26

 gnome-extra/cinnamon-settings-daemon/Manifest  |   1 -
 .../cinnamon-settings-daemon-2.8.1.ebuild  | 105 -
 2 files changed, 106 deletions(-)

diff --git a/gnome-extra/cinnamon-settings-daemon/Manifest 
b/gnome-extra/cinnamon-settings-daemon/Manifest
index 6a55657..0e09d50 100644
--- a/gnome-extra/cinnamon-settings-daemon/Manifest
+++ b/gnome-extra/cinnamon-settings-daemon/Manifest
@@ -1,3 +1,2 @@
 DIST cinnamon-settings-daemon-2.6.3.tar.gz 2992102 SHA256 
b71a515f9eed5efd35ef134f291a9dd9674d81026b23c85377493b53ec1cf0ae SHA512 
ff6ec6be7a134414a525bd5dce6d90570800d0dbfc5f1641b02fbe17389bcf32d47832f5fcd736cdff8dfa09f129f998acd99d9358b1edf5315edb91c8b553ba
 WHIRLPOOL 
9d2fb909fca23f7db2124e56e285e6c7623a9e7d710309f92894a2ab19b6a5a7e92b4e5c947e0cc74513eec30f7fa7bc7464997a1fdc3ff27ad19040579efdb0
-DIST cinnamon-settings-daemon-2.8.1.tar.gz 2934995 SHA256 
2e01f7e8900043f8efb28f33814e70ca12eb12b7d49061ce6d059c1a0b0344a0 SHA512 
a8c1c685ecc6c03e274b2d26c214f24a9300e8ac4355f7d1f6f81ffb4393b079f7e40d1f1d5cb06509e298d55b4d20ca51e9821cd2894b234512d1287daf3689
 WHIRLPOOL 
2a029e3a22af1e3a5b9edfc82184244d5c1d8eb61107466110fc1d33ab3e641651d42ee2675c65db78475edcd03e053468d4b2d019e381046cbf8cdab7c74d85
 DIST cinnamon-settings-daemon-2.8.2.tar.gz 2935087 SHA256 
fc18a16c843c66d5488d73f29b24a1b5dec82fe17d148d97bbab666280c79624 SHA512 
ba24a8411732a21399c91eae0aa562859992bec08dc540897ac132bdfc55834dfffcebd93f687d193da5e92de936078dd47f774b9c8454cfcf174527ee6b8367
 WHIRLPOOL 
67a5c054f9510bfcd4c1778a17d4a33b5742b66e0c131090a963674360bb371b35a8b783fdcc521c28ae0fed2d263ff48ca80a0b9ddf186a3025d581d23e7271

diff --git 
a/gnome-extra/cinnamon-settings-daemon/cinnamon-settings-daemon-2.8.1.ebuild 
b/gnome-extra/cinnamon-settings-daemon/cinnamon-settings-daemon-2.8.1.ebuild
deleted file mode 100644
index b323373..000
--- a/gnome-extra/cinnamon-settings-daemon/cinnamon-settings-daemon-2.8.1.ebuild
+++ /dev/null
@@ -1,105 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-GCONF_DEBUG="yes"
-GNOME2_LA_PUNT="yes"
-
-inherit autotools eutils gnome2 virtualx
-
-DESCRIPTION="Cinnamon's settings daemon"
-HOMEPAGE="http://cinnamon.linuxmint.com/;
-SRC_URI="https://github.com/linuxmint/cinnamon-settings-daemon/archive/${PV}.tar.gz
 -> ${P}.tar.gz"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="+colord cups input_devices_wacom smartcard systemd"
-
-# udev is non-optional since lots of plugins, not just gudev, pull it in
-RDEPEND="
-   >=dev-libs/glib-2.38:2
-   >=gnome-base/libgnomekbd-3.6
-   >=gnome-base/librsvg-2.36.2
-   >=gnome-extra/cinnamon-desktop-2.6.3:0=
-   media-libs/fontconfig
-   >=media-libs/lcms-2.2:2
-   media-libs/libcanberra:0=[gtk3]
-   >=media-sound/pulseaudio-0.9.16:0=
-   sys-apps/dbus
-   >=sys-auth/polkit-0.97
-   || ( >=sys-power/upower-0.9.11:= sys-power/upower-pm-utils )
-   x11-libs/gdk-pixbuf:2
-   >=x11-libs/gtk+-3.9.10:3
-   >=x11-libs/libnotify-0.7.3:0=
-   x11-libs/libX11
-   x11-libs/libXext
-   x11-libs/libXfixes
-   x11-libs/libXi
-   x11-libs/libxklavier
-   virtual/libgudev:=
-
-   colord? ( >=x11-misc/colord-0.1.27:= )
-   cups? ( >=net-print/cups-1.4[dbus] )
-   input_devices_wacom? (
-   >=dev-libs/libwacom-0.7
-   x11-drivers/xf86-input-wacom
-   x11-libs/libXtst )
-   smartcard? ( >=dev-libs/nss-3.11.2 )
-   systemd? ( sys-apps/systemd:0= )
-   !systemd? ( sys-auth/consolekit:0= )
-"
-DEPEND="${RDEPEND}
-   dev-libs/libxml2:2
-   >=dev-util/intltool-0.37.1
-   x11-proto/kbproto
-   virtual/pkgconfig
-"
-
-src_prepare() {
-   # make colord and wacom optional
-   epatch "${FILESDIR}"/${PN}-2.6.2-optional.patch
-
-   # Disable broken test
-   sed -e '/g_test_add_func ("\/color\/edid/d' \
-   -i plugins/color/gcm-self-test.c || die
-
-   # Fix intltool unittest
-   cat >>"${S}"/po/POTFILES.in <

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

2016-01-16 Thread Jeroen Roovers
commit: 13e4d57b5f4b17fa118a39f10183bce1576dbc7c
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sat Jan 16 11:25:12 2016 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sat Jan 16 11:26:51 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13e4d57b

dev-libs/geoip: Version bump.

Package-Manager: portage-2.2.26

 dev-libs/geoip/Manifest   |  1 +
 dev-libs/geoip/geoip-1.6.9.ebuild | 52 +++
 2 files changed, 53 insertions(+)

diff --git a/dev-libs/geoip/Manifest b/dev-libs/geoip/Manifest
index 7f1d707..269af04 100644
--- a/dev-libs/geoip/Manifest
+++ b/dev-libs/geoip/Manifest
@@ -1,2 +1,3 @@
 DIST geoip-1.6.6.tar.gz 156796 SHA256 
db8ed5d07292c75cb3018738e6411037f15cc2a517f38ee04c1232cbe3d30b46 SHA512 
4cdd308500bcb827b3dd1c6d981299ea746251758b6a5df97bf2cf098b62b0a736394d5853a06c62437eb0808cb54efb14d0579f5212284f29016e3c8cdd9846
 WHIRLPOOL 
518749339b094c4166ab53d8ec38020c72f1550923e8c0084f438391dfe7965a9b2f7b3e27ef5ecac85a3f62aa14299e11fbd740ea103c320eef5fad357994b2
 DIST geoip-1.6.7.tar.gz 158276 SHA256 
6f0ee5cd63660a2ab3a8f30df8e7246ee87b0eb33c719843d691c8d010cbabb5 SHA512 
dde9ef65328297604892533ef5d5b568184eb4a29ff95839cb5e39b6652bcfbc53bf64fbcc3b55dad43cf0fca16f5611dbd96ba50f3001d8e212392304bce0b5
 WHIRLPOOL 
2d7e3b94317aa820c55c08be1808b9cc6d8cc38e87733cb1da3c9b3a5bf51212933e266ca105aabd765a08fe87f79f22eae5d8c6e3015a43fc923637273d6795
+DIST geoip-1.6.9.tar.gz 158576 SHA256 
05468adbb6bdbddc588ee6f0df990f47b1b24d278519c35d59f7a8058a2a9825 SHA512 
a3a34511ba32e6c7d0b46b0e608c5be54411cf5b095c867c3225941b55e5714ec7c68de64e0aefcf4ee2081fbd626480067d6bc9822d775decef1f8e26d7e976
 WHIRLPOOL 
4b4a4e4dff60f3b9db456d54b5529c24c93b3e18c4aff0d67d35165e9092fcd7e163ce868f729140f9ee5e3a8f49c19ff8a7324f1b106fd9a81a7896d92288ae

diff --git a/dev-libs/geoip/geoip-1.6.9.ebuild 
b/dev-libs/geoip/geoip-1.6.9.ebuild
new file mode 100644
index 000..445952b
--- /dev/null
+++ b/dev-libs/geoip/geoip-1.6.9.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+inherit autotools eutils
+
+DESCRIPTION="GeoIP Legacy C API"
+HOMEPAGE="https://github.com/maxmind/geoip-api-c;
+SRC_URI="
+   https://github.com/maxmind/${PN}-api-c/archive/v${PV}.tar.gz -> 
${P}.tar.gz
+"
+
+# GPL-2 for md5.c - part of libGeoIPUpdate, MaxMind for GeoLite Country db
+LICENSE="LGPL-2.1 GPL-2 MaxMind2"
+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 ~ia64-linux 
~x86-linux ~x86-macos"
+IUSE="static-libs"
+RESTRICT="test"
+
+DEPEND="net-misc/wget"
+RDEPEND="${DEPEND}"
+
+S="${WORKDIR}/${PN}-api-c-${PV}"
+
+src_prepare() {
+   eautoreconf
+}
+
+src_configure() {
+   econf $(use_enable static-libs static)
+   sed -e "s|@PREFIX@|${ROOT}|g" "${FILESDIR}"/geoipupdate-r5.sh > 
geoipupdate.sh || die
+}
+
+src_install() {
+   default
+
+   dodoc AUTHORS ChangeLog NEWS.md README*
+
+   prune_libtool_files
+
+   keepdir /usr/share/GeoIP
+
+   dosbin geoipupdate.sh
+}
+
+pkg_postinst() {
+   ewarn "WARNING: Databases are no longer installed by this ebuild."
+   elog "Don't forget to run 'geoipupdate.sh -f' (or geoipupdate from"
+   elog "net-misc/geoipupdate) to populate ${ROOT}/usr/share/GeoIP/"
+   elog "with geo-located IP address databases."
+}



[gentoo-commits] repo/gentoo:master commit in: dev-lang/julia/, dev-lang/julia/files/

2016-01-16 Thread Matthias Maier
commit: 9f85644c4b07c3b4340594082da6e3d317e9bea9
Author: Matthias Maier  gentoo  org>
AuthorDate: Sat Jan 16 11:25:10 2016 +
Commit: Matthias Maier  gentoo  org>
CommitDate: Sat Jan 16 11:33:12 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f85644c

dev-lang/julia: version bump to 0.4.3 (bug 564338)

Package-Manager: portage-2.2.26

 dev-lang/julia/Manifest|   2 +
 .../julia/files/julia-0.4.3-fix_build_system.patch | 140 
 dev-lang/julia/julia-0.4.3.ebuild  | 183 +
 3 files changed, 325 insertions(+)

diff --git a/dev-lang/julia/Manifest b/dev-lang/julia/Manifest
index 0316e95..f7fb6e1 100644
--- a/dev-lang/julia/Manifest
+++ b/dev-lang/julia/Manifest
@@ -4,6 +4,8 @@ DIST dsfmt-2.2.tar.gz 291253 SHA256 
bc3947a9b2253a869fcbab8ff395416cb12958be9dba
 DIST julia-0.2.0.tar.bz2 4393404 SHA256 
fecde7b4fbd26093dedd04564ce12b47a232525bf036c7b5f392f369ddc9a514 SHA512 
3e0718c69936959dc717cf511f8fd7086eedb2fd4996519fcdb54a0b0c38d09b5b1c7d239e9e42234aab869446feec88bfd40b5419ae74c9f15bf523a757e898
 WHIRLPOOL 
265650e99028260d1dfe76c504468eca23bad0881790893d8b4b6cd98b0b5a936dc064ee1b661a04c762e2d78d4d23243158f594afef27001c8b4a0de259afff
 DIST julia-0.2.1.tar.gz 1899534 SHA256 
be07283635b1bd73085f0152d3433762c1aaf115faa0e663a94d63f09c34f1b0 SHA512 
67f89d88b2fca355482b2c979d50b865c9a772883bcec3b5cb82d0e096e168153972ada517d078fca1c13352b118ce9f031da162432308025f4437340d5d6635
 WHIRLPOOL 
22c12397e7bd217b628c3ba4e99f5e252011af1106c12abb4f796bcae544972e2d548f4858b30c7c5dfb6ef935fbc4181e3d5dbe3cc8a4bcac922f0b52d75fb3
 DIST julia-0.3.0.tar.gz 2271301 SHA256 
1e9778129231aeff4e5f6100b0b71d2dbc4306cfc92cf533e527907d4a7a9aa1 SHA512 
1f5ac24a62ba791af5edfd1051435a20866fb5c46796e6ddb5037b0bea482a79b86bf77cf76565fd7833d87a9b8f3f03df7d5f537b72c5655bddaaf3e033
 WHIRLPOOL 
b908a2c0bfbe649d102071b6a3207a60cafa38370c3ab7bb10eec3fe258f6d7da76f30bd71f8deba7ab3d40068816ddbf6c7ee42c6b154c0f873c5c67e975d4c
+DIST julia-0.4.3-bundled.tar.gz 2678787 SHA256 
9451160add4c1fa537762627abcd3dd5fecca9ce44f71c4140d89a4bb6b23392 SHA512 
919ca7b99a6eb17a651ce24fe07e5c12bfcee54ce86fac8f744765195002e8f3330df9059fadd5af3408c1f7e067e247ad4bb135879ae4ae43e1457245f90db9
 WHIRLPOOL 
94bb022d4f1586dfdc2f52286db423cb09898a3a5dff2f2086ca111b9117dca808758351dada23cea1056a8e5c3b33f6919410c34af96a92a4a9f8b0e0758783
+DIST julia-0.4.3.tar.gz 5563437 SHA256 
b2c12b267c0d8eb380f6628e7be48c7ec46d2cfb5c585ecb3ca4cc442650e4e0 SHA512 
7d5180c69573452c00563c7b98514fc9e4f0f70762912cf4f90cbf632e4b23ec149295ff1955164833ab94efd1feab992067996e3d60f795850542cf2f18f67f
 WHIRLPOOL 
75c3ebf8cb1af67158896872e098bf66a8073eba3daf6cf5903471d34201e1605458e59f14c19ff5177413daee5aac102ec69a0afe9a93a219698a4640acaf33
 DIST libuv-julia-0.2.1.tar.gz 652078 SHA256 
60a98962ab7e10c924604ccd3373083e8c376a01fcac4bf568058b1f6b026f81 SHA512 
73cc9903d1d9d8b8aa8c02543058f4c407aa6b125eb26506f55115cab212bcb7c1af0d215c2b9ca771f135d3913c1490a510294d658bf8d5a6dbee3dd397226f
 WHIRLPOOL 
42b204b8cb071919b796ed745150b848fabe94668d7fb92a39505c86fefa98f52812ac2bec05821214c7e2c7120b06a47eb66e4a1a2a3acc209264244773faa3
 DIST libuv-julia-0.3.0.tar.bz2 13541514 SHA256 
8bd7461a316ed67928f9bd0a83e9c45083500c9784561647f12bc05629519e26 SHA512 
405df88e102d7a9700ff5c691059283b0509c5236855cba1cccd042493a4deda9397d010e4d6d8a2df8dd03cb6e82597471271bb6f2a58855c6bc6fe84caffcd
 WHIRLPOOL 
a4610ff4382767e02b24922ec8a5e8f7c2df7f53f7710a9270f0b32f53b5b015de64d8f1f466066fe4ce2305adb2bf996c903edb58345ea8e232bd9dd5bc6cfb
 DIST rmath-0_p20140821.tar.bz2 455123 SHA256 
39ea3c27d757b811caeb36d3f5c40ba908365752fbf74e5fdeed42964df09947 SHA512 
22442852e6042fe8ce78252af7e88718a33774d0f34f26dafcd4313bb077f718801d207dded7c5c3368bc7554074fdf5975c615dc35ea0b28b071f2d8f91baf8
 WHIRLPOOL 
dd6de751c46a8e5ca84cf00ba19951b4f1fcc6b80375861f9eeaeea6d15f48cec77661318edc6542ec0bafeb9b05b2be27f5c97173171427c84f48eb24310d7e

diff --git a/dev-lang/julia/files/julia-0.4.3-fix_build_system.patch 
b/dev-lang/julia/files/julia-0.4.3-fix_build_system.patch
new file mode 100644
index 000..c83f043
--- /dev/null
+++ b/dev-lang/julia/files/julia-0.4.3-fix_build_system.patch
@@ -0,0 +1,140 @@
+diff --git a/Make.inc b/Make.inc
+index da01e38..c751607 100644
+--- a/Make.inc
 b/Make.inc
+@@ -297,7 +297,7 @@ JCFLAGS = -std=gnu99 -pipe $(fPIC) -fno-strict-aliasing 
-D_FILE_OFFSET_BITS=64
+ JCPPFLAGS =
+ JCXXFLAGS = -pipe $(fPIC) -fno-rtti
+ DEBUGFLAGS = -O0 -ggdb3 -DJL_DEBUG_BUILD -fstack-protector-all
+-SHIPFLAGS = -O3 -ggdb3 -falign-functions
++SHIPFLAGS = GENTOOCFLAGS
+ endif
+ 
+ ifeq ($(USECLANG),1)
+@@ -307,7 +307,7 @@ JCFLAGS = -pipe $(fPIC) -fno-strict-aliasing 
-D_FILE_OFFSET_BITS=64
+ JCPPFLAGS =
+ JCXXFLAGS = -pipe $(fPIC) -fno-rtti
+ DEBUGFLAGS = -O0 -g -DJL_DEBUG_BUILD -fstack-protector-all
+-SHIPFLAGS = -O3 -g
++SHIPFLAGS =  GENTOOCFLAGS
+ ifeq ($(OS), Darwin)
+ ifeq ($(USE_LIBCPP), 1)
+ CC += -stdlib=libc++ 

[gentoo-commits] repo/gentoo:master commit in: dev-lang/julia/, dev-lang/julia/files/

2016-01-16 Thread Matthias Maier
commit: b98522085a371374df2b878fda7494bec8140591
Author: Matthias Maier  gentoo  org>
AuthorDate: Sat Jan 16 11:26:39 2016 +
Commit: Matthias Maier  gentoo  org>
CommitDate: Sat Jan 16 11:33:13 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9852208

dev-lang/julia: drop old 0.2* versions

Package-Manager: portage-2.2.26

 dev-lang/julia/Manifest   |   5 -
 dev-lang/julia/files/julia-0.2.1-patchelf.patch   |  16 ---
 dev-lang/julia/files/julia-0.2.1-readline63.patch |  17 ---
 dev-lang/julia/julia-0.2.0-r1.ebuild  | 106 ---
 dev-lang/julia/julia-0.2.0.ebuild |  79 ---
 dev-lang/julia/julia-0.2.1-r2.ebuild  | 152 --
 6 files changed, 375 deletions(-)

diff --git a/dev-lang/julia/Manifest b/dev-lang/julia/Manifest
index f7fb6e1..453f540 100644
--- a/dev-lang/julia/Manifest
+++ b/dev-lang/julia/Manifest
@@ -1,12 +1,7 @@
 DIST dSFMT-src-2.2.tar.gz 291253 SHA256 
bc3947a9b2253a869fcbab8ff395416cb12958be9dba10793db2cd7e37b26899 SHA512 
e59d54166dc2df9f6e6abd68658c3624082feabe445215256fead47a8944c41578d11c2b4ba57eac174587a45e445b2aabd867db24fd9e951842513cf914f60b
 WHIRLPOOL 
986b24d8c302f21e305a6bbc6b33e42678c27018c71c566d3f052ce7600fd06c81d77375d08b2b40c0c4aa93ca74cad819a34d0350e33a61f5837f27de7cf193
-DIST double-conversion-1.1.1.tar.gz 7012946 SHA256 
e1cabb73fd69e74f145aea91100cde483aef8b79dc730fcda0a34466730d4d1d SHA512 
e116196eb60077565050995b060049747a3c72e743eea21c6c9fb68414adc533d456d19e1ca241f08895cca97a38511477bdc7d2e0cae38d149c83cb9d6896ad
 WHIRLPOOL 
d69604fbb6e1b5cac8d4dd0f8cf0af4621e32548e9e5061dcb843067a3f821c6f52e918e3e367988076b9ccf0be0ab68107cc6a21b02f4de424a1d98b399fc33
-DIST dsfmt-2.2.tar.gz 291253 SHA256 
bc3947a9b2253a869fcbab8ff395416cb12958be9dba10793db2cd7e37b26899 SHA512 
e59d54166dc2df9f6e6abd68658c3624082feabe445215256fead47a8944c41578d11c2b4ba57eac174587a45e445b2aabd867db24fd9e951842513cf914f60b
 WHIRLPOOL 
986b24d8c302f21e305a6bbc6b33e42678c27018c71c566d3f052ce7600fd06c81d77375d08b2b40c0c4aa93ca74cad819a34d0350e33a61f5837f27de7cf193
-DIST julia-0.2.0.tar.bz2 4393404 SHA256 
fecde7b4fbd26093dedd04564ce12b47a232525bf036c7b5f392f369ddc9a514 SHA512 
3e0718c69936959dc717cf511f8fd7086eedb2fd4996519fcdb54a0b0c38d09b5b1c7d239e9e42234aab869446feec88bfd40b5419ae74c9f15bf523a757e898
 WHIRLPOOL 
265650e99028260d1dfe76c504468eca23bad0881790893d8b4b6cd98b0b5a936dc064ee1b661a04c762e2d78d4d23243158f594afef27001c8b4a0de259afff
-DIST julia-0.2.1.tar.gz 1899534 SHA256 
be07283635b1bd73085f0152d3433762c1aaf115faa0e663a94d63f09c34f1b0 SHA512 
67f89d88b2fca355482b2c979d50b865c9a772883bcec3b5cb82d0e096e168153972ada517d078fca1c13352b118ce9f031da162432308025f4437340d5d6635
 WHIRLPOOL 
22c12397e7bd217b628c3ba4e99f5e252011af1106c12abb4f796bcae544972e2d548f4858b30c7c5dfb6ef935fbc4181e3d5dbe3cc8a4bcac922f0b52d75fb3
 DIST julia-0.3.0.tar.gz 2271301 SHA256 
1e9778129231aeff4e5f6100b0b71d2dbc4306cfc92cf533e527907d4a7a9aa1 SHA512 
1f5ac24a62ba791af5edfd1051435a20866fb5c46796e6ddb5037b0bea482a79b86bf77cf76565fd7833d87a9b8f3f03df7d5f537b72c5655bddaaf3e033
 WHIRLPOOL 
b908a2c0bfbe649d102071b6a3207a60cafa38370c3ab7bb10eec3fe258f6d7da76f30bd71f8deba7ab3d40068816ddbf6c7ee42c6b154c0f873c5c67e975d4c
 DIST julia-0.4.3-bundled.tar.gz 2678787 SHA256 
9451160add4c1fa537762627abcd3dd5fecca9ce44f71c4140d89a4bb6b23392 SHA512 
919ca7b99a6eb17a651ce24fe07e5c12bfcee54ce86fac8f744765195002e8f3330df9059fadd5af3408c1f7e067e247ad4bb135879ae4ae43e1457245f90db9
 WHIRLPOOL 
94bb022d4f1586dfdc2f52286db423cb09898a3a5dff2f2086ca111b9117dca808758351dada23cea1056a8e5c3b33f6919410c34af96a92a4a9f8b0e0758783
 DIST julia-0.4.3.tar.gz 5563437 SHA256 
b2c12b267c0d8eb380f6628e7be48c7ec46d2cfb5c585ecb3ca4cc442650e4e0 SHA512 
7d5180c69573452c00563c7b98514fc9e4f0f70762912cf4f90cbf632e4b23ec149295ff1955164833ab94efd1feab992067996e3d60f795850542cf2f18f67f
 WHIRLPOOL 
75c3ebf8cb1af67158896872e098bf66a8073eba3daf6cf5903471d34201e1605458e59f14c19ff5177413daee5aac102ec69a0afe9a93a219698a4640acaf33
-DIST libuv-julia-0.2.1.tar.gz 652078 SHA256 
60a98962ab7e10c924604ccd3373083e8c376a01fcac4bf568058b1f6b026f81 SHA512 
73cc9903d1d9d8b8aa8c02543058f4c407aa6b125eb26506f55115cab212bcb7c1af0d215c2b9ca771f135d3913c1490a510294d658bf8d5a6dbee3dd397226f
 WHIRLPOOL 
42b204b8cb071919b796ed745150b848fabe94668d7fb92a39505c86fefa98f52812ac2bec05821214c7e2c7120b06a47eb66e4a1a2a3acc209264244773faa3
 DIST libuv-julia-0.3.0.tar.bz2 13541514 SHA256 
8bd7461a316ed67928f9bd0a83e9c45083500c9784561647f12bc05629519e26 SHA512 
405df88e102d7a9700ff5c691059283b0509c5236855cba1cccd042493a4deda9397d010e4d6d8a2df8dd03cb6e82597471271bb6f2a58855c6bc6fe84caffcd
 WHIRLPOOL 
a4610ff4382767e02b24922ec8a5e8f7c2df7f53f7710a9270f0b32f53b5b015de64d8f1f466066fe4ce2305adb2bf996c903edb58345ea8e232bd9dd5bc6cfb
 DIST rmath-0_p20140821.tar.bz2 455123 SHA256 
39ea3c27d757b811caeb36d3f5c40ba908365752fbf74e5fdeed42964df09947 SHA512 

[gentoo-commits] repo/gentoo:master commit in: dev-cpp/antlr-cpp/

2016-01-16 Thread James Le Cuirot
commit: ca594fba1f673cf1372c8cfcfb4ec07a6eb4238b
Author: James Le Cuirot  gentoo  org>
AuthorDate: Sat Jan 16 13:57:23 2016 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Sat Jan 16 13:57:23 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca594fba

dev-cpp/antlr-cpp: Add ~arm keyword, closes bug #572028

Package-Manager: portage-2.2.26

 dev-cpp/antlr-cpp/antlr-cpp-2.7.7.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-cpp/antlr-cpp/antlr-cpp-2.7.7.ebuild 
b/dev-cpp/antlr-cpp/antlr-cpp-2.7.7.ebuild
index da15ded..25e2a82 100644
--- a/dev-cpp/antlr-cpp/antlr-cpp-2.7.7.ebuild
+++ b/dev-cpp/antlr-cpp/antlr-cpp-2.7.7.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -20,7 +20,7 @@ HOMEPAGE="http://www.antlr2.org/;
 SRC_URI="http://www.antlr2.org/download/${MY_P}.tar.gz;
 LICENSE="public-domain"
 SLOT="2"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="~amd64 ~arm ~ppc ~x86"
 IUSE="doc examples static-libs"
 RESTRICT="test" # No tests but test target blows up!
 



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

2016-01-16 Thread Michał Górny
commit: 4c89f34ebc524e25dc7f337552e21de9ccb6ed47
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Jan 16 09:48:55 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Jan 16 09:57:55 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c89f34e

dev-util/sysdig: Bump to 0.6.0

 dev-util/sysdig/Manifest|  1 +
 dev-util/sysdig/sysdig-0.6.0.ebuild | 85 +
 2 files changed, 86 insertions(+)

diff --git a/dev-util/sysdig/Manifest b/dev-util/sysdig/Manifest
index 938916b..9c7bc3e 100644
--- a/dev-util/sysdig/Manifest
+++ b/dev-util/sysdig/Manifest
@@ -2,3 +2,4 @@ DIST sysdig-0.1.104.tar.gz 459784 SHA256 
05a7ed95a1b73053cae0a77de199e84d7c98040
 DIST sysdig-0.1.92.tar.xz 244728 SHA256 
794ae6cef6ab8dae029979f5985b72c15f209e927518a3881e8a7624d77d5132 SHA512 
661af8eece353ba0b0ea518496da89f4525f767c2797ff9f9e5caf670b6b3e7fa0c5cb14c3852971f563b665b42105a143d458a041b270d7107a403b2ec98b11
 WHIRLPOOL 
bb47d717bcb3c5c948f4344a56e45996cfe275a48ea19f0fa12c2fce91f81fad317c9b5c05812e9c2aaf02240b597fb85f60a5ad3ee391a1a825de62a7eab57c
 DIST sysdig-0.1.98.tar.xz 263328 SHA256 
5d60896ad2997f3dcf5d7252a53f5f7808ded11bd7c63f3a8c21421f018f SHA512 
8e4ab622fd0d69567e63054df256bfddda5765e2cf4d89490cd871625e4bb16d3d25ecbf0965f00e312d03ef3044615a7fd94d2f704b1a833ae1da9e2f66f33a
 WHIRLPOOL 
a96f8e8635d03351e4f42e8b3959c890a63a1232df5c9cc03f9359e18a926e23561e4f4fb10986285ff757e3ee47305a7fde01905541984e5582ba740962db70
 DIST sysdig-0.5.1.tar.gz 505015 SHA256 
dad586680f1615a769143d54a9ed19753dc0a4be164c680cc14dd2910a989623 SHA512 
87fd22ef8d9c54b609d6e7a01f388b677159034ed462ec62c51d11ac8af6f2af872eed7274f6a04c5a4c47f8ba88844596524762ddcd017da05943ca7d1d773f
 WHIRLPOOL 
4679453c6e45c70a06a923f75e1093c304a3a650601e67215564b3b5c211736d6484773c2f0dad76f6d0e2dbd47d645d77adaf71a5d8f12a0ac999bf11e726bf
+DIST sysdig-0.6.0.tar.gz 511512 SHA256 
e30da5c5385503164e2198f5a126aa9ffd212efd00e192c89aa7dd97b4ac491c SHA512 
2af30c5d487d0386554e6f74c5ef66df201b4c3f0b1ce9dc0002c193213359e549ab4f216e1cec41c7f36ac3aeeefa928821795b28f012f7786d35993e09691e
 WHIRLPOOL 
b760bbd7e489e97ce67c1448ba02d0755522a25c64e32e2d12ecb3e34aa40b107bf707fff1202da4df19c7dc79dc3ff5c35b23961e6ec8d42aa5a92c115a4098

diff --git a/dev-util/sysdig/sysdig-0.6.0.ebuild 
b/dev-util/sysdig/sysdig-0.6.0.ebuild
new file mode 100644
index 000..ac347bf
--- /dev/null
+++ b/dev-util/sysdig/sysdig-0.6.0.ebuild
@@ -0,0 +1,85 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+# cmake generates make-specific code
+#: ${CMAKE_MAKEFILE_GENERATOR:=ninja}
+inherit linux-mod bash-completion-r1 cmake-utils
+
+DESCRIPTION="A system exploration and troubleshooting tool"
+HOMEPAGE="http://www.sysdig.org/;
+SRC_URI="https://github.com/draios/sysdig/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="+modules"
+
+RDEPEND="
+   dev-lang/luajit:2=
+   >=dev-libs/jsoncpp-0.6_pre:0=
+   dev-libs/libb64:0=
+   sys-libs/ncurses:0=
+   sys-libs/zlib:0=
+   dev-libs/openssl:0=
+   net-misc/curl:0="
+DEPEND="${RDEPEND}
+   app-arch/xz-utils
+   virtual/os-headers"
+
+# needed for the kernel module
+CONFIG_CHECK="HAVE_SYSCALL_TRACEPOINTS ~TRACEPOINTS"
+
+pkg_pretend() {
+   use modules && linux-mod_pkg_setup
+}
+
+pkg_setup() {
+   use modules && linux-mod_pkg_setup
+}
+
+src_prepare() {
+   sed -i -e 's:-ggdb::' CMakeLists.txt || die
+
+   cmake-utils_src_prepare
+}
+
+src_configure() {
+   local mycmakeargs=(
+   # we will use linux-mod for that
+   -DBUILD_DRIVER=OFF
+   # libscap examples are not installed or really useful
+   -DBUILD_LIBSCAP_EXAMPLES=OFF
+
+   # unbundle the deps
+   -DUSE_BUNDLED_DEPS=OFF
+   )
+
+   cmake-utils_src_configure
+
+   # setup linux-mod ugliness
+   MODULE_NAMES="sysdig-probe(extra:${BUILD_DIR}/driver:)"
+   BUILD_PARAMS='KERNELDIR="${KERNEL_DIR}"'
+   BUILD_TARGETS="driver"
+}
+
+src_compile() {
+   cmake-utils_src_compile
+
+   use modules && linux-mod_src_compile
+}
+
+src_install() {
+   cmake-utils_src_install
+
+   use modules && linux-mod_src_install
+
+   # remove sources
+   rm -r "${ED%/}"/usr/src || die
+
+   # move bashcomp to the proper location
+   dobashcomp "${ED%/}"/usr/etc/bash_completion.d/sysdig || die
+   rm -r "${ED%/}"/usr/etc || die
+}



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

2016-01-16 Thread Mike Frysinger
commit: 9511906a1b16034f98c9f9adee91ed4cb875c620
Author: Mike Frysinger  gentoo  org>
AuthorDate: Sat Jan 16 09:58:20 2016 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Sat Jan 16 09:59:04 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9511906a

toolchain.eclass: move cross-compiler libcc1 out of /usr/lib #547754

I'm not entirely happy with this logic, but as other related bugs are
addressed, this will probably evolve with them.  This at least unblocks
people trying to use gcc-5 cross-compilers.

 eclass/toolchain.eclass | 14 ++
 1 file changed, 14 insertions(+)

diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass
index 6d704fb..23b0fa7 100644
--- a/eclass/toolchain.eclass
+++ b/eclass/toolchain.eclass
@@ -104,6 +104,7 @@ INCLUDEPATH=${TOOLCHAIN_INCLUDEPATH:-${LIBPATH}/include}
 
 if is_crosscompile ; then

BINPATH=${TOOLCHAIN_BINPATH:-${PREFIX}/${CHOST}/${CTARGET}/gcc-bin/${GCC_CONFIG_VER}}
+   HOSTLIBPATH=${PREFIX}/${CHOST}/${CTARGET}/lib/${GCC_CONFIG_VER}
 else

BINPATH=${TOOLCHAIN_BINPATH:-${PREFIX}/${CTARGET}/gcc-bin/${GCC_CONFIG_VER}}
 fi
@@ -1699,6 +1700,8 @@ toolchain_src_install() {
 
# Now do the fun stripping stuff
env RESTRICT="" CHOST=${CHOST} prepstrip "${D}${BINPATH}"
+   is_crosscompile && \
+   env RESTRICT="" CHOST=${CHOST} prepstrip "${D}/${HOSTLIBPATH}"
env RESTRICT="" CHOST=${CTARGET} prepstrip "${D}${LIBPATH}"
# gcc used to install helper binaries in lib/ but then moved to libexec/
[[ -d ${D}${PREFIX}/libexec/gcc ]] && \
@@ -1779,6 +1782,17 @@ gcc_movelibs() {
# older versions of gcc did not support --print-multi-os-directory
tc_version_is_at_least 3.2 || return 0
 
+   # For non-target libs which are for CHOST and not CTARGET, we want to
+   # move them to the compiler-specific CHOST internal dir.  This is stuff
+   # that you want to link against when building tools rather than building
+   # code to run on the target.
+   if tc_version_is_at_least 5 && is_crosscompile ; then
+   dodir "${HOSTLIBPATH}"
+   mv "${D}"/usr/$(get_libdir)/libcc1* "${D}${HOSTLIBPATH}" || die
+   fi
+
+   # For all the libs that are built for CTARGET, move them into the
+   # compiler-specific CTARGET internal dir.
local x multiarg removedirs=""
for multiarg in $($(XGCC) -print-multi-lib) ; do
multiarg=${multiarg#*;}



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

2016-01-16 Thread Agostino Sarubbo
commit: 08e48ba8e7a94d12d6557835fabf33c70d4d4067
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat Jan 16 11:08:39 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat Jan 16 11:08:39 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08e48ba8

media-libs/libpng: x86 stable wrt bug #568216

Package-Manager: portage-2.2.26
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 media-libs/libpng/libpng-1.2.56.ebuild | 2 +-
 media-libs/libpng/libpng-1.5.26.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-libs/libpng/libpng-1.2.56.ebuild 
b/media-libs/libpng/libpng-1.2.56.ebuild
index b030ed9..354bed5 100644
--- a/media-libs/libpng/libpng-1.2.56.ebuild
+++ b/media-libs/libpng/libpng-1.2.56.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz"
 
 LICENSE="libpng"
 SLOT="1.2"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc64 ~s390 ~sh 
~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc64 ~s390 ~sh 
~sparc x86 ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
 IUSE=""
 
 RDEPEND=">=sys-libs/zlib-1.2.8-r1:=[${MULTILIB_USEDEP}]

diff --git a/media-libs/libpng/libpng-1.5.26.ebuild 
b/media-libs/libpng/libpng-1.5.26.ebuild
index 31db50d..288b529 100644
--- a/media-libs/libpng/libpng-1.5.26.ebuild
+++ b/media-libs/libpng/libpng-1.5.26.ebuild
@@ -15,7 +15,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz
 
 LICENSE="libpng"
 SLOT="1.5"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd 
~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris 
~x86-winnt"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd 
~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris 
~x86-winnt"
 IUSE="apng neon"
 
 RDEPEND="sys-libs/zlib:=[${MULTILIB_USEDEP}]



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

2016-01-16 Thread Agostino Sarubbo
commit: 9aa0b222cda77c39c5ffebc5999e020082013fa7
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat Jan 16 11:08:13 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat Jan 16 11:08:13 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9aa0b222

media-libs/libpng: amd64 stable wrt bug #568216

Package-Manager: portage-2.2.26
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 media-libs/libpng/libpng-1.2.56.ebuild | 2 +-
 media-libs/libpng/libpng-1.5.26.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-libs/libpng/libpng-1.2.56.ebuild 
b/media-libs/libpng/libpng-1.2.56.ebuild
index 971489a..b030ed9 100644
--- a/media-libs/libpng/libpng-1.2.56.ebuild
+++ b/media-libs/libpng/libpng-1.2.56.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz"
 
 LICENSE="libpng"
 SLOT="1.2"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc64 ~s390 ~sh 
~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc64 ~s390 ~sh 
~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
 IUSE=""
 
 RDEPEND=">=sys-libs/zlib-1.2.8-r1:=[${MULTILIB_USEDEP}]

diff --git a/media-libs/libpng/libpng-1.5.26.ebuild 
b/media-libs/libpng/libpng-1.5.26.ebuild
index b7bb55e..31db50d 100644
--- a/media-libs/libpng/libpng-1.5.26.ebuild
+++ b/media-libs/libpng/libpng-1.5.26.ebuild
@@ -15,7 +15,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz
 
 LICENSE="libpng"
 SLOT="1.5"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd 
~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris 
~x86-winnt"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd 
~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris 
~x86-winnt"
 IUSE="apng neon"
 
 RDEPEND="sys-libs/zlib:=[${MULTILIB_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: app-editors/gedit/

2016-01-16 Thread Pacho Ramos
commit: 98955368f331277dfb1790675b79b4d5e2986f68
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sat Jan 16 11:14:39 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sat Jan 16 11:21:52 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98955368

app-editors/gedit: Version bump

Package-Manager: portage-2.2.26

 app-editors/gedit/Manifest|   1 +
 app-editors/gedit/gedit-3.18.3.ebuild | 104 ++
 2 files changed, 105 insertions(+)

diff --git a/app-editors/gedit/Manifest b/app-editors/gedit/Manifest
index 49d93a6..c93269b 100644
--- a/app-editors/gedit/Manifest
+++ b/app-editors/gedit/Manifest
@@ -1,2 +1,3 @@
 DIST gedit-3.16.4.tar.xz 2925984 SHA256 
210937ea9143d8a6c9580a7ab11acf60d478f516d591ace6c8384fb085fb4cc0 SHA512 
6320e11f6387b317789f6af4bdbb54350af89bd00c1443b26e68afdacf87c672ca74caf50c9ead80f4395a826d07a8da640e5d5ae89f71bccf75da683f420a81
 WHIRLPOOL 
057a7ecf22d12fa4899d20e3e365000bfe5c39873edc1331a75c1a061a5ce601b69d5ffaec1685cf0751ab0d7feff68e4d8be024654afdf90a6c08d0193aa2e9
 DIST gedit-3.18.2.tar.xz 2915772 SHA256 
856e451aec29ee45980011de57cadfe89c3cbc53968f6cc865f8efe0bd0d49b1 SHA512 
e81382b74749c4592565bab25d47784a3206e033e6b0e5d5a557403590dafd130e41b31bcecc820a3d9823a48f8e94907bc9bb0335121e369abaca1360a95b30
 WHIRLPOOL 
87b40323caa707a4ce68d5efc299075883a1fc01e1def15f9052802bccae9075c3aa8c50d36062bb96060421008c510d3c0600fd359950a06ae651e3b56553e5
+DIST gedit-3.18.3.tar.xz 2933132 SHA256 
6762ac0d793b0f754a2da5f88739d04fa39daa7491c5c46401d24bcef76c32e7 SHA512 
8866bc0958dfcf59e5eac0f3c39f2b5f252ffac78a25551968f539f73ebc25cc792ded93899c066339e9b6927f86d6e5ac583df9b9c4d7f0b07d1cc7683e7eb2
 WHIRLPOOL 
fc60b4d251519057eab978a454a2eb0f6741fd097b58f1ac9614413bdab93e15a5f83132ed14f53ae6a6a49a94e9b78a8acce855d229a8f964fefae044a796e8

diff --git a/app-editors/gedit/gedit-3.18.3.ebuild 
b/app-editors/gedit/gedit-3.18.3.ebuild
new file mode 100644
index 000..c7b16ad
--- /dev/null
+++ b/app-editors/gedit/gedit-3.18.3.ebuild
@@ -0,0 +1,104 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+GCONF_DEBUG="no"
+GNOME2_LA_PUNT="yes" # plugins are dlopened
+PYTHON_COMPAT=( python3_{3,4,5} )
+VALA_MIN_API_VERSION="0.26"
+VALA_USE_DEPEND="vapigen"
+
+inherit eutils gnome2 multilib python-r1 vala virtualx
+
+DESCRIPTION="A text editor for the GNOME desktop"
+HOMEPAGE="https://wiki.gnome.org/Apps/Gedit;
+
+LICENSE="GPL-2+ CC-BY-SA-3.0"
+SLOT="0"
+
+IUSE="+introspection +python spell vala"
+# python-single-r1 would request disabling PYTHON_TARGETS on libpeas
+# we need to fix that
+REQUIRED_USE="
+   python? ( introspection )
+   python? ( ^^ ( $(python_gen_useflags '*') ) )
+"
+
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux 
~x86-linux"
+
+# X libs are not needed for OSX (aqua)
+COMMON_DEPEND="
+   >=dev-libs/libxml2-2.5.0:2
+   >=dev-libs/glib-2.44:2[dbus]
+   >=x11-libs/gtk+-3.16:3[introspection?]
+   >=x11-libs/gtksourceview-3.18:3.0[introspection?]
+   >=dev-libs/libpeas-1.14.1[gtk]
+
+   gnome-base/gsettings-desktop-schemas
+   gnome-base/gvfs
+
+   x11-libs/libX11
+
+   net-libs/libsoup:2.4
+
+   introspection? ( >=dev-libs/gobject-introspection-0.9.3:= )
+   python? (
+   ${PYTHON_DEPS}
+   dev-python/pycairo[${PYTHON_USEDEP}]
+   >=dev-python/pygobject-3:3[cairo,${PYTHON_USEDEP}]
+   dev-libs/libpeas[${PYTHON_USEDEP}] )
+   spell? (
+   >=app-text/enchant-1.2:=
+   >=app-text/iso-codes-0.35 )
+"
+RDEPEND="${COMMON_DEPEND}
+   x11-themes/adwaita-icon-theme
+"
+DEPEND="${COMMON_DEPEND}
+   ${vala_depend}
+   app-text/docbook-xml-dtd:4.1.2
+   app-text/yelp-tools
+   dev-libs/libxml2:2
+   >=dev-util/gtk-doc-am-1
+   >=dev-util/intltool-0.50.1
+   dev-util/itstool
+   >=sys-devel/gettext-0.18
+   virtual/pkgconfig
+"
+# yelp-tools, gnome-common needed to eautoreconf
+
+pkg_setup() {
+   use python && [[ ${MERGE_TYPE} != binary ]] && python_setup
+}
+
+src_prepare() {
+   vala_src_prepare
+   gnome2_src_prepare
+}
+
+src_configure() {
+   DOCS="AUTHORS ChangeLog MAINTAINERS NEWS README"
+
+   gnome2_src_configure \
+   --disable-deprecations \
+   --enable-updater \
+   --enable-gvfs-metadata \
+   $(use_enable introspection) \
+   $(use_enable spell) \
+   $(use_enable python) \
+   $(use_enable vala)
+}
+
+src_test() {
+   "${EROOT}${GLIB_COMPILE_SCHEMAS}" --allow-any-name "${S}/data" || die
+   GSETTINGS_SCHEMA_DIR="${S}/data" Xemake check
+}
+
+src_install() {
+   local args=()
+   # manually set pyoverridesdir due to bug #524018 and AM_PATH_PYTHON 

[gentoo-commits] repo/gentoo:master commit in: media-fonts/cantarell/

2016-01-16 Thread Pacho Ramos
commit: cb8e9769f125f62d26112ba32f1d51c7a92d5308
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sat Jan 16 11:09:12 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sat Jan 16 11:21:49 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb8e9769

media-fonts/cantarell: Drop old

Package-Manager: portage-2.2.26

 media-fonts/cantarell/Manifest  |  3 ---
 media-fonts/cantarell/cantarell-0.0.19.ebuild   | 27 -
 media-fonts/cantarell/cantarell-0.0.20.1.ebuild | 27 -
 media-fonts/cantarell/cantarell-0.0.20.ebuild   | 27 -
 4 files changed, 84 deletions(-)

diff --git a/media-fonts/cantarell/Manifest b/media-fonts/cantarell/Manifest
index 030bacd..030160c 100644
--- a/media-fonts/cantarell/Manifest
+++ b/media-fonts/cantarell/Manifest
@@ -1,5 +1,2 @@
 DIST cantarell-fonts-0.0.18.1.tar.xz 289248 SHA256 
9c5b1a2edee1d3acf30eaae3d559b2b2e1d835249cf2770f6f8bfc6af861e8f0 SHA512 
eeabffc1f51f1c5423c7eba29b9dd47b4e7595146a1f380bd2742ee692a95fafb159e5f0d67c2b8864da23d277a782eeb65939a3fb82f70b09d0c89d38663f7d
 WHIRLPOOL 
5a610d9be666fa7b4aac9edebdbe6bd71c1d948fbdb4556dff8f4635db8298d7bf11b6d0d02f4a5a112e1653c3d32d14ab5756a2614879c815dc8694f77ed3bd
-DIST cantarell-fonts-0.0.19.tar.xz 386692 SHA256 
c7f975ef3d5cf0ed409636c59d069260783683c47ba1289ac3e66a98446e46ae SHA512 
52042a48a7fe36b3281006a56c4f8ccc98032e85776867fde803b593baabfdf80ff04173d983227964c185caa0949b2947e2dbbd4d4cf36116b52ba95ef8b7c7
 WHIRLPOOL 
bd1de994ffe83544513d580cf4300fcd66a4fca6e2e8489e5383beac68920c48d01df682ad3adc691ba0b515fc25d556dfa9e8ba786226f4b3db5288a188dbd9
-DIST cantarell-fonts-0.0.20.1.tar.xz 353144 SHA256 
0f933516f3270fb7307d9c2e26e4703b403608c5cc9da3127cba4395bcd4ec91 SHA512 
b77b0eb34c68e0de916a55517835c807ea2ca2ca9ea94956f08a1381e4d957f2ab4ddf0f2930de35a4635cc1da1ed9108f0183691c278692226a1a6961971772
 WHIRLPOOL 
b8f0293d106856c2ba6bfaff3f53b991c12d9dc4299424c54c50bf0d8839b3603985db7486932735177c7713569b13210d77843fa7133987ab8ccc001a798a15
-DIST cantarell-fonts-0.0.20.tar.xz 351660 SHA256 
fb78a5cb6bdcfc464b763a030186c818080860107283bff8adcbb2d084f8f8de SHA512 
fa6c993523e1079da2f53f215fe26777193180bddf3bdfcdbfb79ec83954ac54dd7c460df9d6d6eed043f37b5bbf18f12d56b03b3d7f56a102768072dc92b1b5
 WHIRLPOOL 
132c5641ff2b87d6e2a277af624d76d2141d210b0b92ccd55cbef85664bd83aad8e8d96bff17a630c6d66482e9aa3fa1022879cf89e7bba1963febf176c264a1
 DIST cantarell-fonts-0.0.21.tar.xz 359408 SHA256 
2d3e925574648f0902c61975f84acac445ee9cda826280644bdf772960b46e85 SHA512 
4c22123ff6aeb1d7325ef8933c86778f6df9fac370a415028cc45a193051454b06cf32673d872b9fc6c55c923221c7501348bea8606b247deb3f997f820a
 WHIRLPOOL 
0a937eaacfa027aaab421ba89e569cfb4e750e8d83589d8ff0d732608dccb18ec472ee12fc17e06bb15e918337eb7580eae8a63cc17d25c19ddebe9f312589b2

diff --git a/media-fonts/cantarell/cantarell-0.0.19.ebuild 
b/media-fonts/cantarell/cantarell-0.0.19.ebuild
deleted file mode 100644
index ef8eba8..000
--- a/media-fonts/cantarell/cantarell-0.0.19.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-GNOME_ORG_MODULE="${PN}-fonts"
-
-inherit font gnome.org
-
-DESCRIPTION="Default fontset for GNOME Shell"
-HOMEPAGE="https://wiki.gnome.org/Projects/CantarellFonts;
-
-LICENSE="OFL-1.1"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
-IUSE=""
-
-RDEPEND="media-libs/fontconfig"
-DEPEND="virtual/pkgconfig"
-
-# This ebuild does not install any binaries
-RESTRICT="binchecks strip"
-
-# Font eclass settings
-FONT_CONF=("${S}/fontconfig/31-cantarell.conf")
-FONT_S="${S}/otf"
-FONT_SUFFIX="otf"

diff --git a/media-fonts/cantarell/cantarell-0.0.20.1.ebuild 
b/media-fonts/cantarell/cantarell-0.0.20.1.ebuild
deleted file mode 100644
index 45f7fb7..000
--- a/media-fonts/cantarell/cantarell-0.0.20.1.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-GNOME_ORG_MODULE="${PN}-fonts"
-
-inherit font gnome.org
-
-DESCRIPTION="Default fontset for GNOME Shell"
-HOMEPAGE="https://wiki.gnome.org/Projects/CantarellFonts;
-
-LICENSE="OFL-1.1"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
-IUSE=""
-
-RDEPEND="media-libs/fontconfig"
-DEPEND="virtual/pkgconfig"
-
-# This ebuild does not install any binaries
-RESTRICT="binchecks strip"
-
-# Font eclass settings
-FONT_CONF=("${S}/fontconfig/31-cantarell.conf")
-FONT_S="${S}/otf"
-FONT_SUFFIX="otf"

diff --git a/media-fonts/cantarell/cantarell-0.0.20.ebuild 
b/media-fonts/cantarell/cantarell-0.0.20.ebuild
deleted file mode 100644
index 45f7fb7..000
--- a/media-fonts/cantarell/cantarell-0.0.20.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the 

[gentoo-commits] repo/gentoo:master commit in: media-fonts/cantarell/

2016-01-16 Thread Pacho Ramos
commit: 15595e1fdac43163c36b202e86ce7b1cfe5b3269
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sat Jan 16 11:08:45 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sat Jan 16 11:21:46 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15595e1f

media-fonts/cantarell: Version bump

Package-Manager: portage-2.2.26

 media-fonts/cantarell/Manifest|  1 +
 media-fonts/cantarell/cantarell-0.0.21.ebuild | 27 +++
 2 files changed, 28 insertions(+)

diff --git a/media-fonts/cantarell/Manifest b/media-fonts/cantarell/Manifest
index 00cc4f7..030bacd 100644
--- a/media-fonts/cantarell/Manifest
+++ b/media-fonts/cantarell/Manifest
@@ -2,3 +2,4 @@ DIST cantarell-fonts-0.0.18.1.tar.xz 289248 SHA256 
9c5b1a2edee1d3acf30eaae3d559b
 DIST cantarell-fonts-0.0.19.tar.xz 386692 SHA256 
c7f975ef3d5cf0ed409636c59d069260783683c47ba1289ac3e66a98446e46ae SHA512 
52042a48a7fe36b3281006a56c4f8ccc98032e85776867fde803b593baabfdf80ff04173d983227964c185caa0949b2947e2dbbd4d4cf36116b52ba95ef8b7c7
 WHIRLPOOL 
bd1de994ffe83544513d580cf4300fcd66a4fca6e2e8489e5383beac68920c48d01df682ad3adc691ba0b515fc25d556dfa9e8ba786226f4b3db5288a188dbd9
 DIST cantarell-fonts-0.0.20.1.tar.xz 353144 SHA256 
0f933516f3270fb7307d9c2e26e4703b403608c5cc9da3127cba4395bcd4ec91 SHA512 
b77b0eb34c68e0de916a55517835c807ea2ca2ca9ea94956f08a1381e4d957f2ab4ddf0f2930de35a4635cc1da1ed9108f0183691c278692226a1a6961971772
 WHIRLPOOL 
b8f0293d106856c2ba6bfaff3f53b991c12d9dc4299424c54c50bf0d8839b3603985db7486932735177c7713569b13210d77843fa7133987ab8ccc001a798a15
 DIST cantarell-fonts-0.0.20.tar.xz 351660 SHA256 
fb78a5cb6bdcfc464b763a030186c818080860107283bff8adcbb2d084f8f8de SHA512 
fa6c993523e1079da2f53f215fe26777193180bddf3bdfcdbfb79ec83954ac54dd7c460df9d6d6eed043f37b5bbf18f12d56b03b3d7f56a102768072dc92b1b5
 WHIRLPOOL 
132c5641ff2b87d6e2a277af624d76d2141d210b0b92ccd55cbef85664bd83aad8e8d96bff17a630c6d66482e9aa3fa1022879cf89e7bba1963febf176c264a1
+DIST cantarell-fonts-0.0.21.tar.xz 359408 SHA256 
2d3e925574648f0902c61975f84acac445ee9cda826280644bdf772960b46e85 SHA512 
4c22123ff6aeb1d7325ef8933c86778f6df9fac370a415028cc45a193051454b06cf32673d872b9fc6c55c923221c7501348bea8606b247deb3f997f820a
 WHIRLPOOL 
0a937eaacfa027aaab421ba89e569cfb4e750e8d83589d8ff0d732608dccb18ec472ee12fc17e06bb15e918337eb7580eae8a63cc17d25c19ddebe9f312589b2

diff --git a/media-fonts/cantarell/cantarell-0.0.21.ebuild 
b/media-fonts/cantarell/cantarell-0.0.21.ebuild
new file mode 100644
index 000..45f7fb7
--- /dev/null
+++ b/media-fonts/cantarell/cantarell-0.0.21.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+GNOME_ORG_MODULE="${PN}-fonts"
+
+inherit font gnome.org
+
+DESCRIPTION="Default fontset for GNOME Shell"
+HOMEPAGE="https://wiki.gnome.org/Projects/CantarellFonts;
+
+LICENSE="OFL-1.1"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
+IUSE=""
+
+RDEPEND="media-libs/fontconfig"
+DEPEND="virtual/pkgconfig"
+
+# This ebuild does not install any binaries
+RESTRICT="binchecks strip"
+
+# Font eclass settings
+FONT_CONF=("${S}/fontconfig/31-cantarell.conf")
+FONT_S="${S}/otf"
+FONT_SUFFIX="otf"



[gentoo-commits] repo/gentoo:master commit in: x11-libs/gtksourceview/

2016-01-16 Thread Pacho Ramos
commit: 037cea8721426b2fd91de264839132cccad5be20
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sat Jan 16 11:21:32 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sat Jan 16 11:21:55 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=037cea87

x11-libs/gtksourceview: Version bump

Package-Manager: portage-2.2.26

 x11-libs/gtksourceview/Manifest|  1 +
 x11-libs/gtksourceview/gtksourceview-3.18.2.ebuild | 62 ++
 2 files changed, 63 insertions(+)

diff --git a/x11-libs/gtksourceview/Manifest b/x11-libs/gtksourceview/Manifest
index e00b14a..e0ac573 100644
--- a/x11-libs/gtksourceview/Manifest
+++ b/x11-libs/gtksourceview/Manifest
@@ -1,3 +1,4 @@
 DIST gtksourceview-2.10.5.tar.bz2 1253321 SHA256 
c585773743b1df8a04b1be7f7d90eecdf22681490d6810be54c81a7ae152191e SHA512 
6f64acef6196bfc5953e0b148d7e460d366073b5e21367c01b01fc4d1c86ffe8aca71ecd77cf0814e47d8fc3085495f25bbbdc69e746987b02fd02fcda64886d
 WHIRLPOOL 
4bd2589d4e06bb5e5c4dc8c55af25c52fd2c2c318a1240d7a430c8cb442cc785b7048f0116d9df714f93c6c1cb87628459239a80ae317d8eb73d27e4c021281a
 DIST gtksourceview-3.16.1.tar.xz 1272152 SHA256 
669e9846ca744ec4d04ce61377e85df7ca909ad476329922a6abf4da423f1b0c SHA512 
8bae196d923d08e58c8f02d7612b32aa7caec8457c2ff35c2bb2322a3013a8f1fe52cbc62540f9d83054811ee517088d4e880b82733b2a73e7724a206b2ad911
 WHIRLPOOL 
c51a0dd6ccad2262b289509f8dfa85675ba90cf4f0242358ca2d1ad857cf06e33ad0495560b726430738d827f9204c2eb63a90209171194a7c8eb163e46a1471
 DIST gtksourceview-3.18.1.tar.xz 1310248 SHA256 
7be95faf068b9f0ac7540cc1e8d607baa98a482850ef11a6471b53c9327aede6 SHA512 
dacee02c1d7232279b560bfa362c65837a981d50fdc28ae966835ead7b0d99310d503b816895c77c5b61967778299e4c9385697de5210259a97f664703bc905f
 WHIRLPOOL 
f1319df7219f2b8a36912acf335ff95cfb758117bba03c462f56c64a9917dea9ebef14eb35803add1a95892174b246d023691cbbe075c542a671559a000fb12b
+DIST gtksourceview-3.18.2.tar.xz 1317804 SHA256 
60f75a9f0039e13a2281fc595b5ef7344afa06732cc53b57d13234bfb0a5b7b2 SHA512 
75e502264d7d9f63f9a2c9c884072cfc2d323c7cc49383b9b53916321ce20ef695e7a2dd0f6db67a4daf70ba84a3a907dfc6d9407ba5982adb976210e0589328
 WHIRLPOOL 
4143a624a0582a5d92de707b5167bc9805a5b484906977c4b0d195703d7bd113ebd677829f6e6c2c2d8d10cdae2041db99e8294e18e7114d53e15da6f233ad80

diff --git a/x11-libs/gtksourceview/gtksourceview-3.18.2.ebuild 
b/x11-libs/gtksourceview/gtksourceview-3.18.2.ebuild
new file mode 100644
index 000..e4630af
--- /dev/null
+++ b/x11-libs/gtksourceview/gtksourceview-3.18.2.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+GCONF_DEBUG="no"
+VALA_MIN_API_VERSION="0.24"
+VALA_USE_DEPEND="vapigen"
+
+inherit gnome2 vala virtualx
+
+DESCRIPTION="A text widget implementing syntax highlighting and other features"
+HOMEPAGE="https://wiki.gnome.org/Projects/GtkSourceView;
+
+LICENSE="GPL-2+ LGPL-2.1+"
+SLOT="3.0/3"
+
+IUSE="glade +introspection vala"
+REQUIRED_USE="vala? ( introspection )"
+
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux 
~ppc-macos ~x86-solaris"
+
+RDEPEND="
+   >=dev-libs/glib-2.44:2
+   >=dev-libs/libxml2-2.6:2
+   >=x11-libs/gtk+-3.16:3[introspection?]
+   glade? ( >=dev-util/glade-3.9:3.10 )
+   introspection? ( >=dev-libs/gobject-introspection-1.42:= )
+"
+DEPEND="${RDEPEND}
+   >=dev-util/gtk-doc-am-1.24
+   >=dev-util/intltool-0.50
+   >=sys-devel/gettext-0.17
+   virtual/pkgconfig
+   vala? ( $(vala_depend) )
+"
+
+src_prepare() {
+   use vala && vala_src_prepare
+   gnome2_src_prepare
+}
+
+src_configure() {
+   gnome2_src_configure \
+   --disable-deprecations \
+   --enable-providers \
+   $(use_enable glade glade-catalog) \
+   $(use_enable introspection) \
+   $(use_enable vala)
+}
+
+src_test() {
+   Xemake check
+}
+
+src_install() {
+   DOCS="AUTHORS HACKING MAINTAINERS NEWS README"
+   gnome2_src_install
+
+   insinto /usr/share/${PN}-3.0/language-specs
+   doins "${FILESDIR}"/2.0/gentoo.lang
+}



[gentoo-commits] proj/qt:master commit in: app-admin/qgrubeditor/files/, app-admin/qgrubeditor/

2016-01-16 Thread Michael Palimaka
commit: 2d707247c5f4d3755b1a7fc03a0355f33f949124
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sat Jan 16 12:30:53 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Jan 16 12:30:53 2016 +
URL:https://gitweb.gentoo.org/proj/qt.git/commit/?id=2d707247

app-admin/qgrubeditor: remove package

Upstream has declared it obsolete and replaced by kgrubeditor.

 app-admin/qgrubeditor/Manifest |  1 -
 .../files/qgrubeditor-2.5.0-gcc-4.7.patch  | 11 
 app-admin/qgrubeditor/metadata.xml | 15 ---
 app-admin/qgrubeditor/qgrubeditor-2.5.0.ebuild | 31 --
 4 files changed, 58 deletions(-)

diff --git a/app-admin/qgrubeditor/Manifest b/app-admin/qgrubeditor/Manifest
deleted file mode 100644
index 8c4d771..000
--- a/app-admin/qgrubeditor/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST 60391-QGRUBEditor-2.5.0-src.tar.bz2 190020 SHA256 
9ad2cea0201b7abdc428af8b304d04f685a541549c81a1b412abaf3ae2e31121 SHA512 
c675b817b98045ded1b33c09c0eaa200f175c2d258810f199a33abb11876caadc4e6b69182f8bffaa7d5fd54889f124ed4b19a85321edfbca90c655496f35730
 WHIRLPOOL 
7721225d4f838aece016943baf32388f7cb6ad75b7104217f48aebcd83883583c36ce148e97b434a592113eebc919730b713cd93e63f72c5b5d23cab684d363b

diff --git a/app-admin/qgrubeditor/files/qgrubeditor-2.5.0-gcc-4.7.patch 
b/app-admin/qgrubeditor/files/qgrubeditor-2.5.0-gcc-4.7.patch
deleted file mode 100644
index 6721a58..000
--- a/app-admin/qgrubeditor/files/qgrubeditor-2.5.0-gcc-4.7.patch
+++ /dev/null
@@ -1,11 +0,0 @@
 src/main.cpp
-+++ src/main.cpp
-@@ -28,6 +28,8 @@
- #include 
- #include 
- 
-+#include 
-+
- #include "qgrubeditor.h"
- #include "lib/filetransactions.h"
- #include "config.h"

diff --git a/app-admin/qgrubeditor/metadata.xml 
b/app-admin/qgrubeditor/metadata.xml
deleted file mode 100644
index 34ddac0..000
--- a/app-admin/qgrubeditor/metadata.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   terie...@gmail.com
-   Tsiapaliwkas Giorgos
-   
-   
-   QGRUBEditor is a system tool to view and edit the GRUB boot 
loader. It
-   offers many features and it is the perfect solution for those 
who want
-   to change the way GRUB works, without messing with GRUB's 
configuration
-   files.
-   
-
-

diff --git a/app-admin/qgrubeditor/qgrubeditor-2.5.0.ebuild 
b/app-admin/qgrubeditor/qgrubeditor-2.5.0.ebuild
deleted file mode 100644
index 1e87b72..000
--- a/app-admin/qgrubeditor/qgrubeditor-2.5.0.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit qt4-r2
-
-MY_PN="QGRUBEditor"
-MY_P="${MY_PN}"-"${PV}"
-
-DESCRIPTION="QGRUBEditor is a system tool to view and edit the GRUB boot 
loader"
-HOMEPAGE="http://qt-apps.org/content/show.php/QGRUBEditor?content=60391;
-SRC_URI="http://qt-apps.org/CONTENT/content-files/60391-${MY_P}-src.tar.bz2;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="debug"
-
-DEPEND="app-arch/gzip
-   media-gfx/imagemagick
-   dev-qt/qtcore:4
-   dev-qt/qtgui:4"
-RDEPEND="${DEPEND}
-   || ( sys-boot/grub sys-boot/grub-static )"
-
-S="${WORKDIR}/${MY_PN}"
-
-PATCHES=( "${FILESDIR}/${P}-gcc-4.7.patch" )
-DOCS=( AUTHORS README ChangeLog )



[gentoo-commits] proj/qt:master commit in: dev-games/tiled/

2016-01-16 Thread Michael Palimaka
commit: 98c9217629c9b52ddc0eb38decc5dc68ec308de6
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sat Jan 16 12:32:46 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Jan 16 12:32:46 2016 +
URL:https://gitweb.gentoo.org/proj/qt.git/commit/?id=98c92176

dev-games/tiled: sync with main tree

Package-Manager: portage-2.2.26

 dev-games/tiled/tiled-.ebuild | 66 +--
 1 file changed, 43 insertions(+), 23 deletions(-)

diff --git a/dev-games/tiled/tiled-.ebuild 
b/dev-games/tiled/tiled-.ebuild
index 2347bf9..6efad10 100644
--- a/dev-games/tiled/tiled-.ebuild
+++ b/dev-games/tiled/tiled-.ebuild
@@ -1,46 +1,66 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI=5
 
-PLOCALES="cs de en es fr he it ja lv nl pt pt_BR ru zh"
-MY_P="${PN}-qt-${PV}"
+PYTHON_COMPAT=( python2_7 )
+inherit fdo-mime gnome2-utils multilib python-single-r1 qmake-utils
 
-inherit multilib l10n qt4-r2 git-2
-
-DESCRIPTION="A general purpose tile map editor."
+DESCRIPTION="A general purpose tile map editor"
 HOMEPAGE="http://www.mapeditor.org/;
 EGIT_REPO_URI="git://github.com/bjorn/${PN}.git"
 
-LICENSE="BSD GPL-2"
+LICENSE="BSD BSD-2 GPL-2+"
 SLOT="0"
-KEYWORDS=""
-IUSE="examples"
+KEYWORDS="~amd64"
+IUSE="examples python"
 
-DEPEND="sys-libs/zlib
-   >=dev-qt/qtcore-4.6:4
-   >=dev-qt/qtgui-4.6:4
-   >=dev-qt/qtopengl-4.6:4"
-RDEPEND="${DEPEND}"
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
 
-DOCS=( AUTHORS COPYING NEWS README.md )
+RDEPEND="
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qtopengl:5
+   dev-qt/qtwidgets:5
+   sys-libs/zlib
+   python? ( ${PYTHON_DEPS} )
+"
+DEPEND="${RDEPEND}
+   dev-qt/linguist-tools:5
+"
 
-src_prepare() {
-   rm -r src/zlib || die
-   sed -e "s/^LANGUAGES =.*/LANGUAGES = $(l10n_get_locales)/" \
-   -i translations/translations.pro || die
+pkg_setup() {
+   use python && python-single-r1_pkg_setup
 }
 
 src_configure() {
-   eqmake4 LIBDIR="/usr/$(get_libdir)" PREFIX="/usr"
+   eqmake5 LIBDIR="/usr/$(get_libdir)" PREFIX="/usr" 
DISABLE_PYTHON_PLUGIN="$(usex !python)"
 }
 
 src_install() {
-   qt4-r2_src_install
+   emake INSTALL_ROOT="${D}" install
+
+   dodoc AUTHORS COPYING NEWS README.md
 
if use examples ; then
-   insinto /usr/share/${PN}
-   doins -r examples
+   docompress -x /usr/share/doc/${PF}/examples
+   dodoc -r examples
fi
 }
+
+pkg_preinst() {
+   gnome2_icon_savelist
+}
+
+pkg_postinst() {
+   gnome2_icon_cache_update
+   fdo-mime_desktop_database_update
+   fdo-mime_mime_database_update
+}
+
+pkg_postrm() {
+   gnome2_icon_cache_update
+   fdo-mime_desktop_database_update
+   fdo-mime_mime_database_update
+}



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

2016-01-16 Thread Andrew Savchenko
commit: b58b23376de0416297be0d927973ff12e9befd6e
Author: Andrew Savchenko  gentoo  org>
AuthorDate: Sat Jan 16 12:36:09 2016 +
Commit: Andrew Savchenko  gentoo  org>
CommitDate: Sat Jan 16 12:36:09 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b58b2337

sci-physics/root: refuse to build with gcc-5

ROOT-6 is not yet ready for gcc-5 due to lack of ABI tags support,
see bug 564306 and root issues 7285, 7319, 7654, 7721, 7818, 7895.

Package-Manager: portage-2.2.26
Signed-off-by: Andrew Savchenko  gentoo.org>

 sci-physics/root/root-6.02.05-r2.ebuild | 18 ++
 sci-physics/root/root-6.04.06.ebuild| 17 +
 2 files changed, 35 insertions(+)

diff --git a/sci-physics/root/root-6.02.05-r2.ebuild 
b/sci-physics/root/root-6.02.05-r2.ebuild
index 5bb8741..a410d12 100644
--- a/sci-physics/root/root-6.02.05-r2.ebuild
+++ b/sci-physics/root/root-6.02.05-r2.ebuild
@@ -140,6 +140,24 @@ check_compiler() {
;;
*g++*)
ver="$(gcc-version)"
+   # gcc-5 is not yet supported, bug 564306
+   if version_is_at_least "5" "${ver}"; then
+   eerror ""
+   eerror "GCC-5 is not yet supported in ROOT-6."
+   eerror "The code may build for you, but will 
have run-time failures."
+   eerror "See the following bugs:"
+   eerror 
"https://sft.its.cern.ch/jira/browse/ROOT-7285;
+   eerror 
"https://sft.its.cern.ch/jira/browse/ROOT-7319;
+   eerror 
"https://sft.its.cern.ch/jira/browse/ROOT-7654;
+   eerror 
"https://sft.its.cern.ch/jira/browse/ROOT-7721;
+   eerror 
"https://sft.its.cern.ch/jira/browse/ROOT-7818;
+   eerror 
"https://sft.its.cern.ch/jira/browse/ROOT-7895;
+   eerror 
"https://bugs.gentoo.org/show_bug.cgi?id=564306;
+   eerror ""
+   eerror "Please use GCC-4.9 for now."
+   eerror ""
+   die "gcc-5 is not yet supported"
+   fi
cur="$2"
;;
*icc*|*icpc*)

diff --git a/sci-physics/root/root-6.04.06.ebuild 
b/sci-physics/root/root-6.04.06.ebuild
index 093ad9f..c3ef6fb 100644
--- a/sci-physics/root/root-6.04.06.ebuild
+++ b/sci-physics/root/root-6.04.06.ebuild
@@ -135,6 +135,23 @@ check_compiler() {
;;
*g++*)
ver="$(gcc-version)"
+   if version_is_at_least "5" "${ver}"; then
+   eerror ""
+   eerror "GCC-5 is not yet supported in ROOT-6."
+   eerror "The code may build for you, but will 
have run-time failures."
+   eerror "See the following bugs:"
+   eerror 
"https://sft.its.cern.ch/jira/browse/ROOT-7285;
+   eerror 
"https://sft.its.cern.ch/jira/browse/ROOT-7319;
+   eerror 
"https://sft.its.cern.ch/jira/browse/ROOT-7654;
+   eerror 
"https://sft.its.cern.ch/jira/browse/ROOT-7721;
+   eerror 
"https://sft.its.cern.ch/jira/browse/ROOT-7818;
+   eerror 
"https://sft.its.cern.ch/jira/browse/ROOT-7895;
+   eerror 
"https://bugs.gentoo.org/show_bug.cgi?id=564306;
+   eerror ""
+   eerror "Please use GCC-4.9 for now."
+   eerror ""
+   die "gcc-5 is not yet supported"
+   fi
cur="$2"
;;
*icc*|*icpc*)



[gentoo-commits] proj/emacs:master commit in: app-xemacs/cc-mode/

2016-01-16 Thread Mats Lidell
commit: 605efb394a8e16a6047162dfe5d571c2f2c8fff7
Author: Mats Lidell  gentoo  org>
AuthorDate: Sat Jan 16 13:55:27 2016 +
Commit: Mats Lidell  gentoo  org>
CommitDate: Sat Jan 16 13:55:27 2016 +
URL:https://gitweb.gentoo.org/proj/emacs.git/commit/?id=605efb39

app-xemacs/cc-mode: Pre release version bump.

Package-Manager: portage-2.2.26

 app-xemacs/cc-mode/ChangeLog| 6 ++
 app-xemacs/cc-mode/Manifest | 2 +-
 app-xemacs/cc-mode/{cc-mode-1.95.ebuild => cc-mode-1.96.ebuild} | 0
 3 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/app-xemacs/cc-mode/ChangeLog b/app-xemacs/cc-mode/ChangeLog
index 201bf34..fc14a24 100644
--- a/app-xemacs/cc-mode/ChangeLog
+++ b/app-xemacs/cc-mode/ChangeLog
@@ -2,6 +2,12 @@
 # Copyright 2002-2016 Gentoo Foundation; Distributed under the GPL v2
 # $Header: /var/cvsroot/gentoo-x86/app-xemacs/cc-mode/ChangeLog,v 1.13 
2008/03/19 19:19:38 graaff Exp $
 
+*cc-mode-1.96 (16 Jan 2016)
+
+  16 Jan 2016; Mats Lidell  -cc-mode-1.95.ebuild,
+  +cc-mode-1.96.ebuild:
+  Pre release version bump.
+
 *cc-mode-1.95 (14 Jan 2016)
 
   14 Jan 2016; Mats Lidell  -cc-mode-1.94.ebuild,

diff --git a/app-xemacs/cc-mode/Manifest b/app-xemacs/cc-mode/Manifest
index bd13e50..3c8d759 100644
--- a/app-xemacs/cc-mode/Manifest
+++ b/app-xemacs/cc-mode/Manifest
@@ -1 +1 @@
-DIST cc-mode-1.95-pkg.tar.gz 794659 SHA256 
8037d283a1b1758cfdbe8a73adc3c165eff546b7fdac22012695ad9868c93510 SHA512 
3b45d6d5af25cf24279460efc82fe4de5be7772262d410824e7c70a60d3e2195fa41ebd9f23a13638695ca59818f8c78ebb9c553318eebe9f90cda97863ffa08
 WHIRLPOOL 
5e725f0d15e659daf2e54329470958eb2efe9cf405925a3e97264333df1e259681d5b81a1d7f784df05eac85a57a7c44a16513a45938a1c4f5df6a90b4321917
+DIST cc-mode-1.96-pkg.tar.gz 795962 SHA256 
5ee9a357e7996c25a83b1ca88488beff19f9d2c7caf1f422f51104847243ef6f SHA512 
04fac3f1321e68fb49519ec56854f38d80c8126b9d6819bf7469ea1d5732c861ffa89a39ca5626f581858b5ade20fb0aac7d0af5bac16fa1da9ce1a2621f7ec9
 WHIRLPOOL 
c072163902f1165a2fc61db1afdf124ee82ca916218025179340fb5e36675fb88914e48fb0d12861b01a3945e9cdadb095a77381b297be5a15a1c978058d0956

diff --git a/app-xemacs/cc-mode/cc-mode-1.95.ebuild 
b/app-xemacs/cc-mode/cc-mode-1.96.ebuild
similarity index 100%
rename from app-xemacs/cc-mode/cc-mode-1.95.ebuild
rename to app-xemacs/cc-mode/cc-mode-1.96.ebuild



[gentoo-commits] repo/gentoo:master commit in: dev-java/jython/

2016-01-16 Thread James Le Cuirot
commit: 1af42232fd5356aa4a398771d91be9a9434d24fc
Author: James Le Cuirot  gentoo  org>
AuthorDate: Sat Jan 16 14:19:55 2016 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Sat Jan 16 14:19:55 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1af42232

dev-java/jython: Remove old

Package-Manager: portage-2.2.26

 dev-java/jython/Manifest   |   1 -
 dev-java/jython/jython-2.1-r11.ebuild  | 109 --
 dev-java/jython/jython-2.2.1-r1.ebuild | 138 -
 3 files changed, 248 deletions(-)

diff --git a/dev-java/jython/Manifest b/dev-java/jython/Manifest
index a03255d..98c97d0 100644
--- a/dev-java/jython/Manifest
+++ b/dev-java/jython/Manifest
@@ -1,5 +1,4 @@
 DIST Python-2.2.3.tgz 6709556 SHA256 
a8f92e6b89d47359fff0d1fbfe47f104afc77fd1cd5143e7332758b7bc100188 SHA512 
2e2c881f8819ed3d91b3e98e7087b23ced9715c80eb9e5fe4144cca5b82220e035d0f50ac4a098b3bbdca3c588f70b8021f68a5d52f653c013470579342943e4
 WHIRLPOOL 
dbef6f9f0545f4f4ddf6e4535b67bb936a2ef596f17a1ff6acca89755729420588d845bc291eed0d19b433b3eff017166c7d68a1a352a5612b00da2f8f0c20d7
-DIST jython-2.1.tar.bz2 1301528 SHA256 
faa57a55d137268e80221cd628b234ca67de13504b813be1c0499c9f4d5872b2 SHA512 
397ad2819eb5bb39e1b0c0673922af7fbb75f680d707a7c344d21f680901a6fd96eddbbed8b464fb91cccd6f38a9f9b1a8f8327a530ac870002b72c38bf75ad3
 WHIRLPOOL 
00a1e7376b1883fc835dc801d718041a623ab0406393135d452df613fbbb9a87ab6bf4429b07260e93530f04031e531d4e041bacf22491d7ec0db76a41d77061
 DIST jython-2.7.0-sources.jar 15371691 SHA256 
2b534595d4a08059ebb71b881c58ee830499bb6e9daba7c828a7f1f6c8943f7a SHA512 
7583810245d694fd1d99a57ad504fcefdfbc1183def2cbb93ae3660f341104205c73041d846bdcf2b564b3cf4b770b481703c1dcdb1458396812c92d30ee9fa6
 WHIRLPOOL 
e0dbd289c522b41ef2d3f54b01a2f6d44de8755e2eeb7863c8b807d1b179839f20d925e102db324cf85cd82503cd03106b5287ffa7a322a3902d6f24e9cd2a41
 DIST jython-installer-2.5.3.jar 18487200 SHA256 
05405966cdfa57abc8e705dd6aab92b8240097ce709fb916c8a0dbcaa491f99e SHA512 
92d00cc8d885806749c67d1dc820e7b402c807b9a40277073fc3ea1f3dd10e1e506dc241a342874db8109120e8f0031a8dc7a4db6a88dfdc6c89906eeb9d454d
 WHIRLPOOL 
e8e3adf741a35b5e4de6c67b8805582cabc8590afac28c2e4ae3b61c4bd38d41904d7d1e4a23de21e7870d628e33a52f540fc89780a4724403b0bd92e1159768
 DIST jython_installer-2.2.1.jar 4663097 SHA256 
586858aa16a8b269eaaec59f5b64031ec504d33da35cba98ebac811b0e838e68 SHA512 
d33262dec95dbecfc007a738ed8d8cd4844c215e451b7ab126940f1157079aa846a104f3587ad84c4a009249632e3aaa3c83479ee8f47c30c4b4833bcdd582b3
 WHIRLPOOL 
bae264f67547a975bf648b3de0cc2becb5d51e14b2ca1a977f7c3d45ec96bd3fd4fd99b0ff6912fb38d54d57656225c51c4b8a474c6ca8fe7fc16e12ab4bbec8

diff --git a/dev-java/jython/jython-2.1-r11.ebuild 
b/dev-java/jython/jython-2.1-r11.ebuild
deleted file mode 100644
index 0f0f221..000
--- a/dev-java/jython/jython-2.1-r11.ebuild
+++ /dev/null
@@ -1,109 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-inherit base java-pkg-2
-
-DESCRIPTION="An implementation of Python written in Java"
-HOMEPAGE="http://www.jython.org;
-MY_PV="21"
-#SRC_URI="mirror://sourceforge/${PN}/${PN}-${MY_PV}.class"
-SRC_URI="mirror://gentoo/${P}.tar.bz2"
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 ppc64 x86 ~x86-fbsd"
-IUSE="readline source doc"
-# servlet
-
-CDEPEND="=dev-java/jakarta-oro-2.0*
-   readline? ( >=dev-java/libreadline-java-0.8.0 )"
-#  servlet? ( >=www-servers/tomcat-5.0 )
-RDEPEND=">=virtual/jre-1.4
-   ${CDEPEND}"
-DEPEND=">=virtual/jdk-1.4
-   source? ( app-arch/zip )
-   ${CDEPEND}"
-
-src_unpack() {
-   unpack ${A}
-   cd ${S}
-
-   epatch ${FILESDIR}/${PV}-assert.patch
-   epatch ${FILESDIR}/${PV}-assert-SimpleCompiler.py.patch
-
-   # bug #160861
-   rm -rf org/apache
-}
-
-src_compile() {
-   local cp="$(java-pkg_getjars jakarta-oro-2.0)"
-   local exclude=""
-
-   if use readline ; then
-   cp=${cp}:$(java-pkg_getjars libreadline-java)
-   else
-   exclude="${exclude} ! -name ReadlineConsole.java"
-   fi
-
-   #if use servlet; then
-   #   cp=${cp}:$(java-pkg_getjars servlet)
-   #else
-   exclude="${exclude} ! -name PyServlet.java"
-   #fi
-
-   ejavac -classpath ${cp} -nowarn $(find org -name "*.java" ${exclude})
-
-   find org -name "*.class" | xargs jar cf ${PN}.jar
-
-   # bug 115551
-   cd Lib/jxxload_help
-   ejavac -classpath ${S}/${PN}.jar -nowarn *.java
-   rm -f *.java Makefile
-}
-
-src_install() {
-   java-pkg_dojar ${PN}.jar
-
-   dodoc README.txt NEWS ACKNOWLEDGMENTS
-   use doc && java-pkg_dohtml -A .css .jpg .gif -r Doc/*
-
-   java-pkg_dolauncher jythonc \
-   --main "org.python.util.jython" 
\
-   --java_args 
"-Dpython.home=/usr/share/jython" \
-  

[gentoo-commits] proj/emacs-tools:patchsets commit in: emacs/23.4/

2016-01-16 Thread Ulrich Müller
commit: 866dfcae6b4f3ae8d4af7ac5f687e24ee10589d1
Author: Ulrich Müller  gentoo  org>
AuthorDate: Sun Jan 17 02:14:11 2016 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Sun Jan 17 02:14:11 2016 +
URL:https://gitweb.gentoo.org/proj/emacs-tools.git/commit/?id=866dfcae

Fix compilation of Emacs 23.4 with giflib-5.

 emacs/23.4/26_all_giflib-5.patch | 150 +++
 1 file changed, 150 insertions(+)

diff --git a/emacs/23.4/26_all_giflib-5.patch b/emacs/23.4/26_all_giflib-5.patch
new file mode 100644
index 000..b3b4ed0
--- /dev/null
+++ b/emacs/23.4/26_all_giflib-5.patch
@@ -0,0 +1,150 @@
+Fix compilation with giflib-5.
+Backported from Emacs 24, comprises parts of the following commits:
+
+commit be316ede5fffb724852ee225489e70778d240bb0
+Author: Paul Eggert 
+Date:   Tue Jan 7 13:14:32 2014 -0800
+
+Fix misdisplay of interlaced GIFs with libgif5.
+
+commit f3606ef766bcec86789316a05949f1e67a51e7c1
+Author: Barry Fishman 
+Date:   Wed Oct 9 20:37:44 2013 -0400
+
+Handle giflib 5 changes (tiny change)
+
+--- emacs-23.4-orig/configure.in
 emacs-23.4/configure.in
+@@ -2226,8 +2226,9 @@
+ if test "${HAVE_X11}" = "yes" && test "${with_gif}" != "no"; then
+   AC_CHECK_HEADER(gif_lib.h,
+ # EGifPutExtensionLast only exists from version libungif-4.1.0b1.
+-# Earlier versions can crash Emacs.
+-[AC_CHECK_LIB(gif, EGifPutExtensionLast, HAVE_GIF=yes, try_libungif=yes)])
++# Earlier versions can crash Emacs, but version 5.0 removes 
EGifPutExtensionLast.
++[AC_CHECK_LIB(gif, GifMakeMapObject, HAVE_GIF=yes,
++[AC_CHECK_LIB(gif, EGifPutExtensionLast, HAVE_GIF=yes, 
try_libungif=yes)])])
+ 
+   if test "$HAVE_GIF" = yes; then
+   ac_gif_lib_name="-lgif"
+--- emacs-23.4-orig/src/image.c
 emacs-23.4/src/image.c
+@@ -7244,6 +7244,13 @@
+ 
+ #endif /* HAVE_NTGUI */
+ 
++/* Giflib before 5.0 didn't define these macros.  */
++#ifndef GIFLIB_MAJOR
++#define GIFLIB_MAJOR 0
++#endif
++#ifndef GIFLIB_MINOR
++#define GIFLIB_MINOR 0
++#endif
+ 
+ #ifdef HAVE_NTGUI
+ 
+@@ -7350,7 +7357,11 @@
+   }
+ 
+   /* Open the GIF file.  */
++#if GIFLIB_MAJOR < 5
+   gif = fn_DGifOpenFileName (SDATA (file));
++#else
++  gif = fn_DGifOpenFileName (SDATA (file), NULL);
++#endif
+   if (gif == NULL)
+   {
+ image_error ("Cannot open `%s'", file, Qnil);
+@@ -7366,7 +7377,11 @@
+   memsrc.len = SBYTES (specified_data);
+   memsrc.index = 0;
+ 
++#if GIFLIB_MAJOR < 5
+   gif = fn_DGifOpen (, gif_read_from_memory);
++#else
++  gif = fn_DGifOpen (, gif_read_from_memory, NULL);
++#endif
+   if (!gif)
+   {
+ image_error ("Cannot open memory source `%s'", img->spec, Qnil);
+@@ -7379,7 +7394,11 @@
+   if (!check_image_size (f, gif->SWidth, gif->SHeight))
+ {
+   image_error ("Invalid image size (see `max-image-size')", Qnil, Qnil);
++#if GIFLIB_MAJOR < 5 || (GIFLIB_MAJOR == 5 && GIFLIB_MINOR == 0)
+   fn_DGifCloseFile (gif);
++#else
++  fn_DGifCloseFile (gif, NULL);
++#endif
+   UNGCPRO;
+   return 0;
+ }
+@@ -7389,7 +7408,11 @@
+   if (rc == GIF_ERROR)
+ {
+   image_error ("Error reading `%s'", img->spec, Qnil);
++#if GIFLIB_MAJOR < 5 || (GIFLIB_MAJOR == 5 && GIFLIB_MINOR == 0)
+   fn_DGifCloseFile (gif);
++#else
++  fn_DGifCloseFile (gif, NULL);
++#endif
+   UNGCPRO;
+   return 0;
+ }
+@@ -7400,7 +7423,11 @@
+ {
+   image_error ("Invalid image number `%s' in image `%s'",
+  image, img->spec);
++#if GIFLIB_MAJOR < 5 || (GIFLIB_MAJOR == 5 && GIFLIB_MINOR == 0)
+   fn_DGifCloseFile (gif);
++#else
++  fn_DGifCloseFile (gif, NULL);
++#endif
+   UNGCPRO;
+   return 0;
+ }
+@@ -7422,7 +7449,11 @@
+   if (!check_image_size (f, width, height))
+ {
+   image_error ("Invalid image size (see `max-image-size')", Qnil, Qnil);
++#if GIFLIB_MAJOR < 5 || (GIFLIB_MAJOR == 5 && GIFLIB_MINOR == 0)
+   fn_DGifCloseFile (gif);
++#else
++  fn_DGifCloseFile (gif, NULL);
++#endif
+   UNGCPRO;
+   return 0;
+ }
+@@ -7430,7 +7461,11 @@
+   /* Create the X image and pixmap.  */
+   if (!x_create_x_image_and_pixmap (f, width, height, 0, , >pixmap))
+ {
++#if GIFLIB_MAJOR < 5 || (GIFLIB_MAJOR == 5 && GIFLIB_MINOR == 0)
+   fn_DGifCloseFile (gif);
++#else
++  fn_DGifCloseFile (gif, NULL);
++#endif
+   UNGCPRO;
+   return 0;
+ }
+@@ -7482,7 +7517,7 @@
+  problems with bytes >= 0x80.  */
+   raster = (unsigned char *) gif->SavedImages[ino].RasterBits;
+ 
+-  if (gif->SavedImages[ino].ImageDesc.Interlace)
++  if (GIFLIB_MAJOR < 5 && gif->SavedImages[ino].ImageDesc.Interlace)
+ {
+   int pass;
+   int row = interlace_start[0];
+@@ -7537,7 +7572,11 @@
+   Fcons (make_number (gif->ImageCount),
+  img->data.lisp_val));
+ 
++#if GIFLIB_MAJOR < 5 || (GIFLIB_MAJOR 

[gentoo-commits] proj/emacs-tools:patchsets commit in: emacs/24.3/

2016-01-16 Thread Ulrich Müller
commit: 6379e064984c8027bbf29fa053435011b55a3f61
Author: Ulrich Müller  gentoo  org>
AuthorDate: Sun Jan 17 02:42:07 2016 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Sun Jan 17 02:42:07 2016 +
URL:https://gitweb.gentoo.org/proj/emacs-tools.git/commit/?id=6379e064

Remove 24.3 patchset.

 emacs/24.3/01_all_pop-errmax.patch |  16 
 emacs/24.3/02_all_texinfo-5.patch  |  16 
 emacs/24.3/03_all_gnulib-fbsd-9.1.patch|  98 -
 emacs/24.3/04_all_pax-xattr.patch  |  46 --
 emacs/24.3/05_all_gnus-fun-tmpfile.patch   |  41 -
 emacs/24.3/06_all_find-gc-tmpfile.patch| 135 -
 emacs/24.3/07_all_browse-url-tmpfile.patch |  59 -
 emacs/24.3/08_all_tramp-sh-tmpfile.patch   |  84 --
 8 files changed, 495 deletions(-)

diff --git a/emacs/24.3/01_all_pop-errmax.patch 
b/emacs/24.3/01_all_pop-errmax.patch
deleted file mode 100644
index 112907f..000
--- a/emacs/24.3/01_all_pop-errmax.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-Avoid using an undefined name with the Heimdal Kerberos implementation.
-Patch by Martin von Gagern.
-https://bugs.gentoo.org/461370
-http://debbugs.gnu.org/13925
-
 emacs-24.3-orig/lib-src/pop.c
-+++ emacs-24.3/lib-src/pop.c
-@@ -1198,7 +1198,7 @@ socket_connection (char *host, int flags
-   }
- #elif defined HAVE_KRB5_ERROR_E_TEXT
- if (err_ret && err_ret->e_text && **err_ret->e_text)
--  snprintf (pop_error + pop_error_len, ERRMAX - pop_error_len,
-+  snprintf (pop_error + pop_error_len, ERROR_MAX - pop_error_len,
- " [server says '%s']", *err_ret->e_text);
- #endif
- if (err_ret)

diff --git a/emacs/24.3/02_all_texinfo-5.patch 
b/emacs/24.3/02_all_texinfo-5.patch
deleted file mode 100644
index e7f1f43..000
--- a/emacs/24.3/02_all_texinfo-5.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-Fix Info reader to support Info files created by makeinfo 5.
-Patch from upstream.
-https://bugs.gentoo.org/464368
-http://debbugs.gnu.org/14125
-
 emacs-24.3-orig/lisp/info.el
-+++ emacs-24.3/lisp/info.el
-@@ -1525,7 +1525,7 @@
-   (forward-char 1)
-   (search-forward "\n\^_"))
- (if (numberp nodepos)
--  (+ (- nodepos lastfilepos) (point)
-+  (+ (- nodepos lastfilepos) (point-min)
- 
- (defun Info-unescape-quotes (value)
-   "Unescape double quotes and backslashes in VALUE."

diff --git a/emacs/24.3/03_all_gnulib-fbsd-9.1.patch 
b/emacs/24.3/03_all_gnulib-fbsd-9.1.patch
deleted file mode 100644
index e8c9196..000
--- a/emacs/24.3/03_all_gnulib-fbsd-9.1.patch
+++ /dev/null
@@ -1,98 +0,0 @@
-Fix build failure on FreeBSD 9.1 with GCC 4.6.3.
-Patch from upstream bzr, backported to Emacs 24.3.
-https://bugs.gentoo.org/show_bug.cgi?id=473364
-http://debbugs.gnu.org/cgi/bugreport.cgi?bug=14812
-
-2013-07-08  Paul Eggert  
-
-Try to fix FreeBSD 9.1 porting problem (Bug#14812).
-This incorporates the following merge from gnulib:
-2013-07-07 stdalign, verify: port to FreeBSD 9.1, to C11, and to C++11
-
 emacs-24.3-orig/lib/stdalign.in.h
-+++ emacs-24.3/lib/stdalign.in.h
-@@ -41,13 +41,28 @@
-are 4 unless the option '-malign-double' is used.
- 
-The result cannot be used as a value for an 'enum' constant, if you
--   want to be portable to HP-UX 10.20 cc and AIX 3.2.5 xlc.  */
-+   want to be portable to HP-UX 10.20 cc and AIX 3.2.5 xlc.
-+
-+   Include  for offsetof.  */
- #include 
--#if defined __cplusplus
-+
-+/* FreeBSD 9.1 , included by  and lots of other
-+   standard headers, defines conflicting implementations of _Alignas
-+   and _Alignof that are no better than ours; override them.  */
-+#undef _Alignas
-+#undef _Alignof
-+
-+#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112
-+# ifdef __cplusplus
-+#  if 201103 <= __cplusplus
-+#   define _Alignof(type) alignof (type)
-+#  else
-template  struct __alignof_helper { char __a; __t __b; };
--# define _Alignof(type) offsetof (__alignof_helper, __b)
--#else
--# define _Alignof(type) offsetof (struct { char __a; type __b; }, __b)
-+#   define _Alignof(type) offsetof (__alignof_helper, __b)
-+#  endif
-+# else
-+#  define _Alignof(type) offsetof (struct { char __a; type __b; }, __b)
-+# endif
- #endif
- #define alignof _Alignof
- #define __alignof_is_defined 1
-@@ -77,12 +92,16 @@
- 
-*/
- 
--#if __GNUC__ || __IBMC__ || __IBMCPP__ || 0x5110 <= __SUNPRO_C
--# define _Alignas(a) __attribute__ ((__aligned__ (a)))
--#elif 1300 <= _MSC_VER
--# define _Alignas(a) __declspec (align (a))
-+#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112
-+# if defined __cplusplus && 201103 <= __cplusplus
-+#  define _Alignas(a) alignas (a)
-+# elif __GNUC__ || __IBMC__ || __IBMCPP__ || __ICC || 0x5110 <= __SUNPRO_C
-+#  define _Alignas(a) __attribute__ ((__aligned__ (a)))
-+# elif 1300 <= _MSC_VER
-+#  define _Alignas(a) __declspec (align (a))
-+# endif
- #endif
--#ifdef _Alignas
-+#if 

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

2016-01-16 Thread Tim Harder
commit: 89c48df90a26ad9d77abc5bf93af27bab0237cc3
Author: Tim Harder  gentoo  org>
AuthorDate: Sun Jan 17 00:25:10 2016 +
Commit: Tim Harder  gentoo  org>
CommitDate: Sun Jan 17 00:25:10 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89c48df9

app-vim/taglist: remove old

 app-vim/taglist/Manifest   |  1 -
 app-vim/taglist/taglist-4.5.ebuild | 23 ---
 2 files changed, 24 deletions(-)

diff --git a/app-vim/taglist/Manifest b/app-vim/taglist/Manifest
index 7ef37dc..c305675 100644
--- a/app-vim/taglist/Manifest
+++ b/app-vim/taglist/Manifest
@@ -1,2 +1 @@
-DIST taglist-4.5.tar.bz2 39272 SHA256 
94170e61c3a05f5d1ed8e8475ab2e3eeafc264629d245f1a8717ec2ddc8ca84c SHA512 
71b9fe005753e1a211db0f264cd48a4aa3a2fbccfe97bab392c5ecc68db317c591aecdd7586cbecdf11950fd4dcc56d6f94f15599df7aec020924fa6f064035e
 WHIRLPOOL 
7cd850668152f1516501f63361b3206ce79fe9fce2dfe6f78f42cd294e9eaf4db093674c1ad05db874aef83da2ecb1b7527b0e0c5bf79494d9e120f5564cff1b
 DIST taglist-4.6.tar.bz2 40344 SHA256 
30716a97b4667a862849dee122b843c2522c649e60553e8cbe2277bb93ccb6a3 SHA512 
64686f2685cf4f9b09eeb7e1981a1b9d514cce2f6ea4bdf3e3613037d9818556ad6ed95740a84b4d73eba3fa1d5d58a41f15e1bc0a1403c50a810f5a704f3073
 WHIRLPOOL 
4e7b154e1c693cfee821e55e9b4d8f2b26f1c5dbacce6015757ee4b13586927ba5dca2ab726e23ad090944e55e0cce9676c01c8c21efa9ece967cb24d8bd5acd

diff --git a/app-vim/taglist/taglist-4.5.ebuild 
b/app-vim/taglist/taglist-4.5.ebuild
deleted file mode 100644
index 5fbdd6f..000
--- a/app-vim/taglist/taglist-4.5.ebuild
+++ /dev/null
@@ -1,23 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-inherit vim-plugin eutils
-
-DESCRIPTION="vim plugin: ctags-based source code browser"
-HOMEPAGE="http://vim-taglist.sourceforge.net/;
-
-LICENSE="vim"
-KEYWORDS="alpha amd64 hppa ia64 ~mips ppc sparc x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x86-macos ~sparc-solaris"
-IUSE=""
-
-RDEPEND="dev-util/ctags"
-
-VIM_PLUGIN_HELPFILES="taglist-intro"
-
-src_unpack() {
-   unpack ${A}
-   cd "${S}"
-   epatch "${FILESDIR}"/${PN}-3.4-ebuilds.patch
-   [[ -f plugin/${PN}.vim.orig ]] && rm plugin/${PN}.vim.orig
-}



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

2016-01-16 Thread Tim Harder
commit: 321dfd4410099effc2c20344f408244dcf22e6f8
Author: Tim Harder  gentoo  org>
AuthorDate: Sun Jan 17 00:25:31 2016 +
Commit: Tim Harder  gentoo  org>
CommitDate: Sun Jan 17 00:25:31 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=321dfd44

app-vim/tagbar: remove old

 app-vim/tagbar/Manifest  |  2 --
 app-vim/tagbar/tagbar-2.5.ebuild | 18 --
 app-vim/tagbar/tagbar-2.6.ebuild | 18 --
 3 files changed, 38 deletions(-)

diff --git a/app-vim/tagbar/Manifest b/app-vim/tagbar/Manifest
index 82cbfac..1a12bce 100644
--- a/app-vim/tagbar/Manifest
+++ b/app-vim/tagbar/Manifest
@@ -1,3 +1 @@
-DIST tagbar-2.5.tar.gz 44838 SHA256 
b9632c1924dbe2c4b39ecda49a61bf956e059a09cf0017995059cc85078b8ae8 SHA512 
da6491abc77fdcaf5f8ed1de82533d5d007f07d13bda67efeaf50a2a227117417a21bef92b5b05bed9ab5c0031d51ee386352581969ac714f92393de989da690
 WHIRLPOOL 
2dca052fdd03d5eb1207a4e12a4050f9a3d35b671fe2b6a786ab6ac5531e8cce7f3f28614986d57503e5369af67f6fe00a3d144df332ba6a656c88f8be76249c
 DIST tagbar-2.6.1.tar.gz 51639 SHA256 
c061a7e0a45a166f4558b31e6c47b9fd701f5fa1319527b65a268ea054dea5fb SHA512 
eb0f29dc2f08d943e1ac0c0fe97ed72a49b85e22d105815a5557e205532be379d3ce8429c5303b917c005b465a7385161ff2edc96efc0fc312178155c67a7c22
 WHIRLPOOL 
d5f7b0916e1eb0faa9a7887a4249ace5f0b8e369527a89010dabfee55507516050a5e5dd2184ab43c095ff514708bf25ab6d78fea85db8821804bbe908ebbc27
-DIST tagbar-2.6.tar.gz 51432 SHA256 
46b14e1b3059ffe7d736ae586d94978898e29d03e0cc3545110e6eb8e309e399 SHA512 
f51832805c6dd882972192186b67720b87408b78d3d13cb3577a785821fdc750e90a6415437381a259b465f31bc9ca5b4a73f09564a35d4b2bbb1c0cf9fa9fb4
 WHIRLPOOL 
cc9a1c30afea5ac3ef695010f078e5f4f95dd5d92b203ba679c37e087b59621000cbe4358e09a8c44983239dfbd50b8ba282ba2804a307978283468c6ee99759

diff --git a/app-vim/tagbar/tagbar-2.5.ebuild b/app-vim/tagbar/tagbar-2.5.ebuild
deleted file mode 100644
index 82eb811..000
--- a/app-vim/tagbar/tagbar-2.5.ebuild
+++ /dev/null
@@ -1,18 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit vim-plugin
-
-DESCRIPTION="vim plugin: display tags of the current file ordered by scope"
-HOMEPAGE="https://majutsushi.github.com/tagbar/
-   http://www.vim.org/scripts/script.php?script_id=3465;
-SRC_URI="https://github.com/majutsushi/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-LICENSE="vim"
-KEYWORDS="amd64 x86"
-
-RDEPEND=">=dev-util/ctags-5.5"
-
-VIM_PLUGIN_HELPFILES="${PN}.txt"

diff --git a/app-vim/tagbar/tagbar-2.6.ebuild b/app-vim/tagbar/tagbar-2.6.ebuild
deleted file mode 100644
index 2ab9630..000
--- a/app-vim/tagbar/tagbar-2.6.ebuild
+++ /dev/null
@@ -1,18 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit vim-plugin
-
-DESCRIPTION="vim plugin: display tags of the current file ordered by scope"
-HOMEPAGE="https://majutsushi.github.com/tagbar/
-   http://www.vim.org/scripts/script.php?script_id=3465;
-SRC_URI="https://github.com/majutsushi/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-LICENSE="vim"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND=">=dev-util/ctags-5.5"
-
-VIM_PLUGIN_HELPFILES="${PN}.txt"



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

2016-01-16 Thread Tim Harder
commit: 2b25dc4627d51156abe8164712b7165ad9667d62
Author: Tim Harder  gentoo  org>
AuthorDate: Sun Jan 17 00:37:56 2016 +
Commit: Tim Harder  gentoo  org>
CommitDate: Sun Jan 17 00:37:56 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b25dc46

app-vim/dbext: remove old

 app-vim/dbext/Manifest  |  1 -
 app-vim/dbext/dbext-21.0.ebuild | 14 --
 2 files changed, 15 deletions(-)

diff --git a/app-vim/dbext/Manifest b/app-vim/dbext/Manifest
index 3e1bbf8..bf46b7f 100644
--- a/app-vim/dbext/Manifest
+++ b/app-vim/dbext/Manifest
@@ -1,3 +1,2 @@
-DIST dbext-21.0.tar.bz2 97724 SHA256 
0f8ef44c342ae324205fd8be8ac326f99e684a26312b17150ebac7b45fff7ac8 SHA512 
00b3ce28628416051a471f3396b86e5bb6711388b095cb0e24fb1def6c18be2af77f7ab4e1fcbcf2c87b45e8e1518810636b99f0e2f2df4917d40f0584d205d5
 WHIRLPOOL 
0a0b0f7bbbc9c31c1016ef388de30352f69ea3a241846bf1e889ee16a1d7b46374d89de4d2c70802d20f75d65b0873b18fa04c411f3e6d8e865d6c10adaa031d
 DIST dbext-22.0.tar.bz2 102728 SHA256 
a6f44a4aceb0fc83989122a5ab6988d47330781d8759fe1334fc21071b092b08 SHA512 
18370074039f520f137f7e6db032963c1f6ce4b5a5f2e3b6e7f67441af0b195b0315d8cb918ae4bd65f281536ac76e187ec88055c5653213442771d01836a258
 WHIRLPOOL 
80bc6af335418df61bf58ab8d3c7be1cdee5c41fca5fd8a9c451f088f8f93318ef2d750489049d79322f097e49b621f2be861bbb7e66b0c2b27dbe47ad6b5e2a
 DIST dbext-23.0.tar.bz2 104027 SHA256 
92c6b54f66927382862768346a9e24e898f2a3b0a88192588c9d204fda8a0306 SHA512 
48fe475b6c8d157e679d0230e981be77fc033e7f5a370e964c5d793b796cc291f15b145e5a642aae5c9fa64916ad6cdf059f59def43ac342a28c07de6e99b333
 WHIRLPOOL 
2e33df79789158ed775a2546f49f16961f4fa48ae68f03bfbfd6d2f048347b0882877af8b06bf3cb123f7b00aff79ab6c5ef193e40b75d6632bf4e78d427e9cd

diff --git a/app-vim/dbext/dbext-21.0.ebuild b/app-vim/dbext/dbext-21.0.ebuild
deleted file mode 100644
index b7ca32f..000
--- a/app-vim/dbext/dbext-21.0.ebuild
+++ /dev/null
@@ -1,14 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit vim-plugin
-
-DESCRIPTION="vim plugin: easy access to databases"
-HOMEPAGE="http://www.vim.org/scripts/script.php?script_id=356;
-LICENSE="GPL-2"
-KEYWORDS="amd64 ~mips ~ppc x86"
-
-VIM_PLUGIN_HELPFILES="${PN}.txt"



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

2016-01-16 Thread Tim Harder
commit: 12be6b1b7f44fd8c7b088d6c546e0d9b7f5f2685
Author: Tim Harder  gentoo  org>
AuthorDate: Sun Jan 17 00:37:22 2016 +
Commit: Tim Harder  gentoo  org>
CommitDate: Sun Jan 17 00:37:22 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12be6b1b

app-vim/dbext: version bump to 23.0

 app-vim/dbext/Manifest  |  1 +
 app-vim/dbext/dbext-23.0.ebuild | 14 ++
 2 files changed, 15 insertions(+)

diff --git a/app-vim/dbext/Manifest b/app-vim/dbext/Manifest
index c5c5290..3e1bbf8 100644
--- a/app-vim/dbext/Manifest
+++ b/app-vim/dbext/Manifest
@@ -1,2 +1,3 @@
 DIST dbext-21.0.tar.bz2 97724 SHA256 
0f8ef44c342ae324205fd8be8ac326f99e684a26312b17150ebac7b45fff7ac8 SHA512 
00b3ce28628416051a471f3396b86e5bb6711388b095cb0e24fb1def6c18be2af77f7ab4e1fcbcf2c87b45e8e1518810636b99f0e2f2df4917d40f0584d205d5
 WHIRLPOOL 
0a0b0f7bbbc9c31c1016ef388de30352f69ea3a241846bf1e889ee16a1d7b46374d89de4d2c70802d20f75d65b0873b18fa04c411f3e6d8e865d6c10adaa031d
 DIST dbext-22.0.tar.bz2 102728 SHA256 
a6f44a4aceb0fc83989122a5ab6988d47330781d8759fe1334fc21071b092b08 SHA512 
18370074039f520f137f7e6db032963c1f6ce4b5a5f2e3b6e7f67441af0b195b0315d8cb918ae4bd65f281536ac76e187ec88055c5653213442771d01836a258
 WHIRLPOOL 
80bc6af335418df61bf58ab8d3c7be1cdee5c41fca5fd8a9c451f088f8f93318ef2d750489049d79322f097e49b621f2be861bbb7e66b0c2b27dbe47ad6b5e2a
+DIST dbext-23.0.tar.bz2 104027 SHA256 
92c6b54f66927382862768346a9e24e898f2a3b0a88192588c9d204fda8a0306 SHA512 
48fe475b6c8d157e679d0230e981be77fc033e7f5a370e964c5d793b796cc291f15b145e5a642aae5c9fa64916ad6cdf059f59def43ac342a28c07de6e99b333
 WHIRLPOOL 
2e33df79789158ed775a2546f49f16961f4fa48ae68f03bfbfd6d2f048347b0882877af8b06bf3cb123f7b00aff79ab6c5ef193e40b75d6632bf4e78d427e9cd

diff --git a/app-vim/dbext/dbext-23.0.ebuild b/app-vim/dbext/dbext-23.0.ebuild
new file mode 100644
index 000..d8e1833
--- /dev/null
+++ b/app-vim/dbext/dbext-23.0.ebuild
@@ -0,0 +1,14 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit vim-plugin
+
+DESCRIPTION="vim plugin: easy access to databases"
+HOMEPAGE="http://www.vim.org/scripts/script.php?script_id=356;
+LICENSE="GPL-2"
+KEYWORDS="~amd64 ~mips ~ppc ~x86"
+
+VIM_PLUGIN_HELPFILES="${PN}.txt"



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

2016-01-16 Thread Tim Harder
commit: 94eb9ae76effe0e9f8197d7d7f79776d0f99c9d2
Author: Tim Harder  gentoo  org>
AuthorDate: Sun Jan 17 00:37:44 2016 +
Commit: Tim Harder  gentoo  org>
CommitDate: Sun Jan 17 00:37:44 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94eb9ae7

app-vim/dbext: stabilize 22.0

 app-vim/dbext/dbext-22.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-vim/dbext/dbext-22.0.ebuild b/app-vim/dbext/dbext-22.0.ebuild
index ebf0464..b7ca32f 100644
--- a/app-vim/dbext/dbext-22.0.ebuild
+++ b/app-vim/dbext/dbext-22.0.ebuild
@@ -9,6 +9,6 @@ inherit vim-plugin
 DESCRIPTION="vim plugin: easy access to databases"
 HOMEPAGE="http://www.vim.org/scripts/script.php?script_id=356;
 LICENSE="GPL-2"
-KEYWORDS="~amd64 ~mips ~ppc ~x86"
+KEYWORDS="amd64 ~mips ~ppc x86"
 
 VIM_PLUGIN_HELPFILES="${PN}.txt"



[gentoo-commits] proj/portage:master commit in: pym/portage/tests/ebuild/

2016-01-16 Thread Zac Medico
commit: 44aeab7fad440a289316ced8738b287d88d475d0
Author: Zac Medico  gentoo  org>
AuthorDate: Sun Jan 17 02:52:02 2016 +
Commit: Zac Medico  gentoo  org>
CommitDate: Sun Jan 17 02:54:27 2016 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=44aeab7f

DoebuildFdPipesTestCase: use extra pipe for test output

Since commit 3767128cf08a0a21559eb9c41ba393dcabc6f087, this test has
failed due to additional output produced by src_install. Fix it to
use a separate pipe for test output.

 pym/portage/tests/ebuild/test_doebuild_fd_pipes.py | 36 +++---
 1 file changed, 18 insertions(+), 18 deletions(-)

diff --git a/pym/portage/tests/ebuild/test_doebuild_fd_pipes.py 
b/pym/portage/tests/ebuild/test_doebuild_fd_pipes.py
index 2a65537..b894218 100644
--- a/pym/portage/tests/ebuild/test_doebuild_fd_pipes.py
+++ b/pym/portage/tests/ebuild/test_doebuild_fd_pipes.py
@@ -1,8 +1,6 @@
-# Copyright 2013-2015 Gentoo Foundation
+# Copyright 2013-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-import textwrap
-
 import portage
 from portage import os
 from portage.tests import TestCase
@@ -10,7 +8,6 @@ from portage.tests.resolver.ResolverPlayground import 
ResolverPlayground
 from portage.package.ebuild._ipc.QueryCommand import QueryCommand
 from portage.util._async.ForkProcess import ForkProcess
 from portage.util._async.TaskScheduler import TaskScheduler
-from portage.util._eventloop.global_event_loop import global_event_loop
 from _emerge.Package import Package
 from _emerge.PipeReader import PipeReader
 
@@ -31,19 +28,16 @@ class DoebuildFdPipesTestCase(TestCase):
supported for API consumers (see bug #475812).
"""
 
-   ebuild_body = textwrap.dedent("""
-   S=${WORKDIR}
-   pkg_info() { echo info ; }
-   pkg_nofetch() { echo nofetch ; }
-   pkg_pretend() { echo pretend ; }
-   pkg_setup() { echo setup ; }
-   src_unpack() { echo unpack ; }
-   src_prepare() { echo prepare ; }
-   src_configure() { echo configure ; }
-   src_compile() { echo compile ; }
-   src_test() { echo test ; }
-   src_install() { echo install ; }
-   """)
+   output_fd = 200
+   ebuild_body = ['S=${WORKDIR}']
+   for phase_func in ('pkg_info', 'pkg_nofetch', 'pkg_pretend',
+   'pkg_setup', 'src_unpack', 'src_prepare', 
'src_configure',
+   'src_compile', 'src_test', 'src_install'):
+   ebuild_body.append(('%s() { echo ${EBUILD_PHASE}'
+   ' 1>&%s; }') % (phase_func, output_fd))
+
+   ebuild_body.append('')
+   ebuild_body = '\n'.join(ebuild_body)
 
ebuilds = {
'app-misct/foo-1': {
@@ -60,6 +54,7 @@ class DoebuildFdPipesTestCase(TestCase):
self.assertEqual(true_binary is None, False,
"true command not found")
 
+   dev_null = open(os.devnull, 'wb')
playground = ResolverPlayground(ebuilds=ebuilds)
try:
QueryCommand._db = playground.trees
@@ -106,7 +101,11 @@ class DoebuildFdPipesTestCase(TestCase):
doebuild_kwargs={"settings" : settings,
"mydbapi": portdb, "tree": 
"porttree",
"vartree": 
root_config.trees["vartree"],
-   "fd_pipes": {1: pw, 2: pw},
+   "fd_pipes": {
+   1: dev_null.fileno(),
+   2: dev_null.fileno(),
+   output_fd: pw,
+   },
"prev_mtimes": {}})
 
consumer = PipeReader(
@@ -134,5 +133,6 @@ class DoebuildFdPipesTestCase(TestCase):
self.assertEqual(phase, output)
 
finally:
+   dev_null.close()
playground.cleanup()
QueryCommand._db = None



[gentoo-commits] repo/gentoo:master commit in: sys-devel/crossdev/

2016-01-16 Thread Mike Frysinger
commit: 4749e4f727031b9da5c9acdce40ac9310ff50ae0
Author: Mike Frysinger  gentoo  org>
AuthorDate: Sat Jan 16 08:02:36 2016 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Sat Jan 16 08:16:47 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4749e4f7

sys-devel/crossdev: mark 20150716 stable

 sys-devel/crossdev/crossdev-20150716.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-devel/crossdev/crossdev-20150716.ebuild 
b/sys-devel/crossdev/crossdev-20150716.ebuild
index 3b816c2..ed20e4c 100644
--- a/sys-devel/crossdev/crossdev-20150716.ebuild
+++ b/sys-devel/crossdev/crossdev-20150716.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} == "" ]] ; then
 else
SRC_URI="mirror://gentoo/${P}.tar.xz
https://dev.gentoo.org/~vapier/dist/${P}.tar.xz;
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc ~x86 ~x86-fbsd"
+   KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh 
sparc x86 ~x86-fbsd"
 fi
 
 DESCRIPTION="Gentoo Cross-toolchain generator"



[gentoo-commits] repo/gentoo:master commit in: sys-libs/glibc/files/eblits/

2016-01-16 Thread Mike Frysinger
commit: 6f8a59c05ff00ddafbfbfffecdac6e71cf175fbd
Author: Mike Frysinger  gentoo  org>
AuthorDate: Sat Jan 16 06:41:29 2016 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Sat Jan 16 08:16:44 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f8a59c0

sys-libs/glibc: rework sparc target selection #323445 #361779

The current code assumes all targets are at least sparc v9.  This breaks
people trying to build for older/embedded targets like sparc v8.  Only use
specific targets when the user has set -mcpu.  This does mean we will be
using a lower target for some users (who don't have -mcpu set), but that's
more in line with what we want.  Similarly, do not assume that because we
are using a 64-bit kernel we always want a 64-bit userland or newer cpu.

We also drop filtering of -mvis flags (we haven't been filtering the newer
options like -mvis2 or -mvis3) as it doesn't seem to be an issue.

We also drop the filtering of -Wa,-xarch and -Wa,-A flags.  We want to let
the user select their own, or just rely on the -mcpu setting.  This might
mean for some users they get slightly slower builds if they haven't set an
explicit -mcpu flag, but that's also what we want.

 sys-libs/glibc/files/eblits/common.eblit | 126 ++-
 1 file changed, 73 insertions(+), 53 deletions(-)

diff --git a/sys-libs/glibc/files/eblits/common.eblit 
b/sys-libs/glibc/files/eblits/common.eblit
index 51ba4a9..c0a989c 100644
--- a/sys-libs/glibc/files/eblits/common.eblit
+++ b/sys-libs/glibc/files/eblits/common.eblit
@@ -102,62 +102,82 @@ setup_target_flags() {
# Both sparc and sparc64 can use -fcall-used-g6.  -g7 
is bad, though.
filter-flags "-fcall-used-g7"
append-flags "-fcall-used-g6"
-   filter-flags "-mvis"
-
-   GLIBCMAJOR=$(get_version_component_range 1 ${PV})
-   GLIBCMINOR=$(get_version_component_range 2 ${PV})
-
-   # set CTARGET_OPT so glibc can use cpu-specific .S 
files for better performance
-   # - UltraSPARC T1 (niagara) support requires >= glibc 
2.8
-   # - UltraSPARC T2 (niagara2) support requires >= glibc 
2.7
-
-   if is_crosscompile || [[ ${PROFILE_ARCH} == "sparc64" 
]] || { has_multilib_profile && ! tc-is-cross-compiler; } ; then
-   case ${ABI}:${CTARGET} in
-   sparc64:*|\
-   default:sparc64*)
-   filter-flags -Wa,-xarch -Wa,-A
-
-   if is-flagq "-mcpu=niagara2" && 
[[ ${GLIBCMAJOR}.${GLIBCMINOR} > 2.7 ]] ; then
-   
CTARGET_OPT="sparc64v2-unknown-linux-gnu"
-   append-flags 
"-Wa,-xarch=v9b"
-   export 
ASFLAGS="${ASFLAGS} -Wa,-xarch=v9b"
-   elif { is-flagq "-mcpu=niagara" 
|| is-flagq "-mcpu=niagara2" ; } && [[ ${GLIBCMAJOR}.${GLIBCMINOR} > 2.6 ]] ; 
then
-   
CTARGET_OPT="sparc64v-unknown-linux-gnu"
-   append-flags 
"-Wa,-xarch=v9b"
-   export 
ASFLAGS="${ASFLAGS} -Wa,-xarch=v9b"
-   elif is-flagq 
"-mcpu=ultrasparc3" || is-flagq "-mcpu=niagara" || is-flagq "-mcpu=niagara2"; 
then
-   
CTARGET_OPT="sparc64b-unknown-linux-gnu"
-   append-flags 
"-Wa,-xarch=v9b"
-   export 
ASFLAGS="${ASFLAGS} -Wa,-xarch=v9b"
-   else
-   
CTARGET_OPT="sparc64-unknown-linux-gnu"
-   append-flags 
"-Wa,-xarch=v9a"
-   export 
ASFLAGS="${ASFLAGS} -Wa,-xarch=v9a"
-   fi
+
+   # If the CHOST is the basic one (e.g. not sparcv9-xxx 
already),
+   # try to pick a better one so glibc can use 
cpu-specific .S files.
+   # We key off the CFLAGS to get a good value.  Also need 
to handle
+   # version skew.
+   # We can't force users to set their CHOST to their 
exact machine
+   # as many of these are not recognized by config.sub/gcc 
and such :(.
+   # Note: If the mcpu values don't scale, we might try 
probing CPP defines.
+   # 

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

2016-01-16 Thread Alexis Ballier
commit: b1d2db56500d214a690c1410ff0528a03375f217
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Jan 16 09:34:17 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sat Jan 16 09:34:38 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1d2db56

media-video/ffmpeg: bump to 2.8.5

Package-Manager: portage-2.2.26
Signed-off-by: Alexis Ballier  gentoo.org>

 media-video/ffmpeg/Manifest|   1 +
 media-video/ffmpeg/ffmpeg-2.8.5.ebuild | 458 +
 2 files changed, 459 insertions(+)

diff --git a/media-video/ffmpeg/Manifest b/media-video/ffmpeg/Manifest
index 83c8f7a..139e91e 100644
--- a/media-video/ffmpeg/Manifest
+++ b/media-video/ffmpeg/Manifest
@@ -5,3 +5,4 @@ DIST ffmpeg-2.8.1.tar.bz2 8564488 SHA256 
e2ed5ab28dee1af94336739173eb0019afc21a5
 DIST ffmpeg-2.8.2.tar.bz2 8573586 SHA256 
830ec647f7ad774fc0caf17ba47774bf5dee7a89cbd65894f364a87ba3ad21b2 SHA512 
15c1c09d7d4bb8cc7babff4c782e4bf6621ed86d6b02bffb5468bdcd294a1144bf56a8a758d2801200bb89c26ce8f5a086d818affb473364424f94f701cbf749
 WHIRLPOOL 
83ae9a00cba7bc906672f55d796b044d3f4baad9a56804f6482e7c27b9f526d1364dfddaa22ef32b921e5dcd0158222897935544a34c1d1e7c3b9d681067d2e0
 DIST ffmpeg-2.8.3.tar.bz2 8576798 SHA256 
1bcf993a71839bb4a37eaa0c51daf315932b6dad6089f672294545cc51a5caf6 SHA512 
aadfab7db84b85cbfe44a5c7b47e447a1711c3d78fa195f30d3f6644e95842c8d484172e4c98f75cbae5d3783f4dd2972a892123d9a9ff90be32db20b0dc8aa6
 WHIRLPOOL 
c004fe02f300772b439ae070538d4ef4c5c514dd8a080de8e1a560597e79607b709319072f6120c35722481bc11f30077cc74a64800e390a7c5fabe82ded1718
 DIST ffmpeg-2.8.4.tar.bz2 8579383 SHA256 
83cc8136a7845546062a43cda9ae3cf0a02f43ef5e434d2f997f055231a75f8e SHA512 
37f88c05fd0b8d1c4de83f5330f756cddd157ba78487d78436899d46a49a4e420eb086d263dd77c6c31a61c91f7839f40b07ed87817d686498b90caf9d870aa5
 WHIRLPOOL 
7e1a85a0eb00f33aad4d18b6a8d4d76c78aa0654c4ce10a864996239950fadd4a4995c481cd0e95a6f669c566cacd3da9ada4c66bb0fba011d4d942c8679eb99
+DIST ffmpeg-2.8.5.tar.bz2 8580755 SHA256 
3b6d9951533323ee64a21d0aa7667a780b3470bfe4e0fb7c1b33307ce290615a SHA512 
2a46bef5ac99d114be7d3ece561ae71d09b87eaecba5da3c02ff1fe7e5cf4913e1b6feecca405540d1d70f9126591c209055edd7df1ad1d8bbf02f107701929e
 WHIRLPOOL 
59ef96e7536a098ccf42526f64173df750558d489afb641c49168e2fc45672b160519d8a9e9e3093e1fd02a1af8ca1936de7f29c316685ac25946636890c760e

diff --git a/media-video/ffmpeg/ffmpeg-2.8.5.ebuild 
b/media-video/ffmpeg/ffmpeg-2.8.5.ebuild
new file mode 100644
index 000..83454bb
--- /dev/null
+++ b/media-video/ffmpeg/ffmpeg-2.8.5.ebuild
@@ -0,0 +1,458 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+# Subslot: libavutil major.libavcodec major.libavformat major
+# Since FFmpeg ships several libraries, subslot is kind of limited here.
+# Most consumers will use those three libraries, if a "less used" library
+# changes its soname, consumers will have to be rebuilt the old way
+# (preserve-libs).
+# If, for example, a package does not link to libavformat and only libavformat
+# changes its ABI then this package will be rebuilt needlessly. Hence, such a
+# package is free _not_ to := depend on FFmpeg but I would strongly encourage
+# doing so since such a case is unlikely.
+FFMPEG_SUBSLOT=54.56.56
+
+SCM=""
+if [ "${PV#}" != "${PV}" ] ; then
+   SCM="git-2"
+   EGIT_REPO_URI="git://source.ffmpeg.org/ffmpeg.git"
+fi
+
+inherit eutils flag-o-matic multilib multilib-minimal toolchain-funcs ${SCM}
+
+DESCRIPTION="Complete solution to record, convert and stream audio and video. 
Includes libavcodec"
+HOMEPAGE="http://ffmpeg.org/;
+if [ "${PV#}" != "${PV}" ] ; then
+   SRC_URI=""
+elif [ "${PV%_p*}" != "${PV}" ] ; then # Snapshot
+   SRC_URI="mirror://gentoo/${P}.tar.bz2"
+else # Release
+   SRC_URI="http://ffmpeg.org/releases/${P/_/-}.tar.bz2;
+fi
+FFMPEG_REVISION="${PV#*_p}"
+
+SLOT="0/${FFMPEG_SUBSLOT}"
+LICENSE="
+   !gpl? ( LGPL-2.1 )
+   gpl? ( GPL-2 )
+   amr? (
+   gpl? ( GPL-3 )
+   !gpl? ( LGPL-3 )
+   )
+   encode? (
+   aac? (
+   gpl? ( GPL-3 )
+   !gpl? ( LGPL-3 )
+   )
+   amrenc? (
+   gpl? ( GPL-3 )
+   !gpl? ( LGPL-3 )
+   )
+   )
+   samba? ( GPL-3 )
+"
+if [ "${PV#}" = "${PV}" ] ; then
+   KEYWORDS="~alpha ~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
+fi
+
+# Options to use as use_enable in the foo[:bar] form.
+# This will feed configure with $(use_enable foo bar)
+# or $(use_enable foo foo) if no :bar is set.
+# foo is added to IUSE.
+FFMPEG_FLAG_MAP=(
+   +bzip2:bzlib cpudetection:runtime-cpudetect debug doc gnutls 
+gpl
+   +hardcoded-tables +iconv lzma +network openssl +postproc
+   samba:libsmbclient 

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

2016-01-16 Thread Michael Weber
commit: c802fb4f80eac86c94d62749a592ec921fc484bb
Author: Michael Weber  gentoo  org>
AuthorDate: Sat Jan 16 09:28:56 2016 +
Commit: Michael Weber  gentoo  org>
CommitDate: Sat Jan 16 09:28:56 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c802fb4f

app-misc/abduco: Version bump by lorem_ipsum.

Package-Manager: portage-2.2.26

 app-misc/abduco/Manifest | 2 +-
 app-misc/abduco/{abduco-0.3.ebuild => abduco-0.5.ebuild} | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/app-misc/abduco/Manifest b/app-misc/abduco/Manifest
index 21cb1b0..fba7d73 100644
--- a/app-misc/abduco/Manifest
+++ b/app-misc/abduco/Manifest
@@ -1,2 +1,2 @@
-DIST abduco-0.3.tar.gz 11978 SHA256 
934bf0b9ae25fb3f71b775387b5f281bf7d175fea79c12ec28ffd95390d4 SHA512 
0bbd3a52e256738d39edf8e73e43d72fd4bcf2d240f45b8287486910777310320e239e7d1abb523a37c573dc557a0e33bf5849aa34f50f261f50c27a80db7338
 WHIRLPOOL 
1741f3c8d47a4f745b0fa0bed79306ca2d7dba8a936c6e66c1773205809fa1cf12f33f4c9f488eaa3c31f57d21299f17ec092926539a4fd037ebf2619e0dfb85
 DIST abduco-0.4.tar.gz 14222 SHA256 
bda3729df116ce41f9a087188d71d934da2693ffb1ebcf33b803055eb478bcbb SHA512 
1f6df3604f5b4b59a650ccb8b6b7f9e62591154f72163350b8c8d2ffa9c392c9ebda0f958537a203e87319e275674fec6d161f18a10d49e44d0afc512c467f88
 WHIRLPOOL 
e232bbae99cdd0c3c5b0e06f8cce73126586f9d997a03ba03720030355d603ee488df40b04343b6bfd508d2ac05dbdd2ca3bc6a62a661b140c5bd9bfc43fde12
+DIST abduco-0.5.tar.gz 15790 SHA256 
bf6a4488355a7001a5dabbd1e8e3b7e7645efd1519274b956fcb8bcff086 SHA512 
e0772b8eecc1fb6f16c7516a6956825b9bda4149f00f56b34e68ec3544f74c2270ba8cc2642599de26ae34d11ed78b8bba70497bfc9a79f3008f50de02ce49d8
 WHIRLPOOL 
ffce64702323cba434768bb4864b9f8bd0e5a6768f3fd5a821081eee77dcffea33c8ab920e39471fb644ca2ff03214d04808d55804889a278417c5d6d76d3f79

diff --git a/app-misc/abduco/abduco-0.3.ebuild 
b/app-misc/abduco/abduco-0.5.ebuild
similarity index 93%
rename from app-misc/abduco/abduco-0.3.ebuild
rename to app-misc/abduco/abduco-0.5.ebuild
index 8dcc027..2506442 100644
--- a/app-misc/abduco/abduco-0.3.ebuild
+++ b/app-misc/abduco/abduco-0.5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -43,7 +43,7 @@ src_test() {
 
 src_install() {
dobin ${PN}
-   dodoc README
+   dodoc README.md
doman ${PN}.1
 
save_config config.def.h



[gentoo-commits] repo/gentoo:master commit in: x11-wm/xmonad-contrib/

2016-01-16 Thread Sergei Trofimovich
commit: 5d95e5c3af215ea30c7758911f638063d1a16aec
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sat Jan 16 09:47:54 2016 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat Jan 16 09:48:01 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d95e5c3

x11-wm/xmonad-contrib: bump up to 0.12, bug #572018

Reported-by: Mike Limansky

Package-Manager: portage-2.2.26

 x11-wm/xmonad-contrib/Manifest   |  1 +
 x11-wm/xmonad-contrib/xmonad-contrib-0.12.ebuild | 41 
 2 files changed, 42 insertions(+)

diff --git a/x11-wm/xmonad-contrib/Manifest b/x11-wm/xmonad-contrib/Manifest
index 655e928..5a163ac 100644
--- a/x11-wm/xmonad-contrib/Manifest
+++ b/x11-wm/xmonad-contrib/Manifest
@@ -1,2 +1,3 @@
 DIST xmonad-contrib-0.11.2.tar.gz 401758 SHA256 
515d87838ad1f9622d0b491390c5961318d2cb84c96410dee91b5653c5388c62 SHA512 
373e1ed1744cbdf26902402d74b4efafa043a4ccf1953c26ec55a03ef8de31818b0c4cfced08b43e664e5f052e52923c6dfb08d68be86726e9f0ed1d96ad7910
 WHIRLPOOL 
8356462938d9565ee010335c90646d5f23adf3b830bbf7727ef8fa89ff6c027ff94be44b99260ae3c57f9773b6cf985029ba2f183cc7b8c9e18d18fd260f90a9
 DIST xmonad-contrib-0.11.4.tar.gz 401743 SHA256 
a379b3d4f2d3d8793d6c76812e90cbb055fa0598cfba944af47139bb77e2acbc SHA512 
3d747988baa497475255be4cc96f7eba5cf6fc81658f8f877ca92148fb9a154423ee98ebeb23690de00b186d2e34ad13d94cf1fe332d4ca4f1f4a64790e46ed7
 WHIRLPOOL 
1f25fff0088f15942bddd6a8e285fcf283f723527cc10b120c81cbb9a74a56106d5f7c5f676cf6b3fcd118bc3843e510169161898267f160c73b35c0fba458df
+DIST xmonad-contrib-0.12.tar.gz 464978 SHA256 
131d31c471ac02ece9c7e920497b4839a45df786a2096f56adb1f2de1221f311 SHA512 
5bb145fc7d07ebc8e4dde5ba83b5340913fb089581d22e993663402fc6728eab9f6939466b7a262827c0098599073a928700e0acb8245b943b23e6cd01e63056
 WHIRLPOOL 
6618b4afafa8961745dda180c6375b9afdf48211eec93e561f450a3cb4d13a163dbc5175edc297cd324a9f3866a45d3b74cef59001a62bc0141908967d4b9688

diff --git a/x11-wm/xmonad-contrib/xmonad-contrib-0.12.ebuild 
b/x11-wm/xmonad-contrib/xmonad-contrib-0.12.ebuild
new file mode 100644
index 000..929d372
--- /dev/null
+++ b/x11-wm/xmonad-contrib/xmonad-contrib-0.12.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+# ebuild generated by hackport 0.4.6.
+#hackport: flags: -testing,use_xft:xft
+
+CABAL_FEATURES="lib profile haddock hoogle hscolour"
+inherit haskell-cabal
+
+DESCRIPTION="Third party extensions for xmonad"
+HOMEPAGE="http://xmonad.org/;
+SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0/${PV}"
+KEYWORDS="~amd64 ~ppc64 ~x86"
+IUSE="+xft"
+
+RDEPEND="dev-haskell/extensible-exceptions:=[profile?]
+   >=dev-haskell/mtl-1:=[profile?] =dev-haskell/x11-1.6.1:=[profile?] =dev-lang/ghc-7.6.1:=
+   >=x11-wm/xmonad-0.12:=[profile?] =dev-haskell/x11-xft-0.2:=[profile?] )
+"
+DEPEND="${RDEPEND}
+   >=dev-haskell/cabal-1.16.0
+"
+
+src_configure() {
+   haskell-cabal_src_configure \
+   --flag=-testing \
+   $(cabal_flag xft use_xft)
+}



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

2016-01-16 Thread Sergei Trofimovich
commit: 362565644aee9b855b257b26de4234799fe8445d
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sat Jan 16 09:46:35 2016 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat Jan 16 09:48:01 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36256564

x11-wm/xmonad: bump up to 0.12, bug #572018

Reported-by: Mike Limansky
Bug: https://bugs.gentoo.org/show_bug.cgi?id=572018

Package-Manager: portage-2.2.26

 x11-wm/xmonad/Manifest |  1 +
 x11-wm/xmonad/files/xmonad-0.12-check-repeat.patch | 40 ++
 x11-wm/xmonad/xmonad-0.12.ebuild   | 86 ++
 3 files changed, 127 insertions(+)

diff --git a/x11-wm/xmonad/Manifest b/x11-wm/xmonad/Manifest
index e2d8ead..b0d1946 100644
--- a/x11-wm/xmonad/Manifest
+++ b/x11-wm/xmonad/Manifest
@@ -1,2 +1,3 @@
 DIST xmonad-0.11.1.tar.gz 59307 SHA256 
39e0bf227df782d7a5799c811ad0d8b70c9d6eaaa94e8cc395fcf25895d6d2dd SHA512 
4916451d81d359dbbf508f3b20f649f956255f526f14b1eb6c0d32bc789474db30d7acac768663ca32784c7fe361195a50f45a7cb7371ee9a29c9b8f1c64d528
 WHIRLPOOL 
5707bd5763f525b196deea6ead806af74707e2bbd31ff67039b292f3b97f607c2351ef45e57373f0f7313e5c307335cb5f4a84820d8e658b7d864927f109891c
 DIST xmonad-0.11.tar.gz 59119 SHA256 
e5bd36d5184facad66acf2688b02922bfc6de32b576758f4b00688253c425bdb SHA512 
34740f032508584f34f6b138d21394eca17e8020bccc4d8c6e8b3cb6b7ca64b153077cfd16636a6130768ebd145fe993569f8a229862d7816d0c89c905ee08bc
 WHIRLPOOL 
9bab495c4094f21427afa797f97b6af13d9c156484b33087b6378191b0d99255f070adc09df3da9eba3ff55a59a8f03830110a4ab2aa9ad9d93d2f1a35d5dc54
+DIST xmonad-0.12.tar.gz 61436 SHA256 
e8f649dbd4a8d5f75fdac9ceb5ee38b64fd351910ade81c188f5dd7bc21dfdd7 SHA512 
e519c038d90db037bc81e7baf7b07cfa53922509e98ffddacfc4a6cc2c7376383be1e721f613057a5febbfcc661807b6382124eb673ac7a7cda23c738d3539ab
 WHIRLPOOL 
f0d37d35a9730b68b38c46ec7694ccd922b2fab96b3e8d99d007ccb887a06b3f88e6f1ea818124d427378246caab1f7d3ec4338eab1007431cdf5a19fc1cc3b9

diff --git a/x11-wm/xmonad/files/xmonad-0.12-check-repeat.patch 
b/x11-wm/xmonad/files/xmonad-0.12-check-repeat.patch
new file mode 100644
index 000..79bd2c2
--- /dev/null
+++ b/x11-wm/xmonad/files/xmonad-0.12-check-repeat.patch
@@ -0,0 +1,40 @@
+--- xmonad/src/XMonad/Core.hs  2010-09-05 05:11:42.0 +0400
 xmonad/src/XMonad/Core.hs  2010-09-18 07:59:14.0 +0400
+@@ -65,6 +65,7 @@
+ , waitingUnmap :: !(M.Map Window Int)-- ^ the number of 
expected UnmapEvents
+ , dragging :: !(Maybe (Position -> Position -> X (), X ()))
+ , numberlockMask   :: !KeyMask   -- ^ The numlock 
modifier
++, keyPressed   :: !KeyCode   -- ^ keycode of the 
key being pressed if any
+ , extensibleState  :: !(M.Map String (Either String StateExtension))
+ -- ^ stores custom state information.
+ --
+--- xmonad/src/XMonad/Main.hs  2010-09-05 05:11:42.0 +0400
 xmonad/src/XMonad/Main.hs  2010-09-18 08:03:11.0 +0400
+@@ -129,6 +129,7 @@
+ , mapped  = S.empty
+ , waitingUnmap= M.empty
+ , dragging= Nothing
++, keyPressed  = 0
+ , extensibleState = extState
+ }
+ allocaXEvent $ \e ->
+@@ -190,10 +191,15 @@
+ -- run window manager command
+ handle (KeyEvent {ev_event_type = t, ev_state = m, ev_keycode = code})
+ | t == keyPress = withDisplay $ \dpy -> do
+-s  <- io $ keycodeToKeysym dpy code 0
+-mClean <- cleanMask m
+-ks <- asks keyActions
+-userCodeDef () $ whenJust (M.lookup (mClean, s) ks) id
++kp <- gets keyPressed
++if kp /= code then do
++modify $ \s -> s { keyPressed = code }
++s  <- io $ keycodeToKeysym dpy code 0
++mClean <- cleanMask m
++ks <- asks keyActions
++userCodeDef () $ whenJust (M.lookup (mClean, s) ks) id
++else return ()
++| t == keyRelease = modify $ \s -> s { keyPressed = 0 }
+ 
+ -- manage a new window
+ handle (MapRequestEvent{ev_window = w}) = withDisplay $ \dpy -> do

diff --git a/x11-wm/xmonad/xmonad-0.12.ebuild b/x11-wm/xmonad/xmonad-0.12.ebuild
new file mode 100644
index 000..305a0c7
--- /dev/null
+++ b/x11-wm/xmonad/xmonad-0.12.ebuild
@@ -0,0 +1,86 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+# ebuild generated by hackport 0.4.6.
+#hackport: flags: -generatemanpage,-testing
+
+CABAL_FEATURES="bin lib profile haddock hoogle hscolour test-suite"
+inherit haskell-cabal
+
+DESCRIPTION="A tiling window manager"
+HOMEPAGE="http://xmonad.org;
+SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0/${PV}"
+KEYWORDS="~amd64 ~ppc64 ~sparc ~x86"
+IUSE="+default-term no-autorepeat-keys"
+

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

2016-01-16 Thread Pacho Ramos
commit: b8435d6bf1bfc68bb61c33e34e3c57c660c8c981
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sat Jan 16 11:29:07 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sat Jan 16 11:29:30 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8435d6b

profiles/package.mask: unmask fixed packages

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

diff --git a/profiles/package.mask b/profiles/package.mask
index cd17934..4e8e68e 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -65,10 +65,6 @@ dev-perl/ExtUtils-Constant
 media-libs/opengtl
 
 # Pacho Ramos  (08 Jan 2016)
-# Cannot be downloaded either mirrored, bug #561114. Removal in a month
-games-fps/doom3-mitm
-
-# Pacho Ramos  (08 Jan 2016)
 # Cannot be downloaded either mirrored, bug #561120. Removal in a month
 games-fps/ut2003-bonuspack-cm
 
@@ -381,12 +377,6 @@ app-i18n/scim-canna
 app-misc/lcd-stuff
 
 # Pacho Ramos  (06 Jan 2016)
-# Doesn't build with current kernels, lacks a maintainer to keep it patched
-# for compat with upcoming kernel versions too, bug #557422. Removal in a
-# month.
-app-laptop/nvidiabl
-
-# Pacho Ramos  (06 Jan 2016)
 # Upstream dead for ages, doesn't build, bug #558274. Removal in a month.
 net-wireless/ap-utils
 



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

2016-01-16 Thread Matthias Maier
commit: 1abe9c2d2c8501e81a7621f7a15463ccd488986b
Author: Matthias Maier  gentoo  org>
AuthorDate: Sat Jan 16 11:48:09 2016 +
Commit: Matthias Maier  gentoo  org>
CommitDate: Sat Jan 16 11:48:09 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1abe9c2d

dev-lang/julia: Update SRC_URI for 0.4.3

Package-Manager: portage-2.2.26

 dev-lang/julia/julia-0.4.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/julia/julia-0.4.3.ebuild 
b/dev-lang/julia/julia-0.4.3.ebuild
index 108dc30..f0b4381 100644
--- a/dev-lang/julia/julia-0.4.3.ebuild
+++ b/dev-lang/julia/julia-0.4.3.ebuild
@@ -12,7 +12,7 @@ DESCRIPTION="High-performance programming language for 
technical computing"
 HOMEPAGE="http://julialang.org/;
 SRC_URI="
https://github.com/JuliaLang/${PN}/releases/download/v${PV}/${P}.tar.gz
-   https://dev.gentoo.org/~tamiko/${P}-bundled.tar.gz
+   https://dev.gentoo.org/~tamiko/distfiles/${P}-bundled.tar.gz
 "
 
 LICENSE="MIT"



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

2016-01-16 Thread Johann Schmitz
commit: 983d14cf18efbac8551d3ff484fe0f94ae144a50
Author: Johann Schmitz  gentoo  org>
AuthorDate: Sat Jan 16 15:14:21 2016 +
Commit: Johann Schmitz  gentoo  org>
CommitDate: Sat Jan 16 15:14:21 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=983d14cf

dev-python/django-otp: Version bump

Package-Manager: portage-2.2.26

 dev-python/django-otp/Manifest| 2 +-
 .../django-otp/{django-otp-0.3.1.ebuild => django-otp-0.3.4.ebuild}   | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-python/django-otp/Manifest b/dev-python/django-otp/Manifest
index 7628132..800f7b1 100644
--- a/dev-python/django-otp/Manifest
+++ b/dev-python/django-otp/Manifest
@@ -1,2 +1,2 @@
 DIST django-otp-0.2.7.tar.gz 76879 SHA256 
dfc305aa894da2b7111c8846d90254b0d9099f415e14165f6e784f5ceddd5f3f SHA512 
b48c6dd505ed06b4028a1d27213ea759a1a54ca5f4e5c8dc2aad826535a80295fcdde3a1da455256927d26906e53ee40c47a0ab89de5c6331c2f3567e43fdae7
 WHIRLPOOL 
eb819e389d924953537f0f9db2dff56631b07ea50f898abd398f873dad0144255e14984f6f5aa2ab0d0bd296163c995c7837ab6fafefab87646189047b839f52
-DIST django-otp-0.3.1.tar.gz 38800 SHA256 
2aa9f24d655ca0c2583b7fc08c603c2861f337155e35fcc5aae9946e6985db45 SHA512 
6eb78da109609ab843d97c170615a2273f32fa02cd9ca874f8e059c80736d98015477c1c15e8db2fba59a449b44c471f067e3ddb87776378e908c04e3a8a82db
 WHIRLPOOL 
fe27c2fbdd89ff279694d4b2baa0cd11354c104baccbad8282036ddd476da5b3cadb331d372c7114bcc77f885c606f875039e27b72f1d271fa1df7387e794d2a
+DIST django-otp-0.3.4.tar.gz 39992 SHA256 
5e002e6f63211f1d2babb525f3ba7ef07851239671c48c439ba4800099cb5a2e SHA512 
62b6683050a9dbd0bcfc9a63bd965f19e5d088c3e53c5e45067f8a785aa7b2a7b540d0331742bf8b979ad95d308f944bfef250989d1f782849a71bbc79a7d53c
 WHIRLPOOL 
cab0e765007e68caaf79272452d9de74fbc11ccd84f436e506e3180e5ce20bec52ada1b7a75deab3f586bdda76207bc5ebf376288094568bdc0dcaae0389f10e

diff --git a/dev-python/django-otp/django-otp-0.3.1.ebuild 
b/dev-python/django-otp/django-otp-0.3.4.ebuild
similarity index 73%
rename from dev-python/django-otp/django-otp-0.3.1.ebuild
rename to dev-python/django-otp/django-otp-0.3.4.ebuild
index 407eec6..ffa3458 100644
--- a/dev-python/django-otp/django-otp-0.3.1.ebuild
+++ b/dev-python/django-otp/django-otp-0.3.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -8,7 +8,7 @@ PYTHON_COMPAT=( python2_7 python3_{3,4} )
 
 inherit distutils-r1
 
-DESCRIPTION="A pluggable framework for adding two-factor authentication to 
Django using one-time passwords"
+DESCRIPTION="Framework for adding two-factor authentication to Django using 
one-time passwords"
 HOMEPAGE="https://bitbucket.org/psagers/django-otp;
 SRC_URI="mirror://pypi/d/${PN}/${P}.tar.gz"
 



[gentoo-commits] repo/proj/prefix:master commit in: dev-libs/glib/

2016-01-16 Thread Fabian Groffen
commit: 81c3044c06bcbd831f36614e1c2b00116dc51ec4
Author: Fabian Groffen  gentoo  org>
AuthorDate: Sat Jan 16 15:53:26 2016 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Sat Jan 16 15:53:26 2016 +
URL:https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=81c3044c

dev-libs/glib: sync latest version from gx86

Package-Manager: portage-2.2.20-prefix

 dev-libs/glib/Manifest  |   1 +
 dev-libs/glib/glib-2.46.2-r1.ebuild | 336 
 2 files changed, 337 insertions(+)

diff --git a/dev-libs/glib/Manifest b/dev-libs/glib/Manifest
index c735024..ebeb275 100644
--- a/dev-libs/glib/Manifest
+++ b/dev-libs/glib/Manifest
@@ -2,4 +2,5 @@ DIST glib-1.2.10-r1-as-needed.patch.bz2 9099 SHA256 
3bb8c45706f97b526da851061c89
 DIST glib-1.2.10.tar.gz 421480 SHA256 
6e1ce7eedae713b11db82f11434d455d8a1379f783a79812cd2e05fc024a8d9f SHA512 
4452b741382194d4ca425f084fa60e1a9e30040ac2e839c9136047d0461cf4b1ebcc16aac4e65998d1b9329ead8f617966b3d09317a83634f14d556a7e14b7a8
 WHIRLPOOL 
478957ce8e49228d022bae50b042cdfc6d522d0d4880a0328b5695471295450c81c5e186e1760e56e317a4c4c95aabc5f2010d7a9b912fc451d04e14610e7dca
 DIST glib-2.42.1.tar.xz 6985120 SHA256 
8f3f0865280e45b8ce840e176ef83bcfd511148918cc8d39df2ee89b67dcf89a SHA512 
0d273e3e24f164f16f6663f88866ae412714eab7d15c1901fdef61f13649a08f9962e49f9d52e8a1683100f9c2dcc468b9a5bf8a9b3d6ca7b0d9488bc58f3f1e
 WHIRLPOOL 
5cf0dbce9890a61210f0c1c0b43a6147bfff107ee8d37de959fc533b56fa9e253d74996ed3ad05b2d756aecf65c1bd8cb1f50096304df2b2f09d05b28804
 DIST glib-2.44.1.tar.xz 7132940 SHA256 
8811deacaf8a503d0a9b701777ea079ca6a4277be10e3d730d2112735d5eca07 SHA512 
c24d307408e061b2657f7e7d1b8245c55605ebda26ee2dcc3497ee9d90bfc137d8e5f42f0cd5acf4b49ea28c424fa901e81f75ecf81833f6d0fe51d5e36e5888
 WHIRLPOOL 
6a1eef94b3ffed4d5cb551f4def6859ddff8ea0aac50048e706863f2bd4957c40b7034946852fa4604a109eb121c55b94ec51b3708a325ace5692f61fd1babb7
+DIST glib-2.46.2.tar.xz 7344636 SHA256 
5031722e37036719c1a09163cc6cf7c326e4c4f1f1e074b433c156862bd733db SHA512 
8b5298712710d77b4a47367071f782d2bb3042b149ec8fde8c065f80bf3c5375c94318d19665c0092572e4895e590231a47324d25f371310f02b43feb3009588
 WHIRLPOOL 
700b69360110351544780ace4dcb14f29505f63d8840882532a4b7c017860b6da86e09cbabca691b7b24cb08b8722e772555de044b8b21e4b0952c8a8e4e6ecb
 DIST pkg-config-0.28.tar.gz 1931203 SHA256 
6b6eb31c6ec4421174578652c7e141fdaae2dabad1021f420d8713206ac1f845 SHA512 
6eafa5ca77c5d44cd15f48457a5e96fcea2555b66d8e35ada5ab59864a0aa03d441e15f54ab9c6343693867b3b490f392c75b7d9312f024c9b7ec6a0194d8320
 WHIRLPOOL 
db4ddb4ce61724e629931c5ffccb4d7a551b4dc0f4efed5a966822307e4b5a786adee5705dd80ec0a9aa32cb1af9ad9615e307360e131fc34688207216161486

diff --git a/dev-libs/glib/glib-2.46.2-r1.ebuild 
b/dev-libs/glib/glib-2.46.2-r1.ebuild
new file mode 100644
index 000..901f977
--- /dev/null
+++ b/dev-libs/glib/glib-2.46.2-r1.ebuild
@@ -0,0 +1,336 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+# Until bug #537330 glib is a reverse dependency of pkgconfig and, then
+# adding new dependencies end up making stage3 to grow. Every addition needs
+# then to be think very closely.
+
+EAPI="5"
+PYTHON_COMPAT=( python2_7 )
+# Building with --disable-debug highly unrecommended.  It will build glib in
+# an unusable form as it disables some commonly used API.  Please do not
+# convert this to the use_enable form, as it results in a broken build.
+GCONF_DEBUG="yes"
+# Completely useless with or without USE static-libs, people need to use
+# pkg-config
+GNOME2_LA_PUNT="yes"
+
+inherit autotools bash-completion-r1 gnome2 libtool eutils flag-o-matic
multilib \
+   pax-utils python-r1 toolchain-funcs versionator virtualx linux-info 
multilib-minimal
+
+DESCRIPTION="The GLib library of C routines"
+HOMEPAGE="http://www.gtk.org/;
+SRC_URI="${SRC_URI}
+   http://pkgconfig.freedesktop.org/releases/pkg-config-0.28.tar.gz; # 
pkg.m4 for eautoreconf
+
+LICENSE="LGPL-2+"
+SLOT="2"
+IUSE="dbus fam kernel_linux +mime selinux static-libs systemtap test utils 
xattr"
+REQUIRED_USE="
+   utils? ( ${PYTHON_REQUIRED_USE} )
+   test? ( ${PYTHON_REQUIRED_USE} )
+"
+
+KEYWORDS="~ppc-aix ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
+
+RDEPEND="
+   !=virtual/libiconv-0-r1[${MULTILIB_USEDEP}]
+   >=virtual/libffi-3.0.13-r1[${MULTILIB_USEDEP}]
+   >=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}]
+   selinux? ( >=sys-libs/libselinux-2.2.2-r5[${MULTILIB_USEDEP}] )
+   xattr? ( >=sys-apps/attr-2.4.47-r1[${MULTILIB_USEDEP}] )
+   fam? ( >=virtual/fam-0-r1[${MULTILIB_USEDEP}] )
+   utils? (
+   ${PYTHON_DEPS}
+   >=dev-util/gdbus-codegen-${PV}[${PYTHON_USEDEP}]
+   kernel_linux? ( || (
+   >=dev-libs/elfutils-0.142

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

2016-01-16 Thread Fabian Groffen
commit: 417997081423eed861cd97d1049b1f858a78d311
Author: Fabian Groffen  gentoo  org>
AuthorDate: Sat Jan 16 16:28:01 2016 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Sat Jan 16 16:31:21 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41799708

profiles/prefix/sunos/solaris.package.use.mask: mask USE=xattr for glib

 profiles/prefix/sunos/solaris/package.use.mask | 6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/profiles/prefix/sunos/solaris/package.use.mask 
b/profiles/prefix/sunos/solaris/package.use.mask
index 9e93227..4095028 100644
--- a/profiles/prefix/sunos/solaris/package.use.mask
+++ b/profiles/prefix/sunos/solaris/package.use.mask
@@ -1,8 +1,12 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 
+# Fabian Groffen  (16 Jan 2016)
+# GNU attr isn't supported
+dev-libs/glib xattr
+
 # Fabian Groffen  (26 May 2015)
 # Avoid pulling in broken and unnecessary ossp-uuid, bug #324527
 dev-db/postgresql uuid



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

2016-01-16 Thread Jorge Manuel B. S. Vicetto
commit: dcda85b3067a397d881fe755a366217e4410bf62
Author: Jorge Manuel B. S. Vicetto (jmbsvicetto)  gentoo 
 org>
AuthorDate: Sat Jan 16 16:28:47 2016 +
Commit: Jorge Manuel B. S. Vicetto  gentoo  org>
CommitDate: Sat Jan 16 16:29:39 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dcda85b3

Bump to 8.0.2 release.

Signed-off-by: Jorge Manuel B. S. Vicetto (jmbsvicetto)  
gentoo.org>

 www-apps/drupal/Manifest | 2 +-
 www-apps/drupal/{drupal-8.0.1.ebuild => drupal-8.0.2.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-apps/drupal/Manifest b/www-apps/drupal/Manifest
index 30c25da..03d6bf4 100644
--- a/www-apps/drupal/Manifest
+++ b/www-apps/drupal/Manifest
@@ -1,3 +1,3 @@
 DIST drupal-6.37.tar.gz 1112775 SHA256 
e3db44fdeefa9c4b3edf31816a8cfcaffe300986dbebdc22769ec739d3296d5d SHA512 
4895221c7fb2913618490722629888a4862f28633a49ba5363a0393974941c68d07a3e255d6f380d7d97d0aa3251a76c03d5d0f0ab4c968af301a1207d8d35a0
 WHIRLPOOL 
8d7a0576fba31f2fcf9035755d3ef9a521461d9b3dfab57eb8871fe66038f4056b690a84513bf61a639b4c5f8126fa5180734542b0036f5d089afb0cb2abfecd
 DIST drupal-7.41.tar.gz 3257325 SHA256 
49ea620d191e81ffce0e7a96b5e7d12da672b3401c7ce1aff93fc941681eb111 SHA512 
57ee4fb1044d958a9f5698d2046fcd69427be6da30c57918735ced3fc7dbe1ffc4c69cac8362cd668ef0769d78b20461d78905f7e91212062e56351818dfbaf9
 WHIRLPOOL 
931f98f5e9de14f2c6ffb1bf75686bfea73d8c73606a3a1ab7b0a64e9cf06b9375900403e877a209be7f57663a8446a24ea317ccf9c771a9f143c675102465b0
-DIST drupal-8.0.1.tar.gz 11697695 SHA256 
3eaa512c4ba9bc38304f87ba20de04e118b8bb98851e27db6c6ccd7ddbd43a58 SHA512 
a976811226119165af799aba24bbabba11802a98f98e13b6f3ada6470d5e183238e468657ecbb6e379468b75dd9d6cdb427ed20a2450fa8f28aff9beac70136c
 WHIRLPOOL 
54d0f574ae40567db3a7c9ea4540a668e310df8155dfcbe219d0177b3c0eaa587580cc509d843acc941189432509fcfd83680b11677e7bb613c01fa7e8e9e51e
+DIST drupal-8.0.2.tar.gz 11720487 SHA256 
1a795cc3cd04b62c50820dcbae15b75741227f00b42ed701f8ef8e36bcd69e5e SHA512 
cc6bc90c2eb769aa723ac914f93e78915ee70085a61ba53c9162b87728124a048287b6e072202ab56145501a81f8eb4a23e71d70ba1245a15c2093bdc6938cd5
 WHIRLPOOL 
46705c6d96ad002237aaa8a9b8626f052d8473a64537c427ad9c2d009e3765c7bd05277f9a2a55536625b1bf89c9640429e28037893974e63fd19eee690d8812

diff --git a/www-apps/drupal/drupal-8.0.1.ebuild 
b/www-apps/drupal/drupal-8.0.2.ebuild
similarity index 100%
rename from www-apps/drupal/drupal-8.0.1.ebuild
rename to www-apps/drupal/drupal-8.0.2.ebuild



[gentoo-commits] repo/gentoo:master commit in: dev-perl/File-MimeInfo/

2016-01-16 Thread Mikle Kolyada
commit: c3546780141ef0f5e80de147868e9c472897439a
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sat Jan 16 17:04:50 2016 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sat Jan 16 17:04:50 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3546780

dev-perl/File-MimeInfo: stable for all

Package-Manager: portage-2.2.26

 dev-perl/File-MimeInfo/File-MimeInfo-0.270.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/File-MimeInfo/File-MimeInfo-0.270.0.ebuild 
b/dev-perl/File-MimeInfo/File-MimeInfo-0.270.0.ebuild
index 4eb9bbd..ba19925 100644
--- a/dev-perl/File-MimeInfo/File-MimeInfo-0.270.0.ebuild
+++ b/dev-perl/File-MimeInfo/File-MimeInfo-0.270.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="Determine file type"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos 
~sparc-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos ~sparc-solaris"
 IUSE="test"
 
 RDEPEND=">=dev-perl/File-BaseDir-0.03



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

2016-01-16 Thread Manuel Rüger
commit: 9150f4aa8d5a6fad2c9d8073c7c955e4204cf9c6
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sat Jan 16 17:48:04 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sat Jan 16 17:48:04 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9150f4aa

sys-apps/fxload: Drop to maintainer-needed

Package-Manager: portage-2.2.26

 sys-apps/fxload/metadata.xml | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/sys-apps/fxload/metadata.xml b/sys-apps/fxload/metadata.xml
index 7dbc2f2..a4278ff 100644
--- a/sys-apps/fxload/metadata.xml
+++ b/sys-apps/fxload/metadata.xml
@@ -2,8 +2,7 @@
 http://www.gentoo.org/dtd/metadata.dtd;>
 

-   mr...@gentoo.org
-   Manuel Rüger
+   maintainer-nee...@gentoo.org


linux-hotplug



[gentoo-commits] repo/gentoo:master commit in: dev-java/jlibeps/

2016-01-16 Thread Manuel Rüger
commit: a1f1403560c5c69dd60b2c9ed1aa10a59b159243
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sat Jan 16 17:45:41 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sat Jan 16 17:45:41 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1f14035

dev-java/jlibeps: Remove myself as maintainer

Package-Manager: portage-2.2.26

 dev-java/jlibeps/metadata.xml | 4 
 1 file changed, 4 deletions(-)

diff --git a/dev-java/jlibeps/metadata.xml b/dev-java/jlibeps/metadata.xml
index ed6cb42..459701f 100644
--- a/dev-java/jlibeps/metadata.xml
+++ b/dev-java/jlibeps/metadata.xml
@@ -2,10 +2,6 @@
 http://www.gentoo.org/dtd/metadata.dtd;>
 
java
-   
-   mr...@gentoo.org
-   Manuel Rüger
-   

jlibeps




[gentoo-commits] repo/gentoo:master commit in: net-wireless/mfoc/

2016-01-16 Thread Manuel Rüger
commit: 7cc9b278376e12b1f816168e6b1255eff2efd3e0
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sat Jan 16 17:47:05 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sat Jan 16 17:47:05 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7cc9b278

net-wireless/mfoc: Drop to maintainer-needed

Package-Manager: portage-2.2.26

 net-wireless/mfoc/metadata.xml | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/net-wireless/mfoc/metadata.xml b/net-wireless/mfoc/metadata.xml
index 1fb5c16..73575a3 100644
--- a/net-wireless/mfoc/metadata.xml
+++ b/net-wireless/mfoc/metadata.xml
@@ -2,8 +2,7 @@
 http://www.gentoo.org/dtd/metadata.dtd;>
 

-   mr...@gentoo.org
-   Manuel Rüger
+   maintainer-nee...@gentoo.org


nfc-tools/mfoc



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

2016-01-16 Thread Manuel Rüger
commit: cd1951ed5e89fe7855c00f4fe9e4c532f7d5a38e
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sat Jan 16 17:53:40 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sat Jan 16 17:53:40 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd1951ed

x11-plugins/pidgin-indicator: Drop to maintainer-needed

Package-Manager: portage-2.2.26

 x11-plugins/pidgin-indicator/metadata.xml | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/x11-plugins/pidgin-indicator/metadata.xml 
b/x11-plugins/pidgin-indicator/metadata.xml
index 9b198d3..bc186e2 100644
--- a/x11-plugins/pidgin-indicator/metadata.xml
+++ b/x11-plugins/pidgin-indicator/metadata.xml
@@ -2,8 +2,7 @@
 http://www.gentoo.org/dtd/metadata.dtd;>
 

-   mr...@gentoo.org
-   Manuel Rüger
+   maintainer-nee...@gentoo.org


philipl/pidgin-indicator



[gentoo-commits] repo/gentoo:master commit in: media-sound/gbsplay/, media-sound/gbsplay/files/

2016-01-16 Thread David Seifert
commit: 5b8fb13399e24aca92c35b82de0d94585263d2a4
Author: David Seifert  gentoo  org>
AuthorDate: Sat Jan 16 16:51:48 2016 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Jan 16 16:52:25 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b8fb133

media-sound/gbsplay: add -std=gnu89 to CFLAGS to restore pre-GCC5 semantics

Gentoo-Bug: 571000
Also bump ebuild to EAPI=6. Fix -Werror=format-security errors.

Package-Manager: portage-2.2.26

 .../files/gbsplay-0.0.91-fix-buildsystem.patch | 32 
 media-sound/gbsplay/gbsplay-0.0.91-r2.ebuild   | 57 ++
 2 files changed, 89 insertions(+)

diff --git a/media-sound/gbsplay/files/gbsplay-0.0.91-fix-buildsystem.patch 
b/media-sound/gbsplay/files/gbsplay-0.0.91-fix-buildsystem.patch
new file mode 100644
index 000..82089f9
--- /dev/null
+++ b/media-sound/gbsplay/files/gbsplay-0.0.91-fix-buildsystem.patch
@@ -0,0 +1,32 @@
+Fix linking failure due to different GCC5 inline semantics
+https://bugs.gentoo.org/show_bug.cgi?id=571000
+
+In addition, fix QA warnings caused by passing
+an unformatted string to printf().
+
+--- gbsplay-0.0.91/Makefile
 gbsplay-0.0.91/Makefile
+@@ -35,7 +35,7 @@
+   -predboolothers \
+   -shiftnegative \
+   -shiftimplementation
+-GBSCFLAGS  := -Wall -fsigned-char -D_FORTIFY_SOURCE=2
++GBSCFLAGS  := -Wall -fsigned-char -std=gnu89
+ GBSLDFLAGS := -Wl,-O1 -lm
+ GBSPLAYLDFLAGS :=
+ 
+--- gbsplay-0.0.91/plugout.c
 gbsplay-0.0.91/plugout.c
+@@ -55,10 +55,10 @@
+ {
+   long idx;
+ 
+-  printf(_("Available output plugins:\n\n"));
++  fputs(_("Available output plugins:\n\n"), stdout);
+ 
+   if (plugouts[0] == NULL) {
+-  printf(_("No output plugins available.\n\n"));
++  fputs(_("No output plugins available.\n\n"), stdout);
+   return;
+   }
+ 

diff --git a/media-sound/gbsplay/gbsplay-0.0.91-r2.ebuild 
b/media-sound/gbsplay/gbsplay-0.0.91-r2.ebuild
new file mode 100644
index 000..6e9a866
--- /dev/null
+++ b/media-sound/gbsplay/gbsplay-0.0.91-r2.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PLOCALES="de en"
+inherit l10n toolchain-funcs
+
+DESCRIPTION="Nintendo Gameboy sound player for GBS format"
+HOMEPAGE="https://www.cgarbs.de/gbsplay.en.html;
+SRC_URI="mirror://gentoo/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="+alsa nas nls oss"
+
+RDEPEND="alsa? ( media-libs/alsa-lib:0 )
+   nas? ( media-libs/nas:0 )"
+
+DEPEND="${RDEPEND}
+   nls? ( sys-devel/gettext:0 )"
+
+PATCHES=(
+   "${FILESDIR}/${P}-fix-buildsystem.patch"
+)
+
+src_configure() {
+   tc-export AR CC
+
+   # No econf, because "unknown option '--build=x86_64-pc-linux-gnu'"
+   ./configure \
+   --prefix=/usr \
+   --mandir=/usr/share/man \
+   --docdir=/usr/share/doc/${PF} \
+   --without-xmmsplugin \
+   --without-test \
+   $(use_enable nls i18n) \
+   $(use_enable oss devdsp) \
+   $(use_enable alsa) \
+   $(use_enable nas) || die "Configure failed."
+}
+
+src_compile() {
+   emake CC="$(tc-getCC)" SPLINT="true"
+}
+
+remove_disabled_locale() {
+   rm -r "${D}"/usr/share/locale/$1 || die
+}
+
+src_install() {
+   default
+
+   l10n_for_each_disabled_locale_do remove_disabled_locale
+}



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Test-SharedFork/

2016-01-16 Thread Mikle Kolyada
commit: f18b9e1422d35f3d014d6a6e6d5c30e8b776b9f3
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sat Jan 16 17:12:04 2016 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sat Jan 16 17:12:04 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f18b9e14

dev-perl/Test-SharedFork: x86 stable wrt bug #571596

Package-Manager: portage-2.2.26

 dev-perl/Test-SharedFork/Test-SharedFork-0.330.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Test-SharedFork/Test-SharedFork-0.330.0.ebuild 
b/dev-perl/Test-SharedFork/Test-SharedFork-0.330.0.ebuild
index 948e254..d3ef17e 100644
--- a/dev-perl/Test-SharedFork/Test-SharedFork-0.330.0.ebuild
+++ b/dev-perl/Test-SharedFork/Test-SharedFork-0.330.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="fork test"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86"
 IUSE="test"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: net-libs/txtorcon/

2016-01-16 Thread Manuel Rüger
commit: 250d95ae63646fde29dd6957f136b4c814d6b02b
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sat Jan 16 17:56:59 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sat Jan 16 17:56:59 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=250d95ae

net-libs/txtorcon: Drop to maintainer-needed

Package-Manager: portage-2.2.26

 net-libs/txtorcon/metadata.xml | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/net-libs/txtorcon/metadata.xml b/net-libs/txtorcon/metadata.xml
index 9ce1c04..a79a9c4 100644
--- a/net-libs/txtorcon/metadata.xml
+++ b/net-libs/txtorcon/metadata.xml
@@ -2,8 +2,7 @@
 http://www.gentoo.org/dtd/metadata.dtd;>
 
   
-mr...@gentoo.org
-Manuel Rüger
+maintainer-nee...@gentoo.org
   
   
 txtorcon



[gentoo-commits] repo/gentoo:master commit in: app-misc/carbon-c-relay/

2016-01-16 Thread Fabian Groffen
commit: 0ecc685b081f92924b988b21469dd1c5e93bbcbe
Author: Fabian Groffen  gentoo  org>
AuthorDate: Sat Jan 16 16:02:26 2016 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Sat Jan 16 16:04:15 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ecc685b

app-misc/carbon-c-relay: version bump to v1.5

Package-Manager: portage-2.2.20-prefix

 app-misc/carbon-c-relay/Manifest| 2 +-
 .../{carbon-c-relay-0.44.ebuild => carbon-c-relay-1.5.ebuild}   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-misc/carbon-c-relay/Manifest b/app-misc/carbon-c-relay/Manifest
index c53a99f..c15cc68 100644
--- a/app-misc/carbon-c-relay/Manifest
+++ b/app-misc/carbon-c-relay/Manifest
@@ -1,3 +1,3 @@
-DIST carbon-c-relay-0.44.tar.gz 54533 SHA256 
424f5eebdfcd8cd42f07495b97c440e9133723966013d63fe3f6d8220bd031dc SHA512 
ae0ded77d189c22bab0400922831211f411d47b92bde44f9a4c4208a094a57ac875a52e04ef6297238281bb44c8869f0510b3a3b6dc1c564e02e4f22bb69e268
 WHIRLPOOL 
b7351576d7f1bdb5c0929967faacd6861a10f8d8d3bedebcc9bf7a3f15e0b9ea2d3475ecd8e700e3f2fb190698ea343fcb4530d10522591512f1de9d787a0ab2
 DIST carbon-c-relay-0.45.tar.gz 63208 SHA256 
ba76d93d0448eae64147d580c2767ed42a8a9dd4a6c0f3e15a41276793bc53df SHA512 
7a5068a6a1502c80b03c642abb72639de644351edc2967736c6f40939a6e28598727ad7bec9008eb76c3211552d6583f0ec9670e7c32952c0f49f6b4cb9a6085
 WHIRLPOOL 
089a9a6c3fb40e1bfc680b7002bf9967c4a182ae00616933cd5b3ba9febda20853e716df69d552ade131aa272cd16dafb65d1ba84afeacb4383d87f9e028bf97
 DIST carbon-c-relay-1.4.tar.gz 71367 SHA256 
8575be832d204a0c12e4cd793ae05d5c2683974a90e93aeb70e69199b7991d45 SHA512 
389d08bccdbd2e566a2580017fb14afd37b0c609f20ecdef526f4810d50c84e06f396a161f0ad4eb7d1810cada9f24640b19afe7a18dd241a16d435cc72d8d0d
 WHIRLPOOL 
ad639e96e7589e7cd84e71d4840afeab9f18e768ee98fa9ab6e3d69e4255ad74e5b715e71667eaf330e9a7cc20ce2158058683081bb91785863cbcd5e6a4dccf
+DIST carbon-c-relay-1.5.tar.gz 71236 SHA256 
59a64e9567204a6bf2e294123a3b31b483ea3cf6bf1395d3a17272d7ee9ad0b0 SHA512 
ca8709a72aaa78de9aedd26a7b953be4550c226d8afaf494d96cb6de683bec871bc7e3d7e8c1ec593dc59783b8ca3c6dff46d83b208c1ffaf86edaa09e44c357
 WHIRLPOOL 
ce328538515cd433d016f24fb11f3b90ef959414d2c3f47c6acab3101893ef42df6de73eebf4a6291d9b471c87e4bc5ec1e046ef50aaf737cc7f08d56cdeda2a

diff --git a/app-misc/carbon-c-relay/carbon-c-relay-0.44.ebuild 
b/app-misc/carbon-c-relay/carbon-c-relay-1.5.ebuild
similarity index 94%
rename from app-misc/carbon-c-relay/carbon-c-relay-0.44.ebuild
rename to app-misc/carbon-c-relay/carbon-c-relay-1.5.ebuild
index e20b1c5..263b046 100644
--- a/app-misc/carbon-c-relay/carbon-c-relay-0.44.ebuild
+++ b/app-misc/carbon-c-relay/carbon-c-relay-1.5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 



[gentoo-commits] repo/gentoo:master commit in: media-sound/dagrab/files/, media-sound/dagrab/

2016-01-16 Thread David Seifert
commit: f826b97ceef7a94f6df7a36e77b459c0e66f3f13
Author: David Seifert  gentoo  org>
AuthorDate: Sat Jan 16 16:17:48 2016 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Jan 16 16:21:04 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f826b97c

media-sound/dagrab: add -std=gnu89 to CFLAGS to restore pre-GCC5 semantics

Gentoo-Bug: 570732
Also bump ebuild to EAPI=6. Update patches for -p1.

Package-Manager: portage-2.2.26

 media-sound/dagrab/dagrab-0.513-r1.ebuild  | 35 ++
 media-sound/dagrab/files/dagrab-0.513-freedb.patch |  8 ++---
 2 files changed, 39 insertions(+), 4 deletions(-)

diff --git a/media-sound/dagrab/dagrab-0.513-r1.ebuild 
b/media-sound/dagrab/dagrab-0.513-r1.ebuild
new file mode 100644
index 000..e901d83
--- /dev/null
+++ b/media-sound/dagrab/dagrab-0.513-r1.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit flag-o-matic
+
+MY_P="${PN}-S${PV}"
+DESCRIPTION="fixed point cd ripper"
+HOMEPAGE="http://vertigo.fme.vutbr.cz/~stibor/dagrab.html;
+SRC_URI="http://ashtray.jz.gts.cz/~smsti/archiv/${MY_P}.tgz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+S=${WORKDIR}/${MY_P}
+PATCHES=(
+   "${FILESDIR}/${P}-build.patch"
+   "${FILESDIR}/${P}-freedb.patch"
+)
+
+src_prepare() {
+   # fix #570732 by restoring pre-GCC5 inline semantics
+   append-cflags -std=gnu89
+
+   default
+}
+
+src_install() {
+   dobin dagrab
+   dodoc BUGS CHANGES FAQ grab TODO
+   doman dagrab.1
+}

diff --git a/media-sound/dagrab/files/dagrab-0.513-freedb.patch 
b/media-sound/dagrab/files/dagrab-0.513-freedb.patch
index 6a65576..5725867 100644
--- a/media-sound/dagrab/files/dagrab-0.513-freedb.patch
+++ b/media-sound/dagrab/files/dagrab-0.513-freedb.patch
@@ -1,5 +1,5 @@
 dagrab.1
-+++ dagrab.1
+--- dagrab-S0.513/dagrab.1
 dagrab-S0.513/dagrab.1
 @@ -209,7 +209,7 @@
  .B -H
  .I [host][:port]
@@ -9,8 +9,8 @@
  .RE
  
  .B -D
 const.h
-+++ const.h
+--- dagrab-S0.513/const.h
 dagrab-S0.513/const.h
 @@ -18,9 +18,9 @@
  #define BLEN  1024/* length in chars of command/trackname */
  #define OVERLAP   1   /* minimum number of sectors for 
overlapping */



[gentoo-commits] repo/gentoo:master commit in: dev-perl/ExtUtils-XSpp/

2016-01-16 Thread Mikle Kolyada
commit: 10c90bbb4aae0da23d920ace3606e30f69b95f96
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sat Jan 16 17:06:25 2016 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sat Jan 16 17:06:25 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10c90bbb

dev-perl/ExtUtils-XSpp: x86 stable wrt bug #571416

Package-Manager: portage-2.2.26

 dev-perl/ExtUtils-XSpp/ExtUtils-XSpp-0.180.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/ExtUtils-XSpp/ExtUtils-XSpp-0.180.0.ebuild 
b/dev-perl/ExtUtils-XSpp/ExtUtils-XSpp-0.180.0.ebuild
index 1c57be8..7be42d2 100644
--- a/dev-perl/ExtUtils-XSpp/ExtUtils-XSpp-0.180.0.ebuild
+++ b/dev-perl/ExtUtils-XSpp/ExtUtils-XSpp-0.180.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="XS for C++"
 
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="test"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Data-Structure-Util/

2016-01-16 Thread Mikle Kolyada
commit: 8a7671f699b116339eb5b6830e778331a0d88df2
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sat Jan 16 17:13:48 2016 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sat Jan 16 17:13:48 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a7671f6

dev-perl/Data-Structure-Util: x86 stable wrt bug #571596

Package-Manager: portage-2.2.26

 dev-perl/Data-Structure-Util/Data-Structure-Util-0.150.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Data-Structure-Util/Data-Structure-Util-0.150.0.ebuild 
b/dev-perl/Data-Structure-Util/Data-Structure-Util-0.150.0.ebuild
index 80106e5..448391a 100644
--- a/dev-perl/Data-Structure-Util/Data-Structure-Util-0.150.0.ebuild
+++ b/dev-perl/Data-Structure-Util/Data-Structure-Util-0.150.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="Change nature of data within a structure"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~ia64 ~ppc ~ppc64 ~sparc x86"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-perl/IO-Event/

2016-01-16 Thread Mikle Kolyada
commit: 92bb8c832fc5e08adb8254906652ba83afcd3463
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sat Jan 16 17:13:06 2016 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sat Jan 16 17:13:06 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92bb8c83

dev-perl/IO-Event: x86 stable wrt bug #571596

Package-Manager: portage-2.2.26

 dev-perl/IO-Event/IO-Event-0.813.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/IO-Event/IO-Event-0.813.0.ebuild 
b/dev-perl/IO-Event/IO-Event-0.813.0.ebuild
index f48a09b..1a59770 100644
--- a/dev-perl/IO-Event/IO-Event-0.813.0.ebuild
+++ b/dev-perl/IO-Event/IO-Event-0.813.0.ebuild
@@ -12,7 +12,7 @@ inherit perl-module
 DESCRIPTION="Tied Filehandles for Nonblocking IO with Object Callbacks"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~ia64 ~ppc ~ppc64 ~sparc x86"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Eval-Closure/

2016-01-16 Thread Mikle Kolyada
commit: c707d9a271e991832555335dc59dfe47b3ac68fd
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sat Jan 16 17:22:34 2016 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sat Jan 16 17:22:34 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c707d9a2

dev-perl/Eval-Closure: x86 stable wrt bug #570916

Package-Manager: portage-2.2.26

 dev-perl/Eval-Closure/Eval-Closure-0.130.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Eval-Closure/Eval-Closure-0.130.0.ebuild 
b/dev-perl/Eval-Closure/Eval-Closure-0.130.0.ebuild
index 2c49c32..786372d 100644
--- a/dev-perl/Eval-Closure/Eval-Closure-0.130.0.ebuild
+++ b/dev-perl/Eval-Closure/Eval-Closure-0.130.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="safely and cleanly create closures via string eval"
 
 SLOT="0"
-KEYWORDS="amd64 ~arm ~hppa ~ppc ~x86 ~x86-fbsd ~x64-macos"
+KEYWORDS="amd64 ~arm ~hppa ~ppc x86 ~x86-fbsd ~x64-macos"
 IUSE="test minimal"
 
 # Scalar::Util -> Scalar-List-Utils



[gentoo-commits] repo/gentoo:master commit in: net-im/pork/files/, net-im/pork/

2016-01-16 Thread David Seifert
commit: 7005ae03eb46029af953a8bf1b425d8cbfbf5154
Author: David Seifert  gentoo  org>
AuthorDate: Sat Jan 16 17:40:27 2016 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Jan 16 17:40:43 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7005ae03

net-im/pork: add -std=gnu89 to CFLAGS to restore pre-GCC5 semantics

Gentoo-Bug: 570598
In addition, modernize to EAPI=6 and fix implicit declarations.

Package-Manager: portage-2.2.26

 .../pork/files/pork-0.99.8.1-fix-buildsystem.patch | 101 +
 net-im/pork/pork-0.99.8.1-r1.ebuild|  43 +
 2 files changed, 144 insertions(+)

diff --git a/net-im/pork/files/pork-0.99.8.1-fix-buildsystem.patch 
b/net-im/pork/files/pork-0.99.8.1-fix-buildsystem.patch
new file mode 100644
index 000..cb63980
--- /dev/null
+++ b/net-im/pork/files/pork-0.99.8.1-fix-buildsystem.patch
@@ -0,0 +1,101 @@
+Fix buildsystem to explicitly compile with -std=gnu89 to avoid
+differencs in inline semantics introduced in GCC5.
+https://bugs.gentoo.org/show_bug.cgi?id=570598
+
+Additionally, fix QA issues caused by implicit declarations, such as:
+* QA Notice: Package triggers severe warnings which indicate that it
+*may exhibit random runtime failures.
+* pork_inet.c:69:8: warning: implicit declaration of function ‘vasprintf’ 
[-Wimplicit-function-declaration]
+
+--- pork-0.99.8.1/configure.ac
 pork-0.99.8.1/configure.ac
+@@ -114,6 +114,8 @@
+ 
+ AC_CHECK_LIB(ncurses, resizeterm, AC_DEFINE(HAVE_RESIZETERM, 1, [Define to 1 
if you have the 'resizeterm' function in -lncurses.]))
+ 
++AC_SEARCH_LIBS(stdscr, tinfo)
++
+ AC_CHECK_TYPE(u_int32_t, uint32_t)
+ if test "$ac_cv_type_u_int32_t" = "no"; then
+   AC_CHECK_TYPE(uint32_t, unsigned int)
+--- pork-0.99.8.1/Makefile.am
 pork-0.99.8.1/Makefile.am
+@@ -1,3 +1,5 @@
++AM_CFLAGS = -std=gnu89
++
+ SUBDIRS = \
+   src \
+   doc \
+--- pork-0.99.8.1/src/Makefile.am
 pork-0.99.8.1/src/Makefile.am
+@@ -6,7 +6,7 @@
+ endif
+ 
+ 
+-AM_CFLAGS = -funsigned-char -Imissing -Wall -Iprotocols -fPIC
++AM_CFLAGS = -funsigned-char -Imissing -Wall -Iprotocols -fPIC -std=gnu89
+ AM_CFLAGS += -DHELP_PATH=\"$(pkgdatadir)/help\" 
-DSYSTEM_PORKRC=\"$(pkgdatadir)/porkrc\"
+ AM_CFLAGS += $(PERL_CFLAGS) $(DEBUG_CFLAGS)
+ 
+--- pork-0.99.8.1/src/missing/Makefile.am
 pork-0.99.8.1/src/missing/Makefile.am
+@@ -1,5 +1,5 @@
+ INCLUDES = -I../../src
+-AM_CFLAGS = $(DEBUG_CFLAGS) $(PERL_CFLAGS)
++AM_CFLAGS = $(DEBUG_CFLAGS) $(PERL_CFLAGS) -std=gnu89
+ 
+ noinst_LIBRARIES = libmissing.a
+ 
+--- pork-0.99.8.1/src/pork_inet.c
 pork-0.99.8.1/src/pork_inet.c
+@@ -9,8 +9,9 @@
+ 
+ #include 
+ 
+-#include 
++#define _GNU_SOURCE 1
+ #include 
++#include 
+ #include 
+ #include 
+ #include 
+--- pork-0.99.8.1/src/pork_screen_io.c
 pork-0.99.8.1/src/pork_screen_io.c
+@@ -14,6 +14,8 @@
+ 
+ #include 
+ 
++#define _GNU_SOURCE 1
++#include 
+ #include 
+ #include 
+ #include 
+--- pork-0.99.8.1/src/protocols/aim/Makefile.am
 pork-0.99.8.1/src/protocols/aim/Makefile.am
+@@ -1,5 +1,5 @@
+ INCLUDES = -I. -I.. -I../.. -I../../.. -I../../missing -Ilibfaim
+-AM_CFLAGS = $(DEBUG_CFLAGS) $(PERL_CFLAGS)
++AM_CFLAGS = $(DEBUG_CFLAGS) $(PERL_CFLAGS) -std=gnu89
+ 
+ noinst_LIBRARIES = libaim.a
+ 
+--- pork-0.99.8.1/src/protocols/irc/Makefile.am
 pork-0.99.8.1/src/protocols/irc/Makefile.am
+@@ -1,6 +1,6 @@
+ INCLUDES = -I. -I.. -I../.. -I../../.. -I../../missing
+ 
+-AM_CFLAGS = $(DEBUG_CFLAGS) $(PERL_CFLAGS)
++AM_CFLAGS = $(DEBUG_CFLAGS) $(PERL_CFLAGS) -std=gnu89
+ 
+ noinst_LIBRARIES = libirc.a
+ 
+--- pork-0.99.8.1/src/protocols/Makefile.am
 pork-0.99.8.1/src/protocols/Makefile.am
+@@ -3,6 +3,6 @@
+ endif
+ 
+ INCLUDES = -I. -I.. -I../.. -I../missing
+-AM_CFLAGS = $(DEBUG_CFLAGS) $(PERL_CFLAGS)
++AM_CFLAGS = $(DEBUG_CFLAGS) $(PERL_CFLAGS) -std=gnu89
+ 
+ SUBDIRS = $(irc_dir) aim

diff --git a/net-im/pork/pork-0.99.8.1-r1.ebuild 
b/net-im/pork/pork-0.99.8.1-r1.ebuild
new file mode 100644
index 000..0a2e680
--- /dev/null
+++ b/net-im/pork/pork-0.99.8.1-r1.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+inherit autotools
+
+DESCRIPTION="Console based AIM client that looks like ircII"
+HOMEPAGE="http://dev.ojnk.net/;
+SRC_URI="mirror://sourceforge/ojnk/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~mips ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x86-macos"
+IUSE="perl"
+
+RDEPEND="
+   perl? ( dev-lang/perl )
+   sys-libs/ncurses:0=
+"
+DEPEND="${RDEPEND}"
+PATCHES=(
+   "${FILESDIR}/${P}-fix-buildsystem.patch"
+)
+
+src_prepare() {
+   default
+   eautoreconf
+}
+
+src_configure() {
+   econf $(use_enable perl)
+}
+
+src_install() {
+   default
+
+   doman doc/pork.1
+   insinto /usr/share/pork/examples
+   doins examples/blist.txt
+
+   

[gentoo-commits] data/api:master commit in: files/packages/

2016-01-16 Thread Manuel Rüger
commit: 5e2c6c3a0bfa07ccfd8325e127178efac1504c03
Author: Manuel Rüger  rueg  eu>
AuthorDate: Sat Jan 16 17:40:31 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sat Jan 16 17:40:31 2016 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=5e2c6c3a

Remove myself from net-im herd.

 files/packages/herds.xml | 4 
 1 file changed, 4 deletions(-)

diff --git a/files/packages/herds.xml b/files/packages/herds.xml
index 1a4c2c3..f60c53c 100644
--- a/files/packages/herds.xml
+++ b/files/packages/herds.xml
@@ -1527,10 +1527,6 @@
 Tony Vroon
 ejabberd and jabber-base
   
-  
-mr...@gentoo.org
-Manuel Rüger
-  
 
 
   sparc



[gentoo-commits] repo/gentoo:master commit in: sci-electronics/fritzing/

2016-01-16 Thread Manuel Rüger
commit: b0e9e5f19cbd0d7dd28c4d5c3c85e991d067324a
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sat Jan 16 17:48:44 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sat Jan 16 17:48:44 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0e9e5f1

sci-electronics/fritzing: Remove myself as maintainer

Package-Manager: portage-2.2.26

 sci-electronics/fritzing/metadata.xml | 5 -
 1 file changed, 5 deletions(-)

diff --git a/sci-electronics/fritzing/metadata.xml 
b/sci-electronics/fritzing/metadata.xml
index 922de4e..f753894 100644
--- a/sci-electronics/fritzing/metadata.xml
+++ b/sci-electronics/fritzing/metadata.xml
@@ -5,11 +5,6 @@
id...@gentoo.org
Christian Ruppert

-   
-   mr...@gentoo.org
-   Manuel Rüger
-   CC him on bugs.
-   

fritzing/fritzing-app




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

2016-01-16 Thread Manuel Rüger
commit: e98543ae9f617457bad7f51ce8883c37b410c4bd
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sat Jan 16 17:49:56 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sat Jan 16 17:49:56 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e98543ae

app-i18n/man-pages-de: Drop myself as maintainer

Package-Manager: portage-2.2.26

 app-i18n/man-pages-de/metadata.xml | 5 -
 1 file changed, 5 deletions(-)

diff --git a/app-i18n/man-pages-de/metadata.xml 
b/app-i18n/man-pages-de/metadata.xml
index 90686b8..eb83bf8 100644
--- a/app-i18n/man-pages-de/metadata.xml
+++ b/app-i18n/man-pages-de/metadata.xml
@@ -7,9 +7,4 @@
Markus Oehme
Assign bugs to him

-   
-   mr...@gentoo.org
-   Manuel Rüger
-   Proxy maintainer. CC him on bugs
-   
 



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

2016-01-16 Thread Manuel Rüger
commit: e3becc134e56f9998674c7b1feca09e705641f28
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sat Jan 16 18:01:27 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sat Jan 16 18:02:48 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3becc13

app-misc/ddccontrol: Drop to maintainer-needed

Package-Manager: portage-2.2.26

 app-misc/ddccontrol/metadata.xml | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/app-misc/ddccontrol/metadata.xml b/app-misc/ddccontrol/metadata.xml
index b6fbde4..fbe3ac7 100644
--- a/app-misc/ddccontrol/metadata.xml
+++ b/app-misc/ddccontrol/metadata.xml
@@ -2,8 +2,7 @@
 http://www.gentoo.org/dtd/metadata.dtd;>
 
   
-mr...@gentoo.org
-Manuel Rüger
+maintainer-nee...@gentoo.org
   
   
 enable direct PCI memory access (the setuid ddcpci 
util)



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

2016-01-16 Thread Manuel Rüger
commit: d33603f5222c3ee78b5270d3334502b38448a9ea
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sat Jan 16 18:00:50 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sat Jan 16 18:02:48 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d33603f5

app-misc/ddccontrol-db: Drop to maintainer-needed

Package-Manager: portage-2.2.26

 app-misc/ddccontrol-db/metadata.xml | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/app-misc/ddccontrol-db/metadata.xml 
b/app-misc/ddccontrol-db/metadata.xml
index b4e15d5..30e9b3a 100644
--- a/app-misc/ddccontrol-db/metadata.xml
+++ b/app-misc/ddccontrol-db/metadata.xml
@@ -2,8 +2,7 @@
 http://www.gentoo.org/dtd/metadata.dtd;>
 
   
-mr...@gentoo.org
-Manuel Rüger
+maintainer-nee...@gentoo.org
   
   
 ddccontrol/ddccontrol-db



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

2016-01-16 Thread Johann Schmitz
commit: be7cc2d32c9813249a10859bbd7825e1dfe7d230
Author: Johann Schmitz  gentoo  org>
AuthorDate: Sat Jan 16 16:08:18 2016 +
Commit: Johann Schmitz  gentoo  org>
CommitDate: Sat Jan 16 16:27:44 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be7cc2d3

dev-python/phonenumbers: New ebuild 
(https://github.com/daviddrysdale/python-phonenumbers)

Dependency of django-two-factor-auth 1.3.0

Package-Manager: portage-2.2.26

 dev-python/phonenumbers/Manifest  |  1 +
 dev-python/phonenumbers/metadata.xml  | 11 ++
 dev-python/phonenumbers/phonenumbers-7.2.3.ebuild | 26 +++
 3 files changed, 38 insertions(+)

diff --git a/dev-python/phonenumbers/Manifest b/dev-python/phonenumbers/Manifest
new file mode 100644
index 000..f6145fb
--- /dev/null
+++ b/dev-python/phonenumbers/Manifest
@@ -0,0 +1 @@
+DIST phonenumbers-7.2.3.tar.gz 4252048 SHA256 
7a9735fc1083ddf161e4eb2800cab11abd98b06b4f384c405e4752d654f0aab3 SHA512 
73d544c963e4cf33b8cd2d73ba9e4df0c3c77bc2718358ef686a549a5c11d326c4fd73dd11cea97d814732d41021c51e0675d483d133bd44be38eb65ff443689
 WHIRLPOOL 
c455961517ef805f246e8c65ed95a868da9b1c05a20a0d33024cd9435d751c1410dbcde5fbc6520df8ac322785c4339a46db79410e430d61b8ecf852e782c41e

diff --git a/dev-python/phonenumbers/metadata.xml 
b/dev-python/phonenumbers/metadata.xml
new file mode 100644
index 000..13f6795
--- /dev/null
+++ b/dev-python/phonenumbers/metadata.xml
@@ -0,0 +1,11 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  
+er...@gentoo.org
+Johann Schmitz (ercpe)
+  
+  
+daviddrysdale/python-phonenumbers
+  
+

diff --git a/dev-python/phonenumbers/phonenumbers-7.2.3.ebuild 
b/dev-python/phonenumbers/phonenumbers-7.2.3.ebuild
new file mode 100644
index 000..e56e0fa
--- /dev/null
+++ b/dev-python/phonenumbers/phonenumbers-7.2.3.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 python3_{3,4} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python port of Google's libphonenumber"
+HOMEPAGE="https://github.com/daviddrysdale/python-phonenumbers;
+SRC_URI="https://github.com/daviddrysdale/python-${PN}/archive/release-${PV}.tar.gz
 -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+S="${WORKDIR}/python-${PN}-release-${PV}"
+
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
+
+python_test() {
+   esetup.py test
+}
\ No newline at end of file



[gentoo-commits] dev/jmbsvicetto:master commit in: www-apps/drupal/

2016-01-16 Thread Jorge Manuel B. S. Vicetto
commit: ea0342b1250640d87ad741e87697894d0025eec2
Author: Jorge Manuel B. S. Vicetto (jmbsvicetto)  gentoo 
 org>
AuthorDate: Sat Jan 16 16:29:07 2016 +
Commit: Jorge Manuel B. S. Vicetto  gentoo  org>
CommitDate: Sat Jan 16 16:29:07 2016 +
URL:https://gitweb.gentoo.org/dev/jmbsvicetto.git/commit/?id=ea0342b1

Bump to 8.0.2 release.

Signed-off-by: Jorge Manuel B. S. Vicetto (jmbsvicetto)  
gentoo.org>

 www-apps/drupal/Manifest | 2 +-
 www-apps/drupal/{drupal-8.0.1.ebuild => drupal-8.0.2.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-apps/drupal/Manifest b/www-apps/drupal/Manifest
index 30c25da..03d6bf4 100644
--- a/www-apps/drupal/Manifest
+++ b/www-apps/drupal/Manifest
@@ -1,3 +1,3 @@
 DIST drupal-6.37.tar.gz 1112775 SHA256 
e3db44fdeefa9c4b3edf31816a8cfcaffe300986dbebdc22769ec739d3296d5d SHA512 
4895221c7fb2913618490722629888a4862f28633a49ba5363a0393974941c68d07a3e255d6f380d7d97d0aa3251a76c03d5d0f0ab4c968af301a1207d8d35a0
 WHIRLPOOL 
8d7a0576fba31f2fcf9035755d3ef9a521461d9b3dfab57eb8871fe66038f4056b690a84513bf61a639b4c5f8126fa5180734542b0036f5d089afb0cb2abfecd
 DIST drupal-7.41.tar.gz 3257325 SHA256 
49ea620d191e81ffce0e7a96b5e7d12da672b3401c7ce1aff93fc941681eb111 SHA512 
57ee4fb1044d958a9f5698d2046fcd69427be6da30c57918735ced3fc7dbe1ffc4c69cac8362cd668ef0769d78b20461d78905f7e91212062e56351818dfbaf9
 WHIRLPOOL 
931f98f5e9de14f2c6ffb1bf75686bfea73d8c73606a3a1ab7b0a64e9cf06b9375900403e877a209be7f57663a8446a24ea317ccf9c771a9f143c675102465b0
-DIST drupal-8.0.1.tar.gz 11697695 SHA256 
3eaa512c4ba9bc38304f87ba20de04e118b8bb98851e27db6c6ccd7ddbd43a58 SHA512 
a976811226119165af799aba24bbabba11802a98f98e13b6f3ada6470d5e183238e468657ecbb6e379468b75dd9d6cdb427ed20a2450fa8f28aff9beac70136c
 WHIRLPOOL 
54d0f574ae40567db3a7c9ea4540a668e310df8155dfcbe219d0177b3c0eaa587580cc509d843acc941189432509fcfd83680b11677e7bb613c01fa7e8e9e51e
+DIST drupal-8.0.2.tar.gz 11720487 SHA256 
1a795cc3cd04b62c50820dcbae15b75741227f00b42ed701f8ef8e36bcd69e5e SHA512 
cc6bc90c2eb769aa723ac914f93e78915ee70085a61ba53c9162b87728124a048287b6e072202ab56145501a81f8eb4a23e71d70ba1245a15c2093bdc6938cd5
 WHIRLPOOL 
46705c6d96ad002237aaa8a9b8626f052d8473a64537c427ad9c2d009e3765c7bd05277f9a2a55536625b1bf89c9640429e28037893974e63fd19eee690d8812

diff --git a/www-apps/drupal/drupal-8.0.1.ebuild 
b/www-apps/drupal/drupal-8.0.2.ebuild
similarity index 100%
rename from www-apps/drupal/drupal-8.0.1.ebuild
rename to www-apps/drupal/drupal-8.0.2.ebuild



[gentoo-commits] repo/gentoo:master commit in: dev-python/django-phonenumber-field/

2016-01-16 Thread Johann Schmitz
commit: 303f0a44ba138146d1b6bcc501cf398dcf990597
Author: Johann Schmitz  gentoo  org>
AuthorDate: Sat Jan 16 16:24:56 2016 +
Commit: Johann Schmitz  gentoo  org>
CommitDate: Sat Jan 16 16:27:44 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=303f0a44

dev-python/django-phonenumber-field: Added version 1.0.0

Package-Manager: portage-2.2.26

 dev-python/django-phonenumber-field/Manifest   |  1 +
 .../django-phonenumber-field-1.0.0.ebuild  | 24 ++
 2 files changed, 25 insertions(+)

diff --git a/dev-python/django-phonenumber-field/Manifest 
b/dev-python/django-phonenumber-field/Manifest
index 6c5b07b..aa65efa 100644
--- a/dev-python/django-phonenumber-field/Manifest
+++ b/dev-python/django-phonenumber-field/Manifest
@@ -1 +1,2 @@
 DIST django-phonenumber-field-0.7.2.tar.gz 6208 SHA256 
f3b23af290d0f800945c44e0737bd32f3ee38f63e7ad7076450778fe682a52fe SHA512 
bdb48ac1fa22c959409ba37b28786fbb46220628bf88265dd3c13ab2c676816d0dd1ed9195ce614a8184937347c3c4760fbdd1f57e235758790881af9a44f504
 WHIRLPOOL 
b83b276d18b4014657b8d0705f00358049ec242ad4552d7f679e8cca9d650f49bde0a2d11b91cd42b09f75783d74d480ccc18e70e8acf50b4fa2be514c97b2a2
+DIST django-phonenumber-field-1.0.0.tar.gz 7871 SHA256 
36abe11167ff24abd0d575bb48b2307b10499f53a658e63f695c0a1187119fe6 SHA512 
aab5efd10f2872a60f4115fe160490b7c6a668e9ee63f34bc12647c068c9f97894a9d00de4f988c0b5e07ed1c0e408a663669c0c7a7e05a543d21589296e1377
 WHIRLPOOL 
15e8d066c9438b3032aa1e889071dea5b7e3c294cb91f9b36a513b6e287a74012e8d9c33cb89c5171ec2b66b078dca7a14c81cd34500d99cf36d180e144b2dc9

diff --git 
a/dev-python/django-phonenumber-field/django-phonenumber-field-1.0.0.ebuild 
b/dev-python/django-phonenumber-field/django-phonenumber-field-1.0.0.ebuild
new file mode 100644
index 000..251d5c6
--- /dev/null
+++ b/dev-python/django-phonenumber-field/django-phonenumber-field-1.0.0.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+# 1.0.0 would support 3.5 and pypy too
+PYTHON_COMPAT=( python2_7 python3_{3,4} )
+
+inherit distutils-r1
+
+DESCRIPTION="Django model and form field for normalised phone numbers using 
python-phonenumbers"
+HOMEPAGE="https://github.com/stefanfoulis/django-phonenumber-field;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
+   dev-python/Babel[${PYTHON_USEDEP}]
+   >=dev-python/phonenumbers-7.0.2[${PYTHON_USEDEP}]
+   >=dev-python/django-1.5[${PYTHON_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: dev-python/django-phonenumber-field/

2016-01-16 Thread Johann Schmitz
commit: 3de11f232ac935e909b4949bd2667c3a17da0879
Author: Johann Schmitz  gentoo  org>
AuthorDate: Sat Jan 16 16:21:12 2016 +
Commit: Johann Schmitz  gentoo  org>
CommitDate: Sat Jan 16 16:27:44 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3de11f23

dev-python/django-phonenumber-field: New ebuild for django-phone-number-field 
(https://github.com/stefanfoulis/django-phonenumber-field)

Package-Manager: portage-2.2.26

 dev-python/django-phonenumber-field/Manifest   |  1 +
 .../django-phonenumber-field-0.7.2.ebuild  | 23 ++
 dev-python/django-phonenumber-field/metadata.xml   | 11 +++
 3 files changed, 35 insertions(+)

diff --git a/dev-python/django-phonenumber-field/Manifest 
b/dev-python/django-phonenumber-field/Manifest
new file mode 100644
index 000..6c5b07b
--- /dev/null
+++ b/dev-python/django-phonenumber-field/Manifest
@@ -0,0 +1 @@
+DIST django-phonenumber-field-0.7.2.tar.gz 6208 SHA256 
f3b23af290d0f800945c44e0737bd32f3ee38f63e7ad7076450778fe682a52fe SHA512 
bdb48ac1fa22c959409ba37b28786fbb46220628bf88265dd3c13ab2c676816d0dd1ed9195ce614a8184937347c3c4760fbdd1f57e235758790881af9a44f504
 WHIRLPOOL 
b83b276d18b4014657b8d0705f00358049ec242ad4552d7f679e8cca9d650f49bde0a2d11b91cd42b09f75783d74d480ccc18e70e8acf50b4fa2be514c97b2a2

diff --git 
a/dev-python/django-phonenumber-field/django-phonenumber-field-0.7.2.ebuild 
b/dev-python/django-phonenumber-field/django-phonenumber-field-0.7.2.ebuild
new file mode 100644
index 000..72470d8
--- /dev/null
+++ b/dev-python/django-phonenumber-field/django-phonenumber-field-0.7.2.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 python3_{3,4} )
+
+inherit distutils-r1
+
+DESCRIPTION="Django model and form field for normalised phone numbers using 
python-phonenumbers"
+HOMEPAGE="https://github.com/stefanfoulis/django-phonenumber-field;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
+   dev-python/Babel[${PYTHON_USEDEP}]
+   >=dev-python/phonenumbers-7.0.2[${PYTHON_USEDEP}]
+   >=dev-python/django-1.5[${PYTHON_USEDEP}]"

diff --git a/dev-python/django-phonenumber-field/metadata.xml 
b/dev-python/django-phonenumber-field/metadata.xml
new file mode 100644
index 000..b16dfd9
--- /dev/null
+++ b/dev-python/django-phonenumber-field/metadata.xml
@@ -0,0 +1,11 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  
+er...@gentoo.org
+Johann Schmitz (ercpe)
+  
+  
+stefanfoulis/django-phonenumber-field
+  
+



[gentoo-commits] repo/gentoo:master commit in: dev-python/django-two-factor-auth/

2016-01-16 Thread Johann Schmitz
commit: 6f691c85f171f0c7cbb79eac52c15a18d9956812
Author: Johann Schmitz  gentoo  org>
AuthorDate: Sat Jan 16 16:37:34 2016 +
Commit: Johann Schmitz  gentoo  org>
CommitDate: Sat Jan 16 16:37:59 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f691c85

dev-python/django-two-factor-auth: Version bump

Package-Manager: portage-2.2.26

 dev-python/django-two-factor-auth/Manifest |  1 +
 .../django-two-factor-auth-1.3.0.ebuild| 41 ++
 2 files changed, 42 insertions(+)

diff --git a/dev-python/django-two-factor-auth/Manifest 
b/dev-python/django-two-factor-auth/Manifest
index 39fa65e..5e300cb 100644
--- a/dev-python/django-two-factor-auth/Manifest
+++ b/dev-python/django-two-factor-auth/Manifest
@@ -1,2 +1,3 @@
 DIST django-two-factor-auth-1.1.1.tar.gz 101960 SHA256 
19cf066f7a4c76147d3ad5e5e46cf078772064ecde83acf9ece93670ec92d9cf SHA512 
f0ff3deeceb00b2b28d6237e1d4e4dbc2574c872b564abb491b77130b56aa7a705432ac93bf2a9ae9f03e780c58c409584d624f41bce690afd910edbc8bb5eae
 WHIRLPOOL 
7f20d4060b549792a7e5e36857ded765e3d06df403163d38dfcb67a93ee0c62a10fd7bad5b1055c28693ae05e5c93bfe137b7095ad0ab2ec26b20c1627d4b8d6
 DIST django-two-factor-auth-1.2.1.tar.gz 102165 SHA256 
e98d6bea7f18d5667a2681e524739f60d8680f747e9aeb094c5175f7dcc540a6 SHA512 
c7947318929a91096e329e21db81c798f6522050d45203dd2cdeb0708f03d06ab6c650305546cd5e53080cdc77f43c6bcedbc77ad7eb1c88ffa49da5957f40ff
 WHIRLPOOL 
6393b76fdbd3020e73fd26b564793fe8944d57a1728b15253f8efd7d19253cb1f7a369fa94bf2b500ba618919a6914f766b25d852501db3defaed77a0a3b0a9a
+DIST django-two-factor-auth-1.3.0.tar.gz 98955 SHA256 
874daf7b5aa0f9f9eb57a8a08a8730727940c38f8603caae77ade314e1c8cde8 SHA512 
5876e82897b7b86663f12701652d266c20a9d4ea16da8722e96050ecf3a3997fb0bf3e08cbcc1ae12763f68e52d66d2749343f8b7757d4286da14e8ceb98c85b
 WHIRLPOOL 
66282472cd3bce5359f724b0fa64a2be2f9ab9635db7862a023e4f1b58d2dd2a8f3e9bb5fa5d06d686ff7d794b010d2381541391c13c4879c389fb84f4565aba

diff --git 
a/dev-python/django-two-factor-auth/django-two-factor-auth-1.3.0.ebuild 
b/dev-python/django-two-factor-auth/django-two-factor-auth-1.3.0.ebuild
new file mode 100644
index 000..c709dca
--- /dev/null
+++ b/dev-python/django-two-factor-auth/django-two-factor-auth-1.3.0.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+# would support 3_5
+PYTHON_COMPAT=( python{2_7,3_3,3_4} )
+
+inherit eutils distutils-r1
+
+DESCRIPTION="User-friendly Two-Factor Authentication for Django"
+HOMEPAGE="https://github.com/Bouke/django-two-factor-auth;
+SRC_URI="https://github.com/Bouke/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+IUSE="test yubikey"
+
+CDEPEND=">=dev-python/django-1.8[${PYTHON_USEDEP}]
+   >=dev-python/django-otp-0.3.3[${PYTHON_USEDEP}]
+   dev-python/qrcode[${PYTHON_USEDEP}]
+   dev-python/twilio[${PYTHON_USEDEP}]
+   >=dev-python/phonenumbers-7.0.9[${PYTHON_USEDEP}]
+   =dev-python/django-phonenumber-field-0.7.2[${PYTHON_USEDEP}]
+   dev-python/django-formtools[${PYTHON_USEDEP}]
+   yubikey? ( dev-python/django-otp-yubikey[${PYTHON_USEDEP}] )
+   "
+
+RDEPEND="${CDEPEND}"
+DEPEND="test? (
+   dev-python/flake8[${PYTHON_USEDEP}]
+   dev-python/mock[${PYTHON_USEDEP}]
+   ${CDEPEND}
+   )"
+
+python_test() {
+   emake test
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/django-two-factor-auth/

2016-01-16 Thread Johann Schmitz
commit: 2698d0e40e5e4603b53d6be811c3d3a85d5b925e
Author: Johann Schmitz  gentoo  org>
AuthorDate: Sat Jan 16 16:38:44 2016 +
Commit: Johann Schmitz  gentoo  org>
CommitDate: Sat Jan 16 16:38:44 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2698d0e4

dev-python/django-two-factor-auth: Dropped old version

Package-Manager: portage-2.2.26

 dev-python/django-two-factor-auth/Manifest |  1 -
 .../django-two-factor-auth-1.1.1.ebuild| 42 --
 2 files changed, 43 deletions(-)

diff --git a/dev-python/django-two-factor-auth/Manifest 
b/dev-python/django-two-factor-auth/Manifest
index 5e300cb..38d6a3c 100644
--- a/dev-python/django-two-factor-auth/Manifest
+++ b/dev-python/django-two-factor-auth/Manifest
@@ -1,3 +1,2 @@
-DIST django-two-factor-auth-1.1.1.tar.gz 101960 SHA256 
19cf066f7a4c76147d3ad5e5e46cf078772064ecde83acf9ece93670ec92d9cf SHA512 
f0ff3deeceb00b2b28d6237e1d4e4dbc2574c872b564abb491b77130b56aa7a705432ac93bf2a9ae9f03e780c58c409584d624f41bce690afd910edbc8bb5eae
 WHIRLPOOL 
7f20d4060b549792a7e5e36857ded765e3d06df403163d38dfcb67a93ee0c62a10fd7bad5b1055c28693ae05e5c93bfe137b7095ad0ab2ec26b20c1627d4b8d6
 DIST django-two-factor-auth-1.2.1.tar.gz 102165 SHA256 
e98d6bea7f18d5667a2681e524739f60d8680f747e9aeb094c5175f7dcc540a6 SHA512 
c7947318929a91096e329e21db81c798f6522050d45203dd2cdeb0708f03d06ab6c650305546cd5e53080cdc77f43c6bcedbc77ad7eb1c88ffa49da5957f40ff
 WHIRLPOOL 
6393b76fdbd3020e73fd26b564793fe8944d57a1728b15253f8efd7d19253cb1f7a369fa94bf2b500ba618919a6914f766b25d852501db3defaed77a0a3b0a9a
 DIST django-two-factor-auth-1.3.0.tar.gz 98955 SHA256 
874daf7b5aa0f9f9eb57a8a08a8730727940c38f8603caae77ade314e1c8cde8 SHA512 
5876e82897b7b86663f12701652d266c20a9d4ea16da8722e96050ecf3a3997fb0bf3e08cbcc1ae12763f68e52d66d2749343f8b7757d4286da14e8ceb98c85b
 WHIRLPOOL 
66282472cd3bce5359f724b0fa64a2be2f9ab9635db7862a023e4f1b58d2dd2a8f3e9bb5fa5d06d686ff7d794b010d2381541391c13c4879c389fb84f4565aba

diff --git 
a/dev-python/django-two-factor-auth/django-two-factor-auth-1.1.1.ebuild 
b/dev-python/django-two-factor-auth/django-two-factor-auth-1.1.1.ebuild
deleted file mode 100644
index c2d665d..000
--- a/dev-python/django-two-factor-auth/django-two-factor-auth-1.1.1.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-PYTHON_COMPAT=( python{2_7,3_3,3_4} )
-
-inherit eutils distutils-r1
-
-DESCRIPTION="User-friendly Two-Factor Authentication for Django"
-HOMEPAGE="https://github.com/Bouke/django-two-factor-auth;
-SRC_URI="https://github.com/Bouke/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-IUSE="test yubikey"
-
-CDEPEND=">=dev-python/django-1.4.2[${PYTHON_USEDEP}]
-   >=dev-python/django-otp-0.2.0[${PYTHON_USEDEP}]
-   dev-python/qrcode[${PYTHON_USEDEP}]
-   dev-python/twilio[${PYTHON_USEDEP}]
-   yubikey? ( dev-python/django-otp-yubikey[${PYTHON_USEDEP}] )
-   "
-
-RDEPEND="${CDEPEND}"
-DEPEND="test? (
-   dev-python/flake8[${PYTHON_USEDEP}]
-   dev-python/mock[${PYTHON_USEDEP}]
-   ${CDEPEND}
-   )"
-
-python_prepare_all() {
-   distutils-r1_python_prepare_all
-   sed -i "/'qrcode/s/^/#/" setup.py || die
-}
-
-python_test() {
-   emake test
-}



[gentoo-commits] repo/gentoo:master commit in: dev-perl/File-RsyncP/

2016-01-16 Thread Mikle Kolyada
commit: 09d43ca9aa71a6b682eb8bb63e9836ba457d89b2
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sat Jan 16 17:01:20 2016 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sat Jan 16 17:01:20 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09d43ca9

dev-perl/File-RsyncP: x86 stable wrt bug #571928

Package-Manager: portage-2.2.26

 dev-perl/File-RsyncP/File-RsyncP-0.740.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/File-RsyncP/File-RsyncP-0.740.0.ebuild 
b/dev-perl/File-RsyncP/File-RsyncP-0.740.0.ebuild
index 9e8632c..fc3ee7e 100644
--- a/dev-perl/File-RsyncP/File-RsyncP-0.740.0.ebuild
+++ b/dev-perl/File-RsyncP/File-RsyncP-0.740.0.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="http://perlrsync.sourceforge.net/ ${HOMEPAGE}"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86"
 IUSE=""
 
 RDEPEND="net-misc/rsync"



[gentoo-commits] repo/gentoo:master commit in: dev-perl/FCGI/

2016-01-16 Thread Mikle Kolyada
commit: b3be2db7140780086ef395b940827f9974287602
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sat Jan 16 17:08:09 2016 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sat Jan 16 17:08:09 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3be2db7

dev-perl/FCGI: x86 stable wrt bug #571418

Package-Manager: portage-2.2.26

 dev-perl/FCGI/FCGI-0.770.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/FCGI/FCGI-0.770.0.ebuild 
b/dev-perl/FCGI/FCGI-0.770.0.ebuild
index 0ffd761..b8e2d16 100644
--- a/dev-perl/FCGI/FCGI-0.770.0.ebuild
+++ b/dev-perl/FCGI/FCGI-0.770.0.ebuild
@@ -12,7 +12,7 @@ DESCRIPTION="Fast CGI module"
 
 LICENSE="FastCGI"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~hppa ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm ~hppa ~ppc ~ppc64 x86"
 IUSE=""
 
 RDEPEND="



  1   2   3   >