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

2016-06-22 Thread Anthony G. Basile
commit: 33c793a95997728d5d117a9ad07a4aef57aa48dc
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Thu Jun 23 06:44:01 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Thu Jun 23 06:44:01 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33c793a9

www-apps/moodle: version bump to 3.1

Package-Manager: portage-2.2.28

 www-apps/moodle/Manifest  |   1 +
 www-apps/moodle/moodle-3.1.ebuild | 128 ++
 2 files changed, 129 insertions(+)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index a0a0f9b..d57e9d7 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -2,3 +2,4 @@ DIST moodle-2.7.14.tgz 35005794 SHA256 
c89250c9a2995f1f2a70ded150ca4dcb08413f8a6
 DIST moodle-2.8.12.tgz 36000130 SHA256 
05fa695ced738cc9638ac62144c3bbda30f919093a6ffc78fd04b418329b4101 SHA512 
f934d0b86c7c8a6da2a1b2b6e6201832b978f4e971afb37116df28a784420054436b61557a9c0cec9c3d38a581e8f42c91e2b49b9411268011120891efe8fdde
 WHIRLPOOL 
99e7fe059005dacc1fa41fe1b351b223ebdae5456feb848440d0fdf15ebc945a9492716f5c49cf58a50acf7e141414eb002744dd031e9eedc394d9b43b1a5ad4
 DIST moodle-2.9.6.tgz 36582260 SHA256 
b5b17e869cc7f122d7f624a6ec3cf9fcfaa7166b3020e3c819c2135ae7327a15 SHA512 
61021e7e57df18f26c95b7b3c38d5d25d2269110a5c623476a461f28bdfb2f7c6e2a61d558fa387e9a64627a9b71caf25bc357b95bd40335e415ad6a3804d9b5
 WHIRLPOOL 
a4e783bfcb430c0ec48f23ea951745bf8db34ac058fed788497c04392ef3b0ded29de1389c25afd1d0db7a8c9da9f70675d86f80a50d10bf66c16efb2cab8e21
 DIST moodle-3.0.4.tgz 38110816 SHA256 
27e3f58d2bc1e63163f5c7d27aaf5548c216a433e87be7bf429030aada43b469 SHA512 
ceb41ce986c0e378753815367a649ce0c7404ca671c9f13fe00350bf7504584aa4d40badac6d4c2a9eedfae1f2c1b0a6e82f46ca84be1f1b043a11eaac4b
 WHIRLPOOL 
158db9bd7231cafd9bd32e318700bd53c3c4011e409330aba0d3c36f2390f6b1c2cb7ffd797fa80f29b63a387228d8f27f5fd8b87cd77614f110c3f7e7828c6f
+DIST moodle-3.1.tgz 37440572 SHA256 
5debb77fe2a82f28b25505f1244cc9e641b1c0b20dfefe831917c605da74151c SHA512 
a8ab1b275bcb75e233b4cb77c6afb7bfb268e9dd11add7120c420e9f6179146640ab3bad8f4b050eaa254a2adb01500b80e2fc47517f6c1a1e98c13ad8389354
 WHIRLPOOL 
635a9d7c545880e98904ec30348011aee4bcd47cecd463c576ca4c4f3ac5b2848601b359d5282885151c89e0bac48881fbf132e2879f92218edbd1991623

diff --git a/www-apps/moodle/moodle-3.1.ebuild 
b/www-apps/moodle/moodle-3.1.ebuild
new file mode 100644
index 000..ccdb5ad
--- /dev/null
+++ b/www-apps/moodle/moodle-3.1.ebuild
@@ -0,0 +1,128 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+inherit versionator webapp
+
+AVC=( $(get_version_components) )
+MY_BRANCH="stable${AVC[0]}${AVC[1]}"
+
+DESCRIPTION="The Moodle Course Management System"
+HOMEPAGE="http://moodle.org";
+SRC_URI="http://download.moodle.org/${MY_BRANCH}/${P}.tgz";
+S="${WORKDIR}/${PN}"
+
+LICENSE="GPL-2"
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+#SLOT empty due to webapp
+
+DB_FLAGS="mysqli?,mssql?,postgres?"
+DB_TYPES=${DB_FLAGS//\?/}
+DB_TYPES=${DB_TYPES//,/ }
+
+AUTHENTICATION_FLAGS="imap?,ldap?,odbc?"
+AUTHENTICATION_MODES=${AUTHENTICATION_FLAGS//\?/}
+AUTHENTICATION_MODES=${AUTHENTICATION_MODES//,/ }
+
+PHP_REQUIRED_FLAGS="ctype,curl,iconv,json,session,simplexml,xml,zip"
+PHP_OPTIONAL_FLAGS="gd,intl,soap,ssl,tokenizer,xmlrpc"
+PHP_FLAGS="${PHP_REQUIRED_FLAGS},${PHP_OPTIONAL_FLAGS}"
+
+IUSE="${DB_TYPES} ${AUTHENTICATION_MODES} vhosts"
+REQUIRED_USE="|| ( ${DB_TYPES} )"
+
+# No forced dependency on
+#  mssql? - lives on a windows server
+#  mysql? ( virtual/mysql )
+#  postgres? ( dev-db/postgresql-server-9* )
+# which may live on another server.  These USE flags affect the configuration
+# file and the dependency on php.  However other dbs are possible.  See 
config.php
+# and the moodle documentation for other possibilities.
+DEPEND=""
+RDEPEND="
+   >=dev-lang/php-5.4.4[${DB_FLAGS},${AUTHENTICATION_FLAGS},${PHP_FLAGS}]
+   virtual/httpd-php
+   virtual/cron"
+
+pkg_setup() {
+   webapp_pkg_setup
+
+   # How many dbs were selected? If one and only one, which one is it?
+   MYDB=""
+   DB_COUNT=0
+   for db in ${DB_TYPES}; do
+   if use ${db}; then
+   MYDB=${db}
+   DB_COUNT=$(($DB_COUNT+1))
+   fi
+   done
+
+   # REQUIRED_USE above guarantees that ${DB_COUNT} cannot be zero
+   #if [[ ${DB_COUNT} -eq 0 ]]; then
+   #   eerror
+   #   eerror 
"\033[1;31m**\033[00m"
+   #   eerror "No database selected in your USE flags,"
+   #   eerror "You must select at least one."
+   #   eerror 
"\033[1;31m**\033[00m"
+   #   eerror
+   #   die
+   #fi
+
+   if [[ ${DB_COUNT} -gt 1 ]]; then
+   MYDB=""
+   ewarn
+

[gentoo-commits] repo/gentoo:master commit in: app-shells/bash/files/

2016-06-22 Thread Mike Frysinger
commit: e034ed6fa7205737661467cc148fadba79d7fec8
Author: Mike Frysinger  gentoo  org>
AuthorDate: Thu Jun 23 06:01:29 2016 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Thu Jun 23 06:01:32 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e034ed6f

app-shells/bash: bashrc: back out clearing of default LS_COLORS #583814

The behavior of ls in the default case (when LS_COLORS isn't set) isn't
documented well.  The manual leads you to believe the defaults will be
used when in reality they are not.  A scan of the source shows this.  So
back out some the attempts to optimize the env and go back to exporting
LS_COLORS all the time.  We'll just have to live with incompat warnings
when coreutils upgrades & changes behavior.

 app-shells/bash/files/bashrc | 32 +---
 1 file changed, 9 insertions(+), 23 deletions(-)

diff --git a/app-shells/bash/files/bashrc b/app-shells/bash/files/bashrc
index f625657..6db6966 100644
--- a/app-shells/bash/files/bashrc
+++ b/app-shells/bash/files/bashrc
@@ -53,43 +53,29 @@ esac
 # dircolors --print-database uses its own built-in database
 # instead of using /etc/DIR_COLORS.  Try to use the external file
 # first to take advantage of user additions.
+# We run dircolors directly due to its changes in file syntax and
+# terminal name patching.
 use_color=false
 if type -P dircolors >/dev/null ; then
# Enable colors for ls, etc.  Prefer ~/.dir_colors #64489
LS_COLORS=
if [[ -f ~/.dir_colors ]] ; then
-   # If you have a custom file, chances are high that it's not the 
default.
-   used_default_dircolors="no"
eval "$(dircolors -b ~/.dir_colors)"
elif [[ -f /etc/DIR_COLORS ]] ; then
-   # People might have customized the system database.
-   used_default_dircolors="maybe"
eval "$(dircolors -b /etc/DIR_COLORS)"
else
-   used_default_dircolors="yes"
eval "$(dircolors -b)"
fi
+   # Note: We always evaluate the LS_COLORS setting even when it's the
+   # default.  If it isn't set, then `ls` will only colorize by default
+   # based on file attributes and ignore extensions (even the compiled
+   # in defaults of dircolors). #583814
if [[ -n ${LS_COLORS:+set} ]] ; then
use_color=true
-
-   # The majority of systems out there do not customize these 
files, so we
-   # want to avoid always exporting the large $LS_COLORS variable. 
 This
-   # keeps the active env smaller, and it means we don't have to 
deal with
-   # running new/old (incompatible) versions of `ls` compared to 
when we
-   # last sourced this file.
-   case ${used_default_dircolors} in
-   no) ;;
-   yes) unset LS_COLORS ;;
-   *)
-   ls_colors=$(eval "$(dircolors -b)"; echo "${LS_COLORS}")
-   if [[ ${ls_colors} == "${LS_COLORS}" ]] ; then
-   unset LS_COLORS
-   fi
-   unset ls_colors
-   ;;
-   esac
+   else
+   # Delete it if it's empty as it's useless in that case.
+   unset LS_COLORS
fi
-   unset used_default_dircolors
 else
# Some systems (e.g. BSD & embedded) don't typically come with
# dircolors so we need to hardcode some terminals in here.



[gentoo-commits] repo/gentoo:master commit in: app-shells/bash/, app-shells/bash/files/

2016-06-22 Thread Mike Frysinger
commit: 8da4a0c2cd84f57cc191814b88189858f3d9f8be
Author: Mike Frysinger  gentoo  org>
AuthorDate: Thu Jun 23 05:31:04 2016 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Thu Jun 23 05:43:30 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8da4a0c2

app-shells/bash: version bump to 4.3_p46

 app-shells/bash/Manifest|   4 +
 app-shells/bash/bash-4.3_p46.ebuild | 248 
 app-shells/bash/files/bash-4.3-protos.patch |  10 ++
 3 files changed, 262 insertions(+)

diff --git a/app-shells/bash/Manifest b/app-shells/bash/Manifest
index 87ebc09..c283bd1 100644
--- a/app-shells/bash/Manifest
+++ b/app-shells/bash/Manifest
@@ -278,3 +278,7 @@ DIST bash43-039 1531 SHA256 
ab94dced2215541097691f60c3eb323cc28ef2549463e6a5334b
 DIST bash43-040 1532 SHA256 
84bb396b9262992ca5424feab6ed3ec39f193ef5c76dfe4a62b551bd8dd9d76b SHA512 
25a0696f1f0e78cb971afa404e0b7fe634b70d49d6a5a9d6ff5506c42063968e8ede83ad80bd0b79601363676fe3abfedc3b76984f6f9ad2e7798790682e21d0
 WHIRLPOOL 
a435f25ae432161f676b4965cc20cc096fa18af8a191dca7cb311a41e3504e5d27c668fb3430fece1de45e0eed9cb34357dc887e83ace9819f24d585eddf6720
 DIST bash43-041 2362 SHA256 
4ec432966e4198524a7e0cd685fe222e96043769c9613e66742ac475db132c1a SHA512 
d75cdd6a1fb8aeb1a4e88f046cfea3ec493b994b96f60f27d5577b59408422bb7c51cc4525cadab821fd8c57f44fb07f811b087d077359242caff3b54cfc6819
 WHIRLPOOL 
c88e754d694b69bcb3ce390ab3e29932b30a74f8f15b75b570cc46699c072b0f872824766c45bc2a98627529896bdf5aaf6493a493ffd33932d9ed6a362defb3
 DIST bash43-042 1535 SHA256 
ac219322db2791da87a496ee6e8e5544846494bdaaea2626270c2f73c1044919 SHA512 
01a6601029c0a55c9bf1a4ace3f387f9d094a9b9ee3511e2113c000123d85b1d5813c369e62d5a6dd329f515ef0d67d11394a6c0e4516956387556c13d13009a
 WHIRLPOOL 
790b15282a81f5717fb675ea4ae752382ddb1b101766e32c68deb1ec1d64fcf8841b3da556b87ac685e18b528a1de31bc4b94900369f6386f8e3991ed76232c1
+DIST bash43-043 1942 SHA256 
47a8a3c005b46e25821f4d8f5ccb04c1d653b1c829cb40568d553dc44f7a6180 SHA512 
eb05e537fac08587d0755ad59218bb5a51685aefc1476d6e3feaf72acd1e08cbda512988d8c157425e7939863b313d1e36f51b32f8a8497655c6b0710a24b738
 WHIRLPOOL 
3c9a466b68ea5d94b5ad9d1868ad1ace80df6608a9bd1b77c1cd06f7edb588090061f7f4e2639dd7190763864511d573dec33aad77be722516a1300e8a45ce31
+DIST bash43-044 1658 SHA256 
9338820630bf67373b44d8ea68409f65162ea7a47b9b29ace06a0aed12567f99 SHA512 
2937ef80c99e93094e4aaa6a93d077efc3e433a4712c17e30590a0abeb5488293365cb8aa19e37d25b7d5c38d3ad26cdea12b904e5ffb2cdb16f18ab12f422fd
 WHIRLPOOL 
488f567b900e49a9de9b92e9a8e29a92a087d390e9f24c3986bf1d89524878c88c7a3c2cae959844427fb20e6858a7b8eae112aac640f3d97ba1f79888f9f25d
+DIST bash43-045 1312 SHA256 
ba6ec3978e9eaa1eb3fabdaf3cc6fdf8c4606ac1c599faaeb4e2d69864150023 SHA512 
7b79dacff44e5358da736334d2277a2879ca1389e22e9dac50e139f30dab623bc89a56930d89e74efc468a00d051f6747ccaffcd1a30d7c737d49780b9830e3d
 WHIRLPOOL 
f361e523879ff1898574ac5eca480661bd787dc278fff204e7f27da89e85439b4e9d36a5f556046b760f3beb115302e745b5196bfa081b402d3f76fb44463558
+DIST bash43-046 1494 SHA256 
b3b456a6b690cd293353f17e22d92a202b3c8bce587ae5f2667c20c9ab6f688f SHA512 
c036b659fa681f8129110356bec33fad00fb8e469f3b4bcefd0b7ddf5e20030977716adf5c65f58f3ff68cd7af0bdd42392ee077100bc7f45ee123749d082f7d
 WHIRLPOOL 
d58384a2ca77f9a80a69a117221da51a701539cf5497d8e0fc634cd1cc0cb0024e02675bea810a0f42b873b557d479ba1b7aee6e6f73bd1422df2dbb29396477

diff --git a/app-shells/bash/bash-4.3_p46.ebuild 
b/app-shells/bash/bash-4.3_p46.ebuild
new file mode 100644
index 000..dd22287
--- /dev/null
+++ b/app-shells/bash/bash-4.3_p46.ebuild
@@ -0,0 +1,248 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="4"
+
+inherit eutils flag-o-matic toolchain-funcs multilib
+
+# Official patchlevel
+# See ftp://ftp.cwru.edu/pub/bash/bash-4.3-patches/
+PLEVEL=${PV##*_p}
+MY_PV=${PV/_p*}
+MY_PV=${MY_PV/_/-}
+MY_P=${PN}-${MY_PV}
+[[ ${PV} != *_p* ]] && PLEVEL=0
+patches() {
+   local opt=$1 plevel=${2:-${PLEVEL}} pn=${3:-${PN}} pv=${4:-${MY_PV}}
+   [[ ${plevel} -eq 0 ]] && return 1
+   eval set -- {1..${plevel}}
+   set -- $(printf "${pn}${pv/\.}-%03d " "$@")
+   if [[ ${opt} == -s ]] ; then
+   echo "${@/#/${DISTDIR}/}"
+   else
+   local u
+   for u in ftp://ftp.cwru.edu/pub/bash mirror://gnu/${pn} ; do
+   printf "${u}/${pn}-${pv}-patches/%s " "$@"
+   done
+   fi
+}
+
+# The version of readline this bash normally ships with.
+READLINE_VER="6.3"
+
+DESCRIPTION="The standard GNU Bourne again shell"
+HOMEPAGE="http://tiswww.case.edu/php/chet/bash/bashtop.html";
+SRC_URI="mirror://gnu/bash/${MY_P}.tar.gz $(patches)"
+[[ ${PV} == *_rc* ]] && SRC_URI+=" ftp://ftp.cwru.edu/pub/bash/${MY_P}.tar.gz";
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~spa

[gentoo-commits] repo/gentoo:master commit in: app-shells/bash/files/

2016-06-22 Thread Mike Frysinger
commit: becfc11732db43397071f873487813165c0bdd85
Author: Mike Frysinger  gentoo  org>
AuthorDate: Thu Jun 23 05:29:58 2016 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Thu Jun 23 05:31:13 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=becfc117

app-shells/bash: bashrc: clean up ls_colors var too #572582

 app-shells/bash/files/bashrc | 1 +
 1 file changed, 1 insertion(+)

diff --git a/app-shells/bash/files/bashrc b/app-shells/bash/files/bashrc
index 1107f43..f625657 100644
--- a/app-shells/bash/files/bashrc
+++ b/app-shells/bash/files/bashrc
@@ -85,6 +85,7 @@ if type -P dircolors >/dev/null ; then
if [[ ${ls_colors} == "${LS_COLORS}" ]] ; then
unset LS_COLORS
fi
+   unset ls_colors
;;
esac
fi



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

2016-06-22 Thread Thomas Beierlein
commit: 2d32617fcfaecd8258c683de77f1e0c6676ce05a
Author: Thomas Beierlein  gentoo  org>
AuthorDate: Thu Jun 23 05:25:18 2016 +
Commit: Thomas Beierlein  gentoo  org>
CommitDate: Thu Jun 23 05:25:18 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d32617f

app-backup/bacula: Let bacula-dir start successful under systemd (Bug #584442)

Change systemd's bacula-dir.service so that bacula-dir is run as root:bacula.
While not perfect from a security point it makes bacula under systemd
compatible with OpenRC environment.

Package-Manager: portage-2.3.0_rc1

 app-backup/bacula/bacula-7.4.0-r1.ebuild | 410 +++
 1 file changed, 410 insertions(+)

diff --git a/app-backup/bacula/bacula-7.4.0-r1.ebuild 
b/app-backup/bacula/bacula-7.4.0-r1.ebuild
new file mode 100644
index 000..da822d4
--- /dev/null
+++ b/app-backup/bacula/bacula-7.4.0-r1.ebuild
@@ -0,0 +1,410 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+inherit eutils multilib qt4-r2 systemd user libtool
+
+MY_PV=${PV/_beta/-b}
+MY_P=${PN}-${MY_PV}
+
+DESCRIPTION="Featureful client/server network backup suite"
+HOMEPAGE="http://www.bacula.org/";
+SRC_URI="mirror://sourceforge/bacula/${MY_P}.tar.gz"
+
+LICENSE="AGPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+IUSE="acl bacula-clientonly bacula-nodir bacula-nosd examples ipv6 libressl 
logwatch mysql postgres qt4 readline +sqlite ssl static tcpd vim-syntax X"
+
+DEPEND="
+   dev-libs/gmp:0
+   !bacula-clientonly? (
+   postgres? ( dev-db/postgresql:*[threads] )
+   mysql? ( virtual/mysql )
+   sqlite? ( dev-db/sqlite:3 )
+   !bacula-nodir? ( virtual/mta )
+   )
+   qt4? (
+   dev-qt/qtsvg:4
+   x11-libs/qwt:5
+   )
+   logwatch? ( sys-apps/logwatch )
+   tcpd? ( >=sys-apps/tcp-wrappers-7.6 )
+   readline? ( sys-libs/readline:0 )
+   static? (
+   acl? ( virtual/acl[static-libs] )
+   sys-libs/zlib[static-libs]
+   dev-libs/lzo[static-libs]
+   sys-libs/ncurses:=[static-libs]
+   ssl? (
+   !libressl? ( dev-libs/openssl:0=[static-libs] )
+   libressl? ( dev-libs/libressl:0=[static-libs] )
+   )
+   )
+   !static? (
+   acl? ( virtual/acl )
+   sys-libs/zlib
+   dev-libs/lzo
+   sys-libs/ncurses:=
+   ssl? (
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
+   )
+   )"
+RDEPEND="${DEPEND}
+   !bacula-clientonly? (
+   !bacula-nosd? (
+   sys-block/mtx
+   app-arch/mt-st
+   )
+   )
+   vim-syntax? ( || ( app-editors/vim app-editors/gvim ) )"
+
+REQUIRED_USE="|| ( ^^ ( mysql postgres sqlite ) bacula-clientonly )
+   static? ( bacula-clientonly )"
+
+S=${WORKDIR}/${MY_P}
+
+pkg_setup() {
+   #XOR and !bacula-clientonly controlled by REQUIRED_USE
+   use mysql && export mydbtype="mysql"
+   use postgres && export mydbtype="postgresql"
+   use sqlite && export mydbtype="sqlite3"
+
+   # create the daemon group and user
+   if [ -z "$(egetent group bacula 2>/dev/null)" ]; then
+   enewgroup bacula
+   einfo
+   einfo "The group 'bacula' has been created. Any users you add 
to this"
+   einfo "group have access to files created by the daemons."
+   einfo
+   fi
+
+   if use bacula-clientonly && use static && use qt4; then
+   ewarn
+   ewarn "Building statically linked 'bat' is not supported. 
Ignorig 'qt4' useflag."
+   ewarn
+   fi
+
+   if ! use bacula-clientonly; then
+   if [ -z "$(egetent passwd bacula 2>/dev/null)" ]; then
+   enewuser bacula -1 -1 /var/lib/bacula 
bacula,disk,tape,cdrom,cdrw
+   einfo
+   einfo "The user 'bacula' has been created.  Please see 
the bacula manual"
+   einfo "for information about running bacula as a 
non-root user."
+   einfo
+   fi
+   fi
+}
+
+src_prepare() {
+   # adjusts default configuration files for several binaries
+   # to /etc/bacula/ instead of ./
+   pushd src >&/dev/null || die
+   for f in console/console.c dird/dird.c filed/filed.c \
+   stored/bcopy.c stored/bextract.c stored/bls.c \
+   stored/bscan.c stored/btape.c stored/stored.c \
+   qt-console/main.cpp; do
+   sed -i -e 's|^\(#define CONFIG_FILE "\)|\1/etc/bacula/|g' 
"${f}" \
+   || die "sed on ${f} failed"
+   done
+   popd >&/dev

[gentoo-commits] data/gentoo-news:master commit in: 2016-06-23-l10n-use_expand/

2016-06-22 Thread Ulrich Müller
commit: 29d17cdbedd7817c6722f6ce3150f928d3ccef79
Author: Ulrich Müller  gentoo  org>
AuthorDate: Thu Jun 23 04:31:13 2016 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Thu Jun 23 04:31:13 2016 +
URL:https://gitweb.gentoo.org/data/gentoo-news.git/commit/?id=29d17cdb

Add 2016-06-23-l10n-use_expand.

 .../2016-06-23-l10n-use_expand.en.txt  | 49 ++
 .../2016-06-23-l10n-use_expand.en.txt.asc  | 11 +
 2 files changed, 60 insertions(+)

diff --git a/2016-06-23-l10n-use_expand/2016-06-23-l10n-use_expand.en.txt 
b/2016-06-23-l10n-use_expand/2016-06-23-l10n-use_expand.en.txt
new file mode 100644
index 000..2ff30d7
--- /dev/null
+++ b/2016-06-23-l10n-use_expand/2016-06-23-l10n-use_expand.en.txt
@@ -0,0 +1,49 @@
+Title: L10N USE_EXPAND variable replacing LINGUAS
+Author: Mart Raudsepp 
+Author: Ulrich Müller 
+Content-Type: text/plain
+Posted: 2016-06-19
+Revision: 1
+News-Item-Format: 1.0
+
+The L10N variable is replacing LINGUAS as a USE_EXPAND, to avoid a
+conceptual clash with the standard gettext LINGUAS behaviour.
+
+L10N controls which extra localization support will be installed.
+This is commonly used for downloads of additional language packs.
+
+If you have set LINGUAS in your make.conf, you most likely want to add
+its entries also to L10N. Note that while the common two letter language
+codes (like "de" or "fr") are identical, more complex entries have a
+different syntax because L10N now uses IETF language tags. (For example,
+"pt_BR" becomes "pt-BR" and "sr@latin" becomes "sr-Latn".) You can look
+up the available codes in profiles/desc/l10n.desc in the gentoo tree.
+A detailed description of language tags (aka BCP 47) can be found at:
+https://www.w3.org/International/articles/language-tags/
+
+After a transition time for packages to be converted, the LINGUAS
+environment variable will maintain the standard gettext behaviour and
+will work as expected with all package managers. It controls which
+language translations are built and installed. An unset value means all
+available, an empty value means none, and a value can be an unordered
+list of gettext language codes, with or without country codes. Usually
+two letter language codes suffice, but can be narrowed down by country
+codes with a "ll_CC" formatting, where "ll" is the language code and
+"CC" is the country code, e.g., "en_GB". Some rare languages also have
+three letter language codes. Note that LINGUAS does not only affect
+installed gettext catalog files (*.mo), but also lines of translations
+in an always shipped file (e.g., *.desktop).
+
+If you want English with a set LINGUAS, it is suggested to list it with
+the desired country code, in case the default is not the usual "en_US".
+It is also common to list "en" then, in case a package is natively
+written in a different language, but does provide an English translation
+for whichever country. A list of LINGUAS language codes is available at:
+http://www.gnu.org/software/gettext/manual/gettext.html#Language-Codes
+
+If you have per-package customizations of the LINGUAS USE_EXPAND, you
+should also rename those. This typically means changing linguas_* to
+l10n_*, and possibly updating the syntax as described above.
+
+https://wiki.gentoo.org/wiki/Localization/Guide has also been updated to
+reflect this change.

diff --git a/2016-06-23-l10n-use_expand/2016-06-23-l10n-use_expand.en.txt.asc 
b/2016-06-23-l10n-use_expand/2016-06-23-l10n-use_expand.en.txt.asc
new file mode 100644
index 000..e0ef7cc
--- /dev/null
+++ b/2016-06-23-l10n-use_expand/2016-06-23-l10n-use_expand.en.txt.asc
@@ -0,0 +1,11 @@
+-BEGIN PGP SIGNATURE-
+Version: GnuPG v2
+
+iQEcBAABCAAGBQJXa2W8AAoJEMMJBoUcYcJzzD4H+wdawek/66xLVxpbc43IhCN8
+G/sxeNCG7PNcNXQVS+YO5kJdYb7v/4D0rTtlwuPfgO9c7moFSldmyewUJsDYCW4/
+2RJ2eoWNsBlD/aTQZVnrBFVt2sxmX6Tl7sEh5qwiggcqJn2dIJn6TkZhJBSr+wCX
+chBtKCxfSlMrj3qDqZxmTiYDfyMSq3BXFRygmvhqGI7HjfGEhaejEFBRdoLT8yQS
+wqT/auhONnt+x+92nC+0Iij0DXcqNY+wghuvC4VxT2MxbCxRzhWhhCFJMPa5EzvU
+Mf+inQP9GV+87YlfpueoDCIDsShVWIGqQpl95eSnBcduABwvL/kFUeXtzqnrhbM=
+=BZ4h
+-END PGP SIGNATURE-



[gentoo-commits] repo/gentoo:master commit in: media-radio/fldigi/

2016-06-22 Thread Thomas Beierlein
commit: 45e44f98daca2be2a29be37167b0d079e571c9dc
Author: Thomas Beierlein  gentoo  org>
AuthorDate: Thu Jun 23 04:28:28 2016 +
Commit: Thomas Beierlein  gentoo  org>
CommitDate: Thu Jun 23 04:29:20 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45e44f98

media-radio/fldigi: Maintenance release

Package-Manager: portage-2.3.0_rc1

 media-radio/fldigi/Manifest  |  1 +
 media-radio/fldigi/fldigi-3.23.12.ebuild | 40 
 2 files changed, 41 insertions(+)

diff --git a/media-radio/fldigi/Manifest b/media-radio/fldigi/Manifest
index 423cf54..bf12525 100644
--- a/media-radio/fldigi/Manifest
+++ b/media-radio/fldigi/Manifest
@@ -4,3 +4,4 @@ DIST fldigi-3.23.08.tar.gz 2990508 SHA256 
3f4ae5641dbcbd7e53c41ab50b86e953f1a0f5
 DIST fldigi-3.23.09.tar.gz 2996564 SHA256 
60232fba85993f9522c771abf3eac1c55525dad0e74a44c50d110636974bf353 SHA512 
82aa0a698e59a553ae1735339aeebcd46407f45d25587b6dfc2cb19ae517ade41a6f18f0a57affdd16bd01d55618c94e4a70e1fd7e12314932cdb8b772ef416d
 WHIRLPOOL 
c1facbb689ec09d804b6d07d5a123838aaeb6dc8bf5456a0879cf3b2635ef8a7e1eff3cafe548e9be95c92db71d3f7421f10809890f52e551e993016e9ba71f1
 DIST fldigi-3.23.10.tar.gz 3077063 SHA256 
bf6a1f0ebffc92ed96da41e49fdff2b38a69513cf4297202bdb7510e0e1e6e5e SHA512 
cdf5ee3f5657f7000f91af176dfe824ee54332aadb34d0c3b03699a00ae5e2b37e077451a3be83ee80092b6d56140aee990ccbfb0ee86396c979dde74d50e7c9
 WHIRLPOOL 
b9b054b10ef2eac93454093467e066730dfab5bb27e57928c5199e3605a9fc0bfae1ef483ced29c0cd3eccbfbb7ea0141ea6510872c2c770878e0999e80d754f
 DIST fldigi-3.23.11.tar.gz 3077442 SHA256 
f3d47e19a0160ad9b7d007cf77ca8674927e19068ced707a0a6cdbbd73de436b SHA512 
a32fe8d52276bbf0502ed68ad7a8e12643f3cdef3964b52a0cfcfba4c0384c295c5e87528d6d0eeb9e950d2f331c82e4a2a2df7cf62df104b76edb8fb9cf1414
 WHIRLPOOL 
f06e0629aff56c8203cb22b2c8bc83e9dab814230dd93ea1d162908a5f5f2a7ee6925ddc7b1a67b6eeffb208bacb9b22caec4f0bf1e5bef330214dca368846e4
+DIST fldigi-3.23.12.tar.gz 3078572 SHA256 
59ba6ad8304849cb92b3ec2251bd389f4dfa7755de07a4d1638f71b17c0b3cce SHA512 
3dc2c9545cb39cddf67a12e49a9ba4570b7055e073dc54a4f1a6b0e5811f780fea2109559aba0837ecfb62407eb8d2735f1d84ad70cc0b5335c6f88cb7dee0ad
 WHIRLPOOL 
8cca738b8ffb2966746a9b9e918a68d123a430aa0e9ac66f0a8bcb202388ece9389fc00e9dae14e57118476cf0dd7b4fd41415656e70b033c7c1dfb8850a54d3

diff --git a/media-radio/fldigi/fldigi-3.23.12.ebuild 
b/media-radio/fldigi/fldigi-3.23.12.ebuild
new file mode 100644
index 000..aba4d37
--- /dev/null
+++ b/media-radio/fldigi/fldigi-3.23.12.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+DESCRIPTION="Sound card based multimode software modem for Amateur Radio use"
+HOMEPAGE="http://www.w1hkj.com/Fldigi.html";
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="hamlib nls portaudio pulseaudio sndfile"
+
+RDEPEND="x11-libs/fltk:1[threads,xft]
+   media-libs/libsamplerate
+   media-libs/libpng:0
+   x11-misc/xdg-utils
+   dev-perl/RPC-XML
+   dev-perl/Term-ReadLine-Perl
+   hamlib? ( media-libs/hamlib )
+   portaudio? ( >=media-libs/portaudio-19_pre20071207 )
+   pulseaudio? ( media-sound/pulseaudio )
+   sndfile? ( >=media-libs/libsndfile-1.0.10 )"
+DEPEND="${RDEPEND}
+   nls? ( sys-devel/gettext )
+   virtual/pkgconfig"
+
+DOCS=( AUTHORS ChangeLog NEWS README )
+
+src_configure() {
+   econf $(use_with sndfile) \
+   $(use_with portaudio) \
+   $(use_with hamlib) \
+   $(use_enable nls) \
+   $(use_with pulseaudio) \
+   --disable-silent-rules \
+   --without-asciidoc
+}



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

2016-06-22 Thread Ulrich Müller
commit: edd4bd04173b383e5ec09597568977c4fed8f2c2
Author: Ulrich Müller  gentoo  org>
AuthorDate: Wed Jun 22 19:06:46 2016 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Thu Jun 23 04:25:41 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=edd4bd04

sys-apps/man-pages: Migrate from LINGUAS to L10N.

Package-Manager: portage-2.3.0_rc1

 sys-apps/man-pages/man-pages-4.04.ebuild | 24 
 sys-apps/man-pages/man-pages-4.05.ebuild | 24 
 sys-apps/man-pages/man-pages-4.06.ebuild | 24 
 3 files changed, 36 insertions(+), 36 deletions(-)

diff --git a/sys-apps/man-pages/man-pages-4.04.ebuild 
b/sys-apps/man-pages/man-pages-4.04.ebuild
index e704e12..063f6c2 100644
--- a/sys-apps/man-pages/man-pages-4.04.ebuild
+++ b/sys-apps/man-pages/man-pages-4.04.ebuild
@@ -16,8 +16,8 @@ 
SRC_URI="mirror://kernel/linux/docs/man-pages/Archive/${P}.tar.xz
 LICENSE="man-pages GPL-2+ BSD"
 SLOT="0"
 KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux"
-IUSE_LINGUAS=" da de fr it ja nl pl ro ru zh_CN"
-IUSE="nls ${IUSE_LINGUAS// / linguas_}"
+IUSE_L10N=" da de fr it ja nl pl ro ru zh-CN"
+IUSE="nls ${IUSE_L10N// / l10n_}"
 RESTRICT="binchecks"
 
 # Block packages that used to install colliding man pages #341953 #548900
@@ -25,16 +25,16 @@ RDEPEND="virtual/man
!

[gentoo-commits] repo/gentoo:master commit in: profiles/, app-admin/lastpass/

2016-06-22 Thread Göktürk Yüksek
commit: b65db1879b889506ad03826010e6d78117c451b1
Author: Göktürk Yüksek  gentoo  org>
AuthorDate: Thu Jun 23 04:00:24 2016 +
Commit: Göktürk Yüksek  gentoo  org>
CommitDate: Thu Jun 23 04:00:24 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b65db187

app-admin/lastpass: remove last-rited package

 app-admin/lastpass/Manifest   |   3 -
 app-admin/lastpass/lastpass-3.2.16.ebuild | 110 --
 app-admin/lastpass/metadata.xml   |  21 --
 profiles/package.mask |   5 --
 4 files changed, 139 deletions(-)

diff --git a/app-admin/lastpass/Manifest b/app-admin/lastpass/Manifest
deleted file mode 100644
index 6b2dbc1..000
--- a/app-admin/lastpass/Manifest
+++ /dev/null
@@ -1,3 +0,0 @@
-DIST lp_linux-3.2.16.xpi 6328266 SHA256 
e06364ce631f436246cfca19ff24a2483bc459a5e31178f2c6acd57c1f408f81 SHA512 
343d0763f25c31fb7dbde2c9aa19d797431ee9f7bb1f8ae220fd4cac2cc8f439813d92ecb432047f5889967eca7bd4197a7f2725fc52669d022c9f44b7d4945e
 WHIRLPOOL 
5b64cdf371b9ff9ac46030393b22fd92c4fa6493947f47d91a2f44c7019ffcfe137456398c2991aee5cbc45bf95b39d90a6a423f6a2e284ac88d2d75d2f8
-DIST lpchrome_linux-3.2.16.crx 5310273 SHA256 
58ec7c7dfa735c5d052b0ca253f85654fd381952533a4a2b125d3abb88e77d39 SHA512 
a7d3198ace665bcbbe0a7bdc9dcb4dc165aaa39214df798fe28930d3cc340976a476b8afc4f19af1acc6cbbe61feff8dfa5cc6c2b4c6d4a04b0377752ce1ca54
 WHIRLPOOL 
9b281945cd8603516e11a9a2f4869622d6783a56670253cdcc4a51a7ddae84a1a5297956d491b4e17e449a01acf6e8a4e3cc0a8b494f973078e617fe041ed615
-DIST lplinux-3.2.16.tar.bz2 1621919 SHA256 
c06fd97e74298c5e7d698b2c8cffce7d79f0c45126daeb27bca91d3403fd893c SHA512 
ed77f3ca979d84021e27088a5d1d7e0b102f6ce15f675a7b99810e88760844182b8597670bbe45c9436b42889597c8c421d1acb6abe24085bbd2623b7984d37d
 WHIRLPOOL 
192d332348db9ad68a5e63441e17c0ef954de058376f110dcd05dfe261d54f1c9a179a9c647dc9d5090ffefe8af68a9dbe446dea7a1fb46b1f6c2e458752417d

diff --git a/app-admin/lastpass/lastpass-3.2.16.ebuild 
b/app-admin/lastpass/lastpass-3.2.16.ebuild
deleted file mode 100644
index aa30287..000
--- a/app-admin/lastpass/lastpass-3.2.16.ebuild
+++ /dev/null
@@ -1,110 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-inherit eutils
-
-DESCRIPTION="Online password manager and form filler that makes web browsing 
easier and more secure"
-HOMEPAGE="https://lastpass.com/misc_download2.php";
-# sadly, upstream has no versioned distfiles
-DIST_MAIN=lplinux-${PV}.tar.bz2
-DIST_CRX=lpchrome_linux-${PV}.crx # Use by both firefox+chrome/chromimum code
-DIST_XPI=lp_linux-${PV}.xpi
-SRC_URI="
-   https://lastpass.com/lplinux.tar.bz2 -> ${DIST_MAIN}
-   https://lastpass.com/lpchrome_linux.crx -> ${DIST_CRX}
-   firefox? ( https://lastpass.com/lp_linux.xpi -> ${DIST_XPI} )"
-
-LICENSE="LastPass"
-SLOT="0"
-KEYWORDS="-* ~x86 ~amd64"
-IUSE="+chromium +firefox +chrome"
-RESTRICT="strip mirror" # We can't mirror it, but we can fetch it
-
-DEPEND="app-arch/unzip"
-RDEPEND="
-   !!app-admin/lastpass-binary-component
-   chrome? ( || (
-   www-client/google-chrome
-   www-client/google-chrome-beta
-   www-client/google-chrome-unstable
-   ) )
-   chromium? ( >=www-client/chromium-32.0.1700.102 )
-   firefox? ( www-client/firefox )"
-REQUIRED_USE="|| ( firefox chromium chrome )"
-
-LASTPASS_EXEDIR=/opt/lastpass/
-
-QA_PREBUILT="
-   ${LASTPASS_EXEDIR}nplastpass*
-   /usr/lib*/nsbrowser/plugins/libnplastpass*.so
-   
/usr/lib*/firefox/browser/extensions/supp...@lastpass.com/platform/Linux_x86_64-gcc3/components/lpxpcom_x86_64.so
-   
/usr/lib*/firefox/browser/extensions/supp...@lastpass.com/platform/Linux_x86-gcc3/components/lpxpcom.so
-"
-
-S="${WORKDIR}"
-
-src_unpack() {
-   unpack ${DIST_MAIN}
-   mkdir -p "${S}"/crx || die
-   # bug #524864: strip Chrome CRX header
-   # otherwise the unzip warning can be fatal in some cases
-   dd bs=306 skip=1 if="${DISTDIR}"/${DIST_CRX} 
of="${T}"/lpchrome_linux.zip 2>/dev/null || die
-   unzip -qq -o "${T}"/lpchrome_linux.zip -d "${S}"/crx || die
-}
-
-src_install() {
-   # This is based on the upstream installer script that's in the tarball
-   bin=nplastpass
-   use amd64 && bin="${bin}64"
-   exeinto ${LASTPASS_EXEDIR}
-   doexe "${S}"/$bin
-
-   # despite the name, this piece seems used by both firefox+chrome
-   exeinto /usr/$(get_libdir)/nsbrowser/plugins
-   doexe "${S}"/crx/lib${bin}.so
-
-   cat >"${T}"/lastpass_policy.json <<-EOF || die
-   {
-   "ExtensionInstallSources": [
-   "https://lastpass.com/*";,
-   "https://*.lastpass.com/*";,
-   "https://*.cloudfront.net/lastpass/*";
-   ]
-   }
-   EOF
-   cat >"${T}"/com.lastpass.nplastpass.json <<-EOF || die
-   {
- 

[gentoo-commits] proj/genkernel:master commit in: defaults/, /, netboot/, netboot/misc/bin/

2016-06-22 Thread Mike Frysinger
commit: cc02d07dedbc737855ec0711dd52d4654c9a7404
Author: Mike Frysinger  gentoo  org>
AuthorDate: Thu Jun 23 03:48:43 2016 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Thu Jun 23 03:48:43 2016 +
URL:https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=cc02d07d

clean up extended echo usage

Switch to printf where appropriate, and simplify other locations where
the -e option was pointless.

 defaults/initrd.defaults   |  2 +-
 defaults/initrd.scripts| 22 +++
 gen_bootloader.sh  |  4 +--
 gen_compile.sh |  4 +--
 gen_funcs.sh   | 25 -
 gen_initramfs.sh   |  4 +--
 genkernel  |  4 +--
 netboot/linuxrc.x  | 67 +-
 netboot/misc/bin/net-setup | 19 +++--
 9 files changed, 76 insertions(+), 75 deletions(-)

diff --git a/defaults/initrd.defaults b/defaults/initrd.defaults
index b63ebd0..940d2df 100755
--- a/defaults/initrd.defaults
+++ b/defaults/initrd.defaults
@@ -44,7 +44,7 @@ WHITE=""
 # echo "$CLEAR$RESET"
 # echo "$CLEAR"
 # Just go to the top of the screen
-# echo -n ""
+# printf ""
 
 KV=`uname -r`
 KMAJOR=`echo $KV | cut -f1 -d.`

diff --git a/defaults/initrd.scripts b/defaults/initrd.scripts
index 703c0fe..4b0bbad 100644
--- a/defaults/initrd.scripts
+++ b/defaults/initrd.scripts
@@ -33,7 +33,7 @@ modules_scan() {
 
MODS=$(cat /etc/modules/${1} 2>/dev/null)
[ -n "${MODS}" ] && [ -z "${QUIET}" ] && \
-   echo -ne "${BOLD}   ::${NORMAL} Loading from ${1}: "
+   printf "%b" "${BOLD}   ::${NORMAL} Loading from ${1}: "
 
for x in ${MODS}
do
@@ -41,12 +41,12 @@ modules_scan() {
if [ "${MLOAD}" = "${x}" ] # Only module to no-load
then
[ -z "${QUIET}" ] && \
-   echo -e "${BOLD}   ::${NORMAL} Skipping ${x}..."
+   printf "%b\n" "${BOLD}   ::${NORMAL} Skipping 
${x}..."
elif [ "${MLOAD}" = "${MLIST}" ]
then
if [ -n "${DEBUG}" ]; then
-   echo -ne "${BOLD}   ::${NORMAL} "
-   echo -ne "Scanning for ${x}..."
+   printf "%b" "${BOLD}   ::${NORMAL} "
+   printf "%b" "Scanning for ${x}..."
fi
modprobe ${x} > /dev/null 2>&1
loaded=${?}
@@ -58,10 +58,10 @@ modules_scan() {
 
[ -z "${DEBUG}" -a "${loaded}" = "0" ] && \
[ -z "${QUIET}" ] && \
-   echo -en "${x} "
+   printf "%b" "${x} "
else
[ -z "${QUIET}" ] && \
-   echo -e "${BOLD}   ::${NORMAL} Skipping ${x}..."
+   printf "%b\n" "${BOLD}   ::${NORMAL} Skipping 
${x}..."
fi
done
[ -n "${MODS}" ] && [ -z "${QUIET}" ] && echo
@@ -629,7 +629,7 @@ find_real_device() {
fi
;;
esac
-   echo -n "${DEVICE}"
+   printf "%s" "${DEVICE}"
 }
 
 check_loop() {
@@ -696,7 +696,7 @@ good_msg() {
 
msg_string=$1
msg_string="${msg_string:-...}"
-   [ "$2" != 1 ] && echo -e "${GOOD}>>${NORMAL}${BOLD} ${msg_string} 
${NORMAL}"
+   [ "$2" != 1 ] && printf "%b\n" "${GOOD}>>${NORMAL}${BOLD} ${msg_string} 
${NORMAL}"
 }
 
 bad_msg() {
@@ -705,14 +705,14 @@ bad_msg() {
if [ "$2" != 1 ]
then
splash 'verbose' > /dev/null &
-   echo -e "${BAD}!!${NORMAL}${BOLD} ${msg_string} ${NORMAL}"
+   printf "%b\n" "${BAD}!!${NORMAL}${BOLD} ${msg_string} ${NORMAL}"
fi
 }
 
 warn_msg() {
msg_string=$1
msg_string="${msg_string:-...}"
-   [ "$2" != 1 ] && echo -e "${WARN}**${NORMAL}${BOLD} ${msg_string} 
${NORMAL}"
+   [ "$2" != 1 ] && printf "%b\n" "${WARN}**${NORMAL}${BOLD} ${msg_string} 
${NORMAL}"
 }
 
 crypt_filter() {
@@ -751,7 +751,7 @@ prompt_user(){
bad_msg "- press Enter for the same"
bad_msg '- type "shell" for a shell'
bad_msg '- type "q" to skip...'
-   echo -n "${2}(${oldvalue}) :: "
+   printf "%s" "${2}(${oldvalue}) :: "
read ${1}
case `eval echo '$'${1}` in
'q')

diff --git a/gen_bootloader.sh b/gen_bootloader.sh
index 90c3f9b..4bbd303 100755
--- a/gen_bootloader.sh
+++ b/gen_bootloader.sh
@@ -89,12 +89,12 @@ set_bootloader_grub() {
# Add grub configuration to grub.conf
echo "# Genkernel generated entry, see GRUB 
documentation for details" >> ${GRUB_CONF}
echo "title=Gentoo Linux ($KV)" >> ${GRUB_CONF}
-   echo -e "\tkernel /kernel-${KNAME}-

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

2016-06-22 Thread Mike Frysinger
commit: f5f28c6c6fa09a746d317c0956659eb6c6454516
Author: Mike Frysinger  gentoo  org>
AuthorDate: Thu Jun 23 03:26:49 2016 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Thu Jun 23 03:26:49 2016 +
URL:https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=f5f28c6c

genkernel: simplify/robustify --config parsing

There's no need to use eval here, and the quoting on it is off leading
to incorrect expansion side effects with some inputs.

 genkernel | 13 ++---
 1 file changed, 2 insertions(+), 11 deletions(-)

diff --git a/genkernel b/genkernel
index a404415..506a2ca 100755
--- a/genkernel
+++ b/genkernel
@@ -15,21 +15,12 @@ small_die() {
exit 1
 }
 
-parse_opt() {
-   case "$1" in
-   *\=*)
-   echo "$1" | cut -f2- -d=
-   ;;
-   esac
-}
-
 # We don't know where our config is, so we check for it, and default to using
 # /etc/genkernel.conf if nobody has specified one.
 
 # NOTE: We are look for --config=... in a way that doesn't modify $@ since we 
access that again, later
-for (( i=1; i<=$# ; i=i+1 )); do
-   eval arg="\$$i"
-   [[ "${arg}" = --config=* ]] && CMD_GK_CONFIG=`parse_opt "${arg}"`
+for arg in "$@"; do
+   [[ "${arg}" == --config=* ]] && CMD_GK_CONFIG=${arg#--config=}
 done
 
 # Pull in our configuration



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

2016-06-22 Thread Mike Frysinger
commit: a0b9c8b3daa217615bf85f2e3596ce0068c2c847
Author: Mike Frysinger  gentoo  org>
AuthorDate: Thu Jun 23 03:17:16 2016 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Thu Jun 23 03:17:16 2016 +
URL:https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=a0b9c8b3

cleanup small_die a bit

Fix quoting, make sure it's clear we're failing, and send output to stderr.

 genkernel | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/genkernel b/genkernel
index 01649f1..a404415 100755
--- a/genkernel
+++ b/genkernel
@@ -11,8 +11,8 @@ TMPDIR='/var/tmp/genkernel'
 TODEBUGCACHE=1 # Until an error occurs or LOGFILE is fully qualified.
 
 small_die() {
-  echo $1
-  exit 1
+   echo "ERROR: $*" >&2
+   exit 1
 }
 
 parse_opt() {



[gentoo-commits] repo/gentoo:master commit in: app-admin/logstash-bin/

2016-06-22 Thread Patrick Lauer
commit: 6e632063b592cc32d46d9700a53652b080ea050e
Author: Patrick Lauer  gentoo  org>
AuthorDate: Thu Jun 23 02:32:41 2016 +
Commit: Patrick Lauer  gentoo  org>
CommitDate: Thu Jun 23 02:33:03 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e632063

app-admin/logstash-bin: Bump

Package-Manager: portage-2.3.0_rc1

 app-admin/logstash-bin/Manifest  |  1 +
 app-admin/logstash-bin/logstash-bin-2.3.3.ebuild | 64 
 2 files changed, 65 insertions(+)

diff --git a/app-admin/logstash-bin/Manifest b/app-admin/logstash-bin/Manifest
index 03f09af..7ba42d8 100644
--- a/app-admin/logstash-bin/Manifest
+++ b/app-admin/logstash-bin/Manifest
@@ -1,4 +1,5 @@
 DIST logstash-2.2.4.tar.gz 75221745 SHA256 
0d7fa078eb93b1eecea2845b1404b0f05b438cb3ecc316477980ef945492 SHA512 
fe8aaea2d2d44f3c1b178a72cf760a7bb345110e51905ea2cfe0a493051c53218f473db7bbf6dbb88c36b92c4aaa28e8edf05c91711207249b4a0f01b6b60055
 WHIRLPOOL 
8c37e72a581a1594706eb14c30c56fc9b6d8e78ca7e8fee63885983c10560cb6250e5a82b8e233d3abb3d234575252d2676cf5429e6589fa1981aefb50c7cfdd
 DIST logstash-2.3.1.tar.gz 75222794 SHA256 
d4bab55c6d59846995fa88ba297387cfa31d7e7e8b21a35441178b7a44cfff45 SHA512 
54b03fedd77b62f2e71b39059435fe38c16780b629b35fe25a7e2ef8c51864c6b19978481c740be181cbc83af78b23aea087e06068af2b5f436b0ad28985bce4
 WHIRLPOOL 
e2351ab481a83ab894248715337785562dc392eae22ffe6073d2218dc33c4b62f4499e7b31a4d4301eb85dbe23ac7fd3596a2752d050b348ad46ad17ec62c544
 DIST logstash-2.3.2.tar.gz 74898843 SHA256 
b3c9d943fa273c8087386736ef6809df9c5959bab870a6ab4723f58d48dd38c1 SHA512 
87b97ae0548328fe56ab4f2104b4c63db6a424bb5937e7be043f5835d08bcd02fbcb403d5cc9312b72d5314abfce2b4b00016b9b380fb88abed690d8d80e8c55
 WHIRLPOOL 
afa2a53230b3e5390c4c4d2a84a168ed2d6c56babf927fe4b8c3cb2dab49def8457e8df45d33ca020b11d49b52397f5abb6604fb1d8fecd3c9b033f426130bd9
+DIST logstash-2.3.3.tar.gz 78887475 SHA256 
51a20fbfe2aa0c5ea49ceda8278a4667289fd1871cf7be4ba1c32bd6cbc71d74 SHA512 
b1b6ab8e323a01a905c923c24916efe7a1b1165c82d692dbd856b8cdb30ab2e3378c5dfec2e6424c8d44813a1bd8a787075a6f9d82ecbd0d6973d8cdfb1b8193
 WHIRLPOOL 
d280c413bdcf50d5cc7151fe9a5385d974405b69f51df5f12fbb1eb8facc90682cc884d8d79d84968d0a7ae8c63eb688e50832208c647e7e2b05d4f21b8f189a
 DIST logstash-all-plugins-2.3.1.tar.gz 130666101 SHA256 
ecdede3d5bd14f8a146abcdc3860467382467a31581bdcc3cd8e417b306822fe SHA512 
0848b5dc04116185c9a0069347279035f12b2d79ea4e45a4f91fdbe68d06559e1eea68579e8e0266bcf4f015a91c51571ffb2e52538cd704666cf7e1653800c7
 WHIRLPOOL 
0cc0297e2c7b0c595862dd0f11bf0d74fb0da6cecdbc79ec8580c2fda63a0441133736bef48657baa2e620d045c6b6b48dbb8a78c58ffdf7ff96a387acaca5e8

diff --git a/app-admin/logstash-bin/logstash-bin-2.3.3.ebuild 
b/app-admin/logstash-bin/logstash-bin-2.3.3.ebuild
new file mode 100644
index 000..437c3b8
--- /dev/null
+++ b/app-admin/logstash-bin/logstash-bin-2.3.3.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit user
+
+MY_PN="${PN/-bin}"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="Tool for managing events and logs"
+HOMEPAGE="https://www.elastic.co/products/logstash";
+SRC_URI="https://download.elastic.co/${MY_PN}/${MY_PN}/${MY_P}.tar.gz";
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+RESTRICT="strip"
+QA_PREBUILT="opt/logstash/vendor/jruby/lib/jni/*/libjffi*.so"
+
+DEPEND=""
+RDEPEND="|| ( virtual/jre:1.8 virtual/jre:1.7 )"
+
+S="${WORKDIR}/${MY_P}"
+
+pkg_setup() {
+   enewgroup ${MY_PN}
+   enewuser ${MY_PN} -1 -1 /var/lib/${MY_PN} ${MY_PN} -m
+}
+
+src_install() {
+   keepdir /etc/"${MY_PN}"/{conf.d,patterns,plugins}
+   keepdir "/var/log/${MY_PN}"
+
+   insinto "/usr/share/${MY_PN}"
+   doins "${FILESDIR}/agent.conf.sample"
+
+   insinto "/opt/${MY_PN}"
+   doins -r .
+   fperms 0755 "/opt/${MY_PN}/bin/${MY_PN}" 
"/opt/${MY_PN}/vendor/jruby/bin/jruby"
+
+   insinto /etc/logrotate.d
+   newins "${FILESDIR}/${MY_PN}.logrotate" "${MY_PN}"
+
+   newconfd "${FILESDIR}/${MY_PN}.confd" "${MY_PN}"
+   newinitd "${FILESDIR}/${MY_PN}.initd" "${MY_PN}"
+}
+
+pkg_postinst() {
+   ewarn "The default user changed from root to ${MY_PN}. If you wish to 
run as root (for"
+   ewarn "example to read local logs), be sure to change LS_USER and 
LS_GROUP in"
+   ewarn "/etc/conf.d/${MY_PN}"
+   einfo
+   einfo "Getting started with logstash:"
+   einfo "  
https://www.elastic.co/guide/en/logstash/current/getting-started-with-logstash.html";
+   einfo ""
+   einfo "Packages that might be interesting:"
+   einfo "  app-misc/elasticsearch"
+   einfo "  dev-python/elasticsearch-curator"
+   einfo "  www-apps/kibana-bin"
+}



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

2016-06-22 Thread Anthony G. Basile
commit: 6e9802031b40bf2f5b9ed465e5ef326395a794a5
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Thu Jun 23 01:05:40 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Thu Jun 23 01:05:58 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e980203

www-apps/wordpress: bump to 4.5.3 and drop older in the 4.5 series

Package-Manager: portage-2.2.28

 www-apps/wordpress/Manifest|  4 +-
 www-apps/wordpress/wordpress-4.5.2.ebuild  | 56 --
 ...rdpress-4.5.1.ebuild => wordpress-4.5.3.ebuild} |  0
 www-apps/wordpress/wordpress-4.5.ebuild| 56 --
 4 files changed, 1 insertion(+), 115 deletions(-)

diff --git a/www-apps/wordpress/Manifest b/www-apps/wordpress/Manifest
index 6125acf..3138781 100644
--- a/www-apps/wordpress/Manifest
+++ b/www-apps/wordpress/Manifest
@@ -1,4 +1,2 @@
 DIST wordpress-4.4.2.tar.gz 7099520 SHA256 
c8a74c0f7cfc0d19989d235759e70cebd90f42aa0513bd9bc344230b0f79e08b SHA512 
dfced463ece13f266c15e1b45d8e7882e58ce9cd3b7146c81a4671bc51c58998ae318bd6e45b1f7bc657e2d49d7d39f971d814998e074375129c8dff7cfcac63
 WHIRLPOOL 
c74b1b6d303bbdb3c66c432838e12528f06c124475c3258ccbc6472143e4a9cf56bda4293d7556564eb878d0f701f0853f46f3be7a37b9a2eb035bc08815e6d4
-DIST wordpress-4.5.1.tar.gz 7772980 SHA256 
7bf2912bc23633fd69c80494d7ab83f69d3d222a4ca8300c7e8348e394264bb7 SHA512 
5570ffce5d5da53b43ac864e000174c62a4d3e870832cce3d25337e5036171a6fec1577f5db1dcee01fd0869aa895d4bafd032a3bce9734d1cd625eaa604c00e
 WHIRLPOOL 
7f2f943c94f7ea873247c4be2ed3926a7da8a1a228fefb5825e7654ccc3d7b9c8f7c32e3169e98a7309b98e5f4aca25601a142cf5a7e27e941b45f0cb8a68589
-DIST wordpress-4.5.2.tar.gz 7770470 SHA256 
1a4d9f05142701e72413609cc30029f66af0f3b29d4ff051e888f48026d20ac9 SHA512 
543a0a201881677ac249b65c281e9633f108327dc866ccd47b512734913aad3c30a8df5026ae7dca6d7cc9a38a8fd96669c53d3a4ca706d7bb77b45bf88e63bb
 WHIRLPOOL 
a18a721194dbfa3b58d064ec2735abfb3f79c883652d55d426a64f331f636397dbfb2ae60e4d8b9760d598476c55a92995bf7fa3b638c3ab886a372624a6b58d
-DIST wordpress-4.5.tar.gz 7762865 SHA256 
d99c9599d982c3e42e917e03628c2ced6b6b87b2a6fd05b38ebb724b4057faf0 SHA512 
2d3b5f0629be434e5e0785e373ca4e8d53171ecdde8720e26d70df661afcf0e2475087a54c3b3629a4d6101e11c1840ab90db38608eca4470436b34908d4c5a7
 WHIRLPOOL 
fa0ea4833c2237d343ebec510f966c57d5cb960bdd93abd746b25b2954adb7b103971112c7f101821fa74bb727e15ec5c1452c6a066cff6f8f9fd9f2aec71eca
+DIST wordpress-4.5.3.tar.gz 7773389 SHA256 
fd94288cd6fc657b2d8061737fcb121fc6acbe18acfcff80661e49fd2d3ee17c SHA512 
e6add76d61cc8f43947c6626d48ff8dcda38738138b576c0b7974c2d01a601fd9a99d6fb7cfc50a0ea50ac3165624fda46656f8bed0fd2540006b9fa069d64ae
 WHIRLPOOL 
e00939f2759ee7ce4280b0ca2a205dbc43b71ebf90afd0b047004c47580a497284e3047f53fecb7f20fbcda680b8828f17e119154ba7fe21fe103b45512c1c2a

diff --git a/www-apps/wordpress/wordpress-4.5.2.ebuild 
b/www-apps/wordpress/wordpress-4.5.2.ebuild
deleted file mode 100644
index 3f425a5..000
--- a/www-apps/wordpress/wordpress-4.5.2.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit webapp
-
-DESCRIPTION="Wordpress PHP and MySQL based content management system (CMS)"
-HOMEPAGE="https://wordpress.org/";
-SRC_URI="https://wordpress.org/${P/_rc/-RC}.tar.gz";
-
-LICENSE="GPL-2+"
-KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86"
-
-RDEPEND="virtual/httpd-php
-   || ( dev-lang/php[mysql] dev-lang/php[mysqli] )"
-
-S=${WORKDIR}/${PN}
-
-need_httpd_cgi
-
-IUSE="+akismet examples +themes vhosts"
-
-src_install() {
-   webapp_src_preinst
-
-   dohtml readme.html
-   rm readme.html license.txt || die
-
-   if ! use akismet ; then
-   rm -R wp-content/plugins/akismet/ || die
-   fi
-   if ! use examples ; then
-   rm wp-content/plugins/hello.php || die
-   fi
-   if ! use themes ; then
-   rm -R wp-content/themes/*/ || die
-   fi
-
-   [[ -f wp-config.php ]] || cp wp-config-sample.php wp-config.php
-
-   insinto "${MY_HTDOCSDIR}"
-   doins -r .
-
-   webapp_serverowned "${MY_HTDOCSDIR}"/index.php
-   webapp_serverowned "${MY_HTDOCSDIR}"/wp-admin/menu.php
-   webapp_serverowned "${MY_HTDOCSDIR}"
-
-   webapp_configfile  "${MY_HTDOCSDIR}"/wp-config.php
-
-   webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt
-   webapp_postupgrade_txt en "${FILESDIR}"/postupgrade-en.txt
-
-   webapp_src_install
-}

diff --git a/www-apps/wordpress/wordpress-4.5.1.ebuild 
b/www-apps/wordpress/wordpress-4.5.3.ebuild
similarity index 100%
rename from www-apps/wordpress/wordpress-4.5.1.ebuild
rename to www-apps/wordpress/wordpress-4.5.3.ebuild

diff --git a/www-apps/wordpress/wordpress-4.5.ebuild 
b/www-apps/wordpress/wordpress-4.5.ebuild
deleted file mode 100644
index 3f425a5..000
--- a/www-apps/wordpress/wordpress-4.5.ebuild
+++ /dev

[gentoo-commits] repo/gentoo:master commit in: sys-apps/prctl/files/, sys-apps/prctl/

2016-06-22 Thread Sergei Trofimovich
commit: 5c6b402ab1dbd4c2ec912597536a2b5f4d52f43b
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Jun 22 22:08:25 2016 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Jun 22 22:08:37 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c6b402a

sys-apps/prctl: bump up to 1.6, keyworded for x86 and amd64

Has got new mcekill knob, useful on x86/amd64 family.

Package-Manager: portage-2.3.0_rc1

 sys-apps/prctl/Manifest   |  1 +
 sys-apps/prctl/files/prctl-1.6-no-implicits.patch | 20 +++
 sys-apps/prctl/metadata.xml   |  4 +++
 sys-apps/prctl/prctl-1.6.ebuild   | 30 +++
 4 files changed, 55 insertions(+)

diff --git a/sys-apps/prctl/Manifest b/sys-apps/prctl/Manifest
index 5e43f5b..bb9b9d2 100644
--- a/sys-apps/prctl/Manifest
+++ b/sys-apps/prctl/Manifest
@@ -1 +1,2 @@
 DIST prctl-1.5.tar.gz 17507 SHA256 
b3fed2cec8721518179355d1a443c4be58f73ea224aa4c0cc4ba30ec87479687 SHA512 
60463a80fcadec9f2c6fbb0e179391affb594a15f116bc0c6dba350251b6fab1eb7bfca5753e0765cb27b723b76a86cbe19bdaa3ef50d4fee6696ed861e0bb96
 WHIRLPOOL 
e494535cbb7aa2a2bf25dc461231b297dc98c24b87ab50fd6db74da63be9263bc64c07491a8e6c9434f2506022c0f1c7cc0bd2aab31ffa77a5f66589361b6c40
+DIST prctl-1.6.tar.gz 18876 SHA256 
62cf7b519774dd5b655c9718fc9b16cc5f9feff199c6cd81f563c4da09fc8727 SHA512 
c5b70abbb76f76f4a4c53cebcbd34fa4e87d7db2278a2ea17128da30dea958cc4e4d75b641cb3b9fbd8fa56fee482e97dbae5e61c697e80ef4d13f4b6d28cfda
 WHIRLPOOL 
3fe30b105dc5561bfb34be15dcf42073f116ff3f59131d4a4a4792ad53e32b7950dca684ba4e64c353426a673db1b8467fe703db6d6d70673e49f78852fe4dcb

diff --git a/sys-apps/prctl/files/prctl-1.6-no-implicits.patch 
b/sys-apps/prctl/files/prctl-1.6-no-implicits.patch
new file mode 100644
index 000..2bbf9ab
--- /dev/null
+++ b/sys-apps/prctl/files/prctl-1.6-no-implicits.patch
@@ -0,0 +1,20 @@
+diff --git a/prctl.c b/prctl.c
+index 2dcda79..01c542f 100644
+--- a/prctl.c
 b/prctl.c
+@@ -27,3 +27,4 @@
+ #include 
+-#include 
++#include  /* prctl constants */
++#include  /* prctl() proto */
+ #include 
+@@ -50,3 +51,3 @@ int verbose=0;
+ 
+-print_version(char *progname)
++void print_version(char *progname)
+ {
+@@ -55,3 +56,3 @@ print_version(char *progname)
+ 
+-usage(char *progname)
++void usage(char *progname)
+ {

diff --git a/sys-apps/prctl/metadata.xml b/sys-apps/prctl/metadata.xml
index 67443d0..370c638 100644
--- a/sys-apps/prctl/metadata.xml
+++ b/sys-apps/prctl/metadata.xml
@@ -5,6 +5,10 @@
i...@gentoo.org
Gentoo Linux IA-64 Development

+   
+   sly...@gentoo.org
+   Sergei Trofimovich
+   

prctl


diff --git a/sys-apps/prctl/prctl-1.6.ebuild b/sys-apps/prctl/prctl-1.6.ebuild
new file mode 100644
index 000..f20ddd7
--- /dev/null
+++ b/sys-apps/prctl/prctl-1.6.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+inherit toolchain-funcs
+
+DESCRIPTION="Tool to query and modify process behavior"
+HOMEPAGE="http://sourceforge.net/projects/prctl/";
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~ia64 ~x86"
+IUSE=""
+
+RDEPEND=""
+DEPEND="sys-apps/groff"
+
+PATCHES=("${FILESDIR}"/${P}-no-implicits.patch)
+
+src_compile() {
+   emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
+}
+
+src_install() {
+   dobin prctl
+   doman prctl.1
+   dodoc ChangeLog
+}



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

2016-06-22 Thread Ulrich Müller
commit: 9d90057188d26ea6918d58f0200c26b72af66581
Author: Ulrich Müller  gentoo  org>
AuthorDate: Wed Jun 22 21:19:43 2016 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Wed Jun 22 21:19:43 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d900571

profiles: Update l10n.desc.

Use generic language tag "sa" instead of "sa-IN" for consistency.

 profiles/desc/l10n.desc | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/profiles/desc/l10n.desc b/profiles/desc/l10n.desc
index a5e9679..3cbe986 100644
--- a/profiles/desc/l10n.desc
+++ b/profiles/desc/l10n.desc
@@ -17,6 +17,7 @@
 # nb-NO - Norwegian Bokmål (Norway)
 # nn-NO - Norwegian Nynorsk (Norway)
 # pa-IN - Punjabi (India)
+# sa-IN - Sanskrit (India)
 # sv-SE - Swedish (Sweden)
 
 ach - Acoli
@@ -124,7 +125,7 @@ rm - Romansh
 ro - Romanian
 ru - Russian
 rw - Kinyarwanda
-sa-IN - Sanskrit (India)
+sa - Sanskrit
 sat - Santali
 sco - Scots
 sd - Sindhi



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

2016-06-22 Thread Ulrich Müller
commit: 9b059ae6a642f78ba4ca5befd6e7a4eaea2cca63
Author: Ulrich Müller  gentoo  org>
AuthorDate: Wed Jun 22 21:18:57 2016 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Wed Jun 22 21:18:57 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b059ae6

x11-libs/motif: Version bump.

Package-Manager: portage-2.3.0_rc1

 x11-libs/motif/Manifest   |   1 +
 x11-libs/motif/motif-2.3.6.ebuild | 118 ++
 2 files changed, 119 insertions(+)

diff --git a/x11-libs/motif/Manifest b/x11-libs/motif/Manifest
index 05b50f8..7d98812 100644
--- a/x11-libs/motif/Manifest
+++ b/x11-libs/motif/Manifest
@@ -2,5 +2,6 @@ DIST motif-2.3.4-patches-1.tar.xz 1776 SHA256 
b5c9a0d026202c488a95b24beaefc63139
 DIST motif-2.3.4-src.tgz 9527040 SHA256 
637efa09608e0b8f93465dbeb7c92e58ebb14c4bc1b488040eb79a65af3efbe0 SHA512 
fb1033caa68f25b93282fa6700d5b7856be217b3651072d86e7c93a747df5b31219230998eb93deae22a8fa698e816b1a30e52b3ae88ae1c01c1f0aac59a2af2
 WHIRLPOOL 
9e4447fb1ac09a41cd6c61af52584f42fee3d026874bc15e258bc79f239f95a21bb3fe79ed7df08d86aaac370a669ec83cacc9eadb11320fbad6df6c27715d95
 DIST motif-2.3.5-patches-1.tar.xz 1408 SHA256 
7c3e8fd55397e99c319652d1054156d4e62528f71cf85986417e20b5da66fef5 SHA512 
cb157630f0c301e0cb6e5d17668486db41d90cf540ced234c96742e0ec7258fb2596a349a84db9fd4ac621f3cd019cdd89cdadce596a70ea1dec91cc69dd3351
 WHIRLPOOL 
dccc460ec7eb00114470445caed7c92814d1b64b29338d5f2e57064fe71f198bc8d6eae45c702d4d20c3b6e6b6c9efb050fd639bf4481cf8770f112f6461eb59
 DIST motif-2.3.5.tar.gz 6035803 SHA256 
afc5c93c03327a7207f5822c272aaf0d98439007aa85a23149f833ba24916d25 SHA512 
6c489409c8ac9d61da6aa916fde5b306d9175d329269885d1f8253f035c33b5b78e75e82178276538a84a6bd76f23c2fa31b40326ea0d00391c6e23afbcd1663
 WHIRLPOOL 
600e8ddd120447a9f71ad3ab4bd7b10f15b7a770cf289f1083a528dae79e4f08c8d1ffea1e7b04af43d25442cb117f0b9e0ee119cbcba360995c9609006f67b5
+DIST motif-2.3.6.tar.gz 5725456 SHA256 
fa810e6bedeca0f5a2eb8216f42129bcf6bd23919068d433e386b7bfc05d58cf SHA512 
65c2d7666a916ab38878008915072317752ee2657ebaff869d274f9f9d9fba3ebfbb82c26d2517f3b9035e059ac99a9bf46d4be8d123115e3b23589517d28e60
 WHIRLPOOL 
88a88dbdeefce4ff01a5018f16cc687e9ac86af67344c5c292d0508abcada17d8dc7d65df2c2e6e4904d6c8524552e2607f1a926a745fe3196f866d9c5f93294
 DIST openMotif-2.2.3.tar.gz 5149785 SHA256 
12fc0d1de53ff30307603e31826db9b63a442f6f743451aed2cb7cedb038d3d9 SHA512 
322381faf50bde6bbd2253f1b52a25e5471df87a2b01fba4de7e0d1bb4c1267e2b0d358e13e1b924a60d9e85316959fa6b2be5a458964d03f47a936bb618eae8
 WHIRLPOOL 
970f3f20eefde787af9fa932dcbf77e870ca6ba248e2632c358bbb7d149c2c4fef31a33a64888bc2b2e891f1c66a803a12e1121378539a94599e0be753c04bad
 DIST openmotif-2.2.3-patches-5.tar.xz 19972 SHA256 
69e1b1e37023ce0aa65c1aa8bdb60a6b2ead3472df26f1d10bffae7386b24c35 SHA512 
62c0489d1bda83952e1c8d39e8c8fe0ee5a4d2927f9139227cb80b2c58751d63d95b70fff3eb165219e75cdfdc299f92d90482124e6334a28781a13b174786c9
 WHIRLPOOL 
e2f8abc439d25d631b8489e1007788e931ea4982957d50e0e3e1062b76a3d37b279140f30bac95ab378a76cc33d5a49c1c217a66c441959510d9a96d7409d4af

diff --git a/x11-libs/motif/motif-2.3.6.ebuild 
b/x11-libs/motif/motif-2.3.6.ebuild
new file mode 100644
index 000..652c469
--- /dev/null
+++ b/x11-libs/motif/motif-2.3.6.ebuild
@@ -0,0 +1,118 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit autotools eutils flag-o-matic multilib toolchain-funcs multilib-minimal
+
+DESCRIPTION="The Motif user interface component toolkit"
+HOMEPAGE="http://sourceforge.net/projects/motif/
+   http://motif.ics.com/";
+SRC_URI="mirror://sourceforge/project/motif/Motif%20${PV}%20Source%20Code/${P}.tar.gz
+   http://dev.gentoo.org/~ulm/distfiles/${PN}-2.3.5-patches-1.tar.xz";
+
+LICENSE="LGPL-2.1+ MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 
~ppc-aix ~amd64-fbsd ~x86-fbsd ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+IUSE="examples jpeg +motif22-compatibility png static-libs unicode xft"
+
+RDEPEND="abi_x86_32? ( !app-emulation/emul-linux-x86-motif[-abi_x86_32(-)] )
+   >=x11-libs/libX11-1.6.2[${MULTILIB_USEDEP}]
+   >=x11-libs/libXext-1.3.2[${MULTILIB_USEDEP}]
+   >=x11-libs/libXmu-1.1.1-r1[${MULTILIB_USEDEP}]
+   >=x11-libs/libXp-1.0.2[${MULTILIB_USEDEP}]
+   >=x11-libs/libXt-1.1.4[${MULTILIB_USEDEP}]
+   jpeg? ( >=virtual/jpeg-0-r2:0=[${MULTILIB_USEDEP}] )
+   png? ( >=media-libs/libpng-1.6.10:0=[${MULTILIB_USEDEP}] )
+   unicode? ( >=virtual/libiconv-0-r1[${MULTILIB_USEDEP}] )
+   xft? (
+   >=media-libs/fontconfig-2.10.92[${MULTILIB_USEDEP}]
+   >=x11-libs/libXft-2.3.1-r1[${MULTILIB_USEDEP}]
+   )"
+
+DEPEND="${RDEPEND}
+   sys-devel/flex
+   || ( dev-util/byacc sys-freebsd/freebsd-ubin )
+   x11-misc/xbitmaps"
+
+src_prepare() {
+  

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

2016-06-22 Thread Christoph Junghans
commit: dc43ac2896702bebcb536ed1d785b0657b250c9d
Author: Christoph Junghans  gentoo  org>
AuthorDate: Wed Jun 22 20:46:17 2016 +
Commit: Christoph Junghans  gentoo  org>
CommitDate: Wed Jun 22 20:46:32 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc43ac28

sys-devel/byfl: fix deps (bug #586736)

Package-Manager: portage-2.2.28

 sys-devel/byfl/Manifest|  1 +
 .../byfl/{byfl-1.4.ebuild => byfl-1.4-r1.ebuild}   | 22 -
 .../byfl/{byfl-1.4.ebuild => byfl-1.5.ebuild}  | 23 --
 sys-devel/byfl/byfl-.ebuild| 23 --
 4 files changed, 40 insertions(+), 29 deletions(-)

diff --git a/sys-devel/byfl/Manifest b/sys-devel/byfl/Manifest
index d42b968..6ceaf2f 100644
--- a/sys-devel/byfl/Manifest
+++ b/sys-devel/byfl/Manifest
@@ -1 +1,2 @@
 DIST byfl-1.4-llvm-3.7.0.tar.gz 544669 SHA256 
b523a28fb05cb8f0f7641a326c08074306a38a3dcd61c95e69049a98a7ae0cce SHA512 
6fb204cf704d3f20e3d408f4cbe8071e1198b75615757c1877a8886753ff9087d9ff04a8279540b26805ed9a0e7cea6543a08de491990c9c912b40f1984bdcb4
 WHIRLPOOL 
63504c5bda6bd4b9f2cb84ca4f6c0aae2f6b24186d7487c670df4e6d217367e2d794ecda9c8811f6c7db70dc848dfa7ebc9cf09a331bb6b8929cd1af6f143ac2
+DIST byfl-1.5-llvm-3.8.0.tar.gz 544478 SHA256 
5d0a8e796b2e1e34448d86570048d267bc3fcc7c1acb6019138631fe3a9cc6e8 SHA512 
f1718a6bc43fed74e4d9907c8ff0a407c800176f2bfd2f68bfac2e6626cfe1d0be6835c91375d6ffe6a5a428da7ce80c3eb42a25c36ff69aab65600308dbdd7d
 WHIRLPOOL 
09a095a8db34464d5c666178015aa67e4143ae999e41d78710095b0c9d9186583301a204e74d02c2da78bc68a54503a7784ac2baf0844c90de8a69c6a86ca795

diff --git a/sys-devel/byfl/byfl-1.4.ebuild b/sys-devel/byfl/byfl-1.4-r1.ebuild
similarity index 70%
copy from sys-devel/byfl/byfl-1.4.ebuild
copy to sys-devel/byfl/byfl-1.4-r1.ebuild
index 8d88af4..55f1578 100644
--- a/sys-devel/byfl/byfl-1.4.ebuild
+++ b/sys-devel/byfl/byfl-1.4-r1.ebuild
@@ -1,18 +1,16 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI=5
+EAPI=6
 
-inherit autotools-utils flag-o-matic
+inherit flag-o-matic
 
 if [ "${PV}" = "" ]; then
-   LLVM_VERSION="3.7.0"
-   # Switch to ^b when we switch to EAPI=6.
-   EGIT_REPO_URI="git://github.com/losalamos/B${PN:1}.git 
https://github.com/losalamos/${PN}.git";
-   inherit git-2
+   LLVM_VERSION="3.8.0"
+   EGIT_REPO_URI="git://github.com/losalamos/${PN^b}.git 
https://github.com/losalamos/${PN}.git";
+   inherit autotools git-r3
KEYWORDS=""
-   AUTOTOOLS_AUTORECONF=1
 else
LLVM_VERSION="3.7.0"
MY_P="${P}-llvm-${LLVM_VERSION}"
@@ -31,6 +29,7 @@ IUSE="hdf5 static-libs sqlite"
 RDEPEND="
>=sys-devel/clang-${LLVM_VERSION}
>=sys-devel/llvm-${LLVM_VERSION}
+   https://github.com/losalamos/${PN}.git";
-   inherit git-2
+   LLVM_VERSION="3.8.0"
+   EGIT_REPO_URI="git://github.com/losalamos/${PN^b}.git 
https://github.com/losalamos/${PN}.git";
+   inherit autotools git-r3
KEYWORDS=""
-   AUTOTOOLS_AUTORECONF=1
 else
-   LLVM_VERSION="3.7.0"
+   LLVM_VERSION="3.8.0"
MY_P="${P}-llvm-${LLVM_VERSION}"

SRC_URI="https://github.com/losalamos/Byfl/releases/download/v${MY_P#${PN}-}/${MY_P}.tar.gz";
KEYWORDS="~amd64 ~amd64-linux"
@@ -38,8 +36,13 @@ RDEPEND="
sqlite? ( dev-db/sqlite:3 )"
 DEPEND="${RDEPEND}"
 
+src_prepare() {
+   default
+   [[ ${PV} =  ]] && eautoreconf
+}
+
 src_configure() {
append-cxxflags -std=c++11
use sqlite || export ac_cv_lib_sqlite3_sqlite3_errstr=no
-   autotools-utils_src_configure H5CXX=$(usex hdf5 h5c++ no)
+   econf H5CXX=$(usex hdf5 h5c++ no)
 }

diff --git a/sys-devel/byfl/byfl-.ebuild b/sys-devel/byfl/byfl-.ebuild
index 8d88af4..c0ffb16 100644
--- a/sys-devel/byfl/byfl-.ebuild
+++ b/sys-devel/byfl/byfl-.ebuild
@@ -1,20 +1,18 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI=5
+EAPI=6
 
-inherit autotools-utils flag-o-matic
+inherit flag-o-matic
 
 if [ "${PV}" = "" ]; then
-   LLVM_VERSION="3.7.0"
-   # Switch to ^b when we switch to EAPI=6.
-   EGIT_REPO_URI="git://github.com/losalamos/B${PN:1}.git 
https://github.com/losalamos/${PN}.git";
-   inherit git-2
+   LLVM_VERSION="3.8.0"
+   EGIT_REPO_URI="git://github.com/losalamos/${PN^b}.git 
https://github.com/losalamos/${PN}.git";
+   inherit autotools git-r3
KEYWORDS=""
-   AUTOTOOLS_AUTORECONF=1
 else
-   LLVM_VERSION="3.7.0"
+   LLVM_VERSION="3.8.0"
MY_P="${P}-llvm-${LLVM_VERSION}"

SRC_URI="https://github.com/losalamos/Byfl/releases/download/v${MY_P#${PN}-}/${MY_P}.tar.gz";
KEYWORDS="~amd64 ~amd64-linux"
@@ -38,8 +36,13 @@ RDE

[gentoo-commits] repo/gentoo:master commit in: media-gfx/gimp/, media-gfx/gimp/files/

2016-06-22 Thread Sebastian Pipping
commit: 331ebdd3de4437b493d0e4e12fa8b97fa976f5a4
Author: Sebastian Pipping  gentoo  org>
AuthorDate: Wed Jun 22 20:12:30 2016 +
Commit: Sebastian Pipping  gentoo  org>
CommitDate: Wed Jun 22 20:15:48 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=331ebdd3

media-gfx/gimp: CVE-2016-4994 (bug #58)

Package-Manager: portage-2.2.28

 .../gimp/files/gimp-2.9.2-CVE-2016-4994.patch  |  88 +++
 media-gfx/gimp/gimp-2.8.14-r2.ebuild   | 171 +
 media-gfx/gimp/gimp-2.8.16-r1.ebuild   | 171 +
 media-gfx/gimp/gimp-2.9.2-r1.ebuild| 168 
 4 files changed, 598 insertions(+)

diff --git a/media-gfx/gimp/files/gimp-2.9.2-CVE-2016-4994.patch 
b/media-gfx/gimp/files/gimp-2.9.2-CVE-2016-4994.patch
new file mode 100644
index 000..846318b
--- /dev/null
+++ b/media-gfx/gimp/files/gimp-2.9.2-CVE-2016-4994.patch
@@ -0,0 +1,88 @@
+From 6d804bf9ae77bc86a0a97f9b944a129844df9395 Mon Sep 17 00:00:00 2001
+From: Shmuel H 
+Date: Mon, 20 Jun 2016 17:14:41 +0300
+Subject: Bug 767873 - (CVE-2016-4994) Multiple Use-After-Free when parsing...
+
+...XCF channel and layer properties
+
+The properties PROP_ACTIVE_LAYER, PROP_FLOATING_SELECTION,
+PROP_ACTIVE_CHANNEL saves the current object pointer the @info
+structure. Others like PROP_SELECTION (for channel) and
+PROP_GROUP_ITEM (for layer) will delete the current object and create
+a new object, leaving the pointers in @info invalid (dangling).
+
+Therefore, if a property from the first type will come before the
+second, the result will be an UaF in the last lines of xcf_load_image
+(when it actually using the pointers from @info).
+
+I wasn't able to exploit this bug because that
+g_object_instance->c_class gets cleared by the last g_object_unref and
+GIMP_IS_{LAYER,CHANNEL} detects that and return FALSE.
+---
+ app/xcf/xcf-load.c | 29 +
+ 1 file changed, 29 insertions(+)
+
+diff --git a/app/xcf/xcf-load.c b/app/xcf/xcf-load.c
+index f48558a..244d5c2 100644
+--- a/app/xcf/xcf-load.c
 b/app/xcf/xcf-load.c
+@@ -1141,6 +1141,18 @@ xcf_load_layer_props (XcfInfo*info,
+ case PROP_GROUP_ITEM:
+   {
+ GimpLayer *group;
++gboolean   is_active_layer;
++
++/* We're going to delete *layer, Don't leave its pointers
++ * in @info.  After that, we'll restore them back with the
++ * new pointer. See bug #767873.
++ */
++is_active_layer = (*layer == info->active_layer);
++if (is_active_layer)
++  info->active_layer = NULL;
++
++if (*layer == info->floating_sel)
++  info->floating_sel = NULL;
+ 
+ group = gimp_group_layer_new (image);
+ 
+@@ -1150,6 +1162,13 @@ xcf_load_layer_props (XcfInfo*info,
+ g_object_ref_sink (*layer);
+ g_object_unref (*layer);
+ *layer = group;
++
++if (is_active_layer)
++  info->active_layer = *layer;
++
++/* Don't restore info->floating_sel because group layers
++ * can't be floating selections
++ */
+   }
+   break;
+ 
+@@ -1220,6 +1239,12 @@ xcf_load_channel_props (XcfInfo  *info,
+   {
+ GimpChannel *mask;
+ 
++/* We're going to delete *channel, Don't leave its pointer
++ * in @info. See bug #767873.
++ */
++if (*channel == info->active_channel)
++  info->active_channel = NULL;
++
+ mask =
+   gimp_selection_new (image,
+   gimp_item_get_width  (GIMP_ITEM (*channel)),
+@@ -1234,6 +1259,10 @@ xcf_load_channel_props (XcfInfo  *info,
+ *channel = mask;
+ (*channel)->boundary_known = FALSE;
+ (*channel)->bounds_known   = FALSE;
++
++/* Don't restore info->active_channel because the
++ * selection can't be the active channel
++ */
+   }
+   break;
+ 
+-- 
+cgit v0.12
+

diff --git a/media-gfx/gimp/gimp-2.8.14-r2.ebuild 
b/media-gfx/gimp/gimp-2.8.14-r2.ebuild
new file mode 100644
index 000..76c3efe
--- /dev/null
+++ b/media-gfx/gimp/gimp-2.8.14-r2.ebuild
@@ -0,0 +1,171 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+PYTHON_COMPAT=( python2_7 )
+
+inherit versionator virtualx autotools eutils gnome2 fdo-mime multilib 
python-single-r1
+
+DESCRIPTION="GNU Image Manipulation Program"
+HOMEPAGE="http://www.gimp.org/";
+SRC_URI="mirror://gimp/v$(get_version_component_range 1-2)/${P}.tar.bz2"
+LICENSE="GPL-3 LGPL-3"
+SLOT="2"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~x64-solaris ~x86-solaris"
+
+LAN

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

2016-06-22 Thread Pacho Ramos
commit: 9a97107f72db28251fd5585c535cbbbe9be324ac
Author: Pacho Ramos  gentoo  org>
AuthorDate: Wed Jun 22 19:59:12 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Wed Jun 22 20:00:18 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a97107f

net-libs/phodav: Drop old

Package-Manager: portage-2.3.0_rc1

 net-libs/phodav/Manifest  |  1 -
 net-libs/phodav/phodav-0.4.ebuild | 55 ---
 2 files changed, 56 deletions(-)

diff --git a/net-libs/phodav/Manifest b/net-libs/phodav/Manifest
index 9588534..e190627 100644
--- a/net-libs/phodav/Manifest
+++ b/net-libs/phodav/Manifest
@@ -1,2 +1 @@
-DIST phodav-0.4.tar.xz 272476 SHA256 
5d14bfd4d733f680fca6875586308879b78a3c4892bd95a2d8dc4aabd24614b6 SHA512 
f6d624fb3df945e1b5fad1d31e849949a8c784a9f48adcf35b4714605a7f181c53b878bce307f8ca868d9a66425adddb0341db21294f7f25777b62dca7a1c662
 WHIRLPOOL 
767b3888f870e3e4739c9432cb162cb2e595ac4ac2582abc3174b4220455adbbfdeed8f70f39477ca3557c1f93af6bb8c03d62277fca7ffe6a14d0a83ae8f1d3
 DIST phodav-2.0.tar.xz 277672 SHA256 
53b42faf2d6edfb0072dbbbe9b8360d8603cca2cacd142df8d1781b9ba0cb9ed SHA512 
4da0f3ef7ce2ffd89e43569ad00456f9580f4005a6830a8cc36a7787cc9e06d285326376373a0d690a1868b1c10da0f3ba49b4eb8dcff3042f5c64cbe1fe0aba
 WHIRLPOOL 
5d1ba19f502a72a86e7dbf47ca43cd5d711241fcdb936364c98de88df57cb49db88cdd0768c133bb936c40be98107f06d8b6d8f8cb1b51d2a05e33b83d36f8a4

diff --git a/net-libs/phodav/phodav-0.4.ebuild 
b/net-libs/phodav/phodav-0.4.ebuild
deleted file mode 100644
index 88c6c37..000
--- a/net-libs/phodav/phodav-0.4.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=5
-
-GCONF_DEBUG="no"
-GNOME2_LA_PUNT="yes"
-
-inherit gnome2 systemd udev
-
-DESCRIPTION="WebDav server implementation using libsoup"
-HOMEPAGE="https://wiki.gnome.org/phodav";
-
-LICENSE="LGPL-2.1+"
-SLOT="1.0"
-KEYWORDS="alpha amd64 arm ppc ppc64 x86"
-IUSE="avahi spice systemd"
-
-RDEPEND="
-   dev-libs/glib:2
-   net-libs/libsoup:2.4
-   dev-libs/libxml2
-   avahi? ( net-dns/avahi )"
-DEPEND="${RDEPEND}
-   >=dev-util/intltool-0.40.0
-   >=dev-util/gtk-doc-am-1.10
-   sys-devel/gettext
-   virtual/pkgconfig"
-
-src_configure() {
-   gnome2_src_configure \
-   --disable-static \
-   $(use_with avahi) \
-   --with-udevdir=$(get_udevdir) \
-   --with-systemdsystemunitdir=$(systemd_get_unitdir)
-
-   if ! use avahi ; then
-   sed -i -e 's|avahi-daemon.service||' data/spice-webdavd.service 
|| die
-   fi
-}
-
-src_install() {
-   gnome2_src_install
-
-   if use spice ; then
-   if ! use systemd ; then
-   newinitd "${FILESDIR}/spice-webdavd.initd" spice-webdavd
-   udev_dorules "${FILESDIR}/70-spice-webdavd.rules"
-   rm -r "${D}$(systemd_get_unitdir)" || die
-   fi
-   else
-   rm -r "${D}"{/usr/sbin,$(get_udevdir),$(systemd_get_unitdir)} 
|| die
-   fi
-}



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

2016-06-22 Thread Kristian Fiskerstrand
commit: 6aa508aaa9cd595637c21335517e9359b98bead3
Author: PPed72  iol  it>
AuthorDate: Mon Jun 20 10:08:08 2016 +
Commit: Kristian Fiskerstrand  gentoo  org>
CommitDate: Wed Jun 22 19:37:08 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6aa508aa

net-p2p/deluge: Sync live ebuild to latest changes

 net-p2p/deluge/deluge-.ebuild | 82 +--
 1 file changed, 61 insertions(+), 21 deletions(-)

diff --git a/net-p2p/deluge/deluge-.ebuild 
b/net-p2p/deluge/deluge-.ebuild
index e11f9c0..a8a9ca6 100644
--- a/net-p2p/deluge/deluge-.ebuild
+++ b/net-p2p/deluge/deluge-.ebuild
@@ -2,17 +2,18 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI="5"
+EAPI="6"
 
 PYTHON_COMPAT=( python2_7 )
 DISTUTILS_SINGLE_IMPL=1
-inherit distutils-r1 eutils systemd user
+PLOCALES="af ar ast be bg bn bs ca cs cy da de el en_AU en_CA en_GB eo es et 
eu fa fi fo fr fy ga gl he hi hr hu id is it iu ja ka kk km kn ko ku ky la lb 
lt lv mk ml ms nap nb nds nl nn oc pl pms pt pt_BR ro ru si sk sl sr sv ta te 
th tl tlh tr uk ur vi zh_CN zh_HK zh_TW"
+inherit distutils-r1 eutils systemd user l10n
 
 DESCRIPTION="BitTorrent client with a client/server model"
 HOMEPAGE="http://deluge-torrent.org/";
 
 if [[ ${PV} ==  ]]; then
-   inherit git-2
+   inherit git-r3
EGIT_REPO_URI="git://deluge-torrent.org/${PN}.git
http://git.deluge-torrent.org/${PN}";
SRC_URI=""
@@ -24,18 +25,27 @@ fi
 
 LICENSE="GPL-2"
 SLOT="0"
-IUSE="geoip gtk libnotify setproctitle sound webinterface"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+IUSE="console geoip gtk libnotify sound webinterface"
+REQUIRED_USE="
+   ${PYTHON_REQUIRED_USE}
+   sound? ( gtk )
+   libnotify? ( gtk )
+"
+PATCHES=(
+   "${FILESDIR}/${PN}-1.3.12-fix_scheduler_plugin.patch"
+)
 
-DEPEND=">=net-libs/rb_libtorrent-0.14.9[python]
+CDEPEND=">=net-libs/rb_libtorrent-0.14.9[python,${PYTHON_USEDEP}]"
+DEPEND="${CDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
dev-util/intltool"
-RDEPEND=">=net-libs/rb_libtorrent-0.14.9[python]
+RDEPEND="${CDEPEND}
dev-python/chardet[${PYTHON_USEDEP}]
dev-python/pyopenssl[${PYTHON_USEDEP}]
dev-python/pyxdg[${PYTHON_USEDEP}]
-   >=dev-python/twisted-core-8.1[${PYTHON_USEDEP}]
-   >=dev-python/twisted-web-8.1[${PYTHON_USEDEP}]
+   dev-python/setproctitle[${PYTHON_USEDEP}]
+   >=dev-python/twisted-core-13.0[${PYTHON_USEDEP}]
+   >=dev-python/twisted-web-13.0[${PYTHON_USEDEP}]
geoip? ( dev-libs/geoip )
gtk? (
sound? ( dev-python/pygame[${PYTHON_USEDEP}] )
@@ -44,14 +54,26 @@ RDEPEND=">=net-libs/rb_libtorrent-0.14.9[python]
gnome-base/librsvg
libnotify? ( dev-python/notify-python[${PYTHON_USEDEP}] )
)
-   setproctitle? ( dev-python/setproctitle[${PYTHON_USEDEP}] )
webinterface? ( dev-python/mako[${PYTHON_USEDEP}] )"
 
 python_prepare_all() {
-#Not needed anymore: bug #518354
-#  local PATCHES=(
-#  "${FILESDIR}"/${PN}-1.3.5-disable_libtorrent_internal_copy.patch
-#  )
+   local args=(
+   -e "/Compiling po file/a \\\tuptoDate = False"
+   )
+   sed -i "${args[@]}" -- 'setup.py' || die
+   args=(
+   -e 's|"new_release_check": True|"new_release_check": False|'
+   -e 's|"check_new_releases": True|"check_new_releases": False|'
+   -e 's|"show_new_releases": True|"show_new_releases": False|'
+   )
+   sed -i "${args[@]}" -- 'deluge/core/preferencesmanager.py' || die
+
+   local loc_dir="${S}/deluge/i18n"
+   l10n_find_plocales_changes "${loc_dir}" "" ".po"
+   rm_loc() {
+   rm -vf "${loc_dir}/${1}.po" || die
+   }
+   l10n_for_each_disabled_locale_do rm_loc
 
distutils-r1_python_prepare_all
 }
@@ -61,27 +83,45 @@ esetup.py() {
# Override this call from the distutils-r1 eclass.
# This does not respect the distutils-r1 API. DONOT copy this example.
set -- "${PYTHON}" setup.py "$@"
-   echo "$@"
-   "$@" || die
+echo "$@"
+"$@" || die
 }
 
 python_install_all() {
distutils-r1_python_install_all
+   if ! use console ; then
+   rm -rf 
"${D}/usr/$(get_libdir)/python2.7/site-packages/deluge/ui/console/" || die
+   rm -f "${D}/usr/bin/deluge-console" || die
+   rm -f "${D}/usr/share/man/man1/deluge-console.1" ||die
+   fi
+   if ! use gtk ; then
+   rm -rf 
"${D}/usr/$(get_libdir)/python2.7/site-packages/deluge/ui/gtkui/" || die
+   rm -rf "${D}/usr/share/icons/" || die
+   rm -f "${D}/usr/bin/deluge-gtk" || die
+   rm -f "${D}/usr/share/man/man1/deluge-gtk.1" || die
+   rm -f "${D}/usr/share/applications/deluge.desktop" || die
+   fi
+   if use webinterface; then
+   

[gentoo-commits] repo/gentoo:master commit in: net-p2p/deluge/, net-p2p/deluge/files/

2016-06-22 Thread Kristian Fiskerstrand
commit: 406fd0f543d40c4dc292704883d0b2304d312bf1
Author: PPed72  iol  it>
AuthorDate: Mon Jun 20 09:54:23 2016 +
Commit: Kristian Fiskerstrand  gentoo  org>
CommitDate: Wed Jun 22 19:36:53 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=406fd0f5

net-p2p/deluge: Make UI installation USE-conditional

Gentoo-bug: 381837
New ebuild, EAPI=6, add local use flags and new languages to
metadata.xml, fix patch for EAPI=6

 net-p2p/deluge/deluge-1.3.12-r4.ebuild | 141 +
 ...ge-1.3.5-disable_libtorrent_internal_copy.patch |   4 +-
 net-p2p/deluge/metadata.xml|   4 +
 3 files changed, 147 insertions(+), 2 deletions(-)

diff --git a/net-p2p/deluge/deluge-1.3.12-r4.ebuild 
b/net-p2p/deluge/deluge-1.3.12-r4.ebuild
new file mode 100644
index 000..812e7f2
--- /dev/null
+++ b/net-p2p/deluge/deluge-1.3.12-r4.ebuild
@@ -0,0 +1,141 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="6"
+
+PYTHON_COMPAT=( python2_7 )
+DISTUTILS_SINGLE_IMPL=1
+PLOCALES="af ar ast be bg bn bs ca cs cy da de el en_AU en_CA en_GB eo es et 
eu fa fi fo fr fy ga gl he hi hr hu id is it iu ja ka kk km kn ko ku ky la lb 
lt lv mk ml ms nap nb nds nl nn oc pl pms pt pt_BR ro ru si sk sl sr sv ta te 
th tl tlh tr uk ur vi zh_CN zh_HK zh_TW"
+inherit distutils-r1 eutils systemd user l10n
+
+DESCRIPTION="BitTorrent client with a client/server model"
+HOMEPAGE="http://deluge-torrent.org/";
+
+if [[ ${PV} ==  ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="git://deluge-torrent.org/${PN}.git
+   http://git.deluge-torrent.org/${PN}";
+   SRC_URI=""
+   KEYWORDS=""
+else
+   SRC_URI="http://download.deluge-torrent.org/source/${P}.tar.bz2";
+   KEYWORDS="~amd64 ~arm ~ppc ~sparc ~x86"
+fi
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="console geoip gtk libnotify sound webinterface"
+REQUIRED_USE="
+   ${PYTHON_REQUIRED_USE}
+   sound? ( gtk )
+   libnotify? ( gtk )
+"
+PATCHES=(
+   "${FILESDIR}/${PN}-1.3.12-fix_scheduler_plugin.patch"
+   "${FILESDIR}/${PN}-1.3.5-disable_libtorrent_internal_copy.patch"
+)
+
+CDEPEND=">=net-libs/rb_libtorrent-0.14.9[python,${PYTHON_USEDEP}]"
+DEPEND="${CDEPEND}
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   dev-util/intltool"
+RDEPEND="${CDEPEND}
+   dev-python/chardet[${PYTHON_USEDEP}]
+   dev-python/pyopenssl[${PYTHON_USEDEP}]
+   dev-python/pyxdg[${PYTHON_USEDEP}]
+   dev-python/setproctitle[${PYTHON_USEDEP}]
+   >=dev-python/twisted-core-13.0[${PYTHON_USEDEP}]
+   >=dev-python/twisted-web-13.0[${PYTHON_USEDEP}]
+   geoip? ( dev-libs/geoip )
+   gtk? (
+   sound? ( dev-python/pygame[${PYTHON_USEDEP}] )
+   dev-python/pygobject:2[${PYTHON_USEDEP}]
+   >=dev-python/pygtk-2.12[${PYTHON_USEDEP}]
+   gnome-base/librsvg
+   libnotify? ( dev-python/notify-python[${PYTHON_USEDEP}] )
+   )
+   webinterface? ( dev-python/mako[${PYTHON_USEDEP}] )"
+
+python_prepare_all() {
+   local args=(
+   -e "/Compiling po file/a \\\tuptoDate = False"
+   )
+   sed -i "${args[@]}" -- 'setup.py' || die
+   args=(
+   -e 's|"new_release_check": True|"new_release_check": False|'
+   -e 's|"check_new_releases": True|"check_new_releases": False|'
+   -e 's|"show_new_releases": True|"show_new_releases": False|'
+   )
+   sed -i "${args[@]}" -- 'deluge/core/preferencesmanager.py' || die
+
+   local loc_dir="${S}/deluge/i18n"
+   l10n_find_plocales_changes "${loc_dir}" "" ".po"
+   rm_loc() {
+   rm -vf "${loc_dir}/${1}.po" || die
+   }
+   l10n_for_each_disabled_locale_do rm_loc
+
+   distutils-r1_python_prepare_all
+}
+
+esetup.py() {
+   # bug 531370: deluge has its own plugin system. No need to relocate its 
egg info files.
+   # Override this call from the distutils-r1 eclass.
+   # This does not respect the distutils-r1 API. DONOT copy this example.
+   set -- "${PYTHON}" setup.py "$@"
+echo "$@"
+"$@" || die
+}
+
+python_install_all() {
+   distutils-r1_python_install_all
+   if ! use console ; then
+   rm -rf 
"${D}/usr/$(get_libdir)/python2.7/site-packages/deluge/ui/console/" || die
+   rm -f "${D}/usr/bin/deluge-console" || die
+   rm -f "${D}/usr/share/man/man1/deluge-console.1" ||die
+   fi
+   if ! use gtk ; then
+   rm -rf 
"${D}/usr/$(get_libdir)/python2.7/site-packages/deluge/ui/gtkui/" || die
+   rm -rf "${D}/usr/share/icons/" || die
+   rm -f "${D}/usr/bin/deluge-gtk" || die
+   rm -f "${D}/usr/share/man/man1/deluge-gtk.1" || die
+   rm -f "${D}/usr/share/applications/deluge.desktop" || die
+   fi
+   if use webinterface; then
+   newinitd "${FILESD

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

2016-06-22 Thread Kristian Fiskerstrand
commit: fc5e2cd290b1b9438248695b401837ce89a56cec
Author: PPed72  iol  it>
AuthorDate: Mon Jun 20 10:09:09 2016 +
Commit: Kristian Fiskerstrand  gentoo  org>
CommitDate: Wed Jun 22 19:44:29 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc5e2cd2

net-p2p/deluge: Add stable live ebuild

Also fixes some tabs vs spaces issues

 net-p2p/deluge/deluge-1.3.12-r4.ebuild| 4 ++--
 .../deluge/{deluge-1.3.12-r4.ebuild => deluge-1.3..ebuild}| 8 
 net-p2p/deluge/deluge-.ebuild | 4 ++--
 3 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/net-p2p/deluge/deluge-1.3.12-r4.ebuild 
b/net-p2p/deluge/deluge-1.3.12-r4.ebuild
index 812e7f2..d5a9bef 100644
--- a/net-p2p/deluge/deluge-1.3.12-r4.ebuild
+++ b/net-p2p/deluge/deluge-1.3.12-r4.ebuild
@@ -84,8 +84,8 @@ esetup.py() {
# Override this call from the distutils-r1 eclass.
# This does not respect the distutils-r1 API. DONOT copy this example.
set -- "${PYTHON}" setup.py "$@"
-echo "$@"
-"$@" || die
+   echo "$@"
+   "$@" || die
 }
 
 python_install_all() {

diff --git a/net-p2p/deluge/deluge-1.3.12-r4.ebuild 
b/net-p2p/deluge/deluge-1.3..ebuild
similarity index 97%
copy from net-p2p/deluge/deluge-1.3.12-r4.ebuild
copy to net-p2p/deluge/deluge-1.3..ebuild
index 812e7f2..0090456 100644
--- a/net-p2p/deluge/deluge-1.3.12-r4.ebuild
+++ b/net-p2p/deluge/deluge-1.3..ebuild
@@ -12,10 +12,11 @@ inherit distutils-r1 eutils systemd user l10n
 DESCRIPTION="BitTorrent client with a client/server model"
 HOMEPAGE="http://deluge-torrent.org/";
 
-if [[ ${PV} ==  ]]; then
+if [[ ${PV} == 1.3. ]]; then
inherit git-r3
EGIT_REPO_URI="git://deluge-torrent.org/${PN}.git
http://git.deluge-torrent.org/${PN}";
+   EGIT_BRANCH="1.3-stable"
SRC_URI=""
KEYWORDS=""
 else
@@ -32,7 +33,6 @@ REQUIRED_USE="
libnotify? ( gtk )
 "
 PATCHES=(
-   "${FILESDIR}/${PN}-1.3.12-fix_scheduler_plugin.patch"
"${FILESDIR}/${PN}-1.3.5-disable_libtorrent_internal_copy.patch"
 )
 
@@ -84,8 +84,8 @@ esetup.py() {
# Override this call from the distutils-r1 eclass.
# This does not respect the distutils-r1 API. DONOT copy this example.
set -- "${PYTHON}" setup.py "$@"
-echo "$@"
-"$@" || die
+   echo "$@"
+   "$@" || die
 }
 
 python_install_all() {

diff --git a/net-p2p/deluge/deluge-.ebuild 
b/net-p2p/deluge/deluge-.ebuild
index a8a9ca6..33cd876 100644
--- a/net-p2p/deluge/deluge-.ebuild
+++ b/net-p2p/deluge/deluge-.ebuild
@@ -83,8 +83,8 @@ esetup.py() {
# Override this call from the distutils-r1 eclass.
# This does not respect the distutils-r1 API. DONOT copy this example.
set -- "${PYTHON}" setup.py "$@"
-echo "$@"
-"$@" || die
+   echo "$@"
+   "$@" || die
 }
 
 python_install_all() {



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

2016-06-22 Thread Kristian Fiskerstrand
commit: 0815f1fef33941a54fbbe7783e132106fef1be79
Author: PPed72  iol  it>
AuthorDate: Mon Jun 20 10:06:15 2016 +
Commit: Kristian Fiskerstrand  gentoo  org>
CommitDate: Wed Jun 22 19:37:00 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0815f1fe

net-p2p/deluge: Remove old

 net-p2p/deluge/deluge-1.3.12-r3.ebuild | 100 -
 1 file changed, 100 deletions(-)

diff --git a/net-p2p/deluge/deluge-1.3.12-r3.ebuild 
b/net-p2p/deluge/deluge-1.3.12-r3.ebuild
deleted file mode 100644
index 92b0c53..000
--- a/net-p2p/deluge/deluge-1.3.12-r3.ebuild
+++ /dev/null
@@ -1,100 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-PYTHON_COMPAT=( python2_7 )
-DISTUTILS_SINGLE_IMPL=1
-inherit distutils-r1 eutils systemd user
-
-DESCRIPTION="BitTorrent client with a client/server model"
-HOMEPAGE="http://deluge-torrent.org/";
-
-if [[ ${PV} ==  ]]; then
-   inherit git-2
-   EGIT_REPO_URI="git://deluge-torrent.org/${PN}.git
-   http://git.deluge-torrent.org/${PN}";
-   SRC_URI=""
-   KEYWORDS=""
-else
-   SRC_URI="http://download.deluge-torrent.org/source/${P}.tar.bz2";
-   KEYWORDS="~amd64 ~arm ~ppc ~sparc ~x86"
-fi
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="geoip gtk libnotify setproctitle sound webinterface"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-DEPEND=">=net-libs/rb_libtorrent-0.14.9[python]
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   dev-util/intltool"
-RDEPEND=">=net-libs/rb_libtorrent-0.14.9[python]
-   dev-python/chardet[${PYTHON_USEDEP}]
-   dev-python/pyopenssl[${PYTHON_USEDEP}]
-   dev-python/pyxdg[${PYTHON_USEDEP}]
-   >=dev-python/twisted-core-8.1[${PYTHON_USEDEP}]
-   >=dev-python/twisted-web-8.1[${PYTHON_USEDEP}]
-   geoip? ( dev-libs/geoip )
-   gtk? (
-   sound? ( dev-python/pygame[${PYTHON_USEDEP}] )
-   dev-python/pygobject:2[${PYTHON_USEDEP}]
-   >=dev-python/pygtk-2.12[${PYTHON_USEDEP}]
-   gnome-base/librsvg
-   libnotify? ( dev-python/notify-python[${PYTHON_USEDEP}] )
-   )
-   setproctitle? ( dev-python/setproctitle[${PYTHON_USEDEP}] )
-   webinterface? ( dev-python/mako[${PYTHON_USEDEP}] )"
-
-python_prepare_all() {
-   local PATCHES=(
-   "${FILESDIR}"/${PN}-1.3.5-disable_libtorrent_internal_copy.patch
-   "${FILESDIR}"/${PN}-1.3.12-fix_scheduler_plugin.patch
-   )
-
-   distutils-r1_python_prepare_all
-}
-
-esetup.py() {
-   # bug 531370: deluge has its own plugin system. No need to relocate its 
egg info files.
-   # Override this call from the distutils-r1 eclass.
-   # This does not respect the distutils-r1 API. DONOT copy this example.
-   set -- "${PYTHON}" setup.py "$@"
-   echo "$@"
-   "$@" || die
-}
-
-python_install_all() {
-   distutils-r1_python_install_all
-   newinitd "${FILESDIR}"/deluged.init-2 deluged
-   newconfd "${FILESDIR}"/deluged.conf-2 deluged
-   newinitd "${FILESDIR}"/deluge-web.init deluge-web
-   newconfd "${FILESDIR}"/deluge-web.conf deluge-web
-   systemd_newunit "${FILESDIR}"/deluged.service-2 deluged.service
-   systemd_newunit "${FILESDIR}"/deluge-web.service-2 deluge-web.service
-   systemd_install_serviced "${FILESDIR}"/deluged.service.conf
-   systemd_install_serviced "${FILESDIR}"/deluge-web.service.conf
-}
-
-pkg_postinst() {
-   enewgroup ${PN}
-   enewuser ${PN} -1 -1 /var/lib/${PN} ${PN}
-   elog
-   elog "If after upgrading it doesn't work, please remove the"
-   elog "'~/.config/deluge' directory and try again, but make a backup"
-   elog "first!"
-   elog
-   elog "To start the daemon either run 'deluged' as user"
-   elog "or modify /etc/conf.d/deluged and run"
-   elog "/etc/init.d/deluged start as root"
-   elog "You can still use deluge the old way"
-   elog
-   elog "Systemd unit files for deluged and deluge-web no longer source"
-   elog "/etc/conf.d/deluge* files. Environment variable customization now"
-   elog "happens in /etc/systemd/system/deluged.service.d/00gentoo.conf"
-   elog "and /etc/systemd/system/deluge-web.service.d/00gentoo.conf"
-   elog
-   elog "For more information look at 
http://dev.deluge-torrent.org/wiki/Faq";
-   elog
-}



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

2016-06-22 Thread Fabian Groffen
commit: a8844c78eeac8363710b328de5d1d680715a0d4a
Author: Fabian Groffen  gentoo  org>
AuthorDate: Wed Jun 22 18:56:22 2016 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Wed Jun 22 18:56:22 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a8844c78

profiles/prefix/sunos/solaris/package.mask: net-misc/wget-1.18 linking was fixed

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

diff --git a/profiles/prefix/sunos/solaris/package.mask 
b/profiles/prefix/sunos/solaris/package.mask
index 641346c..8936020 100644
--- a/profiles/prefix/sunos/solaris/package.mask
+++ b/profiles/prefix/sunos/solaris/package.mask
@@ -3,10 +3,6 @@
 # $Id$
 
 
-# Fabian Groffen  (14 Jun 2016)
-# Fails to link due to missing libiconv.so, bug #585924
-=net-misc/wget-1.18
-
 # Fabian Groffen  (13 Jun 2015)
 # Needs patching to compile (d_type and DT_REG), bug #551696
 =app-portage/portage-utils-0.56



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

2016-06-22 Thread Fabian Groffen
commit: a4c200757bc8abff5427a77a4254735b452b9f93
Author: Fabian Groffen  gentoo  org>
AuthorDate: Wed Jun 22 18:54:42 2016 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Wed Jun 22 18:54:54 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4c20075

net-misc/wget: fix linking wrt iconv on Darwin/Solaris, bug #585924

Package-Manager: portage-2.2.28

 net-misc/wget/wget-1.18.ebuild | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/net-misc/wget/wget-1.18.ebuild b/net-misc/wget/wget-1.18.ebuild
index 74d2cd2..6fd73f1 100644
--- a/net-misc/wget/wget-1.18.ebuild
+++ b/net-misc/wget/wget-1.18.ebuild
@@ -50,6 +50,12 @@ pkg_setup() {
 
 src_prepare() {
epatch "${FILESDIR}"/${PN}-1.17.1-gnulib-cygwin-sys_select.patch
+   # revert some hack that breaks linking, bug #585924
+   if [[ ${CHOST} == *-darwin* ]] || [[ ${CHOST} == *-solaris* ]] ; then
+   sed -i \
+   -e 's/^  LIBICONV=$/:/' \
+   configure || die
+   fi
 }
 
 src_configure() {



[gentoo-commits] repo/gentoo:master commit in: app-crypt/gnupg/

2016-06-22 Thread Austin English
commit: 9807798754677b625d90625fc5b8f4136a60e7eb
Author: Austin English  gentoo  org>
AuthorDate: Tue Jun 21 23:58:51 2016 +
Commit: Austin English  gentoo  org>
CommitDate: Wed Jun 22 17:40:37 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98077987

app-crypt/gnupg: fix remaining ebuilds building with Clang

Gentoo-Bug: https://bugs.gentoo.org/458154

Reviewed-by: Robin H. Johnson  gentoo.org>

Package-Manager: portage-2.2.28

 app-crypt/gnupg/gnupg-2.0.26-r3.ebuild | 5 -
 app-crypt/gnupg/gnupg-2.0.28.ebuild| 4 ++--
 2 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/app-crypt/gnupg/gnupg-2.0.26-r3.ebuild 
b/app-crypt/gnupg/gnupg-2.0.26-r3.ebuild
index 055584d..61372d9 100644
--- a/app-crypt/gnupg/gnupg-2.0.26-r3.ebuild
+++ b/app-crypt/gnupg/gnupg-2.0.26-r3.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$
 
@@ -85,6 +85,9 @@ src_configure() {
myconf+=( --enable-symcryptrun )
fi
 
+   # glib fails and picks up clang's internal stdint.h causing weird errors
+   [[ ${CC} == *clang ]] && export 
gl_cv_absolute_stdint_h=/usr/include/stdint.h
+
econf \
--docdir="${EPREFIX}/usr/share/doc/${PF}" \
--enable-gpg \

diff --git a/app-crypt/gnupg/gnupg-2.0.28.ebuild 
b/app-crypt/gnupg/gnupg-2.0.28.ebuild
index ffc5a30..1dac44f 100644
--- a/app-crypt/gnupg/gnupg-2.0.28.ebuild
+++ b/app-crypt/gnupg/gnupg-2.0.28.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$
 
@@ -84,7 +84,7 @@ src_configure() {
fi
 
# glib fails and picks up clang's internal stdint.h causing weird errors
-   [[ ${CC} == clang ]] && export 
gl_cv_absolute_stdint_h=/usr/include/stdint.h
+   [[ ${CC} == *clang ]] && export 
gl_cv_absolute_stdint_h=/usr/include/stdint.h
 
econf \
--docdir="${EPREFIX}/usr/share/doc/${PF}" \



[gentoo-commits] repo/gentoo:master commit in: app-emacs/wanderlust/

2016-06-22 Thread Ulrich Müller
commit: af94b20c79603d83b0663aead300fd27f7eb5b9d
Author: Ulrich Müller  gentoo  org>
AuthorDate: Wed Jun 22 17:36:29 2016 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Wed Jun 22 17:36:29 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af94b20c

app-emacs/wanderlust: Migrate from LINGUAS to L10N.

Package-Manager: portage-2.3.0_rc1

 app-emacs/wanderlust/wanderlust-2.14.0-r6.ebuild| 8 
 app-emacs/wanderlust/wanderlust-2.15.9_p20130619.ebuild | 8 
 2 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/app-emacs/wanderlust/wanderlust-2.14.0-r6.ebuild 
b/app-emacs/wanderlust/wanderlust-2.14.0-r6.ebuild
index f9e239b..9a44de1 100644
--- a/app-emacs/wanderlust/wanderlust-2.14.0-r6.ebuild
+++ b/app-emacs/wanderlust/wanderlust-2.14.0-r6.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$
 
@@ -16,7 +16,7 @@ SRC_URI="ftp://ftp.gohome.org/wl/stable/${MY_P}.tar.gz
 LICENSE="GPL-2+"
 SLOT="0"
 KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
-IUSE="bbdb ssl linguas_ja"
+IUSE="bbdb ssl l10n_ja"
 
 DEPEND=">=app-emacs/apel-10.6
virtual/emacs-flim
@@ -32,7 +32,7 @@ SITEFILE="50${PN}-gentoo.el"
 
 src_configure() {
local lang="\"en\""
-   use linguas_ja && lang="${lang} \"ja\""
+   use l10n_ja && lang="${lang} \"ja\""
echo "(setq wl-info-lang '(${lang}) wl-news-lang '(${lang}))" >>WL-CFG
use ssl && echo "(setq wl-install-utils t)" >>WL-CFG
 }
@@ -55,7 +55,7 @@ src_install() {
doinfo doc/wl*.info
dodoc BUGS ChangeLog INSTALL NEWS README
 
-   if use linguas_ja; then
+   if use l10n_ja; then
insinto "${SITEETC}/wl/samples/ja"
doins samples/ja/*
dodoc BUGS.ja INSTALL.ja NEWS.ja README.ja

diff --git a/app-emacs/wanderlust/wanderlust-2.15.9_p20130619.ebuild 
b/app-emacs/wanderlust/wanderlust-2.15.9_p20130619.ebuild
index a84931d..f1ee1ab 100644
--- a/app-emacs/wanderlust/wanderlust-2.15.9_p20130619.ebuild
+++ b/app-emacs/wanderlust/wanderlust-2.15.9_p20130619.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$
 
@@ -14,7 +14,7 @@ SRC_URI="https://dev.gentoo.org/~ulm/distfiles/${P}.tar.xz";
 LICENSE="GPL-2+"
 SLOT="0"
 KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
-IUSE="bbdb ssl linguas_ja"
+IUSE="bbdb ssl l10n_ja"
 
 DEPEND=">=app-emacs/apel-10.6
virtual/emacs-flim
@@ -27,7 +27,7 @@ SITEFILE="50${PN}-gentoo.el"
 
 src_configure() {
local lang="\"en\""
-   use linguas_ja && lang="${lang} \"ja\""
+   use l10n_ja && lang="${lang} \"ja\""
echo "(setq wl-info-lang '(${lang}) wl-news-lang '(${lang}))" >>WL-CFG
use ssl && echo "(setq wl-install-utils t)" >>WL-CFG
 }
@@ -50,7 +50,7 @@ src_install() {
doinfo doc/wl*.info
dodoc BUGS ChangeLog INSTALL NEWS README.md
 
-   if use linguas_ja; then
+   if use l10n_ja; then
insinto "${SITEETC}/wl/samples/ja"
doins samples/ja/*
dodoc BUGS.ja INSTALL.ja NEWS.ja README.ja



[gentoo-commits] repo/gentoo:master commit in: app-emacs/auto-complete/

2016-06-22 Thread Ulrich Müller
commit: 962db2705256b744e939e47002b11047a4d72b43
Author: Ulrich Müller  gentoo  org>
AuthorDate: Wed Jun 22 17:23:40 2016 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Wed Jun 22 17:23:40 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=962db270

app-emacs/auto-complete: Migrate from LINGUAS to L10N.

Package-Manager: portage-2.3.0_rc1

 app-emacs/auto-complete/auto-complete-1.3.1.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/app-emacs/auto-complete/auto-complete-1.3.1.ebuild 
b/app-emacs/auto-complete/auto-complete-1.3.1.ebuild
index d8d7312..f613ef8 100644
--- a/app-emacs/auto-complete/auto-complete-1.3.1.ebuild
+++ b/app-emacs/auto-complete/auto-complete-1.3.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -14,7 +14,7 @@ SRC_URI="http://cx4a.org/pub/${PN}/${P}.tar.bz2";
 LICENSE="GPL-3+ FDL-1.1+"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="linguas_ja"
+IUSE="l10n_ja"
 
 SITEFILE="50${PN}-gentoo.el"
 
@@ -28,7 +28,7 @@ src_install() {
dodoc README.txt TODO.txt etc/test.txt
cd doc
dodoc index.txt manual.txt demo.txt changes.txt *.png
-   if use linguas_ja; then
+   if use l10n_ja; then
dodoc index.ja.txt manual.ja.txt changes.ja.txt
fi
 }



[gentoo-commits] repo/gentoo:master commit in: app-emacs/semi/

2016-06-22 Thread Ulrich Müller
commit: 65dd6c03ba06876a25bc9ea57475afaf53512a12
Author: Ulrich Müller  gentoo  org>
AuthorDate: Wed Jun 22 17:35:32 2016 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Wed Jun 22 17:35:32 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65dd6c03

app-emacs/semi: Migrate from LINGUAS to L10N.

Package-Manager: portage-2.3.0_rc1

 app-emacs/semi/semi-1.14.6-r2.ebuild | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/app-emacs/semi/semi-1.14.6-r2.ebuild 
b/app-emacs/semi/semi-1.14.6-r2.ebuild
index c5be55d..5794f6f 100644
--- a/app-emacs/semi/semi-1.14.6-r2.ebuild
+++ b/app-emacs/semi/semi-1.14.6-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -13,7 +13,7 @@ 
SRC_URI="http://git.chise.org/elisp/dist/${PN}/${P%.*}-for-flim-1.14/${P}.tar.gz
 LICENSE="GPL-2+"
 SLOT="0"
 KEYWORDS="alpha amd64 ppc sparc x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x86-macos"
-IUSE="linguas_ja"
+IUSE="l10n_ja"
 
 DEPEND=">=app-emacs/apel-10.6
virtual/emacs-flim"
@@ -29,7 +29,7 @@ src_compile() {
 
${EMACS} ${EMACSFLAGS} --visit mime-ui-en.texi -f texi2info \
|| die "texi2info failed"
-   if use linguas_ja; then
+   if use l10n_ja; then
${EMACS} ${EMACSFLAGS} \
--eval "(set-default-coding-systems 'iso-2022-jp)" \
--visit mime-ui-ja.texi -f texi2info \
@@ -46,7 +46,7 @@ src_install() {
 
doinfo mime-ui-en.info
dodoc README.en ChangeLog VERSION NEWS
-   if use linguas_ja; then
+   if use l10n_ja; then
doinfo mime-ui-ja.info
dodoc README.ja
fi



[gentoo-commits] repo/gentoo:master commit in: app-emacs/emacs-w3m/

2016-06-22 Thread Ulrich Müller
commit: d339d7a0dd7cba497e2d1fac6fb1e6a710a5e1de
Author: Ulrich Müller  gentoo  org>
AuthorDate: Wed Jun 22 17:29:36 2016 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Wed Jun 22 17:29:36 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d339d7a0

app-emacs/emacs-w3m: Migrate from LINGUAS to L10N.

Package-Manager: portage-2.3.0_rc1

 app-emacs/emacs-w3m/emacs-w3m-1.4.513_pre20130204.ebuild | 10 +-
 app-emacs/emacs-w3m/emacs-w3m-1.4.528_pre20140213.ebuild | 10 +-
 2 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/app-emacs/emacs-w3m/emacs-w3m-1.4.513_pre20130204.ebuild 
b/app-emacs/emacs-w3m/emacs-w3m-1.4.513_pre20130204.ebuild
index 730e25f..b8f0c6a 100644
--- a/app-emacs/emacs-w3m/emacs-w3m-1.4.513_pre20130204.ebuild
+++ b/app-emacs/emacs-w3m/emacs-w3m-1.4.513_pre20130204.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -13,7 +13,7 @@ SRC_URI="mirror://gentoo/${P}.tar.xz"
 LICENSE="GPL-2+"
 SLOT="0"
 KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
-IUSE="linguas_ja"
+IUSE="l10n_ja"
 
 DEPEND="virtual/w3m"
 RDEPEND="${DEPEND}"
@@ -30,18 +30,18 @@ src_configure() {
 }
 
 src_compile() {
-   emake all-en $(use linguas_ja && echo all-ja)
+   emake all-en $(use l10n_ja && echo all-ja)
 }
 
 src_install() {
emake lispdir="${ED}${SITELISP}/${PN}" \
infodir="${ED}/usr/share/info" \
ICONDIR="${ED}${SITEETC}/${PN}" \
-   install-en $(use linguas_ja && echo install-ja) install-icons
+   install-en $(use l10n_ja && echo install-ja) install-icons
 
elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die
dodoc ChangeLog* NEWS README
-   use linguas_ja && dodoc BUGS.ja NEWS.ja README.ja
+   use l10n_ja && dodoc BUGS.ja NEWS.ja README.ja
 }
 
 pkg_postinst() {

diff --git a/app-emacs/emacs-w3m/emacs-w3m-1.4.528_pre20140213.ebuild 
b/app-emacs/emacs-w3m/emacs-w3m-1.4.528_pre20140213.ebuild
index 0b27253..9c8572a 100644
--- a/app-emacs/emacs-w3m/emacs-w3m-1.4.528_pre20140213.ebuild
+++ b/app-emacs/emacs-w3m/emacs-w3m-1.4.528_pre20140213.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -13,7 +13,7 @@ SRC_URI="https://dev.gentoo.org/~ulm/distfiles/${P}.tar.xz";
 LICENSE="GPL-2+"
 SLOT="0"
 KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
-IUSE="linguas_ja"
+IUSE="l10n_ja"
 
 DEPEND="virtual/w3m"
 RDEPEND="${DEPEND}"
@@ -30,18 +30,18 @@ src_configure() {
 }
 
 src_compile() {
-   emake all-en $(use linguas_ja && echo all-ja)
+   emake all-en $(use l10n_ja && echo all-ja)
 }
 
 src_install() {
emake lispdir="${ED}${SITELISP}/${PN}" \
infodir="${ED}/usr/share/info" \
ICONDIR="${ED}${SITEETC}/${PN}" \
-   install-en $(use linguas_ja && echo install-ja) install-icons
+   install-en $(use l10n_ja && echo install-ja) install-icons
 
elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die
dodoc ChangeLog* NEWS README
-   use linguas_ja && dodoc BUGS.ja NEWS.ja README.ja
+   use l10n_ja && dodoc BUGS.ja NEWS.ja README.ja
 
DOC_CONTENTS="If you want to use the shimbun library, please emerge
app-emacs/apel and app-emacs/flim."



[gentoo-commits] repo/gentoo:master commit in: app-emacs/mew/

2016-06-22 Thread Ulrich Müller
commit: 8906763d276f30180c9d7d3d11d54c1eaf95878b
Author: Ulrich Müller  gentoo  org>
AuthorDate: Wed Jun 22 17:33:28 2016 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Wed Jun 22 17:33:28 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8906763d

app-emacs/mew: Migrate from LINGUAS to L10N.

Package-Manager: portage-2.3.0_rc1

 app-emacs/mew/mew-6.5.ebuild | 8 
 app-emacs/mew/mew-6.6.ebuild | 8 
 2 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/app-emacs/mew/mew-6.5.ebuild b/app-emacs/mew/mew-6.5.ebuild
index f35b547..58bf827 100644
--- a/app-emacs/mew/mew-6.5.ebuild
+++ b/app-emacs/mew/mew-6.5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -13,7 +13,7 @@ SRC_URI="http://www.mew.org/Release/${P}.tar.gz";
 LICENSE="BSD"
 SLOT="0"
 KEYWORDS="amd64 ppc x86"
-IUSE="ssl linguas_ja"
+IUSE="ssl l10n_ja"
 RESTRICT="test"
 
 DEPEND="sys-libs/zlib"
@@ -30,13 +30,13 @@ src_configure() {
 
 src_compile() {
emake
-   use linguas_ja && emake jinfo
+   use l10n_ja && emake jinfo
rm -f info/*~   # remove spurious backup files
 }
 
 src_install() {
emake DESTDIR="${D}" install
-   use linguas_ja && emake DESTDIR="${D}" install-jinfo
+   use l10n_ja && emake DESTDIR="${D}" install-jinfo
 
elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die
dodoc 00api 00changes* 00diff 00readme dot.*

diff --git a/app-emacs/mew/mew-6.6.ebuild b/app-emacs/mew/mew-6.6.ebuild
index 0d22c63..d3caebc 100644
--- a/app-emacs/mew/mew-6.6.ebuild
+++ b/app-emacs/mew/mew-6.6.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -13,7 +13,7 @@ SRC_URI="http://www.mew.org/Release/${P}.tar.gz";
 LICENSE="BSD"
 SLOT="0"
 KEYWORDS="amd64 ppc x86"
-IUSE="ssl linguas_ja"
+IUSE="ssl l10n_ja"
 RESTRICT="test"
 
 DEPEND="sys-libs/zlib"
@@ -30,13 +30,13 @@ src_configure() {
 
 src_compile() {
emake
-   use linguas_ja && emake jinfo
+   use l10n_ja && emake jinfo
rm -f info/*~   # remove spurious backup files
 }
 
 src_install() {
emake DESTDIR="${D}" install
-   use linguas_ja && emake DESTDIR="${D}" install-jinfo
+   use l10n_ja && emake DESTDIR="${D}" install-jinfo
elisp-site-file-install "${FILESDIR}/${SITEFILE}"
dodoc 00api 00changes* 00diff 00readme dot.*
 



[gentoo-commits] repo/gentoo:master commit in: app-emacs/riece/

2016-06-22 Thread Ulrich Müller
commit: 86fb94132ac77613ec3cbbe7bfab021b39fc2a0b
Author: Ulrich Müller  gentoo  org>
AuthorDate: Wed Jun 22 17:34:40 2016 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Wed Jun 22 17:34:40 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86fb9413

app-emacs/riece: Migrate from LINGUAS to L10N.

Package-Manager: portage-2.3.0_rc1

 app-emacs/riece/riece-8.0.0.ebuild | 6 +++---
 app-emacs/riece/riece-9.0.0.ebuild | 6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/app-emacs/riece/riece-8.0.0.ebuild 
b/app-emacs/riece/riece-8.0.0.ebuild
index e4a016c..5d277f0 100644
--- a/app-emacs/riece/riece-8.0.0.ebuild
+++ b/app-emacs/riece/riece-8.0.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -13,7 +13,7 @@ 
SRC_URI="http://download.savannah.gnu.org/releases/riece/${P}.tar.gz";
 LICENSE="GPL-2+ FDL-1.1+"
 SLOT="0"
 KEYWORDS="amd64 ppc ppc64 x86"
-IUSE="linguas_ja"
+IUSE="l10n_ja"
 RESTRICT="test"
 
 SITEFILE="50${PN}-gentoo.el"
@@ -33,7 +33,7 @@ src_install() {
elisp-site-file-install "${FILESDIR}/${SITEFILE}"
dodoc AUTHORS NEWS README doc/HACKING lisp/ChangeLog*
 
-   if use linguas_ja; then
+   if use l10n_ja; then
dodoc NEWS.ja README.ja doc/HACKING.ja
else
rm -f "${ED}"/usr/share/info/riece-ja.info*

diff --git a/app-emacs/riece/riece-9.0.0.ebuild 
b/app-emacs/riece/riece-9.0.0.ebuild
index 961a2f7..f9313c2 100644
--- a/app-emacs/riece/riece-9.0.0.ebuild
+++ b/app-emacs/riece/riece-9.0.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -13,7 +13,7 @@ 
SRC_URI="http://download.savannah.gnu.org/releases/riece/${P}.tar.gz";
 LICENSE="GPL-2+ FDL-1.1+"
 SLOT="0"
 KEYWORDS="amd64 ppc ppc64 x86"
-IUSE="linguas_ja"
+IUSE="l10n_ja"
 RESTRICT="test"
 
 SITEFILE="50${PN}-gentoo.el"
@@ -33,7 +33,7 @@ src_install() {
elisp-site-file-install "${FILESDIR}/${SITEFILE}"
dodoc AUTHORS NEWS README doc/HACKING lisp/ChangeLog*
 
-   if use linguas_ja; then
+   if use l10n_ja; then
dodoc NEWS.ja README.ja doc/HACKING.ja
else
rm -f "${ED}"/usr/share/info/riece-ja.info*



[gentoo-commits] repo/gentoo:master commit in: app-emacs/lyskom-elisp-client/

2016-06-22 Thread Ulrich Müller
commit: 63d7e16cde1b60492b66c1635f281d859cf39171
Author: Ulrich Müller  gentoo  org>
AuthorDate: Wed Jun 22 17:31:55 2016 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Wed Jun 22 17:31:55 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63d7e16c

app-emacs/lyskom-elisp-client: Migrate from LINGUAS to L10N.

Package-Manager: portage-2.3.0_rc1

 .../lyskom-elisp-client/lyskom-elisp-client-0.48_p20131231.ebuild | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git 
a/app-emacs/lyskom-elisp-client/lyskom-elisp-client-0.48_p20131231.ebuild 
b/app-emacs/lyskom-elisp-client/lyskom-elisp-client-0.48_p20131231.ebuild
index c08ea53..c9850b3 100644
--- a/app-emacs/lyskom-elisp-client/lyskom-elisp-client-0.48_p20131231.ebuild
+++ b/app-emacs/lyskom-elisp-client/lyskom-elisp-client-0.48_p20131231.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -14,7 +14,7 @@ SRC_URI="https://dev.gentoo.org/~ulm/distfiles/${P}.tar.xz";
 LICENSE="GPL-2+"
 SLOT="0"
 KEYWORDS="amd64 sparc x86"
-IUSE="linguas_sv"
+IUSE="l10n_sv"
 
 S="${WORKDIR}/${PN}"
 SITEFILE="50${PN}-gentoo.el"
@@ -22,14 +22,14 @@ SITEFILE="50${PN}-gentoo.el"
 src_compile() {
emake -C src EMACS=emacs
# Info page is in Swedish only
-   use linguas_sv && emake -C doc elisp-client
+   use l10n_sv && emake -C doc elisp-client
 }
 
 src_install() {
elisp-install ${PN} src/lyskom.{el,elc}
elisp-site-file-install "${FILESDIR}/${SITEFILE}"
dodoc src/{ChangeLog*,README,TODO} doc/NEWS*
-   use linguas_sv && doinfo doc/elisp-client
+   use l10n_sv && doinfo doc/elisp-client
 
DOC_CONTENTS="If you prefer an English language environment, add the
following line to your ~/.emacs file:



[gentoo-commits] repo/gentoo:master commit in: app-emacs/yatex/

2016-06-22 Thread Ulrich Müller
commit: 21f26a0057e39b8723ecd5da9e8590a11868f118
Author: Ulrich Müller  gentoo  org>
AuthorDate: Wed Jun 22 17:37:26 2016 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Wed Jun 22 17:37:26 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21f26a00

app-emacs/yatex: Migrate from LINGUAS to L10N.

Package-Manager: portage-2.3.0_rc1

 app-emacs/yatex/yatex-1.76.ebuild | 8 
 app-emacs/yatex/yatex-1.77.ebuild | 8 
 2 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/app-emacs/yatex/yatex-1.76.ebuild 
b/app-emacs/yatex/yatex-1.76.ebuild
index 8d03ba4..91648dc 100644
--- a/app-emacs/yatex/yatex-1.76.ebuild
+++ b/app-emacs/yatex/yatex-1.76.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -13,7 +13,7 @@ SRC_URI="http://www.yatex.org/${P/-/}.tar.gz";
 KEYWORDS="amd64 ppc ~ppc64 x86"
 SLOT="0"
 LICENSE="YaTeX"
-IUSE="linguas_ja"
+IUSE="l10n_ja"
 
 S="${WORKDIR}/${P/-/}"
 ELISP_PATCHES="${PN}-1.76-gentoo.patch
@@ -27,7 +27,7 @@ src_compile() {
cd docs
makeinfo yatexe.tex yahtmle.tex || die
 
-   if use linguas_ja; then
+   if use l10n_ja; then
iconv -f WINDOWS-31J -t UTF-8 yatexj.tex >yatex-ja.texi || die
iconv -f WINDOWS-31J -t UTF-8 yahtmlj.tex >yahtml-ja.texi || die
makeinfo yatex-ja.texi yahtml-ja.texi || die
@@ -43,7 +43,7 @@ src_install() {
doinfo docs/yatex.info* docs/yahtml.info*
dodoc docs/*.eng
 
-   if use linguas_ja; then
+   if use l10n_ja; then
doins help/YATEXHLP.jp
doinfo docs/yatex-ja.info* docs/yahtml-ja.info*
dodoc 00readme install docs/{htmlqa,qanda} docs/*.doc

diff --git a/app-emacs/yatex/yatex-1.77.ebuild 
b/app-emacs/yatex/yatex-1.77.ebuild
index 0687409..f683de2 100644
--- a/app-emacs/yatex/yatex-1.77.ebuild
+++ b/app-emacs/yatex/yatex-1.77.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -13,7 +13,7 @@ SRC_URI="http://www.yatex.org/${P/-/}.tar.gz";
 KEYWORDS="amd64 ppc ~ppc64 x86"
 SLOT="0"
 LICENSE="YaTeX"
-IUSE="linguas_ja"
+IUSE="l10n_ja"
 
 S="${WORKDIR}/${P/-/}"
 ELISP_PATCHES="${PN}-1.76-gentoo.patch
@@ -28,7 +28,7 @@ src_compile() {
cd docs
makeinfo yatexe.tex yahtmle.tex || die
 
-   if use linguas_ja; then
+   if use l10n_ja; then
iconv -f WINDOWS-31J -t UTF-8 yatexj.tex >yatex-ja.texi || die
iconv -f WINDOWS-31J -t UTF-8 yahtmlj.tex >yahtml-ja.texi || die
makeinfo yatex-ja.texi yahtml-ja.texi || die
@@ -44,7 +44,7 @@ src_install() {
doinfo docs/yatex.info* docs/yahtml.info*
dodoc docs/*.eng
 
-   if use linguas_ja; then
+   if use l10n_ja; then
doins help/YATEXHLP.jp
doinfo docs/yatex-ja.info* docs/yahtml-ja.info*
dodoc 00readme install docs/{htmlqa,qanda} docs/*.doc



[gentoo-commits] repo/gentoo:master commit in: app-emacs/cmail/

2016-06-22 Thread Ulrich Müller
commit: 611f4e431cba7467dd3eee76fa89e4eaa080f33b
Author: Ulrich Müller  gentoo  org>
AuthorDate: Wed Jun 22 17:26:12 2016 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Wed Jun 22 17:26:12 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=611f4e43

app-emacs/cmail: Migrate from LINGUAS to L10N.

Package-Manager: portage-2.3.0_rc1

 app-emacs/cmail/cmail-2.62-r1.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/app-emacs/cmail/cmail-2.62-r1.ebuild 
b/app-emacs/cmail/cmail-2.62-r1.ebuild
index f0e62c5..3fab2db 100644
--- a/app-emacs/cmail/cmail-2.62-r1.ebuild
+++ b/app-emacs/cmail/cmail-2.62-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge.jp/${PN}/2191/${P}.tar.gz"
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="amd64 ppc x86"
-IUSE="linguas_ja"
+IUSE="l10n_ja"
 
 RDEPEND="app-emacs/apel
virtual/emacs-flim
@@ -38,7 +38,7 @@ src_install() {
dodoc ChangeLog INTRO.en README.en sample.* \
doc/README.{POP,gnuspop3}.en doc/cmail-r2c.en.doc || die "dodoc 
failed"
 
-   if use linguas_ja; then
+   if use l10n_ja; then
dodoc README.ja RELNOTES.ja doc/FAQ \
doc/README.{FETCHMAIL,POP,bbdb,cmail-crypt,cvs-access} \
doc/README.{feedmail,folders,gnuspop3,imap4} \



[gentoo-commits] repo/gentoo:master commit in: app-emacs/emacs-wget/

2016-06-22 Thread Ulrich Müller
commit: 34d3b8ad86a3bea82b092fa1a474639d6ea256d6
Author: Ulrich Müller  gentoo  org>
AuthorDate: Wed Jun 22 17:30:53 2016 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Wed Jun 22 17:30:53 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34d3b8ad

app-emacs/emacs-wget: Migrate from LINGUAS to L10N.

Package-Manager: portage-2.3.0_rc1

 app-emacs/emacs-wget/emacs-wget-0.5.0-r1.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/app-emacs/emacs-wget/emacs-wget-0.5.0-r1.ebuild 
b/app-emacs/emacs-wget/emacs-wget-0.5.0-r1.ebuild
index d01a43d..8c736c2 100644
--- a/app-emacs/emacs-wget/emacs-wget-0.5.0-r1.ebuild
+++ b/app-emacs/emacs-wget/emacs-wget-0.5.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -13,7 +13,7 @@ 
SRC_URI="http://pop-club.hp.infoseek.co.jp/emacs/emacs-wget/${P}.tar.gz";
 LICENSE="GPL-2+"
 SLOT="0"
 KEYWORDS="alpha amd64 ppc ppc64 x86"
-IUSE="linguas_ja"
+IUSE="l10n_ja"
 
 RDEPEND=">=net-misc/wget-1.8.2"
 
@@ -23,5 +23,5 @@ SITEFILE="50${PN}-gentoo.el"
 src_install() {
elisp_src_install
dodoc ChangeLog README USAGE
-   use linguas_ja && dodoc README.ja USAGE.ja
+   use l10n_ja && dodoc README.ja USAGE.ja
 }



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

2016-06-22 Thread Mike Gilbert
commit: 58efd4cee3e7ebb8a0683b186233ad8bb482cbd9
Author: Mike Gilbert  gentoo  org>
AuthorDate: Wed Jun 22 16:30:35 2016 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Wed Jun 22 16:30:35 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58efd4ce

Revert "dev-python/bsddb3: move || dep to DEPEND only"

This reverts commit 479faabd1ec6b0cb64d3b18dc9b8eca274f5d9b6.

 dev-python/bsddb3/bsddb3-6.2.1.ebuild | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/dev-python/bsddb3/bsddb3-6.2.1.ebuild 
b/dev-python/bsddb3/bsddb3-6.2.1.ebuild
index 4aa932f..f4bb36c 100644
--- a/dev-python/bsddb3/bsddb3-6.2.1.ebuild
+++ b/dev-python/bsddb3/bsddb3-6.2.1.ebuild
@@ -19,9 +19,6 @@ KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc 
~x86 ~amd64-linux ~x
 
 RDEPEND="


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

2016-06-22 Thread Mike Gilbert
commit: 9baa2700b6a771593a404eec1eafcecb9e0c5af7
Author: Mike Gilbert  gentoo  org>
AuthorDate: Wed Jun 22 16:25:13 2016 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Wed Jun 22 16:26:37 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9baa2700

www-client/chromium: stable channel bump (51.0.2704.103)

Package-Manager: portage-2.3.0_rc1_p27

 www-client/chromium/Manifest  |   1 +
 www-client/chromium/chromium-51.0.2704.103.ebuild | 696 ++
 2 files changed, 697 insertions(+)

diff --git a/www-client/chromium/Manifest b/www-client/chromium/Manifest
index 129b3f5..52d152e 100644
--- a/www-client/chromium/Manifest
+++ b/www-client/chromium/Manifest
@@ -1,4 +1,5 @@
 DIST chromium-50.0.2661.102.tar.xz 531505652 SHA256 
12135ef890c2bd13b653a06e2a44e8f251a65fe9e91404c792d27e346c5d57c6 SHA512 
277311b77df7331b996a1b08c2591c7407a57ba4ee9c93d82eaea63db7ffd1551647e04c64c5e460c58862ff2363d59a674043a41d6b7f05ff4b2b85f18c7e7e
 WHIRLPOOL 
183c6e8dd0e195bc027a685c4064a0aaceaf880fae62b89b664a4cd1e1aedf9510961ce7b6c3e515f47222545bc695a5876a6ed4c8580ce599d1139cb3fd20f7
+DIST chromium-51.0.2704.103.tar.xz 448638748 SHA256 
76735b6dc4100e84c4dbcf5b2336bf8a2eb9cc6402c31e8865878a086971d72b SHA512 
04f1e0dfc2d94094064ea47c5e5e8c7b079001d48a4eb5d86873e36ed6f6527c2e16fe8232d3126f3fd7a758a8e306030ef56803b474a88e01446190d55f585a
 WHIRLPOOL 
90b28e1bfec9234de6f7a5a8e1343818ce8cc6b8aaca1c70b03a97a9b797370b745c593089e9c2088ca4829be897048f8bec104483eeafc15a9eabee025fca5a
 DIST chromium-51.0.2704.63.tar.xz 448628724 SHA256 
b243e46e0ebaf8f60d1c37a0d99f1fdd80e1597667be4776a1862bb004e4eee9 SHA512 
d85b6adcf2be5082ec8dc51f62849b3a2d84104d225188b7c5441cd3f9bb1e639b8d9b8cfb069b4a42d2f44128111649982fd20ca99b4f4ed5208c2c2c1a9560
 WHIRLPOOL 
0b3047c1c38386dbc20ef8fd6992e3c1cfc4e92986f5cbbd3e640671763ff5023427d0d8b5a6a6f6604aaeea4e2fa57e4b3f88d8e47e20684e5c774e8407c8fb
 DIST chromium-52.0.2743.19.tar.xz 457854724 SHA256 
e4149f479bea32142214b07b14912a011278917077e97819fb17fa83540eac16 SHA512 
d29638959b8f36e70ce60bffc65b58878e5d607959062847b625d9d6acccfba14e96fbc0cd757b28283dd90bbc1ab336f8da65d4564df26bd86e260aa92cfd7c
 WHIRLPOOL 
f48864c796f6a98731de5253daf3d281d6613ada18528358dba9c1de9e86cc14a42f6bd60a5c05c3ddfb826a6eb371c1e5353b9b8e206b24d379225bb439fdbd
 DIST chromium-52.0.2743.33.tar.xz 458015816 SHA256 
3201db69bb1dde8b51c1f55f86a7f9374df4d15d8577eb7d2cfcd8544f26be2a SHA512 
1e736a9d4c2db5ec285bf9fc73d5a67740a34cfa44f760a2939329513b825e2935a8443c7203883a712a13844c29694cc20a09ac3e901bb9436e0b4c1b74e437
 WHIRLPOOL 
e5a428cb2ed6b57fcffca7efb97634507a1ddba2e625bd271c5dc37619f917716469c7fccb3062a1850268078aef9ee9bd41d55408cc07eba7bb3c49b3f3e97e

diff --git a/www-client/chromium/chromium-51.0.2704.103.ebuild 
b/www-client/chromium/chromium-51.0.2704.103.ebuild
new file mode 100644
index 000..20615d3
--- /dev/null
+++ b/www-client/chromium/chromium-51.0.2704.103.ebuild
@@ -0,0 +1,696 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+PYTHON_COMPAT=( python2_7 )
+
+CHROMIUM_LANGS="am ar bg bn ca cs da de el en_GB es es_419 et fa fi fil fr gu 
he
+   hi hr hu id it ja kn ko lt lv ml mr ms nb nl pl pt_BR pt_PT ro ru sk sl 
sr
+   sv sw ta te th tr uk vi zh_CN zh_TW"
+
+inherit check-reqs chromium eutils flag-o-matic multilib multiprocessing 
pax-utils \
+   portability python-any-r1 readme.gentoo-r1 toolchain-funcs versionator 
virtualx
+
+DESCRIPTION="Open-source version of Google Chrome web browser"
+HOMEPAGE="http://chromium.org/";
+SRC_URI="https://commondatastorage.googleapis.com/chromium-browser-official/${P}.tar.xz";
+
+LICENSE="BSD hotwording? ( no-source-code )"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+IUSE="cups gn gnome gnome-keyring gtk3 +hangouts hidpi hotwording kerberos 
neon pic +proprietary-codecs pulseaudio selinux +system-ffmpeg +tcmalloc 
widevine"
+RESTRICT="!system-ffmpeg? ( proprietary-codecs? ( bindist ) )"
+
+# TODO: bootstrapped gn binary hangs when using tcmalloc with portage's 
sandbox.
+REQUIRED_USE="gn? ( kerberos !system-ffmpeg !tcmalloc )"
+
+# Native Client binaries are compiled with different set of flags, bug #452066.
+QA_FLAGS_IGNORED=".*\.nexe"
+
+# Native Client binaries may be stripped by the build system, which uses the
+# right tools for it, bug #469144 .
+QA_PRESTRIPPED=".*\.nexe"
+
+RDEPEND="
+   app-arch/bzip2:=
+   cups? ( >=net-print/cups-1.3.11:= )
+   >=dev-libs/elfutils-0.149
+   dev-libs/expat:=
+   dev-libs/glib:=
+   >=dev-libs/jsoncpp-0.5.0-r1:=
+   dev-libs/nspr:=
+   >=dev-libs/nss-3.14.3:=
+   gnome? ( >=gnome-base/gconf-2.24.0:= )
+   gnome-keyring? ( >=gnome-base/libgnome-keyring-3.12:= )
+   >=media-libs/alsa-lib-1.0.19:=
+   media-libs/fontconfig:=
+   media-libs/freetype:=
+   media-libs/libexif:=
+   media-libs/speex:=
+   pulseaudio? ( media

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

2016-06-22 Thread Mike Gilbert
commit: 479faabd1ec6b0cb64d3b18dc9b8eca274f5d9b6
Author: Mike Gilbert  gentoo  org>
AuthorDate: Wed Jun 22 12:28:13 2016 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Wed Jun 22 16:26:37 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=479faabd

dev-python/bsddb3: move || dep to DEPEND only

Package-Manager: portage-2.3.0_rc1_p27

 dev-python/bsddb3/bsddb3-6.2.1.ebuild | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/dev-python/bsddb3/bsddb3-6.2.1.ebuild 
b/dev-python/bsddb3/bsddb3-6.2.1.ebuild
index f4bb36c..4aa932f 100644
--- a/dev-python/bsddb3/bsddb3-6.2.1.ebuild
+++ b/dev-python/bsddb3/bsddb3-6.2.1.ebuild
@@ -19,6 +19,9 @@ KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc 
~x86 ~amd64-linux ~x
 
 RDEPEND="


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

2016-06-22 Thread Mike Gilbert
commit: f86636df0c7b17d7c737af4c8ce3dfe40dd950b5
Author: Mike Gilbert  gentoo  org>
AuthorDate: Wed Jun 22 16:26:08 2016 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Wed Jun 22 16:26:37 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f86636df

www-client/chromium: remove old

Package-Manager: portage-2.3.0_rc1_p27

 www-client/chromium/Manifest  |   1 -
 www-client/chromium/chromium-50.0.2661.102.ebuild | 695 --
 2 files changed, 696 deletions(-)

diff --git a/www-client/chromium/Manifest b/www-client/chromium/Manifest
index 52d152e..c7044fe 100644
--- a/www-client/chromium/Manifest
+++ b/www-client/chromium/Manifest
@@ -1,4 +1,3 @@
-DIST chromium-50.0.2661.102.tar.xz 531505652 SHA256 
12135ef890c2bd13b653a06e2a44e8f251a65fe9e91404c792d27e346c5d57c6 SHA512 
277311b77df7331b996a1b08c2591c7407a57ba4ee9c93d82eaea63db7ffd1551647e04c64c5e460c58862ff2363d59a674043a41d6b7f05ff4b2b85f18c7e7e
 WHIRLPOOL 
183c6e8dd0e195bc027a685c4064a0aaceaf880fae62b89b664a4cd1e1aedf9510961ce7b6c3e515f47222545bc695a5876a6ed4c8580ce599d1139cb3fd20f7
 DIST chromium-51.0.2704.103.tar.xz 448638748 SHA256 
76735b6dc4100e84c4dbcf5b2336bf8a2eb9cc6402c31e8865878a086971d72b SHA512 
04f1e0dfc2d94094064ea47c5e5e8c7b079001d48a4eb5d86873e36ed6f6527c2e16fe8232d3126f3fd7a758a8e306030ef56803b474a88e01446190d55f585a
 WHIRLPOOL 
90b28e1bfec9234de6f7a5a8e1343818ce8cc6b8aaca1c70b03a97a9b797370b745c593089e9c2088ca4829be897048f8bec104483eeafc15a9eabee025fca5a
 DIST chromium-51.0.2704.63.tar.xz 448628724 SHA256 
b243e46e0ebaf8f60d1c37a0d99f1fdd80e1597667be4776a1862bb004e4eee9 SHA512 
d85b6adcf2be5082ec8dc51f62849b3a2d84104d225188b7c5441cd3f9bb1e639b8d9b8cfb069b4a42d2f44128111649982fd20ca99b4f4ed5208c2c2c1a9560
 WHIRLPOOL 
0b3047c1c38386dbc20ef8fd6992e3c1cfc4e92986f5cbbd3e640671763ff5023427d0d8b5a6a6f6604aaeea4e2fa57e4b3f88d8e47e20684e5c774e8407c8fb
 DIST chromium-52.0.2743.19.tar.xz 457854724 SHA256 
e4149f479bea32142214b07b14912a011278917077e97819fb17fa83540eac16 SHA512 
d29638959b8f36e70ce60bffc65b58878e5d607959062847b625d9d6acccfba14e96fbc0cd757b28283dd90bbc1ab336f8da65d4564df26bd86e260aa92cfd7c
 WHIRLPOOL 
f48864c796f6a98731de5253daf3d281d6613ada18528358dba9c1de9e86cc14a42f6bd60a5c05c3ddfb826a6eb371c1e5353b9b8e206b24d379225bb439fdbd

diff --git a/www-client/chromium/chromium-50.0.2661.102.ebuild 
b/www-client/chromium/chromium-50.0.2661.102.ebuild
deleted file mode 100644
index 81fbc7a..000
--- a/www-client/chromium/chromium-50.0.2661.102.ebuild
+++ /dev/null
@@ -1,695 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-PYTHON_COMPAT=( python2_7 )
-
-CHROMIUM_LANGS="am ar bg bn ca cs da de el en_GB es es_419 et fa fi fil fr gu 
he
-   hi hr hu id it ja kn ko lt lv ml mr ms nb nl pl pt_BR pt_PT ro ru sk sl 
sr
-   sv sw ta te th tr uk vi zh_CN zh_TW"
-
-inherit check-reqs chromium eutils flag-o-matic multilib multiprocessing 
pax-utils \
-   portability python-any-r1 readme.gentoo toolchain-funcs versionator 
virtualx
-
-DESCRIPTION="Open-source version of Google Chrome web browser"
-HOMEPAGE="http://chromium.org/";
-SRC_URI="https://commondatastorage.googleapis.com/chromium-browser-official/${P}.tar.xz";
-
-LICENSE="BSD hotwording? ( no-source-code )"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 x86"
-IUSE="cups gn gnome gnome-keyring gtk3 +hangouts hidpi hotwording kerberos 
neon pic +proprietary-codecs pulseaudio selinux +system-ffmpeg +tcmalloc 
widevine"
-RESTRICT="!system-ffmpeg? ( proprietary-codecs? ( bindist ) )"
-
-REQUIRED_USE="gn? ( kerberos !system-ffmpeg )"
-
-# Native Client binaries are compiled with different set of flags, bug #452066.
-QA_FLAGS_IGNORED=".*\.nexe"
-
-# Native Client binaries may be stripped by the build system, which uses the
-# right tools for it, bug #469144 .
-QA_PRESTRIPPED=".*\.nexe"
-
-RDEPEND="
-   app-arch/bzip2:=
-   cups? ( >=net-print/cups-1.3.11:= )
-   >=dev-libs/elfutils-0.149
-   dev-libs/expat:=
-   dev-libs/glib:=
-   >=dev-libs/jsoncpp-0.5.0-r1:=
-   dev-libs/nspr:=
-   >=dev-libs/nss-3.14.3:=
-   gnome? ( >=gnome-base/gconf-2.24.0:= )
-   gnome-keyring? ( >=gnome-base/libgnome-keyring-3.12:= )
-   >=media-libs/alsa-lib-1.0.19:=
-   media-libs/fontconfig:=
-   media-libs/freetype:=
-   media-libs/libexif:=
-   media-libs/speex:=
-   pulseaudio? ( media-sound/pulseaudio:= )
-   system-ffmpeg? ( >=media-video/ffmpeg-2.7.2:= )
-   sys-apps/dbus:=
-   sys-apps/pciutils:=
-   >=sys-libs/libcap-2.22:=
-   virtual/udev
-   x11-libs/cairo:=
-   x11-libs/gdk-pixbuf:=
-   gtk3? ( x11-libs/gtk+:3= )
-   !gtk3? ( x11-libs/gtk+:2= )
-   x11-libs/libdrm
-   x11-libs/libX11:=
-   x11-libs/libXcomposite:=
-   x11-libs/libXcursor:=
-   x11-libs/libXdamage:=
-   x11-libs/libXext:=
-   x11-libs/libXfixes:=
-  

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

2016-06-22 Thread Martin Mokrejs
commit: 194ebd83e325f228abacc2f5cff6c9dc7fef5dff
Author: Martin Mokrejš  fold  natur  cuni  cz>
AuthorDate: Wed Jun 22 15:23:51 2016 +
Commit: Martin Mokrejs  fold  natur  cuni  cz>
CommitDate: Wed Jun 22 15:23:51 2016 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=194ebd83

sci-biology/BBmap: version bump

Package-Manager: portage-2.2.28

 sci-biology/BBmap/BBmap-36.02.ebuild | 43 
 1 file changed, 43 insertions(+)

diff --git a/sci-biology/BBmap/BBmap-36.02.ebuild 
b/sci-biology/BBmap/BBmap-36.02.ebuild
new file mode 100644
index 000..fa463a3
--- /dev/null
+++ b/sci-biology/BBmap/BBmap-36.02.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit java-pkg-2 java-ant-2
+
+DESCRIPTION="Short read aligner, K-mer-based error-correct and normalize, 
FASTA/Q tool"
+HOMEPAGE="http://sourceforge.net/projects/bbmap/";
+SRC_URI="http://sourceforge.net/projects/bbmap/files/BBMap_"${PV}".tar.gz";
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+DEPEND="
+   sys-cluster/openmpi[java]
+   >=virtual/jdk-1.7:*
+   dev-java/ant-core"
+RDEPEND="${DEPEND}
+   >=virtual/jre-1.7:*"
+
+S="${WORKDIR}"/bbmap
+
+src_prepare(){
+   # fix the line in build.xml to point to mpi.jar location
+   # 
+   # see bug #542700
+   sed -e 
's#/usr/common/usg/hpc/openmpi/gnu4.6/sge/1.8.1/ib_2.1-1.0.0/lib/mpi.jar#/usr/share/openmpi/lib/mpi.jar#'
 -i build.xml
+   sed -e 's#compiler="${jcompiler}" ##' -i build.xml
+}
+
+src_compile(){
+   ant dist || die
+}
+
+src_install(){
+   dobin *.sh
+   dodoc docs/readme.txt
+   java-pkg_dojar dist/lib/BBTools.jar
+}



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

2016-06-22 Thread Martin Mokrejs
commit: 8e861cf6c87b73b16c6a3526e4388d9c8931f54f
Author: Martin Mokrejš  fold  natur  cuni  cz>
AuthorDate: Wed Jun 22 14:28:51 2016 +
Commit: Martin Mokrejs  fold  natur  cuni  cz>
CommitDate: Wed Jun 22 14:28:51 2016 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=8e861cf6

sci-biology/grappa: prevent file collision, have emailed upstream now as well

Package-Manager: portage-2.2.28

 sci-biology/grappa/grappa-2.0.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/sci-biology/grappa/grappa-2.0.ebuild 
b/sci-biology/grappa/grappa-2.0.ebuild
index cf0e06e..b07fb04 100644
--- a/sci-biology/grappa/grappa-2.0.ebuild
+++ b/sci-biology/grappa/grappa-2.0.ebuild
@@ -23,6 +23,7 @@ src_prepare() {
 src_install() {
dobin grappa
dosym grappa /usr/bin/invdist
-   dosym grappa /usr/bin/distmat
+   # avoid file collision with emboss and rename distmat to distmat_grappa
+   dosym grappa /usr/bin/distmat_grappa
dodoc README
 }



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

2016-06-22 Thread Martin Mokrejs
commit: 678475e0a889fd123f78d23beadf8d5af4c46e32
Author: Martin Mokrejš  fold  natur  cuni  cz>
AuthorDate: Wed Jun 22 14:12:50 2016 +
Commit: Martin Mokrejs  fold  natur  cuni  cz>
CommitDate: Wed Jun 22 14:12:50 2016 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=678475e0

sci-biology/prokka: fix logical OR in a dependency

Package-Manager: portage-2.2.28

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

diff --git a/sci-biology/prokka/prokka-1.11.ebuild 
b/sci-biology/prokka/prokka-1.11.ebuild
index 7b16d88..5a5baca 100644
--- a/sci-biology/prokka/prokka-1.11.ebuild
+++ b/sci-biology/prokka/prokka-1.11.ebuild
@@ -19,7 +19,7 @@ RDEPEND="${DEPEND}
sys-process/parallel
sci-biology/bioperl
sci-biology/prodigal
-   sci-biology/ncbi-tools++ || ( sci-biology/ncbi-blast+ )
+   || ( sci-biology/ncbi-tools++ sci-biology/ncbi-blast+ )
sci-biology/hmmer
sci-biology/infernal
sci-biology/exonerate



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

2016-06-22 Thread Agostino Sarubbo
commit: f55337b307f7ca849981daa46413934459daa93c
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Jun 22 14:03:32 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Jun 22 14:03:32 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f55337b3

dev-lang/php: amd64 stable wrt bug #584204

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

 dev-lang/php/php-5.5.36.ebuild | 2 +-
 dev-lang/php/php-5.6.22.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-lang/php/php-5.5.36.ebuild b/dev-lang/php/php-5.5.36.ebuild
index 6c0c143..449690c 100644
--- a/dev-lang/php/php-5.5.36.ebuild
+++ b/dev-lang/php/php-5.5.36.ebuild
@@ -6,7 +6,7 @@ EAPI=5
 
 inherit eutils autotools flag-o-matic versionator depend.apache apache-module 
db-use libtool systemd
 
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos"
 
 function php_get_uri ()
 {

diff --git a/dev-lang/php/php-5.6.22.ebuild b/dev-lang/php/php-5.6.22.ebuild
index 0fb581b..f74f3c5 100644
--- a/dev-lang/php/php-5.6.22.ebuild
+++ b/dev-lang/php/php-5.6.22.ebuild
@@ -6,7 +6,7 @@ EAPI=5
 
 inherit eutils autotools flag-o-matic versionator depend.apache apache-module 
libtool systemd
 
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos"
 
 function php_get_uri ()
 {



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

2016-06-22 Thread Agostino Sarubbo
commit: a754b2e14df6bffd8a4870d47ac418311b29a324
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Jun 22 14:04:04 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Jun 22 14:04:04 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a754b2e1

dev-lang/php: x86 stable wrt bug #584204

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

 dev-lang/php/php-5.5.36.ebuild | 2 +-
 dev-lang/php/php-5.6.22.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-lang/php/php-5.5.36.ebuild b/dev-lang/php/php-5.5.36.ebuild
index 449690c..7368d9b 100644
--- a/dev-lang/php/php-5.5.36.ebuild
+++ b/dev-lang/php/php-5.5.36.ebuild
@@ -6,7 +6,7 @@ EAPI=5
 
 inherit eutils autotools flag-o-matic versionator depend.apache apache-module 
db-use libtool systemd
 
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos"
 
 function php_get_uri ()
 {

diff --git a/dev-lang/php/php-5.6.22.ebuild b/dev-lang/php/php-5.6.22.ebuild
index f74f3c5..bde480b 100644
--- a/dev-lang/php/php-5.6.22.ebuild
+++ b/dev-lang/php/php-5.6.22.ebuild
@@ -6,7 +6,7 @@ EAPI=5
 
 inherit eutils autotools flag-o-matic versionator depend.apache apache-module 
libtool systemd
 
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos"
 
 function php_get_uri ()
 {



[gentoo-commits] gentoo commit in src/patchsets/gcc/5.3.0/gentoo: 24_all_boehm-gc-execinfo.patch

2016-06-22 Thread Mike Frysinger (vapier)
vapier  16/06/22 14:03:05

  Modified: 24_all_boehm-gc-execinfo.patch
  Log:
  document boehm-gc uclibc/execinfo.h patches

Revision  ChangesPath
1.2  
src/patchsets/gcc/5.3.0/gentoo/24_all_boehm-gc-execinfo.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/5.3.0/gentoo/24_all_boehm-gc-execinfo.patch?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/5.3.0/gentoo/24_all_boehm-gc-execinfo.patch?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/5.3.0/gentoo/24_all_boehm-gc-execinfo.patch?r1=1.1&r2=1.2

Index: 24_all_boehm-gc-execinfo.patch
===
RCS file: 
/var/cvsroot/gentoo/src/patchsets/gcc/5.3.0/gentoo/24_all_boehm-gc-execinfo.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- 24_all_boehm-gc-execinfo.patch  13 Jun 2016 18:47:06 -  1.1
+++ 24_all_boehm-gc-execinfo.patch  22 Jun 2016 14:03:05 -  1.2
@@ -1,3 +1,4 @@
+https://github.com/ivmai/bdwgc/pull/123
 https://gcc.gnu.org/ml/gcc-patches/2015-08/msg01839.html
 
 From f95967708d08acdeabc0265baeaa1e9005c4bb7b Mon Sep 17 00:00:00 2001






[gentoo-commits] gentoo commit in src/patchsets/gcc/5.2.0/uclibc: 90_all_301-missing-execinfo_h.patch

2016-06-22 Thread Mike Frysinger (vapier)
vapier  16/06/22 14:03:05

  Modified: 90_all_301-missing-execinfo_h.patch
  Log:
  document boehm-gc uclibc/execinfo.h patches

Revision  ChangesPath
1.2  
src/patchsets/gcc/5.2.0/uclibc/90_all_301-missing-execinfo_h.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/5.2.0/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/5.2.0/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/5.2.0/uclibc/90_all_301-missing-execinfo_h.patch?r1=1.1&r2=1.2

Index: 90_all_301-missing-execinfo_h.patch
===
RCS file: 
/var/cvsroot/gentoo/src/patchsets/gcc/5.2.0/uclibc/90_all_301-missing-execinfo_h.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- 90_all_301-missing-execinfo_h.patch 17 Jul 2015 05:08:05 -  1.1
+++ 90_all_301-missing-execinfo_h.patch 22 Jun 2016 14:03:05 -  1.2
@@ -1,5 +1,11 @@
 gcc-4.0.0/boehm-gc/include/gc.h-orig   2005-04-28 22:28:57.0 
-0500
-+++ gcc-4.0.0/boehm-gc/include/gc.h2005-04-28 22:30:38.0 -0500
+https://github.com/ivmai/bdwgc/commit/76b3d3a57583fdb19152f4d911b11725e31b4a06
+
+2007-12-18  Hans Boehm  (really Radek Polak)
+
+   * include/gc.h: Don't define GC_HAVE_BUILTIN_BACKTRACE for uclibc.
+
+--- a/boehm-gc/include/gc.h
 b/boehm-gc/include/gc.h
 @@ -500,7 +500,7 @@
  #ifdef __linux__
  # include 






[gentoo-commits] gentoo commit in src/patchsets/gcc/4.8.5/uclibc: 90_all_301-missing-execinfo_h.patch

2016-06-22 Thread Mike Frysinger (vapier)
vapier  16/06/22 14:03:04

  Modified: 90_all_301-missing-execinfo_h.patch
  Log:
  document boehm-gc uclibc/execinfo.h patches

Revision  ChangesPath
1.2  
src/patchsets/gcc/4.8.5/uclibc/90_all_301-missing-execinfo_h.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.8.5/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.8.5/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.8.5/uclibc/90_all_301-missing-execinfo_h.patch?r1=1.1&r2=1.2

Index: 90_all_301-missing-execinfo_h.patch
===
RCS file: 
/var/cvsroot/gentoo/src/patchsets/gcc/4.8.5/uclibc/90_all_301-missing-execinfo_h.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- 90_all_301-missing-execinfo_h.patch 24 Jun 2015 13:38:51 -  1.1
+++ 90_all_301-missing-execinfo_h.patch 22 Jun 2016 14:03:04 -  1.2
@@ -1,5 +1,11 @@
 gcc-4.0.0/boehm-gc/include/gc.h-orig   2005-04-28 22:28:57.0 
-0500
-+++ gcc-4.0.0/boehm-gc/include/gc.h2005-04-28 22:30:38.0 -0500
+https://github.com/ivmai/bdwgc/commit/76b3d3a57583fdb19152f4d911b11725e31b4a06
+
+2007-12-18  Hans Boehm  (really Radek Polak)
+
+   * include/gc.h: Don't define GC_HAVE_BUILTIN_BACKTRACE for uclibc.
+
+--- a/boehm-gc/include/gc.h
 b/boehm-gc/include/gc.h
 @@ -500,7 +500,7 @@
  #ifdef __linux__
  # include 






[gentoo-commits] gentoo commit in src/patchsets/gcc/4.9.3/uclibc: 90_all_301-missing-execinfo_h.patch

2016-06-22 Thread Mike Frysinger (vapier)
vapier  16/06/22 14:03:05

  Modified: 90_all_301-missing-execinfo_h.patch
  Log:
  document boehm-gc uclibc/execinfo.h patches

Revision  ChangesPath
1.2  
src/patchsets/gcc/4.9.3/uclibc/90_all_301-missing-execinfo_h.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.9.3/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.9.3/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.9.3/uclibc/90_all_301-missing-execinfo_h.patch?r1=1.1&r2=1.2

Index: 90_all_301-missing-execinfo_h.patch
===
RCS file: 
/var/cvsroot/gentoo/src/patchsets/gcc/4.9.3/uclibc/90_all_301-missing-execinfo_h.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- 90_all_301-missing-execinfo_h.patch 2 Jul 2015 03:13:34 -   1.1
+++ 90_all_301-missing-execinfo_h.patch 22 Jun 2016 14:03:04 -  1.2
@@ -1,5 +1,11 @@
 gcc-4.0.0/boehm-gc/include/gc.h-orig   2005-04-28 22:28:57.0 
-0500
-+++ gcc-4.0.0/boehm-gc/include/gc.h2005-04-28 22:30:38.0 -0500
+https://github.com/ivmai/bdwgc/commit/76b3d3a57583fdb19152f4d911b11725e31b4a06
+
+2007-12-18  Hans Boehm  (really Radek Polak)
+
+   * include/gc.h: Don't define GC_HAVE_BUILTIN_BACKTRACE for uclibc.
+
+--- a/boehm-gc/include/gc.h
 b/boehm-gc/include/gc.h
 @@ -500,7 +500,7 @@
  #ifdef __linux__
  # include 






[gentoo-commits] gentoo commit in src/patchsets/gcc/4.9.1/uclibc: 90_all_301-missing-execinfo_h.patch

2016-06-22 Thread Mike Frysinger (vapier)
vapier  16/06/22 14:03:04

  Modified: 90_all_301-missing-execinfo_h.patch
  Log:
  document boehm-gc uclibc/execinfo.h patches

Revision  ChangesPath
1.2  
src/patchsets/gcc/4.9.1/uclibc/90_all_301-missing-execinfo_h.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.9.1/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.9.1/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.9.1/uclibc/90_all_301-missing-execinfo_h.patch?r1=1.1&r2=1.2

Index: 90_all_301-missing-execinfo_h.patch
===
RCS file: 
/var/cvsroot/gentoo/src/patchsets/gcc/4.9.1/uclibc/90_all_301-missing-execinfo_h.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- 90_all_301-missing-execinfo_h.patch 7 Aug 2014 00:05:17 -   1.1
+++ 90_all_301-missing-execinfo_h.patch 22 Jun 2016 14:03:04 -  1.2
@@ -1,5 +1,11 @@
 gcc-4.0.0/boehm-gc/include/gc.h-orig   2005-04-28 22:28:57.0 
-0500
-+++ gcc-4.0.0/boehm-gc/include/gc.h2005-04-28 22:30:38.0 -0500
+https://github.com/ivmai/bdwgc/commit/76b3d3a57583fdb19152f4d911b11725e31b4a06
+
+2007-12-18  Hans Boehm  (really Radek Polak)
+
+   * include/gc.h: Don't define GC_HAVE_BUILTIN_BACKTRACE for uclibc.
+
+--- a/boehm-gc/include/gc.h
 b/boehm-gc/include/gc.h
 @@ -500,7 +500,7 @@
  #ifdef __linux__
  # include 






[gentoo-commits] gentoo commit in src/patchsets/gcc/4.8.2/uclibc: 90_all_301-missing-execinfo_h.patch

2016-06-22 Thread Mike Frysinger (vapier)
vapier  16/06/22 14:03:04

  Modified: 90_all_301-missing-execinfo_h.patch
  Log:
  document boehm-gc uclibc/execinfo.h patches

Revision  ChangesPath
1.2  
src/patchsets/gcc/4.8.2/uclibc/90_all_301-missing-execinfo_h.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.8.2/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.8.2/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.8.2/uclibc/90_all_301-missing-execinfo_h.patch?r1=1.1&r2=1.2

Index: 90_all_301-missing-execinfo_h.patch
===
RCS file: 
/var/cvsroot/gentoo/src/patchsets/gcc/4.8.2/uclibc/90_all_301-missing-execinfo_h.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- 90_all_301-missing-execinfo_h.patch 10 Nov 2013 20:05:26 -  1.1
+++ 90_all_301-missing-execinfo_h.patch 22 Jun 2016 14:03:04 -  1.2
@@ -1,5 +1,11 @@
 gcc-4.0.0/boehm-gc/include/gc.h-orig   2005-04-28 22:28:57.0 
-0500
-+++ gcc-4.0.0/boehm-gc/include/gc.h2005-04-28 22:30:38.0 -0500
+https://github.com/ivmai/bdwgc/commit/76b3d3a57583fdb19152f4d911b11725e31b4a06
+
+2007-12-18  Hans Boehm  (really Radek Polak)
+
+   * include/gc.h: Don't define GC_HAVE_BUILTIN_BACKTRACE for uclibc.
+
+--- a/boehm-gc/include/gc.h
 b/boehm-gc/include/gc.h
 @@ -500,7 +500,7 @@
  #ifdef __linux__
  # include 






[gentoo-commits] gentoo commit in src/patchsets/gcc/5.1.0/uclibc: 90_all_301-missing-execinfo_h.patch

2016-06-22 Thread Mike Frysinger (vapier)
vapier  16/06/22 14:03:05

  Modified: 90_all_301-missing-execinfo_h.patch
  Log:
  document boehm-gc uclibc/execinfo.h patches

Revision  ChangesPath
1.2  
src/patchsets/gcc/5.1.0/uclibc/90_all_301-missing-execinfo_h.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/5.1.0/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/5.1.0/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/5.1.0/uclibc/90_all_301-missing-execinfo_h.patch?r1=1.1&r2=1.2

Index: 90_all_301-missing-execinfo_h.patch
===
RCS file: 
/var/cvsroot/gentoo/src/patchsets/gcc/5.1.0/uclibc/90_all_301-missing-execinfo_h.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- 90_all_301-missing-execinfo_h.patch 23 Apr 2015 19:21:10 -  1.1
+++ 90_all_301-missing-execinfo_h.patch 22 Jun 2016 14:03:05 -  1.2
@@ -1,5 +1,11 @@
 gcc-4.0.0/boehm-gc/include/gc.h-orig   2005-04-28 22:28:57.0 
-0500
-+++ gcc-4.0.0/boehm-gc/include/gc.h2005-04-28 22:30:38.0 -0500
+https://github.com/ivmai/bdwgc/commit/76b3d3a57583fdb19152f4d911b11725e31b4a06
+
+2007-12-18  Hans Boehm  (really Radek Polak)
+
+   * include/gc.h: Don't define GC_HAVE_BUILTIN_BACKTRACE for uclibc.
+
+--- a/boehm-gc/include/gc.h
 b/boehm-gc/include/gc.h
 @@ -500,7 +500,7 @@
  #ifdef __linux__
  # include 






[gentoo-commits] gentoo commit in src/patchsets/gcc/5.4.0/gentoo: 24_all_boehm-gc-execinfo.patch

2016-06-22 Thread Mike Frysinger (vapier)
vapier  16/06/22 14:03:05

  Modified: 24_all_boehm-gc-execinfo.patch
  Log:
  document boehm-gc uclibc/execinfo.h patches

Revision  ChangesPath
1.2  
src/patchsets/gcc/5.4.0/gentoo/24_all_boehm-gc-execinfo.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/5.4.0/gentoo/24_all_boehm-gc-execinfo.patch?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/5.4.0/gentoo/24_all_boehm-gc-execinfo.patch?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/5.4.0/gentoo/24_all_boehm-gc-execinfo.patch?r1=1.1&r2=1.2

Index: 24_all_boehm-gc-execinfo.patch
===
RCS file: 
/var/cvsroot/gentoo/src/patchsets/gcc/5.4.0/gentoo/24_all_boehm-gc-execinfo.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- 24_all_boehm-gc-execinfo.patch  13 Jun 2016 18:48:10 -  1.1
+++ 24_all_boehm-gc-execinfo.patch  22 Jun 2016 14:03:05 -  1.2
@@ -1,3 +1,4 @@
+https://github.com/ivmai/bdwgc/pull/123
 https://gcc.gnu.org/ml/gcc-patches/2015-08/msg01839.html
 
 From f95967708d08acdeabc0265baeaa1e9005c4bb7b Mon Sep 17 00:00:00 2001






[gentoo-commits] gentoo commit in src/patchsets/gcc/4.9.2/uclibc: 90_all_301-missing-execinfo_h.patch

2016-06-22 Thread Mike Frysinger (vapier)
vapier  16/06/22 14:03:04

  Modified: 90_all_301-missing-execinfo_h.patch
  Log:
  document boehm-gc uclibc/execinfo.h patches

Revision  ChangesPath
1.2  
src/patchsets/gcc/4.9.2/uclibc/90_all_301-missing-execinfo_h.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.9.2/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.9.2/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.9.2/uclibc/90_all_301-missing-execinfo_h.patch?r1=1.1&r2=1.2

Index: 90_all_301-missing-execinfo_h.patch
===
RCS file: 
/var/cvsroot/gentoo/src/patchsets/gcc/4.9.2/uclibc/90_all_301-missing-execinfo_h.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- 90_all_301-missing-execinfo_h.patch 1 Nov 2014 07:54:59 -   1.1
+++ 90_all_301-missing-execinfo_h.patch 22 Jun 2016 14:03:04 -  1.2
@@ -1,5 +1,11 @@
 gcc-4.0.0/boehm-gc/include/gc.h-orig   2005-04-28 22:28:57.0 
-0500
-+++ gcc-4.0.0/boehm-gc/include/gc.h2005-04-28 22:30:38.0 -0500
+https://github.com/ivmai/bdwgc/commit/76b3d3a57583fdb19152f4d911b11725e31b4a06
+
+2007-12-18  Hans Boehm  (really Radek Polak)
+
+   * include/gc.h: Don't define GC_HAVE_BUILTIN_BACKTRACE for uclibc.
+
+--- a/boehm-gc/include/gc.h
 b/boehm-gc/include/gc.h
 @@ -500,7 +500,7 @@
  #ifdef __linux__
  # include 






[gentoo-commits] gentoo commit in src/patchsets/gcc/4.8.4/uclibc: 90_all_301-missing-execinfo_h.patch

2016-06-22 Thread Mike Frysinger (vapier)
vapier  16/06/22 14:03:04

  Modified: 90_all_301-missing-execinfo_h.patch
  Log:
  document boehm-gc uclibc/execinfo.h patches

Revision  ChangesPath
1.2  
src/patchsets/gcc/4.8.4/uclibc/90_all_301-missing-execinfo_h.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.8.4/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.8.4/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.8.4/uclibc/90_all_301-missing-execinfo_h.patch?r1=1.1&r2=1.2

Index: 90_all_301-missing-execinfo_h.patch
===
RCS file: 
/var/cvsroot/gentoo/src/patchsets/gcc/4.8.4/uclibc/90_all_301-missing-execinfo_h.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- 90_all_301-missing-execinfo_h.patch 26 Dec 2014 20:41:26 -  1.1
+++ 90_all_301-missing-execinfo_h.patch 22 Jun 2016 14:03:04 -  1.2
@@ -1,5 +1,11 @@
 gcc-4.0.0/boehm-gc/include/gc.h-orig   2005-04-28 22:28:57.0 
-0500
-+++ gcc-4.0.0/boehm-gc/include/gc.h2005-04-28 22:30:38.0 -0500
+https://github.com/ivmai/bdwgc/commit/76b3d3a57583fdb19152f4d911b11725e31b4a06
+
+2007-12-18  Hans Boehm  (really Radek Polak)
+
+   * include/gc.h: Don't define GC_HAVE_BUILTIN_BACKTRACE for uclibc.
+
+--- a/boehm-gc/include/gc.h
 b/boehm-gc/include/gc.h
 @@ -500,7 +500,7 @@
  #ifdef __linux__
  # include 






[gentoo-commits] gentoo commit in src/patchsets/gcc/4.8.3/uclibc: 90_all_301-missing-execinfo_h.patch

2016-06-22 Thread Mike Frysinger (vapier)
vapier  16/06/22 14:03:04

  Modified: 90_all_301-missing-execinfo_h.patch
  Log:
  document boehm-gc uclibc/execinfo.h patches

Revision  ChangesPath
1.2  
src/patchsets/gcc/4.8.3/uclibc/90_all_301-missing-execinfo_h.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.8.3/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.8.3/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.8.3/uclibc/90_all_301-missing-execinfo_h.patch?r1=1.1&r2=1.2

Index: 90_all_301-missing-execinfo_h.patch
===
RCS file: 
/var/cvsroot/gentoo/src/patchsets/gcc/4.8.3/uclibc/90_all_301-missing-execinfo_h.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- 90_all_301-missing-execinfo_h.patch 22 May 2014 21:06:28 -  1.1
+++ 90_all_301-missing-execinfo_h.patch 22 Jun 2016 14:03:04 -  1.2
@@ -1,5 +1,11 @@
 gcc-4.0.0/boehm-gc/include/gc.h-orig   2005-04-28 22:28:57.0 
-0500
-+++ gcc-4.0.0/boehm-gc/include/gc.h2005-04-28 22:30:38.0 -0500
+https://github.com/ivmai/bdwgc/commit/76b3d3a57583fdb19152f4d911b11725e31b4a06
+
+2007-12-18  Hans Boehm  (really Radek Polak)
+
+   * include/gc.h: Don't define GC_HAVE_BUILTIN_BACKTRACE for uclibc.
+
+--- a/boehm-gc/include/gc.h
 b/boehm-gc/include/gc.h
 @@ -500,7 +500,7 @@
  #ifdef __linux__
  # include 






[gentoo-commits] gentoo commit in src/patchsets/gcc/4.9.0/uclibc: 90_all_301-missing-execinfo_h.patch

2016-06-22 Thread Mike Frysinger (vapier)
vapier  16/06/22 14:03:04

  Modified: 90_all_301-missing-execinfo_h.patch
  Log:
  document boehm-gc uclibc/execinfo.h patches

Revision  ChangesPath
1.2  
src/patchsets/gcc/4.9.0/uclibc/90_all_301-missing-execinfo_h.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.9.0/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.9.0/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.9.0/uclibc/90_all_301-missing-execinfo_h.patch?r1=1.1&r2=1.2

Index: 90_all_301-missing-execinfo_h.patch
===
RCS file: 
/var/cvsroot/gentoo/src/patchsets/gcc/4.9.0/uclibc/90_all_301-missing-execinfo_h.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- 90_all_301-missing-execinfo_h.patch 1 May 2014 05:14:26 -   1.1
+++ 90_all_301-missing-execinfo_h.patch 22 Jun 2016 14:03:04 -  1.2
@@ -1,5 +1,11 @@
 gcc-4.0.0/boehm-gc/include/gc.h-orig   2005-04-28 22:28:57.0 
-0500
-+++ gcc-4.0.0/boehm-gc/include/gc.h2005-04-28 22:30:38.0 -0500
+https://github.com/ivmai/bdwgc/commit/76b3d3a57583fdb19152f4d911b11725e31b4a06
+
+2007-12-18  Hans Boehm  (really Radek Polak)
+
+   * include/gc.h: Don't define GC_HAVE_BUILTIN_BACKTRACE for uclibc.
+
+--- a/boehm-gc/include/gc.h
 b/boehm-gc/include/gc.h
 @@ -500,7 +500,7 @@
  #ifdef __linux__
  # include 






[gentoo-commits] gentoo commit in src/patchsets/gcc/4.7.4/uclibc: 90_all_301-missing-execinfo_h.patch

2016-06-22 Thread Mike Frysinger (vapier)
vapier  16/06/22 14:03:04

  Modified: 90_all_301-missing-execinfo_h.patch
  Log:
  document boehm-gc uclibc/execinfo.h patches

Revision  ChangesPath
1.2  
src/patchsets/gcc/4.7.4/uclibc/90_all_301-missing-execinfo_h.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.7.4/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.7.4/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.7.4/uclibc/90_all_301-missing-execinfo_h.patch?r1=1.1&r2=1.2

Index: 90_all_301-missing-execinfo_h.patch
===
RCS file: 
/var/cvsroot/gentoo/src/patchsets/gcc/4.7.4/uclibc/90_all_301-missing-execinfo_h.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- 90_all_301-missing-execinfo_h.patch 17 Jun 2014 01:47:25 -  1.1
+++ 90_all_301-missing-execinfo_h.patch 22 Jun 2016 14:03:04 -  1.2
@@ -1,5 +1,11 @@
 gcc-4.0.0/boehm-gc/include/gc.h-orig   2005-04-28 22:28:57.0 
-0500
-+++ gcc-4.0.0/boehm-gc/include/gc.h2005-04-28 22:30:38.0 -0500
+https://github.com/ivmai/bdwgc/commit/76b3d3a57583fdb19152f4d911b11725e31b4a06
+
+2007-12-18  Hans Boehm  (really Radek Polak)
+
+   * include/gc.h: Don't define GC_HAVE_BUILTIN_BACKTRACE for uclibc.
+
+--- a/boehm-gc/include/gc.h
 b/boehm-gc/include/gc.h
 @@ -500,7 +500,7 @@
  #ifdef __linux__
  # include 






[gentoo-commits] gentoo commit in src/patchsets/gcc/4.6.2/uclibc: 90_all_301-missing-execinfo_h.patch

2016-06-22 Thread Mike Frysinger (vapier)
vapier  16/06/22 14:03:03

  Modified: 90_all_301-missing-execinfo_h.patch
  Log:
  document boehm-gc uclibc/execinfo.h patches

Revision  ChangesPath
1.2  
src/patchsets/gcc/4.6.2/uclibc/90_all_301-missing-execinfo_h.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.6.2/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.6.2/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.6.2/uclibc/90_all_301-missing-execinfo_h.patch?r1=1.1&r2=1.2

Index: 90_all_301-missing-execinfo_h.patch
===
RCS file: 
/var/cvsroot/gentoo/src/patchsets/gcc/4.6.2/uclibc/90_all_301-missing-execinfo_h.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- 90_all_301-missing-execinfo_h.patch 28 Oct 2011 23:20:35 -  1.1
+++ 90_all_301-missing-execinfo_h.patch 22 Jun 2016 14:03:03 -  1.2
@@ -1,5 +1,11 @@
 gcc-4.0.0/boehm-gc/include/gc.h-orig   2005-04-28 22:28:57.0 
-0500
-+++ gcc-4.0.0/boehm-gc/include/gc.h2005-04-28 22:30:38.0 -0500
+https://github.com/ivmai/bdwgc/commit/76b3d3a57583fdb19152f4d911b11725e31b4a06
+
+2007-12-18  Hans Boehm  (really Radek Polak)
+
+   * include/gc.h: Don't define GC_HAVE_BUILTIN_BACKTRACE for uclibc.
+
+--- a/boehm-gc/include/gc.h
 b/boehm-gc/include/gc.h
 @@ -500,7 +500,7 @@
  #ifdef __linux__
  # include 






[gentoo-commits] gentoo commit in src/patchsets/gcc/4.6.3/uclibc: 90_all_301-missing-execinfo_h.patch

2016-06-22 Thread Mike Frysinger (vapier)
vapier  16/06/22 14:03:03

  Modified: 90_all_301-missing-execinfo_h.patch
  Log:
  document boehm-gc uclibc/execinfo.h patches

Revision  ChangesPath
1.2  
src/patchsets/gcc/4.6.3/uclibc/90_all_301-missing-execinfo_h.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.6.3/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.6.3/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.6.3/uclibc/90_all_301-missing-execinfo_h.patch?r1=1.1&r2=1.2

Index: 90_all_301-missing-execinfo_h.patch
===
RCS file: 
/var/cvsroot/gentoo/src/patchsets/gcc/4.6.3/uclibc/90_all_301-missing-execinfo_h.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- 90_all_301-missing-execinfo_h.patch 8 Apr 2012 03:29:40 -   1.1
+++ 90_all_301-missing-execinfo_h.patch 22 Jun 2016 14:03:03 -  1.2
@@ -1,5 +1,11 @@
 gcc-4.0.0/boehm-gc/include/gc.h-orig   2005-04-28 22:28:57.0 
-0500
-+++ gcc-4.0.0/boehm-gc/include/gc.h2005-04-28 22:30:38.0 -0500
+https://github.com/ivmai/bdwgc/commit/76b3d3a57583fdb19152f4d911b11725e31b4a06
+
+2007-12-18  Hans Boehm  (really Radek Polak)
+
+   * include/gc.h: Don't define GC_HAVE_BUILTIN_BACKTRACE for uclibc.
+
+--- a/boehm-gc/include/gc.h
 b/boehm-gc/include/gc.h
 @@ -500,7 +500,7 @@
  #ifdef __linux__
  # include 






[gentoo-commits] gentoo commit in src/patchsets/gcc/4.8.1/uclibc: 90_all_301-missing-execinfo_h.patch

2016-06-22 Thread Mike Frysinger (vapier)
vapier  16/06/22 14:03:04

  Modified: 90_all_301-missing-execinfo_h.patch
  Log:
  document boehm-gc uclibc/execinfo.h patches

Revision  ChangesPath
1.2  
src/patchsets/gcc/4.8.1/uclibc/90_all_301-missing-execinfo_h.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.8.1/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.8.1/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.8.1/uclibc/90_all_301-missing-execinfo_h.patch?r1=1.1&r2=1.2

Index: 90_all_301-missing-execinfo_h.patch
===
RCS file: 
/var/cvsroot/gentoo/src/patchsets/gcc/4.8.1/uclibc/90_all_301-missing-execinfo_h.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- 90_all_301-missing-execinfo_h.patch 4 Jun 2013 05:21:15 -   1.1
+++ 90_all_301-missing-execinfo_h.patch 22 Jun 2016 14:03:04 -  1.2
@@ -1,5 +1,11 @@
 gcc-4.0.0/boehm-gc/include/gc.h-orig   2005-04-28 22:28:57.0 
-0500
-+++ gcc-4.0.0/boehm-gc/include/gc.h2005-04-28 22:30:38.0 -0500
+https://github.com/ivmai/bdwgc/commit/76b3d3a57583fdb19152f4d911b11725e31b4a06
+
+2007-12-18  Hans Boehm  (really Radek Polak)
+
+   * include/gc.h: Don't define GC_HAVE_BUILTIN_BACKTRACE for uclibc.
+
+--- a/boehm-gc/include/gc.h
 b/boehm-gc/include/gc.h
 @@ -500,7 +500,7 @@
  #ifdef __linux__
  # include 






[gentoo-commits] gentoo commit in src/patchsets/gcc/4.7.1/uclibc: 90_all_301-missing-execinfo_h.patch

2016-06-22 Thread Mike Frysinger (vapier)
vapier  16/06/22 14:03:04

  Modified: 90_all_301-missing-execinfo_h.patch
  Log:
  document boehm-gc uclibc/execinfo.h patches

Revision  ChangesPath
1.2  
src/patchsets/gcc/4.7.1/uclibc/90_all_301-missing-execinfo_h.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.7.1/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.7.1/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.7.1/uclibc/90_all_301-missing-execinfo_h.patch?r1=1.1&r2=1.2

Index: 90_all_301-missing-execinfo_h.patch
===
RCS file: 
/var/cvsroot/gentoo/src/patchsets/gcc/4.7.1/uclibc/90_all_301-missing-execinfo_h.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- 90_all_301-missing-execinfo_h.patch 14 Jun 2012 23:48:22 -  1.1
+++ 90_all_301-missing-execinfo_h.patch 22 Jun 2016 14:03:04 -  1.2
@@ -1,5 +1,11 @@
 gcc-4.0.0/boehm-gc/include/gc.h-orig   2005-04-28 22:28:57.0 
-0500
-+++ gcc-4.0.0/boehm-gc/include/gc.h2005-04-28 22:30:38.0 -0500
+https://github.com/ivmai/bdwgc/commit/76b3d3a57583fdb19152f4d911b11725e31b4a06
+
+2007-12-18  Hans Boehm  (really Radek Polak)
+
+   * include/gc.h: Don't define GC_HAVE_BUILTIN_BACKTRACE for uclibc.
+
+--- a/boehm-gc/include/gc.h
 b/boehm-gc/include/gc.h
 @@ -500,7 +500,7 @@
  #ifdef __linux__
  # include 






[gentoo-commits] gentoo commit in src/patchsets/gcc/4.7.2/uclibc: 90_all_301-missing-execinfo_h.patch

2016-06-22 Thread Mike Frysinger (vapier)
vapier  16/06/22 14:03:04

  Modified: 90_all_301-missing-execinfo_h.patch
  Log:
  document boehm-gc uclibc/execinfo.h patches

Revision  ChangesPath
1.2  
src/patchsets/gcc/4.7.2/uclibc/90_all_301-missing-execinfo_h.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.7.2/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.7.2/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.7.2/uclibc/90_all_301-missing-execinfo_h.patch?r1=1.1&r2=1.2

Index: 90_all_301-missing-execinfo_h.patch
===
RCS file: 
/var/cvsroot/gentoo/src/patchsets/gcc/4.7.2/uclibc/90_all_301-missing-execinfo_h.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- 90_all_301-missing-execinfo_h.patch 29 Sep 2012 05:01:10 -  1.1
+++ 90_all_301-missing-execinfo_h.patch 22 Jun 2016 14:03:04 -  1.2
@@ -1,5 +1,11 @@
 gcc-4.0.0/boehm-gc/include/gc.h-orig   2005-04-28 22:28:57.0 
-0500
-+++ gcc-4.0.0/boehm-gc/include/gc.h2005-04-28 22:30:38.0 -0500
+https://github.com/ivmai/bdwgc/commit/76b3d3a57583fdb19152f4d911b11725e31b4a06
+
+2007-12-18  Hans Boehm  (really Radek Polak)
+
+   * include/gc.h: Don't define GC_HAVE_BUILTIN_BACKTRACE for uclibc.
+
+--- a/boehm-gc/include/gc.h
 b/boehm-gc/include/gc.h
 @@ -500,7 +500,7 @@
  #ifdef __linux__
  # include 






[gentoo-commits] gentoo commit in src/patchsets/gcc/4.7.3/uclibc: 90_all_301-missing-execinfo_h.patch

2016-06-22 Thread Mike Frysinger (vapier)
vapier  16/06/22 14:03:04

  Modified: 90_all_301-missing-execinfo_h.patch
  Log:
  document boehm-gc uclibc/execinfo.h patches

Revision  ChangesPath
1.2  
src/patchsets/gcc/4.7.3/uclibc/90_all_301-missing-execinfo_h.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.7.3/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.7.3/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.7.3/uclibc/90_all_301-missing-execinfo_h.patch?r1=1.1&r2=1.2

Index: 90_all_301-missing-execinfo_h.patch
===
RCS file: 
/var/cvsroot/gentoo/src/patchsets/gcc/4.7.3/uclibc/90_all_301-missing-execinfo_h.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- 90_all_301-missing-execinfo_h.patch 28 Apr 2013 02:55:51 -  1.1
+++ 90_all_301-missing-execinfo_h.patch 22 Jun 2016 14:03:04 -  1.2
@@ -1,5 +1,11 @@
 gcc-4.0.0/boehm-gc/include/gc.h-orig   2005-04-28 22:28:57.0 
-0500
-+++ gcc-4.0.0/boehm-gc/include/gc.h2005-04-28 22:30:38.0 -0500
+https://github.com/ivmai/bdwgc/commit/76b3d3a57583fdb19152f4d911b11725e31b4a06
+
+2007-12-18  Hans Boehm  (really Radek Polak)
+
+   * include/gc.h: Don't define GC_HAVE_BUILTIN_BACKTRACE for uclibc.
+
+--- a/boehm-gc/include/gc.h
 b/boehm-gc/include/gc.h
 @@ -500,7 +500,7 @@
  #ifdef __linux__
  # include 






[gentoo-commits] gentoo commit in src/patchsets/gcc/4.5.4/uclibc: 90_all_301-missing-execinfo_h.patch

2016-06-22 Thread Mike Frysinger (vapier)
vapier  16/06/22 14:03:03

  Modified: 90_all_301-missing-execinfo_h.patch
  Log:
  document boehm-gc uclibc/execinfo.h patches

Revision  ChangesPath
1.2  
src/patchsets/gcc/4.5.4/uclibc/90_all_301-missing-execinfo_h.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.5.4/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.5.4/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.5.4/uclibc/90_all_301-missing-execinfo_h.patch?r1=1.1&r2=1.2

Index: 90_all_301-missing-execinfo_h.patch
===
RCS file: 
/var/cvsroot/gentoo/src/patchsets/gcc/4.5.4/uclibc/90_all_301-missing-execinfo_h.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- 90_all_301-missing-execinfo_h.patch 15 Jul 2012 05:28:56 -  1.1
+++ 90_all_301-missing-execinfo_h.patch 22 Jun 2016 14:03:03 -  1.2
@@ -1,5 +1,11 @@
 gcc-4.0.0/boehm-gc/include/gc.h-orig   2005-04-28 22:28:57.0 
-0500
-+++ gcc-4.0.0/boehm-gc/include/gc.h2005-04-28 22:30:38.0 -0500
+https://github.com/ivmai/bdwgc/commit/76b3d3a57583fdb19152f4d911b11725e31b4a06
+
+2007-12-18  Hans Boehm  (really Radek Polak)
+
+   * include/gc.h: Don't define GC_HAVE_BUILTIN_BACKTRACE for uclibc.
+
+--- a/boehm-gc/include/gc.h
 b/boehm-gc/include/gc.h
 @@ -500,7 +500,7 @@
  #ifdef __linux__
  # include 






[gentoo-commits] gentoo commit in src/patchsets/gcc/4.7.0/uclibc: 90_all_301-missing-execinfo_h.patch

2016-06-22 Thread Mike Frysinger (vapier)
vapier  16/06/22 14:03:04

  Modified: 90_all_301-missing-execinfo_h.patch
  Log:
  document boehm-gc uclibc/execinfo.h patches

Revision  ChangesPath
1.2  
src/patchsets/gcc/4.7.0/uclibc/90_all_301-missing-execinfo_h.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.7.0/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.7.0/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.7.0/uclibc/90_all_301-missing-execinfo_h.patch?r1=1.1&r2=1.2

Index: 90_all_301-missing-execinfo_h.patch
===
RCS file: 
/var/cvsroot/gentoo/src/patchsets/gcc/4.7.0/uclibc/90_all_301-missing-execinfo_h.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- 90_all_301-missing-execinfo_h.patch 14 May 2012 06:19:00 -  1.1
+++ 90_all_301-missing-execinfo_h.patch 22 Jun 2016 14:03:04 -  1.2
@@ -1,5 +1,11 @@
 gcc-4.0.0/boehm-gc/include/gc.h-orig   2005-04-28 22:28:57.0 
-0500
-+++ gcc-4.0.0/boehm-gc/include/gc.h2005-04-28 22:30:38.0 -0500
+https://github.com/ivmai/bdwgc/commit/76b3d3a57583fdb19152f4d911b11725e31b4a06
+
+2007-12-18  Hans Boehm  (really Radek Polak)
+
+   * include/gc.h: Don't define GC_HAVE_BUILTIN_BACKTRACE for uclibc.
+
+--- a/boehm-gc/include/gc.h
 b/boehm-gc/include/gc.h
 @@ -500,7 +500,7 @@
  #ifdef __linux__
  # include 






[gentoo-commits] gentoo commit in src/patchsets/gcc/4.6.1/uclibc: 90_all_301-missing-execinfo_h.patch

2016-06-22 Thread Mike Frysinger (vapier)
vapier  16/06/22 14:03:03

  Modified: 90_all_301-missing-execinfo_h.patch
  Log:
  document boehm-gc uclibc/execinfo.h patches

Revision  ChangesPath
1.2  
src/patchsets/gcc/4.6.1/uclibc/90_all_301-missing-execinfo_h.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.6.1/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.6.1/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.6.1/uclibc/90_all_301-missing-execinfo_h.patch?r1=1.1&r2=1.2

Index: 90_all_301-missing-execinfo_h.patch
===
RCS file: 
/var/cvsroot/gentoo/src/patchsets/gcc/4.6.1/uclibc/90_all_301-missing-execinfo_h.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- 90_all_301-missing-execinfo_h.patch 5 Jul 2011 04:50:50 -   1.1
+++ 90_all_301-missing-execinfo_h.patch 22 Jun 2016 14:03:03 -  1.2
@@ -1,5 +1,11 @@
 gcc-4.0.0/boehm-gc/include/gc.h-orig   2005-04-28 22:28:57.0 
-0500
-+++ gcc-4.0.0/boehm-gc/include/gc.h2005-04-28 22:30:38.0 -0500
+https://github.com/ivmai/bdwgc/commit/76b3d3a57583fdb19152f4d911b11725e31b4a06
+
+2007-12-18  Hans Boehm  (really Radek Polak)
+
+   * include/gc.h: Don't define GC_HAVE_BUILTIN_BACKTRACE for uclibc.
+
+--- a/boehm-gc/include/gc.h
 b/boehm-gc/include/gc.h
 @@ -500,7 +500,7 @@
  #ifdef __linux__
  # include 






[gentoo-commits] gentoo commit in src/patchsets/gcc/4.5.2/uclibc: 90_all_301-missing-execinfo_h.patch

2016-06-22 Thread Mike Frysinger (vapier)
vapier  16/06/22 14:03:03

  Modified: 90_all_301-missing-execinfo_h.patch
  Log:
  document boehm-gc uclibc/execinfo.h patches

Revision  ChangesPath
1.2  
src/patchsets/gcc/4.5.2/uclibc/90_all_301-missing-execinfo_h.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.5.2/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.5.2/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.5.2/uclibc/90_all_301-missing-execinfo_h.patch?r1=1.1&r2=1.2

Index: 90_all_301-missing-execinfo_h.patch
===
RCS file: 
/var/cvsroot/gentoo/src/patchsets/gcc/4.5.2/uclibc/90_all_301-missing-execinfo_h.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- 90_all_301-missing-execinfo_h.patch 26 Dec 2010 04:21:47 -  1.1
+++ 90_all_301-missing-execinfo_h.patch 22 Jun 2016 14:03:03 -  1.2
@@ -1,5 +1,11 @@
 gcc-4.0.0/boehm-gc/include/gc.h-orig   2005-04-28 22:28:57.0 
-0500
-+++ gcc-4.0.0/boehm-gc/include/gc.h2005-04-28 22:30:38.0 -0500
+https://github.com/ivmai/bdwgc/commit/76b3d3a57583fdb19152f4d911b11725e31b4a06
+
+2007-12-18  Hans Boehm  (really Radek Polak)
+
+   * include/gc.h: Don't define GC_HAVE_BUILTIN_BACKTRACE for uclibc.
+
+--- a/boehm-gc/include/gc.h
 b/boehm-gc/include/gc.h
 @@ -500,7 +500,7 @@
  #ifdef __linux__
  # include 






[gentoo-commits] gentoo commit in src/patchsets/gcc/4.5.0/uclibc: 90_all_301-missing-execinfo_h.patch

2016-06-22 Thread Mike Frysinger (vapier)
vapier  16/06/22 14:03:03

  Modified: 90_all_301-missing-execinfo_h.patch
  Log:
  document boehm-gc uclibc/execinfo.h patches

Revision  ChangesPath
1.2  
src/patchsets/gcc/4.5.0/uclibc/90_all_301-missing-execinfo_h.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.5.0/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.5.0/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.5.0/uclibc/90_all_301-missing-execinfo_h.patch?r1=1.1&r2=1.2

Index: 90_all_301-missing-execinfo_h.patch
===
RCS file: 
/var/cvsroot/gentoo/src/patchsets/gcc/4.5.0/uclibc/90_all_301-missing-execinfo_h.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- 90_all_301-missing-execinfo_h.patch 24 Apr 2010 23:44:28 -  1.1
+++ 90_all_301-missing-execinfo_h.patch 22 Jun 2016 14:03:03 -  1.2
@@ -1,5 +1,11 @@
 gcc-4.0.0/boehm-gc/include/gc.h-orig   2005-04-28 22:28:57.0 
-0500
-+++ gcc-4.0.0/boehm-gc/include/gc.h2005-04-28 22:30:38.0 -0500
+https://github.com/ivmai/bdwgc/commit/76b3d3a57583fdb19152f4d911b11725e31b4a06
+
+2007-12-18  Hans Boehm  (really Radek Polak)
+
+   * include/gc.h: Don't define GC_HAVE_BUILTIN_BACKTRACE for uclibc.
+
+--- a/boehm-gc/include/gc.h
 b/boehm-gc/include/gc.h
 @@ -500,7 +500,7 @@
  #ifdef __linux__
  # include 






[gentoo-commits] gentoo commit in src/patchsets/gcc/4.5.3/uclibc: 90_all_301-missing-execinfo_h.patch

2016-06-22 Thread Mike Frysinger (vapier)
vapier  16/06/22 14:03:03

  Modified: 90_all_301-missing-execinfo_h.patch
  Log:
  document boehm-gc uclibc/execinfo.h patches

Revision  ChangesPath
1.2  
src/patchsets/gcc/4.5.3/uclibc/90_all_301-missing-execinfo_h.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.5.3/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.5.3/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.5.3/uclibc/90_all_301-missing-execinfo_h.patch?r1=1.1&r2=1.2

Index: 90_all_301-missing-execinfo_h.patch
===
RCS file: 
/var/cvsroot/gentoo/src/patchsets/gcc/4.5.3/uclibc/90_all_301-missing-execinfo_h.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- 90_all_301-missing-execinfo_h.patch 4 Aug 2011 03:10:22 -   1.1
+++ 90_all_301-missing-execinfo_h.patch 22 Jun 2016 14:03:03 -  1.2
@@ -1,5 +1,11 @@
 gcc-4.0.0/boehm-gc/include/gc.h-orig   2005-04-28 22:28:57.0 
-0500
-+++ gcc-4.0.0/boehm-gc/include/gc.h2005-04-28 22:30:38.0 -0500
+https://github.com/ivmai/bdwgc/commit/76b3d3a57583fdb19152f4d911b11725e31b4a06
+
+2007-12-18  Hans Boehm  (really Radek Polak)
+
+   * include/gc.h: Don't define GC_HAVE_BUILTIN_BACKTRACE for uclibc.
+
+--- a/boehm-gc/include/gc.h
 b/boehm-gc/include/gc.h
 @@ -500,7 +500,7 @@
  #ifdef __linux__
  # include 






[gentoo-commits] gentoo commit in src/patchsets/gcc/4.2.4/uclibc: 90_all_301-missing-execinfo_h.patch

2016-06-22 Thread Mike Frysinger (vapier)
vapier  16/06/22 14:03:02

  Modified: 90_all_301-missing-execinfo_h.patch
  Log:
  document boehm-gc uclibc/execinfo.h patches

Revision  ChangesPath
1.2  
src/patchsets/gcc/4.2.4/uclibc/90_all_301-missing-execinfo_h.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.2.4/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.2.4/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.2.4/uclibc/90_all_301-missing-execinfo_h.patch?r1=1.1&r2=1.2

Index: 90_all_301-missing-execinfo_h.patch
===
RCS file: 
/var/cvsroot/gentoo/src/patchsets/gcc/4.2.4/uclibc/90_all_301-missing-execinfo_h.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- 90_all_301-missing-execinfo_h.patch 23 May 2008 02:25:21 -  1.1
+++ 90_all_301-missing-execinfo_h.patch 22 Jun 2016 14:03:02 -  1.2
@@ -1,5 +1,11 @@
 gcc-4.0.0/boehm-gc/include/gc.h-orig   2005-04-28 22:28:57.0 
-0500
-+++ gcc-4.0.0/boehm-gc/include/gc.h2005-04-28 22:30:38.0 -0500
+https://github.com/ivmai/bdwgc/commit/76b3d3a57583fdb19152f4d911b11725e31b4a06
+
+2007-12-18  Hans Boehm  (really Radek Polak)
+
+   * include/gc.h: Don't define GC_HAVE_BUILTIN_BACKTRACE for uclibc.
+
+--- a/boehm-gc/include/gc.h
 b/boehm-gc/include/gc.h
 @@ -500,7 +500,7 @@
  #ifdef __linux__
  # include 






[gentoo-commits] gentoo commit in src/patchsets/gcc/4.2.0/uclibc: 90_all_301-missing-execinfo_h.patch

2016-06-22 Thread Mike Frysinger (vapier)
vapier  16/06/22 14:03:02

  Modified: 90_all_301-missing-execinfo_h.patch
  Log:
  document boehm-gc uclibc/execinfo.h patches

Revision  ChangesPath
1.2  
src/patchsets/gcc/4.2.0/uclibc/90_all_301-missing-execinfo_h.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.2.0/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.2.0/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.2.0/uclibc/90_all_301-missing-execinfo_h.patch?r1=1.1&r2=1.2

Index: 90_all_301-missing-execinfo_h.patch
===
RCS file: 
/var/cvsroot/gentoo/src/patchsets/gcc/4.2.0/uclibc/90_all_301-missing-execinfo_h.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- 90_all_301-missing-execinfo_h.patch 19 May 2007 03:20:17 -  1.1
+++ 90_all_301-missing-execinfo_h.patch 22 Jun 2016 14:03:02 -  1.2
@@ -1,5 +1,11 @@
 gcc-4.0.0/boehm-gc/include/gc.h-orig   2005-04-28 22:28:57.0 
-0500
-+++ gcc-4.0.0/boehm-gc/include/gc.h2005-04-28 22:30:38.0 -0500
+https://github.com/ivmai/bdwgc/commit/76b3d3a57583fdb19152f4d911b11725e31b4a06
+
+2007-12-18  Hans Boehm  (really Radek Polak)
+
+   * include/gc.h: Don't define GC_HAVE_BUILTIN_BACKTRACE for uclibc.
+
+--- a/boehm-gc/include/gc.h
 b/boehm-gc/include/gc.h
 @@ -500,7 +500,7 @@
  #ifdef __linux__
  # include 






[gentoo-commits] gentoo commit in src/patchsets/gcc/4.3.2/uclibc: 90_all_301-missing-execinfo_h.patch

2016-06-22 Thread Mike Frysinger (vapier)
vapier  16/06/22 14:03:02

  Modified: 90_all_301-missing-execinfo_h.patch
  Log:
  document boehm-gc uclibc/execinfo.h patches

Revision  ChangesPath
1.2  
src/patchsets/gcc/4.3.2/uclibc/90_all_301-missing-execinfo_h.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.3.2/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.3.2/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.3.2/uclibc/90_all_301-missing-execinfo_h.patch?r1=1.1&r2=1.2

Index: 90_all_301-missing-execinfo_h.patch
===
RCS file: 
/var/cvsroot/gentoo/src/patchsets/gcc/4.3.2/uclibc/90_all_301-missing-execinfo_h.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- 90_all_301-missing-execinfo_h.patch 6 Sep 2008 20:37:08 -   1.1
+++ 90_all_301-missing-execinfo_h.patch 22 Jun 2016 14:03:02 -  1.2
@@ -1,5 +1,11 @@
 gcc-4.0.0/boehm-gc/include/gc.h-orig   2005-04-28 22:28:57.0 
-0500
-+++ gcc-4.0.0/boehm-gc/include/gc.h2005-04-28 22:30:38.0 -0500
+https://github.com/ivmai/bdwgc/commit/76b3d3a57583fdb19152f4d911b11725e31b4a06
+
+2007-12-18  Hans Boehm  (really Radek Polak)
+
+   * include/gc.h: Don't define GC_HAVE_BUILTIN_BACKTRACE for uclibc.
+
+--- a/boehm-gc/include/gc.h
 b/boehm-gc/include/gc.h
 @@ -500,7 +500,7 @@
  #ifdef __linux__
  # include 






[gentoo-commits] gentoo commit in src/patchsets/gcc/4.8.0/uclibc: 90_all_301-missing-execinfo_h.patch

2016-06-22 Thread Mike Frysinger (vapier)
vapier  16/06/22 14:03:04

  Modified: 90_all_301-missing-execinfo_h.patch
  Log:
  document boehm-gc uclibc/execinfo.h patches

Revision  ChangesPath
1.2  
src/patchsets/gcc/4.8.0/uclibc/90_all_301-missing-execinfo_h.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.8.0/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.8.0/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.8.0/uclibc/90_all_301-missing-execinfo_h.patch?r1=1.1&r2=1.2

Index: 90_all_301-missing-execinfo_h.patch
===
RCS file: 
/var/cvsroot/gentoo/src/patchsets/gcc/4.8.0/uclibc/90_all_301-missing-execinfo_h.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- 90_all_301-missing-execinfo_h.patch 31 Mar 2013 05:36:54 -  1.1
+++ 90_all_301-missing-execinfo_h.patch 22 Jun 2016 14:03:04 -  1.2
@@ -1,5 +1,11 @@
 gcc-4.0.0/boehm-gc/include/gc.h-orig   2005-04-28 22:28:57.0 
-0500
-+++ gcc-4.0.0/boehm-gc/include/gc.h2005-04-28 22:30:38.0 -0500
+https://github.com/ivmai/bdwgc/commit/76b3d3a57583fdb19152f4d911b11725e31b4a06
+
+2007-12-18  Hans Boehm  (really Radek Polak)
+
+   * include/gc.h: Don't define GC_HAVE_BUILTIN_BACKTRACE for uclibc.
+
+--- a/boehm-gc/include/gc.h
 b/boehm-gc/include/gc.h
 @@ -500,7 +500,7 @@
  #ifdef __linux__
  # include 






[gentoo-commits] gentoo commit in src/patchsets/gcc/4.3.4/uclibc: 90_all_301-missing-execinfo_h.patch

2016-06-22 Thread Mike Frysinger (vapier)
vapier  16/06/22 14:03:02

  Modified: 90_all_301-missing-execinfo_h.patch
  Log:
  document boehm-gc uclibc/execinfo.h patches

Revision  ChangesPath
1.2  
src/patchsets/gcc/4.3.4/uclibc/90_all_301-missing-execinfo_h.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.3.4/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.3.4/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.3.4/uclibc/90_all_301-missing-execinfo_h.patch?r1=1.1&r2=1.2

Index: 90_all_301-missing-execinfo_h.patch
===
RCS file: 
/var/cvsroot/gentoo/src/patchsets/gcc/4.3.4/uclibc/90_all_301-missing-execinfo_h.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- 90_all_301-missing-execinfo_h.patch 7 Aug 2009 23:54:39 -   1.1
+++ 90_all_301-missing-execinfo_h.patch 22 Jun 2016 14:03:02 -  1.2
@@ -1,5 +1,11 @@
 gcc-4.0.0/boehm-gc/include/gc.h-orig   2005-04-28 22:28:57.0 
-0500
-+++ gcc-4.0.0/boehm-gc/include/gc.h2005-04-28 22:30:38.0 -0500
+https://github.com/ivmai/bdwgc/commit/76b3d3a57583fdb19152f4d911b11725e31b4a06
+
+2007-12-18  Hans Boehm  (really Radek Polak)
+
+   * include/gc.h: Don't define GC_HAVE_BUILTIN_BACKTRACE for uclibc.
+
+--- a/boehm-gc/include/gc.h
 b/boehm-gc/include/gc.h
 @@ -500,7 +500,7 @@
  #ifdef __linux__
  # include 






[gentoo-commits] gentoo commit in src/patchsets/gcc/4.6.4/uclibc: 90_all_301-missing-execinfo_h.patch

2016-06-22 Thread Mike Frysinger (vapier)
vapier  16/06/22 14:03:04

  Modified: 90_all_301-missing-execinfo_h.patch
  Log:
  document boehm-gc uclibc/execinfo.h patches

Revision  ChangesPath
1.2  
src/patchsets/gcc/4.6.4/uclibc/90_all_301-missing-execinfo_h.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.6.4/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.6.4/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.6.4/uclibc/90_all_301-missing-execinfo_h.patch?r1=1.1&r2=1.2

Index: 90_all_301-missing-execinfo_h.patch
===
RCS file: 
/var/cvsroot/gentoo/src/patchsets/gcc/4.6.4/uclibc/90_all_301-missing-execinfo_h.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- 90_all_301-missing-execinfo_h.patch 16 Apr 2013 05:22:57 -  1.1
+++ 90_all_301-missing-execinfo_h.patch 22 Jun 2016 14:03:04 -  1.2
@@ -1,5 +1,11 @@
 gcc-4.0.0/boehm-gc/include/gc.h-orig   2005-04-28 22:28:57.0 
-0500
-+++ gcc-4.0.0/boehm-gc/include/gc.h2005-04-28 22:30:38.0 -0500
+https://github.com/ivmai/bdwgc/commit/76b3d3a57583fdb19152f4d911b11725e31b4a06
+
+2007-12-18  Hans Boehm  (really Radek Polak)
+
+   * include/gc.h: Don't define GC_HAVE_BUILTIN_BACKTRACE for uclibc.
+
+--- a/boehm-gc/include/gc.h
 b/boehm-gc/include/gc.h
 @@ -500,7 +500,7 @@
  #ifdef __linux__
  # include 






[gentoo-commits] gentoo commit in src/patchsets/gcc/4.3.3/uclibc: 90_all_301-missing-execinfo_h.patch

2016-06-22 Thread Mike Frysinger (vapier)
vapier  16/06/22 14:03:02

  Modified: 90_all_301-missing-execinfo_h.patch
  Log:
  document boehm-gc uclibc/execinfo.h patches

Revision  ChangesPath
1.2  
src/patchsets/gcc/4.3.3/uclibc/90_all_301-missing-execinfo_h.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.3.3/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.3.3/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.3.3/uclibc/90_all_301-missing-execinfo_h.patch?r1=1.1&r2=1.2

Index: 90_all_301-missing-execinfo_h.patch
===
RCS file: 
/var/cvsroot/gentoo/src/patchsets/gcc/4.3.3/uclibc/90_all_301-missing-execinfo_h.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- 90_all_301-missing-execinfo_h.patch 27 Jan 2009 21:31:30 -  1.1
+++ 90_all_301-missing-execinfo_h.patch 22 Jun 2016 14:03:02 -  1.2
@@ -1,5 +1,11 @@
 gcc-4.0.0/boehm-gc/include/gc.h-orig   2005-04-28 22:28:57.0 
-0500
-+++ gcc-4.0.0/boehm-gc/include/gc.h2005-04-28 22:30:38.0 -0500
+https://github.com/ivmai/bdwgc/commit/76b3d3a57583fdb19152f4d911b11725e31b4a06
+
+2007-12-18  Hans Boehm  (really Radek Polak)
+
+   * include/gc.h: Don't define GC_HAVE_BUILTIN_BACKTRACE for uclibc.
+
+--- a/boehm-gc/include/gc.h
 b/boehm-gc/include/gc.h
 @@ -500,7 +500,7 @@
  #ifdef __linux__
  # include 






[gentoo-commits] gentoo commit in src/patchsets/gcc/4.4.1/uclibc: 90_all_301-missing-execinfo_h.patch

2016-06-22 Thread Mike Frysinger (vapier)
vapier  16/06/22 14:03:03

  Modified: 90_all_301-missing-execinfo_h.patch
  Log:
  document boehm-gc uclibc/execinfo.h patches

Revision  ChangesPath
1.2  
src/patchsets/gcc/4.4.1/uclibc/90_all_301-missing-execinfo_h.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.4.1/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.4.1/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.4.1/uclibc/90_all_301-missing-execinfo_h.patch?r1=1.1&r2=1.2

Index: 90_all_301-missing-execinfo_h.patch
===
RCS file: 
/var/cvsroot/gentoo/src/patchsets/gcc/4.4.1/uclibc/90_all_301-missing-execinfo_h.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- 90_all_301-missing-execinfo_h.patch 23 Jul 2009 00:55:24 -  1.1
+++ 90_all_301-missing-execinfo_h.patch 22 Jun 2016 14:03:02 -  1.2
@@ -1,5 +1,11 @@
 gcc-4.0.0/boehm-gc/include/gc.h-orig   2005-04-28 22:28:57.0 
-0500
-+++ gcc-4.0.0/boehm-gc/include/gc.h2005-04-28 22:30:38.0 -0500
+https://github.com/ivmai/bdwgc/commit/76b3d3a57583fdb19152f4d911b11725e31b4a06
+
+2007-12-18  Hans Boehm  (really Radek Polak)
+
+   * include/gc.h: Don't define GC_HAVE_BUILTIN_BACKTRACE for uclibc.
+
+--- a/boehm-gc/include/gc.h
 b/boehm-gc/include/gc.h
 @@ -500,7 +500,7 @@
  #ifdef __linux__
  # include 






[gentoo-commits] gentoo commit in src/patchsets/gcc/4.2.3/uclibc: 90_all_301-missing-execinfo_h.patch

2016-06-22 Thread Mike Frysinger (vapier)
vapier  16/06/22 14:03:02

  Modified: 90_all_301-missing-execinfo_h.patch
  Log:
  document boehm-gc uclibc/execinfo.h patches

Revision  ChangesPath
1.2  
src/patchsets/gcc/4.2.3/uclibc/90_all_301-missing-execinfo_h.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.2.3/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.2.3/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.2.3/uclibc/90_all_301-missing-execinfo_h.patch?r1=1.1&r2=1.2

Index: 90_all_301-missing-execinfo_h.patch
===
RCS file: 
/var/cvsroot/gentoo/src/patchsets/gcc/4.2.3/uclibc/90_all_301-missing-execinfo_h.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- 90_all_301-missing-execinfo_h.patch 16 Feb 2008 22:24:13 -  1.1
+++ 90_all_301-missing-execinfo_h.patch 22 Jun 2016 14:03:02 -  1.2
@@ -1,5 +1,11 @@
 gcc-4.0.0/boehm-gc/include/gc.h-orig   2005-04-28 22:28:57.0 
-0500
-+++ gcc-4.0.0/boehm-gc/include/gc.h2005-04-28 22:30:38.0 -0500
+https://github.com/ivmai/bdwgc/commit/76b3d3a57583fdb19152f4d911b11725e31b4a06
+
+2007-12-18  Hans Boehm  (really Radek Polak)
+
+   * include/gc.h: Don't define GC_HAVE_BUILTIN_BACKTRACE for uclibc.
+
+--- a/boehm-gc/include/gc.h
 b/boehm-gc/include/gc.h
 @@ -500,7 +500,7 @@
  #ifdef __linux__
  # include 






[gentoo-commits] gentoo commit in src/patchsets/gcc/4.3.6/uclibc: 90_all_301-missing-execinfo_h.patch

2016-06-22 Thread Mike Frysinger (vapier)
vapier  16/06/22 14:03:02

  Modified: 90_all_301-missing-execinfo_h.patch
  Log:
  document boehm-gc uclibc/execinfo.h patches

Revision  ChangesPath
1.2  
src/patchsets/gcc/4.3.6/uclibc/90_all_301-missing-execinfo_h.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.3.6/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.3.6/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.3.6/uclibc/90_all_301-missing-execinfo_h.patch?r1=1.1&r2=1.2

Index: 90_all_301-missing-execinfo_h.patch
===
RCS file: 
/var/cvsroot/gentoo/src/patchsets/gcc/4.3.6/uclibc/90_all_301-missing-execinfo_h.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- 90_all_301-missing-execinfo_h.patch 1 Jul 2011 07:17:43 -   1.1
+++ 90_all_301-missing-execinfo_h.patch 22 Jun 2016 14:03:02 -  1.2
@@ -1,5 +1,11 @@
 gcc-4.0.0/boehm-gc/include/gc.h-orig   2005-04-28 22:28:57.0 
-0500
-+++ gcc-4.0.0/boehm-gc/include/gc.h2005-04-28 22:30:38.0 -0500
+https://github.com/ivmai/bdwgc/commit/76b3d3a57583fdb19152f4d911b11725e31b4a06
+
+2007-12-18  Hans Boehm  (really Radek Polak)
+
+   * include/gc.h: Don't define GC_HAVE_BUILTIN_BACKTRACE for uclibc.
+
+--- a/boehm-gc/include/gc.h
 b/boehm-gc/include/gc.h
 @@ -500,7 +500,7 @@
  #ifdef __linux__
  # include 






[gentoo-commits] gentoo commit in src/patchsets/gcc/4.6.0/uclibc: 90_all_301-missing-execinfo_h.patch

2016-06-22 Thread Mike Frysinger (vapier)
vapier  16/06/22 14:03:03

  Modified: 90_all_301-missing-execinfo_h.patch
  Log:
  document boehm-gc uclibc/execinfo.h patches

Revision  ChangesPath
1.2  
src/patchsets/gcc/4.6.0/uclibc/90_all_301-missing-execinfo_h.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.6.0/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.6.0/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.6.0/uclibc/90_all_301-missing-execinfo_h.patch?r1=1.1&r2=1.2

Index: 90_all_301-missing-execinfo_h.patch
===
RCS file: 
/var/cvsroot/gentoo/src/patchsets/gcc/4.6.0/uclibc/90_all_301-missing-execinfo_h.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- 90_all_301-missing-execinfo_h.patch 3 Apr 2011 00:11:26 -   1.1
+++ 90_all_301-missing-execinfo_h.patch 22 Jun 2016 14:03:03 -  1.2
@@ -1,5 +1,11 @@
 gcc-4.0.0/boehm-gc/include/gc.h-orig   2005-04-28 22:28:57.0 
-0500
-+++ gcc-4.0.0/boehm-gc/include/gc.h2005-04-28 22:30:38.0 -0500
+https://github.com/ivmai/bdwgc/commit/76b3d3a57583fdb19152f4d911b11725e31b4a06
+
+2007-12-18  Hans Boehm  (really Radek Polak)
+
+   * include/gc.h: Don't define GC_HAVE_BUILTIN_BACKTRACE for uclibc.
+
+--- a/boehm-gc/include/gc.h
 b/boehm-gc/include/gc.h
 @@ -500,7 +500,7 @@
  #ifdef __linux__
  # include 






[gentoo-commits] gentoo commit in src/patchsets/gcc/4.4.3/uclibc: 90_all_301-missing-execinfo_h.patch

2016-06-22 Thread Mike Frysinger (vapier)
vapier  16/06/22 14:03:03

  Modified: 90_all_301-missing-execinfo_h.patch
  Log:
  document boehm-gc uclibc/execinfo.h patches

Revision  ChangesPath
1.2  
src/patchsets/gcc/4.4.3/uclibc/90_all_301-missing-execinfo_h.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.4.3/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.4.3/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.4.3/uclibc/90_all_301-missing-execinfo_h.patch?r1=1.1&r2=1.2

Index: 90_all_301-missing-execinfo_h.patch
===
RCS file: 
/var/cvsroot/gentoo/src/patchsets/gcc/4.4.3/uclibc/90_all_301-missing-execinfo_h.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- 90_all_301-missing-execinfo_h.patch 8 Feb 2010 12:57:32 -   1.1
+++ 90_all_301-missing-execinfo_h.patch 22 Jun 2016 14:03:03 -  1.2
@@ -1,5 +1,11 @@
 gcc-4.0.0/boehm-gc/include/gc.h-orig   2005-04-28 22:28:57.0 
-0500
-+++ gcc-4.0.0/boehm-gc/include/gc.h2005-04-28 22:30:38.0 -0500
+https://github.com/ivmai/bdwgc/commit/76b3d3a57583fdb19152f4d911b11725e31b4a06
+
+2007-12-18  Hans Boehm  (really Radek Polak)
+
+   * include/gc.h: Don't define GC_HAVE_BUILTIN_BACKTRACE for uclibc.
+
+--- a/boehm-gc/include/gc.h
 b/boehm-gc/include/gc.h
 @@ -500,7 +500,7 @@
  #ifdef __linux__
  # include 






[gentoo-commits] gentoo commit in src/patchsets/gcc/4.3.5/uclibc: 90_all_301-missing-execinfo_h.patch

2016-06-22 Thread Mike Frysinger (vapier)
vapier  16/06/22 14:03:02

  Modified: 90_all_301-missing-execinfo_h.patch
  Log:
  document boehm-gc uclibc/execinfo.h patches

Revision  ChangesPath
1.2  
src/patchsets/gcc/4.3.5/uclibc/90_all_301-missing-execinfo_h.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.3.5/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.3.5/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.3.5/uclibc/90_all_301-missing-execinfo_h.patch?r1=1.1&r2=1.2

Index: 90_all_301-missing-execinfo_h.patch
===
RCS file: 
/var/cvsroot/gentoo/src/patchsets/gcc/4.3.5/uclibc/90_all_301-missing-execinfo_h.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- 90_all_301-missing-execinfo_h.patch 10 Jun 2010 03:03:26 -  1.1
+++ 90_all_301-missing-execinfo_h.patch 22 Jun 2016 14:03:02 -  1.2
@@ -1,5 +1,11 @@
 gcc-4.0.0/boehm-gc/include/gc.h-orig   2005-04-28 22:28:57.0 
-0500
-+++ gcc-4.0.0/boehm-gc/include/gc.h2005-04-28 22:30:38.0 -0500
+https://github.com/ivmai/bdwgc/commit/76b3d3a57583fdb19152f4d911b11725e31b4a06
+
+2007-12-18  Hans Boehm  (really Radek Polak)
+
+   * include/gc.h: Don't define GC_HAVE_BUILTIN_BACKTRACE for uclibc.
+
+--- a/boehm-gc/include/gc.h
 b/boehm-gc/include/gc.h
 @@ -500,7 +500,7 @@
  #ifdef __linux__
  # include 






[gentoo-commits] gentoo commit in src/patchsets/gcc/4.3.0/uclibc: 90_all_301-missing-execinfo_h.patch

2016-06-22 Thread Mike Frysinger (vapier)
vapier  16/06/22 14:03:02

  Modified: 90_all_301-missing-execinfo_h.patch
  Log:
  document boehm-gc uclibc/execinfo.h patches

Revision  ChangesPath
1.2  
src/patchsets/gcc/4.3.0/uclibc/90_all_301-missing-execinfo_h.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.3.0/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.3.0/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.3.0/uclibc/90_all_301-missing-execinfo_h.patch?r1=1.1&r2=1.2

Index: 90_all_301-missing-execinfo_h.patch
===
RCS file: 
/var/cvsroot/gentoo/src/patchsets/gcc/4.3.0/uclibc/90_all_301-missing-execinfo_h.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- 90_all_301-missing-execinfo_h.patch 17 Mar 2008 03:37:06 -  1.1
+++ 90_all_301-missing-execinfo_h.patch 22 Jun 2016 14:03:02 -  1.2
@@ -1,5 +1,11 @@
 gcc-4.0.0/boehm-gc/include/gc.h-orig   2005-04-28 22:28:57.0 
-0500
-+++ gcc-4.0.0/boehm-gc/include/gc.h2005-04-28 22:30:38.0 -0500
+https://github.com/ivmai/bdwgc/commit/76b3d3a57583fdb19152f4d911b11725e31b4a06
+
+2007-12-18  Hans Boehm  (really Radek Polak)
+
+   * include/gc.h: Don't define GC_HAVE_BUILTIN_BACKTRACE for uclibc.
+
+--- a/boehm-gc/include/gc.h
 b/boehm-gc/include/gc.h
 @@ -500,7 +500,7 @@
  #ifdef __linux__
  # include 






[gentoo-commits] gentoo commit in src/patchsets/gcc/4.4.2/uclibc: 90_all_301-missing-execinfo_h.patch

2016-06-22 Thread Mike Frysinger (vapier)
vapier  16/06/22 14:03:03

  Modified: 90_all_301-missing-execinfo_h.patch
  Log:
  document boehm-gc uclibc/execinfo.h patches

Revision  ChangesPath
1.2  
src/patchsets/gcc/4.4.2/uclibc/90_all_301-missing-execinfo_h.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.4.2/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.4.2/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.4.2/uclibc/90_all_301-missing-execinfo_h.patch?r1=1.1&r2=1.2

Index: 90_all_301-missing-execinfo_h.patch
===
RCS file: 
/var/cvsroot/gentoo/src/patchsets/gcc/4.4.2/uclibc/90_all_301-missing-execinfo_h.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- 90_all_301-missing-execinfo_h.patch 17 Oct 2009 20:10:45 -  1.1
+++ 90_all_301-missing-execinfo_h.patch 22 Jun 2016 14:03:03 -  1.2
@@ -1,5 +1,11 @@
 gcc-4.0.0/boehm-gc/include/gc.h-orig   2005-04-28 22:28:57.0 
-0500
-+++ gcc-4.0.0/boehm-gc/include/gc.h2005-04-28 22:30:38.0 -0500
+https://github.com/ivmai/bdwgc/commit/76b3d3a57583fdb19152f4d911b11725e31b4a06
+
+2007-12-18  Hans Boehm  (really Radek Polak)
+
+   * include/gc.h: Don't define GC_HAVE_BUILTIN_BACKTRACE for uclibc.
+
+--- a/boehm-gc/include/gc.h
 b/boehm-gc/include/gc.h
 @@ -500,7 +500,7 @@
  #ifdef __linux__
  # include 






[gentoo-commits] gentoo commit in src/patchsets/gcc/4.4.0/uclibc: 90_all_301-missing-execinfo_h.patch

2016-06-22 Thread Mike Frysinger (vapier)
vapier  16/06/22 14:03:02

  Modified: 90_all_301-missing-execinfo_h.patch
  Log:
  document boehm-gc uclibc/execinfo.h patches

Revision  ChangesPath
1.2  
src/patchsets/gcc/4.4.0/uclibc/90_all_301-missing-execinfo_h.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.4.0/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.4.0/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.4.0/uclibc/90_all_301-missing-execinfo_h.patch?r1=1.1&r2=1.2

Index: 90_all_301-missing-execinfo_h.patch
===
RCS file: 
/var/cvsroot/gentoo/src/patchsets/gcc/4.4.0/uclibc/90_all_301-missing-execinfo_h.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- 90_all_301-missing-execinfo_h.patch 24 May 2009 19:39:56 -  1.1
+++ 90_all_301-missing-execinfo_h.patch 22 Jun 2016 14:03:02 -  1.2
@@ -1,5 +1,11 @@
 gcc-4.0.0/boehm-gc/include/gc.h-orig   2005-04-28 22:28:57.0 
-0500
-+++ gcc-4.0.0/boehm-gc/include/gc.h2005-04-28 22:30:38.0 -0500
+https://github.com/ivmai/bdwgc/commit/76b3d3a57583fdb19152f4d911b11725e31b4a06
+
+2007-12-18  Hans Boehm  (really Radek Polak)
+
+   * include/gc.h: Don't define GC_HAVE_BUILTIN_BACKTRACE for uclibc.
+
+--- a/boehm-gc/include/gc.h
 b/boehm-gc/include/gc.h
 @@ -500,7 +500,7 @@
  #ifdef __linux__
  # include 






[gentoo-commits] gentoo commit in src/patchsets/gcc/4.3.1/uclibc: 90_all_301-missing-execinfo_h.patch

2016-06-22 Thread Mike Frysinger (vapier)
vapier  16/06/22 14:03:02

  Modified: 90_all_301-missing-execinfo_h.patch
  Log:
  document boehm-gc uclibc/execinfo.h patches

Revision  ChangesPath
1.2  
src/patchsets/gcc/4.3.1/uclibc/90_all_301-missing-execinfo_h.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.3.1/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.3.1/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.3.1/uclibc/90_all_301-missing-execinfo_h.patch?r1=1.1&r2=1.2

Index: 90_all_301-missing-execinfo_h.patch
===
RCS file: 
/var/cvsroot/gentoo/src/patchsets/gcc/4.3.1/uclibc/90_all_301-missing-execinfo_h.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- 90_all_301-missing-execinfo_h.patch 9 Jun 2008 02:32:48 -   1.1
+++ 90_all_301-missing-execinfo_h.patch 22 Jun 2016 14:03:02 -  1.2
@@ -1,5 +1,11 @@
 gcc-4.0.0/boehm-gc/include/gc.h-orig   2005-04-28 22:28:57.0 
-0500
-+++ gcc-4.0.0/boehm-gc/include/gc.h2005-04-28 22:30:38.0 -0500
+https://github.com/ivmai/bdwgc/commit/76b3d3a57583fdb19152f4d911b11725e31b4a06
+
+2007-12-18  Hans Boehm  (really Radek Polak)
+
+   * include/gc.h: Don't define GC_HAVE_BUILTIN_BACKTRACE for uclibc.
+
+--- a/boehm-gc/include/gc.h
 b/boehm-gc/include/gc.h
 @@ -500,7 +500,7 @@
  #ifdef __linux__
  # include 






[gentoo-commits] gentoo commit in src/patchsets/gcc/4.5.1/uclibc: 90_all_301-missing-execinfo_h.patch

2016-06-22 Thread Mike Frysinger (vapier)
vapier  16/06/22 14:03:03

  Modified: 90_all_301-missing-execinfo_h.patch
  Log:
  document boehm-gc uclibc/execinfo.h patches

Revision  ChangesPath
1.2  
src/patchsets/gcc/4.5.1/uclibc/90_all_301-missing-execinfo_h.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.5.1/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.5.1/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.5.1/uclibc/90_all_301-missing-execinfo_h.patch?r1=1.1&r2=1.2

Index: 90_all_301-missing-execinfo_h.patch
===
RCS file: 
/var/cvsroot/gentoo/src/patchsets/gcc/4.5.1/uclibc/90_all_301-missing-execinfo_h.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- 90_all_301-missing-execinfo_h.patch 7 Aug 2010 06:25:12 -   1.1
+++ 90_all_301-missing-execinfo_h.patch 22 Jun 2016 14:03:03 -  1.2
@@ -1,5 +1,11 @@
 gcc-4.0.0/boehm-gc/include/gc.h-orig   2005-04-28 22:28:57.0 
-0500
-+++ gcc-4.0.0/boehm-gc/include/gc.h2005-04-28 22:30:38.0 -0500
+https://github.com/ivmai/bdwgc/commit/76b3d3a57583fdb19152f4d911b11725e31b4a06
+
+2007-12-18  Hans Boehm  (really Radek Polak)
+
+   * include/gc.h: Don't define GC_HAVE_BUILTIN_BACKTRACE for uclibc.
+
+--- a/boehm-gc/include/gc.h
 b/boehm-gc/include/gc.h
 @@ -500,7 +500,7 @@
  #ifdef __linux__
  # include 






[gentoo-commits] gentoo commit in src/patchsets/gcc/4.4.6/uclibc: 90_all_301-missing-execinfo_h.patch

2016-06-22 Thread Mike Frysinger (vapier)
vapier  16/06/22 14:03:03

  Modified: 90_all_301-missing-execinfo_h.patch
  Log:
  document boehm-gc uclibc/execinfo.h patches

Revision  ChangesPath
1.2  
src/patchsets/gcc/4.4.6/uclibc/90_all_301-missing-execinfo_h.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.4.6/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.4.6/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.4.6/uclibc/90_all_301-missing-execinfo_h.patch?r1=1.1&r2=1.2

Index: 90_all_301-missing-execinfo_h.patch
===
RCS file: 
/var/cvsroot/gentoo/src/patchsets/gcc/4.4.6/uclibc/90_all_301-missing-execinfo_h.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- 90_all_301-missing-execinfo_h.patch 20 Jul 2011 06:13:37 -  1.1
+++ 90_all_301-missing-execinfo_h.patch 22 Jun 2016 14:03:03 -  1.2
@@ -1,5 +1,11 @@
 gcc-4.0.0/boehm-gc/include/gc.h-orig   2005-04-28 22:28:57.0 
-0500
-+++ gcc-4.0.0/boehm-gc/include/gc.h2005-04-28 22:30:38.0 -0500
+https://github.com/ivmai/bdwgc/commit/76b3d3a57583fdb19152f4d911b11725e31b4a06
+
+2007-12-18  Hans Boehm  (really Radek Polak)
+
+   * include/gc.h: Don't define GC_HAVE_BUILTIN_BACKTRACE for uclibc.
+
+--- a/boehm-gc/include/gc.h
 b/boehm-gc/include/gc.h
 @@ -500,7 +500,7 @@
  #ifdef __linux__
  # include 






[gentoo-commits] gentoo commit in src/patchsets/gcc/4.4.7/uclibc: 90_all_301-missing-execinfo_h.patch

2016-06-22 Thread Mike Frysinger (vapier)
vapier  16/06/22 14:03:03

  Modified: 90_all_301-missing-execinfo_h.patch
  Log:
  document boehm-gc uclibc/execinfo.h patches

Revision  ChangesPath
1.2  
src/patchsets/gcc/4.4.7/uclibc/90_all_301-missing-execinfo_h.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.4.7/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.4.7/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.4.7/uclibc/90_all_301-missing-execinfo_h.patch?r1=1.1&r2=1.2

Index: 90_all_301-missing-execinfo_h.patch
===
RCS file: 
/var/cvsroot/gentoo/src/patchsets/gcc/4.4.7/uclibc/90_all_301-missing-execinfo_h.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- 90_all_301-missing-execinfo_h.patch 27 Mar 2012 04:49:29 -  1.1
+++ 90_all_301-missing-execinfo_h.patch 22 Jun 2016 14:03:03 -  1.2
@@ -1,5 +1,11 @@
 gcc-4.0.0/boehm-gc/include/gc.h-orig   2005-04-28 22:28:57.0 
-0500
-+++ gcc-4.0.0/boehm-gc/include/gc.h2005-04-28 22:30:38.0 -0500
+https://github.com/ivmai/bdwgc/commit/76b3d3a57583fdb19152f4d911b11725e31b4a06
+
+2007-12-18  Hans Boehm  (really Radek Polak)
+
+   * include/gc.h: Don't define GC_HAVE_BUILTIN_BACKTRACE for uclibc.
+
+--- a/boehm-gc/include/gc.h
 b/boehm-gc/include/gc.h
 @@ -500,7 +500,7 @@
  #ifdef __linux__
  # include 






[gentoo-commits] gentoo commit in src/patchsets/gcc/4.4.5/uclibc: 90_all_301-missing-execinfo_h.patch

2016-06-22 Thread Mike Frysinger (vapier)
vapier  16/06/22 14:03:03

  Modified: 90_all_301-missing-execinfo_h.patch
  Log:
  document boehm-gc uclibc/execinfo.h patches

Revision  ChangesPath
1.2  
src/patchsets/gcc/4.4.5/uclibc/90_all_301-missing-execinfo_h.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.4.5/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.4.5/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.4.5/uclibc/90_all_301-missing-execinfo_h.patch?r1=1.1&r2=1.2

Index: 90_all_301-missing-execinfo_h.patch
===
RCS file: 
/var/cvsroot/gentoo/src/patchsets/gcc/4.4.5/uclibc/90_all_301-missing-execinfo_h.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- 90_all_301-missing-execinfo_h.patch 17 Oct 2010 11:48:36 -  1.1
+++ 90_all_301-missing-execinfo_h.patch 22 Jun 2016 14:03:03 -  1.2
@@ -1,5 +1,11 @@
 gcc-4.0.0/boehm-gc/include/gc.h-orig   2005-04-28 22:28:57.0 
-0500
-+++ gcc-4.0.0/boehm-gc/include/gc.h2005-04-28 22:30:38.0 -0500
+https://github.com/ivmai/bdwgc/commit/76b3d3a57583fdb19152f4d911b11725e31b4a06
+
+2007-12-18  Hans Boehm  (really Radek Polak)
+
+   * include/gc.h: Don't define GC_HAVE_BUILTIN_BACKTRACE for uclibc.
+
+--- a/boehm-gc/include/gc.h
 b/boehm-gc/include/gc.h
 @@ -500,7 +500,7 @@
  #ifdef __linux__
  # include 






[gentoo-commits] gentoo commit in src/patchsets/gcc/4.4.4/uclibc: 90_all_301-missing-execinfo_h.patch

2016-06-22 Thread Mike Frysinger (vapier)
vapier  16/06/22 14:03:03

  Modified: 90_all_301-missing-execinfo_h.patch
  Log:
  document boehm-gc uclibc/execinfo.h patches

Revision  ChangesPath
1.2  
src/patchsets/gcc/4.4.4/uclibc/90_all_301-missing-execinfo_h.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.4.4/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.4.4/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.4.4/uclibc/90_all_301-missing-execinfo_h.patch?r1=1.1&r2=1.2

Index: 90_all_301-missing-execinfo_h.patch
===
RCS file: 
/var/cvsroot/gentoo/src/patchsets/gcc/4.4.4/uclibc/90_all_301-missing-execinfo_h.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- 90_all_301-missing-execinfo_h.patch 10 Jun 2010 05:26:51 -  1.1
+++ 90_all_301-missing-execinfo_h.patch 22 Jun 2016 14:03:03 -  1.2
@@ -1,5 +1,11 @@
 gcc-4.0.0/boehm-gc/include/gc.h-orig   2005-04-28 22:28:57.0 
-0500
-+++ gcc-4.0.0/boehm-gc/include/gc.h2005-04-28 22:30:38.0 -0500
+https://github.com/ivmai/bdwgc/commit/76b3d3a57583fdb19152f4d911b11725e31b4a06
+
+2007-12-18  Hans Boehm  (really Radek Polak)
+
+   * include/gc.h: Don't define GC_HAVE_BUILTIN_BACKTRACE for uclibc.
+
+--- a/boehm-gc/include/gc.h
 b/boehm-gc/include/gc.h
 @@ -500,7 +500,7 @@
  #ifdef __linux__
  # include 






[gentoo-commits] gentoo commit in src/patchsets/gcc/4.1.2/uclibc: 90_all_301-missing-execinfo_h.patch

2016-06-22 Thread Mike Frysinger (vapier)
vapier  16/06/22 14:03:02

  Modified: 90_all_301-missing-execinfo_h.patch
  Log:
  document boehm-gc uclibc/execinfo.h patches

Revision  ChangesPath
1.2  
src/patchsets/gcc/4.1.2/uclibc/90_all_301-missing-execinfo_h.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.1.2/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.1.2/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.1.2/uclibc/90_all_301-missing-execinfo_h.patch?r1=1.1&r2=1.2

Index: 90_all_301-missing-execinfo_h.patch
===
RCS file: 
/var/cvsroot/gentoo/src/patchsets/gcc/4.1.2/uclibc/90_all_301-missing-execinfo_h.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- 90_all_301-missing-execinfo_h.patch 14 Feb 2007 10:47:56 -  1.1
+++ 90_all_301-missing-execinfo_h.patch 22 Jun 2016 14:03:02 -  1.2
@@ -1,5 +1,11 @@
 gcc-4.0.0/boehm-gc/include/gc.h-orig   2005-04-28 22:28:57.0 
-0500
-+++ gcc-4.0.0/boehm-gc/include/gc.h2005-04-28 22:30:38.0 -0500
+https://github.com/ivmai/bdwgc/commit/76b3d3a57583fdb19152f4d911b11725e31b4a06
+
+2007-12-18  Hans Boehm  (really Radek Polak)
+
+   * include/gc.h: Don't define GC_HAVE_BUILTIN_BACKTRACE for uclibc.
+
+--- a/boehm-gc/include/gc.h
 b/boehm-gc/include/gc.h
 @@ -500,7 +500,7 @@
  #ifdef __linux__
  # include 






[gentoo-commits] gentoo commit in src/patchsets/gcc/4.1.0/uclibc: 92_all_301-missing-execinfo_h.patch

2016-06-22 Thread Mike Frysinger (vapier)
vapier  16/06/22 14:03:02

  Modified: 92_all_301-missing-execinfo_h.patch
  Log:
  document boehm-gc uclibc/execinfo.h patches

Revision  ChangesPath
1.2  
src/patchsets/gcc/4.1.0/uclibc/92_all_301-missing-execinfo_h.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.1.0/uclibc/92_all_301-missing-execinfo_h.patch?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.1.0/uclibc/92_all_301-missing-execinfo_h.patch?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.1.0/uclibc/92_all_301-missing-execinfo_h.patch?r1=1.1&r2=1.2

Index: 92_all_301-missing-execinfo_h.patch
===
RCS file: 
/var/cvsroot/gentoo/src/patchsets/gcc/4.1.0/uclibc/92_all_301-missing-execinfo_h.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- 92_all_301-missing-execinfo_h.patch 2 Mar 2006 05:41:18 -   1.1
+++ 92_all_301-missing-execinfo_h.patch 22 Jun 2016 14:03:01 -  1.2
@@ -1,5 +1,11 @@
 gcc-4.0.0/boehm-gc/include/gc.h-orig   2005-04-28 22:28:57.0 
-0500
-+++ gcc-4.0.0/boehm-gc/include/gc.h2005-04-28 22:30:38.0 -0500
+https://github.com/ivmai/bdwgc/commit/76b3d3a57583fdb19152f4d911b11725e31b4a06
+
+2007-12-18  Hans Boehm  (really Radek Polak)
+
+   * include/gc.h: Don't define GC_HAVE_BUILTIN_BACKTRACE for uclibc.
+
+--- a/boehm-gc/include/gc.h
 b/boehm-gc/include/gc.h
 @@ -500,7 +500,7 @@
  #ifdef __linux__
  # include 






[gentoo-commits] gentoo commit in src/patchsets/gcc/4.0.4/uclibc: 92_all_301-missing-execinfo_h.patch

2016-06-22 Thread Mike Frysinger (vapier)
vapier  16/06/22 14:03:01

  Modified: 92_all_301-missing-execinfo_h.patch
  Log:
  document boehm-gc uclibc/execinfo.h patches

Revision  ChangesPath
1.2  
src/patchsets/gcc/4.0.4/uclibc/92_all_301-missing-execinfo_h.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.0.4/uclibc/92_all_301-missing-execinfo_h.patch?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.0.4/uclibc/92_all_301-missing-execinfo_h.patch?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.0.4/uclibc/92_all_301-missing-execinfo_h.patch?r1=1.1&r2=1.2

Index: 92_all_301-missing-execinfo_h.patch
===
RCS file: 
/var/cvsroot/gentoo/src/patchsets/gcc/4.0.4/uclibc/92_all_301-missing-execinfo_h.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- 92_all_301-missing-execinfo_h.patch 5 Feb 2007 00:46:15 -   1.1
+++ 92_all_301-missing-execinfo_h.patch 22 Jun 2016 14:03:01 -  1.2
@@ -1,5 +1,11 @@
 gcc-4.0.0/boehm-gc/include/gc.h-orig   2005-04-28 22:28:57.0 
-0500
-+++ gcc-4.0.0/boehm-gc/include/gc.h2005-04-28 22:30:38.0 -0500
+https://github.com/ivmai/bdwgc/commit/76b3d3a57583fdb19152f4d911b11725e31b4a06
+
+2007-12-18  Hans Boehm  (really Radek Polak)
+
+   * include/gc.h: Don't define GC_HAVE_BUILTIN_BACKTRACE for uclibc.
+
+--- a/boehm-gc/include/gc.h
 b/boehm-gc/include/gc.h
 @@ -500,7 +500,7 @@
  #ifdef __linux__
  # include 






[gentoo-commits] gentoo commit in src/patchsets/gcc/4.2.2/uclibc: 90_all_301-missing-execinfo_h.patch

2016-06-22 Thread Mike Frysinger (vapier)
vapier  16/06/22 14:03:02

  Modified: 90_all_301-missing-execinfo_h.patch
  Log:
  document boehm-gc uclibc/execinfo.h patches

Revision  ChangesPath
1.2  
src/patchsets/gcc/4.2.2/uclibc/90_all_301-missing-execinfo_h.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.2.2/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.2.2/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.2.2/uclibc/90_all_301-missing-execinfo_h.patch?r1=1.1&r2=1.2

Index: 90_all_301-missing-execinfo_h.patch
===
RCS file: 
/var/cvsroot/gentoo/src/patchsets/gcc/4.2.2/uclibc/90_all_301-missing-execinfo_h.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- 90_all_301-missing-execinfo_h.patch 11 Oct 2007 04:43:20 -  1.1
+++ 90_all_301-missing-execinfo_h.patch 22 Jun 2016 14:03:02 -  1.2
@@ -1,5 +1,11 @@
 gcc-4.0.0/boehm-gc/include/gc.h-orig   2005-04-28 22:28:57.0 
-0500
-+++ gcc-4.0.0/boehm-gc/include/gc.h2005-04-28 22:30:38.0 -0500
+https://github.com/ivmai/bdwgc/commit/76b3d3a57583fdb19152f4d911b11725e31b4a06
+
+2007-12-18  Hans Boehm  (really Radek Polak)
+
+   * include/gc.h: Don't define GC_HAVE_BUILTIN_BACKTRACE for uclibc.
+
+--- a/boehm-gc/include/gc.h
 b/boehm-gc/include/gc.h
 @@ -500,7 +500,7 @@
  #ifdef __linux__
  # include 






[gentoo-commits] gentoo commit in src/patchsets/gcc/4.1.1/uclibc: 90_all_301-missing-execinfo_h.patch

2016-06-22 Thread Mike Frysinger (vapier)
vapier  16/06/22 14:03:02

  Modified: 90_all_301-missing-execinfo_h.patch
  Log:
  document boehm-gc uclibc/execinfo.h patches

Revision  ChangesPath
1.2  
src/patchsets/gcc/4.1.1/uclibc/90_all_301-missing-execinfo_h.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.1.1/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.1.1/uclibc/90_all_301-missing-execinfo_h.patch?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.1.1/uclibc/90_all_301-missing-execinfo_h.patch?r1=1.1&r2=1.2

Index: 90_all_301-missing-execinfo_h.patch
===
RCS file: 
/var/cvsroot/gentoo/src/patchsets/gcc/4.1.1/uclibc/90_all_301-missing-execinfo_h.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- 90_all_301-missing-execinfo_h.patch 22 Jun 2006 05:04:08 -  1.1
+++ 90_all_301-missing-execinfo_h.patch 22 Jun 2016 14:03:02 -  1.2
@@ -1,5 +1,11 @@
 gcc-4.0.0/boehm-gc/include/gc.h-orig   2005-04-28 22:28:57.0 
-0500
-+++ gcc-4.0.0/boehm-gc/include/gc.h2005-04-28 22:30:38.0 -0500
+https://github.com/ivmai/bdwgc/commit/76b3d3a57583fdb19152f4d911b11725e31b4a06
+
+2007-12-18  Hans Boehm  (really Radek Polak)
+
+   * include/gc.h: Don't define GC_HAVE_BUILTIN_BACKTRACE for uclibc.
+
+--- a/boehm-gc/include/gc.h
 b/boehm-gc/include/gc.h
 @@ -500,7 +500,7 @@
  #ifdef __linux__
  # include 






[gentoo-commits] gentoo commit in src/patchsets/gcc/4.0.3/uclibc: 92_all_301-missing-execinfo_h.patch

2016-06-22 Thread Mike Frysinger (vapier)
vapier  16/06/22 14:03:01

  Modified: 92_all_301-missing-execinfo_h.patch
  Log:
  document boehm-gc uclibc/execinfo.h patches

Revision  ChangesPath
1.2  
src/patchsets/gcc/4.0.3/uclibc/92_all_301-missing-execinfo_h.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.0.3/uclibc/92_all_301-missing-execinfo_h.patch?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.0.3/uclibc/92_all_301-missing-execinfo_h.patch?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.0.3/uclibc/92_all_301-missing-execinfo_h.patch?r1=1.1&r2=1.2

Index: 92_all_301-missing-execinfo_h.patch
===
RCS file: 
/var/cvsroot/gentoo/src/patchsets/gcc/4.0.3/uclibc/92_all_301-missing-execinfo_h.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- 92_all_301-missing-execinfo_h.patch 11 Mar 2006 05:50:14 -  1.1
+++ 92_all_301-missing-execinfo_h.patch 22 Jun 2016 14:03:01 -  1.2
@@ -1,5 +1,11 @@
 gcc-4.0.0/boehm-gc/include/gc.h-orig   2005-04-28 22:28:57.0 
-0500
-+++ gcc-4.0.0/boehm-gc/include/gc.h2005-04-28 22:30:38.0 -0500
+https://github.com/ivmai/bdwgc/commit/76b3d3a57583fdb19152f4d911b11725e31b4a06
+
+2007-12-18  Hans Boehm  (really Radek Polak)
+
+   * include/gc.h: Don't define GC_HAVE_BUILTIN_BACKTRACE for uclibc.
+
+--- a/boehm-gc/include/gc.h
 b/boehm-gc/include/gc.h
 @@ -500,7 +500,7 @@
  #ifdef __linux__
  # include 






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

2016-06-22 Thread Doug Goldstein
commit: 516d7d9b04108b53035a3c6c5165b98b460aebfe
Author: Doug Goldstein  gentoo  org>
AuthorDate: Wed Jun 22 13:50:42 2016 +
Commit: Doug Goldstein  gentoo  org>
CommitDate: Wed Jun 22 13:50:42 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=516d7d9b

dev-lang/rust: version bump

Bump to 1.9.0. Fixes bug #585740.

Gentoo-Bug: 585740

Package-Manager: portage-2.2.28
Signed-off-by: Doug Goldstein  gentoo.org>

 dev-lang/rust/Manifest  |   3 +
 dev-lang/rust/rust-1.9.0.ebuild | 159 
 2 files changed, 162 insertions(+)

diff --git a/dev-lang/rust/Manifest b/dev-lang/rust/Manifest
index 507d332..d2cebbb 100644
--- a/dev-lang/rust/Manifest
+++ b/dev-lang/rust/Manifest
@@ -8,8 +8,11 @@ DIST 
rust-stage0-2015-12-18-3391630-linux-i386-a09c4a4036151d0cb28e2651016697316
 DIST 
rust-stage0-2015-12-18-3391630-linux-x86_64-97e2a5eb8904962df8596e95d6e5d9b574d73bf4.tar.bz2
 16832231 SHA256 
a8dc5203673ce43f47316beb02ee0c427edb7bbde2ab5fc662a06b52db2950e7 SHA512 
e6768cdafa845b65f86069b3d35df9ec28121d1c55b5033eb34f6fdc0e20485335c977588f44d170d194550fc5f3b4b675f896ebb1e3ea05e1c96ff423343509
 WHIRLPOOL 
4d46083ec5e5cb57f42311518f51d4d04138b07a31b6fe29eae0da55f3137ef4e122f0d2d0f0cfd139316ee90f2d0c8211b80f37bcec6b8b65efb4189e391753
 DIST 
rust-stage0-2016-02-17-4d3eebf-linux-i386-5f194aa7628c0703f0fd48adc4ec7f3cc64b98c7.tar.bz2
 18682481 SHA256 
e54154456ee845496f98fac8c8faf7192b4205848d45ef060ecfa0482b14cd99 SHA512 
30b6a904b23f8ffeb12ea821ba855d44507468a6ffb95b0efd05385012bcad9ecdda0a7f5bf719f7d0c499f05d6b5672c05bbd052690068f414c0e9998b9dc08
 WHIRLPOOL 
2d8aa57812134938cfdc52f88b6a36e88ec03dec220445f6af564697f01c9c042ce1ffd4dc5d7edb1873ca5c19b7a2c473e595ea0ae8af29f9eafb1c9c2f6fac
 DIST 
rust-stage0-2016-02-17-4d3eebf-linux-x86_64-d29b7607d13d64078b6324aec82926fb493f59ba.tar.bz2
 18113844 SHA256 
8deb8b687cb7d89ea943745c16c1061225fcbb5c64c0c121cdd1cb68673e683e SHA512 
bc27a7a8cea328c2ad677dbdb261563fba0354313b53f600924cdb147c3b9a5ad7ef8354114e43e0803016c7cc0dad6af274502259edecbde385383a2160b398
 WHIRLPOOL 
d217ea287a377a691335ec4206b515bfb7904a6393e412c5376e5a6ae99870bf9a31065e8815e3cf1348535dabf60b97dcbf4934a66c8ef2264b08eedd3815be
+DIST 
rust-stage0-2016-03-18-235d774-linux-i386-0e0e4448b80d0a12b75485795244bb3857a0a7ef.tar.bz2
 18489693 SHA256 
36958fcd55387d7b1b86618111fa8660c1d488fe191e85ad9659c6470874322b SHA512 
3e729e7c9340060c5eaa13b0420cc3b10eb968312bfceb4d072e5e16673a393c1b51b34b2c43f91953a2b44f0b0fe549215e5c284695d5a3626a3dc703693fd6
 WHIRLPOOL 
9a7064933b4387de6c6158c5a9645be1b3cd05d1cbd66c8e30a5efb63d08fd8aed8c5695e850fb3e3f92577b59fd2243b467d9ed509b913f652abddd206f68db
+DIST 
rust-stage0-2016-03-18-235d774-linux-x86_64-1273b6b6aed421c9e40c59f366d0df6092ec0397.tar.bz2
 17950752 SHA256 
a8ca657d78162a9f0a69a1ec8b0460e97259cdf2e6353ee256ae206876c9637e SHA512 
77694229b9aca58eab866acf6d52f381d9b4faa8c7698c17b2de90fa396eba17f3e12411b2cc4639607f7418d1382365e15039fb4ed247158a7d5542ce3b8b59
 WHIRLPOOL 
a58f3d9e8e319b4852513e4c172dc733f5080032eb6f2c33ddd9b336891586318761db0e6dcc3ff54113cc32ee256fd356a672cb50ae316ca4d1a7be3d5591d6
 DIST rustc-1.2.0-src.tar.gz 23863924 SHA256 
ea6eb983daf2a073df57186a58f0d4ce0e85c711bec13c627a8c85d51b6a6d78 SHA512 
2596c0dddff0276916edbb7d68ae610209c75d53d89f1f15dc56ad7408e235dbedfcd1bba9c446dd1e32a8d274cedebb7b32b328223280c28ab546bbd06f1c76
 WHIRLPOOL 
741118f7e265129bfd0f0d66487e12dc8f95018d8479e8f3cde555160abdb29ade9c69607a2daa088ae3dbe74c1120c16141248cd771a6e56759ce10cfc45a62
 DIST rustc-1.3.0-src.tar.gz 24308223 SHA256 
ea02d7bc9e7de5b8be3fe6b37ea9b2bd823f9a532c8e4c47d02f37f24ffa3126 SHA512 
d9a4851d958e6a62f0997af5451c1c1ba2bd3ace595cf9f1dbc5977a6efb0ba802d108d4aa6fc29540c41b36d7f5a04e518700b5c1426fe18d1627d5fa779d58
 WHIRLPOOL 
21d9216bfa31b71e04ad35b4d72fd2b7b466b89cf62be2f9b0d734af21d1cba2050171bf3b9757c14a675fae11b869fcda30abc528e07ddcdc9d1a2bf0e3b7dc
 DIST rustc-1.5.0-src.tar.gz 24586539 SHA256 
641037af7b7b6cad0b231cc20671f8a314fbf2f40fc0901d0b877c39fc8da5a0 SHA512 
c56f02f39093e5ce1f9a29b295ea1a6d69192d554a64c1b49b6bb5328884e9bbfb1681ea4362166e3fa91ff4b4e17c9a9de6720a70d22a852060bd6b9de6a30b
 WHIRLPOOL 
a6138754168065dca7d5a68afd99dc9a2eb0abcbf2eb8d3908646c2e3e6fd84b344dd96ba7d2fe6db4ae703baa0ab60a3594471705b5173ba3e45a959b0a97c1
 DIST rustc-1.7.0-src.tar.gz 25097611 SHA256 
6df96059d87b718676d9cd879672e4e22418b6093396b4ccb5b5b66df37bf13a SHA512 
ef49bba9e8324c5b24a257131a31df4902f13ee4e0b763a2260df6ac8abbb150a6b9e5b36f52c6dc6c3f63fd3b1a9fb303a072973b054851f5d03a0d32df7317
 WHIRLPOOL 
f39953c678f42fa44da4b27eddb87627cd9b10a9002457c895cbae119d778a7496aebb1776cf0cfb4cd48f54513faf3d1b3b1afb7ee879d93978351443eb5963
 DIST rustc-1.8.0-src.tar.gz 25641320 SHA256 
af4466147e8d4db4de2a46e07494d2dc2d96313c5b37da34237f511c905f7449 SHA512 
96e1ef3644053849354f84737f0a9ae09786f6a1a16ca5f10cba261b2bc5f2e82e8d369ed7430116d0b9bf8a52c2b16bd581d042be86862a9095fd161f3283bd
 WHIRLPOOL 
b70ff752d9cc8efd910c

  1   2   >