[gentoo-commits] proj/R_overlay:master commit in: roverlay/util/

2016-07-06 Thread Benda XU
commit: 9eade4e4950fbd28c6b4e07440f765248883ee58
Author: Benda Xu  gentoo  org>
AuthorDate: Thu Jul  7 04:19:04 2016 +
Commit: Benda XU  gentoo  org>
CommitDate: Thu Jul  7 04:19:04 2016 +
URL:https://gitweb.gentoo.org/proj/R_overlay.git/commit/?id=9eade4e4

util/fileio.py: do not skip the first line.

 roverlay/util/fileio.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/roverlay/util/fileio.py b/roverlay/util/fileio.py
index be81ef0..72d8a9c 100644
--- a/roverlay/util/fileio.py
+++ b/roverlay/util/fileio.py
@@ -103,6 +103,7 @@ def read_text_file ( filepath, preparse=None, 
try_harder=True ):
raise
 
 else:
+   yield line
# read remaining lines
for line in creader:
   yield line



[gentoo-commits] proj/R_overlay:master commit in: files/eclass/

2016-07-06 Thread Benda XU
commit: fe9dc70beb2e205fb3edc95a23612b2cb21bb6a8
Author: Benda Xu  gentoo  org>
AuthorDate: Thu Jul  7 04:15:55 2016 +
Commit: Benda XU  gentoo  org>
CommitDate: Thu Jul  7 04:15:55 2016 +
URL:https://gitweb.gentoo.org/proj/R_overlay.git/commit/?id=fe9dc70b

R-packages.eclass: use default S.

 files/eclass/R-packages.eclass | 7 ++-
 1 file changed, 2 insertions(+), 5 deletions(-)

diff --git a/files/eclass/R-packages.eclass b/files/eclass/R-packages.eclass
index 8544e70..7d2afc6 100644
--- a/files/eclass/R-packages.eclass
+++ b/files/eclass/R-packages.eclass
@@ -13,26 +13,23 @@ IUSE="byte-compile"
 DEPEND="dev-lang/R"
 RDEPEND="${DEPEND}"
 
-S="${WORKDIR}"
-
 R-packages_src_unpack() {
unpack ${A}
mv ${PN//_/.} ${P}
 }
 
 R-packages_src_prepare() {
-   cd ${P}
epatch_user
 }
 
 R-packages_src_compile() {
MAKEFLAGS="CFLAGS=${CFLAGS// /\\ } CXXFLAGS=${CXXFLAGS// /\\ } 
FFLAGS=${FFLAGS// /\\ } FCFLAGS=${FCFLAGS// /\\ } LDFLAGS=${LDFLAGS// /\\ }" \
-   R CMD INSTALL ${S}/${P} -l . $(use byte-compile && echo 
"--byte-compile")
+   R CMD INSTALL . -l "${WORKDIR}" $(use byte-compile && echo 
"--byte-compile")
 }
 
 R-packages_src_install() {
insinto /usr/$(get_libdir)/R/site-library
-   doins -r ${PN//_/.}
+   doins -r "${WORKDIR}"/${PN//_/.}y
 }
 
 R-packages_pkg_postinst() {



[gentoo-commits] proj/R_overlay:master commit in: roverlay/db/

2016-07-06 Thread Benda XU
commit: 9618ea9eed6e625b9086325f46c80479e82af433
Author: Benda Xu  gentoo  org>
AuthorDate: Thu Jul  7 04:18:13 2016 +
Commit: Benda XU  gentoo  org>
CommitDate: Thu Jul  7 04:18:13 2016 +
URL:https://gitweb.gentoo.org/proj/R_overlay.git/commit/?id=9618ea9e

roverlay/db/distmap.py: call the wrapper for repo_name

  info.repo_name might be undefined.

 roverlay/db/distmap.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/roverlay/db/distmap.py b/roverlay/db/distmap.py
index 8562da1..7ca6099 100644
--- a/roverlay/db/distmap.py
+++ b/roverlay/db/distmap.py
@@ -404,7 +404,7 @@ class _DistMapBase ( 
roverlay.util.objects.PersistentContent ):
   if info is None:
  # new file, no revbump required
  return False
-  elif info.repo_name != package_info['origin'].name:
+  elif info.get_repo_name() != package_info['origin'].name:
  # don't revbump if repo names don't match, this likely results in
  # infinite revbumps if a package is available from more than one repo
  return False



[gentoo-commits] repo/gentoo:master commit in: mail-mta/nullmailer/

2016-07-06 Thread Benda XU
commit: 179ca943ee6bc3a75b5443f8740b8cd6f1cc3ee3
Author: Benda Xu  gentoo  org>
AuthorDate: Thu Jul  7 04:09:15 2016 +
Commit: Benda XU  gentoo  org>
CommitDate: Thu Jul  7 04:10:01 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=179ca943

mail-mta/nullmailer: Prefix support.

Bug: 585882

Package-Manager: portage-2.2.28

 mail-mta/nullmailer/nullmailer-2.0.ebuild | 32 +++
 1 file changed, 16 insertions(+), 16 deletions(-)

diff --git a/mail-mta/nullmailer/nullmailer-2.0.ebuild 
b/mail-mta/nullmailer/nullmailer-2.0.ebuild
index c8efc5a..f3771bb 100644
--- a/mail-mta/nullmailer/nullmailer-2.0.ebuild
+++ b/mail-mta/nullmailer/nullmailer-2.0.ebuild
@@ -59,7 +59,7 @@ src_configure() {
# https://github.com/bruceg/nullmailer/pull/31/commits
append-lfs-flags #471102
econf \
-   --localstatedir=/var \
+   --localstatedir="${EPREFIX}"/var \
$(use_enable ssl tls)
 }
 
@@ -99,20 +99,20 @@ src_install() {
 }
 
 pkg_postinst() {
-   if [ ! -e "${ROOT}"/var/spool/nullmailer/trigger ]; then
-   mkfifo "${ROOT}"/var/spool/nullmailer/trigger || die
+   if [ ! -e ${EROOT}var/spool/nullmailer/trigger ]; then
+   mkfifo "${EROOT}"var/spool/nullmailer/trigger || die
fi
chown nullmail:nullmail \
-   "${ROOT}"/var/log/nullmailer \
-   "${ROOT}"/var/spool/nullmailer/{tmp,queue,trigger} || die
+   "${EROOT}"var/log/nullmailer \
+   "${EROOT}"var/spool/nullmailer/{tmp,queue,trigger} || die
chmod 770 \
-   "${ROOT}"/var/log/nullmailer \
-   "${ROOT}"/var/spool/nullmailer/{tmp,queue} || die
-   chmod 660 "${ROOT}"/var/spool/nullmailer/trigger || die
+   "${EROOT}"var/log/nullmailer \
+   "${EROOT}"var/spool/nullmailer/{tmp,queue} || die
+   chmod 660 "${EROOT}"var/spool/nullmailer/trigger || die
 
# This contains passwords, so should be secure
-   chmod 0640 "${ROOT}"/etc/nullmailer/remotes || die
-   chown root:nullmail "${ROOT}"/etc/nullmailer/remotes || die
+   chmod 0640 "${EROOT}"etc/nullmailer/remotes || die
+   chown root:nullmail "${EROOT}"etc/nullmailer/remotes || die
 
if [[ -z ${REPLACING_VERSIONS} ]]; then
elog "To create an initial setup, please do:"
@@ -121,18 +121,18 @@ pkg_postinst() {
 }
 
 pkg_postrm() {
-   if [[ -e "${ROOT}"/var/spool/nullmailer/trigger ]]; then
-   rm "${ROOT}"/var/spool/nullmailer/trigger || die
+   if [[ -e ${EROOT}var/spool/nullmailer/trigger ]]; then
+   rm "${EROOT}"var/spool/nullmailer/trigger || die
fi
 }
 
 pkg_config() {
-   if [ ! -s "${ROOT}"/etc/nullmailer/me ]; then
+   if [ ! -s ${EROOT}etc/nullmailer/me ]; then
einfo "Setting /etc/nullmailer/me"
-   /bin/hostname --fqdn > "${ROOT}"/etc/nullmailer/me
+   hostname --fqdn > "${EROOT}"etc/nullmailer/me
fi
-   if [ ! -s "${ROOT}"/etc/nullmailer/defaultdomain ]; then
+   if [ ! -s ${EROOT}etc/nullmailer/defaultdomain ]; then
einfo "Setting /etc/nullmailer/defaultdomain"
-   /bin/hostname --domain > "${ROOT}"/etc/nullmailer/defaultdomain
+   hostname --domain > "${EROOT}"etc/nullmailer/defaultdomain
fi
 }



[gentoo-commits] repo/proj/prefix:master commit in: scripts/

2016-07-06 Thread Benda XU
commit: 78bbfbe705e029c6bcf8ef7323baa07ff299a526
Author: Benda Xu  gentoo  org>
AuthorDate: Thu Jul  7 02:17:28 2016 +
Commit: Benda XU  gentoo  org>
CommitDate: Thu Jul  7 02:40:57 2016 +
URL:https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=78bbfbe7

scripts/b-p.sh: calculate kernel version and select legacy profiles.

 scripts/bootstrap-prefix.sh | 18 --
 1 file changed, 12 insertions(+), 6 deletions(-)

diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh
index 79ebc62..3eef582 100755
--- a/scripts/bootstrap-prefix.sh
+++ b/scripts/bootstrap-prefix.sh
@@ -218,6 +218,11 @@ configure_toolchain() {
 bootstrap_setup() {
local profile=""
einfo "setting up some guessed defaults"
+
+   # 2.6.32.1 -> 2*256^3 + 6*256^2 + 32 * 256 + 1 = 33955841
+   kver() { uname -r|cut -d\- -f1|awk -F. '{for (i=1; i<=NF; 
i++){s+=lshift($i,(4-i)*8)};print s}'; }
+   # >=glibc-2.20 requires >=linux-2.6.32.
+   profile-legacy() { [[ $(kver) -ge 33955840 ]] || echo /legacy; }

if [[ ! -f ${ROOT}/etc/portage/make.conf ]] ; then
{
@@ -267,6 +272,7 @@ bootstrap_setup() {
ln -sf {,"${ROOT}"}/etc/group
[[ -f ${ROOT}/etc/resolv.conf ]] || ln -s 
{,"${ROOT}"}/etc/resolv.conf
[[ -f ${ROOT}/etc/hosts ]] || cp {,"${ROOT}"}/etc/hosts
+   local legacy=$(profile-legacy)
fi
 
local linux=$(rapx linux-standalone linux)
@@ -296,22 +302,22 @@ bootstrap_setup() {
profile="prefix/darwin/macos/10.$((rev - 4))/x64"
;;
i*86-pc-linux-gnu)
-   profile="prefix/${linux}/x86"
+   profile="prefix/${linux}/x86${legacy}"
;;
x86_64-pc-linux-gnu)
-   profile="prefix/${linux}/amd64"
+   profile="prefix/${linux}/amd64${legacy}"
;;
ia64-pc-linux-gnu)
-   profile="prefix/${linux}/ia64"
+   profile="prefix/${linux}/ia64${legacy}"
;;
powerpc-unknown-linux-gnu)
-   profile="prefix/${linux}/ppc"
+   profile="prefix/${linux}/ppc${legacy}"
;;
powerpc64-unknown-linux-gnu)
-   profile="prefix/${linux}/ppc64"
+   profile="prefix/${linux}/ppc64${legacy}"
;;
armv7l-pc-linux-gnu)
-   profile="prefix/${linux}/arm"
+   profile="prefix/${linux}/arm${legacy}"
;;
sparc-sun-solaris2.9)
profile="prefix/sunos/solaris/5.9/sparc"



[gentoo-commits] repo/proj/prefix:master commit in: scripts/

2016-07-06 Thread Benda XU
commit: 0af56bfa67625683611aee6b65262c0a9743df98
Author: Benda Xu  gentoo  org>
AuthorDate: Thu Jul  7 02:09:52 2016 +
Commit: Benda XU  gentoo  org>
CommitDate: Thu Jul  7 02:40:57 2016 +
URL:https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=0af56bfa

scripts/bootstrap-prefix.sh: support sys-libs/glibc.
  - lto of gcc should be disabled. ld points to the host dynamic
loader and gcc points to the RAP one, ld cannot load the gcc
lto plugin.

  - stage tools should be used first in stage3.

  - makeinfo, perl are faked.

  - no need to copy libgcc on RAP.
ld.so of glibc does that.

  - install texinfo for glibc.

  - stage3 linker can only be compiled after compiler.

otherwise stage2 gcc will mix host glibc headers with those of
stage3.

 scripts/bootstrap-prefix.sh | 104 ++--
 1 file changed, 81 insertions(+), 23 deletions(-)

diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh
index 45c2552..9e3e4fd 100755
--- a/scripts/bootstrap-prefix.sh
+++ b/scripts/bootstrap-prefix.sh
@@ -1286,9 +1286,11 @@ bootstrap_stage2() {
emerge_pkgs --nodeps "${pkgs[@]}" || return 1

# Build a linker and compiler that live in ${ROOT}/tmp, but
-   # produce binaries in ${ROOT}.
+   # produce binaries in ${ROOT}. Debian multiarch supported by RAP
+   # needs ld to support sysroot.
USE="${USE} -cxx" \
TPREFIX="${ROOT}" \
+   EXTRA_ECONF=$(rapx --with-sysroot=/) \
emerge_pkgs --nodeps ${linker} || return 1
 
# gmp has cxx flag enabled by default. When dealing with a host
@@ -1296,6 +1298,7 @@ bootstrap_stage2() {
# package.use to disable in the temporary prefix.  
echo "dev-libs/gmp -cxx" >> "${ROOT}"/tmp/etc/portage/package.use
 
+   BOOTSTRAP_RAP_STAGE2=yes \
EXTRA_ECONF="--disable-bootstrap" \
GCC_MAKE_TARGET=all \
TPREFIX="${ROOT}" \
@@ -1322,7 +1325,7 @@ bootstrap_stage2() {
# multilib.eclass -- can't blame it at this point really)
# do it ourselves here to make the bootstrap continue
( cd "${ROOT}"/tmp/usr/bin && ln -s clang ${CHOST}-clang && ln 
-s clang++ ${CHOST}-clang++ )
-   else
+   elif ! is-rap ; then
# make sure the EPREFIX gcc shared libraries are there
mkdir -p "${ROOT}"/usr/${CHOST}/lib/gcc
cp "${ROOT}"/tmp/usr/${CHOST}/lib/gcc/* 
"${ROOT}"/usr/${CHOST}/lib/gcc
@@ -1363,6 +1366,8 @@ bootstrap_stage3() {
unset CC CXX
 
emerge_pkgs() {
+   # stage3 tools should be used first.
+   DEFAULT_PATH="${ROOT}"$(echo /{,tmp/}{,usr/}{s,}bin | sed "s, 
,:${ROOT},g") \
EPREFIX="${ROOT}" \
do_emerge_pkgs "$@"
}
@@ -1370,25 +1375,63 @@ bootstrap_stage3() {
# GCC sometimes decides that it needs to run makeinfo to update some
# info pages from .texi files.  Obviously we don't care at this
# stage and rather have it continue instead of abort the build
-   export MAKEINFO="echo makeinfo GNU texinfo 4.13"
-   
-   # Build a native compiler.
-   pkgs=(
-   $([[ ${CHOST} == *-aix* ]] && echo dev-libs/libiconv ) # bash 
dependency
-   sys-libs/ncurses
-   sys-libs/readline
-   app-shells/bash
-   sys-apps/sed
-   app-arch/xz-utils
-   sys-apps/gentoo-functions
-   sys-apps/baselayout-prefix
-   sys-devel/m4
-   sys-devel/flex
-   sys-devel/binutils-config
-   sys-libs/zlib
-   ${linker}
-   )
-   emerge_pkgs --nodeps "${pkgs[@]}" || return 1
+   [[ -x "${ROOT}"/usr/bin/makeinfo ]] || cat > "${ROOT}"/usr/bin/makeinfo 
<<-EOF
+   #!${ROOT}/bin/bash
+   echo "makeinfo GNU texinfo 4.13"
+   for a in \$@; do
+   case \$a in
+   --*) f=\$(echo "\$a" | sed -r 's,--.*=(.*),\1,') ;;
+   -*) ;;
+   *) f=\$a ;;
+   esac
+   [[ -e \$f ]] || touch \$f
+   done
+   EOF
+   chmod +x "${ROOT}"/usr/bin/makeinfo
+   export INSTALL_INFO="${ROOT}"/usr/bin/makeinfo
+
+   if is-rap ; then
+   # We need ${ROOT}/usr/bin/perl to merge glibc.
+   if [[ ! -x "${ROOT}"/usr/bin/perl ]]; then
+   # trick "perl -V:apiversion" check of glibc-2.19.
+   echo -e "#!${ROOT}/bin/sh\necho 'apiversion='" > 
"${ROOT}"/usr/bin/perl
+   chmod +x "${ROOT}"/usr/bin/perl
+   fi
+   # Tell dynamic loader the path of libgcc_s.so of stage2
+   if [[ ! -f "${ROOT}"/etc/ld.so.conf.d/stage2.conf ]]; then
+   mkdir -p "${ROOT}"/etc/ld.so.conf.d
+   dirname $(gcc 

[gentoo-commits] repo/proj/prefix:master commit in: scripts/

2016-07-06 Thread Benda XU
commit: 9ffa5b5a5e69f5d62ea3f56654d22ca549d531fc
Author: Benda Xu  gentoo  org>
AuthorDate: Mon May 23 10:46:14 2016 +
Commit: Benda XU  gentoo  org>
CommitDate: Thu Jul  7 02:40:57 2016 +
URL:https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=9ffa5b5a

scripts/bootstrap-prefix.sh: USE=-acl for linux-standalone.

  Its profile does not mask acl.

 scripts/bootstrap-prefix.sh | 1 +
 1 file changed, 1 insertion(+)

diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh
index 8b22f83..fda71fb 100755
--- a/scripts/bootstrap-prefix.sh
+++ b/scripts/bootstrap-prefix.sh
@@ -1169,6 +1169,7 @@ do_emerge_pkgs() {
[[ -n ${pvdb} ]] && continue
 
local myuse=(
+   -acl
-berkdb
-fortran
-gdbm



[gentoo-commits] repo/proj/prefix:master commit in: scripts/

2016-07-06 Thread Benda XU
commit: 15ae1999d07446d243021983ee77d89f2335f141
Author: Benda Xu  gentoo  org>
AuthorDate: Sat May 28 06:59:33 2016 +
Commit: Benda XU  gentoo  org>
CommitDate: Thu Jul  7 02:40:57 2016 +
URL:https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=15ae1999

scripts/b-p.sh: link /usr/{lib -> lib64} in stage1

  on systems get_libdir != lib,
  python (looks into /usr/lib by default) need to find libffi
  (installs into /usr/lib64 by default).

  ugly enumerating all possible libdirs.

 scripts/bootstrap-prefix.sh | 17 +
 1 file changed, 17 insertions(+)

diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh
index fd35927..45c2552 100755
--- a/scripts/bootstrap-prefix.sh
+++ b/scripts/bootstrap-prefix.sh
@@ -1103,6 +1103,23 @@ bootstrap_stage1() { (
chmod 755 "${ROOT}"/tmp/usr/bin/java{,c}
;;
esac
+   # Host compiler can output a variety of libdirs.  At stage1,
+   # they should be the same as lib.  Otherwise libffi may not be
+   # found by python.
+   if is-rap ; then
+   [[ -d ${ROOT}/tmp/usr/lib ]] || mkdir -p "${ROOT}"/tmp/usr/lib
+   local libdir
+   for libdir in lib64 lib32 libx32; do
+   if [[ ! -L ${ROOT}/tmp/usr/${libdir} ]] ; then
+   if [[ -e "${ROOT}"/tmp/usr/${libdir} ]] ; then
+   echo "${ROOT}"/tmp/usr/${libdir} should 
be a symlink to lib
+   return 1
+   fi
+   ln -s lib "${ROOT}"/tmp/usr/${libdir}
+   fi
+   done
+   fi
+
# important to have our own (non-flawed one) since Python (from
# Portage) and binutils use it
for zlib in ${ROOT}/tmp/usr/lib/libz.* ; do



[gentoo-commits] repo/proj/prefix:master commit in: scripts/

2016-07-06 Thread Benda XU
commit: f302f425f4182a6f828fb36c421d46638fda03bf
Author: Benda Xu  gentoo  org>
AuthorDate: Fri Jun  3 01:14:21 2016 +
Commit: Benda XU  gentoo  org>
CommitDate: Thu Jul  7 02:40:57 2016 +
URL:https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=f302f425

scripts/bootstrap-prefix.sh: remove libgcc hack on RAP.

 scripts/bootstrap-prefix.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh
index 9e3e4fd..79ebc62 100755
--- a/scripts/bootstrap-prefix.sh
+++ b/scripts/bootstrap-prefix.sh
@@ -1438,7 +1438,7 @@ bootstrap_stage3() {
# linker, we can't since we want the compiler to pick it up.
# Therefore, inject some kludgy workaround, for deps like gmp that
# use c++
-   [[ ${CHOST} != *-darwin* ]] && export CXX="${CHOST}-g++ -lgcc_s"
+   [[ ${CHOST} != *-darwin* ]] && ! is-rap && export CXX="${CHOST}-g++ 
-lgcc_s"
 
# Clang unconditionally requires python, the eclasses are really not
# setup for a scenario where python doesn't live in the target



[gentoo-commits] repo/proj/prefix:master commit in: scripts/

2016-07-06 Thread Benda XU
commit: 32258504fb1e2f55da459b50001dc97c830986db
Author: Benda Xu  gentoo  org>
AuthorDate: Fri Jun  3 08:18:37 2016 +
Commit: Benda XU  gentoo  org>
CommitDate: Thu Jul  7 02:40:57 2016 +
URL:https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=32258504

scripts/bootstrap-prefix.sh: startprefix for RAP.

 scripts/bootstrap-prefix.sh | 7 +++
 1 file changed, 7 insertions(+)

diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh
index 3eef582..a46ccdf 100755
--- a/scripts/bootstrap-prefix.sh
+++ b/scripts/bootstrap-prefix.sh
@@ -484,6 +484,13 @@ bootstrap_startscript() {
# currently I think right into the prefix is the best location, as
# putting it in /bin or /usr/bin just hides it some more for the
# user
+   if is-rap ; then
+   mkdir -p "${ROOT}"/usr/portage/scripts
+   wget --no-check-certificate \
+
https://gitweb.gentoo.org/repo/proj/prefix.git/plain/scripts/startprefix.in \
+-O "${ROOT}"/usr/portage/scripts/startprefix.in
+   fi
+
sed \
-e "s|@GENTOO_PORTAGE_EPREFIX@|${ROOT}|g" \
"${ROOT}"/usr/portage/scripts/startprefix.in \



[gentoo-commits] repo/proj/prefix:master commit in: scripts/

2016-07-06 Thread Benda XU
commit: 3e946a0d0d4c71840479599f48b1f4901d84eb83
Author: Benda Xu  gentoo  org>
AuthorDate: Thu May 26 09:49:05 2016 +
Commit: Benda XU  gentoo  org>
CommitDate: Thu Jul  7 02:40:57 2016 +
URL:https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=3e946a0d

scripts/bootstrap-prefix.sh: emacs local setup for the code standard.

 scripts/bootstrap-prefix.sh | 5 +
 1 file changed, 5 insertions(+)

diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh
index 438e0be..ce4ccba 100755
--- a/scripts/bootstrap-prefix.sh
+++ b/scripts/bootstrap-prefix.sh
@@ -2449,3 +2449,8 @@ fi
 einfo "ready to bootstrap ${TODO}"
 # bootstrap_interactive proceeds with guessed defaults when TODO=noninteractive
 bootstrap_${TODO#non} || exit 1
+
+# Local Variables:
+# sh-indentation: 8
+# sh-basic-offset: 8
+# End:



[gentoo-commits] repo/proj/prefix:master commit in: scripts/

2016-07-06 Thread Benda XU
commit: daafd832275fb9ef9031f804d0625ec9d8ba60ed
Author: Benda Xu  gentoo  org>
AuthorDate: Thu Jul  7 02:19:28 2016 +
Commit: Benda XU  gentoo  org>
CommitDate: Thu Jul  7 02:40:57 2016 +
URL:https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=daafd832

scripts/bootstrap-prefix.sh: setup android overlay as staged RAP repo.

  setup name databases.

 scripts/bootstrap-prefix.sh | 36 +++-
 1 file changed, 35 insertions(+), 1 deletion(-)

diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh
index ce4ccba..8b22f83 100755
--- a/scripts/bootstrap-prefix.sh
+++ b/scripts/bootstrap-prefix.sh
@@ -239,6 +239,34 @@ bootstrap_setup() {
} > "${ROOT}"/etc/portage/make.conf
fi
 
+   if is-rap && [[ ! -f ${ROOT}/etc/portage/repos.conf ]] ; then
+   cat  >"${ROOT}"/etc/portage/repos.conf <<-EOF
+   [DEFAULT]
+   main-repo = gentoo
+   eclass-overrides = rap
+
+   [gentoo]
+   location = ${ROOT}/usr/portage
+   sync-type = rsync
+   sync-uri = rsync://rsync.gentoo.org/gentoo-portage
+
+   [rap]
+   location = ${ROOT}/usr/portage-stage
+   sync-type = git
+   sync-uri = 
https://anongit.gentoo.org/git/proj/android.git
+   auto-sync = no
+   EOF
+   fi
+
+   if is-rap ; then
+   [[ -f ${ROOT}/etc/passwd ]] || getent passwd > 
"${ROOT}"/etc/passwd || \
+   ln -sf {,"${ROOT}"}/etc/passwd
+   [[ -f ${ROOT}/etc/group ]] || getent group > 
"${ROOT}"/etc/group || \
+   ln -sf {,"${ROOT}"}/etc/group
+   [[ -f ${ROOT}/etc/resolv.conf ]] || ln -s 
{,"${ROOT}"}/etc/resolv.conf
+   [[ -f ${ROOT}/etc/hosts ]] || cp {,"${ROOT}"}/etc/hosts
+   fi
+
local linux=$(rapx linux-standalone linux)

case ${CHOST} in
@@ -421,6 +449,10 @@ bootstrap_tree() {
else
do_tree http://dev.gentoo.org/~grobian/distfiles 
prefix-overlay-${PV}.tar.bz2
fi
+   if is-rap; then
+   PORTDIR="${ROOT}/usr/portage-stage" \
+  do_tree http://dev.gentoo.org/~heroxbd 
android-master.tar.bz2
+   fi
 }
 
 bootstrap_startscript() {
@@ -530,7 +562,9 @@ bootstrap_portage() {
 
[[ -e "${ROOT}"/tmp/usr/portage ]] || ln -s "${PORTDIR}" 
"${ROOT}"/tmp/usr/portage
 
-   if [[ -s ${PORTDIR}/profiles/repo_name ]]; then
+   if is-rap; then
+   cp -f "${ROOT}"/etc/portage/repos.conf 
"${ROOT}"/tmp/usr/share/portage/config/repos.conf
+   elif [[ -s ${PORTDIR}/profiles/repo_name ]]; then
# sync portage's repos.conf with the tree being used
sed -i -e 
"s,gentoo_prefix,$(<"${PORTDIR}"/profiles/repo_name)," 
"${ROOT}"/tmp/usr/share/portage/config/repos.conf || return 1
fi



[gentoo-commits] repo/proj/prefix:master commit in: scripts/

2016-07-06 Thread Benda XU
commit: f3c51fb01b54321c026cfb2857ba3ee65cecaf98
Author: Benda Xu  gentoo  org>
AuthorDate: Sat Jun  4 07:25:15 2016 +
Commit: Benda XU  gentoo  org>
CommitDate: Thu Jul  7 02:40:57 2016 +
URL:https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=f3c51fb0

s/bootstrap-prefix.sh: remove EPREFIX/tmp after "emerge -e system".

  partially reverts 3a945696443b.

  A rerun of bootstrap script after "emerge -e system" failure
  should not go through stage1 again.

 scripts/bootstrap-prefix.sh | 14 +++---
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh
index a46ccdf..e05c81a 100755
--- a/scripts/bootstrap-prefix.sh
+++ b/scripts/bootstrap-prefix.sh
@@ -1520,12 +1520,6 @@ bootstrap_stage3() {
# Switch to the proper portage.
hash -r
 
-   # Get rid of the temporary tools.
-   if [[ -d ${ROOT}/tmp/var/tmp ]] ; then
-   rm -rf "${ROOT}"/tmp
-   mkdir "${ROOT}"/tmp
-   fi
-
# Update the portage tree.
treedate=$(date -f "${ROOT}"/usr/portage/metadata/timestamp +%s)
nowdate=$(date +%s)
@@ -2173,7 +2167,13 @@ EOF
 
hash -r  # tmp/* stuff is removed in stage3
 
-   if ! emerge -e system ; then
+   if emerge -e system ; then
+   # Now, after 'emerge -e system', we can get rid of the 
temporary tools.
+   if [[ -d ${EPREFIX}/tmp/var/tmp ]] ; then
+   rm -Rf "${EPREFIX}"/tmp || return 1
+   mkdir -p "${EPREFIX}"/tmp || return 1
+   fi
+   else
# emerge -e system fail
cat << EOF
 



[gentoo-commits] repo/proj/prefix:master commit in: scripts/

2016-07-06 Thread Benda XU
commit: fad549e3409daad1e30fcdc3653b58c31fc9d951
Author: Benda Xu  gentoo  org>
AuthorDate: Thu Jul  7 01:41:56 2016 +
Commit: Benda XU  gentoo  org>
CommitDate: Thu Jul  7 02:40:57 2016 +
URL:https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=fad549e3

scripts/bootstrap-prefix.sh: disable sandbox.

 scripts/bootstrap-prefix.sh | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh
index fda71fb..0fadb13 100755
--- a/scripts/bootstrap-prefix.sh
+++ b/scripts/bootstrap-prefix.sh
@@ -227,6 +227,8 @@ bootstrap_setup() {
echo 'CXXFLAGS="${CFLAGS}"'
echo "MAKEOPTS=\"${MAKEOPTS}\""
echo "CONFIG_SHELL=\"${ROOT}/bin/bash\""
+   echo "# sandbox does not work well on Prefix, bug 
490246"
+   echo 'FEATURES="-usersandbox -sandbox"'
if [[ -n ${PREFIX_DISABLE_USR_SPLIT} ]] ; then
echo
echo "# This disables /usr-split, removing this 
will break"



[gentoo-commits] repo/proj/prefix:master commit in: scripts/

2016-07-06 Thread Benda XU
commit: 2b0664f542776c2eb10019515b97e5e3625b53d8
Author: Benda Xu  gentoo  org>
AuthorDate: Thu Jul  7 01:39:28 2016 +
Commit: Benda XU  gentoo  org>
CommitDate: Thu Jul  7 02:40:57 2016 +
URL:https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=2b0664f5

scripts/bootstrap-prefix.sh: rap helpers for profiles and portage tree.

 scripts/bootstrap-prefix.sh | 22 +++---
 1 file changed, 15 insertions(+), 7 deletions(-)

diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh
index a171e97..438e0be 100755
--- a/scripts/bootstrap-prefix.sh
+++ b/scripts/bootstrap-prefix.sh
@@ -7,6 +7,9 @@ trap 'exit 1' TERM KILL INT QUIT ABRT
 # some basic output functions
 eerror() { echo "!!! $*" 1>&2; }
 einfo() { echo "* $*"; }
+# RAP (libc) mode is triggered if the script is renamed to bootstrap-rap.sh.
+is-rap() { [[ ${BASH_SOURCE} = *rap.sh ]]; }
+rapx() { is-rap && echo $1 || echo $2; }
 
 # prefer gtar over tar
 [[ x$(type -t gtar) == "xfile" ]] \
@@ -235,6 +238,8 @@ bootstrap_setup() {
echo 'FETCHCOMMAND="bash -c \"echo I need 
\${FILE} from \${URI} in \${DISTDIR}; read\""'
} > "${ROOT}"/etc/portage/make.conf
fi
+
+   local linux=$(rapx linux-standalone linux)

case ${CHOST} in
powerpc-apple-darwin7)
@@ -261,22 +266,22 @@ bootstrap_setup() {
profile="prefix/darwin/macos/10.$((rev - 4))/x64"
;;
i*86-pc-linux-gnu)
-   profile="prefix/linux/x86"
+   profile="prefix/${linux}/x86"
;;
x86_64-pc-linux-gnu)
-   profile="prefix/linux/amd64"
+   profile="prefix/${linux}/amd64"
;;
ia64-pc-linux-gnu)
-   profile="prefix/linux/ia64"
+   profile="prefix/${linux}/ia64"
;;
powerpc-unknown-linux-gnu)
-   profile="prefix/linux/ppc"
+   profile="prefix/${linux}/ppc"
;;
powerpc64-unknown-linux-gnu)
-   profile="prefix/linux/ppc64"
+   profile="prefix/${linux}/ppc64"
;;
armv7l-pc-linux-gnu)
-   profile="prefix/linux/arm"
+   profile="prefix/${linux}/arm"
;;
sparc-sun-solaris2.9)
profile="prefix/sunos/solaris/5.9/sparc"
@@ -408,6 +413,8 @@ do_tree() {
 }
 
 bootstrap_tree() {
+   # RAP uses the latest gentoo main repo snapshot to bootstrap.
+   is-rap && LATEST_TREE_YES=1
local PV="20160614"
if [[ -n ${LATEST_TREE_YES} ]]; then
do_tree "${SNAPSHOT_URL}" portage-latest.tar.bz2
@@ -2405,9 +2412,10 @@ export PORTDIR=${PORTDIR:-"${ROOT}/usr/portage"}
 export DISTDIR=${DISTDIR:-"${PORTDIR}/distfiles"}
 PORTAGE_TMPDIR=${PORTAGE_TMPDIR:-${ROOT}/tmp/var/tmp}
 DISTFILES_URL=${DISTFILES_URL:-"http://dev.gentoo.org/~grobian/distfiles"}
-SNAPSHOT_URL=${SNAPSHOT_URL:-"http://rsync.prefix.bitzolder.nl/snapshots"}
 GNU_URL=${GNU_URL:="http://ftp.gnu.org/gnu"}
 GENTOO_MIRRORS=${GENTOO_MIRRORS:="http://distfiles.gentoo.org"}
+SNAPSHOT_HOST=$(rapx ${GENTOO_MIRRORS} http://rsync.prefix.bitzolder.nl)
+SNAPSHOT_URL=${SNAPSHOT_URL:-"${SNAPSHOT_HOST}/snapshots"}
 GCC_APPLE_URL="http://www.opensource.apple.com/darwinsource/tarballs/other;
 
 export MAKE CONFIG_SHELL



[gentoo-commits] repo/proj/prefix:master commit in: scripts/

2016-07-06 Thread Benda XU
commit: 166387d875842c64c191dc86f7fc5719c2cc56d1
Author: Benda Xu  gentoo  org>
AuthorDate: Thu Jul  7 01:43:34 2016 +
Commit: Benda XU  gentoo  org>
CommitDate: Thu Jul  7 02:40:57 2016 +
URL:https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=166387d8

bootstrap-prefix.sh: no USR SPLIT for RAP.  Support Debian multiarch.

 scripts/bootstrap-prefix.sh | 82 +++--
 1 file changed, 5 insertions(+), 77 deletions(-)

diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh
index 0fadb13..af2f690 100755
--- a/scripts/bootstrap-prefix.sh
+++ b/scripts/bootstrap-prefix.sh
@@ -229,7 +229,7 @@ bootstrap_setup() {
echo "CONFIG_SHELL=\"${ROOT}/bin/bash\""
echo "# sandbox does not work well on Prefix, bug 
490246"
echo 'FEATURES="-usersandbox -sandbox"'
-   if [[ -n ${PREFIX_DISABLE_USR_SPLIT} ]] ; then
+   if [[ !is-rap && -n ${PREFIX_DISABLE_USR_SPLIT} ]] ; 
then
echo
echo "# This disables /usr-split, removing this 
will break"
echo "PREFIX_DISABLE_GEN_USR_LDSCRIPT=yes"
@@ -1476,83 +1476,11 @@ bootstrap_interactive() {
# eventually ends up in make.conf, see the end of stage3.  We don't
# do this in bootstrap_setup() because in that case we'd also have
# to cater for getting this right with manual bootstraps.
-   export PREFIX_DISABLE_USR_SPLIT=yes 
+   is-rap || export PREFIX_DISABLE_USR_SPLIT=yes
 
-   # immediately die on platforms that we know are impossible due to
-   # brain-deadness (Debian/Ubuntu) or extremely hard dependency chains
-   # (TODO NetBSD/OpenBSD)
-   case ${CHOST} in
-   *-linux-gnu)
-   local toolchain_impossible=
-   # Figure out if this is Ubuntu...
-   if [[ $(lsb_release -is 2>/dev/null) == "Ubuntu" ]] ; 
then
-   case "$(lsb_release -sr)" in
-   [456789].*|10.*)
-   : # good versions
-   ;;
-   *)
-   # Debian/Ubuntu have seriously 
fscked up their
-   # toolchain to support their 
multi-arch crap
-   # since Natty (11.04) that 
noone really wants,
-   # and certainly not upstream.  
Some details:
-   # 
https://bugs.launchpad.net/ubuntu/+source/binutils/+bug/738098
-   toolchain_impossible="Ubuntu >= 
11.04 (Natty)"
-   ;;
-   esac
-   fi
-   # Figure out if this is Debian
-   if [[ -e /etc/debian_release ]] ; then
-   case "$(< /etc/debian_release)" in
-   
hamm/*|slink/*|potato/*|woody/*|sarge/*|etch/*|lenny/*|squeeze/*)
-   : # good versions
-   ;;
-   *)
-   # Debian introduced their big 
crap since Wheezy
-   # (7.0), like for Ubuntu, see 
above
-   toolchain_impossible="Debian >= 
7.0 (Wheezy)"
-   ;;
-   esac
-   fi
-   if [[ -n ${toolchain_impossible} ]] ; then
-   # In short, it's impossible for us to compile a
-   # compiler, since 1) gcc picks up our ld, which 
doesn't
-   # support sysroot (can work around with a 
wrapper
-   # script), 2) headers and libs aren't found 
(symlink
-   # them to Prefix), 3) stuff like crtX.i isn't 
found
-   # during bootstrap, since the bootstrap 
compiler doesn't
-   # get any of our flags and doesn't know where 
to find
-   # them (even if we copied them).  So we cannot 
do this,
-   # unless we use the Ubuntu patches in our 
ebuilds, which
-   # is a NO-GO area.
-   cat << EOF
-Oh My!  ${toolchain_impossible}!  ARGH!  HELL comes over 
me!
-
-EOF
-   echo -n "..."
- 

[gentoo-commits] repo/proj/prefix:master commit in: scripts/

2016-07-06 Thread Benda XU
commit: 4bca0eda63345255cd61d2f98dd42cf7cf13c9de
Author: Benda Xu  gentoo  org>
AuthorDate: Thu Jul  7 01:46:57 2016 +
Commit: Benda XU  gentoo  org>
CommitDate: Thu Jul  7 02:40:57 2016 +
URL:https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=4bca0eda

bootstrap-prefix.sh: get_libdir for multilib support on RAP.

 scripts/bootstrap-prefix.sh | 11 +++
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh
index af2f690..fd35927 100755
--- a/scripts/bootstrap-prefix.sh
+++ b/scripts/bootstrap-prefix.sh
@@ -412,7 +412,7 @@ bootstrap_setup() {
 
 do_tree() {
local x
-   for x in etc{,/portage} usr/{{,s}bin,lib} var/tmp var/lib/portage 
var/log/portage var/db;
+   for x in etc{,/portage} usr/{{,s}bin,$(rapx "" lib)} var/tmp 
var/lib/portage var/log/portage var/db;
do
[[ -d ${ROOT}/${x} ]] || mkdir -p "${ROOT}/${x}"
done
@@ -428,7 +428,7 @@ do_tree() {
[[ -e ${ROOT}/${x} ]] || ( cd "${ROOT}" && ln -s 
usr/${x} )
done
else
-   for x in lib sbin ; do
+   for x in $(rapx "" lib) sbin ; do
[[ -d ${ROOT}/${x} ]] || mkdir -p "${ROOT}/${x}"
done
fi
@@ -537,7 +537,8 @@ bootstrap_portage() {
[[ -x ${ROOT}/tmp/bin/bash ]] || [[ ! -x ${ROOT}/tmp/usr/bin/bash ]] || 
ln -s ../usr/bin/bash "${ROOT}"/tmp/bin/bash || return 1
[[ -x ${ROOT}/tmp/bin/bash ]] || ln -s "${BASH}" "${ROOT}"/tmp/bin/bash 
|| return 1
[[ -x ${ROOT}/tmp/bin/sh ]] || ln -s bash "${ROOT}"/tmp/bin/sh || 
return 1
-   [[ -x ${ROOT}/bin/sh ]] || ln -s ../tmp/bin/sh "${ROOT}"/bin/sh || 
return 1
+   [[ -x ${ROOT}/bin/bash ]] || ln -s ../tmp/bin/bash "${ROOT}"/bin/bash 
|| return 1
+   [[ -x ${ROOT}/bin/sh ]] || ln -s bash "${ROOT}"/bin/sh || return 1
export PORTAGE_BASH="${ROOT}"/tmp/bin/bash
 
einfo "Compiling ${A%-*}"
@@ -1336,10 +1337,12 @@ bootstrap_stage3() {
fi
fi
 
+   get_libdir() { portageq envvar LIBDIR_$(portageq envvar ABI) || echo 
lib; }
+
configure_toolchain || return 1
export CONFIG_SHELL="${ROOT}"/tmp/bin/bash
export CPPFLAGS="-I${ROOT}/usr/include"
-   export LDFLAGS="-L${ROOT}/usr/lib"
+   export LDFLAGS="-L${ROOT}/usr/$(get_libdir)"
unset CC CXX
 
emerge_pkgs() {



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

2016-07-06 Thread Stephen Klimaszewski
commit: c8521ce3314d8ac95767e7b098f37fdad5be2fab
Author: Steev Klimaszewski  gentoo  org>
AuthorDate: Thu Jul  7 02:34:58 2016 +
Commit: Stephen Klimaszewski  gentoo  org>
CommitDate: Thu Jul  7 02:34:58 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8521ce3

app-shells/mksh: Add ~arm keyword to 52c wrt bug 577500

Add ~arm keywording to 52c, and also fix up the Gentoo copyright.

Package-Manager: portage-2.3.0

 app-shells/mksh/mksh-52c.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-shells/mksh/mksh-52c.ebuild b/app-shells/mksh/mksh-52c.ebuild
index e2df980..bdbf1f2 100644
--- a/app-shells/mksh/mksh-52c.ebuild
+++ b/app-shells/mksh/mksh-52c.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 



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

2016-07-06 Thread Stephen Klimaszewski
commit: e649b2328378449e60336d27a2be9d794df93e34
Author: Steev Klimaszewski  gentoo  org>
AuthorDate: Thu Jul  7 02:28:53 2016 +
Commit: Stephen Klimaszewski  gentoo  org>
CommitDate: Thu Jul  7 02:28:53 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e649b232

dev-libs/openssl: arm64 stable wrt bug 585276

Package-Manager: portage-2.3.0

 dev-libs/openssl/openssl-1.0.2h-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/openssl/openssl-1.0.2h-r2.ebuild 
b/dev-libs/openssl/openssl-1.0.2h-r2.ebuild
index b4ed28f..6e3cb85 100644
--- a/dev-libs/openssl/openssl-1.0.2h-r2.ebuild
+++ b/dev-libs/openssl/openssl-1.0.2h-r2.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://openssl/source/${MY_P}.tar.gz"
 
 LICENSE="openssl"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~arm-linux ~x86-linux"
+KEYWORDS="alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~arm-linux ~x86-linux"
 IUSE="+asm bindist gmp kerberos rfc3779 sctp cpu_flags_x86_sse2 sslv2 +sslv3 
static-libs test +tls-heartbeat vanilla zlib"
 RESTRICT="!bindist? ( bindist )"
 



[gentoo-commits] repo/gentoo:master commit in: sys-kernel/hardened-sources/

2016-07-06 Thread Anthony G. Basile
commit: ff1e95dea0102b1bb708d40b31fbf432b9784f47
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Thu Jul  7 01:21:27 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Thu Jul  7 01:21:43 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff1e95de

sys-kernel/hardened-sources: version bump to 4.6.3

vanilla-4.6.3 + genpatches-4.6-3 + grsecurity-3.1-4.6.3-201607060823

Package-Manager: portage-2.2.28

 sys-kernel/hardened-sources/Manifest   |  5 +++
 .../hardened-sources/hardened-sources-4.6.3.ebuild | 45 ++
 2 files changed, 50 insertions(+)

diff --git a/sys-kernel/hardened-sources/Manifest 
b/sys-kernel/hardened-sources/Manifest
index 2739da7..8d30699 100644
--- a/sys-kernel/hardened-sources/Manifest
+++ b/sys-kernel/hardened-sources/Manifest
@@ -1,18 +1,23 @@
 DIST deblob-4.3 137019 SHA256 
317eb90f128fc05bcf0a01eb7f167f9b5447563b0af4cef4270b774ad64dbdf8 SHA512 
e1f98cfcac9cbbe3e7042bc427c1afb5024088d0846a1eb806c7c46616ee77cbbeb63c52f7c1229ff54cda74605f9a6775833e1f5d7ba35a9ae554ca05fd7fc0
 WHIRLPOOL 
9d42765fd0592f7c8e01f5df78510deafbfff2b60128ad26c2412bdab4b02c72fc8dd0c7c0180176b5399de66cc85f625abf2968c049f8a3b9ebeb5d8c5c71f0
 DIST deblob-4.4 137370 SHA256 
7cf11c8594db0d2a10a1b02390c9ff8916f1d2a1fe9d59058ca45485500c5274 SHA512 
ea5f2f2cdbc97bdc90c2131f846761dc1630a53986db10d8e9d07d1ddee12a9d878c57790edd3ecc75ed9792d479b7b726c39d688a3926e850608c81b1b78a3a
 WHIRLPOOL 
bedd494be2032ce4b8911f25df906055d019af31ea6548b885482f870cd5313e09e7fb544fc8db268b3498cc18c199ae5701023839c972b48dbd8128239eeb75
 DIST deblob-4.5 140464 SHA256 
62e8b8f23e705d6643ba7c94a79a25f8dd44e73e6348785f4b4ffb940df4734c SHA512 
0f72bbe835d285a51c8ca45f75a6e8bb74d2cbc82f98337d45ab63e7cda1848fa71af933d635eacf2c5af0a86a6854fc73a6512fd314c55db666b8c51dad028d
 WHIRLPOOL 
6d8b7e416afdfe75b43414c8d33394b0341fa7f8ec169e5752d16b712b4d8fd3004c3b8e1aab012eafafb6a0cf1073585acd85aa377ccc0bfd0d78dc666f8f28
+DIST deblob-4.6 140788 SHA256 
a13eade280ab3370d2f9ed2133315d876cd54e6ba249d5b9e0c04d2442348032 SHA512 
bc716d20b8fe5fe5ccd7de0f38e7d2e3774e6738485f608365de2e2a15421b98fdde68cd2d9b45dca46ef1a9950a978cd424d8d2b21570ff9675c798f4f10c8e
 WHIRLPOOL 
5111ff70552d17bbd79ffd6ca3bcf6fdda8b9fd18f00c94483919f72714b346394830d25e88b85c4b308f1ea7fd32ab883a2aa99510a0338e0961da0e43aa28f
 DIST deblob-check-4.3 688368 SHA256 
9dff222415c2ead1edba2f6755926d6786225814d87dc3624605f99a4b760a5a SHA512 
2029b4765a4f83b71370dc4439526daff57be32f8692a329d500df82019a5381849ca979c0ae3761c2efcc04590c031560f0e25de50e71f476618df529a1445a
 WHIRLPOOL 
6dbdcfe6653e751ff00ad91f45c803bdb196fdb9c895ddffaec18a111a19720d50a77485ff8ce228287217ad2e98b6f9e9c65a3c6476f195cbf9e3b7969be34a
 DIST deblob-check-4.4 694225 SHA256 
e142bafdd5a05280d5280fbf109aadab3af9ce71152ab2d27ad41e96766e0c3e SHA512 
6554ae567566da4d30e94a37622f88343b8e96ab39a9204fee34de4ddb5dac8c4906b25843b63c2388d03a4441821c25d395b3c39fc875c498a69e677a4f0cb5
 WHIRLPOOL 
414f60a64a2c14f01eedebc84f5adfabf0562bcf76545a57e757cb6ac914ffc49c90c329eedd1aafb1ee752bfc082fd4f6af173774f4f853ddd637525fbeeb9b
 DIST deblob-check-4.5 698696 SHA256 
a5e91ae27c122fb635d7619e5bb2fdf67038222e99b874733255d273627ed085 SHA512 
2dcbb64a2bb6247f0bb2b768dded6daed019bc4643bbb8dcf17528f17cfeb09ba9a428bb63526eafd38908269b50c588f77a9ce6af95bd3b0c7f20263792f6d4
 WHIRLPOOL 
5e89ddb75c7d6d5bb7142dc9c878d63c80252541c1bb264b7ee30a2ed868fa69fa57883986b5cf2685b1ab53aa00e52c9cbee4161d361de7a5592de7dc126b40
+DIST deblob-check-4.6 702574 SHA256 
8c887562db0a567253582448825978978389c4f52e471cb9564b5d540b43c11f SHA512 
cbfbab99fc0bffbba8d8227e56fc9c5a24de3fa68b7753f7985c37040f26465527d092ba6b4bf080bcbaa02948f8dfbbc6e2a7dabc5605ea0b90e3fd6cdacdec
 WHIRLPOOL 
e69e6cd0f86ef9cb129f060ba3bb1890078b3e459c5632db4c8ef8ffbc1f97cc7f1409c528b6ae8e5e1828ff39a6c66a50353b23f972c5121e22fd13474e856a
 DIST genpatches-4.3-4.base.tar.xz 75572 SHA256 
c0c073f12a4f1c0adf9d3865fe5d16dc43ea0e5c95c0867868e16e57f2fd6235 SHA512 
a16b75f8fcd868d6f9bc2b91318eb8b8ec4db2b622d244e750d4176c4e8225808751c543c54d768fbd88785da656e9f60d8ef8bc22672b5cb1038573c0c366e1
 WHIRLPOOL 
04c723b71f440035f57684088a47e83430f1c5b057951e037f128f3681f16669eca16f2f1b8d4b7be4a617420131277d1fe415503a679b83a081e06635df46e3
 DIST genpatches-4.4-3.base.tar.xz 26508 SHA256 
76f5685698b02b81643d6b2edcd53217e0f6fa00e068a138f2eb3bc596dec2e5 SHA512 
255e2ef79c56699e5b032fa392b2748570ce96c74f1172f4a4c1b4d22f8b8b0a9462c388028a0cad92e821815d39cfa6450f171d81fed5f274dce03979c39322
 WHIRLPOOL 
6da9edc7936f8857b929e589b2adcb17363a76ec5d85b3406fcb8308d6cb2da924f1f9af5062f85ddf4d415ca9d9524b731e8c4e0cde756e14ccc122a6e75c74
 DIST genpatches-4.4-9.base.tar.xz 304360 SHA256 
e9ba25000126256be414a273b154accc51ef523d236c35e2214ee75e243aa71f SHA512 
ef239c362defeafc92eae84ede7a07820ddf0c01002f52a58d39d7b0dcdfd83af2d5fa4d2ee3d2c57e4c89a30d4fbf05dc5519886b8f55bf148ce4197b85d465
 WHIRLPOOL 

[gentoo-commits] proj/hardened-patchset: New tag: 20160706

2016-07-06 Thread Anthony G. Basile
commit: 
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Thu Jul  7 00:53:52 2016 +

New tag: 20160706




[gentoo-commits] repo/gentoo:master commit in: sys-auth/keystone/

2016-07-06 Thread Matt Thode
commit: 57cff64fdf9cb10378353c165515d09b83373912
Author: Matthew Thode  gentoo  org>
AuthorDate: Thu Jul  7 00:27:49 2016 +
Commit: Matt Thode  gentoo  org>
CommitDate: Thu Jul  7 00:27:49 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57cff64f

sys-auth/keystone: bup

Package-Manager: portage-2.2.28

 sys-auth/keystone/Manifest   |  1 +
 sys-auth/keystone/keystone-2016.1..ebuild|  5 -
 .../{keystone-2016.1..ebuild => keystone-9.1.0.ebuild}   | 12 +++-
 3 files changed, 12 insertions(+), 6 deletions(-)

diff --git a/sys-auth/keystone/Manifest b/sys-auth/keystone/Manifest
index d756b6c..83bfd9e 100644
--- a/sys-auth/keystone/Manifest
+++ b/sys-auth/keystone/Manifest
@@ -3,3 +3,4 @@ DIST keystone-8.1.0.tar.gz 1070643 SHA256 
2a068686c3392215547c51579b6ffe782c6162
 DIST keystone-8.1.2.tar.gz 1073146 SHA256 
9871dcef23774e28cef590514d162b21ef375b4ebb871e68b70bdd9231eb8e38 SHA512 
e610ea2e3164d0f26eedf3c0b494d08b89023eb9579439793425d81e67e203ef2209192fb1d9028b6246b61069f580077184217ce5ef2745e2a28667e2675937
 WHIRLPOOL 
765f73ff0768498fdb67246a424dee8c8f2069fee709a3b0991000860e3802c1fde627cdbd2246198b60cc0b6069f5b061825a478ef886d85329f246431b6ccb
 DIST keystone-9.0.0.tar.gz 1181342 SHA256 
ff8e14ef7880bcfdb83a81815f4686f5484d68ecac9dce48155403781643fa91 SHA512 
08dbbb36f0cc22db8725797f75e88149777541a312484170cb2efb8f1cfe119ba385822f92674841745a41601d725db1f0b880710398ca69c3ad117b6e46607a
 WHIRLPOOL 
4b8151b5fe8f5cbf0ab68a5dda806fe59b4739687cc0cf2a13b62f005a337dc94f725046d3edb49c62797921e369468f0675956c29761361824cea2275c029f4
 DIST keystone-9.0.2.tar.gz 1180101 SHA256 
2420f3ac6dee1982708786827c676278976fc493f47e2d4a44421bc0f3f87a89 SHA512 
40143897a716c7dd331593f43a488e17ef56a9bb8622e40ef9bbaaa739b44fab281ea2d598727de80c7820bd6e028074c0104b304a47d8f9df8ec38e635fd2a0
 WHIRLPOOL 
dfdfcdcb0288413fcd6bc2566d427b06c7ffecfc53db7b717b36cd6df3d25a9f2562ee35051984456c438158026e877f8ac149e38a040c62594a9d78ad7c
+DIST keystone-9.1.0.tar.gz 1183959 SHA256 
3828f8907d07901a3f0516b9ee99fbd42bd9d293e4fa137d850a46487c76bad3 SHA512 
2326d3ef91e614df8c0cfc68c4c4ced5f28a9c2c07e7bf6b7e55078c12d00cbb910bb53e1aee9cfcded70cfd78ab250ae5316bfc40e79609e980f0512f308fc0
 WHIRLPOOL 
5f6fcdcd5e2bb6dd2f7a0feaf6645f06baa5cdcaa645dc18a6fc95d2eaddcc1d160d4735631c08a90103a392b502344e8d463b917fb78a286ac4dcc806f22029

diff --git a/sys-auth/keystone/keystone-2016.1..ebuild 
b/sys-auth/keystone/keystone-2016.1..ebuild
index 41da0d7..4b1891d 100644
--- a/sys-auth/keystone/keystone-2016.1..ebuild
+++ b/sys-auth/keystone/keystone-2016.1..ebuild
@@ -33,7 +33,9 @@ RDEPEND="
>=dev-python/routes-1.12.3[${PYTHON_USEDEP}]
!~dev-python/routes-2.0[${PYTHON_USEDEP}]
!~dev-python/routes-2.1[$(python_gen_usedep 'python2_7')]
+   !~dev-python/routes-2.3.0[${PYTHON_USEDEP}]
>=dev-python/cryptography-1.0[${PYTHON_USEDEP}]
+   !~dev-python/cryptography-1.3.0[${PYTHON_USEDEP}]
>=dev-python/six-1.9.0[${PYTHON_USEDEP}]
sqlite? (
>=dev-python/sqlalchemy-1.0.10[sqlite,${PYTHON_USEDEP}]
@@ -55,10 +57,11 @@ RDEPEND="
>=dev-python/python-keystoneclient-1.6.0[${PYTHON_USEDEP}]
!~dev-python/python-keystoneclient-1.8.0[${PYTHON_USEDEP}]
!~dev-python/python-keystoneclient-2.1.0[${PYTHON_USEDEP}]
+   =dev-python/keystonemiddleware-4.0.0[${PYTHON_USEDEP}]
!~dev-python/keystonemiddleware-4.1.0[${PYTHON_USEDEP}]
>=dev-python/oslo-cache-1.5.0[${PYTHON_USEDEP}]
-   >=dev-python/oslo-concurrency-3.5.0[${PYTHON_USEDEP}]
+   >=dev-python/oslo-concurrency-3.7.1[${PYTHON_USEDEP}]
>=dev-python/oslo-config-3.7.0[${PYTHON_USEDEP}]
>=dev-python/oslo-context-0.2.0[${PYTHON_USEDEP}]
>=dev-python/oslo-messaging-4.0.0[${PYTHON_USEDEP}]

diff --git a/sys-auth/keystone/keystone-2016.1..ebuild 
b/sys-auth/keystone/keystone-9.1.0.ebuild
similarity index 94%
copy from sys-auth/keystone/keystone-2016.1..ebuild
copy to sys-auth/keystone/keystone-9.1.0.ebuild
index 41da0d7..1acfc54 100644
--- a/sys-auth/keystone/keystone-2016.1..ebuild
+++ b/sys-auth/keystone/keystone-9.1.0.ebuild
@@ -6,16 +6,15 @@ EAPI=6
 
 PYTHON_COMPAT=( python2_7 )
 
-inherit distutils-r1 git-r3 user
+inherit distutils-r1 user
 
 DESCRIPTION="The Openstack authentication, authorization, and service catalog"
 HOMEPAGE="https://launchpad.net/keystone;
-EGIT_REPO_URI="https://github.com/openstack/keystone.git;
-EGIT_BRANCH="stable/mitaka"
+SRC_URI="https://tarballs.openstack.org/${PN}/${P}.tar.gz;
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS=""
+KEYWORDS="~amd64 ~arm64 ~x86"
 IUSE="+sqlite ldap memcached mongo mysql postgres test"
 REQUIRED_USE="|| ( mysql postgres sqlite )"
 
@@ -33,7 +32,9 @@ RDEPEND="
>=dev-python/routes-1.12.3[${PYTHON_USEDEP}]
!~dev-python/routes-2.0[${PYTHON_USEDEP}]

[gentoo-commits] repo/gentoo:master commit in: games-action/maelstrom/, games-action/maelstrom/files/

2016-07-06 Thread Austin English
commit: 6eb12cf613ef9cbbabf14107e511f7a2fbf3aba5
Author: Austin English  gentoo  org>
AuthorDate: Thu Jul  7 00:12:11 2016 +
Commit: Austin English  gentoo  org>
CommitDate: Thu Jul  7 00:12:34 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6eb12cf6

games-action/maelstrom: remove deprecated games eclass

Also update to EAPI 6

Gentoo-Bug: https://bugs.gentoo.org/574082]

Package-Manager: portage-2.2.28

 .../maelstrom/files/maelstrom-3.0.6-64bits.patch   |  4 +-
 .../maelstrom/files/maelstrom-3.0.6-warnings.patch |  4 +-
 games-action/maelstrom/maelstrom-3.0.6-r3.ebuild   | 72 ++
 3 files changed, 76 insertions(+), 4 deletions(-)

diff --git a/games-action/maelstrom/files/maelstrom-3.0.6-64bits.patch 
b/games-action/maelstrom/files/maelstrom-3.0.6-64bits.patch
index bdf04d3..7d6f59a 100644
--- a/games-action/maelstrom/files/maelstrom-3.0.6-64bits.patch
+++ b/games-action/maelstrom/files/maelstrom-3.0.6-64bits.patch
@@ -1,5 +1,5 @@
 screenlib/SDL_FrameBuf.cpp.old 2006-10-25 22:37:21.0 +0200
-+++ screenlib/SDL_FrameBuf.cpp 2006-10-25 22:38:26.0 +0200
+--- a/screenlib/SDL_FrameBuf.cpp   2006-10-25 22:37:21.0 +0200
 b/screenlib/SDL_FrameBuf.cpp   2006-10-25 22:38:26.0 +0200
 @@ -847,10 +847,8 @@
/* Update the dirty rectangle map with the new list */
for ( i=0; i

[gentoo-commits] repo/gentoo:master commit in: games-action/maelstrom/files/

2016-07-06 Thread Austin English
commit: e073f90b329e09a30cb52ac8b9abaf4a4dbbd7d6
Author: Austin English  gentoo  org>
AuthorDate: Wed Jul  6 23:55:47 2016 +
Commit: Austin English  gentoo  org>
CommitDate: Thu Jul  7 00:12:34 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e073f90b

games-action/maelstrom: remove unused patches

 .../files/maelstrom-3.0.6-r1-security.patch| 380 -
 games-action/maelstrom/files/maelstrom-gcc34.patch |  30 --
 2 files changed, 410 deletions(-)

diff --git a/games-action/maelstrom/files/maelstrom-3.0.6-r1-security.patch 
b/games-action/maelstrom/files/maelstrom-3.0.6-r1-security.patch
deleted file mode 100644
index ae22c0c..000
--- a/games-action/maelstrom/files/maelstrom-3.0.6-r1-security.patch
+++ /dev/null
@@ -1,380 +0,0 @@
-diff -ur Maelstrom-3.0.6-orig/controls.cpp Maelstrom-3.0.6/controls.cpp
 Maelstrom-3.0.6-orig/controls.cpp  2001-03-25 03:04:28 +0900
-+++ Maelstrom-3.0.6/controls.cpp   2003-05-21 11:25:53 +0900
-@@ -83,7 +83,7 @@
-   if ( fname ) {
-   *fname = datafile;
-   }
--  sprintf(datafile,  "%s"DIR_SEP"%s", home, MAELSTROM_DATA);
-+  snprintf(datafile, sizeof(datafile), "%s"DIR_SEP"%s", home, 
MAELSTROM_DATA);
-   if ( (data=fopen(datafile, mode)) == NULL )
-   return(NULL);
-   return(data);
-diff -ur Maelstrom-3.0.6-orig/dialog.h Maelstrom-3.0.6/dialog.h
 Maelstrom-3.0.6-orig/dialog.h  2001-07-21 00:08:10 +0900
-+++ Maelstrom-3.0.6/dialog.h   2003-05-21 11:24:33 +0900
-@@ -92,7 +92,7 @@
-   va_list ap;
- 
-   va_start(ap, fmt);
--  vsprintf(errbuf, fmt, ap);
-+  vsnprintf(errbuf, sizeof(errbuf), fmt, ap);
-   va_end(ap);
-   errstr = errbuf;
- }
-@@ -878,7 +878,7 @@
-   if ( entry->text ) {
-   Fontserv->FreeText(entry->text);
-   }
--  sprintf(buf, "%d", *entry->variable);
-+  snprintf(buf, sizeof(buf), "%d", *entry->variable);
- 
-   if ( entry->hilite ) {
-   clear = Fg;
-diff -ur Maelstrom-3.0.6-orig/load.cpp Maelstrom-3.0.6/load.cpp
 Maelstrom-3.0.6-orig/load.cpp  2000-02-15 11:47:39 +0900
-+++ Maelstrom-3.0.6/load.cpp   2003-05-21 11:26:18 +0900
-@@ -81,7 +81,7 @@
-   SDL_Surface *bmp, *title;
-   
-   /* Open the title file -- we know its colormap is our global one */
--  sprintf(file, "Images"DIR_SEP"Maelstrom_Titles#%d.bmp", title_id);
-+  snprintf(file, sizeof(file), "Images"DIR_SEP"Maelstrom_Titles#%d.bmp", 
title_id);
-   bmp = SDL_LoadBMP(path.Path(file));
-   if ( bmp == NULL ) {
-   return(NULL);
-@@ -103,7 +103,7 @@
-   Uint16 w, h;
-   
-   /* Open the cicn sprite file.. */
--  sprintf(file, "Images"DIR_SEP"Maelstrom_Icon#%hd.cicn", cicn_id);
-+  snprintf(file, sizeof(file), "Images"DIR_SEP"Maelstrom_Icon#%hd.cicn", 
cicn_id);
-   if ( (cicn_src=SDL_RWFromFile(path.Path(file), "r")) == NULL ) {
-   error("GetCIcon(%hd): Can't open CICN %s: ",
-   cicn_id, path.Path(file));
-diff -ur Maelstrom-3.0.6-orig/maclib/Mac_FontServ.h 
Maelstrom-3.0.6/maclib/Mac_FontServ.h
 Maelstrom-3.0.6-orig/maclib/Mac_FontServ.h 1999-12-03 02:15:33 +0900
-+++ Maelstrom-3.0.6/maclib/Mac_FontServ.h  2003-05-21 11:28:43 +0900
-@@ -135,7 +135,7 @@
-   va_list ap;
- 
-   va_start(ap, fmt);
--  vsprintf(errbuf, fmt, ap);
-+  vsnprintf(errbuf, sizeof(errbuf), fmt, ap);
-   va_end(ap);
-   errstr = errbuf;
-   }
-diff -ur Maelstrom-3.0.6-orig/maclib/Mac_Resource.h 
Maelstrom-3.0.6/maclib/Mac_Resource.h
 Maelstrom-3.0.6-orig/maclib/Mac_Resource.h 1999-12-04 03:01:47 +0900
-+++ Maelstrom-3.0.6/maclib/Mac_Resource.h  2003-05-21 11:28:35 +0900
-@@ -96,7 +96,7 @@
-   va_list ap;
- 
-   va_start(ap, fmt);
--  vsprintf(errbuf, fmt, ap);
-+  vsnprintf(errbuf, sizeof(errbuf), fmt, ap);
-   va_end(ap);
-   errstr = errbuf;
-   }
-diff -ur Maelstrom-3.0.6-orig/maclib/Mac_Sound.h 
Maelstrom-3.0.6/maclib/Mac_Sound.h
 Maelstrom-3.0.6-orig/maclib/Mac_Sound.h2002-10-20 11:53:34 +0900
-+++ Maelstrom-3.0.6/maclib/Mac_Sound.h 2003-05-21 11:28:27 +0900
-@@ -199,7 +199,7 @@
-   va_list ap;
- 
-   va_start(ap, fmt);
--  vsprintf(errbuf, fmt, ap);
-+  vsnprintf(errbuf, sizeof(errbuf), fmt, ap);
-   va_end(ap);
-   errstr = errbuf;
-   }
-diff -ur Maelstrom-3.0.6-orig/maclib/Mac_Wave.h 
Maelstrom-3.0.6/maclib/Mac_Wave.h
 Maelstrom-3.0.6-orig/maclib/Mac_Wave.h 2000-01-26 01:44:10 +0900
-+++ Maelstrom-3.0.6/maclib/Mac_Wave.h  2003-05-21 11:28:20 +0900
-@@ -108,7 +108,7 @@
-   va_list ap;
- 
-   va_start(ap, fmt);
--  

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

2016-07-06 Thread Anthony G. Basile
commit: 76d1eccd7a65f9f7cfd5c81b406ddbca11a84a63
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Thu Jul  7 00:06:28 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Thu Jul  7 00:06:28 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76d1eccd

net-libs/axtls: remove older versions

Package-Manager: portage-2.2.28

 net-libs/axtls/Manifest   |   3 -
 net-libs/axtls/axtls-1.5.0.ebuild | 177 --
 net-libs/axtls/axtls-1.5.1.ebuild | 177 --
 net-libs/axtls/axtls-1.5.2.ebuild | 177 --
 4 files changed, 534 deletions(-)

diff --git a/net-libs/axtls/Manifest b/net-libs/axtls/Manifest
index 6a5f8dc..5deb48c 100644
--- a/net-libs/axtls/Manifest
+++ b/net-libs/axtls/Manifest
@@ -1,5 +1,2 @@
-DIST axTLS-1.5.0.tar.gz 1302393 SHA256 
7ff27d1eb1ad1630e1a3431278d72857c1124edd9a15a07a79709bc77d8bb710 SHA512 
526e3c408c960e7e48dd791c6cf94a3dbc62a36c0453e4705529490160cacd5ca1c663fab153a899618e78516714e3afb7a93dae075d2717eb9a91e63f3e9c04
 WHIRLPOOL 
5fc0e9f4d3f8994dc2909f85261aac538b9563b3dee787d8d6a0942f087041893217a0b9237d5c0824c3a64bb8272bb30d2c4fcdbd11a879107f20892c8f180f
-DIST axTLS-1.5.1.tar.gz 1305575 SHA256 
860a2754c497109854889e78eb2efdf00661f3b5dbb5e130bd5d8441a2f6ea50 SHA512 
4b35e151d222496f5e4ab9c849ca9b14a245590a07f07132eab2fa633dac4cf7abfe29344f643fa182c9c443a139d3230d4b3554d3ff0932410ab36ae3666d92
 WHIRLPOOL 
c1072aa94a7916db38d26902bac175d17e4f8fe1a431956d0b366f9cd913c89c145d119c823d9c1bfa51d54aa191ca43386b4312bea3a16f61d9df4ff2eb6b68
-DIST axTLS-1.5.2.tar.gz 1309632 SHA256 
c4568cdf3e326c6fee2d7d16b4e13e05a29cecf49c1774c7858fe83cde01f8bb SHA512 
138c1134c949fb85335454907c8fa74f18860d16371aba7d4d46faa4fb0e9cbf41d259cf72389f439d8d6436dc200951001a53e996793ba59254f5ddefe9
 WHIRLPOOL 
36b889c4aa5e3c2c0da20a189ec7342db86b757acbb5c9c8a12262d95ceabb490ac97fa608efd66757e74e6347e0f5ff5bd5c76ac453d9dbdc115c45b8e35ad4
 DIST axTLS-1.5.3.tar.gz 1309853 SHA256 
367ce7918b9e7738d853d5eaaa9d4fbdb362c5b323d4c0622a72d891f6b8d8e6 SHA512 
d37fb1341259b079ed234512a96656d67e005c50d9f8e0c856fb140c9da35267624e065134e0cc8310f70e5cf5d196c7dd34f01e2a7a5cc29e77e7ca46c25281
 WHIRLPOOL 
92de1a06da740adf0238550d36a75216bace6c7fb867e82d38f2ca2362dcf0e41810191933aa788ffda080367b6beb312f1a9a240ab687a6c4f324988d36a81c
 DIST axTLS-1.5.4.tar.gz 1296351 SHA256 
24d50cc4f5908d06cfacb2a3916d91ed75c5b1441809e47bc45e1053d6ba5d91 SHA512 
0e52ca22199b3c7eb45641c7fdbe607f79fcea25f12d1ee0535a6a7c7579ee42777d27ce6474866eca19287bd11a1de76f5c39f715eb06e9e4cf3324b312
 WHIRLPOOL 
29d2b5e72165c28c0e9084677f44b52116ec5da5efabc2fed79479800cbfe43c5dd4bf7390951b5168a63af0acd1cb5635fecac7d4ef42d570a1ef6d5e7edb6f

diff --git a/net-libs/axtls/axtls-1.5.0.ebuild 
b/net-libs/axtls/axtls-1.5.0.ebuild
deleted file mode 100644
index b0149d2..000
--- a/net-libs/axtls/axtls-1.5.0.ebuild
+++ /dev/null
@@ -1,177 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-inherit eutils multilib multilib-minimal savedconfig toolchain-funcs user
-
-
-# axtls CONFIG MINI-HOWTO
-#
-# Note: axtls is highly configurable and uses mconf, like the linux kernel.
-# You can configure it in a couple of ways:
-#
-# 1) USE="-savedconfig" and set/unset the remaining flags to obtain the 
features
-# you want, and possibly a lot more.
-#
-# 2) You can create your own configuration file by doing
-#
-#  FEATURES="keepwork" USE="savedconfig -*" emerge axtls
-#  cd /var/tmp/portage/net-libs/axtls*/work/axTLS
-#  make menuconfig
-#
-# Now configure axtls as you want.  Finally save your config file:
-#
-#  cp config/.config /etc/portage/savedconfig/net-libs/axtls-${PV}
-#
-# where ${PV} is the current version.  You can then run emerge again with
-# your configuration by doing
-#
-#  USE="savedconfig" emerge axtls
-#
-
-
-MY_PN=${PN/tls/TLS}
-
-DESCRIPTION="Embedded client/server TLSv1 SSL library and small HTTP(S) server"
-HOMEPAGE="http://axtls.sourceforge.net/;
-SRC_URI="mirror://sourceforge/axtls/${MY_PN}-${PV}.tar.gz"
-S="${WORKDIR}/${PN}-code"
-
-LICENSE="BSD GPL-2"
-SLOT="0"
-KEYWORDS="amd64 arm hppa ~mips ppc ppc64 ~s390 x86"
-
-IUSE="httpd cgi-lua cgi-php static static-libs doc"
-
-# TODO: add ipv6, and c#, java, lua, perl bindings
-# Currently these all have some issue
-DEPEND="doc? ( app-doc/doxygen )"
-RDEPEND="
-   httpd? (
-   cgi-lua? ( dev-lang/lua )
-   cgi-php? ( dev-lang/php[cgi] )
-   )"
-
-#Note1: static, cgi-* makes no sense if httpd is not given
-REQUIRED_USE="
-   static? ( httpd )
-   cgi-lua? ( httpd )
-   cgi-php? ( httpd )"
-
-AXTLS_GROUP="axtls"
-AXTLS_USER="axtls"
-
-pkg_setup() {
-   

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

2016-07-06 Thread Anthony G. Basile
commit: 668bd642ef7a8f91145101aca8c96e523f7783e9
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Thu Jul  7 00:05:07 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Thu Jul  7 00:05:07 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=668bd642

net-libs/axtls: version bump to 1.5.4

Package-Manager: portage-2.2.28

 net-libs/axtls/Manifest   |   1 +
 net-libs/axtls/axtls-1.5.4.ebuild | 177 ++
 2 files changed, 178 insertions(+)

diff --git a/net-libs/axtls/Manifest b/net-libs/axtls/Manifest
index 74b9491..6a5f8dc 100644
--- a/net-libs/axtls/Manifest
+++ b/net-libs/axtls/Manifest
@@ -2,3 +2,4 @@ DIST axTLS-1.5.0.tar.gz 1302393 SHA256 
7ff27d1eb1ad1630e1a3431278d72857c1124edd9
 DIST axTLS-1.5.1.tar.gz 1305575 SHA256 
860a2754c497109854889e78eb2efdf00661f3b5dbb5e130bd5d8441a2f6ea50 SHA512 
4b35e151d222496f5e4ab9c849ca9b14a245590a07f07132eab2fa633dac4cf7abfe29344f643fa182c9c443a139d3230d4b3554d3ff0932410ab36ae3666d92
 WHIRLPOOL 
c1072aa94a7916db38d26902bac175d17e4f8fe1a431956d0b366f9cd913c89c145d119c823d9c1bfa51d54aa191ca43386b4312bea3a16f61d9df4ff2eb6b68
 DIST axTLS-1.5.2.tar.gz 1309632 SHA256 
c4568cdf3e326c6fee2d7d16b4e13e05a29cecf49c1774c7858fe83cde01f8bb SHA512 
138c1134c949fb85335454907c8fa74f18860d16371aba7d4d46faa4fb0e9cbf41d259cf72389f439d8d6436dc200951001a53e996793ba59254f5ddefe9
 WHIRLPOOL 
36b889c4aa5e3c2c0da20a189ec7342db86b757acbb5c9c8a12262d95ceabb490ac97fa608efd66757e74e6347e0f5ff5bd5c76ac453d9dbdc115c45b8e35ad4
 DIST axTLS-1.5.3.tar.gz 1309853 SHA256 
367ce7918b9e7738d853d5eaaa9d4fbdb362c5b323d4c0622a72d891f6b8d8e6 SHA512 
d37fb1341259b079ed234512a96656d67e005c50d9f8e0c856fb140c9da35267624e065134e0cc8310f70e5cf5d196c7dd34f01e2a7a5cc29e77e7ca46c25281
 WHIRLPOOL 
92de1a06da740adf0238550d36a75216bace6c7fb867e82d38f2ca2362dcf0e41810191933aa788ffda080367b6beb312f1a9a240ab687a6c4f324988d36a81c
+DIST axTLS-1.5.4.tar.gz 1296351 SHA256 
24d50cc4f5908d06cfacb2a3916d91ed75c5b1441809e47bc45e1053d6ba5d91 SHA512 
0e52ca22199b3c7eb45641c7fdbe607f79fcea25f12d1ee0535a6a7c7579ee42777d27ce6474866eca19287bd11a1de76f5c39f715eb06e9e4cf3324b312
 WHIRLPOOL 
29d2b5e72165c28c0e9084677f44b52116ec5da5efabc2fed79479800cbfe43c5dd4bf7390951b5168a63af0acd1cb5635fecac7d4ef42d570a1ef6d5e7edb6f

diff --git a/net-libs/axtls/axtls-1.5.4.ebuild 
b/net-libs/axtls/axtls-1.5.4.ebuild
new file mode 100644
index 000..ba142a9
--- /dev/null
+++ b/net-libs/axtls/axtls-1.5.4.ebuild
@@ -0,0 +1,177 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+inherit eutils multilib multilib-minimal savedconfig toolchain-funcs user
+
+
+# axtls CONFIG MINI-HOWTO
+#
+# Note: axtls is highly configurable and uses mconf, like the linux kernel.
+# You can configure it in a couple of ways:
+#
+# 1) USE="-savedconfig" and set/unset the remaining flags to obtain the 
features
+# you want, and possibly a lot more.
+#
+# 2) You can create your own configuration file by doing
+#
+#  FEATURES="keepwork" USE="savedconfig -*" emerge axtls
+#  cd /var/tmp/portage/net-libs/axtls*/work/axTLS
+#  make menuconfig
+#
+# Now configure axtls as you want.  Finally save your config file:
+#
+#  cp config/.config /etc/portage/savedconfig/net-libs/axtls-${PV}
+#
+# where ${PV} is the current version.  You can then run emerge again with
+# your configuration by doing
+#
+#  USE="savedconfig" emerge axtls
+#
+
+
+MY_PN=${PN/tls/TLS}
+
+DESCRIPTION="Embedded client/server TLSv1 SSL library and small HTTP(S) server"
+HOMEPAGE="http://axtls.sourceforge.net/;
+SRC_URI="mirror://sourceforge/axtls/${MY_PN}-${PV}.tar.gz"
+S="${WORKDIR}/${PN}-code"
+
+LICENSE="BSD GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~x86"
+
+IUSE="httpd cgi-lua cgi-php static static-libs doc"
+
+# TODO: add ipv6, and c#, java, lua, perl bindings
+# Currently these all have some issue
+DEPEND="doc? ( app-doc/doxygen )"
+RDEPEND="
+   httpd? (
+   cgi-lua? ( dev-lang/lua )
+   cgi-php? ( dev-lang/php[cgi] )
+   )"
+
+#Note1: static, cgi-* makes no sense if httpd is not given
+REQUIRED_USE="
+   static? ( httpd )
+   cgi-lua? ( httpd )
+   cgi-php? ( httpd )"
+
+AXTLS_GROUP="axtls"
+AXTLS_USER="axtls"
+
+pkg_setup() {
+   use httpd && {
+   ebegin "Creating axtls user and group"
+   enewgroup ${AXTLS_GROUP}
+   enewuser ${AXTLS_USER} -1 -1 -1 ${AXTLS_GROUP}
+   }
+}
+
+src_prepare() {
+   tc-export AR CC
+
+   epatch "${FILESDIR}/explicit-libdir-r1.patch"
+
+   #We want CONFIG_DEBUG to avoid stripping
+   #but not for debugging info
+   sed -i -e 's: -g::' config/Rules.mak || die
+   sed -i -e 's: -g::' 

[gentoo-commits] repo/gentoo:master commit in: sys-libs/musl/

2016-07-06 Thread Anthony G. Basile
commit: 9fee6768dc4188a51c8f588f2e9d835f111e0989
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Wed Jul  6 23:45:02 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Wed Jul  6 23:45:20 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9fee6768

sys-libs/musl: version bump to 1.1.15

Package-Manager: portage-2.2.28

 sys-libs/musl/Manifest   |   1 +
 sys-libs/musl/musl-1.1.15.ebuild | 137 +++
 2 files changed, 138 insertions(+)

diff --git a/sys-libs/musl/Manifest b/sys-libs/musl/Manifest
index 052ec7f..dac3d77 100644
--- a/sys-libs/musl/Manifest
+++ b/sys-libs/musl/Manifest
@@ -3,3 +3,4 @@ DIST getent.c 9438 SHA256 
68373a55e89ce85c562d941ccf588337d6cc6c9c17689d695f65cd
 DIST iconv.c 2577 SHA256 
f79a2930a2e5bb0624321589edf8b889d1e9b603e01e6b7ae214616605b3fdd7 SHA512 
9d42d66fb1facce2b85dad919be5be819ee290bd26ca2db00982b2f8e055a0196290a008711cbe2b18ec9eee8d2270e3b3a4692c5a1b807013baa5c2b70a2bbf
 WHIRLPOOL 
8b067d7f3e5b8c9862cf78cf727fa748d9b6b23be518df382251d1e3e0a6eb386b1fd7788ba3b36dadba03aa5b43e25eb25528efcadc74fa543c38a61650c5bc
 DIST musl-1.1.12.tar.gz 918757 SHA256 
720b83c7e276b4b679c0bffe9509340d5f81fd601508e607e708177df0d31c0e SHA512 
7cabbe2665e32bd3408c8865f89f474106e982b4e5de81d0cdeea19e19e20b4d2496faf1adc6b2811d996f30f39258184ba347e8eb5f3811eab89179e8f52d70
 WHIRLPOOL 
cd500c3457be42d8dd927420d2352bda87e7b424fabf19fbd387858b913636793a7ff8d0e249bcc292e58c6d0d3889738c8790f3a6409d6df2da81408a77238c
 DIST musl-1.1.14.tar.gz 894971 SHA256 
35f6c00c84a6091bd5dab29eedde7508dae755ead92dcc0239f3677d1055b9b5 SHA512 
9016246b44a7e6ef51477f0a246373c79f3e796c70031c3323be1b6c4c0518a2d4578f1aa712adfd9a80cdc1d71918bd7a35855052a0452b854755bf0cc2424e
 WHIRLPOOL 
e675ed13888021376812c65addf245906bfca00c5291ca5979cb4894cbe72b3a1b69c0fd793bd49f9cef2154131f717b15b52398b43c68fcfb7c5530b1258e72
+DIST musl-1.1.15.tar.gz 911600 SHA256 
97e447c7ee2a7f613186ec54a93054fe15469fe34d7d323080f7ef38f5ecb0fa SHA512 
9e923572c0d6bad3dc2d2646d4b0699c10b477ce6300ac6c6224895192a90667f581ddf6eda2ab8c4c16f47bde4bccb03bb90478638d136d9df721430f4d0163
 WHIRLPOOL 
68c510cf7d4216ccc5775466fa23f76ebecf1658552d613dee523bb7cc3a9f824959fe76355d1ce47326b276bf2657c9b4f3f557d81bf9c1a873f18405ad8ebf

diff --git a/sys-libs/musl/musl-1.1.15.ebuild b/sys-libs/musl/musl-1.1.15.ebuild
new file mode 100644
index 000..906de18
--- /dev/null
+++ b/sys-libs/musl/musl-1.1.15.ebuild
@@ -0,0 +1,137 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit eutils flag-o-matic multilib toolchain-funcs
+if [[ ${PV} == "" ]] ; then
+   EGIT_REPO_URI="git://git.musl-libc.org/musl"
+   inherit git-r3
+   SRC_URI="
+   http://dev.gentoo.org/~blueness/musl-misc/getconf.c
+   http://dev.gentoo.org/~blueness/musl-misc/getent.c
+   http://dev.gentoo.org/~blueness/musl-misc/iconv.c;
+   KEYWORDS=""
+else
+   SRC_URI="http://www.musl-libc.org/releases/${P}.tar.gz
+   http://dev.gentoo.org/~blueness/musl-misc/getconf.c
+   http://dev.gentoo.org/~blueness/musl-misc/getent.c
+   http://dev.gentoo.org/~blueness/musl-misc/iconv.c;
+   KEYWORDS="-* ~amd64 ~arm ~mips ~ppc ~x86"
+fi
+
+export CBUILD=${CBUILD:-${CHOST}}
+export CTARGET=${CTARGET:-${CHOST}}
+if [[ ${CTARGET} == ${CHOST} ]] ; then
+   if [[ ${CATEGORY} == cross-* ]] ; then
+   export CTARGET=${CATEGORY#cross-}
+   fi
+fi
+
+DESCRIPTION="Light, fast and simple C library focused on standards-conformance 
and safety"
+HOMEPAGE="http://www.musl-libc.org/;
+LICENSE="MIT LGPL-2 GPL-2"
+SLOT="0"
+IUSE="crosscompile_opts_headers-only"
+
+QA_SONAME="/usr/lib/libc.so"
+QA_DT_NEEDED="/usr/lib/libc.so"
+
+is_crosscompile() {
+   [[ ${CHOST} != ${CTARGET} ]]
+}
+
+just_headers() {
+   use crosscompile_opts_headers-only && is_crosscompile
+}
+
+musl_endian() {
+   # XXX: this wont work for bi-endian, but we dont have any
+   touch "${T}"/endian.s || die
+   $(tc-getAS ${CTARGET}) "${T}"/endian.s -o "${T}"/endian.o
+   case $(file "${T}"/endian.o) in
+   *" MSB "*) echo "";;
+   *" LSB "*) echo "el";;
+   *) echo "nfc";; # We shouldn't be here
+   esac
+}
+
+pkg_setup() {
+   if [ ${CTARGET} == ${CHOST} ] ; then
+   case ${CHOST} in
+   *-musl*) ;;
+   *) die "Use sys-devel/crossdev to build a musl toolchain" ;;
+   esac
+   fi
+}
+
+src_configure() {
+   tc-getCC ${CTARGET}
+   just_headers && export CC=true
+
+   local sysroot
+   is_crosscompile && sysroot=/usr/${CTARGET}
+   ./configure \
+   --target=${CTARGET} \
+   --prefix=${sysroot}/usr \
+   --syslibdir=${sysroot}/lib \
+   --disable-gcc-wrapper
+}
+
+src_compile() {
+   emake obj/include/bits/alltypes.h
+   

[gentoo-commits] repo/gentoo:master commit in: x11-drivers/xf86-video-openchrome/

2016-07-06 Thread Chí-Thanh Christopher Nguyễn
commit: c7d05ee25d5163f57a020a27cc420ff2b11e4e46
Author: Chí-Thanh Christopher Nguyễn  gentoo  org>
AuthorDate: Wed Jul  6 23:11:33 2016 +
Commit: Chí-Thanh Christopher Nguyễn  gentoo  org>
CommitDate: Wed Jul  6 23:11:33 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7d05ee2

x11-drivers/xf86-video-openchrome: version bump to 0.5.0

Package-Manager: portage-2.2.28

 x11-drivers/xf86-video-openchrome/Manifest |  1 +
 .../xf86-video-openchrome-0.5.0.ebuild | 50 ++
 2 files changed, 51 insertions(+)

diff --git a/x11-drivers/xf86-video-openchrome/Manifest 
b/x11-drivers/xf86-video-openchrome/Manifest
index 7631d37..007209e 100644
--- a/x11-drivers/xf86-video-openchrome/Manifest
+++ b/x11-drivers/xf86-video-openchrome/Manifest
@@ -1,2 +1,3 @@
 DIST xf86-video-openchrome-0.3.3.tar.bz2 518705 SHA256 
e49e2f1e5dac86408e5a74b87038cc4082d2c3fba4e0579823161991432412ed SHA512 
ed1c30a6d92b804648de324d98ca61bd7887b4b97ed94e5b0c1f5abaf7d0dbb5ba1dc79e7c35a8cd76bff0d5b05594921bddc9007ef9ba00e72d0b9bd678de9e
 WHIRLPOOL 
d22b8a6ffaaad33a705a725abb018b9637097011f83682c10a6c72a8ffce29ae82341080a86d82203f00aad2fec9c94fda5065c9df7494a4fc858843292e75ab
 DIST xf86-video-openchrome-0.4.0.tar.bz2 532508 SHA256 
73e7966d01d0d644d3b9204e8bfc106cb99069c58e981626e7352f2693e3e927 SHA512 
64408abfd759b4ba1a2bf1714345f9b1f806127f66af8b746bd58753fc10b631a7695a68351e42fa514ef4e87e2b3e564884abd758e32b2d1253b66e05e40ac8
 WHIRLPOOL 
aa45f88c52e5fd838abcb78c13611c415704ae0dcb3c3a0d9f5626c66813c9304cae483229c551af48562e77abe43222a7355ff6da9b41c67e42882f8f90e7a2
+DIST xf86-video-openchrome-0.5.0.tar.bz2 542713 SHA256 
49fdd613975a332a0a64720b382420354aecaf2fcbb4920efd094d5a0ac955bb SHA512 
119454de04847dd5298df2d1dc428157c60eba0a12c200abca40dcd066d89363cb685ed618bb17248818fa74752b77bbc9858cdd46e659c0026c90426fe652cf
 WHIRLPOOL 
21c51d2ad01c748543aef9fe22ae552fb6b13e0b877d1b2e2fc0b7ed85db52015ebb538c5c96b354b76d061e602daf61ac150ad757fa3d6860ae2e7c48096c6e

diff --git 
a/x11-drivers/xf86-video-openchrome/xf86-video-openchrome-0.5.0.ebuild 
b/x11-drivers/xf86-video-openchrome/xf86-video-openchrome-0.5.0.ebuild
new file mode 100644
index 000..0d44bc0
--- /dev/null
+++ b/x11-drivers/xf86-video-openchrome/xf86-video-openchrome-0.5.0.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+XORG_DRI="always"
+inherit xorg-2
+
+DESCRIPTION="X.Org driver for VIA/S3G cards"
+HOMEPAGE="https://www.freedesktop.org/wiki/Openchrome/;
+LICENSE="MIT"
+
+KEYWORDS="~amd64 ~x86"
+IUSE="debug viaregtool"
+
+RDEPEND=">=x11-base/xorg-server-1.9"
+DEPEND="
+   ${RDEPEND}
+   x11-libs/libX11
+   x11-libs/libXext
+   x11-libs/libXv
+   x11-libs/libXvMC
+   x11-libs/libdrm
+"
+
+DOCS=( ChangeLog NEWS README )
+
+src_configure() {
+   XORG_CONFIGURE_OPTIONS=(
+   $(use_enable debug)
+   $(use_enable debug xv-debug)
+   $(use_enable viaregtool)
+   )
+   xorg-2_src_configure
+}
+
+pkg_postinst() {
+   xorg-2_pkg_postinst
+
+   elog "Supported chipsets:"
+   elog "CLE266 (VT3122), KM400/P4M800 (VT3205), K8M800 (VT3204),"
+   elog "PM800/PM880/CN400 (VT3259), VM800/CN700/P4M800Pro (VT3314),"
+   elog "CX700 (VT3324), P4M890 (VT3327), K8M890 (VT3336),"
+   elog "P4M900/VN896 (VT3364), VX800 (VT3353), VX855 (VT3409), VX900"
+   elog
+   elog "The driver name is 'openchrome', and this is what you need"
+   elog "to use in your xorg.conf (and not 'via')."
+   elog
+   elog "See the ChangeLog and release notes for more information."
+}



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

2016-07-06 Thread Andreas Hüttel
commit: ca2cfcadeacb285ab711770a150b78bb6a0d4611
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Wed Jul  6 22:54:24 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Wed Jul  6 22:54:24 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca2cfcad

dev-perl/Test-MockObject: Remove old

Package-Manager: portage-2.3.0

 dev-perl/Test-MockObject/Manifest  |  1 -
 .../Test-MockObject-1.201.203.10-r1.ebuild | 29 --
 2 files changed, 30 deletions(-)

diff --git a/dev-perl/Test-MockObject/Manifest 
b/dev-perl/Test-MockObject/Manifest
index b9613b5..390d697 100644
--- a/dev-perl/Test-MockObject/Manifest
+++ b/dev-perl/Test-MockObject/Manifest
@@ -1,2 +1 @@
-DIST Test-MockObject-1.20120301.tar.gz 28514 SHA256 
cfa0437af1f94991863f1e20342f48ba9335cef63bd87f8073b8c4b78aee7add SHA512 
82204c502bf83fd11419d701d8742ccd6ba291ae00b52d86d0d37f9870072758016489b7e83d3170d99df32bc82e3c154c6c77428da22737178039bdcde2737c
 WHIRLPOOL 
c96564c30e7f2ed9ec720ed65869d1ec67118082471e0251cb02d4632e6c9ef5ca78145a1a880fac10f02ab77885051feb6ce937f349f8491d9e72a7849f768b
 DIST Test-MockObject-1.20150527.tar.gz 29652 SHA256 
adf1357a9014b3a397ff7ecbf1835dec376a67a37bb2e788734a627e17dc1d98 SHA512 
4c99666d9d69f75cae2cd6af8aaca58bae778ba5d4eadd456a4e3ad251d23d4bef5240cee2d575ce9b53b509416df977a5d7bc8e8f10d9a1ddcc040ff6665cab
 WHIRLPOOL 
386303ff08d59530c6e3d979e86645a973c4501eae4799bd0c050b68b5e63ee1f2f980bd89bda80d6d78e40e86c339d1d4040e87eaeb36735be23a905ebc8e0c

diff --git a/dev-perl/Test-MockObject/Test-MockObject-1.201.203.10-r1.ebuild 
b/dev-perl/Test-MockObject/Test-MockObject-1.201.203.10-r1.ebuild
deleted file mode 100644
index eb4d3eb..000
--- a/dev-perl/Test-MockObject/Test-MockObject-1.201.203.10-r1.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-MODULE_AUTHOR=CHROMATIC
-MODULE_VERSION=1.20120301
-inherit perl-module
-
-DESCRIPTION="Perl extension for emulating troublesome interfaces"
-
-SLOT="0"
-KEYWORDS="amd64 ~arm ppc x86 ~ppc-aix"
-IUSE="test"
-
-RDEPEND="
-   >=dev-perl/UNIVERSAL-isa-1.201.106.140
-   >=dev-perl/UNIVERSAL-can-1.201.106.170
-"
-DEPEND="${RDEPEND}
-   test? (
-   >=dev-perl/Test-Exception-0.310.0
-   >=dev-perl/Test-Warn-0.230.0
-   dev-perl/CGI
-   )
-"
-
-SRC_TEST=do



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

2016-07-06 Thread Andreas Hüttel
commit: 94bec33fca70d16de09ab7f047f840df9fe6650e
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Wed Jul  6 22:53:16 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Wed Jul  6 22:53:16 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94bec33f

dev-perl/SVG: Remove old

Package-Manager: portage-2.3.0

 dev-perl/SVG/Manifest   |  1 -
 dev-perl/SVG/SVG-2.590.0.ebuild | 24 
 2 files changed, 25 deletions(-)

diff --git a/dev-perl/SVG/Manifest b/dev-perl/SVG/Manifest
index 6beebcb..48e4916 100644
--- a/dev-perl/SVG/Manifest
+++ b/dev-perl/SVG/Manifest
@@ -1,2 +1 @@
-DIST SVG-2.59.tar.gz 54926 SHA256 
e1e60e590718c2de5bda17a76283fdeb137761b69da2121c03d9630257e8ba3a SHA512 
2056925e19ce4410da9d7fb7ca337c47a2d866496be01d0469e0dd27882d0fca1bf0371b5f4e8e15b1974da2ed55392b2688e52eb46a4f5be2f2ba5733e7fc48
 WHIRLPOOL 
8b4d56101c146b64dad878f717815530b98bd9781202d2287d5478de528831fa341339367f5ccf139cb52edaac0636296c40892aff5c9b5114d213f8b7e3599d
 DIST SVG-2.64.tar.gz 52382 SHA256 
73d1e1e79f6cc04f976066e70106099df35be5534eceb5dfd2c1903ecf994acd SHA512 
81e5c7a10d07575b3bfa06c11aed8c47edfa0e65bb108feab13debb5155bfa3464f687ca142ee5fc9f3a0f01dea674c0c1daad69bff8aa2e263245e60891d914
 WHIRLPOOL 
7007cb2c890e20802ac807b049d26c3c6c62d44c242c5b8448ff01d81ac37694cb18c89bf0d2c43302a8ec83dd218b7eb88c2cf1366a034dc76fbbcb752b7ffc

diff --git a/dev-perl/SVG/SVG-2.590.0.ebuild b/dev-perl/SVG/SVG-2.590.0.ebuild
deleted file mode 100644
index 9b0484a..000
--- a/dev-perl/SVG/SVG-2.590.0.ebuild
+++ /dev/null
@@ -1,24 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-MODULE_AUTHOR=SZABGAB
-MODULE_VERSION=2.59
-inherit perl-module
-
-DESCRIPTION="Perl extension for generating Scalable Vector Graphics (SVG) 
documents"
-
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE="test"
-
-RDEPEND="virtual/perl-parent"
-DEPEND="${RDEPEND}
-   test? (
-   dev-perl/Test-Pod-Coverage
-   )
-"
-
-SRC_TEST=do



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

2016-07-06 Thread Andreas Hüttel
commit: f2d8eeff2fc140c66c0516cf9a0226dc9932e993
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Wed Jul  6 22:52:45 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Wed Jul  6 22:52:45 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2d8eeff

dev-perl/Scope-Guard: Remove old

Package-Manager: portage-2.3.0

 dev-perl/Scope-Guard/Manifest  |  1 -
 dev-perl/Scope-Guard/Scope-Guard-0.200.0-r1.ebuild | 22 --
 2 files changed, 23 deletions(-)

diff --git a/dev-perl/Scope-Guard/Manifest b/dev-perl/Scope-Guard/Manifest
index 996b0c0..1e2de1e 100644
--- a/dev-perl/Scope-Guard/Manifest
+++ b/dev-perl/Scope-Guard/Manifest
@@ -1,2 +1 @@
-DIST Scope-Guard-0.20.tar.gz 4082 SHA256 
5b8fed60a3d77d8a9a3748db3dce894bb95431e98195be7f1920d26bbe7d4ad3 SHA512 
fbee602a14bd22e8506bfb73510217b5ecf5c0f64178c966196b47800537acc00fbd46f259df46e2a973abf457fb0e326f5d363e14c65c552b03defd3c972308
 WHIRLPOOL 
2b3b1e651e03631d6b25107f37300b20e75cdb29e1ad354d2eaec206f354e79c677099570d1ec9e937ea79390794c1c125221ba28a1cd22b8de82215988efd55
 DIST Scope-Guard-0.21.tar.gz 4377 SHA256 
8c9b1bea5c56448e2c3fadc65d05be9e4690a3823a80f39d2f10fdd8f777d278 SHA512 
65492e08ab79dc323649166e83ffc13c6f1fffaa9c60d581d8854dfe427a54a3c3c5e4d8b90308d4b1a31a1a54c7977b4e1d36fc9005c6e716c2361ce187fc9f
 WHIRLPOOL 
1d3f03abfd6603fb767f3882d3bd461a8500c2ae53cb1f23fa1c41cc61f3ff860d18ccc48e038845e310a99ecec7b5a243821a78af2873c18947b8b15618b15e

diff --git a/dev-perl/Scope-Guard/Scope-Guard-0.200.0-r1.ebuild 
b/dev-perl/Scope-Guard/Scope-Guard-0.200.0-r1.ebuild
deleted file mode 100644
index 00f95b4..000
--- a/dev-perl/Scope-Guard/Scope-Guard-0.200.0-r1.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-MODULE_AUTHOR=CHOCOLATE
-MODULE_VERSION=0.20
-inherit perl-module
-
-DESCRIPTION="Lexically scoped resource management"
-
-SLOT="0"
-KEYWORDS="amd64 ppc x86 ~ppc-aix ~x86-solaris"
-IUSE="test"
-
-RDEPEND=""
-DEPEND="${RDEPEND}
-   test? ( dev-perl/Test-Pod
-   dev-perl/Test-Pod-Coverage )"
-
-SRC_TEST=do



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

2016-07-06 Thread Andreas Hüttel
commit: 62bcffd2dedec24791285a91f5618634d21f5c19
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Wed Jul  6 22:51:17 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Wed Jul  6 22:51:17 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62bcffd2

dev-perl/PerlIO-Layers: Remove old

Package-Manager: portage-2.3.0

 dev-perl/PerlIO-Layers/Manifest|  1 -
 dev-perl/PerlIO-Layers/PerlIO-Layers-0.10.0.ebuild | 35 --
 2 files changed, 36 deletions(-)

diff --git a/dev-perl/PerlIO-Layers/Manifest b/dev-perl/PerlIO-Layers/Manifest
index 9f4e44b..0733faf 100644
--- a/dev-perl/PerlIO-Layers/Manifest
+++ b/dev-perl/PerlIO-Layers/Manifest
@@ -1,2 +1 @@
-DIST PerlIO-Layers-0.010.tar.gz 13708 SHA256 
e3ab1219092be4a21df1ec48163c83b4166ca8f87d2c659b3a891837e828b271 SHA512 
ea7523c18a5b3319ee57bc65eb721ef8a39bf730822c34c30d3edf0f0be4c409e34453c279db9beb6122a345c12f9db268e222f6dae588a8b5f3123eb3fdfed5
 WHIRLPOOL 
67964a7e4c0fdb56ce100dccbaed84ca9ece3075f3707506f4e698a161188b8c69f3b6d8d65595e6b109b81fb2e754453424edc372493d649a6d24aa54589721
 DIST PerlIO-Layers-0.011.tar.gz 14570 SHA256 
1d77e164aa5d5d24699a5479a423abdc1b07973fbe5a22d304fef2c560254b42 SHA512 
1c1a7a77c7e52d45c15015ecfee71d679acd98bb067a5d0147d6fe97fb35e40ab0a4dc3ecf1fb1b6ad8c599e9b765448e9dab5345c168552726ef9929d3bed81
 WHIRLPOOL 
e889603c4e8e9e144b5f8af512c159483750fe5355687358adcdaf03fb9973c7dd11a18c3a83b3645de3eceffdc258d371beb212ad0ead5be4e5231d2c0794dd

diff --git a/dev-perl/PerlIO-Layers/PerlIO-Layers-0.10.0.ebuild 
b/dev-perl/PerlIO-Layers/PerlIO-Layers-0.10.0.ebuild
deleted file mode 100644
index c038484..000
--- a/dev-perl/PerlIO-Layers/PerlIO-Layers-0.10.0.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-MODULE_AUTHOR="LEONT"
-MODULE_VERSION=0.010
-
-inherit perl-module
-
-DESCRIPTION="Querying your filehandle's capabilities"
-
-SLOT="0"
-KEYWORDS="amd64 arm ppc x86 ~amd64-linux ~x86-linux"
-IUSE="test"
-
-# needs List::Util
-RDEPEND="
-   virtual/perl-Carp
-   >=virtual/perl-Exporter-5.570.0
-   dev-perl/List-MoreUtils
-   virtual/perl-Scalar-List-Utils
-   virtual/perl-XSLoader
-"
-DEPEND="${RDEPEND}
-   >=dev-perl/Module-Build-0.360.100
-   test? (
-   virtual/perl-Data-Dumper
-   virtual/perl-File-Temp
-   >=virtual/perl-Test-Simple-0.820.0
-   )
-"
-
-SRC_TEST="do parallel"



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

2016-07-06 Thread Andreas Hüttel
commit: 88558a14f7dc5be91fc817992e0e335ce9a08e88
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Wed Jul  6 22:49:13 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Wed Jul  6 22:49:13 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88558a14

dev-perl/Const-Fast: Remove old

Package-Manager: portage-2.3.0

 dev-perl/Const-Fast/Const-Fast-0.13.0.ebuild | 27 ---
 dev-perl/Const-Fast/Manifest |  1 -
 2 files changed, 28 deletions(-)

diff --git a/dev-perl/Const-Fast/Const-Fast-0.13.0.ebuild 
b/dev-perl/Const-Fast/Const-Fast-0.13.0.ebuild
deleted file mode 100644
index b520959..000
--- a/dev-perl/Const-Fast/Const-Fast-0.13.0.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-MODULE_AUTHOR=LEONT
-MODULE_VERSION=0.013
-inherit perl-module
-
-DESCRIPTION="Facility for creating read-only scalars, arrays, and hashes"
-
-SLOT="0"
-KEYWORDS="amd64 arm ppc x86 ~amd64-linux ~x86-linux"
-IUSE="test"
-
-RDEPEND="
-   dev-perl/Sub-Exporter
-   dev-perl/Sub-Exporter-Progressive
-"
-DEPEND="${RDEPEND}
-   test? (
-   >=dev-perl/Test-Exception-0.290.0
-   )
-"
-
-SRC_TEST=do

diff --git a/dev-perl/Const-Fast/Manifest b/dev-perl/Const-Fast/Manifest
index 2b3ae77..e0f6ea1 100644
--- a/dev-perl/Const-Fast/Manifest
+++ b/dev-perl/Const-Fast/Manifest
@@ -1,2 +1 @@
-DIST Const-Fast-0.013.tar.gz 13165 SHA256 
8579039ece718d816c0bb85e6ba2d7a23fd9f6d47ac56772022184c06cdac78a SHA512 
af0a4f7fd23c21794451fb6e08fa214063ce880e2b12334f48c766d0881ad1f59ffb3c4d0ba683437dd2b6e0d03a616ef225792a1da5a3a90b7fa489c89a6477
 WHIRLPOOL 
b204f116294a13d42417d9f59181dad9d52fa7358bb8e4be7b0d28067f85d231a423a001deda2fad409cf736e0cef6060cad1fbc84dc79ede9908cf552d23d8b
 DIST Const-Fast-0.014.tar.gz 12886 SHA256 
f805953a08c57846a16a4d85d7b766398afaf7c36c1465fcb1dea09e5fa394db SHA512 
89258205fe31aa5a60759ed955e6dae305de69f4bc08251242a82eec9e37251b045908585c470106ed9047f604d3292eb3231c80504b29734966b58b8402a929
 WHIRLPOOL 
07881da00d1f27cb7f7da38a0cfd1dc4912894e519a9badfa13d69a2e75ed55737e483fb3da5fa2fb5cfa1e98cb3a01d51c9e71ec5f67fc8da9f99ed8e6e0abd



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

2016-07-06 Thread Andreas Hüttel
commit: 06c7cfcb0398f12a6cdc419ee4d46e6b6615b02c
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Wed Jul  6 22:52:18 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Wed Jul  6 22:52:18 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06c7cfcb

dev-perl/RPC-XML: Remove old

Package-Manager: portage-2.3.0

 dev-perl/RPC-XML/Manifest  |  1 -
 dev-perl/RPC-XML/RPC-XML-0.770.0-r1.ebuild | 49 --
 2 files changed, 50 deletions(-)

diff --git a/dev-perl/RPC-XML/Manifest b/dev-perl/RPC-XML/Manifest
index ebb2b66..07d5996 100644
--- a/dev-perl/RPC-XML/Manifest
+++ b/dev-perl/RPC-XML/Manifest
@@ -1,2 +1 @@
-DIST RPC-XML-0.77.tar.gz 205679 SHA256 
e38c5d131e8c29f41ca39ac1e4b7abd33ed1c9b417e0d8ac1c24a056ce7e6f5a SHA512 
960625a387da279bab93d09f8b62d4e4f3e01a008abcc5503de3661171c1a4ffd4db9a4c10c4882e77bc7d12bb14071ca875c1988a3d3126fdf6ee70d68e80c9
 WHIRLPOOL 
aca53100c4e905eba8ad4ea763058c6e63401d6de14be5c79450143eea3167f8d335eb3ff47789396612099bce4b6eed0aeb2d2b39a3158c161a37b66f15a9dc
 DIST RPC-XML-0.79.tar.gz 209612 SHA256 
9822ffcfbea9c2bddef00507dc93f7acb83589e6ff6460ca7040f147aeebf9a9 SHA512 
541ee3abf4e44cff68a2b7b7c4f78095e8e4ec479d72b52d300503bc1688f64fd01a0ff3c2cdf8e18573d19af0bae467ac68befe7ad8756e6287ed494a50ce26
 WHIRLPOOL 
9e42d4c4fee850283bc692cf27915bcd562282e814778253bafa15e5936ab7b8f097e09cbd13ea3ceacbd2673c033e42dda24dc50dc08eeef1ac107cf606af69

diff --git a/dev-perl/RPC-XML/RPC-XML-0.770.0-r1.ebuild 
b/dev-perl/RPC-XML/RPC-XML-0.770.0-r1.ebuild
deleted file mode 100644
index 1277f1f..000
--- a/dev-perl/RPC-XML/RPC-XML-0.770.0-r1.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-MODULE_AUTHOR=RJRAY
-MODULE_VERSION=0.77
-inherit perl-module
-
-DESCRIPTION="An implementation of XML-RPC"
-
-SLOT="0"
-LICENSE="|| ( Artistic-2 LGPL-2.1 )"
-KEYWORDS="amd64 ppc x86 ~x86-fbsd"
-IUSE=""
-
-SRC_TEST="do"
-
-RDEPEND="
-   >=dev-perl/libwww-perl-5.834.0
-   >=dev-perl/XML-LibXML-1.850.0
-   >=dev-perl/XML-Parser-2.310.0
-   dev-perl/Net-Server
-   >=virtual/perl-Scalar-List-Utils-1.200.0
-   dev-perl/URI
-"
-DEPEND="${RDEPEND}"
-
-pkg_postinst() {
-   SETWARN=0
-   has_version '=www-servers/apache-2*' && HAVE_APACHE2=1
-   has_version '>=www-apache/mod_perl-2.0' && HAVE_MP2=2
-
-   [ -n "${HAVE_APACHE2}" ] && SETWARN=1
-   [ -n "${HAVE_MP2}" ] && SETWARN=1
-
-   if [ "${SETWARN}" == "1" ]; then
-   ewarn "Apache2 or mod_perl2 were detected."
-   ewarn ""
-   ewarn "NOTE FROM THE AUTHOR OF RPC-XML"
-   ewarn ""
-   ewarn "At present, this package does not work with Apache2 and the 
soon-to-be"
-   ewarn "mod_perl2. The changes to the API for location handlers are too 
drastic to"
-   ewarn "try and support both within the same class (I tried, using the 
compatibility"
-   ewarn "layer). Also, mp2 does not currently provide support for  
sections, which"
-   ewarn "are the real strength of the Apache::RPC::Server class."
-   fi
-}



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

2016-07-06 Thread Andreas Hüttel
commit: a9b8d78ee39ce11a3a59b5fe6fce6d6751e29e88
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Wed Jul  6 22:53:48 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Wed Jul  6 22:53:48 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9b8d78e

dev-perl/Test-LongString: Remove old

Package-Manager: portage-2.3.0

 dev-perl/Test-LongString/Manifest   |  1 -
 .../Test-LongString-0.150.0-r1.ebuild   | 21 -
 2 files changed, 22 deletions(-)

diff --git a/dev-perl/Test-LongString/Manifest 
b/dev-perl/Test-LongString/Manifest
index fb116d9..38cf24c 100644
--- a/dev-perl/Test-LongString/Manifest
+++ b/dev-perl/Test-LongString/Manifest
@@ -1,2 +1 @@
-DIST Test-LongString-0.15.tar.gz 8393 SHA256 
bae8f38926044e51fba4816a132a478b6027628c5c22d4396326045a861a5164 SHA512 
d50bcba177280ff6da17720bde03dce0fe2b034aa7eeaa8825ccf983cbb8e60ee8f18179e47cfd43db1cac217bf30c38d224fb3557fb76ab3b58f573fd1ef529
 WHIRLPOOL 
31a520aa66f95436d15061038fd138ba74c3708a9d5ef8258c469bdb2ca8d95bfebb790940c4694bad88828f02fd5821e22363cad3aac9f32a5e89440bdfa866
 DIST Test-LongString-0.17.tar.gz 8928 SHA256 
abc4349eaf04d1bec1e464166a3018591ea846d8f3c5c9c8af4ac4905d3e974f SHA512 
1c0cd6fea35bb72816451ce0790002c9dfb945390bc85d22d04670dd5af7ebbe795307ad361e2615ce4ab4f02a317a3aa5d297f2165bd3b1f6de40b3240f1352
 WHIRLPOOL 
07ef4d42c1872b489b0ea8803a88f222e6a7884415bfa22247148ef4ece3558c5672c0650a7279b046976c96d5dfc09813c3e01b939096611216538dcabe9b8e

diff --git a/dev-perl/Test-LongString/Test-LongString-0.150.0-r1.ebuild 
b/dev-perl/Test-LongString/Test-LongString-0.150.0-r1.ebuild
deleted file mode 100644
index bc2e5e7..000
--- a/dev-perl/Test-LongString/Test-LongString-0.150.0-r1.ebuild
+++ /dev/null
@@ -1,21 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-MODULE_AUTHOR=RGARCIA
-MODULE_VERSION=0.15
-inherit perl-module
-
-DESCRIPTION="A library to test long strings"
-
-SLOT="0"
-KEYWORDS="amd64 ~arm ppc ~ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x86-macos"
-IUSE="test"
-
-RDEPEND=""
-DEPEND="test? ( dev-perl/Test-Pod
-   dev-perl/Test-Pod-Coverage )"
-
-SRC_TEST="do"



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

2016-07-06 Thread Andreas Hüttel
commit: 7912640140f06b9da733179de95819daeb8aef8f
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Wed Jul  6 22:50:00 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Wed Jul  6 22:50:00 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79126401

dev-perl/OpenGL: Remove old

Package-Manager: portage-2.3.0

 dev-perl/OpenGL/Manifest  |  1 -
 dev-perl/OpenGL/OpenGL-0.670.3.ebuild | 36 ---
 2 files changed, 37 deletions(-)

diff --git a/dev-perl/OpenGL/Manifest b/dev-perl/OpenGL/Manifest
index 03a54a4..8d55859 100644
--- a/dev-perl/OpenGL/Manifest
+++ b/dev-perl/OpenGL/Manifest
@@ -1,2 +1 @@
-DIST OpenGL-0.6703.tar.gz 671629 SHA256 
62f8cdf019fbdb6d095bc5f31382d123bceb9aabbba5788ecf416282de47534c SHA512 
f1902bfe8e6e1f2309b878f68e08cf8f53d2f20287f99f8a8773647d737f559fbf17ad68cb52371af09e2ac030685b1625ce4c0033ec7e6fb5f322e5980e6713
 WHIRLPOOL 
98d6274a8fa975fd2c31858cf06b1bf5605690217218577c531f68c355affd175663ea8bbc00bb5cd7d0a6951dc0a94d1349535590e421431ab89b41d14fe4b9
 DIST OpenGL-0.6704.tar.gz 623036 SHA256 
36f266e31d617fa9a1bd8928a7dc3b7c40c1bbbfa64bddefe22300ac2bc6c436 SHA512 
3a2c9970802242ebae58256cd80dc81ac04a2af974105d3fbdf4dfcf1aa64a769b1ffcb5b0156eceb6bf7aed6eb6b2eb9332ec9f4724b0a1bc61d15f0de99d09
 WHIRLPOOL 
f6cb34b30c7ef2af0d2dc16ab4b5d9f7216f2ab08c0bf904305f358fec751492fe605bdb783d6ebb9dcdb83fa3601f831e9162fe4bc0d33a68cbafa7c289b86c

diff --git a/dev-perl/OpenGL/OpenGL-0.670.3.ebuild 
b/dev-perl/OpenGL/OpenGL-0.670.3.ebuild
deleted file mode 100644
index 8b1cb70..000
--- a/dev-perl/OpenGL/OpenGL-0.670.3.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-MODULE_AUTHOR="CHM"
-MODULE_VERSION=0.6703
-
-inherit perl-module eutils
-
-DESCRIPTION="Perl interface providing graphics display using OpenGL"
-
-LICENSE="|| ( Artistic GPL-1 GPL-2 GPL-3 )"
-SLOT="0"
-KEYWORDS="amd64 arm ppc x86 ~ppc64 ~amd64-linux ~x86-linux"
-IUSE=""
-
-RDEPEND="
-   media-libs/freeglut:0=
-   x11-libs/libICE:0=
-   x11-libs/libXext:0=
-   x11-libs/libXi:0=
-   x11-libs/libXmu:0="
-DEPEND="${RDEPEND}"
-
-mydoc="Release_Notes"
-
-src_prepare() {
-   epatch "${FILESDIR}"/${PN}-0.66-no-display.patch
-}
-
-src_compile() {
-   sed -i -e 's/PERL_DL_NONLAZY=1//' Makefile || die
-   perl-module_src_compile
-}



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

2016-07-06 Thread Andreas Hüttel
commit: 7f3d8d4bbdb2e3100d14fc19cfea5aa422529daf
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Wed Jul  6 22:51:48 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Wed Jul  6 22:51:48 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f3d8d4b

dev-perl/POE: Remove old

Package-Manager: portage-2.3.0

 dev-perl/POE/Manifest|  1 -
 dev-perl/POE/POE-1.356-r1.ebuild | 61 
 2 files changed, 62 deletions(-)

diff --git a/dev-perl/POE/Manifest b/dev-perl/POE/Manifest
index 7001d91..1cdb258 100644
--- a/dev-perl/POE/Manifest
+++ b/dev-perl/POE/Manifest
@@ -1,2 +1 @@
-DIST POE-1.356.tar.gz 367309 SHA256 
9a3ff1ce40929dec74f6b3fed31cfd05b1d72085d2d3d15bbbcc1a737f17d47b SHA512 
e3107e107859f6b2384971efeec8e3fca0cd0577e082ba41691d4d26e6a300d939a34df5d6401b4e5917331cf371e56265f8042139002dd2d7533712cfa5ff5d
 WHIRLPOOL 
1151f8a7c8f42ae0f382dc72d4818b398946961d23000264ca9916b3a246db9083806f0e25108dba4b7d0923caba0b7ca09a42caa4762ff6caa9b896a1ee36b2
 DIST POE-1.367.tar.gz 381473 SHA256 
b772720ba99bf3cd03dbad8536c6a7674ac7fcf32f2f53a2ff8f0aa5ba3f3a2d SHA512 
94a3ece46a7e573018fdb3151110b1ed7604389d030227169685d38afdfa69603ef55fe8493368645a9f6f1be432fb253cb4568c55190eea33652881a0b4a4fb
 WHIRLPOOL 
d757bb5cf229fcfc223461a1be5f790201751026bea825525778944796a210d992698ce68ef77de2b837b6486f2d053274b23645d71108bbe4aa1b5c6c2ce569

diff --git a/dev-perl/POE/POE-1.356-r1.ebuild b/dev-perl/POE/POE-1.356-r1.ebuild
deleted file mode 100644
index dc2d88e..000
--- a/dev-perl/POE/POE-1.356-r1.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-POE_TEST_LOOPS_VERSION=1.351.0
-MODULE_AUTHOR=RCAPUTO
-MODULE_VERSION=1.356
-inherit perl-module
-
-DESCRIPTION="A framework for creating multitasking programs in Perl"
-
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE="ipv6 libwww ncurses tk test"
-
-RDEPEND="
-   >=dev-perl/Event-1.09
-   >=virtual/perl-File-Spec-0.87
-   >=virtual/perl-IO-1.23.01
-   >=virtual/perl-IO-Compress-1.33
-   >=virtual/perl-Storable-2.12
-   >=dev-perl/IO-Tty-1.08
-   dev-perl/Filter
-   dev-perl/FreezeThaw
-   dev-perl/YAML
-   >=dev-perl/TermReadKey-2.21
-   >=virtual/perl-Time-HiRes-1.59
-   ipv6? (
-   >=dev-perl/Socket6-0.14
-   )
-   tk? (
-   >=dev-perl/Tk-800.027
-   )
-   libwww? (
-   >=dev-perl/libwww-perl-5.79
-   >=dev-perl/URI-1.30
-   )
-   ncurses? (
-   >=dev-perl/Curses-1.08
-   )
-"
-DEPEND="${RDEPEND}
-   test? (
-   >=dev-perl/POE-Test-Loops-${POE_TEST_LOOPS_VERSION}
-   >=virtual/perl-Test-Harness-2.26
-   >=virtual/perl-Test-Simple-0.54
-   dev-perl/Test-Pod
-   dev-perl/Test-Pod-Coverage
-   dev-perl/IO-Pipely
-   )
-"
-
-SRC_TEST=do
-
-src_test() {
-   # Disable network tests
-   rm -f "${S}"/run_network_tests
-   perl-module_src_test
-}



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

2016-07-06 Thread Andreas Hüttel
commit: 3fd099829486039df5aecc127cea8f42528401e4
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Wed Jul  6 22:50:35 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Wed Jul  6 22:50:35 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3fd09982

dev-perl/Perl-Critic: Remove old

Package-Manager: portage-2.3.0

 dev-perl/Perl-Critic/Manifest  |  1 -
 dev-perl/Perl-Critic/Perl-Critic-1.118.0-r1.ebuild | 46 --
 2 files changed, 47 deletions(-)

diff --git a/dev-perl/Perl-Critic/Manifest b/dev-perl/Perl-Critic/Manifest
index 3cf3bb7..b6033c2 100644
--- a/dev-perl/Perl-Critic/Manifest
+++ b/dev-perl/Perl-Critic/Manifest
@@ -1,3 +1,2 @@
-DIST Perl-Critic-1.118.tar.gz 645371 SHA256 
666d2bef3ac924598c06a05277680da5910e10d94c5ec161336f6509c11155e8 SHA512 
d5a66826524ae2c70050bd82e715b97be2704042e477c832669c5c4443b61b3f54ddd7cd246808c1397572f299dcc42c36ab6eece5041a29bcfcd76deb7b9074
 WHIRLPOOL 
82516f565c28ce86884ff6575a0732c55545da6919a5503518fd3a581cc989aa55b11fe82d0f82770c904cf32cf0b1e959e9dabd6a69c1a3cb30c0d105007f8c
 DIST Perl-Critic-1.123.tar.gz 631981 SHA256 
16a182e48068f75199fdf37e3188dd3985045ca134ab1df1d0922e90e30ac19c SHA512 
732ba39d69c64ca7ff047bbd998e2dcc5f5486bd02ba7ea8135f4ac9c69ef8443bd248e4411da9ad0d4db7dfc0e5c700f92111e0b8d9962b6ed71dd2c0ff94a1
 WHIRLPOOL 
1edd106f32949e54fd2e78bd8402e2fdc8b54501b6ebbd9c300ed7b9760104b9a0af599f351c30d9084ec031007fd3711778a29ae5ba254da86aa2c1f4e223e9
 DIST Perl-Critic-1.126.tar.gz 646552 SHA256 
b1a6151cb3603aef8555195b807e831655c83003b81e2f64fff095ff7114f5af SHA512 
9427447893eabc83cafd5126d015aa29d9694a83fdd01dd45f5156af9c672a955e0ec6c0ebdddc2ab3ed2d22bdbf14cc016ce474c24fd18d8046bc2889ca33d2
 WHIRLPOOL 
b89ed14331a5fc37f4268ec46e1045e1563bbf61335deef51b480adff3ecadb82bf36ab7dd16a45db865d8beaf86c5e8f4470556c3513cf987c4eed66a0d3a91

diff --git a/dev-perl/Perl-Critic/Perl-Critic-1.118.0-r1.ebuild 
b/dev-perl/Perl-Critic/Perl-Critic-1.118.0-r1.ebuild
deleted file mode 100644
index 3c853cb..000
--- a/dev-perl/Perl-Critic/Perl-Critic-1.118.0-r1.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-MODULE_AUTHOR=THALJEF
-MODULE_VERSION=1.118
-inherit perl-module
-
-DESCRIPTION="Critique Perl source code for best-practices"
-
-SLOT="0"
-KEYWORDS="alpha amd64 ppc ~ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x86-macos ~sparc-solaris"
-IUSE="test"
-
-RDEPEND=">=dev-perl/Module-Pluggable-3.1
-   >=dev-perl/Config-Tiny-2
-   >=dev-perl/Email-Address-1.88.9
-   dev-perl/List-MoreUtils
-   dev-perl/IO-String
-   dev-perl/Perl-Tidy
-   >=dev-perl/PPI-1.215
-   dev-perl/PPIx-Utilities
-   >=dev-perl/PPIx-Regexp-0.27.0
-   dev-perl/Pod-Spell
-   >=dev-perl/Set-Scalar-1.20
-   dev-perl/File-Which
-   dev-perl/B-Keywords
-   dev-perl/Readonly
-   dev-perl/Exception-Class
-   dev-perl/String-Format
-   >=virtual/perl-version-0.77"
-DEPEND="${RDEPEND}
-   dev-perl/Module-Build
-   test? (
-   dev-perl/Test-Deep
-   dev-perl/PadWalker
-   dev-perl/Test-Memory-Cycle
-   dev-perl/Test-Pod
-   dev-perl/Test-Pod-Coverage
-   )"
-
-mydoc="extras/* examples/*"
-
-SRC_TEST="do"



[gentoo-commits] repo/gentoo:master commit in: mail-client/thunderbird-bin/

2016-07-06 Thread Ian Stakenvicius
commit: 1ac61c9fbefcd1b1d7790d34aea29ce14c22d3a7
Author: Ian Stakenvicius  gentoo  org>
AuthorDate: Wed Jul  6 21:42:57 2016 +
Commit: Ian Stakenvicius  gentoo  org>
CommitDate: Wed Jul  6 21:42:57 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ac61c9f

mail-client/thunderbird-bin: version bump, migrate LINGUAS to L10N

Bug: http://bugs.gentoo.org/588072
Bug: http://bugs.gentoo.org/587334

Package-Manager: portage-2.2.28

 mail-client/thunderbird-bin/Manifest   | 118 ++---
 ...45.1.1.ebuild => thunderbird-bin-45.2.0.ebuild} |   4 +-
 2 files changed, 61 insertions(+), 61 deletions(-)

diff --git a/mail-client/thunderbird-bin/Manifest 
b/mail-client/thunderbird-bin/Manifest
index 4de201a..a50791f 100644
--- a/mail-client/thunderbird-bin/Manifest
+++ b/mail-client/thunderbird-bin/Manifest
@@ -1,5 +1,5 @@
 DIST lightning-4.0.8.tar.xz 2307984 SHA256 
7a0e2550edf3d5a6d8e2566dc20f20630c8cd6eda0fcbffaf554ef88a7d46eba SHA512 
4e03f42dda58b6bbed79adcf050ca7b5e8cfc82befde22d4a0a029e5187204d40a731907259cbe41adc8b813ed7a2bfccfd4ce91b1ff05c107c8eb3ec4e4ef32
 WHIRLPOOL 
196ecfa01932ac1d153baa231023b3cb970ef33e55b8193ff420ff58e2d0b55e72376a993ac6712faaf995c1c239a63cebff14369adba479d1451dbc0126e4c0
-DIST lightning-4.7.tar.xz 1929596 SHA256 
6368d6438131c1b64a4089b073bd46aa45c1baa1dc9d1e65fb2146b2491ae75e SHA512 
537f586da73bc0bac2851fe2930f84fe7406170711290a37cd4076197a3580cd95619e82be3428e7330dde5cb93c89fcd7ed03367b9921a4c6c678c8b6745113
 WHIRLPOOL 
68b39e241bcc820a3c5febf15f15ab2ac680004154b18df786a77f61611573b71b8726f3054f97ad95aff20969e1d59830c4c13966ed6d88aa6b1d8dc9de7a7b
+DIST lightning-4.7.2.tar.xz 1927008 SHA256 
55a2c26941834600364aec143797662e92a6a8203c4f5f2b315830755d80 SHA512 
878fa278b8f8a6b7733e81aed0864104ef3c60d0236b729c71cc5e4e453b97255c3e4e4140c053e1ceb586142c46ee57b21539e23256a0bf78b6b8628405de88
 WHIRLPOOL 
53979b914e944f9026ae9d93b9ced6e69d9872ed4f7f385037fbc5314ad496deb489bc1d6435cf27aa74d9db4f615fe17a06ba022daa496f4d2de30aa2bfb48f
 DIST thunderbird-31.8.0-ar.xpi 472812 SHA256 
2f2f6e0e5554604fa861571eeaffc702a15a4be088df99af6f7c1944d35c7e9d SHA512 
ad77e3f4dca5ff063fe44a7e23e68b897efb417e529be58f310e486b3f322386512afbb00f95f121fd29df3a186d3d2b38c5ec08096c77832fa4ccec903e6d85
 WHIRLPOOL 
863e32689def07e16218b7b0d4a7fa18ec232a9665f4a03ba4b58fa3cdf020b5835ff07c32bfa0db2b10692f545a46db478324e722c83aa91c8149b81ab1e5f7
 DIST thunderbird-31.8.0-ast.xpi 393048 SHA256 
4ed7590913176d329ac340afb8ea5edadc7ad992ccd85b8731c9967e4021b3c8 SHA512 
091734274191b515f6cae98555418a97bce2b7beaeb10059d0bef1f802d3d013430aece7e4470b36419fd66316a7f96147deefdfb99da66c4086ee955fb9bfa7
 WHIRLPOOL 
e980f35455204c9686d3d7126c92df6a9f4a4e8d8fb5ebc7e1c0604e6467c21e20e434598ee47c3e5feb843ec146d3e5e2e9fe8dd737568982878c9c0b9632d0
 DIST thunderbird-31.8.0-be.xpi 427488 SHA256 
62bf36d474fbe878ffdba51de16d9b0d398f36aba869063ef2f3f105828a122c SHA512 
67ef52595ad5459e28bf563022c8cafe2ea5d06084a48e86dbe8d0c78655636a677a6cde7c38741af50425f3f563179495eee2d16b032b829fcdd9ebb1a13fee
 WHIRLPOOL 
ce54655edfe810df6a3a607daa393a03347fb42e8e4c512c809a4c63ff33136879d537fbfba11c58a84b9a61506ef9f18db19aa0cde1b90f9c558468d8595a48
@@ -108,65 +108,65 @@ DIST thunderbird-38.8.0-uk.xpi 509600 SHA256 
1b21957c28cfe9b196bd768bbfceb329bf0
 DIST thunderbird-38.8.0-vi.xpi 519843 SHA256 
ddaaab4ba689ccc0221f18b34aae2ce0dabed51e61c1776b4c108e7794426c86 SHA512 
cbcecbd6dc3a151ecf36b5c8dbfb37068a4ceac2ebf9c18116a08cf4b1646dde0051c958882e57903e27c44c3cfd26d755908572a365df8bccebed50d055c57c
 WHIRLPOOL 
f53296869d069a940690b33d7c22c0b6da3a534a947a09fdbd2d681d07398af810c4b424f5a4e41188eee712d9e8786f441f417ed712657bebbe48386e562d5b
 DIST thunderbird-38.8.0-zh-CN.xpi 466412 SHA256 
4f9a4ff54f5aff408abfe9fc90da63d70e74eb5695d358ae22c7fa8a76e411f2 SHA512 
076ef74d3c495d5b3b626007c423855318ed53a2c124b23c32013e336da277457372bce6973878ef77813e0e01d4bbb31583dc2537d73fa2b57fccbe1a82f847
 WHIRLPOOL 
e8c7fbc57f92d83a84f9096c11ad21afef80ef4ae953e905fce5346b239b4e7da32960b5bb73807e4689a45fa9832704694333f75ac9f9c862b680db59e35e5d
 DIST thunderbird-38.8.0-zh-TW.xpi 41 SHA256 
8ff0bc45973a73f6b3225c063c33c8dccda31ee6a385150984a1b4851214004e SHA512 
8952fe0f9131c61b11d995ec69f7c0de42ddc42f11f99bd268c7e400b765a55047865a0463834b61e7a7917caffe0909ba62608b5fdae548fd55e53b8f8c18ec
 WHIRLPOOL 
e8452eb437fd1f414d776bd558511929f0d133fac4e756fc846219700f7e445f01eb5493e12a6d2cf7b8df4718dfff7524d5219655e709dcc47d7fa35900e38e
-DIST thunderbird-45.1.1-ar.xpi 490774 SHA256 
c535c621cd989d46942058f14c90ec3d9c9236c45c4dde52af8be4614ddd7140 SHA512 
2de70c2b066038bd0189e9e3470bd75dbbc6d6ee27759a06bd548ee23e47e3f0757036f8f89ade56c7af67c7e23ca5ab6fe502808684cb03fe779918fa3bbf52
 WHIRLPOOL 
cf00ed81db4eadc83cf21272ae52a01388ba1aeedf773843eeaae636fa6791d1fc758b158eb5aa7ba8832522c039c423a42b190fd76f0138fd677439c1f1c04e
-DIST thunderbird-45.1.1-ast.xpi 428058 SHA256 

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

2016-07-06 Thread Ian Stakenvicius
commit: 0f98ad03b46bf0b68a9bd3b396f5175c05eaa743
Author: Ian Stakenvicius  gentoo  org>
AuthorDate: Wed Jul  6 21:30:26 2016 +
Commit: Ian Stakenvicius  gentoo  org>
CommitDate: Wed Jul  6 21:30:26 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f98ad03

www-client/firefox: removed default-enable from IUSE=gtk3, too many issues

Package-Manager: portage-2.2.28

 www-client/firefox/firefox-45.2.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/firefox/firefox-45.2.0.ebuild 
b/www-client/firefox/firefox-45.2.0.ebuild
index 7219500..73abe78 100644
--- a/www-client/firefox/firefox-45.2.0.ebuild
+++ b/www-client/firefox/firefox-45.2.0.ebuild
@@ -28,7 +28,7 @@ fi
 PATCH="${PN}-45.0-patches-05"
 MOZ_HTTP_URI="https://archive.mozilla.org/pub/${PN}/releases;
 
-MOZCONFIG_OPTIONAL_GTK3="enabled"
+MOZCONFIG_OPTIONAL_GTK3=1
 MOZCONFIG_OPTIONAL_WIFI=1
 MOZCONFIG_OPTIONAL_JIT="enabled"
 



[gentoo-commits] repo/gentoo:master commit in: www-client/firefox/, eclass/

2016-07-06 Thread Ian Stakenvicius
commit: b5417f70dc4ad66b907c42a914a3b42211624f79
Author: Ian Stakenvicius  gentoo  org>
AuthorDate: Wed Jul  6 14:30:40 2016 +
Commit: Ian Stakenvicius  gentoo  org>
CommitDate: Wed Jul  6 21:24:54 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5417f70

www-client/firefox: migrate LINGUAS to L10N

Bug: http://bugs.gentoo.org/587334

Package-Manager: portage-2.2.28

 eclass/mozlinguas-v2.eclass| 370 +
 www-client/firefox/firefox-47.0.ebuild |   2 +-
 2 files changed, 371 insertions(+), 1 deletion(-)

diff --git a/eclass/mozlinguas-v2.eclass b/eclass/mozlinguas-v2.eclass
new file mode 100644
index 000..4facb58
--- /dev/null
+++ b/eclass/mozlinguas-v2.eclass
@@ -0,0 +1,370 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+# @ECLASS: mozlinguas-v2.eclass
+# @MAINTAINER:
+# mozi...@gentoo.org
+# @AUTHOR:
+# Nirbheek Chauhan 
+# Ian Stakenvicius 
+# @BLURB: Handle language packs for mozilla products
+# @DESCRIPTION:
+# Sets IUSE according to MOZ_LANGS (language packs available). Also exports
+# src_unpack, src_compile and src_install for use in ebuilds, and provides
+# supporting functions for langpack generation and installation.
+
+inherit mozextension
+
+case "${EAPI:-0}" in
+   0|1)
+   die "EAPI ${EAPI:-0} does not support the '->' SRC_URI 
operator";;
+   2|3|4|5|6)
+   EXPORT_FUNCTIONS src_unpack src_compile src_install;;
+   *)
+   die "EAPI ${EAPI} is not supported, contact eclass 
maintainers";;
+esac
+
+# @ECLASS-VARIABLE: MOZ_LANGS
+# @DESCRIPTION:
+# Array containing the list of language pack xpis available for
+# this release. The list can be updated with scripts/get_langs.sh from the
+# mozilla overlay.
+: ${MOZ_LANGS:=()}
+
+# @ECLASS-VARIABLE: MOZ_PV
+# @DESCRIPTION:
+# Ebuild package version converted to equivalent upstream version.
+# Defaults to ${PV}, and should be overridden for alphas, betas, and RCs
+: ${MOZ_PV:="${PV}"}
+
+# @ECLASS-VARIABLE: MOZ_PN
+# @DESCRIPTION:
+# Ebuild package name converted to equivalent upstream name.
+# Defaults to ${PN}, and should be overridden for binary ebuilds.
+: ${MOZ_PN:="${PN}"}
+
+# @ECLASS-VARIABLE: MOZ_P
+# @DESCRIPTION:
+# Ebuild package name + version converted to upstream equivalent.
+# Defaults to ${MOZ_PN}-${MOZ_PV}
+: ${MOZ_P:="${MOZ_PN}-${MOZ_PV}"}
+
+# @ECLASS-VARIABLE: MOZ_FTP_URI
+# @DESCRIPTION:
+# The ftp URI prefix for the release tarballs and language packs.
+: ${MOZ_FTP_URI:=""}
+
+# @ECLASS-VARIABLE: MOZ_HTTP_URI
+# @DESCRIPTION:
+# The http URI prefix for the release tarballs and language packs.
+: ${MOZ_HTTP_URI:=""}
+
+# @ECLASS-VARIABLE: MOZ_LANGPACK_PREFIX
+# @DESCRIPTION:
+# The relative path till the lang code in the langpack file URI.
+# Defaults to ${MOZ_PV}/linux-i686/xpi/
+: ${MOZ_LANGPACK_PREFIX:="${MOZ_PV}/linux-i686/xpi/"}
+
+# @ECLASS-VARIABLE: MOZ_LANGPACK_SUFFIX
+# @DESCRIPTION:
+# The suffix after the lang code in the langpack file URI.
+# Defaults to '.xpi'
+: ${MOZ_LANGPACK_SUFFIX:=".xpi"}
+
+# @ECLASS-VARIABLE: MOZ_LANGPACK_UNOFFICIAL
+# @DESCRIPTION:
+# The status of the langpack, used to differentiate within
+# Manifests and on Gentoo mirrors as to when the langpacks are
+# generated officially by Mozilla or if they were generated
+# unofficially by others (ie the Gentoo mozilla team).  When
+# this var is set, the distfile will have a .unofficial.xpi
+# suffix.
+: ${MOZ_LANGPACK_UNOFFICIAL:=""}
+
+# @ECLASS-VARIABLE: MOZ_GENERATE_LANGPACKS
+# @DESCRIPTION:
+# This flag specifies whether or not the langpacks should be
+# generated directly during the build process, rather than
+# being downloaded and installed from upstream pre-built
+# extensions.  Primarily it supports pre-release builds.
+# Defaults to empty.
+: ${MOZ_GENERATE_LANGPACKS:=""}
+
+# @ECLASS-VARIABLE: MOZ_L10N_SOURCEDIR
+# @DESCRIPTION:
+# The path that l10n sources can be found at, once unpacked.
+# Defaults to ${WORKDIR}/l10n-sources
+: ${MOZ_L10N_SOURCEDIR:="${WORKDIR}/l10n-sources"}
+
+# @ECLASS-VARIABLE: MOZ_L10N_URI_PREFIX
+# @DESCRIPTION:
+# The full URI prefix of the distfile for each l10n locale.  The
+# AB_CD and MOZ_L10N_URI_SUFFIX will be appended to this to complete the
+# SRC_URI when MOZ_GENERATE_LANGPACKS is set.  If empty, nothing will
+# be added to SRC_URI.
+# Defaults to empty.
+: ${MOZ_L10N_URI_PREFIX:=""}
+
+# @ECLASS-VARIABLE: MOZ_L10N_URI_SUFFIX
+# @DESCRIPTION:
+# The suffix of l10n source distfiles.
+# Defaults to '.tar.xz'
+: ${MOZ_L10N_URI_SUFFIX:=".tar.xz"}
+
+# @ECLASS-VARIABLE: MOZ_FORCE_UPSTREAM_L10N
+# @DESCRIPTION:
+# Set this to use upstream langpaks even if the package normally
+# shouldn't (ie it is an alpha or beta package)
+: ${MOZ_FORCE_UPSTREAM_L10N:=""}
+
+
+# @ECLASS-VARIABLE: MOZ_TOO_REGIONALIZED_FOR_L10N
+# @INTERNAL
+# @DESCRIPTION:
+# Upstream 

[gentoo-commits] repo/gentoo:master commit in: www-client/firefox/, www-client/firefox/files/

2016-07-06 Thread Ian Stakenvicius
commit: fda8bfc53a4ea68f483a58307a85436c161b1284
Author: Ian Stakenvicius  gentoo  org>
AuthorDate: Wed Jul  6 14:43:01 2016 +
Commit: Ian Stakenvicius  gentoo  org>
CommitDate: Wed Jul  6 21:24:58 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fda8bfc5

www-client/firefox: minor version bump, fix musl

Bug: http://bugs.gentoo.org/585560

Package-Manager: portage-2.2.28

 www-client/firefox/Manifest| 172 ++---
 .../firefox/files/firefox-47.0-crashreporter.patch |  27 
 ...47.0-define-HUNSPELL_STATIC-conditionally.patch |   8 +
 .../{firefox-47.0.ebuild => firefox-47.0.1.ebuild} |   4 +-
 4 files changed, 124 insertions(+), 87 deletions(-)

diff --git a/www-client/firefox/Manifest b/www-client/firefox/Manifest
index 659e5fb..1aca2a8 100644
--- a/www-client/firefox/Manifest
+++ b/www-client/firefox/Manifest
@@ -246,90 +246,90 @@ DIST firefox-45.2.0esr-xh.xpi 432918 SHA256 
435306cfa84825c72b2e15811d81e561ca86
 DIST firefox-45.2.0esr-zh-CN.xpi 475797 SHA256 
dfbd3199e8b98916daf2a79dabdc21632e71645dcca876751807ae766714d695 SHA512 
99d09e83659ee558732462255fe75c6c2445605b788db6cb856202922b8cce17434d0ce4f45c8aa7de9e642851858e7a7414064bc472bdf17909ed454c2a2a24
 WHIRLPOOL 
b32109f88de9b5f8e19838108a225f992460b56547127e1cc80dc794762e00174570f967921ff60a62aa12bc9f6235aaa97168994191e5afdca5f32e551a3ed7
 DIST firefox-45.2.0esr-zh-TW.xpi 466529 SHA256 
6f9e0d6446aa9c4fe3806e82e012ef60e16007584a59bc08a4316df57cbaa3ef SHA512 
f02b8021331c996038c4401dfff699ae3304c91735d5223d8e2715fba5cb74bbda9a7f906d869b6ed5ce74b69aa56c02a45014eab9e1a895ee6e872e1ed93bcd
 WHIRLPOOL 
7a33757ce6d0ee11c81dc70882b9a96faeaf8ac4e2a3f8123257c2b6d87f7faa2a2c091e888d3df990b66c1ea91cf9b583720cdf0c8acd2f202ee8d1c6bc2058
 DIST firefox-45.2.0esr.source.tar.xz 185458280 SHA256 
1a729774034231c919dc5a556e17d3342792d5347c755d8d0a4f67a07374804b SHA512 
fd67353cff9400080a311af92562b1ed26d20ca2229e32e8c8289b364ebe27fd501eed78c72b614e0501c3841ae9b17f2102158fbeef5083bee8c12d952660e6
 WHIRLPOOL 
1f2de8e45c56e2cb52200942e26f968472078dd729e143a640b5c873eb685a5823272c6dd79ae06ae41b10563a3c86fa3e8d62e2e32df0588e0d936ffe565765
-DIST firefox-47.0-ach.xpi 425996 SHA256 
90d6783f1e1a8b56fe4bd9275ea00c194bbc742148eca0a72136f791107f6b67 SHA512 
358a8dde50a17a535342d74cb690e403de4eb9d68edc5c81d267b36711ed32b5adf27302149485626d9d2bdb8ef3ed5bc9f6b910eb13a8a04194ad16da6ccb7d
 WHIRLPOOL 
4373ed048e3d304c784c8be05041dea3a7025b1904580459d403ae865a5ac3841d3024c114621e10f125834f6a5b240860c40fe47600b512c236c8275536cda7
-DIST firefox-47.0-af.xpi 441513 SHA256 
63242ab9f9c417a16a67011bebf561a8ff4d464b5b7b875ea068133199215965 SHA512 
68b9e86b7b457c76bfdfa0762ef1a2f82dda2fdc6914e40a2a3e73d1b86efbca5ea884d6f12d51e45a71933f800e226709a84d8f36d818a6eaba02c2b348b4e3
 WHIRLPOOL 
82ba0d66b5bb92da2599b50704a031daddd4e3af5567575f040f482519f3017616e81f1ec5043a407d9a8781b1f24c99edcee7d25f32e0cce296501c3cd83010
-DIST firefox-47.0-an.xpi 453259 SHA256 
f2745a4aec44a791a07b0055de10258dd92535fe8e34372875a2b8fe7ce94b59 SHA512 
6fa15015f4db9abd06bd542ea098534b2120b2df4b6037ca03dfbb9c076ea01f12dc6eb2ea98b4962ae7625650079cc62f690eaa71ccac934083063de3dc5b91
 WHIRLPOOL 
e7cb23f67b9cdfa7de70b8f68b8e6f8ffeda6a95e04e41f385887e4daa758d64b2b42d0e95a49e5ab7d901c11a7a13be97dd37aca9f4ce0613e3debf5d404b2b
-DIST firefox-47.0-ar.xpi 478501 SHA256 
b918866a4b2acff45ea383e128618512a80eb797a5aecb52321f38c25b39284f SHA512 
2fee4b214720c3671fcbfb9c1ec63b96f44906ed3d202e2e2e1dc59e1ea747788b14d1d7b8a988433d16ddd09fa38f322cf8012800152a3403c58a04f82bf3a8
 WHIRLPOOL 
ef3591f146c5eaf301fba396f87ed879410741471a92b35932e298b35c571b88d10658a6818f811c5014ff099f57924010af8dee0332ff19edfa92db72addd1e
-DIST firefox-47.0-as.xpi 484618 SHA256 
2ccde82a79a8e5794ce3b39ddc27edeb8e31af6613ae5f7304737e7b3c1a7d21 SHA512 
029b530c316b46c186533fc849c8e84b3c943a30ffc9f86d61438978535c57a826343f409dd3a5f9775b5489696a62a549c3f56e3cb5c0c1bd7ce412b58e6f77
 WHIRLPOOL 
4112b50b637a6f2bc0a0e7574861a8f475a1c292662a57125b77e5c50aa74e356b9026e571fe348395539d1b63857f45b744fdf6af8f0f0fb8db6c52fe165714
-DIST firefox-47.0-ast.xpi 422167 SHA256 
bb9e6f535e748dcb72fc1c7930b14eeb7661dd8424c853623a67617ccbd45e3e SHA512 
a85d45761dd0c8e519e3472d86ed40c18feacdcc110598db1de4d1bb4c74c382ded9d0ed2ecf8199b83b0de03b63e1bed167c5facd5ced61d7479db878370469
 WHIRLPOOL 
0168c34948422cff7f4c30cfe491a1cec91600f2caa6ff65980ed6791ddd8a7569bdd3749d17c3660719d7b336a9e06d4138bbe5d30932f89418734cc46391d0
-DIST firefox-47.0-az.xpi 453801 SHA256 
f519a67eec1cfaa33ad2b821feab03b37b7418724574b55790c7e75b678e3592 SHA512 
89b67bcdd83248954c0f1a6d8e3d950eafaf9d152ede82debfea300cbbc4992cc6e6178541c0f70b644acbc984138f2d65ffce222e879e8e1249b424e031e619
 WHIRLPOOL 
f76b97f4286ca91687e983101ba3c5e222d1df417b9984e4ad14e95762af91835ad355f35869a82f38b2c589ebf71dcdce0f595a57102fca3846d2431e5748cd
-DIST firefox-47.0-be.xpi 445103 SHA256 
2cb8d03c904207dbd8b3de78d68274796459985f68b542e00d720fafac89262f SHA512 

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

2016-07-06 Thread Ian Stakenvicius
commit: e6dfd5d1a8ed9cd7be9d9bafbac5f8cb096637fc
Author: Ian Stakenvicius  gentoo  org>
AuthorDate: Wed Jul  6 20:54:58 2016 +
Commit: Ian Stakenvicius  gentoo  org>
CommitDate: Wed Jul  6 21:25:01 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6dfd5d1

mozcoreconf-v4.eclass: honour toolchain even for build tools

HOST_CC and HOST_CXX are used to build tools like nsinstall which are needed
to install later on.  Until now, these values were undefined and for whatever
reason were never autodetected to match the CHOST based tools.  This commit
should resolve that issue.

Bug: http://bugs.gentoo.org/565124

 eclass/mozcoreconf-v4.eclass | 6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/eclass/mozcoreconf-v4.eclass b/eclass/mozcoreconf-v4.eclass
index 191f5fa..3a43905 100644
--- a/eclass/mozcoreconf-v4.eclass
+++ b/eclass/mozcoreconf-v4.eclass
@@ -15,7 +15,7 @@
 # This is an eclass-generated variable that defines the rpath that the mozilla
 # product will be installed in.  Read-only
 
-if [[ ! ${_MOZCORECONF_V3} ]]; then
+if [[ ! ${_MOZCORECONF} ]]; then
 
 PYTHON_COMPAT=( python2_7 )
 PYTHON_REQ_USE='ncurses,sqlite,ssl,threads'
@@ -86,6 +86,8 @@ moz_pkgsetup() {
export LC_CTYPE="C"
 
# Ensure we use correct toolchain
+   export HOST_CC="$(tc-getBUILD_CC)"
+   export HOST_CXX="$(tc-getBUILD_CXX)"
tc-export CC CXX LD PKG_CONFIG
 
# Ensure that we have a sane build enviroment
@@ -263,5 +265,5 @@ mozconfig_final() {
echo "ac_add_options --enable-extensions=${exts// /,}" >> .mozconfig
 }
 
-_MOZCORECONF_V3=1
+_MOZCORECONF=1
 fi



[gentoo-commits] repo/gentoo:master commit in: mail-client/thunderbird/

2016-07-06 Thread Ian Stakenvicius
commit: 2b64b3f2707858985bed320fcc73c1d010a642ed
Author: Ian Stakenvicius  gentoo  org>
AuthorDate: Wed Jul  6 21:17:32 2016 +
Commit: Ian Stakenvicius  gentoo  org>
CommitDate: Wed Jul  6 21:25:04 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b64b3f2

mail-client/thunderbird: version bump, migrate LINGUAS to L10N

This will be the new stable candidate

Bug: http://bugs.gentoo.org/588072
Bug: http://bugs.gentoo.org/587334

Package-Manager: portage-2.2.28

 mail-client/thunderbird/Manifest   | 116 ++---
 ...ird-45.1.1.ebuild => thunderbird-45.2.0.ebuild} |   4 +-
 2 files changed, 60 insertions(+), 60 deletions(-)

diff --git a/mail-client/thunderbird/Manifest b/mail-client/thunderbird/Manifest
index 33aa67b..ff232ab 100644
--- a/mail-client/thunderbird/Manifest
+++ b/mail-client/thunderbird/Manifest
@@ -14,7 +14,7 @@ DIST lightning-2.6.5.xpi 3645840 SHA256 
c4bc84f7e21148d6d06f4f61de70c7b4e331b53d
 DIST lightning-3.3.xpi 4226096 SHA256 
eedaf565bc253a6bc21618dcc95eb2cef121745c249734514bf37ebd6abb3e5a SHA512 
c0ae9d259ec28eb6d7335426cbaeaf2701b4a1230de203a5bcccb86937cadca6622031e7a7de11fa5a733631d20a2362fbdc04a1ab649a9383a2ae9114ab9c34
 WHIRLPOOL 
abebc35ca3eaddd50e8660e647c6382943327237375e1c31c567d03b4a91ced37c55d3e5e41b88d252d5fa025c56147ecb53e20dba98c08a2134b38848ffe98a
 DIST lightning-4.0.7.tar.xz 2314196 SHA256 
929e2c92c219a8938cae87a00153eab72762d31e16c9143f80b784e4d60a SHA512 
5b386f0eca9d18b6eaab2bf25ff269480784db3b5288c8f0653fd5ccbbb0a87ee6332e5f392d28a4143efc2de9115546b7d1e759fad849db2ead590347286d4f
 WHIRLPOOL 
e9a006edf054f3ba4f3a2230e0ee6f14c8dffb86f0d137e9f646aa8b4520b27cc97d62f98d86e88f5ae799bdb8caf30d0caf4734f7948fb676dd908482bc2b16
 DIST lightning-4.0.8.tar.xz 2307984 SHA256 
7a0e2550edf3d5a6d8e2566dc20f20630c8cd6eda0fcbffaf554ef88a7d46eba SHA512 
4e03f42dda58b6bbed79adcf050ca7b5e8cfc82befde22d4a0a029e5187204d40a731907259cbe41adc8b813ed7a2bfccfd4ce91b1ff05c107c8eb3ec4e4ef32
 WHIRLPOOL 
196ecfa01932ac1d153baa231023b3cb970ef33e55b8193ff420ff58e2d0b55e72376a993ac6712faaf995c1c239a63cebff14369adba479d1451dbc0126e4c0
-DIST lightning-4.7.1.tar.xz 1927828 SHA256 
b766564835daa7238b2ab3549b6f36b9dbe9b01629b6a329895e2ebcdd0f41f4 SHA512 
037db7873a4dbb1107d42f1b76ad09fa85b730e031ae82e01952dd30599aad0190baa9547c15f62486194fc976175e853f97c282731259877fa6f2926d4eb519
 WHIRLPOOL 
b8fa903fd3de51cd482030381b682e510e046d6c0f0bd0ede3e18b92fb7aaba151356ab33afc41a792ee398da0459571ec9392f8868d61f60860b55fdc3c47f3
+DIST lightning-4.7.2.tar.xz 1927008 SHA256 
55a2c26941834600364aec143797662e92a6a8203c4f5f2b315830755d80 SHA512 
878fa278b8f8a6b7733e81aed0864104ef3c60d0236b729c71cc5e4e453b97255c3e4e4140c053e1ceb586142c46ee57b21539e23256a0bf78b6b8628405de88
 WHIRLPOOL 
53979b914e944f9026ae9d93b9ced6e69d9872ed4f7f385037fbc5314ad496deb489bc1d6435cf27aa74d9db4f615fe17a06ba022daa496f4d2de30aa2bfb48f
 DIST thunderbird-24.0-patches-0.1.tar.xz 1056 SHA256 
2a4e128a6f5c35c865fbef77c006e6b24b98f89ceee5de6cfbf572e2c5fdca70 SHA512 
aa411270fa4b6ffe210a57a4b5c900ae5a696b7d6050dab2ee439365f3fc7e348c5c45b7632279d6f3c54009e7b29f1acb42501960489157875d79891361
 WHIRLPOOL 
b7e7329d1eb78b222cc18c7b1750e737706e66f64b31ccd94ddf27733d0b8c651d001798d2319e544ac558affe76f69be71a225e246b99a36cee4fd0808dcf5f
 DIST thunderbird-24.8.0-ar.xpi 457862 SHA256 
e954ec8c64356b82006b01f3bb30d247994ce81f37a7e96de93c606b464c55cc SHA512 
f8267f4ef885d900e15bc8609503ea6da37dde39b17362b0e35d384ec51416847c4c898a638708dcbc792bfb1a819bacc1b1f9f8bbff45623ea521c902929cce
 WHIRLPOOL 
8116a679e37eae740e880fcadb48ade6d49cb96732a4f4212038f1ed03c15288219fc7be9a308709a658882872dc79aa794907643df7ab2c139358192635eb98
 DIST thunderbird-24.8.0-ast.xpi 373831 SHA256 
acdfeef9612eb4ec261ffadb8f5ea494aef4200f9758df55365646a99a6bd47c SHA512 
5968a948bfc69f82982890ac3414fe6d9c8c587fe9b815dd29ab3d4a01b27e67d99270d5f915f5c86edab430fa3c4e57ee2dae73be1d32bc06088831180d2e14
 WHIRLPOOL 
b3edbf4b1f70df7d8d08e24f801b82961174b5e78b0d8977b0a070c18a4dae0871063e0f177f2388b8dad1589a2e33d0f87a876dc63bd3f558cf645dd3d46718
@@ -242,60 +242,60 @@ DIST thunderbird-38.8.0-vi.xpi 519843 SHA256 
ddaaab4ba689ccc0221f18b34aae2ce0dab
 DIST thunderbird-38.8.0-zh-CN.xpi 466412 SHA256 
4f9a4ff54f5aff408abfe9fc90da63d70e74eb5695d358ae22c7fa8a76e411f2 SHA512 
076ef74d3c495d5b3b626007c423855318ed53a2c124b23c32013e336da277457372bce6973878ef77813e0e01d4bbb31583dc2537d73fa2b57fccbe1a82f847
 WHIRLPOOL 
e8c7fbc57f92d83a84f9096c11ad21afef80ef4ae953e905fce5346b239b4e7da32960b5bb73807e4689a45fa9832704694333f75ac9f9c862b680db59e35e5d
 DIST thunderbird-38.8.0-zh-TW.xpi 41 SHA256 
8ff0bc45973a73f6b3225c063c33c8dccda31ee6a385150984a1b4851214004e SHA512 
8952fe0f9131c61b11d995ec69f7c0de42ddc42f11f99bd268c7e400b765a55047865a0463834b61e7a7917caffe0909ba62608b5fdae548fd55e53b8f8c18ec
 WHIRLPOOL 
e8452eb437fd1f414d776bd558511929f0d133fac4e756fc846219700f7e445f01eb5493e12a6d2cf7b8df4718dfff7524d5219655e709dcc47d7fa35900e38e
 

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

2016-07-06 Thread Ian Stakenvicius
commit: 203a3c6209b1f782b851105f6771647a33155442
Author: Ian Stakenvicius  gentoo  org>
AuthorDate: Wed Jul  6 21:27:37 2016 +
Commit: Ian Stakenvicius  gentoo  org>
CommitDate: Wed Jul  6 21:27:37 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=203a3c62

www-client/firefox-38.8: stabilize for ppc after AT timeout, drop 38.7

Bug: http://bugs.gentoo.org/581326

Package-Manager: portage-2.2.28

 www-client/firefox/Manifest  |  80 ---
 www-client/firefox/firefox-38.7.0.ebuild | 382 ---
 www-client/firefox/firefox-38.8.0.ebuild |   2 +-
 3 files changed, 1 insertion(+), 463 deletions(-)

diff --git a/www-client/firefox/Manifest b/www-client/firefox/Manifest
index 1aca2a8..5aa9a65 100644
--- a/www-client/firefox/Manifest
+++ b/www-client/firefox/Manifest
@@ -1,84 +1,4 @@
 DIST firefox-38.0-patches-04.tar.xz 5572 SHA256 
501bd1cbd0ac7239674df4f7424e0dd57cab9ede47e18af0c99a8b8e04aa5ccc SHA512 
311d494ba2a4219c88eea651e617aa776d6aa8ff68092302b76e9ff4e3e348c7197ec583923188e39973b7bd14f94df19756daf2495d9b0fe44aeaa3dcd19100
 WHIRLPOOL 
6605eaa0b80c97d2d5d23a23f7b8d92e7ed875787b932adf14622eb3fb5f5ccdebe8a094d78b3518d874b8819724af94100fd1728074ba4a5c426bbd91eeb722
-DIST firefox-38.7.0esr-af.xpi 483326 SHA256 
675521824a2e97011f7faeb4bbfff192bce561bd837628038b26c1ad01d5a418 SHA512 
76070fe6678e2ba7d799b6c37b79e5e580dd0b406d551d46706e046ef82c4f8d151449a955e0b6b01364de3643aa8d24fd824ebcf9c728464df9b53ac6307bc6
 WHIRLPOOL 
a82627c2212c33dfa3bf98aa39a4ae21e9e997d61e365efb0f4b496bee7aa320a8723613873704b31c0a248b99a17fcda8d037208e090adf0a681be00fadc895
-DIST firefox-38.7.0esr-ar.xpi 516496 SHA256 
dfe75ee99959cb9d652d60dd64bb7ce747a42738c652323b7572f90725484425 SHA512 
db42ddf18d34e03fd907156f49cbcfd3a79fc67508edf5b5a08accdb73ea8c6fe54a96bba40e2a60e45e491a6260e9f9249bf5857a00ca5c58a3e0e3c526d2a6
 WHIRLPOOL 
bd31ac4100e6386419fd5b6fa957e63035b958e12d70682a90b5d22f6d98a51defe9f903a126b9dc983485c52f2e755ef4af8fd409c152a7e299f1eab0d2e7ba
-DIST firefox-38.7.0esr-as.xpi 509574 SHA256 
6c359b6563cd8a154bb700df8756eb2dd5dc8dd3f4634e43f5fd8a95dc1daf26 SHA512 
387d5dfc09f467d32d087e600715a0a6ad24c16bcb29163fc57883ed22372e75fb00a15d473173740efc8c5148a904d61422e1166157cee6474886f2fa271989
 WHIRLPOOL 
41caf69a7ed3924a1199759eb0ed950f80b4878cf8b6758da96c84e3d75c940689ba3413c881c1f1f134c942668f295e3dbadda53201f9913f436daadb71dc0d
-DIST firefox-38.7.0esr-ast.xpi 397202 SHA256 
733b8814356d1793e5b21f5bd22e8755aa95a0bcae52065d9a14ae55f5318487 SHA512 
e45e5bba931331f70d821812f29d16a3df9d08437ae458bf50ccf3cd85b9457b773f59e6ed96b8553b80d94866d613a760f64700fd780fd8bb738f6ae8c01908
 WHIRLPOOL 
d89247a7b601dd456599b8311855fc2acedf26451aef80443d9ffe0dc75c66a9e1159545c56380a14d76dc76b16a929eb776fdaedde027e50a9bbbcdcf73e851
-DIST firefox-38.7.0esr-be.xpi 441057 SHA256 
cefa4008bf9b9e626da7c305df66ca3130817ca345ec9fbd3d63696e0cac2ed9 SHA512 
1ee450cd2fde23fe856832803b576ab737c7374235b7aa22e837e34adbe2ad8cb8e6691e0c4f2c0a6c5987fc33795cb661dca1b013a1c16b47ff9722a7a74ab2
 WHIRLPOOL 
7b61032b9c792a0f0597d2d08bec40c49f3ae8bc2b40ab1001389d2a99df088f12201cb36bd44cbc52764e4eec389a350466d4b2dce621405a9d8171a0c7d990
-DIST firefox-38.7.0esr-bg.xpi 487819 SHA256 
8a21a68c2c6a2be71c56628b7c8b0a2c14cfb222442b39196b2fcf0ddba606bd SHA512 
de8576f6c77de3e04189fb5238e636e4682a28577fed259bd010564f9a3cfdea64db1dc4d863a166ea27fe65a8b22de76b109f96e0363d655b0ae9c7aaaeb70b
 WHIRLPOOL 
8f1804834e2765947fde3673d4d557cd830b9bc1f226ee29e285a1aba635e7b2d78d304ed50e3ef4d4f943e86239227939edb6ea2c5f714a663ca937edd34e70
-DIST firefox-38.7.0esr-bn-BD.xpi 528690 SHA256 
b3b24bfc6d82b215b993b101d8449213bb5420747b8fc4f0fc5c3a4d59c86025 SHA512 
201d3fe7191163004a5635f4ccc3db6697753ee4b3184c6cb8f8d17dc7df4bc8cad7be0c75bf865f8dad20031ebe638882c1a6563053bea5bf21e5d9a96c46ee
 WHIRLPOOL 
34d98849e67de3079a452e69086b951310dcbe52af353a076e37e50010eea3a1370e7cfe0900b6ed3da8118680e73ca5516219ed6169a05722b3067e1e30f4c2
-DIST firefox-38.7.0esr-bn-IN.xpi 527928 SHA256 
c85dd33850666a98ee7d4e0d623253a8666bed8058baf513055d9f9a3aa9f121 SHA512 
ef460aae0b8822abdf76ecfc1e2f4bfb62e26839413d14bf1ebddeea406cf47f7b3f845786aa421d17f7213d8dccc9493c5a3dd3ec341a1243685fe6a3e7be60
 WHIRLPOOL 
548aa6cf87718e4ca566cf03073e388a3235d2f3a269778e3bb837cd0b581be3587f29524d4d367cc33bc959692b0664f8a76d665926886dbb40339e346e1b3c
-DIST firefox-38.7.0esr-br.xpi 441962 SHA256 
1f77a10ad399a6ad1322b6b49d6cd11ad8c411e6c4766a5572edccdd0ea60ebc SHA512 
180fb73fa43efdbdca737b87b29994bf8819aa99dc8ef1cf80dcd5e4e88d157a1855e8f30dd85b63d9d7aee2f37b4b1fe0ede45ccaed46c56920ef9cce9ffdbe
 WHIRLPOOL 
7f329a841949777a3bece34bd1b28594650d92f82cc657285c9f5955ee9fdbf2a1c2a962a0f1be7bee50bb29e40e58974c57f4da7c6ca70e53bb2eb5fbe33c9c
-DIST firefox-38.7.0esr-bs.xpi 485305 SHA256 
b1a665636d1d9d9a0b3734e13108942f1610d23fcb53610896040a48257bf822 SHA512 

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

2016-07-06 Thread Ian Stakenvicius
commit: f0095d3e43cd2dc2828300d0c2e36504b6465880
Author: Ian Stakenvicius  gentoo  org>
AuthorDate: Tue Jul  5 15:05:16 2016 +
Commit: Ian Stakenvicius  gentoo  org>
CommitDate: Wed Jul  6 21:24:52 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0095d3e

eclass/moz*: refactor some configuration options from mozcoreconf-v4 to 
mozconfig

mozilla-48 and newer have dropped some configuration options that are no longer 
used
in the build system, and due to the way the new python configure operates, any 
options
specified that are not recognized are fatal.  Moving these options out of 
mozcoreconf
allows the older mozconfig's to retain the same configuration while also 
allowing newer
mozconfig's to drop them as appropriate.

 eclass/mozconfig-v6.45.eclass | 15 ++-
 eclass/mozconfig-v6.47.eclass | 15 ++-
 eclass/mozcoreconf-v4.eclass  | 14 ++
 3 files changed, 30 insertions(+), 14 deletions(-)

diff --git a/eclass/mozconfig-v6.45.eclass b/eclass/mozconfig-v6.45.eclass
index e92f769..02890a3 100644
--- a/eclass/mozconfig-v6.45.eclass
+++ b/eclass/mozconfig-v6.45.eclass
@@ -15,7 +15,7 @@
 # Some use flags which may be optional in particular mozilla packages can be
 # supported through setting eclass variables.
 #
-# This eclass inherits mozconfig helper functions as defined in mozcoreconf-v3,
+# This eclass inherits mozconfig helper functions as defined in mozcoreconf-v4,
 # and so ebuilds inheriting this eclass do not need to inherit that.
 
 case ${EAPI} in
@@ -216,6 +216,19 @@ REQUIRED_USE="
 # }
 
 mozconfig_config() {
+   # Migrated from mozcoreconf-v3
+   mozconfig_annotate 'more disable_update_strip' \
+   --disable-pedantic \
+   --disable-installer \
+   --disable-strip-libs
+
+   if [[ ${PN} != seamonkey ]]; then
+   mozconfig_annotate 'basic_profile' \
+   --disable-profilelocking \
+   --enable-single-profile \
+   --disable-profilesharing
+   fi
+
# Migrated from mozcoreconf-2
mozconfig_annotate 'system_libs' \
--with-system-zlib \

diff --git a/eclass/mozconfig-v6.47.eclass b/eclass/mozconfig-v6.47.eclass
index 263f4c0..ab0803f 100644
--- a/eclass/mozconfig-v6.47.eclass
+++ b/eclass/mozconfig-v6.47.eclass
@@ -15,7 +15,7 @@
 # Some use flags which may be optional in particular mozilla packages can be
 # supported through setting eclass variables.
 #
-# This eclass inherits mozconfig helper functions as defined in mozcoreconf-v3,
+# This eclass inherits mozconfig helper functions as defined in mozcoreconf-v4,
 # and so ebuilds inheriting this eclass do not need to inherit that.
 
 case ${EAPI} in
@@ -222,6 +222,19 @@ REQUIRED_USE="
 # }
 
 mozconfig_config() {
+   # Migrated from mozcoreconf-v3
+   mozconfig_annotate 'more disable_update_strip' \
+   --disable-pedantic \
+   --disable-installer \
+   --disable-strip-libs
+
+   if [[ ${PN} != seamonkey ]]; then
+   mozconfig_annotate 'basic_profile' \
+   --disable-profilelocking \
+   --enable-single-profile \
+   --disable-profilesharing
+   fi
+
# Migrated from mozcoreconf-2
mozconfig_annotate 'system_libs' \
--with-system-zlib \

diff --git a/eclass/mozcoreconf-v4.eclass b/eclass/mozcoreconf-v4.eclass
index fc5a079..191f5fa 100644
--- a/eclass/mozcoreconf-v4.eclass
+++ b/eclass/mozcoreconf-v4.eclass
@@ -208,7 +208,7 @@ mozconfig_init() {
append-flags "$MAKEEDIT_FLAGS"
 
# Use the MOZILLA_FIVE_HOME for the rpath
-   append-ldflags -Wl,-rpath="${MOZILLA_FIVE_HOME}"
+   append-ldflags -Wl,-rpath="${MOZILLA_FIVE_HOME}",--enable-new-dtags
# Set MOZILLA_FIVE_HOME in mozconfig
mozconfig_annotate '' 
--with-default-mozilla-five-home=${MOZILLA_FIVE_HOME}
 
@@ -219,19 +219,9 @@ mozconfig_init() {

 
mozconfig_annotate disable_update_strip \
-   --disable-pedantic \
--disable-updater \
--disable-strip \
-   --disable-install-strip \
-   --disable-installer \
-   --disable-strip-libs
-
-   if [[ ${PN} != seamonkey ]]; then
-   mozconfig_annotate basic_profile \
-   --disable-profilelocking \
-   --enable-single-profile \
-   --disable-profilesharing
-   fi
+   --disable-install-strip
 
# Here is a strange one...
if is-flag '-mcpu=ultrasparc*' || is-flag '-mtune=ultrasparc*'; then



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

2016-07-06 Thread Michael Palimaka
commit: d7c4ed7f9256b3899c64105814669b11f771c30d
Author: Michael Palimaka  gentoo  org>
AuthorDate: Wed Jul  6 20:50:11 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Wed Jul  6 20:52:49 2016 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=d7c4ed7f

kde5-functions.eclass: only perform gcc check if gcc is being used

This used to "work" because gcc-version relied on gcc-config, even if GCC was
not the active compiler. gcc-version has since been fixed to always use CC
instead.

 eclass/kde5-functions.eclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/eclass/kde5-functions.eclass b/eclass/kde5-functions.eclass
index ad3034a..a03c2ad 100644
--- a/eclass/kde5-functions.eclass
+++ b/eclass/kde5-functions.eclass
@@ -76,7 +76,7 @@ export KDE_BUILD_TYPE
 # @DESCRIPTION:
 # Determine if the current GCC version is acceptable, otherwise die.
 _check_gcc_version() {
-   if [[ ${MERGE_TYPE} != binary && -v KDE_GCC_MINIMAL ]]; then
+   if [[ ${MERGE_TYPE} != binary && -v KDE_GCC_MINIMAL ]] && tc-is-gcc; 
then
 
local version=$(gcc-version)
local major=${version%.*}



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

2016-07-06 Thread Guilherme Amadio
commit: 67943e56623fe67cd71c97194457a19553a19e78
Author: Guilherme Amadio  gentoo  org>
AuthorDate: Wed Jul  6 20:15:08 2016 +
Commit: Guilherme Amadio  gentoo  org>
CommitDate: Wed Jul  6 20:15:08 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67943e56

sci-physics/clhep: version bump to 2.3.3.1

Package-Manager: portage-2.3.0

 sci-physics/clhep/Manifest |  1 +
 sci-physics/clhep/clhep-2.3.3.1.ebuild | 55 ++
 2 files changed, 56 insertions(+)

diff --git a/sci-physics/clhep/Manifest b/sci-physics/clhep/Manifest
index b807bea..0329eb6 100644
--- a/sci-physics/clhep/Manifest
+++ b/sci-physics/clhep/Manifest
@@ -7,3 +7,4 @@ DIST clhep-2.1.4.2.tgz 1838675 SHA256 
ffd72997fb921fa7ef770c40c6bb12f603aa4761e6
 DIST clhep-2.2.0.1.tgz 1844675 SHA256 
1006284b195e569276ba9d6e3e2b0b2d002e098c10ac09157b26ec076987d7d7 SHA512 
930577d18f1c4a9dc94b259589653ebecf7b85ec78da7e1dc7b49d282dbae210bcf257831254f875840a3fd6bf5fc4ad7c4e46825e31674c55c746ef7c2939f2
 WHIRLPOOL 
ad9e765c2adb47de9688abc5c8f7f6e481160df66c811e381d136fcf7d1e7726402367ad2a3f757cefc754c8fe6dc225bdee0f15f763cecc91a3413b63cbc54c
 DIST clhep-2.2.0.5.tgz 1847046 SHA256 
92e8b5d32ae96154edd27d0c641ba048ad33cb69dd4f1cfb72fc578770a34818 SHA512 
07d9359604196344fe3b13cc103727693fd70818c22849e54507530221812843a943cb8ed66eea421e498edcc9c0f584826823ea7939cbf53b90b17d412aed1a
 WHIRLPOOL 
4d5b7429e4b0498393c8f664045df4ba27a073a7e926ee9a5f9e196e5d0d3dd4da2cb4bf77e8eb37e6651c3e1f3f9742167414010ae5606e02f307ab6efe82c4
 DIST clhep-2.3.1.0.tgz 1538945 SHA256 
66272ae3100d3aec096b1298e1e24ec25b80e4dac28332b45ec3284023592963 SHA512 
786ad6289ab064c3c428ba2a8f534fcadd09f1f00a9c725dc987ea46c55d1f4ec7beab25221c978992dd195b02a65388a35aa6d7f471b6742c9ff6cdb7a8b7a4
 WHIRLPOOL 
44f77d13c0c7b0f74c7d66c1196214d47f5ec71411365746769d7d2f1dbe53b8d4e18fbefffd6a677a3329ba16e5333277d5e6c6e8f880c24cca7d1e7c88224b
+DIST clhep-2.3.3.1.tgz 1565701 SHA256 
cd74bfae4773620dd0c7cc9c1696a08386931d7e47a3906aa632cc5cb44ed6bd SHA512 
b13e336f9c4dd741291768a4c59075e88467ad54dc41a07eeb519712055e1a26c2369bffb6aeeeac4199066ce1bc863e9d90647094dd2fced7069d82a4cd1317
 WHIRLPOOL 
03cea53429711d1c076c1d5ccf61e3f072109608fd79219ae8dfd0540b86da18c13eae1f317d3eddad080860f8e0da25b41fe9f0a3b0ae448ec7ae22a2d16749

diff --git a/sci-physics/clhep/clhep-2.3.3.1.ebuild 
b/sci-physics/clhep/clhep-2.3.3.1.ebuild
new file mode 100644
index 000..7e53bc0
--- /dev/null
+++ b/sci-physics/clhep/clhep-2.3.3.1.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+CMAKE_MIN_VERSION=3.2
+
+inherit cmake-utils multilib
+
+DESCRIPTION="High Energy Physics C++ library"
+HOMEPAGE="http://cern.ch/clhep;
+SRC_URI="http://proj-clhep.web.cern.ch/proj-clhep/DISTRIBUTION/tarFiles/${P}.tgz;
+LICENSE="GPL-3 LGPL-3"
+SLOT="2/${PV}"
+KEYWORDS="~amd64 ~hppa ~ppc ~x86 ~amd64-linux ~x86-linux"
+
+IUSE="doc static-libs test"
+RDEPEND=""
+DEPEND="${RDEPEND}
+   doc? ( app-doc/doxygen[latex] )"
+
+S="${WORKDIR}/${PV}/CLHEP"
+
+src_prepare() {
+   # respect flags
+   sed -i -e 's:-O::g' cmake/Modules/ClhepVariables.cmake || die
+   # dont build test if not asked
+   if ! use test; then
+   sed -i \
+   -e '/add_subdirectory(test)/d' \
+   */CMakeLists.txt || die
+   fi
+   # gentoo doc directory
+   if use doc; then
+   grep -rl 'share/doc/CLHEP' |
+   xargs sed -i \
+   -e "s:share/doc/CLHEP:share/doc/${PF}:" \
+   {.,*}/CMakeLists.txt || die
+   fi
+}
+
+src_configure() {
+   append-cxxflags $(test-flags-CXX -std=c++11)
+   local mycmakeargs=(
+   $(cmake-utils_use test ENABLE_TESTING)
+   $(cmake-utils_use doc CLHEP_BUILD_DOCS)
+   )
+   DESTDIR="${ED}" cmake-utils_src_configure
+}
+
+src_install() {
+   cmake-utils_src_install
+   use static-libs || rm "${ED}"/usr/$(get_libdir)/*.a
+}



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

2016-07-06 Thread Markus Meier
commit: 6aafb080b73b94d6a1af84fdeb75bcc5040a73b7
Author: Markus Meier  gentoo  org>
AuthorDate: Wed Jul  6 20:05:40 2016 +
Commit: Markus Meier  gentoo  org>
CommitDate: Wed Jul  6 20:05:40 2016 +
URL:https://gitweb.gentoo.org/dev/maekke.git/commit/?id=6aafb080

media-gfx/darktable: fix L10N usage and add missing ones to 2.0.5

Package-Manager: portage-2.3.0
Manifest-Sign-Key: 0x363AF1F7765A9D02

 media-gfx/darktable/Manifest  | 38 +--
 media-gfx/darktable/darktable-1.6.9.ebuild|  2 +-
 media-gfx/darktable/darktable-2.0.3-r1.ebuild |  2 +-
 media-gfx/darktable/darktable-2.0.3.ebuild|  2 +-
 media-gfx/darktable/darktable-2.0.4.ebuild|  2 +-
 media-gfx/darktable/darktable-2.0.5.ebuild|  4 +--
 6 files changed, 25 insertions(+), 25 deletions(-)

diff --git a/media-gfx/darktable/Manifest b/media-gfx/darktable/Manifest
index 9707294..618a1a1 100644
--- a/media-gfx/darktable/Manifest
+++ b/media-gfx/darktable/Manifest
@@ -6,29 +6,29 @@ DIST darktable-2.0.3.tar.xz 2974456 SHA256 
a03e5c1d786799e63c8b4a9f32e9e6f27b3a7
 DIST darktable-2.0.4.tar.xz 3013676 SHA256 
80e448622ff060bca1d64bf6151c27de34dea8fe6b7ddb708e1e3526a5961e62 SHA512 
ed43c4a61ec4768a5879b2fddc21245fa988bf49a4bf1ecae51a9fb9cf17d6672e9804ed754fee9eb67834e1d9d210ffaf3aaf1cddc1b7c2ac77bcf215b5dc74
 WHIRLPOOL 
5e7ab15ee9479f380903cae101b1722402f221acf23b720b8fe5428c561bb8d77bbb3b98af710d100077c8b4121416f8f6318331046d18c6ee1f8d1599707b57
 DIST darktable-2.0.5.tar.xz 3015380 SHA256 
898b71b94e7ef540eb1c87c829daadc8d8d025b1705d4a9471b1b9ed91b90a02 SHA512 
e8b3923ac9c50f73763a75f5cc1987b4f49964f149f30607916555806c1f918e0c1b4719e1505f73d0387323e96e2780f49532be2c522ce294e7a2d41b278a17
 WHIRLPOOL 
ab0c8dc9099a4335954e7435b49c2df10f2ca8be76d78094d4a84f161db676d99f5dc39e42e427b337f3e8195672135969091283c7625f413e0b8708f2621c3a
 DIST darktable-usermanual-1.6.0.pdf 12827069 SHA256 
f5c46dbf0a2dd2d391f92555abdefe735c6362e51a755b296d71779492b7e945 SHA512 
39ee8c1b4f23883025750416d9d1f73d1dfbec0e6ac3eeef0f15778ced66a373c00b0a46cb3a54b1cfd6e04313313f63e8e3cd3d0cbea011acaa07a725d0ab02
 WHIRLPOOL 
49a234e57c14d23ccb85eadf2ad03c52eae7f90b0371dce025c04019a7a5cca41858084f735fe0965f93958ab83601571ab3e33acd27c2bcbd381bb0c9da4794
-EBUILD darktable-1.6.9.ebuild 4038 SHA256 
cebae4b6b851ff32e02ec88d408a9feb94bfe97ddde03b3ff6b827775b94dbca SHA512 
d2da7272d62a1f80db560dece91db9b13d7afd31edc6762e64c3b29e783142090f05ed1bf1c00dcc060f9c9957f50295106a351c218c95aa87f7f6809d03473e
 WHIRLPOOL 
12603c6e385e546f8c2988441bc4fc56f26d6781629d9492a839740d4d72979a8e167a2933d23b3f5c2458d5834860fe1cd19b0feb338de9f8c41eb438148843
-EBUILD darktable-2.0.3-r1.ebuild 4134 SHA256 
506446638c065fb15e3c5476c5bc6cede6df6055fb3052ebdca135400b0d689b SHA512 
84f8727b6a23141bb1c4229e109593aefc611ebe08e725f161744c6ed805e47e8437e5455c0071737415c0c693e8ed112fcb85790b63648e2336f63e54270671
 WHIRLPOOL 
9dbb0b81e8a9a296d65089266c772f8bfc9fe0447aff27f74da212d55389fbdb590e6052baa84a9e78aab1c1d877ef30de251771651e93d8020c12f10082
-EBUILD darktable-2.0.3.ebuild 4067 SHA256 
630fa163a1b52b33adefbb85dc90b28c3ddb30b3a2129701fd20a74635f1e6cc SHA512 
3ac901f18d6fe4d46d218485fb7fa491226f920ec1b0c7a84f2e4c4da769ae7b9252463cf709735381a90599448c96bb930d76a94773c18446ce240d3ad8f09d
 WHIRLPOOL 
2ba254333c94c69bc126c7c4992b7eaf317620e1c4271bdd505706eddc72a93aea13a045f195662c5cca25f2abf4184e813f43c445683cb5c4509bb2d2770eb1
-EBUILD darktable-2.0.4.ebuild 4067 SHA256 
630fa163a1b52b33adefbb85dc90b28c3ddb30b3a2129701fd20a74635f1e6cc SHA512 
3ac901f18d6fe4d46d218485fb7fa491226f920ec1b0c7a84f2e4c4da769ae7b9252463cf709735381a90599448c96bb930d76a94773c18446ce240d3ad8f09d
 WHIRLPOOL 
2ba254333c94c69bc126c7c4992b7eaf317620e1c4271bdd505706eddc72a93aea13a045f195662c5cca25f2abf4184e813f43c445683cb5c4509bb2d2770eb1
-EBUILD darktable-2.0.5.ebuild 4067 SHA256 
630fa163a1b52b33adefbb85dc90b28c3ddb30b3a2129701fd20a74635f1e6cc SHA512 
3ac901f18d6fe4d46d218485fb7fa491226f920ec1b0c7a84f2e4c4da769ae7b9252463cf709735381a90599448c96bb930d76a94773c18446ce240d3ad8f09d
 WHIRLPOOL 
2ba254333c94c69bc126c7c4992b7eaf317620e1c4271bdd505706eddc72a93aea13a045f195662c5cca25f2abf4184e813f43c445683cb5c4509bb2d2770eb1
+EBUILD darktable-1.6.9.ebuild 4042 SHA256 
2e4f1c8a5adbd8e5b681bac2cb08291f291c2696fb67cb9dfe5b8dbeb8c83e69 SHA512 
332bc23662cc7e303d6a8849905bd78ea517aa5429887d49e4012d52768bb0cca5935458e4235ab1dd0a4e79ae59bd6f7667f6d0aac0e88c5b4977b36271f6f3
 WHIRLPOOL 
fe37f6bbd5e16395af4e64a329c97928f42bb017abf8fa2c7b96a2022142fecb6cbe41c4927f9330683fa6ab0195dc2c54d657eb346f8737cf499ad2a9b506c7
+EBUILD darktable-2.0.3-r1.ebuild 4138 SHA256 
76ab7be1dab8a6fb1fbc5a7e9916827f5e691a5a7439f713101b027f2afd0ff2 SHA512 
3dc1d1dc4af81cafcc75c53bd16319ab5c74e47413e5f91f6fb032ba57c25907ff1c1d772a9b7420a51876a37b4dbd578264893d4979ef9fa5180e8aa6b8268e
 WHIRLPOOL 
999b1aebf83732e3c719a88cdf386277b589e3ee9a73fc9f251422c5a2f004bf60667fb95da186d55a380891a3044ca6346a7eb1306b74f8a79c87e2ee64c6cd

[gentoo-commits] repo/gentoo:master commit in: media-gfx/darktable/

2016-07-06 Thread Markus Meier
commit: 0f23b7c38aa3f68930d82917096368ee91d77eb9
Author: Markus Meier  gentoo  org>
AuthorDate: Wed Jul  6 20:06:45 2016 +
Commit: Markus Meier  gentoo  org>
CommitDate: Wed Jul  6 20:06:45 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f23b7c3

media-gfx/darktable: fix L10N usage and add missing ones to 2.0.5

Package-Manager: portage-2.3.0

 media-gfx/darktable/darktable-1.6.9.ebuild | 2 +-
 media-gfx/darktable/darktable-2.0.3.ebuild | 2 +-
 media-gfx/darktable/darktable-2.0.4.ebuild | 2 +-
 media-gfx/darktable/darktable-2.0.5.ebuild | 4 ++--
 4 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/media-gfx/darktable/darktable-1.6.9.ebuild 
b/media-gfx/darktable/darktable-1.6.9.ebuild
index 774abb4..cba9813 100644
--- a/media-gfx/darktable/darktable-1.6.9.ebuild
+++ b/media-gfx/darktable/darktable-1.6.9.ebuild
@@ -118,7 +118,7 @@ src_install() {
use doc && dodoc "${DISTDIR}"/${PN}-usermanual-${DOC_PV}.pdf
 
for lang in ${LANGS} ; do
-   use l10n_${lang} || rm -r "${ED}"/usr/share/locale/${lang}
+   use l10n_${lang} || rm -r "${ED}"/usr/share/locale/${lang/-/_}
done
 
if use pax_kernel && use opencl ; then

diff --git a/media-gfx/darktable/darktable-2.0.3.ebuild 
b/media-gfx/darktable/darktable-2.0.3.ebuild
index 9666414..0192540 100644
--- a/media-gfx/darktable/darktable-2.0.3.ebuild
+++ b/media-gfx/darktable/darktable-2.0.3.ebuild
@@ -113,7 +113,7 @@ src_install() {
use doc && dodoc "${DISTDIR}"/${PN}-usermanual-${DOC_PV}.pdf
 
for lang in ${LANGS} ; do
-   use l10n_${lang} || rm -r "${ED}"/usr/share/locale/${lang}
+   use l10n_${lang} || rm -r "${ED}"/usr/share/locale/${lang/-/_}
done
 
if use pax_kernel && use opencl ; then

diff --git a/media-gfx/darktable/darktable-2.0.4.ebuild 
b/media-gfx/darktable/darktable-2.0.4.ebuild
index 9666414..0192540 100644
--- a/media-gfx/darktable/darktable-2.0.4.ebuild
+++ b/media-gfx/darktable/darktable-2.0.4.ebuild
@@ -113,7 +113,7 @@ src_install() {
use doc && dodoc "${DISTDIR}"/${PN}-usermanual-${DOC_PV}.pdf
 
for lang in ${LANGS} ; do
-   use l10n_${lang} || rm -r "${ED}"/usr/share/locale/${lang}
+   use l10n_${lang} || rm -r "${ED}"/usr/share/locale/${lang/-/_}
done
 
if use pax_kernel && use opencl ; then

diff --git a/media-gfx/darktable/darktable-2.0.5.ebuild 
b/media-gfx/darktable/darktable-2.0.5.ebuild
index 9666414..9012337 100644
--- a/media-gfx/darktable/darktable-2.0.5.ebuild
+++ b/media-gfx/darktable/darktable-2.0.5.ebuild
@@ -16,7 +16,7 @@ 
SRC_URI="https://github.com/darktable-org/${PN}/releases/download/release-${PV}/
 LICENSE="GPL-3 CC-BY-3.0"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-LANGS=" ca cs da de el es fr it ja nl pl pt-BR pt-PT ru sk sq sv uk"
+LANGS=" ca cs da de el es fr he hu it ja nl pl pt-BR pt-PT ru sk sl sq sv uk"
 # TODO add lua once dev-lang/lua-5.2 is unmasked
 IUSE="colord cups cpu_flags_x86_sse3 doc flickr gphoto2 graphicsmagick jpeg2k 
kde libsecret
 nls opencl openmp openexr pax_kernel +slideshow webp
@@ -113,7 +113,7 @@ src_install() {
use doc && dodoc "${DISTDIR}"/${PN}-usermanual-${DOC_PV}.pdf
 
for lang in ${LANGS} ; do
-   use l10n_${lang} || rm -r "${ED}"/usr/share/locale/${lang}
+   use l10n_${lang} || rm -r "${ED}"/usr/share/locale/${lang/-/_}
done
 
if use pax_kernel && use opencl ; then



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

2016-07-06 Thread Alon Bar-Lev
commit: a9e3b28b5f3a79c79ae8c62f5e86386d7244873c
Author: Alon Bar-Lev  gentoo  org>
AuthorDate: Wed Jul  6 20:06:18 2016 +
Commit: Alon Bar-Lev  gentoo  org>
CommitDate: Wed Jul  6 20:07:13 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9e3b28b

net-libs/gnutls: version bump

Package-Manager: portage-2.2.28

 net-libs/gnutls/Manifest |   3 +
 net-libs/gnutls/gnutls-3.3.24.ebuild | 177 +++
 net-libs/gnutls/gnutls-3.4.14.ebuild | 135 ++
 net-libs/gnutls/gnutls-3.5.2.ebuild  | 127 +
 4 files changed, 442 insertions(+)

diff --git a/net-libs/gnutls/Manifest b/net-libs/gnutls/Manifest
index 8f7713e..46eecfb 100644
--- a/net-libs/gnutls/Manifest
+++ b/net-libs/gnutls/Manifest
@@ -1,5 +1,8 @@
 DIST gnutls-3.3.17.1.tar.xz 6339588 SHA256 
b40f158030a92f450a07b20300a3996710ca19800848d9f6fd62493170c5bbb4 SHA512 
9f2945abe1251db176fa227f2c90be46dba831af97647f04b960c71a50fc597776be31080733f9417f2242c4c6ae92fa897bf02d5f2ba40863e94df245c03319
 WHIRLPOOL 
8a04e56a5f47ddaad106081a613ead85a107b013d3e894074745e9439e0a7797b7f528aab5db7e3ac808f1c5c361c4717d7f0cb3abc943a6f912e5b6981db320
 DIST gnutls-3.3.23.tar.xz 6304332 SHA256 
f53453857e369d66d665c40389201c0b9dacb7ccda560fd21b20b798687a4239 SHA512 
5c2e93ddbff3ca2fc5f8fca8eeaef363bf8fe0f5dce2f4a9448e3235c930baa09d59a456a019283a451d19e0497d3ae645786080aa31febc7f1bcd71c6de1e09
 WHIRLPOOL 
fa082db1933eefc7e061dc7f7e6584d03920f40584865e2983250097db9acea0e6d0c075e8207a2e5b96e37ae77db2b91bcf21e97cc7dfdec0744904de4b5866
+DIST gnutls-3.3.24.tar.xz 6294532 SHA256 
5b65fe2a91c8dfa32bedc78acffcb152e5426cd3349e2afc439bdaf18aa5 SHA512 
1fbb2e15ade14db15d7acc9ff559ecfc39517fd99e6c784583a7a4f8786daf8053f35f41e39cde0eeb5a1dfd3193ad908b52f62f945fbd43c147dc87e55f192f
 WHIRLPOOL 
0725b35af9bbb4a7ee8f430af95e078066fb455328dd0ee71cca6633d093fe0433c7d869ebf0fabf8983679a32ff8451a2b631aec672810eb7bc55a3de28cc7d
 DIST gnutls-3.4.13.tar.xz 6670508 SHA256 
fd3386e8e72725980bcd7f40949aa0121dcb7650b5147c6490e794555ed25859 SHA512 
bec4832560945ca127524a7b529757aa36b7eb9a070d7385f8e5d10628e39b76ae20c1c146fab286860c70add8755f17a4b61bfa1a266eeb30d481f259120406
 WHIRLPOOL 
aaee0a5b597305a2dab0064e9ef1fb1cf05f1f301de30601fa8a8c81f9c35f72c82df8c1c24e57c7f4beb132b4c50285f765ba998829ba7ab0681eadf7cfe7f7
+DIST gnutls-3.4.14.tar.xz 6673148 SHA256 
35deddf2779b76ac11057de38bf380b8066c05de21b94263ad5b6dfa75dfbb23 SHA512 
d75f6b4dea2dc742cd7f60ee0ee540d41b69991aaa937ca0138cfdf4a1e0dfaaa3863464303bfa5799e14ee02de252f71c59a7a9e57b96ff8af653e419edfd4e
 WHIRLPOOL 
1869b831521f4ef5dde5a6694fdf6239793b404478a9b7e97ec2b4af2f1a4326fa5b65521a74d664113a84d2ff1b660269fcf1f3ca1db361fddfab2af3c191dd
 DIST gnutls-3.5.0.tar.xz 6716848 SHA256 
fc6b3b544d411e6ca54dd6167541770559070ea15e6868946cf56a621d58ae25 SHA512 
0b53b8084972e9b47e71c47ca9a42d0413c781641f4da640a1016aa0c1a736863a57eadbd9bb81248d3fdf723796edbb1424b14f9846b2300ad7650925f2ac27
 WHIRLPOOL 
0f1b3e07f94f101b004ecb1024424a10826d32bab0168076e412cd8d3881af8d77b440395b1811a910188d950ed71a2eb13e87dae029ee4c8c461a3d71077ba3
 DIST gnutls-3.5.1.tar.xz 6799264 SHA256 
bc4a0f80a627c3aca6e7ea59d30e50cda118c61e0e3fab367ff1451d6ec8bdbd SHA512 
d59d0a7624a2783645d217a2f6955e8a5e67eea4a9bc682b101cf939f7b623f046b381bc12ae0bae08c17031e4bd178e615afbe2cdde3914433b8d829c353e14
 WHIRLPOOL 
1ce587c664896115a0b8f4d8bfadb562738b85db15dc592d049c89a10c1386ec2ec73f7bc94a7291188e590cd862419a15dac8ac37670629998231216a2450ce
+DIST gnutls-3.5.2.tar.xz 6829132 SHA256 
2b45e95cbfd21d76da6fc4846794d8845dbc66bb03c6aa1428881586cfbe8582 SHA512 
c9438a5c20316e41bbcaaa5e88c3fcbb750f336d8ac8ea196e0d7840fb4ccc64b00cda70ea81afbe8ee9fa790fbfb3ed3c84689378397adaf97031fbc2f260d0
 WHIRLPOOL 
b27d6c72eea6c135fde946dd5db64d3ba23864aa48e96c2d9271dd845878c9947f70d2f78270396d5556dada95b84bb9fd7a884e697fb0dd6c4bd8a78152d3cb

diff --git a/net-libs/gnutls/gnutls-3.3.24.ebuild 
b/net-libs/gnutls/gnutls-3.3.24.ebuild
new file mode 100644
index 000..41ffb01
--- /dev/null
+++ b/net-libs/gnutls/gnutls-3.3.24.ebuild
@@ -0,0 +1,177 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit autotools libtool eutils multilib-minimal versionator
+
+DESCRIPTION="A TLS 1.2 and SSL 3.0 implementation for the GNU project"
+HOMEPAGE="http://www.gnutls.org/;
+SRC_URI="mirror://gnupg/gnutls/v$(get_version_component_range 1-2)/${P}.tar.xz"
+
+# LGPL-3 for libgnutls library and GPL-3 for libgnutls-extra library.
+# soon to be relicensed as LGPL-2.1 unless heartbeat extension enabled.
+LICENSE="GPL-3 LGPL-3"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-interix ~amd64-linux 
~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~x86-solaris"
+IUSE_LINGUAS=" en cs de fi fr it ms nl pl sv uk vi zh_CN"

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

2016-07-06 Thread Michał Górny
commit: 6eebe22b5c8424a5b4886cc20bb531c4c8136457
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jul  6 20:02:08 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jul  6 20:03:32 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6eebe22b

package.mask: Fix typo in my entry dates

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

diff --git a/profiles/package.mask b/profiles/package.mask
index fd94032..4256375 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -30,12 +30,12 @@
 
 #--- END OF EXAMPLES ---
 
-# Michał Górny  (8 Jul 2016)
+# Michał Górny  (6 Jul 2016)
 # No development since 2012, upstream repository removed in Jan 2016.
 # No longer builds. Removal in 30 days, #582448.
 dev-util/rootstrap
 
-# Michał Górny  (8 Jul 2016)
+# Michał Górny  (6 Jul 2016)
 # Deprecated upstream. Replaced by dev-python/chardet.
 # Removal in 30 days, #548866.
 dev-python/charade



[gentoo-commits] repo/gentoo:master commit in: media-gfx/darktable/

2016-07-06 Thread Markus Meier
commit: 238a7e43f63efc6631a2c7524a6a37361dde7f4f
Author: Markus Meier  gentoo  org>
AuthorDate: Wed Jul  6 19:51:32 2016 +
Commit: Markus Meier  gentoo  org>
CommitDate: Wed Jul  6 19:51:32 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=238a7e43

media-gfx/darktable: version bump and migrate to L10N

Package-Manager: portage-2.3.0

 media-gfx/darktable/Manifest  | 1 +
 media-gfx/darktable/darktable-1.6.9.ebuild| 8 
 media-gfx/darktable/darktable-2.0.3.ebuild| 6 +++---
 media-gfx/darktable/darktable-2.0.4.ebuild| 6 +++---
 .../darktable/{darktable-2.0.3.ebuild => darktable-2.0.5.ebuild}  | 6 +++---
 media-gfx/darktable/darktable-.ebuild | 6 +++---
 6 files changed, 17 insertions(+), 16 deletions(-)

diff --git a/media-gfx/darktable/Manifest b/media-gfx/darktable/Manifest
index 6ebbbda..243436e 100644
--- a/media-gfx/darktable/Manifest
+++ b/media-gfx/darktable/Manifest
@@ -1,4 +1,5 @@
 DIST darktable-1.6.9.tar.xz 3124940 SHA256 
0f721e9d298a9407f6c0325d9c95b9dc37fa60f3b6a2f2e3b5675ff97c423173 SHA512 
c0e8e83cf1cb10b663e5486f2bdde3cba2db5dbaabacd260999be1173c67618023e785e9087a517959835459f8d54c245d190f63a9422a17f3472f5aa316d492
 WHIRLPOOL 
0a2446ff7f98cf0297c5948009414dbf828f1cc60a9fb117f1e110f454dd68df611310bd9ff287f1f2345a8ee9818c1918b4ac7791aeb094c01e71a1ecdfce9d
 DIST darktable-2.0.3.tar.xz 2974456 SHA256 
a03e5c1d786799e63c8b4a9f32e9e6f27b3a7d7ab07753a516e630490345 SHA512 
e48c40df0d56dabe09a41e3b595cd621ecec1f118158f253f2c200e09edfa199ca4e8853153fe9fe4c2ea8df3c75bd97bd5c2dfa165ccf0d7601d8443df90112
 WHIRLPOOL 
ce10feb4de4793760624a0d033a42c4fabaf155938eb344cf09c14c278fdc5d7b94816f893065c937e908489f4f092cbd78c9b0ee7f466dd79eeca406d230f77
 DIST darktable-2.0.4.tar.xz 3013676 SHA256 
80e448622ff060bca1d64bf6151c27de34dea8fe6b7ddb708e1e3526a5961e62 SHA512 
ed43c4a61ec4768a5879b2fddc21245fa988bf49a4bf1ecae51a9fb9cf17d6672e9804ed754fee9eb67834e1d9d210ffaf3aaf1cddc1b7c2ac77bcf215b5dc74
 WHIRLPOOL 
5e7ab15ee9479f380903cae101b1722402f221acf23b720b8fe5428c561bb8d77bbb3b98af710d100077c8b4121416f8f6318331046d18c6ee1f8d1599707b57
+DIST darktable-2.0.5.tar.xz 3015380 SHA256 
898b71b94e7ef540eb1c87c829daadc8d8d025b1705d4a9471b1b9ed91b90a02 SHA512 
e8b3923ac9c50f73763a75f5cc1987b4f49964f149f30607916555806c1f918e0c1b4719e1505f73d0387323e96e2780f49532be2c522ce294e7a2d41b278a17
 WHIRLPOOL 
ab0c8dc9099a4335954e7435b49c2df10f2ca8be76d78094d4a84f161db676d99f5dc39e42e427b337f3e8195672135969091283c7625f413e0b8708f2621c3a
 DIST darktable-usermanual-1.6.0.pdf 12827069 SHA256 
f5c46dbf0a2dd2d391f92555abdefe735c6362e51a755b296d71779492b7e945 SHA512 
39ee8c1b4f23883025750416d9d1f73d1dfbec0e6ac3eeef0f15778ced66a373c00b0a46cb3a54b1cfd6e04313313f63e8e3cd3d0cbea011acaa07a725d0ab02
 WHIRLPOOL 
49a234e57c14d23ccb85eadf2ad03c52eae7f90b0371dce025c04019a7a5cca41858084f735fe0965f93958ab83601571ab3e33acd27c2bcbd381bb0c9da4794

diff --git a/media-gfx/darktable/darktable-1.6.9.ebuild 
b/media-gfx/darktable/darktable-1.6.9.ebuild
index a3c61f4..774abb4 100644
--- a/media-gfx/darktable/darktable-1.6.9.ebuild
+++ b/media-gfx/darktable/darktable-1.6.9.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,11 +16,11 @@ 
SRC_URI="https://github.com/darktable-org/${PN}/releases/download/release-${PV}/
 LICENSE="GPL-3 CC-BY-3.0"
 SLOT="0"
 KEYWORDS="amd64 x86"
-LANGS=" ca cs da de el es fr it ja nl pl pt_BR pt_PT ru sq sv uk"
+LANGS=" ca cs da de el es fr it ja nl pl pt-BR pt-PT ru sq sv uk"
 # TODO add lua once dev-lang/lua-5.2 is unmasked
 IUSE="colord cpu_flags_x86_sse3 doc flickr geo gphoto2 graphicsmagick jpeg2k 
kde libsecret
 nls opencl openmp openexr pax_kernel +rawspeed +slideshow +squish web-services 
webp
-${LANGS// / linguas_}"
+${LANGS// / l10n_}"
 
 # sse3 support is required to build darktable
 REQUIRED_USE="cpu_flags_x86_sse3"
@@ -118,7 +118,7 @@ src_install() {
use doc && dodoc "${DISTDIR}"/${PN}-usermanual-${DOC_PV}.pdf
 
for lang in ${LANGS} ; do
-   use linguas_${lang} || rm -r "${ED}"/usr/share/locale/${lang}
+   use l10n_${lang} || rm -r "${ED}"/usr/share/locale/${lang}
done
 
if use pax_kernel && use opencl ; then

diff --git a/media-gfx/darktable/darktable-2.0.3.ebuild 
b/media-gfx/darktable/darktable-2.0.3.ebuild
index 942f885..9666414 100644
--- a/media-gfx/darktable/darktable-2.0.3.ebuild
+++ b/media-gfx/darktable/darktable-2.0.3.ebuild
@@ -16,11 +16,11 @@ 
SRC_URI="https://github.com/darktable-org/${PN}/releases/download/release-${PV}/
 LICENSE="GPL-3 CC-BY-3.0"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-LANGS=" ca cs da de el es fr it ja nl pl pt_BR pt_PT ru sk sq sv uk"
+LANGS=" ca cs da de el es fr it ja nl pl pt-BR pt-PT ru sk sq sv uk"
 # TODO add 

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

2016-07-06 Thread Markus Meier
commit: bb511323148904e13559d6a076f35963fe7d1ed2
Author: Markus Meier  gentoo  org>
AuthorDate: Wed Jul  6 19:33:32 2016 +
Commit: Markus Meier  gentoo  org>
CommitDate: Wed Jul  6 19:33:32 2016 +
URL:https://gitweb.gentoo.org/dev/maekke.git/commit/?id=bb511323

media-gfx/darktable: version bump

Package-Manager: portage-2.3.0
Manifest-Sign-Key: 0x363AF1F7765A9D02

 media-gfx/darktable/Manifest   |  30 +++---
 media-gfx/darktable/darktable-2.0.5.ebuild | 147 +
 2 files changed, 163 insertions(+), 14 deletions(-)

diff --git a/media-gfx/darktable/Manifest b/media-gfx/darktable/Manifest
index 16d1d83..e7c0074 100644
--- a/media-gfx/darktable/Manifest
+++ b/media-gfx/darktable/Manifest
@@ -4,29 +4,31 @@ Hash: SHA256
 DIST darktable-1.6.9.tar.xz 3124940 SHA256 
0f721e9d298a9407f6c0325d9c95b9dc37fa60f3b6a2f2e3b5675ff97c423173 SHA512 
c0e8e83cf1cb10b663e5486f2bdde3cba2db5dbaabacd260999be1173c67618023e785e9087a517959835459f8d54c245d190f63a9422a17f3472f5aa316d492
 WHIRLPOOL 
0a2446ff7f98cf0297c5948009414dbf828f1cc60a9fb117f1e110f454dd68df611310bd9ff287f1f2345a8ee9818c1918b4ac7791aeb094c01e71a1ecdfce9d
 DIST darktable-2.0.3.tar.xz 2974456 SHA256 
a03e5c1d786799e63c8b4a9f32e9e6f27b3a7d7ab07753a516e630490345 SHA512 
e48c40df0d56dabe09a41e3b595cd621ecec1f118158f253f2c200e09edfa199ca4e8853153fe9fe4c2ea8df3c75bd97bd5c2dfa165ccf0d7601d8443df90112
 WHIRLPOOL 
ce10feb4de4793760624a0d033a42c4fabaf155938eb344cf09c14c278fdc5d7b94816f893065c937e908489f4f092cbd78c9b0ee7f466dd79eeca406d230f77
 DIST darktable-2.0.4.tar.xz 3013676 SHA256 
80e448622ff060bca1d64bf6151c27de34dea8fe6b7ddb708e1e3526a5961e62 SHA512 
ed43c4a61ec4768a5879b2fddc21245fa988bf49a4bf1ecae51a9fb9cf17d6672e9804ed754fee9eb67834e1d9d210ffaf3aaf1cddc1b7c2ac77bcf215b5dc74
 WHIRLPOOL 
5e7ab15ee9479f380903cae101b1722402f221acf23b720b8fe5428c561bb8d77bbb3b98af710d100077c8b4121416f8f6318331046d18c6ee1f8d1599707b57
+DIST darktable-2.0.5.tar.xz 3015380 SHA256 
898b71b94e7ef540eb1c87c829daadc8d8d025b1705d4a9471b1b9ed91b90a02 SHA512 
e8b3923ac9c50f73763a75f5cc1987b4f49964f149f30607916555806c1f918e0c1b4719e1505f73d0387323e96e2780f49532be2c522ce294e7a2d41b278a17
 WHIRLPOOL 
ab0c8dc9099a4335954e7435b49c2df10f2ca8be76d78094d4a84f161db676d99f5dc39e42e427b337f3e8195672135969091283c7625f413e0b8708f2621c3a
 DIST darktable-usermanual-1.6.0.pdf 12827069 SHA256 
f5c46dbf0a2dd2d391f92555abdefe735c6362e51a755b296d71779492b7e945 SHA512 
39ee8c1b4f23883025750416d9d1f73d1dfbec0e6ac3eeef0f15778ced66a373c00b0a46cb3a54b1cfd6e04313313f63e8e3cd3d0cbea011acaa07a725d0ab02
 WHIRLPOOL 
49a234e57c14d23ccb85eadf2ad03c52eae7f90b0371dce025c04019a7a5cca41858084f735fe0965f93958ab83601571ab3e33acd27c2bcbd381bb0c9da4794
 EBUILD darktable-1.6.9.ebuild 4044 SHA256 
64e225979eae85cfa5a1022aad47e063416c5ac70be9355a40158b68c29014ac SHA512 
21f6d7274ee3bebc6f8ef753cb1958b4f7666c207d1b8febfbd15f4f4c14d713969516d778be5904265c7a7e3860170397f9f36e3069943f101e2043aa348cf0
 WHIRLPOOL 
4e0a6ac38e0fcae7134f876a1e4650a2cc27658140772d43fcacc604674a9eace7d3b7d691f64e3ba96010c6798bea869c7756294266c5e420da1ea532ffba1b
 EBUILD darktable-2.0.3-r1.ebuild 4140 SHA256 
79b1e5d6b171fd9f0bacfe87a6fc4a6c6f3343a6f18834f371357456bb86f024 SHA512 
c93e80f6e0c9fca3d7d5adeebbcee65c0ba67b9057c4b7fc44acd186c86c98f523246fbc9bea089a555915daae16b18729fae389abf0a1a103e796f1d921aaea
 WHIRLPOOL 
37217504d2ba230c1cbf761d9a5344b8dccb8f490bd1b7a498419bfee377dad008ea29c266041782ec4cab7cc4c3887e6b370871ce2488c2b01af1bff1916cf6
 EBUILD darktable-2.0.3.ebuild 4073 SHA256 
3af887c59cad21bbd9001b19376d178d7f62082d6e0a2c6f4d06f6119306d72a SHA512 
a360ad2851dc80add67405f4de86518937bd786272a3086ce4288b940894089a2c94d64a773410d1aefd9dd6a72498205216275b490e53bdbbc11056d12da810
 WHIRLPOOL 
7aff7a79aae66c1acd1c8d0b3b7d138db867b6c478d88f959a1d6b108636f5399ea0e5b0c3d1aab692a553642fe1816736fd833a0f19b198d41b2c7443bf03ec
 EBUILD darktable-2.0.4.ebuild 4073 SHA256 
3af887c59cad21bbd9001b19376d178d7f62082d6e0a2c6f4d06f6119306d72a SHA512 
a360ad2851dc80add67405f4de86518937bd786272a3086ce4288b940894089a2c94d64a773410d1aefd9dd6a72498205216275b490e53bdbbc11056d12da810
 WHIRLPOOL 
7aff7a79aae66c1acd1c8d0b3b7d138db867b6c478d88f959a1d6b108636f5399ea0e5b0c3d1aab692a553642fe1816736fd833a0f19b198d41b2c7443bf03ec
+EBUILD darktable-2.0.5.ebuild 4073 SHA256 
3af887c59cad21bbd9001b19376d178d7f62082d6e0a2c6f4d06f6119306d72a SHA512 
a360ad2851dc80add67405f4de86518937bd786272a3086ce4288b940894089a2c94d64a773410d1aefd9dd6a72498205216275b490e53bdbbc11056d12da810
 WHIRLPOOL 
7aff7a79aae66c1acd1c8d0b3b7d138db867b6c478d88f959a1d6b108636f5399ea0e5b0c3d1aab692a553642fe1816736fd833a0f19b198d41b2c7443bf03ec
 EBUILD darktable-.ebuild 3642 SHA256 
4746429c6a19d4c874997424dd4bcbb92926efccd3ce369cf4e648f47899a4d3 SHA512 
f134a726a29ba724f2358e0839835b1cbdda6ee300f768098793087fbaee38e986ad564f4bf212a61433dd418e5cb2268041c7ae0494ed419765e0b973e4838c
 WHIRLPOOL 

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

2016-07-06 Thread Markus Meier
commit: b3d218897f39a09fd9106a17e57a76cbdcd4da18
Author: Markus Meier  gentoo  org>
AuthorDate: Wed Jul  6 19:48:37 2016 +
Commit: Markus Meier  gentoo  org>
CommitDate: Wed Jul  6 19:48:37 2016 +
URL:https://gitweb.gentoo.org/dev/maekke.git/commit/?id=b3d21889

media-gfx/darktable: migrate to L10N

Package-Manager: portage-2.3.0
Manifest-Sign-Key: 0x363AF1F7765A9D02

 media-gfx/darktable/Manifest  | 40 +--
 media-gfx/darktable/darktable-1.6.9.ebuild|  8 +++---
 media-gfx/darktable/darktable-2.0.3-r1.ebuild |  6 ++--
 media-gfx/darktable/darktable-2.0.3.ebuild|  6 ++--
 media-gfx/darktable/darktable-2.0.4.ebuild|  6 ++--
 media-gfx/darktable/darktable-2.0.5.ebuild|  6 ++--
 media-gfx/darktable/darktable-.ebuild |  6 ++--
 7 files changed, 39 insertions(+), 39 deletions(-)

diff --git a/media-gfx/darktable/Manifest b/media-gfx/darktable/Manifest
index e7c0074..9707294 100644
--- a/media-gfx/darktable/Manifest
+++ b/media-gfx/darktable/Manifest
@@ -6,29 +6,29 @@ DIST darktable-2.0.3.tar.xz 2974456 SHA256 
a03e5c1d786799e63c8b4a9f32e9e6f27b3a7
 DIST darktable-2.0.4.tar.xz 3013676 SHA256 
80e448622ff060bca1d64bf6151c27de34dea8fe6b7ddb708e1e3526a5961e62 SHA512 
ed43c4a61ec4768a5879b2fddc21245fa988bf49a4bf1ecae51a9fb9cf17d6672e9804ed754fee9eb67834e1d9d210ffaf3aaf1cddc1b7c2ac77bcf215b5dc74
 WHIRLPOOL 
5e7ab15ee9479f380903cae101b1722402f221acf23b720b8fe5428c561bb8d77bbb3b98af710d100077c8b4121416f8f6318331046d18c6ee1f8d1599707b57
 DIST darktable-2.0.5.tar.xz 3015380 SHA256 
898b71b94e7ef540eb1c87c829daadc8d8d025b1705d4a9471b1b9ed91b90a02 SHA512 
e8b3923ac9c50f73763a75f5cc1987b4f49964f149f30607916555806c1f918e0c1b4719e1505f73d0387323e96e2780f49532be2c522ce294e7a2d41b278a17
 WHIRLPOOL 
ab0c8dc9099a4335954e7435b49c2df10f2ca8be76d78094d4a84f161db676d99f5dc39e42e427b337f3e8195672135969091283c7625f413e0b8708f2621c3a
 DIST darktable-usermanual-1.6.0.pdf 12827069 SHA256 
f5c46dbf0a2dd2d391f92555abdefe735c6362e51a755b296d71779492b7e945 SHA512 
39ee8c1b4f23883025750416d9d1f73d1dfbec0e6ac3eeef0f15778ced66a373c00b0a46cb3a54b1cfd6e04313313f63e8e3cd3d0cbea011acaa07a725d0ab02
 WHIRLPOOL 
49a234e57c14d23ccb85eadf2ad03c52eae7f90b0371dce025c04019a7a5cca41858084f735fe0965f93958ab83601571ab3e33acd27c2bcbd381bb0c9da4794
-EBUILD darktable-1.6.9.ebuild 4044 SHA256 
64e225979eae85cfa5a1022aad47e063416c5ac70be9355a40158b68c29014ac SHA512 
21f6d7274ee3bebc6f8ef753cb1958b4f7666c207d1b8febfbd15f4f4c14d713969516d778be5904265c7a7e3860170397f9f36e3069943f101e2043aa348cf0
 WHIRLPOOL 
4e0a6ac38e0fcae7134f876a1e4650a2cc27658140772d43fcacc604674a9eace7d3b7d691f64e3ba96010c6798bea869c7756294266c5e420da1ea532ffba1b
-EBUILD darktable-2.0.3-r1.ebuild 4140 SHA256 
79b1e5d6b171fd9f0bacfe87a6fc4a6c6f3343a6f18834f371357456bb86f024 SHA512 
c93e80f6e0c9fca3d7d5adeebbcee65c0ba67b9057c4b7fc44acd186c86c98f523246fbc9bea089a555915daae16b18729fae389abf0a1a103e796f1d921aaea
 WHIRLPOOL 
37217504d2ba230c1cbf761d9a5344b8dccb8f490bd1b7a498419bfee377dad008ea29c266041782ec4cab7cc4c3887e6b370871ce2488c2b01af1bff1916cf6
-EBUILD darktable-2.0.3.ebuild 4073 SHA256 
3af887c59cad21bbd9001b19376d178d7f62082d6e0a2c6f4d06f6119306d72a SHA512 
a360ad2851dc80add67405f4de86518937bd786272a3086ce4288b940894089a2c94d64a773410d1aefd9dd6a72498205216275b490e53bdbbc11056d12da810
 WHIRLPOOL 
7aff7a79aae66c1acd1c8d0b3b7d138db867b6c478d88f959a1d6b108636f5399ea0e5b0c3d1aab692a553642fe1816736fd833a0f19b198d41b2c7443bf03ec
-EBUILD darktable-2.0.4.ebuild 4073 SHA256 
3af887c59cad21bbd9001b19376d178d7f62082d6e0a2c6f4d06f6119306d72a SHA512 
a360ad2851dc80add67405f4de86518937bd786272a3086ce4288b940894089a2c94d64a773410d1aefd9dd6a72498205216275b490e53bdbbc11056d12da810
 WHIRLPOOL 
7aff7a79aae66c1acd1c8d0b3b7d138db867b6c478d88f959a1d6b108636f5399ea0e5b0c3d1aab692a553642fe1816736fd833a0f19b198d41b2c7443bf03ec
-EBUILD darktable-2.0.5.ebuild 4073 SHA256 
3af887c59cad21bbd9001b19376d178d7f62082d6e0a2c6f4d06f6119306d72a SHA512 
a360ad2851dc80add67405f4de86518937bd786272a3086ce4288b940894089a2c94d64a773410d1aefd9dd6a72498205216275b490e53bdbbc11056d12da810
 WHIRLPOOL 
7aff7a79aae66c1acd1c8d0b3b7d138db867b6c478d88f959a1d6b108636f5399ea0e5b0c3d1aab692a553642fe1816736fd833a0f19b198d41b2c7443bf03ec
-EBUILD darktable-.ebuild 3642 SHA256 
4746429c6a19d4c874997424dd4bcbb92926efccd3ce369cf4e648f47899a4d3 SHA512 
f134a726a29ba724f2358e0839835b1cbdda6ee300f768098793087fbaee38e986ad564f4bf212a61433dd418e5cb2268041c7ae0494ed419765e0b973e4838c
 WHIRLPOOL 
e825bb274600c7c029429471bb9eb5081d03738981d16afed63180be00bc7527b210c668ea5fa98dc5f9adcb586459f6ee1a3da4e1b69663a8e60617d296b5cb
+EBUILD darktable-1.6.9.ebuild 4038 SHA256 
cebae4b6b851ff32e02ec88d408a9feb94bfe97ddde03b3ff6b827775b94dbca SHA512 
d2da7272d62a1f80db560dece91db9b13d7afd31edc6762e64c3b29e783142090f05ed1bf1c00dcc060f9c9957f50295106a351c218c95aa87f7f6809d03473e
 WHIRLPOOL 

[gentoo-commits] repo/gentoo:master commit in: games-action/geki3-KXL/files/, games-action/geki3-KXL/

2016-07-06 Thread Austin English
commit: 11db0f78b0edd2b81f64b53ed12f2d586827d1cf
Author: Austin English  gentoo  org>
AuthorDate: Wed Jul  6 19:33:02 2016 +
Commit: Austin English  gentoo  org>
CommitDate: Wed Jul  6 19:45:40 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11db0f78

games-action/geki3-KXL: remove deprecated games eclass

Also update to EAPI 6

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

Package-Manager: portage-2.2.28

 .../geki3-KXL/files/geki3-KXL-1.0.3-paths.patch| 16 +++
 games-action/geki3-KXL/geki3-KXL-1.0.3-r3.ebuild   | 53 ++
 2 files changed, 61 insertions(+), 8 deletions(-)

diff --git a/games-action/geki3-KXL/files/geki3-KXL-1.0.3-paths.patch 
b/games-action/geki3-KXL/files/geki3-KXL-1.0.3-paths.patch
index 039b185..26f3f43 100644
--- a/games-action/geki3-KXL/files/geki3-KXL-1.0.3-paths.patch
+++ b/games-action/geki3-KXL/files/geki3-KXL-1.0.3-paths.patch
@@ -1,13 +1,13 @@
 bmp/Makefile.am
-+++ bmp/Makefile.am
+--- a/bmp/Makefile.am
 b/bmp/Makefile.am
 @@ -1,4 +1,4 @@
 -bmpdir = $(prefix)/share/geki3/bmp
 +bmpdir = $(BMP_PATH)
  bmp_DATA =   back1.bmp boss2.bmp enemyshot1.bmp missile.bmp\
 pata.bmp back2.bmp boss3.bmp enemyshot2.bmp mogu.bmp\
   pata_ball.bmp back3.bmp boss4.bmp frame.bmp mogu_ball.bmp\
 configure.in
-+++ configure.in
+--- a/configure.in
 b/configure.in
 @@ -25,9 +25,9 @@
  BMP_PATH=/usr/local/share/geki3/bmp
  WAV_PATH=/usr/local/share/geki3/wav
@@ -21,8 +21,8 @@
  fi
  AC_DEFINE_UNQUOTED(DATA_PATH,"$DATA_PATH")
  AC_DEFINE_UNQUOTED(BMP_PATH,"$BMP_PATH")
 data/Makefile.am
-+++ data/Makefile.am
+--- a/data/Makefile.am
 b/data/Makefile.am
 @@ -1,6 +1,4 @@
 -datadir = $(prefix)/share/geki3/data
 +datadir = $(DATA_PATH)
@@ -31,8 +31,8 @@
  
 -install:
 -  $(INSTALL) -c -m 666 ./.score $(DESTDIR)$(DATA_PATH)
 wav/Makefile.am
-+++ wav/Makefile.am
+--- a/wav/Makefile.am
 b/wav/Makefile.am
 @@ -1,4 +1,4 @@
 -wavdir = $(prefix)/share/geki3/wav
 +wavdir = $(WAV_PATH)

diff --git a/games-action/geki3-KXL/geki3-KXL-1.0.3-r3.ebuild 
b/games-action/geki3-KXL/geki3-KXL-1.0.3-r3.ebuild
new file mode 100644
index 000..3d796f0
--- /dev/null
+++ b/games-action/geki3-KXL/geki3-KXL-1.0.3-r3.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+inherit autotools eutils user
+
+DESCRIPTION="2D length scroll shooting game"
+HOMEPAGE="http://triring.net/ps2linux/games/kxl/kxlgames.html;
+SRC_URI="mirror://gentoo/${P}.tar.gz
+   mirror://gentoo/${PN}.png"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="dev-games/KXL"
+RDEPEND="${DEPEND}
+   media-fonts/font-adobe-100dpi"
+
+PATCHES=(
+   "${FILESDIR}"/${P}-paths.patch
+)
+
+pkg_setup(){
+   enewgroup gamestat 36
+}
+
+src_prepare() {
+   default
+   rm -f missing
+   sed -i \
+   -e '1i #include ' \
+   -e "s:DATA_PATH \"/.score\":\"/var/games/${PN}\":" \
+   src/ranking.c || die
+   sed -i -e '/CFLAGS/s/$/ @CFLAGS@/' src/Makefile.am || die #bug 426890
+   mv configure.{in,ac}
+   eautoreconf
+}
+
+src_install() {
+   default
+
+   insinto /var/games/${PN}
+   newins data/.score ${PN}
+   fowners root:gamestat /var/games/${PN} /usr/bin/geki3
+   fperms 660 /var/games/${PN}
+   fperms 2755 /usr/bin/geki3
+
+   doicon "${DISTDIR}"/${PN}.png
+   make_desktop_entry geki3 Geki3
+}



[gentoo-commits] repo/gentoo:master commit in: games-action/geki2-KXL/, games-action/geki2-KXL/files/

2016-07-06 Thread Austin English
commit: d9c72abe1fe26d9834172dcd1a04aa64be11f8c6
Author: Austin English  gentoo  org>
AuthorDate: Wed Jul  6 19:24:09 2016 +
Commit: Austin English  gentoo  org>
CommitDate: Wed Jul  6 19:45:40 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9c72abe

games-action/geki2-KXL: remove deprecated games eclass

Also update to EAPI 6

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

Package-Manager: portage-2.2.28

 .../geki2-KXL/files/geki2-KXL-2.0.3-cflags.patch   |  4 +-
 .../geki2-KXL/files/geki2-KXL-2.0.3-paths.patch| 16 +++
 games-action/geki2-KXL/geki2-KXL-2.0.3-r3.ebuild   | 52 ++
 3 files changed, 62 insertions(+), 10 deletions(-)

diff --git a/games-action/geki2-KXL/files/geki2-KXL-2.0.3-cflags.patch 
b/games-action/geki2-KXL/files/geki2-KXL-2.0.3-cflags.patch
index 9812e6d..d00f8d4 100644
--- a/games-action/geki2-KXL/files/geki2-KXL-2.0.3-cflags.patch
+++ b/games-action/geki2-KXL/files/geki2-KXL-2.0.3-cflags.patch
@@ -1,5 +1,5 @@
 src/Makefile.am.old2012-11-10 21:50:02.159117541 +0100
-+++ src/Makefile.am2012-11-10 21:50:20.658715770 +0100
+--- a/src/Makefile.am  2012-11-10 21:50:02.159117541 +0100
 b/src/Makefile.am  2012-11-10 21:50:20.658715770 +0100
 @@ -4,5 +4,5 @@
boss.h extern.h ranking.h your.h game.h\
geki2.h load.h opening.h my.h misc.h

diff --git a/games-action/geki2-KXL/files/geki2-KXL-2.0.3-paths.patch 
b/games-action/geki2-KXL/files/geki2-KXL-2.0.3-paths.patch
index 1e4d7db..2284420 100644
--- a/games-action/geki2-KXL/files/geki2-KXL-2.0.3-paths.patch
+++ b/games-action/geki2-KXL/files/geki2-KXL-2.0.3-paths.patch
@@ -1,13 +1,13 @@
 bmp/Makefile.am
-+++ bmp/Makefile.am
+--- a/bmp/Makefile.am
 b/bmp/Makefile.am
 @@ -1,4 +1,4 @@
 -bmpdir = $(prefix)/share/geki2/bmp
 +bmpdir = $(BMP_PATH)
  bmp_DATA =   back1.bmp boss2.bmp enemyshot4.bmp kuru.bmp myshot.bmp back2.bmp\
 boss3.bmp enemyshot5.bmp mboss.bmp uraura.bmp back3.bmp\
 boss3laser.bmp flash.bmp uturn.bmp back4.bmp back6.bmp boss6.bmp\
 configure.in
-+++ configure.in
+--- a/configure.in
 b/configure.in
 @@ -25,9 +25,9 @@
  BMP_PATH=/usr/local/share/geki2/bmp
  WAV_PATH=/usr/local/share/geki2/wav
@@ -21,8 +21,8 @@
  fi
  AC_DEFINE_UNQUOTED(DATA_PATH,"$DATA_PATH")
  AC_DEFINE_UNQUOTED(BMP_PATH,"$BMP_PATH")
 data/Makefile.am
-+++ data/Makefile.am
+--- a/data/Makefile.am
 b/data/Makefile.am
 @@ -1,9 +1,7 @@
 -datadir = $(prefix)/share/geki2/data
 +datadir = $(DATA_PATH)
@@ -34,8 +34,8 @@
 -install:
 -  $(INSTALL) -c -m 666 ./.score $(DESTDIR)$(DATA_PATH)
  
 wav/Makefile.am
-+++ wav/Makefile.am
+--- a/wav/Makefile.am
 b/wav/Makefile.am
 @@ -1,4 +1,4 @@
 -wavdir = $(prefix)/share/geki2/wav
 +wavdir = $(WAV_PATH)

diff --git a/games-action/geki2-KXL/geki2-KXL-2.0.3-r3.ebuild 
b/games-action/geki2-KXL/geki2-KXL-2.0.3-r3.ebuild
new file mode 100644
index 000..613ab63
--- /dev/null
+++ b/games-action/geki2-KXL/geki2-KXL-2.0.3-r3.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+inherit autotools eutils user
+
+DESCRIPTION="2D length scroll shooting game"
+HOMEPAGE="http://triring.net/ps2linux/games/kxl/kxlgames.html;
+SRC_URI="mirror://gentoo/${P}.tar.gz
+   mirror://gentoo/${PN}.png"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="dev-games/KXL"
+RDEPEND="${DEPEND}
+   media-fonts/font-adobe-100dpi"
+
+PATCHES=(
+   "${FILESDIR}"/${P}-cflags.patch
+   "${FILESDIR}"/${P}-paths.patch
+)
+
+pkg_setup(){
+   enewgroup gamestat 36
+}
+
+src_prepare() {
+   default
+   rm -f missing
+   sed -i \
+   -e '1i #include ' \
+   -e "s:DATA_PATH \"/.score\":\"/var/games/${PN}\":" \
+   src/ranking.c || die
+   eautoreconf
+}
+
+src_install() {
+   default
+
+   insinto /var/games/
+   newins data/.score ${PN}
+   fowners root:gamestat /var/games/${PN} /usr/bin/geki2
+   fperms 660 /var/games/${PN}
+   fperms 2755 /usr/bin/geki2
+
+   doicon "${DISTDIR}"/${PN}.png
+   make_desktop_entry geki2 Geki2
+}



[gentoo-commits] repo/gentoo:master commit in: kde-misc/adjustableclock/

2016-07-06 Thread Michael Palimaka
commit: 12bdcc6dca4c5f0e96e02df99b39550ac2071e88
Author: Michael Palimaka  gentoo  org>
AuthorDate: Wed Jul  6 19:30:29 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Wed Jul  6 19:33:12 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12bdcc6d

kde-misc/adjustableclock: fix linguas -> l10n fallout

Package-Manager: portage-2.3.0

 kde-misc/adjustableclock/adjustableclock-4.1.4.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kde-misc/adjustableclock/adjustableclock-4.1.4.ebuild 
b/kde-misc/adjustableclock/adjustableclock-4.1.4.ebuild
index aa8cdc9..e490ed3 100644
--- a/kde-misc/adjustableclock/adjustableclock-4.1.4.ebuild
+++ b/kde-misc/adjustableclock/adjustableclock-4.1.4.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$
 
@@ -29,7 +29,7 @@ src_prepare() {
 
local lang
for lang in ${KDE_LINGUAS} ; do
-   if ! use linguas_${lang} ; then
+   if ! use "l10n_$(kde4_lingua_to_l10n "${lang}")" ; then
rm ${KDE_LINGUAS_DIR}/${lang}.mo
fi
done



[gentoo-commits] repo/gentoo:master commit in: kde-misc/miniplayer/

2016-07-06 Thread Michael Palimaka
commit: 9f495c510a3a4d7c67e128be0fa77566010b2a17
Author: Michael Palimaka  gentoo  org>
AuthorDate: Wed Jul  6 19:16:40 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Wed Jul  6 19:33:12 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f495c51

kde-misc/miniplayer: fix linguas -> l10n fallout

Package-Manager: portage-2.3.0

 kde-misc/miniplayer/miniplayer-2.5-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kde-misc/miniplayer/miniplayer-2.5-r1.ebuild 
b/kde-misc/miniplayer/miniplayer-2.5-r1.ebuild
index f3d4f4f..b6c5592 100644
--- a/kde-misc/miniplayer/miniplayer-2.5-r1.ebuild
+++ b/kde-misc/miniplayer/miniplayer-2.5-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$
 
@@ -28,7 +28,7 @@ RDEPEND="
 src_prepare() {
local lang
for lang in ${KDE_LINGUAS} ; do
-   if ! use linguas_${lang} ; then
+   if ! use l10n_${lang} ; then
rm ${KDE_LINGUAS_DIR}/${lang}.mo
fi
done



[gentoo-commits] repo/gentoo:master commit in: kde-misc/fancytasks/

2016-07-06 Thread Michael Palimaka
commit: 7e11b45922a3e6e253756d41fc106b8fcda7c3e2
Author: Michael Palimaka  gentoo  org>
AuthorDate: Wed Jul  6 19:29:24 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Wed Jul  6 19:33:12 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e11b459

kde-misc/fancytasks: fix linguas -> l10n fallout

Package-Manager: portage-2.3.0

 kde-misc/fancytasks/fancytasks-1.1.2-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kde-misc/fancytasks/fancytasks-1.1.2-r1.ebuild 
b/kde-misc/fancytasks/fancytasks-1.1.2-r1.ebuild
index 743b321..e4b6aeb 100644
--- a/kde-misc/fancytasks/fancytasks-1.1.2-r1.ebuild
+++ b/kde-misc/fancytasks/fancytasks-1.1.2-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$
 
@@ -32,7 +32,7 @@ src_prepare() {
 
local lang
for lang in ${KDE_LINGUAS} ; do
-   if ! use linguas_${lang} ; then
+   if ! use "l10n_$(kde4_lingua_to_l10n "${lang}")" ; then
local dir
for dir in ${KDE_LINGUAS_DIR[@]} ; do
if [ -f ${dir}/${lang}.mo ]; then



[gentoo-commits] repo/gentoo:master commit in: kde-misc/quadkonsole/

2016-07-06 Thread Michael Palimaka
commit: 75540c37ede5c4aeec217df8ac7808768def43f3
Author: Michael Palimaka  gentoo  org>
AuthorDate: Wed Jul  6 19:27:37 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Wed Jul  6 19:33:12 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75540c37

kde-misc/quadkonsole: fix linguas -> l10n fallout

Gentoo-bug: 588180

Package-Manager: portage-2.3.0

 kde-misc/quadkonsole/quadkonsole-0.4.4-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kde-misc/quadkonsole/quadkonsole-0.4.4-r1.ebuild 
b/kde-misc/quadkonsole/quadkonsole-0.4.4-r1.ebuild
index 85711aa..7a6401e 100644
--- a/kde-misc/quadkonsole/quadkonsole-0.4.4-r1.ebuild
+++ b/kde-misc/quadkonsole/quadkonsole-0.4.4-r1.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$
 
@@ -33,7 +33,7 @@ S=${WORKDIR}/${MY_P}
 src_prepare() {
local lang
for lang in ${KDE_LINGUAS} ; do
-   if ! use linguas_${lang} ; then
+   if ! use "l10n_$(kde4_lingua_to_l10n "${lang}")" ; then
rm ${KDE_LINGUAS_DIR}/${PN}4_${lang}.po
fi
done



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

2016-07-06 Thread Markus Meier
commit: c44b2f41397a75fac2b150c3a99fe89b0b490e24
Author: Markus Meier  gentoo  org>
AuthorDate: Wed Jul  6 19:21:57 2016 +
Commit: Markus Meier  gentoo  org>
CommitDate: Wed Jul  6 19:21:57 2016 +
URL:https://gitweb.gentoo.org/dev/maekke.git/commit/?id=c44b2f41

media-gfx/darktable: sync with main tree

Package-Manager: portage-2.3.0
Manifest-Sign-Key: 0x363AF1F7765A9D02

 media-gfx/darktable/Manifest   |  36 +++--
 media-gfx/darktable/darktable-2.0.1-r1.ebuild  | 148 -
 media-gfx/darktable/darktable-2.0.2-r1.ebuild  | 148 -
 media-gfx/darktable/darktable-2.0.2.ebuild | 147 
 ...rktable-2.0.1.ebuild => darktable-2.0.4.ebuild} |   0
 5 files changed, 16 insertions(+), 463 deletions(-)

diff --git a/media-gfx/darktable/Manifest b/media-gfx/darktable/Manifest
index 01675b8..16d1d83 100644
--- a/media-gfx/darktable/Manifest
+++ b/media-gfx/darktable/Manifest
@@ -2,35 +2,31 @@
 Hash: SHA256
 
 DIST darktable-1.6.9.tar.xz 3124940 SHA256 
0f721e9d298a9407f6c0325d9c95b9dc37fa60f3b6a2f2e3b5675ff97c423173 SHA512 
c0e8e83cf1cb10b663e5486f2bdde3cba2db5dbaabacd260999be1173c67618023e785e9087a517959835459f8d54c245d190f63a9422a17f3472f5aa316d492
 WHIRLPOOL 
0a2446ff7f98cf0297c5948009414dbf828f1cc60a9fb117f1e110f454dd68df611310bd9ff287f1f2345a8ee9818c1918b4ac7791aeb094c01e71a1ecdfce9d
-DIST darktable-2.0.1.tar.xz 2927028 SHA256 
4d0e76eb42b95418ab59c17bff8aac660f5348b082aabfb3113607c67e87830b SHA512 
457122dcc3b1ddf8d604cf57f46213511d4f64a241d742cdfb2985fb6c9a4e2f27eee1f77819d14e2e8dcea574db21119c1264779d92ce98066f441daae99adb
 WHIRLPOOL 
7870d724379eb556979224d392a505de592143f27b4f70ae7d7a757e5b96f8e1cdc9dae11cfac2e0e29a865cc339e5c97c0b4b6f45be6e49e5ab73eaa6ac4547
-DIST darktable-2.0.2.tar.xz 2963072 SHA256 
75ea6354eb08aab8f25315a2de14c68dc6aad6ee5992061beea624afc7912400 SHA512 
428973615703206d6097ab3f9028269903ecbf8447f11ad79c2e83303e63b992bb0fb4c11a21e830c56355203dff5342c9dc8ff556839962145da8d5e76f512d
 WHIRLPOOL 
efc14be6600b72f54f431c149f605a7cf0baf26af8ea8a033e52e5db83ec465c9470ced600984ab6351d013556168bd318828e2484c6d1d0c7c1044dbe64b267
 DIST darktable-2.0.3.tar.xz 2974456 SHA256 
a03e5c1d786799e63c8b4a9f32e9e6f27b3a7d7ab07753a516e630490345 SHA512 
e48c40df0d56dabe09a41e3b595cd621ecec1f118158f253f2c200e09edfa199ca4e8853153fe9fe4c2ea8df3c75bd97bd5c2dfa165ccf0d7601d8443df90112
 WHIRLPOOL 
ce10feb4de4793760624a0d033a42c4fabaf155938eb344cf09c14c278fdc5d7b94816f893065c937e908489f4f092cbd78c9b0ee7f466dd79eeca406d230f77
+DIST darktable-2.0.4.tar.xz 3013676 SHA256 
80e448622ff060bca1d64bf6151c27de34dea8fe6b7ddb708e1e3526a5961e62 SHA512 
ed43c4a61ec4768a5879b2fddc21245fa988bf49a4bf1ecae51a9fb9cf17d6672e9804ed754fee9eb67834e1d9d210ffaf3aaf1cddc1b7c2ac77bcf215b5dc74
 WHIRLPOOL 
5e7ab15ee9479f380903cae101b1722402f221acf23b720b8fe5428c561bb8d77bbb3b98af710d100077c8b4121416f8f6318331046d18c6ee1f8d1599707b57
 DIST darktable-usermanual-1.6.0.pdf 12827069 SHA256 
f5c46dbf0a2dd2d391f92555abdefe735c6362e51a755b296d71779492b7e945 SHA512 
39ee8c1b4f23883025750416d9d1f73d1dfbec0e6ac3eeef0f15778ced66a373c00b0a46cb3a54b1cfd6e04313313f63e8e3cd3d0cbea011acaa07a725d0ab02
 WHIRLPOOL 
49a234e57c14d23ccb85eadf2ad03c52eae7f90b0371dce025c04019a7a5cca41858084f735fe0965f93958ab83601571ab3e33acd27c2bcbd381bb0c9da4794
 EBUILD darktable-1.6.9.ebuild 4044 SHA256 
64e225979eae85cfa5a1022aad47e063416c5ac70be9355a40158b68c29014ac SHA512 
21f6d7274ee3bebc6f8ef753cb1958b4f7666c207d1b8febfbd15f4f4c14d713969516d778be5904265c7a7e3860170397f9f36e3069943f101e2043aa348cf0
 WHIRLPOOL 
4e0a6ac38e0fcae7134f876a1e4650a2cc27658140772d43fcacc604674a9eace7d3b7d691f64e3ba96010c6798bea869c7756294266c5e420da1ea532ffba1b
-EBUILD darktable-2.0.1-r1.ebuild 4140 SHA256 
79b1e5d6b171fd9f0bacfe87a6fc4a6c6f3343a6f18834f371357456bb86f024 SHA512 
c93e80f6e0c9fca3d7d5adeebbcee65c0ba67b9057c4b7fc44acd186c86c98f523246fbc9bea089a555915daae16b18729fae389abf0a1a103e796f1d921aaea
 WHIRLPOOL 
37217504d2ba230c1cbf761d9a5344b8dccb8f490bd1b7a498419bfee377dad008ea29c266041782ec4cab7cc4c3887e6b370871ce2488c2b01af1bff1916cf6
-EBUILD darktable-2.0.1.ebuild 4073 SHA256 
3af887c59cad21bbd9001b19376d178d7f62082d6e0a2c6f4d06f6119306d72a SHA512 
a360ad2851dc80add67405f4de86518937bd786272a3086ce4288b940894089a2c94d64a773410d1aefd9dd6a72498205216275b490e53bdbbc11056d12da810
 WHIRLPOOL 
7aff7a79aae66c1acd1c8d0b3b7d138db867b6c478d88f959a1d6b108636f5399ea0e5b0c3d1aab692a553642fe1816736fd833a0f19b198d41b2c7443bf03ec
-EBUILD darktable-2.0.2-r1.ebuild 4140 SHA256 
79b1e5d6b171fd9f0bacfe87a6fc4a6c6f3343a6f18834f371357456bb86f024 SHA512 
c93e80f6e0c9fca3d7d5adeebbcee65c0ba67b9057c4b7fc44acd186c86c98f523246fbc9bea089a555915daae16b18729fae389abf0a1a103e796f1d921aaea
 WHIRLPOOL 
37217504d2ba230c1cbf761d9a5344b8dccb8f490bd1b7a498419bfee377dad008ea29c266041782ec4cab7cc4c3887e6b370871ce2488c2b01af1bff1916cf6
-EBUILD darktable-2.0.2.ebuild 4073 SHA256 

[gentoo-commits] repo/gentoo:master commit in: net-analyzer/tcpflow/

2016-07-06 Thread Patrick Lauer
commit: 1740c1c51d92c043e10d52d96971cf31acc41015
Author: Patrick Lauer  gentoo  org>
AuthorDate: Wed Jul  6 19:08:03 2016 +
Commit: Patrick Lauer  gentoo  org>
CommitDate: Wed Jul  6 19:08:03 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1740c1c5

net-analyzer/tcpflow: Remove unneeded useflag description from metadata.xml

Package-Manager: portage-2.3.0

 net-analyzer/tcpflow/metadata.xml | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/net-analyzer/tcpflow/metadata.xml 
b/net-analyzer/tcpflow/metadata.xml
index 2e46374..d0b7834 100644
--- a/net-analyzer/tcpflow/metadata.xml
+++ b/net-analyzer/tcpflow/metadata.xml
@@ -5,9 +5,6 @@
net...@gentoo.org
Gentoo network monitoring and analysis project

-   
-   Use net-libs/libpcap for packet 
capturing
-   

simsong/tcpflow




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

2016-07-06 Thread Michael Palimaka
commit: 28cdba97c2b084c3b2de6455f3fdaccf9d395b7c
Author: Michael Palimaka  gentoo  org>
AuthorDate: Wed Jul  6 18:41:30 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Wed Jul  6 18:49:45 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28cdba97

kde5.eclass: add gcc version check debugging information

 eclass/kde5-functions.eclass | 11 ++-
 1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/eclass/kde5-functions.eclass b/eclass/kde5-functions.eclass
index 2c45abc..ad3034a 100644
--- a/eclass/kde5-functions.eclass
+++ b/eclass/kde5-functions.eclass
@@ -84,9 +84,18 @@ _check_gcc_version() {
local min_major=${KDE_GCC_MINIMAL%.*}
local min_minor=${KDE_GCC_MINIMAL#*.}
 
+   debug-print "GCC version check activated"
+   debug-print "Version detected:"
+   debug-print "   - Full: ${version}"
+   debug-print "   - Major: ${major}"
+   debug-print "   - Minor: ${minor}"
+   debug-print "Version required:"
+   debug-print "   - Major: ${min_major}"
+   debug-print "   - Minor: ${min_minor}"
+
[[ ${major} -lt ${min_major} ]] || \
( [[ ${major} -eq ${min_major} && ${minor} -lt 
${min_minor} ]] ) \
-   && die "Sorry, but gcc-${KDE_GCC_MINIMAL} or later is 
required for this package."
+   && die "Sorry, but gcc-${KDE_GCC_MINIMAL} or later is 
required for this package (found ${version})."
fi
 }
 



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

2016-07-06 Thread Michael Palimaka
commit: 2b399d66100724cf7eb03d2a2f98c3d552feea12
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sun Jun 19 13:08:13 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Wed Jul  6 18:49:45 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b399d66

kde5.eclass: only export pkg_pretend if KDE_GCC_MINIMAL is defined

Exporting pkg_pretend is expensive, even if the exported function is a noop.

As kde5_pkg_pretend is currently only used to check if the active GCC version
is recent enough, only export that phase if it will have something to do.

The number of situations in which KDE_GCC_MINIMAL is exported will be
substantially reduced in a future commit. This will result in a large time
saving at the beginning of the emerge process as we will no longer see hundreds
of lines of:

>>> Running pre-merge checks for kde-foo/bar-123
>>> Running pre-merge checks for kde-foo/baz-123

 eclass/kde5.eclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/eclass/kde5.eclass b/eclass/kde5.eclass
index 4da810b..5c4bbba 100644
--- a/eclass/kde5.eclass
+++ b/eclass/kde5.eclass
@@ -27,7 +27,7 @@ if [[ ${KDE_BUILD_TYPE} = live ]]; then
esac
 fi
 
-if [[ ${CATEGORY} != kde-frameworks ]]; then
+if [[ -v KDE_GCC_MINIMAL ]]; then
EXPORT_FUNCTIONS pkg_pretend
 fi
 



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

2016-07-06 Thread Michael Palimaka
commit: 81fc1c44d2518da2bdb48bff5d465c35a8282b8e
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sun Jun 19 13:18:18 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Wed Jul  6 18:49:45 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81fc1c44

kde5-functions.eclass: only perform the GCC version check if KDE_GCC_MINIMAL is 
defined

 eclass/kde5-functions.eclass | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/eclass/kde5-functions.eclass b/eclass/kde5-functions.eclass
index df5d053..2c45abc 100644
--- a/eclass/kde5-functions.eclass
+++ b/eclass/kde5-functions.eclass
@@ -76,7 +76,8 @@ export KDE_BUILD_TYPE
 # @DESCRIPTION:
 # Determine if the current GCC version is acceptable, otherwise die.
 _check_gcc_version() {
-   if [[ ${MERGE_TYPE} != binary ]]; then
+   if [[ ${MERGE_TYPE} != binary && -v KDE_GCC_MINIMAL ]]; then
+
local version=$(gcc-version)
local major=${version%.*}
local minor=${version#*.}



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

2016-07-06 Thread Michael Palimaka
commit: ab1baddbb30c2e6f8c3120404676355a2cd470d6
Author: Michael Palimaka  gentoo  org>
AuthorDate: Thu Jun 16 19:31:03 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Wed Jul  6 18:49:45 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab1baddb

kde5-functions: die if too many arguments are passed to add_*_dep

This avoids bugs where too many arguments are passed by mistake, causing the
last one to be ignored.

For example, the subslot operator added in 
d1bc5ac3f0e42df0f0255c8b39d7df16c5d4176b
was never applied because too many '' were passed.

 eclass/kde5-functions.eclass | 16 
 1 file changed, 16 insertions(+)

diff --git a/eclass/kde5-functions.eclass b/eclass/kde5-functions.eclass
index b20d406..a8cc1a3 100644
--- a/eclass/kde5-functions.eclass
+++ b/eclass/kde5-functions.eclass
@@ -141,6 +141,10 @@ _add_category_dep() {
 add_frameworks_dep() {
debug-print-function ${FUNCNAME} "$@"
 
+   if [[ $# -gt 4 ]]; then
+   die "${FUNCNAME} was called with too many arguments"
+   fi
+
local version
 
if [[ -n ${3} ]]; then
@@ -169,6 +173,10 @@ add_frameworks_dep() {
 add_plasma_dep() {
debug-print-function ${FUNCNAME} "$@"
 
+   if [[ $# -gt 4 ]]; then
+   die "${FUNCNAME} was called with too many arguments"
+   fi
+
local version
 
if [[ -n ${3} ]]; then
@@ -197,6 +205,10 @@ add_plasma_dep() {
 add_kdeapps_dep() {
debug-print-function ${FUNCNAME} "$@"
 
+   if [[ $# -gt 4 ]]; then
+   die "${FUNCNAME} was called with too many arguments"
+   fi
+
local version
 
if [[ -n ${3} ]]; then
@@ -230,6 +242,10 @@ add_kdeapps_dep() {
 add_qt_dep() {
debug-print-function ${FUNCNAME} "$@"
 
+   if [[ $# -gt 4 ]]; then
+   die "${FUNCNAME} was called with too many arguments"
+   fi
+
local version
 
if [[ -n ${3} ]]; then



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

2016-07-06 Thread Michael Palimaka
commit: 02fb080473fee3fa528ac85245934ce8f23b63ae
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sun Jun 19 13:16:21 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Wed Jul  6 18:49:45 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02fb0804

kde5-functions.eclass: no longer export KDE_GCC_MINIMAL by default

KDE_GCC_MINIMAL will now only be exported in packages that require it, as it
triggers an expensive pkg_pretend check whenever it is defined.

 eclass/kde5-functions.eclass | 7 +--
 1 file changed, 1 insertion(+), 6 deletions(-)

diff --git a/eclass/kde5-functions.eclass b/eclass/kde5-functions.eclass
index a8cc1a3..df5d053 100644
--- a/eclass/kde5-functions.eclass
+++ b/eclass/kde5-functions.eclass
@@ -39,14 +39,9 @@ esac
 : ${KDE_APPS_MINIMAL:=14.12.0}
 
 # @ECLASS-VARIABLE: KDE_GCC_MINIMAL
+# @DEFAULT_UNSET
 # @DESCRIPTION:
 # Minimal GCC version to require for the package.
-if [[ ${CATEGORY} = kde-frameworks ]]; then
-   : ${KDE_GCC_MINIMAL:=4.5}
-else
-   : ${KDE_GCC_MINIMAL:=4.8}
-fi
-
 
 # @ECLASS-VARIABLE: KDEBASE
 # @DESCRIPTION:



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

2016-07-06 Thread Michael Palimaka
commit: a460d7a3e5ce6cc9eb2a5e744779dda17614ccb5
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Sun Jun 26 09:00:48 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Wed Jul  6 18:49:45 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a460d7a3

kde5.eclass: Simplify blocked kde4-l10n logic

1) 15.08.x has left the tree
2) Prepare for a future kde4-l10n without USE=minimal
   Version block makes sure of no ancient kde4-l10n anyway

 eclass/kde5.eclass | 10 ++
 1 file changed, 2 insertions(+), 8 deletions(-)

diff --git a/eclass/kde5.eclass b/eclass/kde5.eclass
index 5c4bbba..72657f4 100644
--- a/eclass/kde5.eclass
+++ b/eclass/kde5.eclass
@@ -157,15 +157,9 @@ case ${KDE_AUTODEPS} in
fi
 
if [[ ${CATEGORY} = kde-frameworks || ${CATEGORY} = kde-plasma 
&& ${PN} != polkit-kde-agent ]]; then
-   local blocked_version=15.08.0-r1
-
-   if [[ ${CATEGORY} = kde-plasma && 
$(get_version_component_range 2) -ge 6 ]]; then
-   blocked_version=15.12.3-r1
-   fi
-
RDEPEND+="
-   !kde-apps/kde4-l10n[-minimal(-)]
-   !

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

2016-07-06 Thread Michael Palimaka
commit: b73a85f4200c8959ca4918f464fe2fb09c70a627
Author: Michael Palimaka  gentoo  org>
AuthorDate: Wed Jul  6 18:41:30 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Wed Jul  6 18:41:45 2016 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=b73a85f4

kde5.eclass: add gcc version check debugging information

 eclass/kde5-functions.eclass | 11 ++-
 1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/eclass/kde5-functions.eclass b/eclass/kde5-functions.eclass
index 2c45abc..ad3034a 100644
--- a/eclass/kde5-functions.eclass
+++ b/eclass/kde5-functions.eclass
@@ -84,9 +84,18 @@ _check_gcc_version() {
local min_major=${KDE_GCC_MINIMAL%.*}
local min_minor=${KDE_GCC_MINIMAL#*.}
 
+   debug-print "GCC version check activated"
+   debug-print "Version detected:"
+   debug-print "   - Full: ${version}"
+   debug-print "   - Major: ${major}"
+   debug-print "   - Minor: ${minor}"
+   debug-print "Version required:"
+   debug-print "   - Major: ${min_major}"
+   debug-print "   - Minor: ${min_minor}"
+
[[ ${major} -lt ${min_major} ]] || \
( [[ ${major} -eq ${min_major} && ${minor} -lt 
${min_minor} ]] ) \
-   && die "Sorry, but gcc-${KDE_GCC_MINIMAL} or later is 
required for this package."
+   && die "Sorry, but gcc-${KDE_GCC_MINIMAL} or later is 
required for this package (found ${version})."
fi
 }
 



[gentoo-commits] repo/gentoo:master commit in: games-action/chickens/

2016-07-06 Thread Austin English
commit: 2ee2a108fa08b1ee1722fbd328f38c13f23fee2b
Author: Austin English  gentoo  org>
AuthorDate: Wed Jul  6 17:54:48 2016 +
Commit: Austin English  gentoo  org>
CommitDate: Wed Jul  6 17:55:05 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ee2a108

games-action/chickens: remove deprecated games eclass

Also update to EAPI 6

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

Package-Manager: portage-2.2.28

 games-action/chickens/chickens-0.2.4-r1.ebuild | 60 ++
 1 file changed, 60 insertions(+)

diff --git a/games-action/chickens/chickens-0.2.4-r1.ebuild 
b/games-action/chickens/chickens-0.2.4-r1.ebuild
new file mode 100644
index 000..bf90160
--- /dev/null
+++ b/games-action/chickens/chickens-0.2.4-r1.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+inherit eutils user
+
+MY_P="ChickensForLinux-Linux-${PV}"
+DESCRIPTION="Target chickens with rockets and shotguns. Funny"
+HOMEPAGE="http://www.chickensforlinux.com/;
+SRC_URI="http://www.chickensforlinux.com/${MY_P}.tar.gz;
+
+LICENSE="all-rights-reserved"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE=""
+RESTRICT="mirror bindist"
+
+DEPEND="

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

2016-07-06 Thread William Hubbs
commit: abc6ecffa4b029a7f795b80af08603764c8280cb
Author: William Hubbs  gentoo  org>
AuthorDate: Wed Jul  6 17:38:53 2016 +
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Jul  6 17:38:53 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=abc6ecff

sys-apps/openrc:  0.21.2 version bump

Package-Manager: portage-2.2.28

 sys-apps/openrc/Manifest |   1 +
 sys-apps/openrc/openrc-0.21.2.ebuild | 352 +++
 2 files changed, 353 insertions(+)

diff --git a/sys-apps/openrc/Manifest b/sys-apps/openrc/Manifest
index c4c6425..441f0d0 100644
--- a/sys-apps/openrc/Manifest
+++ b/sys-apps/openrc/Manifest
@@ -4,4 +4,5 @@ DIST openrc-0.19.1.tar.bz2 159598 SHA256 
5628c04b12e2f51f25e59c303bdccbf545ba0db
 DIST openrc-0.20.4.tar.bz2 163060 SHA256 
0474a08e9e280a3c2450bed014b1f6b485e1a583391575f0d35c3551709e3784 SHA512 
6d4ccee5f3c3e64eeeaa05b591d7420e3cdaa82eb42606a8a721030b9323e1e56928da78d302e5cbd20c652f6ecf5db23a695de436216f2c55c0be4cfc98387a
 WHIRLPOOL 
b2bf5c1b66595a4b2b3a66a39f15896d6ab0aa4b0c42518146238016ba01adb12b3aaf6ce21570756693e283fe14a979f305afd253db68ba47246135529b1ab9
 DIST openrc-0.20.5.tar.bz2 163033 SHA256 
2af530aff271ffb8ef9428ca5847cde952ab985e2542b57f8d059373f8a77c4b SHA512 
0784ac741aee96d0a4eeddc028b92dd5c79dd7fb66c8102e660fd059789559babd52a0618b7ea9216ea0a113708b356b0e1f9cdd32246cc744b2c7d6004f5a81
 WHIRLPOOL 
9798675508060d07804eee04a2e10d0ce5a84340aff842e4bbb88a530e41385785100e2a6e107e5e6767471e85438a504f8531032807cd733232a40266425360
 DIST openrc-0.21.1.tar.bz2 167530 SHA256 
0445a2a187572e6dd10860420a5f3e8f04e96103393d7265b5d44b39c11ff836 SHA512 
fba77d304a08f2a8de44f430578c24728f8600a64e50326678e8caca150ee5d684f25589ced50b8306d581d8ab941650c738ba0fb4e17bf10b17027618b7877c
 WHIRLPOOL 
d0001b68d5574038a7ab3f1ed5ab1a6f29bf1c3ac1e4d63eac1395c45737f4d18b5ea67699d2732eb1946e94fb0d4e6c7941366f9645c05076cf185cf87de746
+DIST openrc-0.21.2.tar.bz2 167581 SHA256 
ebadaa0c2dd9c4ec6d62b1c7f6bfd6385e355a9e1c2fbde152474a2ddd02c608 SHA512 
8d8c0b89444b89c6acdbbf652c017a1d6fc0550180b2ae234e38ed99a697dca1ac2b13a497c35afc023a766f81a00a0d109e95d06cac9f89315d89041133c487
 WHIRLPOOL 
02052dd35590d0dca2a4bce53ea1453ed6fe38e7136512fdc22ae1514e4e91fe7837873eb7b926704adde67ac997b27bafcf3b74d4d8cb54afd5a2243a4fc7db
 DIST openrc-0.21.tar.bz2 167636 SHA256 
ef92da7ff1447bc3a11aff799bf9aaaf226ce13c277318211f96d95bcbd064ac SHA512 
14200663740406729462f9c412e63ab1f850ace46db7bb709b74a03c4fbf2159b7b6d7827f9c917cd9338564202538e2e115a4d677885eed055bda530ab4216b
 WHIRLPOOL 
66ce916b25f6c81f2c87962bb6452f48ffab28eaee0c3f702830d62d9504c96d975c65aee2f2e3a03192a77cdc7cc75ca2e89af204ab4e4ac4d183f3c6f18a30

diff --git a/sys-apps/openrc/openrc-0.21.2.ebuild 
b/sys-apps/openrc/openrc-0.21.2.ebuild
new file mode 100644
index 000..60d554a
--- /dev/null
+++ b/sys-apps/openrc/openrc-0.21.2.ebuild
@@ -0,0 +1,352 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit flag-o-matic pam toolchain-funcs
+
+DESCRIPTION="OpenRC manages the services, startup and shutdown of a host"
+HOMEPAGE="https://github.com/openrc/openrc/;
+
+if [[ ${PV} == "" ]]; then
+   EGIT_REPO_URI="git://github.com/OpenRC/${PN}.git"
+   inherit git-r3
+else
+   SRC_URI="https://dev.gentoo.org/~williamh/dist/${P}.tar.bz2;
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+fi
+
+LICENSE="BSD-2"
+SLOT="0"
+IUSE="audit debug ncurses pam newnet prefix +netifrc selinux static-libs
+   tools unicode kernel_linux kernel_FreeBSD"
+
+COMMON_DEPEND="kernel_FreeBSD? ( || ( >=sys-freebsd/freebsd-ubin-9.0_rc 
sys-process/fuser-bsd ) )
+   ncurses? ( sys-libs/ncurses:0= )
+   pam? (
+   sys-auth/pambase
+   virtual/pam
+   )
+   tools? ( dev-lang/perl )
+   audit? ( sys-process/audit )
+   kernel_linux? (
+   sys-process/psmisc
+   !test
+# a value of "#" will just comment out the option
+set_config() {
+   local file="${ED}/$1" var=$2 val com
+   eval "${@:5}" && val=$3 || val=$4
+   [[ ${val} == "#" ]] && com="#" && val='\2'
+   sed -i -r -e "/^#?${var}=/{s:=([\"'])?([^ 
]*)\1?:=\1${val}\1:;s:^#?:${com}:}" "${file}"
+}
+
+set_config_yes_no() {
+   set_config "$1" "$2" YES NO "${@:3}"
+}
+
+src_install() {
+   emake ${MAKE_ARGS} DESTDIR="${D}" install
+
+   # move the shared libs back to /usr so ldscript can install
+   # more of a minimal set of files
+   # disabled for now due to #270646
+   #mv "${ED}"/$(get_libdir)/lib{einfo,rc}* "${ED}"/usr/$(get_libdir)/ || 
die
+   #gen_usr_ldscript -a einfo rc
+   gen_usr_ldscript libeinfo.so
+   gen_usr_ldscript librc.so
+
+   if ! use kernel_linux; then
+   keepdir /$(get_libdir)/rc/init.d
+   fi
+   keepdir 

[gentoo-commits] proj/openrc: New tag: 0.21.2

2016-07-06 Thread William Hubbs
commit: 
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Jul  6 17:37:24 2016 +

New tag: 0.21.2




[gentoo-commits] proj/openrc:0.21.x commit in: /

2016-07-06 Thread William Hubbs
commit: 8b9ea8b9e6631d5cd987a7cb31560aa5a13c060b
Author: William Hubbs  gmail  com>
AuthorDate: Wed Jul  6 17:20:32 2016 +
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Jul  6 17:20:32 2016 +
URL:https://gitweb.gentoo.org/proj/openrc.git/commit/?id=8b9ea8b9

version 0.21.2

 Makefile.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile.inc b/Makefile.inc
index 6ba5e42..01b8d31 100644
--- a/Makefile.inc
+++ b/Makefile.inc
@@ -1,3 +1,3 @@
 NAME=  openrc
-VERSION=   0.21.1
+VERSION=   0.21.2
 PKG=   ${NAME}-${VERSION}



[gentoo-commits] proj/openrc:0.21.x commit in: init.d/

2016-07-06 Thread William Hubbs
commit: 6074cbd651da7f27fc6fbc20a66f651c2577857b
Author: William Hubbs  gmail  com>
AuthorDate: Wed Jul  6 15:40:31 2016 +
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Jul  6 17:22:49 2016 +
URL:https://gitweb.gentoo.org/proj/openrc.git/commit/?id=6074cbd6

hwclock: always use --noadjfile if available

When we use the --utc or --localtime switch, also use --noadjfile if it
is available. This means hwclock will not use a drift file.

X-Gentoo-Bug: 584722
X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=584722

 init.d/hwclock.in | 27 +++
 1 file changed, 15 insertions(+), 12 deletions(-)

diff --git a/init.d/hwclock.in b/init.d/hwclock.in
index d3e19f1..7fee7b7 100644
--- a/init.d/hwclock.in
+++ b/init.d/hwclock.in
@@ -69,6 +69,16 @@ _hwclock()
return 1
 }
 
+get_noadjfile()
+{
+   if ! yesno $clock_adjfile; then
+   # Some implementations don't handle adjustments
+   if LC_ALL=C hwclock --help 2>&1 | grep -q "\-\-noadjfile"; then
+   echo --noadjfile
+   fi
+   fi
+}
+
 start()
 {
local retval=0 errstr=""
@@ -91,16 +101,16 @@ start()
fi
 
# Always set the kernel's time zone.
-   _hwclock --systz $utc_cmd $clock_args
+   _hwclock --systz $utc_cmd $(get_noadjfile) $clock_args
: $(( retval += $? ))
 
if [ -e /etc/adjtime ] && yesno $clock_adjfile; then
-   _hwclock --adjust $utc_cmd
+   _hwclock --adjust $utc_cmd $(get_noadjfile)
: $(( retval += $? ))
fi
 
if yesno ${clock_hctosys:-YES}; then
-   _hwclock --hctosys $utc_cmd $clock_args
+   _hwclock --hctosys $utc_cmd $(get_noadjfile) $clock_args
: $(( retval += $? ))
fi
 
@@ -122,14 +132,7 @@ stop()
 
ebegin "Setting hardware clock using the system clock" "[$utc]"
 
-   if ! yesno $clock_adjfile; then
-   # Some implementations don't handle adjustments
-   if LC_ALL=C hwclock --help 2>&1 | grep -q "\-\-noadjfile"; then
-   utc_cmd="$utc_cmd --noadjfile"
-   fi
-   fi
-
-   _hwclock --systohc $utc_cmd $clock_args
+   _hwclock --systohc $utc_cmd $(get_noadjfile) $clock_args
retval=$?
 
eend $retval "Failed to sync clocks"
@@ -144,5 +147,5 @@ save()
 show()
 {
setupopts
-   hwclock --show "$utc_cmd" $clock_args
+   hwclock --show "$utc_cmd" $(get_noadjfile) $clock_args
 }



[gentoo-commits] proj/openrc:0.21.x commit in: /

2016-07-06 Thread William Hubbs
commit: 53f6bd369057fd0f48c6ecfa813d35bfe47196cd
Author: William Hubbs  gmail  com>
AuthorDate: Wed Jul  6 17:24:06 2016 +
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Jul  6 17:24:06 2016 +
URL:https://gitweb.gentoo.org/proj/openrc.git/commit/?id=53f6bd36

update changelog

 ChangeLog | 24 
 1 file changed, 24 insertions(+)

diff --git a/ChangeLog b/ChangeLog
index d5313b6..88a9bc2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,27 @@
+commit 6074cbd651da7f27fc6fbc20a66f651c2577857b
+Author: William Hubbs 
+Commit: William Hubbs 
+
+hwclock: always use --noadjfile if available
+
+When we use the --utc or --localtime switch, also use --noadjfile if it
+is available. This means hwclock will not use a drift file.
+
+X-Gentoo-Bug: 584722
+X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=584722
+
+commit 8b9ea8b9e6631d5cd987a7cb31560aa5a13c060b
+Author: William Hubbs 
+Commit: William Hubbs 
+
+version 0.21.2
+
+commit c47b497483040107263c9b9984474db5c569485b
+Author: William Hubbs 
+Commit: William Hubbs 
+
+update changelog
+
 commit 977811563dd93cab7a64caefa0e86f5b864fc04f
 Author: Benda Xu 
 Commit: William Hubbs 



[gentoo-commits] proj/openrc:master commit in: init.d/

2016-07-06 Thread William Hubbs
commit: ac8ad169ae59fece38066c2e08ff57d53d737edd
Author: William Hubbs  gmail  com>
AuthorDate: Wed Jul  6 15:40:31 2016 +
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Jul  6 15:40:31 2016 +
URL:https://gitweb.gentoo.org/proj/openrc.git/commit/?id=ac8ad169

hwclock: always use --noadjfile if available

When we use the --utc or --localtime switch, also use --noadjfile if it
is available. This means hwclock will not use a drift file.

X-Gentoo-Bug: 584722
X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=584722

 init.d/hwclock.in | 27 +++
 1 file changed, 15 insertions(+), 12 deletions(-)

diff --git a/init.d/hwclock.in b/init.d/hwclock.in
index d3e19f1..7fee7b7 100644
--- a/init.d/hwclock.in
+++ b/init.d/hwclock.in
@@ -69,6 +69,16 @@ _hwclock()
return 1
 }
 
+get_noadjfile()
+{
+   if ! yesno $clock_adjfile; then
+   # Some implementations don't handle adjustments
+   if LC_ALL=C hwclock --help 2>&1 | grep -q "\-\-noadjfile"; then
+   echo --noadjfile
+   fi
+   fi
+}
+
 start()
 {
local retval=0 errstr=""
@@ -91,16 +101,16 @@ start()
fi
 
# Always set the kernel's time zone.
-   _hwclock --systz $utc_cmd $clock_args
+   _hwclock --systz $utc_cmd $(get_noadjfile) $clock_args
: $(( retval += $? ))
 
if [ -e /etc/adjtime ] && yesno $clock_adjfile; then
-   _hwclock --adjust $utc_cmd
+   _hwclock --adjust $utc_cmd $(get_noadjfile)
: $(( retval += $? ))
fi
 
if yesno ${clock_hctosys:-YES}; then
-   _hwclock --hctosys $utc_cmd $clock_args
+   _hwclock --hctosys $utc_cmd $(get_noadjfile) $clock_args
: $(( retval += $? ))
fi
 
@@ -122,14 +132,7 @@ stop()
 
ebegin "Setting hardware clock using the system clock" "[$utc]"
 
-   if ! yesno $clock_adjfile; then
-   # Some implementations don't handle adjustments
-   if LC_ALL=C hwclock --help 2>&1 | grep -q "\-\-noadjfile"; then
-   utc_cmd="$utc_cmd --noadjfile"
-   fi
-   fi
-
-   _hwclock --systohc $utc_cmd $clock_args
+   _hwclock --systohc $utc_cmd $(get_noadjfile) $clock_args
retval=$?
 
eend $retval "Failed to sync clocks"
@@ -144,5 +147,5 @@ save()
 show()
 {
setupopts
-   hwclock --show "$utc_cmd" $clock_args
+   hwclock --show "$utc_cmd" $(get_noadjfile) $clock_args
 }



[gentoo-commits] repo/gentoo:master commit in: app-arch/lrzip/

2016-07-06 Thread Amy Winston
commit: a842f31a3ca3749c884417efb284dc8dc84589ff
Author: Amy Winston  gentoo  org>
AuthorDate: Wed Jul  6 16:50:48 2016 +
Commit: Amy Winston  gentoo  org>
CommitDate: Wed Jul  6 16:50:48 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a842f31a

app-arch/lrzip: add proxy-maintainer bug #586132

Package-Manager: portage-2.2.28

 app-arch/lrzip/metadata.xml | 22 +++---
 1 file changed, 15 insertions(+), 7 deletions(-)

diff --git a/app-arch/lrzip/metadata.xml b/app-arch/lrzip/metadata.xml
index f2cca87..4150cc7 100644
--- a/app-arch/lrzip/metadata.xml
+++ b/app-arch/lrzip/metadata.xml
@@ -1,11 +1,19 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-  
-This is a compression program optimised for large files. The larger the
-file and the more memory you have, the better the compression advantage
-this will provide, especially once the files are larger than 100MB.
-The advantage can be chosen to be either size (much smaller than bzip2)
-or speed (much faster than bzip2).
-  
+   
+   yanes...@gmail.com
+   Yanestra
+   
+   
+   proxy-ma...@gentoo.org
+   Proxy Maintainers
+   
+   
+   This is a compression program optimised for large files. The larger the
+   file and the more memory you have, the better the compression advantage
+   this will provide, especially once the files are larger than 100MB.
+   The advantage can be chosen to be either size (much smaller than bzip2)
+   or speed (much faster than bzip2).
+   
 



[gentoo-commits] repo/gentoo:master commit in: app-arch/lrzip/, app-arch/lrzip/files/

2016-07-06 Thread Amy Winston
commit: 8759c82ee21fb03b5044eac80c99d400ed706356
Author: Amy Winston  gentoo  org>
AuthorDate: Wed Jul  6 16:40:24 2016 +
Commit: Amy Winston  gentoo  org>
CommitDate: Wed Jul  6 16:40:24 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8759c82e

app-arch/lrzip: version bump 0.630 bug #585780

- Add static-libs useflag bug #490060
- Convert patch to p1
- Change homepage

Package-Manager: portage-2.2.28

 app-arch/lrzip/Manifest   |  1 +
 app-arch/lrzip/files/lrzip-missing-stdarg_h.patch |  4 +--
 app-arch/lrzip/lrzip-0.630.ebuild | 36 +++
 3 files changed, 39 insertions(+), 2 deletions(-)

diff --git a/app-arch/lrzip/Manifest b/app-arch/lrzip/Manifest
index c9b8619..ae2e266 100644
--- a/app-arch/lrzip/Manifest
+++ b/app-arch/lrzip/Manifest
@@ -1,2 +1,3 @@
 DIST lrzip-0.614.tar.bz2 491995 SHA256 
65024d69d1773f3ccf84508a481d7de128c03d1cf9750b5803aead4a24522763 SHA512 
6c82d7b4cc6081fb4f102a34f3a5ecf834b3fa3d222ac9dd4f3f0615c83610c08315eae9cc98291bd5e3eb71453cf391cdad4db980012e4368d16d80f34d2bd8
 WHIRLPOOL 
1669d9e551786f81c3849b2bfb81342221c9d00104b58d42a0470ae9b869ef88ead6c5956eea92ac6800ee9b259fbfb15d1b22aa45fe92db7040cf68
 DIST lrzip-0.621.tar.bz2 503286 SHA256 
31c26fbee8b9b0bd413ca214862dbc0d9e6d3477f23e9839774936bf140ceb6b SHA512 
be94f54c3d84c93e3c1ab7b08ca6d2a02bc343983785be4884f42521520d2babc31db3abbec4b77dc9f710d18648adcc3d24b203289d8d4728afb3ef0fb90c0a
 WHIRLPOOL 
41bd08db70f30ff183f3e82e784a40b08070a3a728eafad50b64c7ce453ed2c379721be64d0ac0ee04e1c66b6ad528d0210977624a8c17f90775f70b83921ae7
+DIST lrzip-0.630.tar.bz2 521517 SHA256 
2461f6bfa3231a98a76548741cbc64a2389e94eb5c3de152df8a118e23edd307 SHA512 
fa46a2e9cb2574086d24296b7376865ac9f998724041c00e69f28d4984a6b8f7441de7d7fab2820e6cd6d6da4ead8ba66d0eb18f0381e8438db09301fb009460
 WHIRLPOOL 
41cfbc661d38fcb183107dedd4a03fcd740ec40adb040e79021cda97172e20ce76a83ecd1e53da0a498ccc5d3a093942f85a33ae39d87297adbbe80cf3786e3f

diff --git a/app-arch/lrzip/files/lrzip-missing-stdarg_h.patch 
b/app-arch/lrzip/files/lrzip-missing-stdarg_h.patch
index dcc698b..8f427d4 100644
--- a/app-arch/lrzip/files/lrzip-missing-stdarg_h.patch
+++ b/app-arch/lrzip/files/lrzip-missing-stdarg_h.patch
@@ -1,6 +1,6 @@
 diff -Naur Lrzip.h.orig Lrzip.h
 Lrzip.h.orig   2013-11-30 20:07:27.343086997 +
-+++ Lrzip.h2013-11-30 20:07:44.072641056 +
+--- a/Lrzip.h  2013-11-30 20:07:27.343086997 +
 b/Lrzip.h  2013-11-30 20:07:44.072641056 +
 @@ -22,6 +22,7 @@
  
  #include 

diff --git a/app-arch/lrzip/lrzip-0.630.ebuild 
b/app-arch/lrzip/lrzip-0.630.ebuild
new file mode 100644
index 000..84f6232
--- /dev/null
+++ b/app-arch/lrzip/lrzip-0.630.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit eutils
+
+DESCRIPTION="Long Range ZIP or Lzma RZIP optimized for compressing large files"
+HOMEPAGE="https://github.com/ckolivas/lrzip;
+SRC_URI="http://ck.kolivas.org/apps/${PN}/${P}.tar.bz2;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd"
+IUSE="static-libs"
+
+RDEPEND="dev-libs/lzo
+app-arch/bzip2
+sys-libs/zlib"
+DEPEND="${RDEPEND}
+   x86? ( dev-lang/nasm )
+   virtual/perl-Pod-Parser"
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-missing-stdarg_h.patch
+   )
+
+src_configure() {
+   econf $(use_enable static-libs static)
+}
+
+src_install() {
+   default
+   prune_libtool_files
+}



[gentoo-commits] repo/gentoo:master commit in: sys-libs/kpmcore/

2016-07-06 Thread Johannes Huber
commit: 94f3e0f5632b4198a3ccff900adaa2ec77ad0cd6
Author: Johannes Huber  gentoo  org>
AuthorDate: Wed Jul  6 16:30:12 2016 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Wed Jul  6 16:30:12 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94f3e0f5

sys-libs/kpmcore: Remove 2.2.0

Package-Manager: portage-2.3.0

 sys-libs/kpmcore/Manifest |  1 -
 sys-libs/kpmcore/kpmcore-2.2.0.ebuild | 36 ---
 2 files changed, 37 deletions(-)

diff --git a/sys-libs/kpmcore/Manifest b/sys-libs/kpmcore/Manifest
index 7cc956b..a6cd95d 100644
--- a/sys-libs/kpmcore/Manifest
+++ b/sys-libs/kpmcore/Manifest
@@ -1,3 +1,2 @@
 DIST kpmcore-2.1.0.tar.xz 481000 SHA256 
d94418380321ca9aaadbb47b90500341c16163f82ec519563d77bd4904f5dcad SHA512 
0fcec48432f8552922404203dd827f2cf35c026e453362a9263d1220ae7e34ac31157a8df38f6f0ddf94b4164978bc7b6a695c56e45726ae6f6a275b342534af
 WHIRLPOOL 
00b7856f039be24645fa10ece94a18a224f823cfb3d9bb81914fb54940b4979a63555c92b8da2c17d2adb62b11c0f3ec0e204833014b032293b5dcfa8e653ca7
-DIST kpmcore-2.2.0.tar.xz 475656 SHA256 
6fbf955bdc710c60abc02db5f50c0a33cbb3c9a37f2e43056cdb2e923cfdf529 SHA512 
9d1add00b226bf566a49127f09c48afcfc08375f43d1a82763817f84ab949937ed4c9e3ed22b7b7f4ae012f391c8ec889b3fa90e66c305b5eab7f99a9e05112c
 WHIRLPOOL 
8c22494e90fd2505b44d7acf8ef6c000a65411acf11181a4d908422eb0b5a180e4703ae771806fedac79a30e7fbe6d0971add9af2c2caab12f20bb69a1c80786
 DIST kpmcore-2.2.1.tar.xz 351160 SHA256 
573c662fce7077180bafa62461e0bfd6e7ca5f8fce3cfc7561668da291ae SHA512 
5c8a9f9a939927d451c8b408ced250bf847af344d13791152fc08e08b80ac0535ecdb661d733a10478fcb7cd9c61164614f359704052d964bedde0949c95cdf7
 WHIRLPOOL 
69db6258f8564ecbf426084653411db20d429df5780021d871190a9dd00fc0bbf9f48e7ea0ec69f35336511a5606aab7439dfa0068d9269f1ceca947f95f91a2

diff --git a/sys-libs/kpmcore/kpmcore-2.2.0.ebuild 
b/sys-libs/kpmcore/kpmcore-2.2.0.ebuild
deleted file mode 100644
index 01cdaf4..000
--- a/sys-libs/kpmcore/kpmcore-2.2.0.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-
-inherit kde5
-
-DESCRIPTION="Library for managing partitions"
-HOMEPAGE="https://www.kde.org/applications/system/kdepartitionmanager;
-SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.xz"
-
-LICENSE="GPL-3"
-SLOT="5/3"
-KEYWORDS="~amd64 ~arm ~x86"
-IUSE=""
-
-CDEPEND="
-   $(add_frameworks_dep kcoreaddons)
-   $(add_frameworks_dep ki18n)
-   $(add_frameworks_dep kiconthemes)
-   $(add_frameworks_dep kio)
-   $(add_frameworks_dep kservice)
-   $(add_frameworks_dep kwidgetsaddons)
-   $(add_qt_dep qtgui)
-   $(add_qt_dep qtwidgets)
-   dev-libs/libatasmart
-   sys-apps/util-linux
-   >=sys-block/parted-3
-"
-DEPEND="${CDEPEND}
-   virtual/pkgconfig
-"
-RDEPEND="${CDEPEND}
-   !

[gentoo-commits] repo/gentoo:master commit in: sys-libs/kpmcore/

2016-07-06 Thread Johannes Huber
commit: 87889253b8330cf535e910031ae964a5214e329b
Author: Johannes Huber  gentoo  org>
AuthorDate: Wed Jul  6 16:28:01 2016 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Wed Jul  6 16:28:01 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=87889253

sys-libs/kpmcore: Version bump 2.2.1

Package-Manager: portage-2.3.0

 sys-libs/kpmcore/Manifest |  1 +
 sys-libs/kpmcore/kpmcore-2.2.1.ebuild | 36 +++
 2 files changed, 37 insertions(+)

diff --git a/sys-libs/kpmcore/Manifest b/sys-libs/kpmcore/Manifest
index daf96be..7cc956b 100644
--- a/sys-libs/kpmcore/Manifest
+++ b/sys-libs/kpmcore/Manifest
@@ -1,2 +1,3 @@
 DIST kpmcore-2.1.0.tar.xz 481000 SHA256 
d94418380321ca9aaadbb47b90500341c16163f82ec519563d77bd4904f5dcad SHA512 
0fcec48432f8552922404203dd827f2cf35c026e453362a9263d1220ae7e34ac31157a8df38f6f0ddf94b4164978bc7b6a695c56e45726ae6f6a275b342534af
 WHIRLPOOL 
00b7856f039be24645fa10ece94a18a224f823cfb3d9bb81914fb54940b4979a63555c92b8da2c17d2adb62b11c0f3ec0e204833014b032293b5dcfa8e653ca7
 DIST kpmcore-2.2.0.tar.xz 475656 SHA256 
6fbf955bdc710c60abc02db5f50c0a33cbb3c9a37f2e43056cdb2e923cfdf529 SHA512 
9d1add00b226bf566a49127f09c48afcfc08375f43d1a82763817f84ab949937ed4c9e3ed22b7b7f4ae012f391c8ec889b3fa90e66c305b5eab7f99a9e05112c
 WHIRLPOOL 
8c22494e90fd2505b44d7acf8ef6c000a65411acf11181a4d908422eb0b5a180e4703ae771806fedac79a30e7fbe6d0971add9af2c2caab12f20bb69a1c80786
+DIST kpmcore-2.2.1.tar.xz 351160 SHA256 
573c662fce7077180bafa62461e0bfd6e7ca5f8fce3cfc7561668da291ae SHA512 
5c8a9f9a939927d451c8b408ced250bf847af344d13791152fc08e08b80ac0535ecdb661d733a10478fcb7cd9c61164614f359704052d964bedde0949c95cdf7
 WHIRLPOOL 
69db6258f8564ecbf426084653411db20d429df5780021d871190a9dd00fc0bbf9f48e7ea0ec69f35336511a5606aab7439dfa0068d9269f1ceca947f95f91a2

diff --git a/sys-libs/kpmcore/kpmcore-2.2.1.ebuild 
b/sys-libs/kpmcore/kpmcore-2.2.1.ebuild
new file mode 100644
index 000..01cdaf4
--- /dev/null
+++ b/sys-libs/kpmcore/kpmcore-2.2.1.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit kde5
+
+DESCRIPTION="Library for managing partitions"
+HOMEPAGE="https://www.kde.org/applications/system/kdepartitionmanager;
+SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.xz"
+
+LICENSE="GPL-3"
+SLOT="5/3"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE=""
+
+CDEPEND="
+   $(add_frameworks_dep kcoreaddons)
+   $(add_frameworks_dep ki18n)
+   $(add_frameworks_dep kiconthemes)
+   $(add_frameworks_dep kio)
+   $(add_frameworks_dep kservice)
+   $(add_frameworks_dep kwidgetsaddons)
+   $(add_qt_dep qtgui)
+   $(add_qt_dep qtwidgets)
+   dev-libs/libatasmart
+   sys-apps/util-linux
+   >=sys-block/parted-3
+"
+DEPEND="${CDEPEND}
+   virtual/pkgconfig
+"
+RDEPEND="${CDEPEND}
+   !

[gentoo-commits] repo/gentoo:master commit in: sys-block/partitionmanager/

2016-07-06 Thread Johannes Huber
commit: 597afe29547bf7c50f9cfbc144f7cddef15ea6f7
Author: Johannes Huber  gentoo  org>
AuthorDate: Wed Jul  6 16:34:34 2016 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Wed Jul  6 16:34:34 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=597afe29

sys-block/partitionmanager: Version bump 2.2.1

Package-Manager: portage-2.3.0

 sys-block/partitionmanager/Manifest|  1 +
 .../partitionmanager/partitionmanager-2.2.1.ebuild | 38 ++
 2 files changed, 39 insertions(+)

diff --git a/sys-block/partitionmanager/Manifest 
b/sys-block/partitionmanager/Manifest
index 7f19e3c..2b1ef07 100644
--- a/sys-block/partitionmanager/Manifest
+++ b/sys-block/partitionmanager/Manifest
@@ -1,2 +1,3 @@
 DIST partitionmanager-2.1.0.tar.xz 1638600 SHA256 
65459a78a47b02c35f62e344e964494f7ffa84581036b193e7653e0835d3aec0 SHA512 
5cbc267be8c1c2e674cc2da57c9fabb362989c0e95d138243fa477859046aa5807cee2c1c45763c713e025fcfb724f3f8a0b363bfc50d54a1899d33af38c750d
 WHIRLPOOL 
57faf232491caf8862cebfe027d9a3ff98bea62ace6085cb0c7f8251600e374d51161b83ee6a8db48212e7c0551b653ba84c6a1cde3af39af36772d38e8fae57
 DIST partitionmanager-2.2.0.tar.xz 1651684 SHA256 
0d108fafbe826997a45bfae8abdb77ad43e5db8205736d6a401a83230e080ae9 SHA512 
fe8904d54d41ef205ed662060a6b17bcf821aa658a0564d1445a929a567a0ba85f94fdf9c054fcf8cbf72e8d8f0dab1a495a1f788b45314bb6b61bb452e5
 WHIRLPOOL 
829a8b569de18f2d34ed181fdb7545e5c2cb261ed2ddd4a094b71ed44eb761ad2a6fbd60a1eabbee0838ea46a3cbe70c044bd127cc42e7f39af09a246942be33
+DIST partitionmanager-2.2.1.tar.xz 1497772 SHA256 
bcbd531e3a3616a436595141729634aa390a9f8d56f7bd4c3ab0e74a4927ac67 SHA512 
3dcc9d5f3b315f4c2377a2a9b1e56b85abe5dc534d83613a167969c4a5cde9ece646f3f2d0a522bb425505accbd944a8c8eda9c7926cea5b718c3c59f8246816
 WHIRLPOOL 
619930a25c67639dbd1f6dd62b412a5769ec29d30e8afbc7939853aa720ae3999e182ab5cc050c7927daa26df041a57ab0b92a822e6179dd54a3e337a4239f56

diff --git a/sys-block/partitionmanager/partitionmanager-2.2.1.ebuild 
b/sys-block/partitionmanager/partitionmanager-2.2.1.ebuild
new file mode 100644
index 000..0b71b14
--- /dev/null
+++ b/sys-block/partitionmanager/partitionmanager-2.2.1.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+KDE_HANDBOOK="forceoptional"
+inherit kde5
+
+DESCRIPTION="KDE utility for management of partitions and file systems"
+HOMEPAGE="https://www.kde.org/applications/system/kdepartitionmanager;
+SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.xz"
+
+LICENSE="GPL-3"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE=""
+
+DEPEND="
+   $(add_frameworks_dep kconfig)
+   $(add_frameworks_dep kconfigwidgets)
+   $(add_frameworks_dep kcoreaddons)
+   $(add_frameworks_dep kcrash)
+   $(add_frameworks_dep ki18n)
+   $(add_frameworks_dep kiconthemes)
+   $(add_frameworks_dep kio)
+   $(add_frameworks_dep kjobwidgets)
+   $(add_frameworks_dep kservice)
+   $(add_frameworks_dep kwidgetsaddons)
+   $(add_frameworks_dep kxmlgui)
+   $(add_qt_dep qtgui)
+   $(add_qt_dep qtwidgets)
+   sys-apps/util-linux
+   >=sys-libs/kpmcore-2.2.0:5=
+"
+RDEPEND="${DEPEND}
+   $(add_plasma_dep kde-cli-tools kdesu 5.5.2)
+   !sys-block/partitionmanager:0
+"



[gentoo-commits] repo/gentoo:master commit in: sys-block/partitionmanager/

2016-07-06 Thread Johannes Huber
commit: 958a940f3cd4ac30bbfeb642905fb46fcbdc5eeb
Author: Johannes Huber  gentoo  org>
AuthorDate: Wed Jul  6 16:36:49 2016 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Wed Jul  6 16:36:49 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=958a940f

sys-block/partitionmanager: Remove 2.2.0

Package-Manager: portage-2.3.0

 sys-block/partitionmanager/Manifest|  1 -
 .../partitionmanager/partitionmanager-2.2.0.ebuild | 38 --
 2 files changed, 39 deletions(-)

diff --git a/sys-block/partitionmanager/Manifest 
b/sys-block/partitionmanager/Manifest
index 2b1ef07..f60da0f 100644
--- a/sys-block/partitionmanager/Manifest
+++ b/sys-block/partitionmanager/Manifest
@@ -1,3 +1,2 @@
 DIST partitionmanager-2.1.0.tar.xz 1638600 SHA256 
65459a78a47b02c35f62e344e964494f7ffa84581036b193e7653e0835d3aec0 SHA512 
5cbc267be8c1c2e674cc2da57c9fabb362989c0e95d138243fa477859046aa5807cee2c1c45763c713e025fcfb724f3f8a0b363bfc50d54a1899d33af38c750d
 WHIRLPOOL 
57faf232491caf8862cebfe027d9a3ff98bea62ace6085cb0c7f8251600e374d51161b83ee6a8db48212e7c0551b653ba84c6a1cde3af39af36772d38e8fae57
-DIST partitionmanager-2.2.0.tar.xz 1651684 SHA256 
0d108fafbe826997a45bfae8abdb77ad43e5db8205736d6a401a83230e080ae9 SHA512 
fe8904d54d41ef205ed662060a6b17bcf821aa658a0564d1445a929a567a0ba85f94fdf9c054fcf8cbf72e8d8f0dab1a495a1f788b45314bb6b61bb452e5
 WHIRLPOOL 
829a8b569de18f2d34ed181fdb7545e5c2cb261ed2ddd4a094b71ed44eb761ad2a6fbd60a1eabbee0838ea46a3cbe70c044bd127cc42e7f39af09a246942be33
 DIST partitionmanager-2.2.1.tar.xz 1497772 SHA256 
bcbd531e3a3616a436595141729634aa390a9f8d56f7bd4c3ab0e74a4927ac67 SHA512 
3dcc9d5f3b315f4c2377a2a9b1e56b85abe5dc534d83613a167969c4a5cde9ece646f3f2d0a522bb425505accbd944a8c8eda9c7926cea5b718c3c59f8246816
 WHIRLPOOL 
619930a25c67639dbd1f6dd62b412a5769ec29d30e8afbc7939853aa720ae3999e182ab5cc050c7927daa26df041a57ab0b92a822e6179dd54a3e337a4239f56

diff --git a/sys-block/partitionmanager/partitionmanager-2.2.0.ebuild 
b/sys-block/partitionmanager/partitionmanager-2.2.0.ebuild
deleted file mode 100644
index 0b71b14..000
--- a/sys-block/partitionmanager/partitionmanager-2.2.0.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-
-KDE_HANDBOOK="forceoptional"
-inherit kde5
-
-DESCRIPTION="KDE utility for management of partitions and file systems"
-HOMEPAGE="https://www.kde.org/applications/system/kdepartitionmanager;
-SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.xz"
-
-LICENSE="GPL-3"
-KEYWORDS="~amd64 ~arm ~x86"
-IUSE=""
-
-DEPEND="
-   $(add_frameworks_dep kconfig)
-   $(add_frameworks_dep kconfigwidgets)
-   $(add_frameworks_dep kcoreaddons)
-   $(add_frameworks_dep kcrash)
-   $(add_frameworks_dep ki18n)
-   $(add_frameworks_dep kiconthemes)
-   $(add_frameworks_dep kio)
-   $(add_frameworks_dep kjobwidgets)
-   $(add_frameworks_dep kservice)
-   $(add_frameworks_dep kwidgetsaddons)
-   $(add_frameworks_dep kxmlgui)
-   $(add_qt_dep qtgui)
-   $(add_qt_dep qtwidgets)
-   sys-apps/util-linux
-   >=sys-libs/kpmcore-2.2.0:5=
-"
-RDEPEND="${DEPEND}
-   $(add_plasma_dep kde-cli-tools kdesu 5.5.2)
-   !sys-block/partitionmanager:0
-"



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

2016-07-06 Thread Agostino Sarubbo
commit: 6f694f179e04ceaadd9aeff59313743968e55ae4
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Jul  6 15:30:51 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Jul  6 15:30:51 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f694f17

net-misc/stunnel: x86 stable wrt bug #588150

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

 net-misc/stunnel/stunnel-5.34-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/stunnel/stunnel-5.34-r1.ebuild 
b/net-misc/stunnel/stunnel-5.34-r1.ebuild
index c9780fa..367854e 100644
--- a/net-misc/stunnel/stunnel-5.34-r1.ebuild
+++ b/net-misc/stunnel/stunnel-5.34-r1.ebuild
@@ -18,7 +18,7 @@ 
SRC_URI="ftp://ftp.stunnel.org/stunnel/archive/${PV%%.*}.x/${P}.tar.gz
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 
~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc x86 
~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x86-macos"
 IUSE="ipv6 libressl selinux stunnel3 tcpd"
 
 DEPEND="tcpd? ( sys-apps/tcp-wrappers )



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

2016-07-06 Thread Agostino Sarubbo
commit: 1fac8effd261f00cebc74882b9b098a65fee7ce8
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Jul  6 15:30:26 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Jul  6 15:30:26 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1fac8eff

net-misc/stunnel: amd64 stable wrt bug #588150

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

 net-misc/stunnel/stunnel-5.34-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/stunnel/stunnel-5.34-r1.ebuild 
b/net-misc/stunnel/stunnel-5.34-r1.ebuild
index 53ee300..c9780fa 100644
--- a/net-misc/stunnel/stunnel-5.34-r1.ebuild
+++ b/net-misc/stunnel/stunnel-5.34-r1.ebuild
@@ -18,7 +18,7 @@ 
SRC_URI="ftp://ftp.stunnel.org/stunnel/archive/${PV%%.*}.x/${P}.tar.gz
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 
~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 
~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x86-macos"
 IUSE="ipv6 libressl selinux stunnel3 tcpd"
 
 DEPEND="tcpd? ( sys-apps/tcp-wrappers )



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

2016-07-06 Thread Anthony G. Basile
commit: 30dc56a303794d6ab9e27e2ca753372095992890
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Wed Jul  6 14:39:46 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Wed Jul  6 14:40:05 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30dc56a3

net-misc/stunnel: delete older unstable versions

Package-Manager: portage-2.2.28

 net-misc/stunnel/Manifest|  1 -
 net-misc/stunnel/stunnel-5.32.ebuild | 93 
 net-misc/stunnel/stunnel-5.34.ebuild | 93 
 3 files changed, 187 deletions(-)

diff --git a/net-misc/stunnel/Manifest b/net-misc/stunnel/Manifest
index 4684fa1..7675c26 100644
--- a/net-misc/stunnel/Manifest
+++ b/net-misc/stunnel/Manifest
@@ -1,4 +1,3 @@
 DIST stunnel-5.24.tar.gz 631730 SHA256 
ab2e5a1034d422951ddad21b572eb7fa8efb4c4ce04bc86536c6845f3d02b07e SHA512 
d9a1ef9cdd3ffafc2a3d1b3383bcf3dfc1a52cdd5a0bcfd64f50addf78a0fd0ce0def6b32ed801f8dfcabbecd64284454b1c90a18435b5d603ecba594d840340
 WHIRLPOOL 
b625adbc9299c04308733bb5ee732350084b603128734214ec3079f58c02b58d08bfc53bf604468cd83cc5dc1bf5d968a4d5139cd98d7b2219303fdd3d6eae64
 DIST stunnel-5.30.tar.gz 638771 SHA256 
7d6eb389f6a1954b3bcf6c71d4ae3c5f9dde1990dd0b9e0cb1c7caf138d60570 SHA512 
66bb610241e70881f8b14bfaec712a48361ec43a631db8b38ea0c94547fa184896e2d1fbbce52eb13c65411aa1ca10b3e9e42bde1651b38a5d551504b3b38f3c
 WHIRLPOOL 
6b375be08c52088de065028d4d2e4d99301dbeb3a6771bbfe19f715d1dd9f7ccf893b87b973dbb19bfc5decf7f6e487322d857e04fdccdd535140ebecef358f8
-DIST stunnel-5.32.tar.gz 641907 SHA256 
0ee64774d7a720f3ffd129b08557ee0882704c7f65b859c40e315a175b68a6fd SHA512 
aad3b718a727ae23bc88bda027017a5e4e19d2d08c1d4e95087dae20d4ed994d0ce29e9ae4b4d40456a7d7aaeb10c30a4283c6be2965d7183982204a347781bc
 WHIRLPOOL 
e2ec5471a33e033670ba23323ee86f02a1a368572138dd30075d1cee408a8fc298e98bdfc64143399ffbb0ead2dd62b834cacdca0adab0b7c72eef08dd2f3f38
 DIST stunnel-5.34.tar.gz 644677 SHA256 
78668a84a5a01188dddfcecb37d8c69a4c725dc3b476fbbd294e86741a55 SHA512 
32edd2e3461536a35b150068720492a84d3174f8ede46b3d79e42a1c00e5096ea631dae41072c982c95b46ce3cb9dcf8dd1e48a4c429e94933d30b12c21d1181
 WHIRLPOOL 
fc0d22cdb8a9bf4c5bdbd12c14d09d2fbb31ec3d16e5b9d32436980aaedd321cdffed031ced9b93b04bc1f97111d7379f8473400b44064abf417fb65d846ff18

diff --git a/net-misc/stunnel/stunnel-5.32.ebuild 
b/net-misc/stunnel/stunnel-5.32.ebuild
deleted file mode 100644
index 6fb712f..000
--- a/net-misc/stunnel/stunnel-5.32.ebuild
+++ /dev/null
@@ -1,93 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-inherit ssl-cert eutils multilib systemd user
-
-DESCRIPTION="TLS/SSL - Port Wrapper"
-HOMEPAGE="http://www.stunnel.org/index.html;
-SRC_URI="ftp://ftp.stunnel.org/stunnel/archive/${PV%%.*}.x/${P}.tar.gz
-   http://www.usenix.org.uk/mirrors/stunnel/archive/${PV%%.*}.x/${P}.tar.gz
-   
http://ftp.nluug.nl/pub/networking/stunnel/archive/${PV%%.*}.x/${P}.tar.gz
-   http://www.namesdir.com/mirrors/stunnel/archive/${PV%%.*}.x/${P}.tar.gz
-   http://stunnel.cybermirror.org/archive/${PV%%.*}.x/${P}.tar.gz
-   http://mirrors.zerg.biz/stunnel/archive/${PV%%.*}.x/${P}.tar.gz
-   ftp://mirrors.go-parts.com/stunnel/archive/${PV%%.*}.x/${P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 
~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x86-macos"
-IUSE="ipv6 libressl selinux stunnel3 tcpd"
-
-DEPEND="tcpd? ( sys-apps/tcp-wrappers )
-   !libressl? ( dev-libs/openssl:0 )
-   libressl? ( dev-libs/libressl )"
-RDEPEND="${DEPEND}
-   stunnel3? ( dev-lang/perl )
-   selinux? ( sec-policy/selinux-stunnel )"
-
-RESTRICT="test"
-
-pkg_setup() {
-   enewgroup stunnel
-   enewuser stunnel -1 -1 -1 stunnel
-}
-
-src_prepare() {
-   # Hack away generation of certificate
-   sed -i -e "s/^install-data-local:/do-not-run-this:/" \
-   tools/Makefile.in || die "sed failed"
-
-   # libressl compat
-   epatch "${FILESDIR}"/stunnel-compat-libressl.patch
-
-   echo "CONFIG_PROTECT=\"/etc/stunnel/stunnel.conf\"" > "${T}"/20stunnel
-}
-
-src_configure() {
-   econf \
-   --libdir="${EPREFIX}/usr/$(get_libdir)" \
-   $(use_enable ipv6) \
-   $(use_enable tcpd libwrap) \
-   --with-ssl="${EPREFIX}"/usr \
-   --disable-fips
-}
-
-src_install() {
-   emake DESTDIR="${D}" install
-   rm -rf "${ED}"/usr/share/doc/${PN}
-   rm -f "${ED}"/etc/stunnel/stunnel.conf-sample \
-   "${ED}"/usr/share/man/man8/stunnel.{fr,pl}.8
-   use stunnel3 || rm -f "${ED}"/usr/bin/stunnel3
-
-   # The binary was moved to /usr/bin with 4.21,
-   # symlink for backwards compatibility
-   dosym ../bin/stunnel /usr/sbin/stunnel
-
-   dodoc AUTHORS BUGS CREDITS PORTS README TODO ChangeLog
-   

[gentoo-commits] repo/gentoo:master commit in: www-servers/apache/

2016-07-06 Thread Agostino Sarubbo
commit: d58aad24bb6cb331f1e3e840a16382f777e5e290
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Jul  6 14:15:00 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Jul  6 14:15:00 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d58aad24

www-servers/apache: x86 stable wrt bug #588138

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

 www-servers/apache/apache-2.4.23.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/apache/apache-2.4.23.ebuild 
b/www-servers/apache/apache-2.4.23.ebuild
index 9d0599a..5ce64c7 100644
--- a/www-servers/apache/apache-2.4.23.ebuild
+++ b/www-servers/apache/apache-2.4.23.ebuild
@@ -125,7 +125,7 @@ HOMEPAGE="https://httpd.apache.org/;
 # some helper scripts are Apache-1.1, thus both are here
 LICENSE="Apache-2.0 Apache-1.1"
 SLOT="2"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x64-macos 
~x86-macos ~m68k-mint ~sparc64-solaris ~x64-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x64-macos ~x86-macos 
~m68k-mint ~sparc64-solaris ~x64-solaris"
 
 DEPEND+="apache2_modules_http2? ( >=net-libs/nghttp2-1.2.1 )"
 



[gentoo-commits] repo/gentoo:master commit in: app-admin/apache-tools/

2016-07-06 Thread Agostino Sarubbo
commit: 5142782daf14f13a3fc0e17776b24d1fe5d2a5ed
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Jul  6 14:15:05 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Jul  6 14:15:05 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5142782d

app-admin/apache-tools: x86 stable wrt bug #588138

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

 app-admin/apache-tools/apache-tools-2.4.23.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/apache-tools/apache-tools-2.4.23.ebuild 
b/app-admin/apache-tools/apache-tools-2.4.23.ebuild
index b08c0e2..819c2da 100644
--- a/app-admin/apache-tools/apache-tools-2.4.23.ebuild
+++ b/app-admin/apache-tools/apache-tools-2.4.23.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://apache/httpd/httpd-${PV}.tar.bz2"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc64-solaris 
~x64-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc64-solaris 
~x64-solaris"
 IUSE="libressl ssl"
 RESTRICT="test"
 



[gentoo-commits] repo/gentoo:master commit in: www-servers/apache/

2016-07-06 Thread Agostino Sarubbo
commit: b2b539e49b9fca7540ba0d9fe48525c9d29b8daf
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Jul  6 14:14:28 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Jul  6 14:14:28 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2b539e4

www-servers/apache: amd64 stable wrt bug #588138

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

 www-servers/apache/apache-2.4.23.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/apache/apache-2.4.23.ebuild 
b/www-servers/apache/apache-2.4.23.ebuild
index d2eebc8..9d0599a 100644
--- a/www-servers/apache/apache-2.4.23.ebuild
+++ b/www-servers/apache/apache-2.4.23.ebuild
@@ -125,7 +125,7 @@ HOMEPAGE="https://httpd.apache.org/;
 # some helper scripts are Apache-1.1, thus both are here
 LICENSE="Apache-2.0 Apache-1.1"
 SLOT="2"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x64-macos 
~x86-macos ~m68k-mint ~sparc64-solaris ~x64-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x64-macos 
~x86-macos ~m68k-mint ~sparc64-solaris ~x64-solaris"
 
 DEPEND+="apache2_modules_http2? ( >=net-libs/nghttp2-1.2.1 )"
 



[gentoo-commits] repo/gentoo:master commit in: app-admin/apache-tools/

2016-07-06 Thread Agostino Sarubbo
commit: 31ca24c8111f986c2b4e060a6ae47deebe3771fd
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Jul  6 14:14:33 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Jul  6 14:14:33 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31ca24c8

app-admin/apache-tools: amd64 stable wrt bug #588138

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

 app-admin/apache-tools/apache-tools-2.4.23.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/apache-tools/apache-tools-2.4.23.ebuild 
b/app-admin/apache-tools/apache-tools-2.4.23.ebuild
index 6c4c653..b08c0e2 100644
--- a/app-admin/apache-tools/apache-tools-2.4.23.ebuild
+++ b/app-admin/apache-tools/apache-tools-2.4.23.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://apache/httpd/httpd-${PV}.tar.bz2"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc64-solaris 
~x64-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc64-solaris 
~x64-solaris"
 IUSE="libressl ssl"
 RESTRICT="test"
 



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

2016-07-06 Thread Michael Palimaka
commit: fff97655ad67b25a925c4647dff294d393c4d0de
Author: Michael Palimaka  gentoo  org>
AuthorDate: Wed Jul  6 14:12:03 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Wed Jul  6 14:12:36 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fff97655

net-libs/signon-oauth2: add missing USE dependency

Gentoo-bug: 587778

Package-Manager: portage-2.3.0

 .../{signon-oauth2-0.21.ebuild => signon-oauth2-0.21-r1.ebuild}   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-libs/signon-oauth2/signon-oauth2-0.21.ebuild 
b/net-libs/signon-oauth2/signon-oauth2-0.21-r1.ebuild
similarity index 92%
rename from net-libs/signon-oauth2/signon-oauth2-0.21.ebuild
rename to net-libs/signon-oauth2/signon-oauth2-0.21-r1.ebuild
index 2bbabd6..9b4cf84 100644
--- a/net-libs/signon-oauth2/signon-oauth2-0.21.ebuild
+++ b/net-libs/signon-oauth2/signon-oauth2-0.21-r1.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$
 
@@ -17,7 +17,7 @@ IUSE="test"
 
 RDEPEND="
dev-qt/qtcore:5
-   dev-qt/qtnetwork:5
+   dev-qt/qtnetwork:5[ssl]
net-libs/signond
 "
 DEPEND="${RDEPEND}



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xosview/

2016-07-06 Thread Jeroen Roovers
commit: eebc8abbbf1e5ef9a4ff2b621ad3270ad6709ffe
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Wed Jul  6 14:06:15 2016 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Wed Jul  6 14:06:15 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eebc8abb

x11-misc/xosview: Old.

Package-Manager: portage-2.3.0

 x11-misc/xosview/Manifest|  1 -
 x11-misc/xosview/xosview-1.16.ebuild | 50 
 2 files changed, 51 deletions(-)

diff --git a/x11-misc/xosview/Manifest b/x11-misc/xosview/Manifest
index e4901b3..f3c5521 100644
--- a/x11-misc/xosview/Manifest
+++ b/x11-misc/xosview/Manifest
@@ -1,2 +1 @@
-DIST xosview-1.16.tar.gz 137097 SHA256 
8e9e130d1bbb30b68419d12f0d74609c10eeed4d6c6a85f35d9941ea3c7b23a0 SHA512 
f83cddebd260a5468110418172623d1367a50eeb69cdce63bff8e93a1908a2d6d860978f7d96eac700e238b270984df1802788400080ccd27ad76c964534e1c2
 WHIRLPOOL 
36ab8fa63f3bea4b8d87fbd4559fa1d7a8df47f25a558f80c25065b62e7b7c51121aa91604fed4c095fd7fae853cfe37c911710faef5b7f1d0de6e2db7816879
 DIST xosview-1.17.tar.gz 143263 SHA256 
640998e7bd23b875e2556a97b9149a4cca0ac255889f484489b13a888c19b3f1 SHA512 
c1d34887aa75afd244d9b5399c00642e68e75f8b0aafc06555955200e13bca398080dfcc92421f72b0242dcfac1e41d05bfb031e49f1560196a8f6e33ce79df6
 WHIRLPOOL 
28530451395cfd2b971cfb1f62b21bc3a1cb08f1792f3be87cfb91b7735102cc5bc5b7d5c12f787674ce926a1bc143905db243187cc0ef7beaaa1d0354c05349

diff --git a/x11-misc/xosview/xosview-1.16.ebuild 
b/x11-misc/xosview/xosview-1.16.ebuild
deleted file mode 100644
index 0f29a11..000
--- a/x11-misc/xosview/xosview-1.16.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=4
-
-inherit eutils toolchain-funcs
-
-DESCRIPTION="X11 operating system viewer"
-HOMEPAGE="http://www.pogo.org.uk/~mark/xosview/;
-SRC_URI="http://www.pogo.org.uk/~mark/${PN}/releases/${P}.tar.gz;
-
-LICENSE="GPL-2 BSD"
-SLOT="0"
-KEYWORDS="amd64 ppc ppc64 x86"
-IUSE="suid"
-
-COMMON_DEPS="x11-libs/libX11
-   x11-libs/libXpm
-   x11-libs/libXt"
-RDEPEND="${COMMON_DEPS}
-   media-fonts/font-misc-misc"
-DEPEND="${COMMON_DEPS}
-   x11-proto/xproto"
-
-src_prepare() {
-   sed -i -e 's:lib/X11/app:share/X11/app:g' -i ${PN}.1 || die
-   sed -i -e "s:Git:${PV}:g" ${PN}.cc || die
-   tc-export CXX
-}
-
-src_compile() {
-   emake OPTFLAGS=''
-}
-
-src_install() {
-   dobin ${PN}
-   use suid && fperms 4755 /usr/bin/${PN}
-   insinto /usr/share/X11/app-defaults
-   newins Xdefaults XOsview
-   doman *.1
-   dodoc CHANGES README.linux TODO
-}
-
-pkg_postinst() {
-   if ! use suid ; then
-   ewarn "If you want to use serial meters ${PN} needs to be 
executed as root."
-   ewarn "Please see ${EPREFIX}/usr/share/doc/${PF}/README.linux 
for details."
-   fi
-}



[gentoo-commits] repo/gentoo:master commit in: net-analyzer/tcpflow/

2016-07-06 Thread Jeroen Roovers
commit: 2a2c4728ddb67acb9e53d02511daf9af38b0093c
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Wed Jul  6 14:05:30 2016 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Wed Jul  6 14:05:30 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a2c4728

net-analyzer/tcpflow: Old.

Package-Manager: portage-2.3.0

 net-analyzer/tcpflow/Manifest|  2 --
 net-analyzer/tcpflow/tcpflow-1.4.4_p3.ebuild | 53 
 2 files changed, 55 deletions(-)

diff --git a/net-analyzer/tcpflow/Manifest b/net-analyzer/tcpflow/Manifest
index 2a4ad3c..5ed4cea 100644
--- a/net-analyzer/tcpflow/Manifest
+++ b/net-analyzer/tcpflow/Manifest
@@ -1,4 +1,2 @@
-DIST tcpflow_1.4.4+repack1-3.debian.tar.xz 12244 SHA256 
e006b5c6288bbc46e01a8488f7bf448ddd97ac454fe906764ddc3c03696b1a4b SHA512 
720f080e2ebb481d64c05b7f4629fb25d6a5c069ce7901959de1f5ad38af0b68ae51469d1df070021a21154e8cec960e8b077f6235e1eb6a476bae252627fd3a
 WHIRLPOOL 
632047fad5f439c78c1d8fe6e39f97058073ac5ff707ff5719372a803e1ff01145202bb894f49e6ad9861b255a0ef04be7fefd76f2c4d34afc2d2c99e41d66e0
-DIST tcpflow_1.4.4+repack1.orig.tar.gz 525060 SHA256 
3269742db7acc51ce0ae8bfbe3dfe536654694e276032555f1e825c6f463711f SHA512 
d44d060dc7a373137bacca7d38a782d5059ae8b0aa3d92df221955e4af88413f1bba464132c0a3e04d12005a2f54c6252b59e6608154f7ede0a1d3b8d608c1f1
 WHIRLPOOL 
d5646c6fffec95a68624a20f0ce2f086f03cb28a7df529e68636c28c16bc5ebdd81b5edce769d495209f3eb0fb1167fe3b241912c2497cffd99d4e668406acbd
 DIST tcpflow_1.4.5+repack1-1.debian.tar.xz 11144 SHA256 
b917e994ac1cd64cb63f719700b0a9862359779286cab89c9c29f73e64ec2d5b SHA512 
ed2c491595a3d5382ca79fe945467639af3d99658d002353f90e07aa6b1a955e57ab0fbbc3fadf964e9d6d3dba4fd327a02c1b07d6a239efdf90b365928b2a1e
 WHIRLPOOL 
0854405a429bd2f7276b18acc204e5ac5cfde1bbd4a8f5308e6bf667355eb1ea8a98c52b30a5a24aacb4f8f7b8469e75c2c49fc5f187aa87b869fad9c91d025c
 DIST tcpflow_1.4.5+repack1.orig.tar.gz 725962 SHA256 
1d9b4ce2dd85adc1c608f34ada576b7f5b6d51c686ae6b870c3c277049a24af0 SHA512 
fed8589957e3c790b5b6837b9b578d5dcbde316122ed6b3d4f908d1d73f23c6ed8a11720ee0510e878eaa7a6c559a2f35e7df2c77e3cb1f2810040adf7ac2b85
 WHIRLPOOL 
8743e20cea0fbee37c9ee050e8bbe02871e8a32dba2bbed922b912de457aa4eaf5cd21e8828a08eb3eafbf8d3897541230fc37bc4a15f7126e6b8adfb9fea860

diff --git a/net-analyzer/tcpflow/tcpflow-1.4.4_p3.ebuild 
b/net-analyzer/tcpflow/tcpflow-1.4.4_p3.ebuild
deleted file mode 100644
index 7cb285e..000
--- a/net-analyzer/tcpflow/tcpflow-1.4.4_p3.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-inherit autotools eutils
-
-DESCRIPTION="A tool for monitoring, capturing and storing TCP connections 
flows"
-HOMEPAGE="https://github.com/simsong/tcpflow 
http://packages.qa.debian.org/t/tcpflow.html;
-SRC_URI="
-   mirror://debian/pool/main/t/${PN}/${PN}_${PV/_p*}+repack1.orig.tar.gz
-   
mirror://debian/pool/main/t/${PN}/${PN}_${PV/_p*}+repack1-${PV/*_p}.debian.tar.xz
-"
-
-LICENSE="GPL-3"
-KEYWORDS="amd64 ~arm ppc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
-SLOT="0"
-IUSE="cairo +pcap test"
-
-RDEPEND="
-   app-forensics/afflib
-   dev-libs/boost
-   dev-libs/openssl
-   net-libs/http-parser
-   pcap? ( net-libs/libpcap )
-   sys-libs/zlib
-   cairo? (
-   x11-libs/cairo
-   )
-"
-DEPEND="
-   ${RDEPEND}
-   test? ( sys-apps/coreutils )
-"
-
-S=${WORKDIR}/${PN}
-
-src_prepare() {
-   epatch "${WORKDIR}"/debian/patches/*.patch
-
-   mv -f README{.md,} || die
-
-   sed -i -e 's:`md5 -q \(.*\)`:`md5sum \1 | cut -f1 -d" "`:' tests/*.sh 
|| die
-
-   eautoreconf
-}
-
-src_configure() {
-   econf \
-   $(usex pcap --enable-pcap=true --enable-pcap=false) \
-   $(usex cairo --enable-cairo=true --enable-cairo=false) \
-   --without-o3
-}



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

2016-07-06 Thread Michael Palimaka
commit: 4e850ea94ee139d53ada0b0551ab04c5ccbf75ee
Author: Michael Palimaka  gentoo  org>
AuthorDate: Wed Jul  6 13:52:27 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Wed Jul  6 13:52:40 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e850ea9

net-libs/libsignon-glib: reset XDG env vars

Gentoo-bug: 587888

Package-Manager: portage-2.3.0

 net-libs/libsignon-glib/libsignon-glib-1.13.ebuild | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/net-libs/libsignon-glib/libsignon-glib-1.13.ebuild 
b/net-libs/libsignon-glib/libsignon-glib-1.13.ebuild
index 1b02f5f..e441be2 100644
--- a/net-libs/libsignon-glib/libsignon-glib-1.13.ebuild
+++ b/net-libs/libsignon-glib/libsignon-glib-1.13.ebuild
@@ -5,7 +5,7 @@
 EAPI=5
 
 PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} )
-inherit autotools python-r1 vcs-snapshot
+inherit autotools python-r1 vcs-snapshot xdg-utils
 
 DESCRIPTION="GLib binding for the D-Bus API provided by signond"
 HOMEPAGE="https://01.org/gsso/;
@@ -42,6 +42,8 @@ src_prepare() {
 }
 
 src_configure() {
+   xdg_environment_reset
+
myconfigure() {
local myeconfargs=(
$(use_enable debug)



[gentoo-commits] proj/kde:master commit in: media-libs/liblastfm/

2016-07-06 Thread Michael Palimaka
commit: a7b613e0ece5d81ae990aea118cb9cbd3181eea8
Author: Michael Palimaka  gentoo  org>
AuthorDate: Wed Jul  6 13:44:34 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Wed Jul  6 13:44:54 2016 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=a7b613e0

media-libs/liblastfm: add missing USE dependency

Gentoo-bug: 587974

Package-Manager: portage-2.3.0

 media-libs/liblastfm/liblastfm-.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-libs/liblastfm/liblastfm-.ebuild 
b/media-libs/liblastfm/liblastfm-.ebuild
index 5b24f57..4a8eb6f 100644
--- a/media-libs/liblastfm/liblastfm-.ebuild
+++ b/media-libs/liblastfm/liblastfm-.ebuild
@@ -25,13 +25,13 @@ COMMON_DEPEND="
qt5? ( dev-qt/qtsql:5 )
)
qt4? (
-   dev-qt/qtcore:4
+   dev-qt/qtcore:4[ssl]
dev-qt/qtdbus:4
)
qt5? (
dev-qt/qtcore:5
dev-qt/qtdbus:5
-   dev-qt/qtnetwork:5
+   dev-qt/qtnetwork:5[ssl]
dev-qt/qtxml:5
)
 "



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

2016-07-06 Thread Michael Palimaka
commit: e2a3ca0f179249c3155a487d6e3e7fd53311e5dc
Author: Michael Palimaka  gentoo  org>
AuthorDate: Wed Jul  6 13:43:50 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Wed Jul  6 13:43:54 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2a3ca0f

media-libs/liblastfm: add missing USE dependency

Gentoo-bug: 587974

Package-Manager: portage-2.3.0

 .../liblastfm/{liblastfm-1.0.9.ebuild => liblastfm-1.0.9-r1.ebuild}   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-libs/liblastfm/liblastfm-1.0.9.ebuild 
b/media-libs/liblastfm/liblastfm-1.0.9-r1.ebuild
similarity index 97%
rename from media-libs/liblastfm/liblastfm-1.0.9.ebuild
rename to media-libs/liblastfm/liblastfm-1.0.9-r1.ebuild
index 5a775f5..76c6b4e 100644
--- a/media-libs/liblastfm/liblastfm-1.0.9.ebuild
+++ b/media-libs/liblastfm/liblastfm-1.0.9-r1.ebuild
@@ -19,13 +19,13 @@ REQUIRED_USE="|| ( qt4 qt5 )"
 
 COMMON_DEPEND="
qt4? (
-   dev-qt/qtcore:4
+   dev-qt/qtcore:4[ssl]
dev-qt/qtdbus:4
)
qt5? (
dev-qt/qtcore:5
dev-qt/qtdbus:5
-   dev-qt/qtnetwork:5
+   dev-qt/qtnetwork:5[ssl]
dev-qt/qtxml:5
)
fingerprint? (



[gentoo-commits] repo/gentoo:master commit in: kde-plasma/breeze/

2016-07-06 Thread Michael Palimaka
commit: 79ebcddc4a88380a856354c9aeeec88e4830e166
Author: Michael Palimaka  gentoo  org>
AuthorDate: Wed Jul  6 13:24:08 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Wed Jul  6 13:26:31 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79ebcddc

kde-plasma/breeze: export explicit src_test

The default phase causes BUILD_DIR to be overwritten with an incorrect value,
breaking the multibuild configuration causing one build to not be installed.

Gentoo-bug: 588136

Package-Manager: portage-2.3.0

 kde-plasma/breeze/{breeze-5.6.5.ebuild => breeze-5.6.5-r1.ebuild} | 4 
 kde-plasma/breeze/{breeze-5.7.0.ebuild => breeze-5.7.0-r1.ebuild} | 4 
 2 files changed, 8 insertions(+)

diff --git a/kde-plasma/breeze/breeze-5.6.5.ebuild 
b/kde-plasma/breeze/breeze-5.6.5-r1.ebuild
similarity index 95%
rename from kde-plasma/breeze/breeze-5.6.5.ebuild
rename to kde-plasma/breeze/breeze-5.6.5-r1.ebuild
index 4eaa5af..f357e7f 100644
--- a/kde-plasma/breeze/breeze-5.6.5.ebuild
+++ b/kde-plasma/breeze/breeze-5.6.5-r1.ebuild
@@ -61,6 +61,10 @@ src_compile() {
multibuild_foreach_variant kde5_src_compile
 }
 
+src_test() {
+   multibuild_foreach_variant kde5_src_test
+}
+
 src_install() {
multibuild_foreach_variant kde5_src_install
 }

diff --git a/kde-plasma/breeze/breeze-5.7.0.ebuild 
b/kde-plasma/breeze/breeze-5.7.0-r1.ebuild
similarity index 96%
rename from kde-plasma/breeze/breeze-5.7.0.ebuild
rename to kde-plasma/breeze/breeze-5.7.0-r1.ebuild
index 8e337f4..0dd27ab 100644
--- a/kde-plasma/breeze/breeze-5.7.0.ebuild
+++ b/kde-plasma/breeze/breeze-5.7.0-r1.ebuild
@@ -64,6 +64,10 @@ src_compile() {
multibuild_foreach_variant kde5_src_compile
 }
 
+src_test() {
+   multibuild_foreach_variant kde5_src_test
+}
+
 src_install() {
multibuild_foreach_variant kde5_src_install
 }



[gentoo-commits] repo/gentoo:master commit in: kde-plasma/kwallet-pam/

2016-07-06 Thread Michael Palimaka
commit: 558dfe88df8bb0b1c89e8f592da33235fc9f4980
Author: Michael Palimaka  gentoo  org>
AuthorDate: Wed Jul  6 13:22:31 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Wed Jul  6 13:26:31 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=558dfe88

kde-plasma/kwallet-pam: export explicit src_test

The default phase causes BUILD_DIR to be overwritten with an incorrect value,
breaking the multibuild configuration causing one build to not be installed.

Gentoo-bug: 588136

Package-Manager: portage-2.3.0

 .../{kwallet-pam-5.6.5.ebuild => kwallet-pam-5.6.5-r1.ebuild} | 4 
 .../{kwallet-pam-5.7.0.ebuild => kwallet-pam-5.7.0-r1.ebuild} | 4 
 2 files changed, 8 insertions(+)

diff --git a/kde-plasma/kwallet-pam/kwallet-pam-5.6.5.ebuild 
b/kde-plasma/kwallet-pam/kwallet-pam-5.6.5-r1.ebuild
similarity index 97%
rename from kde-plasma/kwallet-pam/kwallet-pam-5.6.5.ebuild
rename to kde-plasma/kwallet-pam/kwallet-pam-5.6.5-r1.ebuild
index 0713014..18dcab7 100644
--- a/kde-plasma/kwallet-pam/kwallet-pam-5.6.5.ebuild
+++ b/kde-plasma/kwallet-pam/kwallet-pam-5.6.5-r1.ebuild
@@ -46,6 +46,10 @@ src_compile() {
multibuild_foreach_variant kde5_src_compile
 }
 
+src_test() {
+   multibuild_foreach_variant kde5_src_test
+}
+
 src_install() {
multibuild_foreach_variant kde5_src_install
 }

diff --git a/kde-plasma/kwallet-pam/kwallet-pam-5.7.0.ebuild 
b/kde-plasma/kwallet-pam/kwallet-pam-5.7.0-r1.ebuild
similarity index 97%
rename from kde-plasma/kwallet-pam/kwallet-pam-5.7.0.ebuild
rename to kde-plasma/kwallet-pam/kwallet-pam-5.7.0-r1.ebuild
index 0713014..18dcab7 100644
--- a/kde-plasma/kwallet-pam/kwallet-pam-5.7.0.ebuild
+++ b/kde-plasma/kwallet-pam/kwallet-pam-5.7.0-r1.ebuild
@@ -46,6 +46,10 @@ src_compile() {
multibuild_foreach_variant kde5_src_compile
 }
 
+src_test() {
+   multibuild_foreach_variant kde5_src_test
+}
+
 src_install() {
multibuild_foreach_variant kde5_src_install
 }



[gentoo-commits] proj/kde:master commit in: net-libs/jreen/

2016-07-06 Thread Michael Palimaka
commit: dda41baabc62dd6b849a68966d9fbfa9a46f850c
Author: Michael Palimaka  gentoo  org>
AuthorDate: Wed Jul  6 13:13:59 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Wed Jul  6 13:15:02 2016 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=dda41baa

net-libs/jreen: sort phases

Package-Manager: portage-2.3.0

 net-libs/jreen/jreen-.ebuild | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/net-libs/jreen/jreen-.ebuild b/net-libs/jreen/jreen-.ebuild
index a44569b..7f5a934 100644
--- a/net-libs/jreen/jreen-.ebuild
+++ b/net-libs/jreen/jreen-.ebuild
@@ -67,10 +67,10 @@ src_compile() {
multibuild_foreach_variant cmake-utils_src_compile
 }
 
-src_install() {
-   multibuild_foreach_variant cmake-utils_src_install
-}
-
 src_test() {
multibuild_foreach_variant cmake-utils_src_test
 }
+
+src_install() {
+   multibuild_foreach_variant cmake-utils_src_install
+}



[gentoo-commits] proj/kde:master commit in: sys-auth/polkit-qt/

2016-07-06 Thread Michael Palimaka
commit: e87f6c7eacc63b3e733da954d04580c7da3c7549
Author: Michael Palimaka  gentoo  org>
AuthorDate: Wed Jul  6 13:12:48 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Wed Jul  6 13:15:02 2016 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=e87f6c7e

sys-auth/polkit-qt: export explicit src_test

The default phase causes BUILD_DIR to be overwritten with an incorrect value,
breaking the multibuild configuration causing one build to not be installed.

Gentoo-bug: 529686

Package-Manager: portage-2.3.0

 sys-auth/polkit-qt/polkit-qt-.ebuild | 4 
 1 file changed, 4 insertions(+)

diff --git a/sys-auth/polkit-qt/polkit-qt-.ebuild 
b/sys-auth/polkit-qt/polkit-qt-.ebuild
index b9a41d5..46f45e9 100644
--- a/sys-auth/polkit-qt/polkit-qt-.ebuild
+++ b/sys-auth/polkit-qt/polkit-qt-.ebuild
@@ -65,6 +65,10 @@ src_compile() {
multibuild_foreach_variant cmake-utils_src_compile
 }
 
+src_test() {
+   multibuild_foreach_variant cmake-utils_src_test
+}
+
 src_install() {
multibuild_foreach_variant cmake-utils_src_install
 }



  1   2   >