[gentoo-commits] proj/gcc-patches:master commit in: 8.3.0/gentoo/

2019-03-07 Thread Sergei Trofimovich
commit: 28e55a54934fa758aa6af045b61bd8f268a9c11b
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Fri Mar  8 07:50:57 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Fri Mar  8 07:50:57 2019 +
URL:https://gitweb.gentoo.org/proj/gcc-patches.git/commit/?id=28e55a54

8.3.0: allow -march=native override with -march=

That fixes build breakage like https://bugs.gentoo.org/672946
where Qt build system uses -march=core-avx2 instead of
individual -mavx2 (and friends).

Bug: https://bugs.gentoo.org/679738
Bug: https://gcc.gnu.org/PR69471
Bug: https://bugs.gentoo.org/672946
Signed-off-by: Sergei Trofimovich  gentoo.org>

 8.3.0/gentoo/26_all_overridable_native.patch | 126 +++
 8.3.0/gentoo/README.history  |   3 +
 2 files changed, 129 insertions(+)

diff --git a/8.3.0/gentoo/26_all_overridable_native.patch 
b/8.3.0/gentoo/26_all_overridable_native.patch
new file mode 100644
index 000..c292f1c
--- /dev/null
+++ b/8.3.0/gentoo/26_all_overridable_native.patch
@@ -0,0 +1,126 @@
+https://gcc.gnu.org/PR69471
+https://bugs.gentoo.org/679738
+
+From 8c0f695d83d1b4b92b9e7e8dad003701dbc04d27 Mon Sep 17 00:00:00 2001
+From: hjl 
+Date: Sat, 23 Feb 2019 19:39:35 +
+Subject: [PATCH] driver: Also prune joined switches with negation
+
+When -march=native is passed to host_detect_local_cpu to the backend,
+it overrides all command lines after it.  That means
+
+$ gcc -march=native -march=skylake-avx512
+
+is the treated as
+
+$ gcc -march=skylake-avx512 -march=native
+
+Prune joined switches with Negative and RejectNegative to allow
+-march=skylake-avx512 to override previous -march=native on command-line.
+
+gcc/
+
+   PR driver/69471
+   * opts-common.c (prune_options): Also prune joined switches
+   with Negative and RejectNegative.
+   * config/i386/i386.opt (march=): Add Negative(march=).
+   (mtune=): Add Negative(mtune=).
+   * doc/options.texi: Document Negative used together with Joined
+   and RejectNegative.
+
+gcc/testsuite/
+
+   PR driver/69471
+   * gcc.dg/pr69471-1.c: New test.
+   * gcc.dg/pr69471-2.c: Likewise.
+   * gcc.target/i386/pr69471-3.c: Likewise.
+
+
+git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@269164 
138bc75d-0d04-0410-961f-82ee72b054a4
+--- a/gcc/config/i386/i386.opt
 b/gcc/config/i386/i386.opt
+@@ -253,7 +253,7 @@ EnumValue
+ Enum(ix86_align_data) String(cacheline) Value(ix86_align_data_type_cacheline)
+ 
+ march=
+-Target RejectNegative Joined Var(ix86_arch_string)
++Target RejectNegative Negative(march=) Joined Var(ix86_arch_string)
+ Generate code for given CPU.
+ 
+ masm=
+@@ -510,7 +510,7 @@ Target Report Mask(TLS_DIRECT_SEG_REFS)
+ Use direct references against %gs when accessing tls data.
+ 
+ mtune=
+-Target RejectNegative Joined Var(ix86_tune_string)
++Target RejectNegative Negative(mtune=) Joined Var(ix86_tune_string)
+ Schedule code for given CPU.
+ 
+ mtune-ctrl=
+--- a/gcc/opts-common.c
 b/gcc/opts-common.c
+@@ -1015,7 +1015,9 @@ prune_options (struct cl_decoded_option 
**decoded_options,
+   goto keep;
+ 
+ /* Skip joined switches.  */
+-if ((option->flags & CL_JOINED))
++if ((option->flags & CL_JOINED)
++&& (!option->cl_reject_negative
++|| (unsigned int) option->neg_index != opt_idx))
+   goto keep;
+ 
+ for (j = i + 1; j < old_decoded_options_count; j++)
+@@ -1027,8 +1029,11 @@ prune_options (struct cl_decoded_option 
**decoded_options,
+   continue;
+ if (cl_options[next_opt_idx].neg_index < 0)
+   continue;
+-if ((cl_options[next_opt_idx].flags & CL_JOINED))
+-continue;
++if ((cl_options[next_opt_idx].flags & CL_JOINED)
++&& (!cl_options[next_opt_idx].cl_reject_negative
++|| ((unsigned int) cl_options[next_opt_idx].neg_index
++!= next_opt_idx)))
++  continue;
+ if (cancel_option (opt_idx, next_opt_idx, next_opt_idx))
+   break;
+   }
+--- /dev/null
 b/gcc/testsuite/gcc.dg/pr69471-1.c
+@@ -0,0 +1,9 @@
++/* { dg-do compile } */
++/* { dg-options "-Wno-implicit-function-declaration -Wno-int-conversion 
-fno-builtin-free -fno-builtin-malloc" } */
++
++void *
++foo (void * p)
++{
++  free (p);
++  return malloc (p);
++}
+--- /dev/null
 b/gcc/testsuite/gcc.dg/pr69471-2.c
+@@ -0,0 +1,8 @@
++/* { dg-do compile } */
++/* { dg-options "-gstabs2 -gdwarf-4 -gstabs3" } */
++/* { dg-error "conflicts with prior selectio" "" { target *-*-* } 0 } */
++
++void
++foo (void)
++{
++}
+--- /dev/null
 b/gcc/testsuite/gcc.target/i386/pr69471-3.c
+@@ -0,0 +1,11 @@
++/* { dg-do compile } */
++/* { dg-options "-march=native -march=knl" } */
++
++/* NB: We want to verify that -march=native -march=processor is the same
++   as -march=processor.  Since it is very unlikely that GCC will be built
++   on 

[gentoo-commits] repo/gentoo:master commit in: sys-fs/e2fsprogs/

2019-03-07 Thread Lars Wendler
commit: 322787981b8123de14adbb033eb485552d24423c
Author: Arfrever Frehtes Taifersar Arahesis  Apache  Org>
AuthorDate: Fri Mar  8 06:54:34 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Fri Mar  8 07:20:32 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32278798

sys-fs/e2fsprogs: Fix installation of crontab file and systemd system units.

Closes: https://bugs.gentoo.org/679736
Signed-off-by: Arfrever Frehtes Taifersar Arahesis  Apache.Org>
Signed-off-by: Lars Wendler  gentoo.org>

 .../{e2fsprogs-1.45.0.ebuild => e2fsprogs-1.45.0-r1.ebuild}  | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/sys-fs/e2fsprogs/e2fsprogs-1.45.0.ebuild 
b/sys-fs/e2fsprogs/e2fsprogs-1.45.0-r1.ebuild
similarity index 95%
rename from sys-fs/e2fsprogs/e2fsprogs-1.45.0.ebuild
rename to sys-fs/e2fsprogs/e2fsprogs-1.45.0-r1.ebuild
index 8dc1b6efbfd..3f75bb343da 100644
--- a/sys-fs/e2fsprogs/e2fsprogs-1.45.0.ebuild
+++ b/sys-fs/e2fsprogs/e2fsprogs-1.45.0-r1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI="6"
 
-inherit flag-o-matic multilib toolchain-funcs
+inherit flag-o-matic systemd toolchain-funcs udev
 
 DESCRIPTION="Standard EXT2/EXT3/EXT4 filesystem utilities"
 HOMEPAGE="http://e2fsprogs.sourceforge.net/;
@@ -70,6 +70,9 @@ src_configure() {
 
local myeconfargs=(
--with-root-prefix="${EPREFIX%/}/"
+   --with-crond-dir="${EPREFIX}/etc/cron.d"
+   --with-systemd-unit-dir="$(systemd_get_systemunitdir)"
+   --with-udev-rules-dir="$(get_udevdir)/rules.d"
--enable-symlink-install
--enable-elf-shlibs
$(tc-has-tls || echo --disable-tls)



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

2019-03-07 Thread Lars Wendler
commit: b8b912e12dbeb21a720c872a0d9e04b24b08186f
Author: Lars Wendler  gentoo  org>
AuthorDate: Fri Mar  8 06:40:53 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Fri Mar  8 06:42:37 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8b912e1

net-misc/ntp: Bump to version 4.2.8_p13

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Lars Wendler  gentoo.org>

 net-misc/ntp/Manifest |   2 +
 net-misc/ntp/ntp-4.2.8_p13.ebuild | 146 ++
 2 files changed, 148 insertions(+)

diff --git a/net-misc/ntp/Manifest b/net-misc/ntp/Manifest
index 657e596c28f..2c98bbff51a 100644
--- a/net-misc/ntp/Manifest
+++ b/net-misc/ntp/Manifest
@@ -1,2 +1,4 @@
 DIST ntp-4.2.8p12-manpages.tar.xz 25700 BLAKE2B 
0a84908556e997bdd08a78cd04f7f38a32a8441138f31d0adf7fefc380da79e509bea4a8bc67154501e359638f4edcab561d14cbdd1d573473bd2ea5a14f0c48
 SHA512 
e6df0099b9f62db63d200702267276ee094e8d00b20a67d2181f3f32fe6b871c49ac2eedbc2186b3255c919820c05eac528718b80afe7ed7ed7654b55c361f7c
 DIST ntp-4.2.8p12.tar.gz 7079642 BLAKE2B 
d7d7817afaf9f94bf230951901b7531aff03c0828eecd40ca6fcc836ffd081387837afee44978742b507a9bee58788022fe9556733e8861dcc37d63f5637b3d1
 SHA512 
5382dcd1bb7feca8f28fc650f68892cb53f9364ebeb3780754cfbe71b1602057fdfd6eb27956afe79014a435624d77e2648d9e07f4d86ce7a98f5a4438d08310
+DIST ntp-4.2.8p13-manpages.tar.xz 25700 BLAKE2B 
47076474529146f6fd375e20c52188f1ba04959ce3752c952e60e9b48c8ac129346fdf5c315e012556422d16b7d6c223722812a56a11a98463044d2b16fcf0f0
 SHA512 
824832c1a8685fcd196db679cf4b87c89d577cea5251fda7c3dfee00e888d64de76df99e8cf4b0d20056e3d539b3f46a260c6ce22339aa79b915427741030da2
+DIST ntp-4.2.8p13.tar.gz 6949363 BLAKE2B 
b503153d8413e6ba174970bbddca59d237442e8ec29e082cedfea6523b0b7aaf2919dc219d816e02c8d3aa486beeaf5ca08b314a8b4c587333034447e1391ea0
 SHA512 
afbdbb8a37b8f4040a8a6939a3a85ad0350d359c153c297b32b8a013c7b7061fd925fa3e6e103671c5901e169156e22497813c654195ba50f890a7170b2f2075

diff --git a/net-misc/ntp/ntp-4.2.8_p13.ebuild 
b/net-misc/ntp/ntp-4.2.8_p13.ebuild
new file mode 100644
index 000..72de82eb89b
--- /dev/null
+++ b/net-misc/ntp/ntp-4.2.8_p13.ebuild
@@ -0,0 +1,146 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit autotools toolchain-funcs flag-o-matic user systemd
+
+MY_P=${P/_p/p}
+DESCRIPTION="Network Time Protocol suite/programs"
+HOMEPAGE="http://www.ntp.org/;
+SRC_URI="http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-${PV:0:3}/${MY_P}.tar.gz
+   https://dev.gentoo.org/~polynomial-c/${MY_P}-manpages.tar.xz;
+
+LICENSE="HPND BSD ISC"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~m68k-mint"
+IUSE="caps debug ipv6 libressl openntpd parse-clocks readline samba selinux 
snmp ssl +threads vim-syntax zeroconf"
+
+CDEPEND="readline? ( >=sys-libs/readline-4.1:0= )
+   >=dev-libs/libevent-2.0.9:=[threads?]
+   kernel_linux? ( caps? ( sys-libs/libcap ) )
+   zeroconf? ( net-dns/avahi[mdnsresponder-compat] )
+   snmp? ( net-analyzer/net-snmp )
+   ssl? (
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
+   )
+   parse-clocks? ( net-misc/pps-tools )"
+DEPEND="${CDEPEND}
+   virtual/pkgconfig"
+RDEPEND="${CDEPEND}
+   selinux? ( sec-policy/selinux-ntp )
+   vim-syntax? ( app-vim/ntp-syntax )
+   !net-misc/ntpsec
+   !openntpd? ( !net-misc/openntpd )
+"
+PDEPEND="openntpd? ( net-misc/openntpd )"
+
+S="${WORKDIR}/${MY_P}"
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-4.2.8-ipc-caps.patch #533966
+   "${FILESDIR}"/${PN}-4.2.8-sntp-test-pthreads.patch #563922
+   "${FILESDIR}"/${PN}-4.2.8_p10-fix-build-wo-ssl-or-libressl.patch
+   "${FILESDIR}"/${PN}-4.2.8_p12-libressl-2.8.patch
+)
+
+pkg_setup() {
+   enewgroup ntp 123
+   enewuser ntp 123 -1 /dev/null ntp
+}
+
+src_prepare() {
+   default
+   append-cppflags -D_GNU_SOURCE #264109
+   # Make sure every build uses the same install layout. #539092
+   find sntp/loc/ -type f '!' -name legacy -delete || die
+   eautoreconf #622754
+   # Disable pointless checks.
+   touch .checkChangeLog .gcc-warning FRC.html html/.datecheck
+}
+
+src_configure() {
+   # avoid libmd5/libelf
+   export ac_cv_search_MD5Init=no ac_cv_header_md5_h=no
+   export ac_cv_lib_elf_nlist=no
+   # blah, no real configure options #176333
+   export ac_cv_header_dns_sd_h=$(usex zeroconf)
+   export ac_cv_lib_dns_sd_DNSServiceRegister=${ac_cv_header_dns_sd_h}
+   # Increase the default memlimit from 32MiB to 128MiB.  #533232
+   local myeconfargs=(
+   --with-lineeditlibs=readline,edit,editline
+   --with-yielding-select
+   --disable-local-libevent
+   

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

2019-03-07 Thread Robin H. Johnson
commit: 8ae9d5aa160bbc698efbc7a169ddf30381cd2ad2
Author: crocket <748856+crocket  users  noreply  github  
com>
AuthorDate: Sat Mar  2 09:58:58 2019 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Fri Mar  8 05:43:14 2019 +
URL:https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=8ae9d5aa

Explain dozfs in more detail

Signed-off-by: crocket  gmail.com>
(cherry picked from commit cf2c05f163128d9cc93117595c677fca35fc1649)
Fixes: https://github.com/robbat2/genkernel/pull/25
Signed-off-by: Robin H. Johnson  gentoo.org>

 genkernel | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/genkernel b/genkernel
index ba3c3bd..61dddca 100755
--- a/genkernel
+++ b/genkernel
@@ -376,6 +376,8 @@ then
[ "${DMRAID}" = '1' ] && print_warning 1 '  or 
"dodmraid="'
[ "${ZFS}" = '1' ] && print_warning 1 'add "dozfs" for ZFS volume 
management support'
[ "${ZFS}" = '1' ] && print_warning 1 ' and either "root=ZFS" to use 
bootfs autodetection or "root=ZFS=" to force booting from a specific 
dataset'
+   [ "${ZFS}" = '1' ] && print_warning 1 'If importing ZFS pool is slow, 
add dozfs=cache or dozfs=force to kernel commandline.'
+   [ "${ZFS}" = '1' ] && print_warning 1 '"man genkernel" explains "dozfs" 
in detail.'
[ "${BTRFS}" = '1' ] && print_warning 1 'add "dobtrfs" for Btrfs device 
scanning support'
[ "${ISCSI}" = '1' ] && print_warning 1 'add at least 
"iscsi_initiatorname= iscsi_target= and 
iscsi_address=" for iscsi support'
 



[gentoo-commits] repo/gentoo:master commit in: x11-misc/e16menuedit2/files/, x11-misc/e16menuedit2/

2019-03-07 Thread Andrew Savchenko
commit: dbd4b64ea61cd01e0f332c9de4bd148c2e80735c
Author: Andrew Savchenko  gentoo  org>
AuthorDate: Fri Mar  8 05:31:50 2019 +
Commit: Andrew Savchenko  gentoo  org>
CommitDate: Fri Mar  8 05:35:25 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dbd4b64e

x11-misc/e16menuedit2: Re-add e16menuedit2 to the tree

This is the last component to restore, no name change is needed.

EAPI bump is limited to 6 since gnome2.eclass does not support
EAPI 7 yet.

Closes: https://bugs.gentoo.org/658860
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Andrew Savchenko  gentoo.org>

 x11-misc/e16menuedit2/Manifest |  1 +
 x11-misc/e16menuedit2/e16menuedit2-0.0.3.ebuild| 32 ++
 .../files/e16menuedit2-no-default-docs.patch   | 20 ++
 x11-misc/e16menuedit2/metadata.xml | 11 
 4 files changed, 64 insertions(+)

diff --git a/x11-misc/e16menuedit2/Manifest b/x11-misc/e16menuedit2/Manifest
new file mode 100644
index 000..567250da001
--- /dev/null
+++ b/x11-misc/e16menuedit2/Manifest
@@ -0,0 +1 @@
+DIST e16menuedit2-0.0.3.tar.gz 370740 BLAKE2B 
5d5be198f72afbd7cf22f02d8bb9179c3f877101eccc9b57c3a5e4f2fd05260e807d267d4c7abfd40fc0a41700e876efceb992d27450f2960772321a625c5a85
 SHA512 
41942028e7d20b5aa46fce8f54f60af46bd08e292a1812d4845d68cbc670699c8fc70a8d71c2749df623a4a083b92bc9539b9241fd7daabbee0deb855ff1be99

diff --git a/x11-misc/e16menuedit2/e16menuedit2-0.0.3.ebuild 
b/x11-misc/e16menuedit2/e16menuedit2-0.0.3.ebuild
new file mode 100644
index 000..e0d251548c5
--- /dev/null
+++ b/x11-misc/e16menuedit2/e16menuedit2-0.0.3.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+GNOME2_EAUTORECONF="yes"
+inherit gnome2
+
+DESCRIPTION="Menu editor for Enlightenment DR16 written in GTK2"
+HOMEPAGE="https://www.enlightenment.org 
https://sourceforge.net/projects/enlightenment/;
+SRC_URI="mirror://sourceforge/enlightenment/${P}.tar.gz"
+KEYWORDS="~amd64 ~x86"
+
+LICENSE="MIT-with-advertising"
+SLOT="0"
+
+BDEPEND="
+   virtual/pkgconfig
+"
+DEPEND="
+   >=gnome-base/libglade-2.4
+   x11-libs/gtk+:2
+   x11-wm/e16
+"
+RDEPEND="${DEPEND}"
+
+PATCHES=( "${FILESDIR}/${PN}-no-default-docs.patch" )
+
+src_prepare() {
+   sed -i '1i#include ' src/e16menuedit2.c || die
+   gnome2_src_prepare
+}

diff --git a/x11-misc/e16menuedit2/files/e16menuedit2-no-default-docs.patch 
b/x11-misc/e16menuedit2/files/e16menuedit2-no-default-docs.patch
new file mode 100644
index 000..bb456d52b0d
--- /dev/null
+++ b/x11-misc/e16menuedit2/files/e16menuedit2-no-default-docs.patch
@@ -0,0 +1,20 @@
+--- e16menuedit2-0.0.3/Makefile.am.orig2019-03-08 00:52:08.0 
+0300
 e16menuedit2-0.0.3/Makefile.am 2019-03-08 00:52:31.930201552 +0300
+@@ -2,15 +2,8 @@
+ 
+ SUBDIRS = src po pixmaps help
+ 
+-e16menuedit2docdir = ${prefix}/${packagedocdir}
+-e16menuedit2doc_DATA = \
+-  README\
+-  COPYING\
+-  AUTHORS\
+-  ChangeLog\
+-  INSTALL\
+-  NEWS\
+-TODO
++e16menuedit2docdir = ${prefix}
++e16menuedit2doc_DATA = 
+ 
+ GLADE_FILES = e16menuedit2.glade
+ 

diff --git a/x11-misc/e16menuedit2/metadata.xml 
b/x11-misc/e16menuedit2/metadata.xml
new file mode 100644
index 000..2f0f4890caf
--- /dev/null
+++ b/x11-misc/e16menuedit2/metadata.xml
@@ -0,0 +1,11 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  
+birc...@gentoo.org
+Andrew Savchenko
+  
+  
+enlightenment
+  
+



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

2019-03-07 Thread Andrew Savchenko
commit: fe09764e4dae3d6610fb2364c0fe5b1c70b4ab93
Author: Andrew Savchenko  gentoo  org>
AuthorDate: Fri Mar  8 04:38:03 2019 +
Commit: Andrew Savchenko  gentoo  org>
CommitDate: Fri Mar  8 05:35:20 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe09764e

x11-themes/e16-themes: Re-add e16 themes to the tree

Re-introduce the official e16 themes to the tree. If was formely
packaged as x11-themes/ethemes. The name is changed to conform
upstream.

Bug: https://bugs.gentoo.org/658860
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Andrew Savchenko  gentoo.org>

 x11-themes/e16-themes/Manifest|  1 +
 x11-themes/e16-themes/e16-themes-1.0.2.ebuild | 20 
 x11-themes/e16-themes/metadata.xml| 11 +++
 3 files changed, 32 insertions(+)

diff --git a/x11-themes/e16-themes/Manifest b/x11-themes/e16-themes/Manifest
new file mode 100644
index 000..552aee00b32
--- /dev/null
+++ b/x11-themes/e16-themes/Manifest
@@ -0,0 +1 @@
+DIST e16-themes-1.0.2.tar.gz 8220355 BLAKE2B 
050774cf4baf1af1fd358361b98cc5ccc00bce93f690a91b220e8b88d153890cc5bf0671db6480d8c7c373c4bc79b905a071c88e2242296ddd18e72478080948
 SHA512 
956cda3349a00af47db6a6c9e075937c89c6d7e43ba76beb93a4d407e02cca34412086344c8b4ac6bee0dadbf0452f547e131f8384f8aece5410b5bf0bac86c9

diff --git a/x11-themes/e16-themes/e16-themes-1.0.2.ebuild 
b/x11-themes/e16-themes/e16-themes-1.0.2.ebuild
new file mode 100644
index 000..b389dff8fc4
--- /dev/null
+++ b/x11-themes/e16-themes/e16-themes-1.0.2.ebuild
@@ -0,0 +1,20 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="All the official E16 themes"
+HOMEPAGE="https://www.enlightenment.org 
https://sourceforge.net/projects/enlightenment/;
+SRC_URI="mirror://sourceforge/enlightenment/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   !x11-themes/etheme-BlueSteel
+   !x11-themes/etheme-BrushedMetal-Tigert
+   !x11-themes/etheme-Ganymede
+   !x11-themes/etheme-ShinyMetal
+   !x11-themes/ethemes
+"

diff --git a/x11-themes/e16-themes/metadata.xml 
b/x11-themes/e16-themes/metadata.xml
new file mode 100644
index 000..2f0f4890caf
--- /dev/null
+++ b/x11-themes/e16-themes/metadata.xml
@@ -0,0 +1,11 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  
+birc...@gentoo.org
+Andrew Savchenko
+  
+  
+enlightenment
+  
+



[gentoo-commits] repo/gentoo:master commit in: x11-plugins/e16-epplets/

2019-03-07 Thread Andrew Savchenko
commit: 68f5b8b148db1d98afa336086c9f3f07e6593cd1
Author: Andrew Savchenko  gentoo  org>
AuthorDate: Fri Mar  8 05:14:43 2019 +
Commit: Andrew Savchenko  gentoo  org>
CommitDate: Fri Mar  8 05:35:23 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68f5b8b1

x11-plugins/e16-epplets: Re-add e16 epplets to the tree

Re-introduce E16 epplets to the tree. They was formely packaged as
x11-plugins/epplets. The name is changed to conform upstream.

USE flags are added, EAPI bumped to 7. Static libs are removed
since they are useless.

Bug: https://bugs.gentoo.org/658860
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Andrew Savchenko  gentoo.org>

 x11-plugins/e16-epplets/Manifest|  1 +
 x11-plugins/e16-epplets/e16-epplets-0.16.ebuild | 49 +
 x11-plugins/e16-epplets/metadata.xml| 22 +++
 3 files changed, 72 insertions(+)

diff --git a/x11-plugins/e16-epplets/Manifest b/x11-plugins/e16-epplets/Manifest
new file mode 100644
index 000..5fbf1f3995b
--- /dev/null
+++ b/x11-plugins/e16-epplets/Manifest
@@ -0,0 +1 @@
+DIST e16-epplets-0.16.tar.xz 800796 BLAKE2B 
70785fce2949bb5e3b0f950436e63246b576dc2dc13ac392e2d884f913e0f22e68b428b416e20807adfb47ca7a148bb3242efff6dbeac8c734ed645ff3f1c705
 SHA512 
2cc90dee741a50f54665078db6197d7736d5423419439e640d5170057b80111458dbf4b7c9a92898e96654b1af4a986e5cedb88a565616e70ed0fba6ec82cd9b

diff --git a/x11-plugins/e16-epplets/e16-epplets-0.16.ebuild 
b/x11-plugins/e16-epplets/e16-epplets-0.16.ebuild
new file mode 100644
index 000..130edb03350
--- /dev/null
+++ b/x11-plugins/e16-epplets/e16-epplets-0.16.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Enlightenment DR16 epplets"
+HOMEPAGE="https://www.enlightenment.org 
https://sourceforge.net/projects/enlightenment/;
+SRC_URI="mirror://sourceforge/enlightenment/${P}.tar.xz"
+KEYWORDS="~amd64 ~x86"
+
+LICENSE="GPL-2+ BSD public-domain"
+SLOT="0"
+IUSE="cdaudio libgtop opengl"
+
+BDEPEND="
+   virtual/pkgconfig
+"
+CDEPEND="
+   cdaudio? ( media-libs/libcdaudio )
+   libgtop? ( gnome-base/libgtop )
+   opengl? ( media-libs/glu media-libs/mesa )
+   >=media-libs/imlib2-1.2.0
+   x11-libs/libX11
+   x11-libs/libXext
+   x11-wm/e16
+"
+RDEPEND="${CDEPEND}
+   !x11-plugins/epplets
+"
+DEPEND="${CDEPEND}
+   x11-base/xorg-proto
+"
+
+src_configure() {
+   local myconf=(
+   $(use_enable cdaudio)
+   $(use_enable opengl glx)
+   $(use_with libgtop)
+   --disable-esd
+   --disable-static
+   --disable-werror
+   )
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   default
+   find "${ED}"/usr -name '*.la' -delete || die
+}

diff --git a/x11-plugins/e16-epplets/metadata.xml 
b/x11-plugins/e16-epplets/metadata.xml
new file mode 100644
index 000..8f913313833
--- /dev/null
+++ b/x11-plugins/e16-epplets/metadata.xml
@@ -0,0 +1,22 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  
+birc...@gentoo.org
+Andrew Savchenko
+  
+  
+Enable CD Audio support using 
media-libs/libcdaudio
+Use gnome-base/libgtop to obtain system 
load information
+  
+  
+enlightenment
+  
+  
+Epplets are small, handy Enlightenment applets, similar to "dockapps"
+or "applets" for other packages.  The epplets package contains the
+base epplet API library and header files, as well as the core set of
+epplets, including CPU monitors, clocks, a mail checker, mixers, a
+slideshow, a URL grabber, a panel-like toolbar, and more.
+  
+



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

2019-03-07 Thread Andrew Savchenko
commit: 6103da02f62d78799e6044b9ddfe6dfa16826e2d
Author: Andrew Savchenko  gentoo  org>
AuthorDate: Fri Mar  8 04:58:02 2019 +
Commit: Andrew Savchenko  gentoo  org>
CommitDate: Fri Mar  8 05:35:21 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6103da02

x11-wm/e16: Add E16 back to the tree

Enligtenment DR16 (e16) was earlier packaged as
x11-wm/enlightenment:0. No package move is possible here, since
the slot is being extracted and added as the separate package.

It is based on e16-overlay by Scott McClung :
https://github.com/mcclung/e16-overlay
However, there are many changes:

A plethora of new USE flags is added: e16 is highly configurable
with many yummy features. Defaults are set to some reasonable, but
smaller number of enabled features than upstream does.

Users can now provide custom fonts using ~/.e16/fonts/ and
~/.e16/fonts.cfg.

EAPI is updated to 7 with whole ebuild overhaul following.

Bug: https://bugs.gentoo.org/658860
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Andrew Savchenko  gentoo.org>

 x11-wm/e16/Manifest   |   1 +
 x11-wm/e16/e16-1.0.19.ebuild  | 116 ++
 x11-wm/e16/files/e16-user-fonts.patch |  12 
 x11-wm/e16/metadata.xml   |  30 +
 4 files changed, 159 insertions(+)

diff --git a/x11-wm/e16/Manifest b/x11-wm/e16/Manifest
new file mode 100644
index 000..cf2cea6107d
--- /dev/null
+++ b/x11-wm/e16/Manifest
@@ -0,0 +1 @@
+DIST e16-1.0.19.tar.xz 1433016 BLAKE2B 
9c27dd6a8d78d2f765b495e5398041a30bf939a5d3926f9f07e022c9bbbc70716b072e40beb6592159f896cc7a15e2fd4e25c8a07db333a80fc8156a82dce357
 SHA512 
9dc66a4224eacde92c567f9f5b029f21543675207b782077e25f3082ef2133a547eb955fc877b01b2200d99c26148f54a6b59f1ba191163760ecf3b32d5dd374

diff --git a/x11-wm/e16/e16-1.0.19.ebuild b/x11-wm/e16/e16-1.0.19.ebuild
new file mode 100644
index 000..ac8f6a27721
--- /dev/null
+++ b/x11-wm/e16/e16-1.0.19.ebuild
@@ -0,0 +1,116 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Enlightenment Window Manager (E16)"
+HOMEPAGE="https://www.enlightenment.org 
https://sourceforge.net/projects/enlightenment/;
+SRC_URI="mirror://sourceforge/enlightenment/${P}.tar.xz"
+KEYWORDS="~amd64 ~x86"
+
+LICENSE="BSD"
+SLOT="0"
+IUSE="audiofile container dbus debug +dialogs doc examples gnome
+libhack modules nls opengl +pango sndfile sound +themes xcomposite
++xft xi2 xinerama xpresent +xrandr +xrender +xsm +xsync zoom"
+
+BDEPEND="
+   nls? ( sys-devel/gettext )
+   virtual/pkgconfig
+"
+CDEPEND="
+   dbus? ( sys-apps/dbus )
+   doc? ( app-doc/e16-docs )
+   nls? ( virtual/libintl )
+   opengl? ( media-libs/glu media-libs/mesa )
+   pango? ( x11-libs/pango[X] )
+   sound? (
+   || ( media-sound/pulseaudio media-sound/apulse[sdk] )
+   sndfile? ( media-libs/libsndfile )
+   audiofile? ( media-libs/audiofile )
+   )
+   xcomposite? (
+   x11-libs/libXcomposite
+   x11-libs/libXdamage
+   x11-libs/libXfixes
+   )
+   xft? ( x11-libs/libXft )
+   xinerama? ( x11-libs/libXinerama )
+   xpresent? ( x11-libs/libXpresent )
+   xrandr? ( x11-libs/libXrandr )
+   xrender? ( x11-libs/libXrender )
+   xsm? ( x11-libs/libICE x11-libs/libSM )
+   zoom? ( x11-libs/libXxf86vm )
+   =media-libs/freetype-2*
+   >=media-libs/imlib2-1.3.0[X]
+   virtual/libiconv
+   x11-libs/libX11
+   x11-libs/libXext
+   x11-misc/xbitmaps
+"
+RDEPEND="${CDEPEND}
+   themes? ( x11-themes/e16-themes )
+   !x11-wm/enlightenment:0
+"
+DEPEND="${CDEPEND}
+   x11-base/xorg-proto
+"
+REQIRED_USE="
+   audiofile? ( sound )
+   opengl? ( composite )
+   sndfile? ( sound )
+   sound? ^^ ( sndfile audiofile )
+"
+
+PATCHES=( "${FILESDIR}/${PN}-user-fonts.patch" )
+
+src_configure() {
+   local myconf=(
+   $(use_enable container)
+   $(use_enable dbus)
+   $(use_enable debug libtrip)
+   $(use_enable dialogs)
+   $(use_enable doc docs)
+   $(use_enable libhack)
+   $(use_enable modules)
+   $(use_enable nls)
+   $(use_enable opengl glx)
+   $(use_enable pango)
+   $(use_enable sound sound pulseaudio)
+   $(use_enable xcomposite composite)
+   $(use_enable xft)
+   $(use_enable xi2)
+   $(use_enable xinerama)
+   $(use_enable xpresent)
+   $(use_enable xrandr)
+   $(use_enable xrender)
+   $(use_enable xsm sm)
+   $(use_enable xsync)
+   $(use_enable zoom)
+   $(use_with audiofile sndldr audiofile)
+   $(use_with gnome gnome gnome3)
+   $(use_with 

[gentoo-commits] repo/gentoo:master commit in: app-doc/e16-docs/

2019-03-07 Thread Andrew Savchenko
commit: e35c42edb6a6d586306b3b047026c672088d3dab
Author: Andrew Savchenko  gentoo  org>
AuthorDate: Fri Mar  8 04:30:05 2019 +
Commit: Andrew Savchenko  gentoo  org>
CommitDate: Fri Mar  8 05:35:19 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e35c42ed

app-doc/e16-docs: Re-add e16 docs to the tree

Re-introduce e16-docs to the tree. If was formely packaged as
app-doc/edox-data. The name is changed to conform upstream.

Bug: https://bugs.gentoo.org/658860
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Andrew Savchenko  gentoo.org>

 app-doc/e16-docs/Manifest   |  1 +
 app-doc/e16-docs/e16-docs-0.16.8.0.2.ebuild | 14 ++
 app-doc/e16-docs/metadata.xml   | 11 +++
 3 files changed, 26 insertions(+)

diff --git a/app-doc/e16-docs/Manifest b/app-doc/e16-docs/Manifest
new file mode 100644
index 000..b4901025bc7
--- /dev/null
+++ b/app-doc/e16-docs/Manifest
@@ -0,0 +1 @@
+DIST e16-docs-0.16.8.0.2.tar.gz 1655229 BLAKE2B 
7f57fcc90791f27e2186cd266222072c5ab5214f12e0f35fbdf706035e6f7ce68ab632779e77572e3ddb8c0d183aebfacc23dc25f400a941325dced54ae72b92
 SHA512 
df46cedff63984f5fe3cd4d523406efc3b4334447cbe9e31abae969961142887c5891bad7c65b066bb077f69789de4d38718872554e4a23f3b5b853bda665e31

diff --git a/app-doc/e16-docs/e16-docs-0.16.8.0.2.ebuild 
b/app-doc/e16-docs/e16-docs-0.16.8.0.2.ebuild
new file mode 100644
index 000..3de207108ca
--- /dev/null
+++ b/app-doc/e16-docs/e16-docs-0.16.8.0.2.ebuild
@@ -0,0 +1,14 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="The E16 online help"
+HOMEPAGE="https://www.enlightenment.org 
https://sourceforge.net/projects/enlightenment/;
+SRC_URI="mirror://sourceforge/enlightenment/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="!app-doc/edox-data"

diff --git a/app-doc/e16-docs/metadata.xml b/app-doc/e16-docs/metadata.xml
new file mode 100644
index 000..2f0f4890caf
--- /dev/null
+++ b/app-doc/e16-docs/metadata.xml
@@ -0,0 +1,11 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  
+birc...@gentoo.org
+Andrew Savchenko
+  
+  
+enlightenment
+  
+



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

2019-03-07 Thread Andrew Savchenko
commit: 5662caa1200cc279a5d6de810314781dd2051acf
Author: Andrew Savchenko  gentoo  org>
AuthorDate: Fri Mar  8 05:27:46 2019 +
Commit: Andrew Savchenko  gentoo  org>
CommitDate: Fri Mar  8 05:35:24 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5662caa1

x11-misc/e16-keyedit: Re-add e16-keyedit to the tree

Re-introduce the e16 keyedit tool to the tree. It was formely
packaged as x11-misc/e16keyedit. The name is changed to conform
upstream.

Bug: https://bugs.gentoo.org/658860
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Andrew Savchenko  gentoo.org>

 x11-misc/e16-keyedit/Manifest   |  1 +
 x11-misc/e16-keyedit/e16-keyedit-0.9.ebuild | 28 
 x11-misc/e16-keyedit/metadata.xml   | 17 +
 3 files changed, 46 insertions(+)

diff --git a/x11-misc/e16-keyedit/Manifest b/x11-misc/e16-keyedit/Manifest
new file mode 100644
index 000..12e554442e1
--- /dev/null
+++ b/x11-misc/e16-keyedit/Manifest
@@ -0,0 +1 @@
+DIST e16-keyedit-0.9.tar.xz 80588 BLAKE2B 
2c8a1ac4ae0e2b3b741408637997e1054ca2d5121b6cc27622de0896d8dd30d65b92458592f2e8c3f02ddfbb2ab336631168dbe6840127533f0d9da3bf7973c1
 SHA512 
77e8db879a2a790c0e08d0527bd613f443fdc433bfb50a95d8201008702282c407c68f41f0d2457704b887b2cebede1326bb40aba18f717207443a9e41d87b9e

diff --git a/x11-misc/e16-keyedit/e16-keyedit-0.9.ebuild 
b/x11-misc/e16-keyedit/e16-keyedit-0.9.ebuild
new file mode 100644
index 000..5e260218fef
--- /dev/null
+++ b/x11-misc/e16-keyedit/e16-keyedit-0.9.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Key binding editor for Enlightenment DR16"
+HOMEPAGE="https://www.enlightenment.org 
https://sourceforge.net/projects/enlightenment/;
+SRC_URI="mirror://sourceforge/enlightenment/${P}.tar.xz"
+KEYWORDS="~amd64 ~x86"
+
+LICENSE="MIT-with-advertising"
+SLOT="0"
+IUSE="gtk2"
+
+BDEPEND="
+   virtual/pkgconfig
+"
+DEPEND="
+   gtk2? ( x11-libs/gtk+:2 )
+   !gtk2? ( x11-libs/gtk+:3 )
+"
+RDEPEND="${DEPEND}
+   !x11-misc/e16keyedit
+"
+
+src_configure() {
+   econf --with-gtk=$(usex gtk2 gtk2 gtk3)
+}

diff --git a/x11-misc/e16-keyedit/metadata.xml 
b/x11-misc/e16-keyedit/metadata.xml
new file mode 100644
index 000..3f0fe746899
--- /dev/null
+++ b/x11-misc/e16-keyedit/metadata.xml
@@ -0,0 +1,17 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  
+birc...@gentoo.org
+Andrew Savchenko
+  
+  
+Build with x11-libs/gtk+:2 instead of 
x11-libs/gtk+:3
+  
+  
+enlightenment
+  
+  
+e16-keyedit provides a graphical interface for managing keybindings in 
Enlightenment E16
+  
+



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/acts_as_list/

2019-03-07 Thread Hans de Graaff
commit: 8978a8937767588dd6db01a62bf17c8ae3d17b9b
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Mar  8 05:12:04 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Mar  8 05:12:04 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8978a893

dev-ruby/acts_as_list: add 0.9.18

Signed-off-by: Hans de Graaff  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 dev-ruby/acts_as_list/Manifest   |  1 +
 dev-ruby/acts_as_list/acts_as_list-0.9.18.ebuild | 38 
 2 files changed, 39 insertions(+)

diff --git a/dev-ruby/acts_as_list/Manifest b/dev-ruby/acts_as_list/Manifest
index bd776bdcb6d..47118b710c8 100644
--- a/dev-ruby/acts_as_list/Manifest
+++ b/dev-ruby/acts_as_list/Manifest
@@ -1,3 +1,4 @@
 DIST acts_as_list-0.9.15.gem 35840 BLAKE2B 
3a1c5929d5f51804b5d4ee1d754f951ce0615bf4fa80345bb55d7c1b821fcd3378ec6817da697381d6692e97b790823a2f00e41742608a04ea399c3c1bf6ba30
 SHA512 
76b2b80c4b3011b69f027066d5a1d458727209f8c05ec3f01f5479db18dcae85213cb1c9111aa152093148e2e5c2235b2714760141504939005e656c891135b1
 DIST acts_as_list-0.9.16.gem 35840 BLAKE2B 
189e05a7f9ba231a4d49f00df0941edef820ef4e1d8705f6b36b8dbffe9125a77b964997e58712d293785396b3b0847b494758bb4b9e0102c53df78ee0817728
 SHA512 
e01c7814669bfd408a27b37ff88c42adfd52b4001f0e835f134dbb5de8d041d27dc95b3549271ffe81b3b5991e149ff0958f8c14bb59425f29dd1493db474f22
 DIST acts_as_list-0.9.17.gem 36352 BLAKE2B 
6f876dbeab3e84952da4b04f98e8283284fdfe34deab0a0e950606b935e4b64e5adba057aef33daa2279faf9e1f24240f653a2f4c5a56120d5a9019c1dca76ed
 SHA512 
a65cb1e4d8ff99f40ed6ef16344a2884e80d861064c91ccaeb5baa35f4bce72ab77e4f0cc2110ae5734e8c329c7dee19ff0a38f59bd518a97ea7073ce4e61678
+DIST acts_as_list-0.9.18.gem 37376 BLAKE2B 
36ec0bc97a9d055195dfa7ba623ecf59b3e93f8fb382f378edc84e319c3a383c5fe47eb2071cd2c5a44b1aee83a27f47f16b3b5db77bfdd69fbb6a67a2e23079
 SHA512 
b511f23660baccf59f27da2977fcb6c8649b63fee6404998e61510c33a357da03fdca3d14813e2fa4d941f1cc979f8ab1d2f1f3388b871244d8358a3328c577d

diff --git a/dev-ruby/acts_as_list/acts_as_list-0.9.18.ebuild 
b/dev-ruby/acts_as_list/acts_as_list-0.9.18.ebuild
new file mode 100644
index 000..d62631abb44
--- /dev/null
+++ b/dev-ruby/acts_as_list/acts_as_list-0.9.18.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+USE_RUBY="ruby23 ruby24 ruby25"
+
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+
+inherit ruby-fakegem
+
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
+RUBY_FAKEGEM_EXTRAINSTALL="init.rb"
+
+RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
+
+DESCRIPTION="Capabilities for sorting and reordering a number of objects in a 
list"
+HOMEPAGE="https://github.com/swanandp/acts_as_list;
+
+LICENSE="MIT"
+SLOT="3"
+KEYWORDS="~amd64 ~x86-macos"
+IUSE=""
+
+ruby_add_rdepend ">=dev-ruby/activerecord-3:*"
+
+ruby_add_bdepend "
+   test? (
+   dev-ruby/test-unit:2
+   dev-ruby/activerecord[sqlite]
+   )"
+
+all_ruby_prepare() {
+   rm Gemfile || die
+   sed -i -e '/[Bb]undler/d' Rakefile || die
+   sed -i -e '/bundler/,/^end/ s:^:#:' test/helper.rb || die
+   sed -i -e '/git ls/d' ${RUBY_FAKEGEM_GEMSPEC} || die
+   sed -i -e '/github_changelog/,$ s:^:#:' Rakefile || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/pkg-config/

2019-03-07 Thread Hans de Graaff
commit: 7ce061e54909ca4a7c7ed0437746e2b55afc9f0d
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Mar  8 05:24:06 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Mar  8 05:24:06 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ce061e5

dev-ruby/pkg-config: add 1.3.5

Signed-off-by: Hans de Graaff  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 dev-ruby/pkg-config/Manifest|  1 +
 dev-ruby/pkg-config/pkg-config-1.3.5.ebuild | 33 +
 2 files changed, 34 insertions(+)

diff --git a/dev-ruby/pkg-config/Manifest b/dev-ruby/pkg-config/Manifest
index d3432b14090..e23958139ab 100644
--- a/dev-ruby/pkg-config/Manifest
+++ b/dev-ruby/pkg-config/Manifest
@@ -2,3 +2,4 @@ DIST pkg-config-1.2.8.gem 20480 BLAKE2B 
cc11b5eff30f0f5e1a91e64902931ed540da108f
 DIST pkg-config-1.3.2.gem 20992 BLAKE2B 
53881385d6751fb77b91428aeac553863d97c1792c30194733fdfc48746dde2178d2e3ad30157ae0061a16e7c0e094fae4fadb3148b4c9c1da0a66e0937d7cd7
 SHA512 
19f3ba9eaf8e81504ead9445a735e1afbb1726be8671e5146f31e31ad311b34ed17a5c01769aaadc9450667c1f69f14451eed68cfe87339b00f0b87e3e7d592a
 DIST pkg-config-1.3.3.gem 20992 BLAKE2B 
694553ba12025d80a13597b8ab526fdac291badb9ed320e88d5234d56ecfcaf71d27482375aa39bd5262012d7e20be6a080db10733c18e977ff8fa15fd1c4461
 SHA512 
449bca982c6f367cfdb219848907f9ebabd7b0c41750d6e95a58d627db3a809b01a80846117ce3c7858ec1829ee5de94b16184e6f269d56af737954ce207
 DIST pkg-config-1.3.4.gem 20992 BLAKE2B 
3e9ab485f4b375abfc7e90287a11f8c8a65afcad1f296c35db9bd7206064d45961078e5664381b5250716da6f9ceb2ca1433e360f8bf9bc26f569a132df8e7f4
 SHA512 
c0caf3f0254e2dd64cd258ca7936a26c7c1525922f0e214b67ee09f9b54455077a2dfe23251a5e985685975a6b4597d0dcd4cd3ad19a80866028450fb4bfcbdf
+DIST pkg-config-1.3.5.gem 20992 BLAKE2B 
4b2285f976c2652e1dcc7e5f9454b9e00d489ccb620e89346638014453c1936b516652cf2353375c5611481c7558820f3062a3585b69e242e2e77e51bb7f2594
 SHA512 
d659d43b0a787961cfb550344311083c7177d2d5b6066c0d0af3ee8edce245235c2b459ac002f645d8be62850a8a2ecda7247e527f7be14fbaa5e71993e7a1b5

diff --git a/dev-ruby/pkg-config/pkg-config-1.3.5.ebuild 
b/dev-ruby/pkg-config/pkg-config-1.3.5.ebuild
new file mode 100644
index 000..600fa391e78
--- /dev/null
+++ b/dev-ruby/pkg-config/pkg-config-1.3.5.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+USE_RUBY="ruby23 ruby24 ruby25 ruby26"
+
+RUBY_FAKEGEM_EXTRADOC="README.rdoc NEWS"
+
+RUBY_FAKEGEM_TASK_DOC=""
+
+inherit ruby-fakegem
+
+DESCRIPTION="A pkg-config implementation by Ruby"
+HOMEPAGE="https://github.com/rcairo/pkg-config;
+LICENSE="|| ( LGPL-2 LGPL-2.1 LGPL-3 )"
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+SLOT="0"
+IUSE="test"
+
+ruby_add_bdepend "test? ( >=dev-ruby/test-unit-2.5.1-r1 )"
+# this is used for testing
+DEPEND+=" test? ( x11-libs/cairo )"
+
+all_ruby_prepare() {
+   # drop failing tests
+   sed -i -e "/test_cflags/,/end/d"\
+   -e "/test_cflags_only_I/,/end/d" test/test_pkg_config.rb || die
+}
+
+each_ruby_test() {
+   ruby-ng_testrb-2 -Ilib test/test_${PN/-/_}.rb || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/curb/

2019-03-07 Thread Hans de Graaff
commit: fa117878a78d70ceb6bcc181828d679a80418390
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Mar  8 05:19:54 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Mar  8 05:19:54 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa117878

dev-ruby/curb: add 0.9.9

Signed-off-by: Hans de Graaff  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 dev-ruby/curb/Manifest  |  1 +
 dev-ruby/curb/curb-0.9.9.ebuild | 47 +
 2 files changed, 48 insertions(+)

diff --git a/dev-ruby/curb/Manifest b/dev-ruby/curb/Manifest
index 0ef84910cfe..218a4bdd003 100644
--- a/dev-ruby/curb/Manifest
+++ b/dev-ruby/curb/Manifest
@@ -1,2 +1,3 @@
 DIST curb-0.9.7.gem 83968 BLAKE2B 
591c4fde6fe809c813bb7586875e954dcc3b6190eb6955b5769a2dd1538d156074d0e025af6b1d42cbd820fb012b46eec4e9ca96fe61acc3697cf1f6c5018b43
 SHA512 
6068eaaad6b1dc2dbbf7d0588235ce2a681d786bf8ed6d072e501b7cbff600d8fbc9d675fac3949a565c8451641982cbd9ab29a50cf3707e8c4cdc35b539f42b
 DIST curb-0.9.8.gem 86528 BLAKE2B 
e96520e78e7126042ada0464a494af2d6547e581c638d3c1da85c98fd841ce86e81b3c13a2eaed26046048ab75614616a6b8f093fbb058ccae232768ea8ea4da
 SHA512 
be57d572fd1703440e4f4127d55fdc6efdb5c30b50ca86ef5a66a5fd99667708771480cd3abf9be62aae7adb43fa41a03b57019ae7edbf03a9a7d7c2bbefeba9
+DIST curb-0.9.9.gem 87040 BLAKE2B 
107c6486887c0c168a06b7cdad4cc01e34a85c7cfb20e8991db4c695e9dfe3700655d95dbc798e4eb3269586b86d61037d0e39a88c4d687e0e776a0e9cc27f0e
 SHA512 
3f91004e109f9cc7c2d58fb7a6bc387d037237442b05ee52bad2944738eb24bf8d909ad7c21db965ba1e6291d08f0f2335c54a5c1a1ee1d224c5790e81dc8037

diff --git a/dev-ruby/curb/curb-0.9.9.ebuild b/dev-ruby/curb/curb-0.9.9.ebuild
new file mode 100644
index 000..d7cd3e30294
--- /dev/null
+++ b/dev-ruby/curb/curb-0.9.9.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+USE_RUBY="ruby23 ruby24 ruby25 ruby26"
+
+RUBY_FAKEGEM_RECIPE_TEST="rake"
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Ruby-language bindings for libcurl"
+HOMEPAGE="https://github.com/taf2/curb;
+
+LICENSE="Ruby"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+DEPEND+=" net-misc/curl[ssl]"
+RDEPEND+=" net-misc/curl[ssl]"
+
+all_ruby_prepare() {
+   # fix tests when localhost is also ::1
+   sed -i -e 's|localhost:|127.0.0.1:|g' tests/*.rb || die
+
+   # avoid tests making outside network connections
+   rm tests/bug_postfields_crash.rb || die
+   sed -e '/test_easy_http_verbs_must_respond_to_str/,/^  end/ s:^:#:' \
+   -i tests/tc_curl_easy.rb || die
+   sed -e '/test_connection_keepalive/aomit "network connection needed"' \
+   -i tests/tc_curl_multi.rb || die
+
+   # avoid failing tests where failure condition seems weird, no
+   # upstream travis so not clear if the test is indeed broken.
+   sed -i -e '/test_multi_easy_http/,/^  end/ s:^:#:' 
tests/tc_curl_multi.rb || die
+}
+
+each_ruby_configure() {
+   ${RUBY} -Cext extconf.rb || die "extconf.rb failed"
+}
+
+each_ruby_compile() {
+   emake -Cext CFLAGS="${CFLAGS} -fPIC" archflags="${LDFLAGS}" V=1
+   cp -l ext/curb_core$(get_modname) lib || die
+}



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

2019-03-07 Thread Georgy Yakovlev
commit: 360990b537eccebc7a943426515034a19a8bb627
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Fri Mar  8 05:02:57 2019 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Fri Mar  8 05:02:57 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=360990b5

dev-java/xz-java: add ~arm

Bug: https://bugs.gentoo.org/676048
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Georgy Yakovlev  gentoo.org>

 dev-java/xz-java/xz-java-1.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-java/xz-java/xz-java-1.8.ebuild 
b/dev-java/xz-java/xz-java-1.8.ebuild
index 78b83d3f6e8..bfb68767547 100644
--- a/dev-java/xz-java/xz-java-1.8.ebuild
+++ b/dev-java/xz-java/xz-java-1.8.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://tukaani.org/xz/${P}.zip;
 
 LICENSE="public-domain"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
 
 RDEPEND=">=virtual/jre-1.6"
 DEPEND=">=virtual/jdk-1.6"



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

2019-03-07 Thread Georgy Yakovlev
commit: 4b525c583ce9a35e486b5d32ad3878e28371fb27
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Fri Mar  8 04:35:04 2019 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Fri Mar  8 04:35:04 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b525c58

profiles/desc/jvm_variant.desc: remove

we no longer have JVM_VARIANTS expand consumers

Signed-off-by: Georgy Yakovlev  gentoo.org>

 profiles/desc/jvm_variant.desc | 11 ---
 1 file changed, 11 deletions(-)

diff --git a/profiles/desc/jvm_variant.desc b/profiles/desc/jvm_variant.desc
deleted file mode 100644
index 940cfd8fd13..000
--- a/profiles/desc/jvm_variant.desc
+++ /dev/null
@@ -1,11 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-# This file contains descriptions of JVM_VARIANT USE_EXPAND
-# for dev-java/openjdk.
-
-client - Enable many JVM feature sets including compiler1
-core -  A template-interpreter only JVM feature set
-minimal - Enable a reduced compiler1 JVM feature set
-server - Enable most JVM feature sets including compiler1, compiler2, and aot
-zero - Zero-Assembler port of the JVM



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

2019-03-07 Thread Georgy Yakovlev
commit: 8b501f62f3e325051f45ec45643d77e277bb07d2
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Fri Mar  8 04:31:20 2019 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Fri Mar  8 04:31:20 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b501f62

dev-java/openjdk-bin: drop old

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Georgy Yakovlev  gentoo.org>

 dev-java/openjdk-bin/Manifest  |   3 -
 dev-java/openjdk-bin/openjdk-bin-11.0.1_p13.ebuild | 102 -
 2 files changed, 105 deletions(-)

diff --git a/dev-java/openjdk-bin/Manifest b/dev-java/openjdk-bin/Manifest
index ed0984c8c10..b68c3c5aa3c 100644
--- a/dev-java/openjdk-bin/Manifest
+++ b/dev-java/openjdk-bin/Manifest
@@ -1,8 +1,5 @@
-DIST OpenJDK11U-jdk_aarch64_linux_hotspot_11.0.1_13.tar.gz 193388219 BLAKE2B 
21ff9bcd5288a17ff7f660fb9b1bbb6c38589fea72850729227a985dce1966c6d0b0d6c64ad6885c17612d215e58a50cec5f70205877bb26c70924b15f92886b
 SHA512 
200ebd5882e2ebd315a2d0fdd800d70b52d468022ae565756ccd56e1fdd2464b459753cfad6c5f46a61cdda8a003cdfe031c2a6a12e047bbe7ee2133dd048546
 DIST OpenJDK11U-jdk_aarch64_linux_hotspot_11.0.2_7.tar.gz 194181157 BLAKE2B 
7883e6846670c87f4ed8338804671bff19ba2910e1e96eacd9729f2ba64e9c6b460d300080e3cd3a4f94722ff9942832681bf23f64e9401e07d824028614874f
 SHA512 
d982d4ba8c1b99b8685b36b9c0b6bb6ff8f8ec04de74945876915e01827fb389ad72d868c387f0ef4d5dd1a21cb09170b0d14ca33a2c2ec0c1f95c09fc1a475a
-DIST OpenJDK11U-jdk_ppc64le_linux_hotspot_11.0.1_13.tar.gz 179520284 BLAKE2B 
32acf913aa1b176ca98af0c6111e7f14bba22b84547e24dac279205bb0c81fc3845239e9e34c897c18452ebbb4c71b8185fc4d7d3a2856f3cc767ed4c268d61c
 SHA512 
3bf9fa8eb4cdad03dbbb648b6ab1d8ed5ed34584abe2bec254626952aeba2fc5d492075ba0308ab8e28824959df5f11bb46ec1638c2588b352dd58a5097c030a
 DIST OpenJDK11U-jdk_ppc64le_linux_hotspot_11.0.2_7.tar.gz 180394013 BLAKE2B 
b5b82b6cd4121e2fbf66c948435bc84d549a11a793310bf0624898562005d5fc01a2f2de84a18517a75ccb2ed7d9f5173dc0a087500eb897e8d7461838991af1
 SHA512 
5f1a54e7d2456b42e23488b3699b09d82c57f3cb7056684a15f5aa19b992f4b1638acac716d6ed15c0a409ff1953022892ea55f7ed0542d210f5fd43f33fd8e0
-DIST OpenJDK11U-jdk_x64_linux_hotspot_11.0.1_13.tar.gz 195710782 BLAKE2B 
a374afea8de4333488294dcb200e235f7cc42309a56e693a9b5434dc74d0189b57c26adc93ef22454a4ed05f44b90afa8fdfc016feb022c1eaeb706044581f24
 SHA512 
b5e55cd32daa3b30fb84b8f4fed0ef70e4f8e3e153974c0c9fa0fcdf22cade99613da93f2289798b625adde24d9a1c4c4808a139e9f2feb2543b05f273f3bdd8
 DIST OpenJDK11U-jdk_x64_linux_hotspot_11.0.2_7.tar.gz 195593592 BLAKE2B 
038c88dd4475842ffd27afc9249925baea0230cd993a963e13c2e090a0f6332fbeaebefae5b5e98026a12a7d94696633507a9d08af469b0227372088b5cd4869
 SHA512 
f9f4d168105e499b0da4923c6fe18c31ea6f6a24a48fc9d47b643460316d75de273f8f6dcbd43c9df6efcfb77127182dab8125c55f63200c5ff53cc9eb0ddcdc
 DIST OpenJDK8U-jdk_aarch64_linux_hotspot_8u191b12.tar.gz 75382012 BLAKE2B 
9521bb3d0dc08d5069108bb56594d401cbadf7a290652a39c7379e6ded530044e85f1ffae1cd3eb7e881d7c283c06463e6f8b76602d03a7bf5b188b1004f5daf
 SHA512 
156f7a57f095095b72edb4bfc766d575795e496b006fb994566b0207d346e89863cf377ce97290bf1b47923c5d6aee5558eaa7a54f394f95a270b1cfec4308e2
 DIST OpenJDK8U-jdk_ppc64le_linux_hotspot_8u202b08.tar.gz 101497437 BLAKE2B 
4fdc659f9cc50fd968cd339cf24780cd0097286fe3004669972b925fa5c8bbd0e6024587f761ef05ec170c4caa6a915f9f748badd021fae6eb669aa613e1c90d
 SHA512 
42991d2203d51492090e92ee4c7600e7b0ab613550d925f52dd7c7c3b796f9bd36e7284d55540b661a5175064d714267cddd786d81aeda358feda3927e3676e3

diff --git a/dev-java/openjdk-bin/openjdk-bin-11.0.1_p13.ebuild 
b/dev-java/openjdk-bin/openjdk-bin-11.0.1_p13.ebuild
deleted file mode 100644
index c633ab47d5c..000
--- a/dev-java/openjdk-bin/openjdk-bin-11.0.1_p13.ebuild
+++ /dev/null
@@ -1,102 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit java-vm-2
-
-abi_uri() {
-   echo "${2-$1}? (
-   
https://github.com/AdoptOpenJDK/openjdk${SLOT}-binaries/releases/download/jdk-${MY_PV}/OpenJDK${SLOT}U-jdk_${1}_linux_hotspot_${MY_PV//+/_}.tar.gz
-   )"
-}
-
-MY_PV=${PV/_p/+}
-SLOT=${MY_PV%%[.+]*}
-
-SRC_URI="
-   $(abi_uri x64 amd64)
-   $(abi_uri aarch64 arm64)
-   $(abi_uri ppc64le ppc64)
-"
-
-DESCRIPTION="Prebuilt Java JDK binaries provided by AdoptOpenJDK"
-HOMEPAGE="https://adoptopenjdk.net;
-LICENSE="GPL-2-with-classpath-exception"
-KEYWORDS="~amd64 ~arm64 ~ppc64"
-IUSE="alsa cups doc examples +gentoo-vm headless-awt nsplugin selinux source 
+webstart"
-RESTRICT="preserve-libs splitdebug"
-QA_PREBUILT="*"
-
-RDEPEND="
-   media-libs/fontconfig:1.0
-   media-libs/freetype:2
-   >=sys-libs/glibc-2.2.5:*
-   sys-libs/zlib
-   alsa? ( media-libs/alsa-lib )
-   cups? ( net-print/cups )
-   doc? ( dev-java/java-sdk-docs:${SLOT} )
-   selinux? ( sec-policy/selinux-java )
-   !headless-awt? (
-

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

2019-03-07 Thread Georgy Yakovlev
commit: 12ebf2920b316185e47e646a7bf983fdf3af1eaf
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Fri Mar  8 04:30:30 2019 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Fri Mar  8 04:30:30 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12ebf292

dev-java/openjdk: drop old

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Georgy Yakovlev  gentoo.org>

 dev-java/openjdk/Manifest  |   1 -
 dev-java/openjdk/openjdk-11.0.1_p13.ebuild | 237 -
 2 files changed, 238 deletions(-)

diff --git a/dev-java/openjdk/Manifest b/dev-java/openjdk/Manifest
index 500148f6cfd..ac3c3c3abfb 100644
--- a/dev-java/openjdk/Manifest
+++ b/dev-java/openjdk/Manifest
@@ -1,4 +1,3 @@
-DIST jdk-11.0.1+13.tar.bz2 90134818 BLAKE2B 
c79f32dc5b531a06317afb87ef15495267e914b9b292a1d434514a90298d8234e7e0ba92659416b15d9392c7513d976a0c81411953cb6706a27ee57c965e36fb
 SHA512 
c534c2fa8dcd4fdebef6f00473d5ceaae4a33bd1e1a417846508e25f154b1ded649a73468c8c71ac0c1e27bab5f641a3b480a264b532a0c30be2869c3d11a15d
 DIST jdk-11.0.2+7.tar.bz2 90189455 BLAKE2B 
37473a8db4c6ad6789ea67b44f4dda94b9f59143c681a206aa0931b3a2a376fbc480c0c5a6b617072cf9ce1faca34a6c5c5e56cfec9fbf5482b82520fb2463c4
 SHA512 
03214d9fc920c04f3057594efa78ff588a630e6c594e5bbcc24b4c327fa08273ce060063d98720cdc04bc6978a3d04e172f38ba7a3bcabf02dd5dad397fd9952
 DIST openjdk-8.202_p08.tar.bz2 449202 BLAKE2B 
8f7442918c083e94cda0e029cf2348dd9242653027f84d66deebe162e0928b2c6a86d3f273ba235bad5e5656f2b109e6521aaccfa81332fea92873d008ac0c0d
 SHA512 
586713b889dd60c7dc65fccd39ef3ddd985ebb95a7c6c1feaef3c8d76fd1d929bbf19a99f72274c1afb77bd7f80b581d44add4aa232358d8951f7cc5befb43d0
 DIST openjdk-corba-8.202_p08.tar.bz2 1033539 BLAKE2B 
9cbe20fb771157142329db037866ec7d67ff7e70318bec8b74034ce59574cd730975f0e7a3d6b88fc946b1d340558a92ca867639765a205883481fd071d7059e
 SHA512 
9b25132c76f559055698c52888f6cae287096e05b89541cb8e445b46a488126a38e58d4f28649e277862eac7aa20f75f64dbcdcf56c900dcb0530a9545c4f717

diff --git a/dev-java/openjdk/openjdk-11.0.1_p13.ebuild 
b/dev-java/openjdk/openjdk-11.0.1_p13.ebuild
deleted file mode 100644
index b73dc4da11b..000
--- a/dev-java/openjdk/openjdk-11.0.1_p13.ebuild
+++ /dev/null
@@ -1,237 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools check-reqs flag-o-matic java-pkg-2 java-vm-2 multiprocessing 
pax-utils toolchain-funcs
-
-MY_PV=${PV/_p/+}
-SLOT=${MY_PV%%[.+]*}
-
-DESCRIPTION="Open source implementation of the Java programming language"
-HOMEPAGE="https://openjdk.java.net;
-SRC_URI="https://hg.${PN}.java.net/jdk-updates/jdk${SLOT}u/archive/jdk-${MY_PV}.tar.bz2;
-LICENSE="GPL-2"
-KEYWORDS="~amd64 ~arm64 ~ppc64"
-
-# Default variant must be first!
-# The rest do not matter.
-JVM_VARIANTS="
-   server
-   client
-   core
-   minimal
-   zero
-"
-
-IUSE=$(printf "jvm_variant_%s " ${JVM_VARIANTS})
-
-REQUIRED_USE="
-   || ( ${IUSE} )
-   ?? ( jvm_variant_core jvm_variant_zero )
-   jvm_variant_core? ( !jvm_variant_server !jvm_variant_client 
!jvm_variant_minimal )
-   jvm_variant_zero? ( !jvm_variant_server !jvm_variant_client 
!jvm_variant_minimal )
-"
-
-IUSE="+${IUSE} alsa debug doc examples gentoo-vm headless-awt +jbootstrap 
nsplugin +pch selinux source systemtap +webstart"
-
-CDEPEND="
-   media-libs/freetype:2=
-   net-print/cups
-   sys-libs/zlib
-   systemtap? ( dev-util/systemtap )
-   !headless-awt? (
-   x11-libs/libX11
-   x11-libs/libXext
-   x11-libs/libXi
-   x11-libs/libXrender
-   x11-libs/libXt
-   x11-libs/libXtst
-   )
-"
-
-RDEPEND="
-   ${CDEPEND}
-   alsa? ( media-libs/alsa-lib )
-   selinux? ( sec-policy/selinux-java )
-"
-
-DEPEND="
-   ${CDEPEND}
-   app-arch/zip
-   media-libs/alsa-lib
-   !headless-awt? (
-   x11-base/xorg-proto
-   )
-   || (
-   dev-java/openjdk-bin:${SLOT}
-   dev-java/openjdk:${SLOT}
-   )
-"
-
-PDEPEND="webstart? ( >=dev-java/icedtea-web-1.6.1:0 )
-   nsplugin? ( >=dev-java/icedtea-web-1.6.1:0[nsplugin] )"
-
-S="${WORKDIR}/jdk${SLOT}u-jdk-${MY_PV}"
-
-# The space required to build varies wildly depending on USE flags,
-# ranging from 2GB to 24GB. This function is certainly not exact but
-# should be close enough to be useful.
-openjdk_check_requirements() {
-   local M variant count=0
-
-   for variant in ${JVM_VARIANTS}; do
-   use jvm_variant_${variant} &&
-   count=$(( $count + 1 ))
-   done
-
-   M=$(usex debug 2600 875)
-   M=$(( $(usex debug 2900 375) * $count + $M ))
-   M=$(( $(usex jbootstrap 2 1) * $M ))
-   M=$(( $(usex doc 300 0) + $(usex source 120 0) + 820 + $M ))
-
-   CHECKREQS_DISK_BUILD=${M}M check-reqs_pkg_${EBUILD_PHASE}
-}
-

[gentoo-commits] repo/gentoo:master commit in: net-vpn/tinc/

2019-03-07 Thread Yixun Lan
commit: 05608a3ec85f66190a172e0dd126ff3cd91cff3d
Author: Yixun Lan  gentoo  org>
AuthorDate: Fri Mar  8 02:43:12 2019 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Fri Mar  8 03:31:23 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05608a3e

net-vpn/tinc: version bump 1.1pre17

fix build err when >=dev-libs/openssl-1.1.1b

also fix a bash_completion issue due to
upstream packaging problem, I hope it will be fixed in
upstream's next release.

Closes: https://bugs.gentoo.org/679402

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Yixun Lan  gentoo.org>

 net-vpn/tinc/Manifest  |  2 +
 net-vpn/tinc/tinc-1.1_pre17.ebuild | 96 ++
 2 files changed, 98 insertions(+)

diff --git a/net-vpn/tinc/Manifest b/net-vpn/tinc/Manifest
index 4bef180b36b..a1316b926cf 100644
--- a/net-vpn/tinc/Manifest
+++ b/net-vpn/tinc/Manifest
@@ -1,2 +1,4 @@
 DIST tinc-1.0.35.tar.gz 499277 BLAKE2B 
419b581167614d534b6f2f3b804657f088c013529d7738766aff199da775860ffed42ecb61e8ed008c5b6fa410f071e2fe1ca59f0c6e443c0a8017cd10c31ce3
 SHA512 
037867306c21506d57d69d35c0f246b2936022047978fa3e01464b5f6b65f109760507d9cc740f82f8166f39c5ce44d9f8dde55655a6372dacd5b5974aeaee32
+DIST tinc-1.1-upstream-patches-2.tar.xz 23500 BLAKE2B 
ab44d2efcd494c6a49e9e0bc109670a586b087d5ce1daab9b9cdf8f50a4c9b9d927e102fe947e75e6f7be509ba9315936315006b557b39639399bc7f40109f5f
 SHA512 
351537f212421e7fe28fcf97293550edaa4c4c8a578bf4eeca34ae591caefb222df4d5d96bfa03bddd6afcb5143e68b59f5341b2a6412c053a3cecf4fdd0bee8
 DIST tinc-1.1pre16.tar.gz 703679 BLAKE2B 
c02636f52983c1fdebe28058a5e49f3952ac10b238c9d8f01a10b140960803f197a057c883860ca259b949883c406cf74f518d0e45bf84f10566a964570daf9b
 SHA512 
b32a0a734a4c8a91bad4cef4177cb45757c97c09dc179da1e3357f2fde48b3b0747587dbac31ecb5400e1553b6712d474a6a1808ac24bce1a3494c1842bb6c43
+DIST tinc-1.1pre17.tar.gz 927313 BLAKE2B 
d16789b64f6d11deda4752fdeeb603fe62efd6b1d68b0286fbe9c329d8ea51494df59e0e5bf1564b25a0ed44e9244799eb61f73de9ded6a1a418417453adddc4
 SHA512 
b966dbfa522e12ff6766c4deb54a9da29cddc15c3a1df0f0e084df27ee5f1421ffbebc0e29472b1bcd79ea8b41f8c0ef904172e333dcba0b85bafe4654a63b30

diff --git a/net-vpn/tinc/tinc-1.1_pre17.ebuild 
b/net-vpn/tinc/tinc-1.1_pre17.ebuild
new file mode 100644
index 000..6eb358d55d4
--- /dev/null
+++ b/net-vpn/tinc/tinc-1.1_pre17.ebuild
@@ -0,0 +1,96 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+MY_PV=${PV/_/}
+MY_P=${PN}-${MY_PV}
+
+PYTHON_COMPAT=( python2_7 )
+
+inherit autotools python-single-r1 systemd
+
+DESCRIPTION="tinc is an easy to configure VPN implementation"
+HOMEPAGE="http://www.tinc-vpn.org/;
+
+UPSTREAM_VER=2
+
+[[ -n ${UPSTREAM_VER} ]] && \
+   
UPSTREAM_PATCHSET_URI="https://dev.gentoo.org/~dlan/distfiles/${PN}-1.1-upstream-patches-${UPSTREAM_VER}.tar.xz;
+
+SRC_URI="http://www.tinc-vpn.org/packages/${MY_P}.tar.gz
+   ${UPSTREAM_PATCHSET_URI}"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x86-macos"
+IUSE="+lzo +ncurses libressl +readline +ssl uml vde upnp +zlib"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+DEPEND="
+   ${PYTHON_DEPS}
+   ssl? (
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
+   )
+   lzo? ( dev-libs/lzo:2 )
+   ncurses? ( sys-libs/ncurses:= )
+   readline? ( sys-libs/readline:= )
+   upnp? ( net-libs/miniupnpc )
+   zlib? ( sys-libs/zlib )"
+RDEPEND="${DEPEND}
+   vde? ( net-misc/vde )"
+S="${WORKDIR}/${MY_P}"
+
+# Upstream's patchset
+if [[ -n ${UPSTREAM_VER} ]]; then
+   PATCHES=( "${WORKDIR}"/patches-upstream )
+fi
+
+PATCHES+=(
+   "${FILESDIR}"/tinc-1.1_pre16-r1-fix-paths.patch #560528
+   "${FILESDIR}"/${PN}-1.1-tinfo.patch #621868
+)
+
+src_prepare() {
+   default
+   eautoreconf
+
+   # Fix the static (failing UNKNOWN) version in the autoconf
+   # NOTE: When updating the ebuild, make sure to check that this
+   # line number hasn't changed in the upstream sources.
+   sed -i "6d" configure.ac
+   sed -i "6iAC_INIT([tinc], ${PVR})" configure.ac
+}
+
+src_configure() {
+   econf \
+   --enable-jumbograms \
+   --disable-silent-rules \
+   --enable-legacy-protocol \
+   --disable-tunemu  \
+   --with-systemd="$(systemd_get_systemunitdir)" \
+   $(use_enable lzo) \
+   $(use_enable ncurses curses) \
+   $(use_enable readline) \
+   $(use_enable uml) \
+   $(use_enable vde) \
+   $(use_enable zlib) \
+   $(use_enable upnp miniupnpc) \
+   $(use_with ssl openssl)
+   #--without-libgcrypt \
+}
+
+src_install() {
+   emake DESTDIR="${D}" install
+   dodir /etc/tinc
+   dodoc AUTHORS NEWS 

[gentoo-commits] repo/gentoo:master commit in: net-vpn/tinc/

2019-03-07 Thread Yixun Lan
commit: 758130a8a9bad5a076fbd68d2be9a860d9b19509
Author: Yixun Lan  gentoo  org>
AuthorDate: Fri Mar  8 03:21:03 2019 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Fri Mar  8 03:31:48 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=758130a8

net-vpn/tinc: fix >=dev-libs/openssl-1.1.1b

bump upstream patches to fix openssl build issue

Closes: https://bugs.gentoo.org/679402
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Yixun Lan  gentoo.org>

 net-vpn/tinc/Manifest  |  1 +
 net-vpn/tinc/tinc-1.0.35-r1.ebuild | 54 ++
 2 files changed, 55 insertions(+)

diff --git a/net-vpn/tinc/Manifest b/net-vpn/tinc/Manifest
index a1316b926cf..e161801b399 100644
--- a/net-vpn/tinc/Manifest
+++ b/net-vpn/tinc/Manifest
@@ -1,3 +1,4 @@
+DIST tinc-1.0.35-upstream-patches-0.tar.xz 2884 BLAKE2B 
a01ee1a372cc366402c005a48adccd7e31bd3182c1fc6df2dc27aecd622266be06f2c25aa169794b2970fe1f8218b7fa813365f8852e165ed2356ed885c5fde3
 SHA512 
c95add88e05dc7dc8d09618dd07870e400e1fe28c8f864acbf131d9616d75337fd1d2d7b44ee80c3f31e1b713f258bb9d575956114e73fea781488d2b477a5f5
 DIST tinc-1.0.35.tar.gz 499277 BLAKE2B 
419b581167614d534b6f2f3b804657f088c013529d7738766aff199da775860ffed42ecb61e8ed008c5b6fa410f071e2fe1ca59f0c6e443c0a8017cd10c31ce3
 SHA512 
037867306c21506d57d69d35c0f246b2936022047978fa3e01464b5f6b65f109760507d9cc740f82f8166f39c5ce44d9f8dde55655a6372dacd5b5974aeaee32
 DIST tinc-1.1-upstream-patches-2.tar.xz 23500 BLAKE2B 
ab44d2efcd494c6a49e9e0bc109670a586b087d5ce1daab9b9cdf8f50a4c9b9d927e102fe947e75e6f7be509ba9315936315006b557b39639399bc7f40109f5f
 SHA512 
351537f212421e7fe28fcf97293550edaa4c4c8a578bf4eeca34ae591caefb222df4d5d96bfa03bddd6afcb5143e68b59f5341b2a6412c053a3cecf4fdd0bee8
 DIST tinc-1.1pre16.tar.gz 703679 BLAKE2B 
c02636f52983c1fdebe28058a5e49f3952ac10b238c9d8f01a10b140960803f197a057c883860ca259b949883c406cf74f518d0e45bf84f10566a964570daf9b
 SHA512 
b32a0a734a4c8a91bad4cef4177cb45757c97c09dc179da1e3357f2fde48b3b0747587dbac31ecb5400e1553b6712d474a6a1808ac24bce1a3494c1842bb6c43

diff --git a/net-vpn/tinc/tinc-1.0.35-r1.ebuild 
b/net-vpn/tinc/tinc-1.0.35-r1.ebuild
new file mode 100644
index 000..1f2d089df01
--- /dev/null
+++ b/net-vpn/tinc/tinc-1.0.35-r1.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit systemd
+
+DESCRIPTION="tinc is an easy to configure VPN implementation"
+HOMEPAGE="http://www.tinc-vpn.org/;
+
+UPSTREAM_VER=0
+
+[[ -n ${UPSTREAM_VER} ]] && \
+   
UPSTREAM_PATCHSET_URI="https://dev.gentoo.org/~dlan/distfiles/${P}-upstream-patches-${UPSTREAM_VER}.tar.xz;
+
+SRC_URI="http://www.tinc-vpn.org/packages/${P}.tar.gz
+   ${UPSTREAM_PATCHSET_URI}"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x86-macos"
+IUSE="libressl +lzo uml vde +zlib"
+
+DEPEND="
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
+   lzo? ( dev-libs/lzo:2 )
+   zlib? ( sys-libs/zlib )"
+RDEPEND="${DEPEND}
+   vde? ( net-misc/vde )"
+
+# Upstream's patchset
+if [[ -n ${UPSTREAM_VER} ]]; then
+   PATCHES=( "${WORKDIR}"/patches-upstream )
+fi
+
+src_configure() {
+   econf \
+   --enable-jumbograms \
+   --disable-tunemu  \
+   $(use_enable lzo) \
+   $(use_enable uml) \
+   $(use_enable vde) \
+   $(use_enable zlib)
+}
+
+src_install() {
+   emake DESTDIR="${D}" install
+   dodir /etc/tinc
+   dodoc AUTHORS NEWS README THANKS
+   doconfd "${FILESDIR}"/tinc.networks
+   newconfd "${FILESDIR}"/tincd.conf tincd
+   newinitd "${FILESDIR}"/tincd-r1 tincd
+   systemd_newunit "${FILESDIR}"/tincd_at.service "tincd@.service"
+}



[gentoo-commits] repo/gentoo:master commit in: sys-cluster/galera/

2019-03-07 Thread Mikle Kolyada
commit: ff12aff0942141a83e7b986f4b367c092adc7b85
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Thu Mar  7 23:55:27 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Thu Mar  7 23:55:27 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff12aff0

sys-cluster/galera: amd64 stable wrt bug #672438

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"

 sys-cluster/galera/galera-25.3.25.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-cluster/galera/galera-25.3.25.ebuild 
b/sys-cluster/galera/galera-25.3.25.ebuild
index 5c2fe5ea75b..9b37a6461f8 100644
--- a/sys-cluster/galera/galera-25.3.25.ebuild
+++ b/sys-cluster/galera/galera-25.3.25.ebuild
@@ -15,7 +15,7 @@ LICENSE="GPL-2 BSD"
 
 SLOT="0"
 
-KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 x86"
 IUSE="cpu_flags_x86_sse4_2 garbd test"
 
 CDEPEND="



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

2019-03-07 Thread Mikle Kolyada
commit: 8e9c381b5f8d6699c94106fcf964d901f72f1115
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Thu Mar  7 23:53:13 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Thu Mar  7 23:53:13 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e9c381b

x11-plugins/wmmon: amd64 stable wrt bug #678588

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"

 x11-plugins/wmmon/wmmon-1.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-plugins/wmmon/wmmon-1.4.ebuild 
b/x11-plugins/wmmon/wmmon-1.4.ebuild
index 36a6b74ce55..b52135abe04 100644
--- a/x11-plugins/wmmon/wmmon-1.4.ebuild
+++ b/x11-plugins/wmmon/wmmon-1.4.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://www.dockapps.net/download/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~sparc x86"
+KEYWORDS="amd64 ~ppc ~sparc x86"
 IUSE=""
 
 RDEPEND=">=x11-libs/libdockapp-0.7:=



[gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmweather+/

2019-03-07 Thread Mikle Kolyada
commit: 41015f1a5ae0ec9ae03450d254764641d86fccfd
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Thu Mar  7 23:53:20 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Thu Mar  7 23:53:20 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41015f1a

x11-plugins/wmweather+: amd64 stable wrt bug #678588

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"

 x11-plugins/wmweather+/wmweather+-2.17.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-plugins/wmweather+/wmweather+-2.17.ebuild 
b/x11-plugins/wmweather+/wmweather+-2.17.ebuild
index 1045e96c8da..1e402ccfa48 100644
--- a/x11-plugins/wmweather+/wmweather+-2.17.ebuild
+++ b/x11-plugins/wmweather+/wmweather+-2.17.ebuild
@@ -9,7 +9,7 @@ SRC_URI="mirror://sourceforge/wmweatherplus/${P}.tar.gz"
 
 SLOT="0"
 LICENSE="GPL-2"
-KEYWORDS="~amd64 ~mips ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="amd64 ~mips ~ppc ~ppc64 ~sparc x86"
 IUSE=""
 
 DEPEND="dev-libs/libpcre



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

2019-03-07 Thread Mikle Kolyada
commit: e577b25f16286880b284d54172ec11c142094c50
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Thu Mar  7 23:53:16 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Thu Mar  7 23:53:16 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e577b25f

x11-plugins/wmnd: amd64 stable wrt bug #678588

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"

 x11-plugins/wmnd/wmnd-0.4.17-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-plugins/wmnd/wmnd-0.4.17-r1.ebuild 
b/x11-plugins/wmnd/wmnd-0.4.17-r1.ebuild
index 5174401be2c..4e882a283c3 100644
--- a/x11-plugins/wmnd/wmnd-0.4.17-r1.ebuild
+++ b/x11-plugins/wmnd/wmnd-0.4.17-r1.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="https://www.thregr.org/~wavexx/software/wmnd/releases/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc x86 ~amd64-linux ~x86-linux ~x64-solaris"
+KEYWORDS="amd64 ~ppc x86 ~amd64-linux ~x86-linux ~x64-solaris"
 IUSE="snmp"
 
 RDEPEND="x11-libs/libX11



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtnetworkauth/

2019-03-07 Thread Mikle Kolyada
commit: 3d4756edc30b252c9658b0018ea1adedf1a49e14
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Thu Mar  7 23:52:10 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Thu Mar  7 23:52:10 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d4756ed

dev-qt/qtnetworkauth: amd64 stable wrt bug #678192

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"

 dev-qt/qtnetworkauth/qtnetworkauth-5.11.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-qt/qtnetworkauth/qtnetworkauth-5.11.3.ebuild 
b/dev-qt/qtnetworkauth/qtnetworkauth-5.11.3.ebuild
index 198a6ef2623..5051c8c2205 100644
--- a/dev-qt/qtnetworkauth/qtnetworkauth-5.11.3.ebuild
+++ b/dev-qt/qtnetworkauth/qtnetworkauth-5.11.3.ebuild
@@ -8,7 +8,7 @@ DESCRIPTION="Network authorization library for the Qt5 
framework"
 LICENSE="GPL-3"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 x86"
+   KEYWORDS="amd64 x86"
 fi
 
 IUSE=""



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

2019-03-07 Thread Mikle Kolyada
commit: 657ef8d83de37bce736ab4fa24df3a94e9072923
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Thu Mar  7 23:32:04 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Thu Mar  7 23:32:04 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=657ef8d8

sys-kernel/gentoo-sources: amd64 stable wrt bug #679558

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"

 sys-kernel/gentoo-sources/gentoo-sources-4.14.105-r1.ebuild | 2 +-
 sys-kernel/gentoo-sources/gentoo-sources-4.19.27-r1.ebuild  | 2 +-
 sys-kernel/gentoo-sources/gentoo-sources-4.4.176.ebuild | 2 +-
 sys-kernel/gentoo-sources/gentoo-sources-4.9.162-r1.ebuild  | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.14.105-r1.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.14.105-r1.ebuild
index 63e34a9e95e..1eae15bc50b 100644
--- a/sys-kernel/gentoo-sources/gentoo-sources-4.14.105-r1.ebuild
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.14.105-r1.ebuild
@@ -10,7 +10,7 @@ inherit kernel-2
 detect_version
 detect_arch
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc x86"
 HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches;
 IUSE="experimental"
 

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.19.27-r1.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.19.27-r1.ebuild
index 51d502d7e7f..d77b12bc18c 100644
--- a/sys-kernel/gentoo-sources/gentoo-sources-4.19.27-r1.ebuild
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.19.27-r1.ebuild
@@ -10,7 +10,7 @@ inherit kernel-2
 detect_version
 detect_arch
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh 
~sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh 
~sparc x86"
 HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches;
 IUSE="experimental"
 

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.4.176.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.4.176.ebuild
index 8ae87d6379f..56fcc055f8b 100644
--- a/sys-kernel/gentoo-sources/gentoo-sources-4.4.176.ebuild
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.4.176.ebuild
@@ -10,7 +10,7 @@ inherit kernel-2
 detect_version
 detect_arch
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc x86"
 HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches;
 IUSE="experimental"
 

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.9.162-r1.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.9.162-r1.ebuild
index dc24e502303..9ebae2c934f 100644
--- a/sys-kernel/gentoo-sources/gentoo-sources-4.9.162-r1.ebuild
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.9.162-r1.ebuild
@@ -10,7 +10,7 @@ inherit kernel-2
 detect_version
 detect_arch
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc x86"
 HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches;
 IUSE="experimental"
 



[gentoo-commits] repo/gentoo:master commit in: net-mail/notmuch/, net-mail/notmuch/files/

2019-03-07 Thread Amadeusz Piotr Żołnowski
commit: cce6336be29b3390e48d847b48a1106ed54c7019
Author: Amadeusz Piotr Żołnowski  gentoo  org>
AuthorDate: Thu Mar  7 23:19:49 2019 +
Commit: Amadeusz Piotr Żołnowski  gentoo  org>
CommitDate: Thu Mar  7 23:25:02 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cce6336b

net-mail/notmuch: Bump version

Drop GMime 2.6 support as upstream already marked 2.6 support as
deprecated. Require GMime 3.

Require at least Xapian 1.4.9, as 1.4.7 and 1.4.8 are broken.

Signed-off-by: Amadeusz Piotr Żołnowski  gentoo.org>

 net-mail/notmuch/Manifest  |   1 +
 ...-Use-loopback-IP-address-rather-than-name.patch |  62 ++
 net-mail/notmuch/notmuch-0.28.3.ebuild | 210 +
 3 files changed, 273 insertions(+)

diff --git a/net-mail/notmuch/Manifest b/net-mail/notmuch/Manifest
index af2d00725b0..598baf92cf0 100644
--- a/net-mail/notmuch/Manifest
+++ b/net-mail/notmuch/Manifest
@@ -5,3 +5,4 @@ DIST notmuch-0.25.3.tar.gz 883151 BLAKE2B 
511f93c310e8b82f1b629735cbe626ab1ba8ea
 DIST notmuch-0.26.1.tar.gz 906523 BLAKE2B 
da0b06361d586d84bea5c6e28adf7850dcb119e9f70ae67e06ff1438b9d20f4b04707d3e6ee6e755d569d15b8a720506b4c242c0c84258e8f5c8996caa62fc47
 SHA512 
f0d95a0f03535495037c73ab18d1251ece505284736efa5a535fe9bc8aea33954b5c87e5dcdfd30670c8df53178294be520a63e5b19beac7d90f166e616d19dd
 DIST notmuch-0.26.2.tar.gz 907187 BLAKE2B 
81212555d729bd05be2edfb0f3dfd604de9d5f3e99e79ebd24a195441bd3778c7c72abe0b6b569dc1cf2ad9d94af1cbe3ca3aff77f521888b7be2eb08444dde1
 SHA512 
ebd8460c5f08cb8c79dabc1bc1bc32e1f2e1f123d304bb20205d4dedb982186336fd43d0e39acf020ea2563278bee0a063ceb3bf276f1251c099d8fcdd5098e7
 DIST notmuch-0.27.tar.gz 912583 BLAKE2B 
75bb13e9666bd2898f58e5ecdd6a180d0da21188665f107857e6729f057525bb7c94832d140de8ff7b3fd31b51e33bcbe5b59d3fc09ba9a854c1c05499df762e
 SHA512 
7c58c6fe5c3b43a979c3a439a24106417120726fd688b456d9084388ddd7c88ab1b6d99cd4676101f085d60bb37099631caa286b76588fcb041bb004ff325515
+DIST notmuch-0.28.3.tar.gz 921920 BLAKE2B 
9b96a0cac8188bcaf9efab532721449c655fec4dac77c3eb327e576184cb430aa0fffc9ac74af82ad3ad80097afdda5c8accddbee7e5720d180c071d9dd2ef85
 SHA512 
dd3931b78cc27540e962f1fca5f4ebb1c04b2637a5761cda023f307fd9be4b5ddc2af26010330868c55200fa96b60b2a11b3b22d4c20d2a4a2d3787421ed85cf

diff --git 
a/net-mail/notmuch/files/0001-Use-loopback-IP-address-rather-than-name.patch 
b/net-mail/notmuch/files/0001-Use-loopback-IP-address-rather-than-name.patch
new file mode 100644
index 000..f7e1d7e05e3
--- /dev/null
+++ b/net-mail/notmuch/files/0001-Use-loopback-IP-address-rather-than-name.patch
@@ -0,0 +1,62 @@
+From 9c15b508819d15d0852d71c2e897550cfaac09ba Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Amadeusz=20Piotr=20=C5=BBo=C5=82nowski?=
+ 
+Date: Thu, 7 Mar 2019 22:47:55 +
+Subject: [PATCH] Use loopback IP address rather than name
+
+With FEATURES="network-sandbox" 'localhost' name lookup fails.
+---
+ test/smtp-dummy.c | 8 
+ test/test-lib.sh  | 2 +-
+ 2 files changed, 5 insertions(+), 5 deletions(-)
+
+diff --git a/test/smtp-dummy.c b/test/smtp-dummy.c
+index 71992edd..e72ba2d0 100644
+--- a/test/smtp-dummy.c
 b/test/smtp-dummy.c
+@@ -76,7 +76,7 @@ process_command (FILE *peer, FILE *output, const char 
*command)
+   fprintf (peer, "502 not implemented\r\n");
+   fflush (peer);
+ } else if (STRNCMP_LITERAL (command, "HELO ") == 0) {
+-  fprintf (peer, "250 localhost\r\n");
++  fprintf (peer, "250 127.0.0.1\r\n");
+   fflush (peer);
+ } else if (STRNCMP_LITERAL (command, "MAIL FROM:") == 0 ||
+  STRNCMP_LITERAL (command, "RCPT TO:") == 0) {
+@@ -105,7 +105,7 @@ do_smtp_to_file (FILE *peer, FILE *output)
+ size_t line_size;
+ ssize_t line_len;
+ 
+-fprintf (peer, "220 localhost smtp-dummy\r\n");
++fprintf (peer, "220 127.0.0.1 smtp-dummy\r\n");
+ fflush (peer);
+ 
+ while ((line_len = getline (, _size, peer)) != -1) {
+@@ -182,9 +182,9 @@ main (int argc, char *argv[])
+   goto DONE;
+ }
+ 
+-hostinfo = gethostbyname ("localhost");
++hostinfo = gethostbyname ("127.0.0.1");
+ if (hostinfo == NULL) {
+-  fprintf (stderr, "Unknown host: localhost\n");
++  fprintf (stderr, "Unknown host: 127.0.0.1\n");
+   ret = 1;
+   goto DONE;
+ }
+diff --git a/test/test-lib.sh b/test/test-lib.sh
+index fca5277d..fa8fd5bd 100644
+--- a/test/test-lib.sh
 b/test/test-lib.sh
+@@ -320,7 +320,7 @@ emacs_deliver_message ()
+ test_emacs \
+   "(let ((message-send-mail-function 'message-smtpmail-send-it)
+(mail-host-address \"example.com\")
+- (smtpmail-smtp-server \"localhost\")
++ (smtpmail-smtp-server \"127.0.0.1\")
+  (smtpmail-smtp-service \"25025\"))
+  (notmuch-mua-mail)
+  (message-goto-to)
+-- 
+2.19.2
+

diff --git a/net-mail/notmuch/notmuch-0.28.3.ebuild 
b/net-mail/notmuch/notmuch-0.28.3.ebuild
new file mode 100644
index 

[gentoo-commits] repo/gentoo:master commit in: net-vpn/tinc/

2019-03-07 Thread Anthony G. Basile
commit: aad4b8f8558a86755b329769d7f88c141b8d5821
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Thu Mar  7 23:13:22 2019 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Thu Mar  7 23:13:22 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aad4b8f8

net-vpn/tinc: remove older versions

Signed-off-by: Anthony G. Basile  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 net-vpn/tinc/Manifest   |  2 --
 net-vpn/tinc/tinc-1.0.33.ebuild | 47 -
 net-vpn/tinc/tinc-1.0.34.ebuild | 47 -
 3 files changed, 96 deletions(-)

diff --git a/net-vpn/tinc/Manifest b/net-vpn/tinc/Manifest
index 14650b1eb64..4bef180b36b 100644
--- a/net-vpn/tinc/Manifest
+++ b/net-vpn/tinc/Manifest
@@ -1,4 +1,2 @@
-DIST tinc-1.0.33.tar.gz 486374 BLAKE2B 
542e9c95aa3dea941315c5a3293c06137be7131bbb4a3ba5d788e7c250327d0b01530db5b3371aee85b1e85a104b9997e9f09a6b33051090da087595e1bcb9da
 SHA512 
f17c7682e177d85a049891255fc590069c7901307951ee93364a7a754f1a7c5ca4b6a6f7ddcb4c9ad150f0155ff7db7112990a3fc3a6496b48bdbfd3b1ae8804
-DIST tinc-1.0.34.tar.gz 484174 BLAKE2B 
8ba80983cb1293b03b814f305bd733a2208562b8450a539c0f80c25596c0e05fb7ebc8edf8e6617b9e18d8b96bb49a82098f902e692ce4b85c7c47b1072be2dd
 SHA512 
b711a2c532f8efc94c77e9bbe5213ae284d2a3cb598d2760df700448e495a02ac56baa0393bbc6fbc735bf97a26ca5a79133c92952d98a9086a9ffd273eef725
 DIST tinc-1.0.35.tar.gz 499277 BLAKE2B 
419b581167614d534b6f2f3b804657f088c013529d7738766aff199da775860ffed42ecb61e8ed008c5b6fa410f071e2fe1ca59f0c6e443c0a8017cd10c31ce3
 SHA512 
037867306c21506d57d69d35c0f246b2936022047978fa3e01464b5f6b65f109760507d9cc740f82f8166f39c5ce44d9f8dde55655a6372dacd5b5974aeaee32
 DIST tinc-1.1pre16.tar.gz 703679 BLAKE2B 
c02636f52983c1fdebe28058a5e49f3952ac10b238c9d8f01a10b140960803f197a057c883860ca259b949883c406cf74f518d0e45bf84f10566a964570daf9b
 SHA512 
b32a0a734a4c8a91bad4cef4177cb45757c97c09dc179da1e3357f2fde48b3b0747587dbac31ecb5400e1553b6712d474a6a1808ac24bce1a3494c1842bb6c43

diff --git a/net-vpn/tinc/tinc-1.0.33.ebuild b/net-vpn/tinc/tinc-1.0.33.ebuild
deleted file mode 100644
index c8adaa0c7d3..000
--- a/net-vpn/tinc/tinc-1.0.33.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-inherit systemd
-
-DESCRIPTION="tinc is an easy to configure VPN implementation"
-HOMEPAGE="http://www.tinc-vpn.org/;
-SRC_URI="http://www.tinc-vpn.org/packages/${P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x86-macos"
-IUSE="libressl +lzo uml vde +zlib"
-
-DEPEND="
-   !libressl? ( dev-libs/openssl:0= )
-   libressl? ( dev-libs/libressl:0= )
-   lzo? ( dev-libs/lzo:2 )
-   zlib? ( sys-libs/zlib )"
-RDEPEND="${DEPEND}
-   vde? ( net-misc/vde )"
-
-src_configure() {
-   econf \
-   --enable-jumbograms \
-   --disable-tunemu  \
-   $(use_enable lzo) \
-   $(use_enable uml) \
-   $(use_enable vde) \
-   $(use_enable zlib)
-}
-
-src_install() {
-   emake DESTDIR="${D}" install
-   dodir /etc/tinc
-   dodoc AUTHORS NEWS README THANKS
-   doconfd "${FILESDIR}"/tinc.networks
-   newconfd "${FILESDIR}"/tincd.conf tincd
-   newinitd "${FILESDIR}"/tincd-r1 tincd
-   systemd_newunit "${FILESDIR}"/tincd_at.service "tincd@.service"
-}
-
-pkg_postinst() {
-   elog "This package requires the tun/tap kernel device."
-   elog "Look at http://www.tinc-vpn.org/ for how to configure tinc"
-}

diff --git a/net-vpn/tinc/tinc-1.0.34.ebuild b/net-vpn/tinc/tinc-1.0.34.ebuild
deleted file mode 100644
index 717bdeac65a..000
--- a/net-vpn/tinc/tinc-1.0.34.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-inherit systemd
-
-DESCRIPTION="tinc is an easy to configure VPN implementation"
-HOMEPAGE="http://www.tinc-vpn.org/;
-SRC_URI="http://www.tinc-vpn.org/packages/${P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x86-macos"
-IUSE="libressl +lzo uml vde +zlib"
-
-DEPEND="
-   !libressl? ( dev-libs/openssl:0= )
-   libressl? ( dev-libs/libressl:0= )
-   lzo? ( dev-libs/lzo:2 )
-   zlib? ( sys-libs/zlib )"
-RDEPEND="${DEPEND}
-   vde? ( net-misc/vde )"
-
-src_configure() {
-   econf \
-   --enable-jumbograms \
-   --disable-tunemu  \
-   $(use_enable lzo) \
-   $(use_enable uml) \
-   $(use_enable vde) \
-   $(use_enable zlib)
-}
-
-src_install() {
-   emake DESTDIR="${D}" install
-   dodir /etc/tinc
-   dodoc AUTHORS NEWS README THANKS
-   doconfd 

[gentoo-commits] repo/gentoo:master commit in: sys-fs/eudev/files/

2019-03-07 Thread Anthony G. Basile
commit: 9c1290c16768496e65a4ed857b469e99670f8183
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Tue Mar  5 16:55:00 2019 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Thu Mar  7 23:01:35 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c1290c1

sys-fs/eudev: remove unused patch

Signed-off-by: Michael Mair-Keimberger  gmail.com>
Signed-off-by: Anthony G. Basile  gentoo.org>

 .../files/eudev-include-sysmacros-header.patch | 121 -
 1 file changed, 121 deletions(-)

diff --git a/sys-fs/eudev/files/eudev-include-sysmacros-header.patch 
b/sys-fs/eudev/files/eudev-include-sysmacros-header.patch
deleted file mode 100644
index ca622bff547..000
--- a/sys-fs/eudev/files/eudev-include-sysmacros-header.patch
+++ /dev/null
@@ -1,121 +0,0 @@
-diff -ruPN eudev-3.1.5.old/src/cdrom_id/cdrom_id.c 
eudev-3.1.5/src/cdrom_id/cdrom_id.c
 eudev-3.1.5.old/src/cdrom_id/cdrom_id.c2015-09-11 14:54:26.0 
-0400
-+++ eudev-3.1.5/src/cdrom_id/cdrom_id.c2017-10-11 21:45:10.929671748 
-0400
-@@ -37,6 +37,7 @@
- #include 
- #include 
- #include 
-+#include 
- 
- #include "libudev.h"
- #include "libudev-private.h"
-diff -ruPN eudev-3.1.5.old/src/libudev/libudev-device.c 
eudev-3.1.5/src/libudev/libudev-device.c
 eudev-3.1.5.old/src/libudev/libudev-device.c   2015-10-12 
18:22:14.0 -0400
-+++ eudev-3.1.5/src/libudev/libudev-device.c   2017-10-11 21:44:42.774672156 
-0400
-@@ -32,6 +32,7 @@
- #include 
- #include 
- #include 
-+#include 
- 
- #include "libudev.h"
- #include "libudev-private.h"
-diff -ruPN eudev-3.1.5.old/src/libudev/libudev-device-private.c 
eudev-3.1.5/src/libudev/libudev-device-private.c
 eudev-3.1.5.old/src/libudev/libudev-device-private.c   2015-09-11 
14:54:26.0 -0400
-+++ eudev-3.1.5/src/libudev/libudev-device-private.c   2017-10-11 
21:44:39.445672204 -0400
-@@ -25,6 +25,7 @@
- #include 
- #include 
- #include 
-+#include 
- 
- #include "libudev.h"
- #include "libudev-private.h"
-diff -ruPN eudev-3.1.5.old/src/libudev/libudev-enumerate.c 
eudev-3.1.5/src/libudev/libudev-enumerate.c
 eudev-3.1.5.old/src/libudev/libudev-enumerate.c2015-09-11 
14:54:26.0 -0400
-+++ eudev-3.1.5/src/libudev/libudev-enumerate.c2017-10-11 
21:44:36.279672250 -0400
-@@ -28,6 +28,7 @@
- #include 
- #include 
- #include 
-+#include 
- 
- #include "libudev.h"
- #include "libudev-private.h"
-diff -ruPN eudev-3.1.5.old/src/scsi_id/scsi_serial.c 
eudev-3.1.5/src/scsi_id/scsi_serial.c
 eudev-3.1.5.old/src/scsi_id/scsi_serial.c  2015-09-11 14:54:26.0 
-0400
-+++ eudev-3.1.5/src/scsi_id/scsi_serial.c  2017-10-11 21:45:20.195671614 
-0400
-@@ -36,6 +36,7 @@
- #include 
- #include 
- #include 
-+#include 
- 
- #include "libudev.h"
- #include "libudev-private.h"
-diff -ruPN eudev-3.1.5.old/src/udev/udevadm-info.c 
eudev-3.1.5/src/udev/udevadm-info.c
 eudev-3.1.5.old/src/udev/udevadm-info.c2015-09-11 14:54:26.0 
-0400
-+++ eudev-3.1.5/src/udev/udevadm-info.c2017-10-11 21:44:33.032672297 
-0400
-@@ -28,6 +28,7 @@
- #include 
- #include 
- #include 
-+#include 
- 
- #include "udev.h"
- #include "udev-util.h"
-diff -ruPN eudev-3.1.5.old/src/udev/udevd.c eudev-3.1.5/src/udev/udevd.c
 eudev-3.1.5.old/src/udev/udevd.c   2015-10-12 18:22:14.0 -0400
-+++ eudev-3.1.5/src/udev/udevd.c   2017-10-11 21:44:59.791671910 -0400
-@@ -45,6 +45,7 @@
- #include 
- #include 
- #include 
-+#include 
- 
- #include "udev.h"
- #include "udev-util.h"
-diff -ruPN eudev-3.1.5.old/src/udev/udev-event.c 
eudev-3.1.5/src/udev/udev-event.c
 eudev-3.1.5.old/src/udev/udev-event.c  2015-10-12 18:22:14.0 
-0400
-+++ eudev-3.1.5/src/udev/udev-event.c  2017-10-11 21:44:29.652672346 -0400
-@@ -33,6 +33,7 @@
- #include 
- #include 
- #include 
-+#include 
- 
- #include "udev.h"
- 
-diff -ruPN eudev-3.1.5.old/src/udev/udev-node.c 
eudev-3.1.5/src/udev/udev-node.c
 eudev-3.1.5.old/src/udev/udev-node.c   2015-09-11 14:54:26.0 
-0400
-+++ eudev-3.1.5/src/udev/udev-node.c   2017-10-11 21:44:25.864672401 -0400
-@@ -28,6 +28,7 @@
- #include 
- #include 
- #include 
-+#include 
- 
- #include "udev.h"
- #include "smack-util.h"
-diff -ruPN eudev-3.1.5.old/src/udev/udev-rules.c 
eudev-3.1.5/src/udev/udev-rules.c
 eudev-3.1.5.old/src/udev/udev-rules.c  2015-10-12 18:22:14.0 
-0400
-+++ eudev-3.1.5/src/udev/udev-rules.c  2017-10-11 21:44:21.611672463 -0400
-@@ -28,6 +28,7 @@
- #include 
- #include 
- #include 
-+#include 
- 
- #include "udev.h"
- #include "path-util.h"
-diff -ruPN eudev-3.1.5.old/test/test-libudev.c eudev-3.1.5/test/test-libudev.c
 eudev-3.1.5.old/test/test-libudev.c2015-09-11 14:54:26.0 
-0400
-+++ eudev-3.1.5/test/test-libudev.c2017-10-11 21:45:27.782671504 -0400
-@@ -27,6 +27,7 @@
- #include 
- #include 
- #include 
-+#include 
- 
- #include "libudev.h"
- #include "udev-util.h"



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

2019-03-07 Thread Thomas Deutschmann
commit: 4f346c841991f3ec74fecbfb555dd5a9889cdade
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Mar  7 22:45:36 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Mar  7 22:45:36 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f346c84

sys-kernel/gentoo-sources: x86 stable (bug #679558)

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Thomas Deutschmann  gentoo.org>

 sys-kernel/gentoo-sources/gentoo-sources-4.14.105-r1.ebuild | 2 +-
 sys-kernel/gentoo-sources/gentoo-sources-4.19.27-r1.ebuild  | 2 +-
 sys-kernel/gentoo-sources/gentoo-sources-4.4.176.ebuild | 2 +-
 sys-kernel/gentoo-sources/gentoo-sources-4.9.162-r1.ebuild  | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.14.105-r1.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.14.105-r1.ebuild
index ff96956ad60..63e34a9e95e 100644
--- a/sys-kernel/gentoo-sources/gentoo-sources-4.14.105-r1.ebuild
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.14.105-r1.ebuild
@@ -10,7 +10,7 @@ inherit kernel-2
 detect_version
 detect_arch
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc x86"
 HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches;
 IUSE="experimental"
 

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.19.27-r1.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.19.27-r1.ebuild
index f8eff7e19ae..51d502d7e7f 100644
--- a/sys-kernel/gentoo-sources/gentoo-sources-4.19.27-r1.ebuild
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.19.27-r1.ebuild
@@ -10,7 +10,7 @@ inherit kernel-2
 detect_version
 detect_arch
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh 
~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh 
~sparc x86"
 HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches;
 IUSE="experimental"
 

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.4.176.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.4.176.ebuild
index 0390a8660d5..8ae87d6379f 100644
--- a/sys-kernel/gentoo-sources/gentoo-sources-4.4.176.ebuild
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.4.176.ebuild
@@ -10,7 +10,7 @@ inherit kernel-2
 detect_version
 detect_arch
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc x86"
 HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches;
 IUSE="experimental"
 

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.9.162-r1.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.9.162-r1.ebuild
index 279c6de0543..dc24e502303 100644
--- a/sys-kernel/gentoo-sources/gentoo-sources-4.9.162-r1.ebuild
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.9.162-r1.ebuild
@@ -10,7 +10,7 @@ inherit kernel-2
 detect_version
 detect_arch
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc x86"
 HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches;
 IUSE="experimental"
 



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

2019-03-07 Thread Lars Wendler
commit: c423d5828bbe34733d2e61e43a8634cd59985c4e
Author: Lars Wendler  gentoo  org>
AuthorDate: Thu Mar  7 22:34:40 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Thu Mar  7 22:41:11 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c423d582

app-admin/keepassxc: Updated live ebuild.

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Lars Wendler  gentoo.org>

 app-admin/keepassxc/keepassxc-.ebuild | 34 ---
 1 file changed, 22 insertions(+), 12 deletions(-)

diff --git a/app-admin/keepassxc/keepassxc-.ebuild 
b/app-admin/keepassxc/keepassxc-.ebuild
index 69a10050827..1b5f2654570 100644
--- a/app-admin/keepassxc/keepassxc-.ebuild
+++ b/app-admin/keepassxc/keepassxc-.ebuild
@@ -1,17 +1,22 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
-inherit cmake-utils gnome2-utils xdg-utils
+inherit cmake-utils xdg
 
 DESCRIPTION="KeePassXC - KeePass Cross-platform Community Edition"
 HOMEPAGE="https://keepassxc.org;
 
 if [[ "${PV}" !=  ]] ; then
-   
#SRC_URI="https://github.com/keepassxreboot/keepassxc/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   
SRC_URI="https://github.com/keepassxreboot/keepassxc/releases/download/${PV}/${P}-src.tar.xz;
-   KEYWORDS="~amd64 ~x86"
+   if [[ "${PV}" == *_beta* ]] ; then
+   
SRC_URI="https://github.com/keepassxreboot/keepassxc/archive/${PV/_/-}.tar.gz 
-> ${P}.tar.gz"
+   S="${WORKDIR}/${P/_/-}"
+   else
+   
#SRC_URI="https://github.com/keepassxreboot/keepassxc/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+   
SRC_URI="https://github.com/keepassxreboot/keepassxc/releases/download/${PV}/${P}-src.tar.xz;
+   KEYWORDS="~amd64 ~x86"
+   fi
 else
inherit git-r3
EGIT_REPO_URI="https://github.com/keepassxreboot/${PN};
@@ -47,6 +52,11 @@ DEPEND="
dev-qt/qtconcurrent:5
 "
 
+# Not a runtime dependency but still needed (see bug #667092)
+PDEPEND="
+   x11-misc/xsel
+"
+
 src_prepare() {
 use test || \
sed -e "/^find_package(Qt5Test/d" -i CMakeLists.txt || die
@@ -68,14 +78,14 @@ src_configure() {
cmake-utils_src_configure
 }
 
+pkg_preinst() {
+   xdg_pkg_preinst
+}
+
 pkg_postinst() {
-   gnome2_icon_cache_update
-   xdg_desktop_database_update
-   xdg_mimeinfo_database_update
+   xdg_pkg_postinst
 }
 
 pkg_postrm() {
-   gnome2_icon_cache_update
-   xdg_desktop_database_update
-   xdg_mimeinfo_database_update
+   xdg_pkg_postrm
 }



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

2019-03-07 Thread Lars Wendler
commit: 8d3f96e9cfcbc192eb90b97aba6c841d7ab7c3c4
Author: Lars Wendler  gentoo  org>
AuthorDate: Thu Mar  7 22:42:39 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Thu Mar  7 22:42:39 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d3f96e9

app-admin/keepassxc: Bump to version 2.4.0_beta2

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Lars Wendler  gentoo.org>

 app-admin/keepassxc/Manifest |  1 +
 app-admin/keepassxc/keepassxc-2.4.0_beta2.ebuild | 91 
 2 files changed, 92 insertions(+)

diff --git a/app-admin/keepassxc/Manifest b/app-admin/keepassxc/Manifest
index 8d7898ccb78..18c2066c248 100644
--- a/app-admin/keepassxc/Manifest
+++ b/app-admin/keepassxc/Manifest
@@ -1,2 +1,3 @@
 DIST keepassxc-2.3.3-src.tar.xz 4113768 BLAKE2B 
7c599471b775ff8612968596765d05f2862ae21adc0bb0d595b5366ce55354c156e1df3940549bb955dd9e6609cbebbae3f108ae3eb8ccb0e85c83e9183a60d8
 SHA512 
155dda3c81ecb3be4638c634fe2dd7f96a54076b371a1f6ab95c33319ff2a50eaf941a1415f4272749a40d7fbcb3972604199f6a0445df4a22a4bac73c0b
 DIST keepassxc-2.3.4-src.tar.xz 4137176 BLAKE2B 
bbf8dbef5fb365f3c0d9332454b2b3bce7d4e411f43939ae683428ca669a459f1662bb8b1a1da228bc9447ee15349a5cd558e4fdfcc5194f22401f56003fd0f0
 SHA512 
edca22ef9d7c553d21d8ea6115a5635265176acc56fdf055f1961a3e65046de49ed5b67eb68ecf4f925226fb5bca140d5d473a5082301168f6a8bb7979f562a8
+DIST keepassxc-2.4.0_beta2.tar.gz 4740311 BLAKE2B 
071edbf9d985671d70c381bd4863a704af6ad172a22fcf23ee0e12c8ea2a723029626669ed37e2e2739e3a66106b00b4c73cdbaa8e43496d950363422d6df8cc
 SHA512 
5db8eb11a6aa42632bf2642af121063cb0df32fa1cda1beaea7c18e07c65049d3fa9a1a76643bd97ded80b7e5b2d403e9cd414c808faffdf2cb7e75c7f0578b1

diff --git a/app-admin/keepassxc/keepassxc-2.4.0_beta2.ebuild 
b/app-admin/keepassxc/keepassxc-2.4.0_beta2.ebuild
new file mode 100644
index 000..1b5f2654570
--- /dev/null
+++ b/app-admin/keepassxc/keepassxc-2.4.0_beta2.ebuild
@@ -0,0 +1,91 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake-utils xdg
+
+DESCRIPTION="KeePassXC - KeePass Cross-platform Community Edition"
+HOMEPAGE="https://keepassxc.org;
+
+if [[ "${PV}" !=  ]] ; then
+   if [[ "${PV}" == *_beta* ]] ; then
+   
SRC_URI="https://github.com/keepassxreboot/keepassxc/archive/${PV/_/-}.tar.gz 
-> ${P}.tar.gz"
+   S="${WORKDIR}/${P/_/-}"
+   else
+   
#SRC_URI="https://github.com/keepassxreboot/keepassxc/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+   
SRC_URI="https://github.com/keepassxreboot/keepassxc/releases/download/${PV}/${P}-src.tar.xz;
+   KEYWORDS="~amd64 ~x86"
+   fi
+else
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/keepassxreboot/${PN};
+fi
+
+LICENSE="LGPL-2.1 GPL-2 GPL-3"
+SLOT="0"
+IUSE="autotype browser debug network test yubikey"
+
+RDEPEND="
+   app-crypt/argon2:=
+   dev-libs/libgcrypt:=
+   dev-qt/qtcore:5
+   dev-qt/qtdbus:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5
+   dev-qt/qtwidgets:5
+   sys-libs/zlib
+   autotype? (
+   dev-qt/qtx11extras:5
+   x11-libs/libX11
+   x11-libs/libXi
+   x11-libs/libXtst
+   )
+   browser? ( >=dev-libs/libsodium-1.0.12 )
+   yubikey? ( sys-auth/ykpers )
+"
+
+DEPEND="
+   ${RDEPEND}
+   dev-qt/linguist-tools:5
+   dev-qt/qttest:5
+   dev-qt/qtconcurrent:5
+"
+
+# Not a runtime dependency but still needed (see bug #667092)
+PDEPEND="
+   x11-misc/xsel
+"
+
+src_prepare() {
+use test || \
+   sed -e "/^find_package(Qt5Test/d" -i CMakeLists.txt || die
+
+cmake-utils_src_prepare
+}
+
+src_configure() {
+   local mycmakeargs=(
+   -DWITH_GUI_TESTS=OFF
+   -DWITH_TESTS="$(usex test)"
+   -DWITH_XC_AUTOTYPE="$(usex autotype)"
+   -DWITH_XC_BROWSER="$(usex browser)"
+   -DWITH_XC_HTTP=OFF
+   -DWITH_XC_NETWORKING="$(usex network)"
+   -DWITH_XC_SSHAGENT=ON
+   -DWITH_XC_YUBIKEY="$(usex yubikey)"
+   )
+   cmake-utils_src_configure
+}
+
+pkg_preinst() {
+   xdg_pkg_preinst
+}
+
+pkg_postinst() {
+   xdg_pkg_postinst
+}
+
+pkg_postrm() {
+   xdg_pkg_postrm
+}



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

2019-03-07 Thread Lars Wendler
commit: 7217602014591e4fe9b787c32a3c22aed82ee919
Author: Lars Wendler  gentoo  org>
AuthorDate: Thu Mar  7 22:31:19 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Thu Mar  7 22:31:19 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72176020

app-admin/keepassxc: Revbump to depend on x11-misc/xsel

Closes: https://bugs.gentoo.org/667092
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Lars Wendler  gentoo.org>

 ...ssxc-2.3.4.ebuild => keepassxc-2.3.4-r1.ebuild} | 23 +-
 1 file changed, 14 insertions(+), 9 deletions(-)

diff --git a/app-admin/keepassxc/keepassxc-2.3.4.ebuild 
b/app-admin/keepassxc/keepassxc-2.3.4-r1.ebuild
similarity index 85%
rename from app-admin/keepassxc/keepassxc-2.3.4.ebuild
rename to app-admin/keepassxc/keepassxc-2.3.4-r1.ebuild
index 623e428fb79..222a7249efa 100644
--- a/app-admin/keepassxc/keepassxc-2.3.4.ebuild
+++ b/app-admin/keepassxc/keepassxc-2.3.4-r1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
-inherit cmake-utils gnome2-utils xdg-utils
+inherit cmake-utils xdg
 
 DESCRIPTION="KeePassXC - KeePass Cross-platform Community Edition"
 HOMEPAGE="https://keepassxc.org;
@@ -47,6 +47,11 @@ DEPEND="
dev-qt/qtconcurrent:5
 "
 
+# Not a runtime dependency but still needed (see bug #667092)
+PDEPEND="
+   x11-misc/xsel
+"
+
 PATCHES=(
"${FILESDIR}/${PN}-2.3.3-qt-5.11-edit-entry-widget-includes.patch" 
#655844
 )
@@ -72,14 +77,14 @@ src_configure() {
cmake-utils_src_configure
 }
 
+pkg_preinst() {
+   xdg_pkg_preinst
+}
+
 pkg_postinst() {
-   gnome2_icon_cache_update
-   xdg_desktop_database_update
-   xdg_mimeinfo_database_update
+   xdg_pkg_postinst
 }
 
 pkg_postrm() {
-   gnome2_icon_cache_update
-   xdg_desktop_database_update
-   xdg_mimeinfo_database_update
+   xdg_pkg_postrm
 }



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

2019-03-07 Thread Ben Kohler
commit: 724f5e04eb35f3ee23f0e14896afad6bb6219a9c
Author: Ben Kohler  gentoo  org>
AuthorDate: Thu Mar  7 22:35:39 2019 +
Commit: Ben Kohler  gentoo  org>
CommitDate: Thu Mar  7 22:35:39 2019 +
URL:https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=724f5e04

defaults/modules_load: add crc32c change here too

Signed-off-by: Ben Kohler  gentoo.org>

 defaults/modules_load | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/defaults/modules_load b/defaults/modules_load
index 99949aa..45c84b9 100644
--- a/defaults/modules_load
+++ b/defaults/modules_load
@@ -30,7 +30,7 @@ MODULES_USB="ehci-pci ehci-hcd uhci usb-ohci hid usb-storage 
uas uhci-hcd ohci-h
 MODULES_FS="ext2 ext3 ext4 btrfs reiserfs jfs nfs xfs zfs f2fs fuse loop 
squashfs aufs overlay cramfs configfs fscrypto efivarfs msdos qemu_fw_cfg"
 
 # Crypto
-MODULES_CRYPTO="sha256_generic cbc crc32c crc32_generic aes_generic xts"
+MODULES_CRYPTO="sha256_generic cbc crc32c_generic crc32c-intel crc32_generic 
aes_generic xts"
 
 # Virtio
 MODULES_VIRTIO="virtio_scsi virtio_blk virtio_console virtio-rng virtio 
virtio_balloon virtio_input virtio_ring virtio_pci virtio_mmio virtio_crypto 
virtio_net"



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

2019-03-07 Thread Ben Kohler
commit: dbb8d892712a632ca4de4e03c96c1c97ccd1f75d
Author: Ben Kohler  gentoo  org>
AuthorDate: Thu Mar  7 22:37:32 2019 +
Commit: Ben Kohler  gentoo  org>
CommitDate: Thu Mar  7 22:37:32 2019 +
URL:https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=dbb8d892

defaults/kernel-config: add DRM_ADMGPU here too

Signed-off-by: Ben Kohler  gentoo.org>

 defaults/kernel-config | 1 +
 defaults/kernel-generic-config | 1 +
 2 files changed, 2 insertions(+)

diff --git a/defaults/kernel-config b/defaults/kernel-config
index 046a9f3..80909ea 100644
--- a/defaults/kernel-config
+++ b/defaults/kernel-config
@@ -2561,6 +2561,7 @@ CONFIG_DRM=m
 CONFIG_DRM_TDFX=m
 CONFIG_DRM_R128=m
 CONFIG_DRM_RADEON=m
+CONFIG_DRM_AMDGPU=m
 CONFIG_DRM_I810=m
 CONFIG_DRM_I830=m
 CONFIG_DRM_I915=m

diff --git a/defaults/kernel-generic-config b/defaults/kernel-generic-config
index 369c6d1..6bd2d32 100644
--- a/defaults/kernel-generic-config
+++ b/defaults/kernel-generic-config
@@ -2493,6 +2493,7 @@ CONFIG_DRM=m
 CONFIG_DRM_R128=m
 CONFIG_DRM_RADEON=m
 CONFIG_DRM_RADEON_KMS=y
+CONFIG_DRM_AMDGPU=m
 # CONFIG_DRM_I810 is not set
 # CONFIG_DRM_I830 is not set
 CONFIG_DRM_MGA=m



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

2019-03-07 Thread Lars Wendler
commit: 65328e8c4b7793f4fa9522d35cfb13e1767c18ce
Author: Lars Wendler  gentoo  org>
AuthorDate: Thu Mar  7 22:08:38 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Thu Mar  7 22:19:41 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65328e8c

app-shells/bash: Revbump to add a couple of fixes

Closes: https://bugs.gentoo.org/676114
Closes: https://github.com/gentoo/gentoo/pull/10949
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Lars Wendler  gentoo.org>

 app-shells/bash/bash-5.0_p2-r1.ebuild  | 267 +
 .../bash/files/bash-5.0-globpat-backslashes.patch  | 174 ++
 .../bash/files/bash-5.0-history-append.patch   |  34 +++
 .../bash/files/bash-5.0-history-zero-length.patch  |  34 +++
 .../files/bash-5.0-optimize-connection-fork.patch  |  79 ++
 .../files/bash-5.0-syslog-history-extern.patch |  15 ++
 6 files changed, 603 insertions(+)

diff --git a/app-shells/bash/bash-5.0_p2-r1.ebuild 
b/app-shells/bash/bash-5.0_p2-r1.ebuild
new file mode 100644
index 000..fc03471826e
--- /dev/null
+++ b/app-shells/bash/bash-5.0_p2-r1.ebuild
@@ -0,0 +1,267 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit flag-o-matic toolchain-funcs multilib prefix
+
+# Official patchlevel
+# See ftp://ftp.cwru.edu/pub/bash/bash-4.4-patches/
+PLEVEL=${PV##*_p}
+MY_PV=${PV/_p*}
+MY_PV=${MY_PV/_/-}
+MY_P=${PN}-${MY_PV}
+is_release() {
+   case ${PV} in
+   *_alpha*|*_beta*|*_rc*) return 1 ;;
+   *) return 0 ;;
+   esac
+}
+[[ ${PV} != *_p* ]] && PLEVEL=0
+patches() {
+   local opt=$1 plevel=${2:-${PLEVEL}} pn=${3:-${PN}} pv=${4:-${MY_PV}}
+   [[ ${plevel} -eq 0 ]] && return 1
+   eval set -- {1..${plevel}}
+   set -- $(printf "${pn}${pv/\.}-%03d " "$@")
+   if [[ ${opt} == -s ]] ; then
+   echo "${@/#/${DISTDIR}/}"
+   else
+   local u
+   for u in ftp://ftp.cwru.edu/pub/bash mirror://gnu/${pn} ; do
+   printf "${u}/${pn}-${pv}-patches/%s " "$@"
+   done
+   fi
+}
+
+# The version of readline this bash normally ships with.
+READLINE_VER="8.0"
+
+DESCRIPTION="The standard GNU Bourne again shell"
+HOMEPAGE="http://tiswww.case.edu/php/chet/bash/bashtop.html;
+if is_release ; then
+   SRC_URI="mirror://gnu/bash/${MY_P}.tar.gz $(patches)"
+else
+   SRC_URI="ftp://ftp.cwru.edu/pub/bash/${MY_P}.tar.gz;
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE="afs bashlogger examples mem-scramble +net nls plugins +readline"
+
+DEPEND="
+   >=sys-libs/ncurses-5.2-r2:0=
+   readline? ( >=sys-libs/readline-${READLINE_VER}:0= )
+   nls? ( virtual/libintl )
+"
+RDEPEND="
+   ${DEPEND}
+   ! 0 && glob_pattern_p (directory_name))
+  {
+char **directories, *d, *p;
+--- 1127,1136 
+  }
+  
++   hasglob = 0;
+/* If directory_name contains globbing characters, then we
+!  have to expand the previous levels.  Just recurse.
+!  If glob_pattern_p returns != [0,1] we have a pattern that has backslash
+!  quotes but no unquoted glob pattern characters. We dequote it below. */
+!   if (directory_len > 0 && (hasglob = glob_pattern_p (directory_name)) == 1)
+  {
+char **directories, *d, *p;
+***
+*** 1333,1336 
+--- 1352,1360 
+ return (NULL);
+   }
++   if (directory_len > 0 && hasglob == 2) /* need to dequote */
++  {
++dequote_pathname (directory_name);
++directory_len = strlen (directory_name);
++  }
+/* Handle GX_MARKDIRS here. */
+result[0] = (char *) malloc (directory_len + 1);
+*** ../bash-5.0-patched/pathexp.c  2018-04-29 17:44:48.0 -0400
+--- pathexp.c  2019-01-31 20:19:41.0 -0500
+***
+*** 66,74 
+register int c;
+char *send;
+!   int open;
+  
+DECLARE_MBSTATE;
+  
+!   open = 0;
+send = string + strlen (string);
+  
+--- 66,74 
+register int c;
+char *send;
+!   int open, bsquote;
+  
+DECLARE_MBSTATE;
+  
+!   open = bsquote = 0;
+send = string + strlen (string);
+  
+***
+*** 101,105 
+  globbing. */
+   case '\\':
+!return (*string != 0);
+ 
+   case CTLESC:
+--- 101,112 
+  globbing. */
+   case '\\':
+!if (*string != '\0' && *string != '/')
+!  {
+!bsquote = 1;
+!string++;
+!continue;
+!  }
+!else if (*string == 0)
+!  return (0);
+ 
+   case CTLESC:
+***
+*** 118,122 
+  #endif
+ 

[gentoo-commits] repo/gentoo:master commit in: net-fs/samba/

2019-03-07 Thread Lars Wendler
commit: e01c5ca5cad7c08707918d0ff6364b8b10652a52
Author: Lars Wendler  gentoo  org>
AuthorDate: Thu Mar  7 17:12:07 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Thu Mar  7 22:19:40 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e01c5ca5

net-fs/samba: Bump to version 4.10.0_rc4. Removed old.

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Lars Wendler  gentoo.org>

 net-fs/samba/Manifest | 2 +-
 net-fs/samba/{samba-4.10.0_rc3.ebuild => samba-4.10.0_rc4.ebuild} | 8 
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/net-fs/samba/Manifest b/net-fs/samba/Manifest
index cba555ae7d6..3e54c109538 100644
--- a/net-fs/samba/Manifest
+++ b/net-fs/samba/Manifest
@@ -1,4 +1,4 @@
-DIST samba-4.10.0rc3.tar.gz 18263153 BLAKE2B 
754a86bd63f9792e21760dfd4f5bde2f7857c0b85226ab9d07e1604ee6bfd2c1341e8e0cb5c4b15d32413cb20423fa28a815d08f1df8d66a7fadcb16ecd9f7df
 SHA512 
837be83a5b1478656f9ad0d4dc5ad1681d834155afc710a145ec59f17fdd90471e6d1040da7d5343b7140290d21440fcbbc0487161db2e2a2e342494e0b30a2c
+DIST samba-4.10.0rc4.tar.gz 18271083 BLAKE2B 
761e3c971992a66ab429db33ce6b2ff308feb6397bdbb90c6566325336fd7f5afad89a420ac8bf26ba6e9dab423ec187095e47e8f9b81c13972297ed2aa601fe
 SHA512 
6e2de0fa732b19b524624716b6c1fe8ffaf9e7dab9dbee30b70f3e496a11fd79703720ee5a4dc5ebafeb67c6c19baf2d3032f796c4eaa4f04deb9d2c2b172362
 DIST samba-4.5.11-disable-python-patches.tar.xz 6292 BLAKE2B 
c2a32a1059a02bc1c87ce5f604cbc5878c654b8f693c8486b5ba63b37513444915a7b6389fe82b7e31ab2f9577dd8462eddba60b4f4f756b4ed1145ce7bd90ae
 SHA512 
f0e3076e3e1ecaae3f06b3ef30efc81719fb3f63a1041dcbdae4b62ca4cf693732f9eb16f047d046d4930136fed82194e82b455ea888e12cf845b3e6a122d57d
 DIST samba-4.5.16.tar.gz 21024396 BLAKE2B 
e737559fb748044076608fa233700eb54c7e1c56bc234763f062b6341a179cc78a4a8cdf9f3d6f4d7f3cf8a79f846852ddd5cc753a468c3adb3a0451e1809ed9
 SHA512 
de8a41013cfb5ef3adcb290efd97a78a5de876d90ad05764d631f14e663a1849bb53e4ac394b46c906f1109be5748fee9316407a659c57007d36851ae8adcd7f
 DIST samba-4.7.12.tar.gz 16923189 BLAKE2B 
98ea5e535482a4cdfeb4f9ad70bc8c40bb6d5a8920ce9bc6dda84f20698245c3c5d472a5f79984efc81f9c32d1d1e72b1fcdffb137e3a27634f4c521a1d46a48
 SHA512 
951dfc0ea7130da9d9aa3069ca276e630d67171a1995dba368459e0cdf00337d0f6271827bffec694371010614a1a7ce2349840ddedd0231315f6a56dce2fcac

diff --git a/net-fs/samba/samba-4.10.0_rc3.ebuild 
b/net-fs/samba/samba-4.10.0_rc4.ebuild
similarity index 97%
rename from net-fs/samba/samba-4.10.0_rc3.ebuild
rename to net-fs/samba/samba-4.10.0_rc4.ebuild
index 5374cc18d84..3dd2aa09db2 100644
--- a/net-fs/samba/samba-4.10.0_rc3.ebuild
+++ b/net-fs/samba/samba-4.10.0_rc4.ebuild
@@ -49,14 +49,14 @@ CDEPEND="
>=dev-util/cmocka-1.1.1[${MULTILIB_USEDEP}]
net-libs/libnsl:=[${MULTILIB_USEDEP}]
sys-apps/attr[${MULTILIB_USEDEP}]
-   
>=sys-libs/ldb-1.5.3[ldap(+)?,python?,${PYTHON_USEDEP},${MULTILIB_USEDEP}]
+   
>=sys-libs/ldb-1.5.4[ldap(+)?,python?,${PYTHON_USEDEP},${MULTILIB_USEDEP}]

=sys-libs/talloc-2.1.15[python?,${PYTHON_USEDEP},${MULTILIB_USEDEP}]
-   >=sys-libs/tdb-1.3.17[python?,${PYTHON_USEDEP},${MULTILIB_USEDEP}]
-   >=sys-libs/tevent-0.9.38[python?,${PYTHON_USEDEP},${MULTILIB_USEDEP}]
+   >=sys-libs/talloc-2.1.16[python?,${PYTHON_USEDEP},${MULTILIB_USEDEP}]
+   >=sys-libs/tdb-1.3.18[python?,${PYTHON_USEDEP},${MULTILIB_USEDEP}]
+   >=sys-libs/tevent-0.9.39[python?,${PYTHON_USEDEP},${MULTILIB_USEDEP}]
sys-libs/zlib[${MULTILIB_USEDEP}]
virtual/libiconv
pam? ( virtual/pam )



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

2019-03-07 Thread Lars Wendler
commit: aa4c676bbdb49bee141af4f3de854d9a2206e023
Author: Lars Wendler  gentoo  org>
AuthorDate: Thu Mar  7 22:15:04 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Thu Mar  7 22:19:42 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa4c676b

app-shells/bash: Minor comment fixes.

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Lars Wendler  gentoo.org>

 app-shells/bash/bash-5.0_p2-r1.ebuild | 2 +-
 app-shells/bash/bash-5.0_p2.ebuild| 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-shells/bash/bash-5.0_p2-r1.ebuild 
b/app-shells/bash/bash-5.0_p2-r1.ebuild
index fc03471826e..9410c85e0ce 100644
--- a/app-shells/bash/bash-5.0_p2-r1.ebuild
+++ b/app-shells/bash/bash-5.0_p2-r1.ebuild
@@ -6,7 +6,7 @@ EAPI=6
 inherit flag-o-matic toolchain-funcs multilib prefix
 
 # Official patchlevel
-# See ftp://ftp.cwru.edu/pub/bash/bash-4.4-patches/
+# See ftp://ftp.cwru.edu/pub/bash/bash-5.0-patches/
 PLEVEL=${PV##*_p}
 MY_PV=${PV/_p*}
 MY_PV=${MY_PV/_/-}

diff --git a/app-shells/bash/bash-5.0_p2.ebuild 
b/app-shells/bash/bash-5.0_p2.ebuild
index 9b2b1d119e7..7572f931eab 100644
--- a/app-shells/bash/bash-5.0_p2.ebuild
+++ b/app-shells/bash/bash-5.0_p2.ebuild
@@ -6,7 +6,7 @@ EAPI=6
 inherit flag-o-matic toolchain-funcs multilib prefix
 
 # Official patchlevel
-# See ftp://ftp.cwru.edu/pub/bash/bash-4.4-patches/
+# See ftp://ftp.cwru.edu/pub/bash/bash-5.0-patches/
 PLEVEL=${PV##*_p}
 MY_PV=${PV/_p*}
 MY_PV=${MY_PV/_/-}



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

2019-03-07 Thread Lars Wendler
commit: f5a7b1f7ec507d2646b230f1c238d8cad3244459
Author: Lars Wendler  gentoo  org>
AuthorDate: Thu Mar  7 22:18:46 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Thu Mar  7 22:19:43 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5a7b1f7

app-shells/bash: Removed old.

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Lars Wendler  gentoo.org>

 app-shells/bash/bash-4.4_p12.ebuild| 253 
 app-shells/bash/bash-5.0.ebuild| 259 -
 .../files/bash-5.0-glob-pattern-backslash.patch| 133 ---
 3 files changed, 645 deletions(-)

diff --git a/app-shells/bash/bash-4.4_p12.ebuild 
b/app-shells/bash/bash-4.4_p12.ebuild
deleted file mode 100644
index 2ebe6c54d4b..000
--- a/app-shells/bash/bash-4.4_p12.ebuild
+++ /dev/null
@@ -1,253 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-inherit eutils flag-o-matic toolchain-funcs multilib prefix
-
-# Official patchlevel
-# See ftp://ftp.cwru.edu/pub/bash/bash-4.4-patches/
-PLEVEL=${PV##*_p}
-MY_PV=${PV/_p*}
-MY_PV=${MY_PV/_/-}
-MY_P=${PN}-${MY_PV}
-is_release() {
-   case ${PV} in
-   *_alpha*|*_beta*|*_rc*) return 1 ;;
-   *) return 0 ;;
-   esac
-}
-[[ ${PV} != *_p* ]] && PLEVEL=0
-patches() {
-   local opt=$1 plevel=${2:-${PLEVEL}} pn=${3:-${PN}} pv=${4:-${MY_PV}}
-   [[ ${plevel} -eq 0 ]] && return 1
-   eval set -- {1..${plevel}}
-   set -- $(printf "${pn}${pv/\.}-%03d " "$@")
-   if [[ ${opt} == -s ]] ; then
-   echo "${@/#/${DISTDIR}/}"
-   else
-   local u
-   for u in ftp://ftp.cwru.edu/pub/bash mirror://gnu/${pn} ; do
-   printf "${u}/${pn}-${pv}-patches/%s " "$@"
-   done
-   fi
-}
-
-# The version of readline this bash normally ships with.
-READLINE_VER="7.0"
-
-DESCRIPTION="The standard GNU Bourne again shell"
-HOMEPAGE="http://tiswww.case.edu/php/chet/bash/bashtop.html;
-if is_release ; then
-   SRC_URI="mirror://gnu/bash/${MY_P}.tar.gz $(patches)"
-else
-   SRC_URI="ftp://ftp.cwru.edu/pub/bash/${MY_P}.tar.gz;
-fi
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~amd64-fbsd ~x86-fbsd"
-IUSE="afs bashlogger examples mem-scramble +net nls plugins +readline"
-
-DEPEND=">=sys-libs/ncurses-5.2-r2:0=
-   readline? ( >=sys-libs/readline-${READLINE_VER}:0= )
-   nls? ( virtual/libintl )"
-RDEPEND="${DEPEND}
-   !ftp://ftp.cwru.edu/pub/bash/bash-4.4-patches/
-PLEVEL=${PV##*_p}
-MY_PV=${PV/_p*}
-MY_PV=${MY_PV/_/-}
-MY_P=${PN}-${MY_PV}
-is_release() {
-   case ${PV} in
-   *_alpha*|*_beta*|*_rc*) return 1 ;;
-   *) return 0 ;;
-   esac
-}
-[[ ${PV} != *_p* ]] && PLEVEL=0
-patches() {
-   local opt=$1 plevel=${2:-${PLEVEL}} pn=${3:-${PN}} pv=${4:-${MY_PV}}
-   [[ ${plevel} -eq 0 ]] && return 1
-   eval set -- {1..${plevel}}
-   set -- $(printf "${pn}${pv/\.}-%03d " "$@")
-   if [[ ${opt} == -s ]] ; then
-   echo "${@/#/${DISTDIR}/}"
-   else
-   local u
-   for u in ftp://ftp.cwru.edu/pub/bash mirror://gnu/${pn} ; do
-   printf "${u}/${pn}-${pv}-patches/%s " "$@"
-   done
-   fi
-}
-
-# The version of readline this bash normally ships with.
-READLINE_VER="8.0"
-
-DESCRIPTION="The standard GNU Bourne again shell"
-HOMEPAGE="http://tiswww.case.edu/php/chet/bash/bashtop.html;
-if is_release ; then
-   SRC_URI="mirror://gnu/bash/${MY_P}.tar.gz $(patches)"
-else
-   SRC_URI="ftp://ftp.cwru.edu/pub/bash/${MY_P}.tar.gz;
-fi
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE="afs bashlogger examples mem-scramble +net nls plugins +readline"
-
-DEPEND="
-   >=sys-libs/ncurses-5.2-r2:0=
-   readline? ( >=sys-libs/readline-${READLINE_VER}:0= )
-   nls? ( virtual/libintl )
-"
-RDEPEND="
-   ${DEPEND}
-   !

[gentoo-commits] repo/gentoo:master commit in: sys-fs/lsscsi/

2019-03-07 Thread Sergei Trofimovich
commit: 02607e588dfba9e426789304013e7b21707d0340
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Mar  7 20:33:53 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Mar  7 22:02:51 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02607e58

sys-fs/lsscsi: stable 0.29 for hppa, bug #667022

Signed-off-by: Rolf Eike Beer  sf-mail.de>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 sys-fs/lsscsi/lsscsi-0.29.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-fs/lsscsi/lsscsi-0.29.ebuild b/sys-fs/lsscsi/lsscsi-0.29.ebuild
index 67ee2124215..5267da98720 100644
--- a/sys-fs/lsscsi/lsscsi-0.29.ebuild
+++ b/sys-fs/lsscsi/lsscsi-0.29.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -9,4 +9,4 @@ SRC_URI="http://sg.danny.cz/scsi/${P}.tgz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 sparc x86"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 sparc x86"



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

2019-03-07 Thread Sergei Trofimovich
commit: a3ff8e0b71160088caae3676f9f7b6aae5a63ac2
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Mar  7 20:33:06 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Mar  7 22:02:44 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a3ff8e0b

net-misc/openssh: stable 7.9_p1-r3 for sparc, bug #675522

Signed-off-by: Rolf Eike Beer  sf-mail.de>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 net-misc/openssh/openssh-7.9_p1-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/openssh/openssh-7.9_p1-r3.ebuild 
b/net-misc/openssh/openssh-7.9_p1-r3.ebuild
index b951023e464..f8a2eb14eef 100644
--- a/net-misc/openssh/openssh-7.9_p1-r3.ebuild
+++ b/net-misc/openssh/openssh-7.9_p1-r3.ebuild
@@ -33,7 +33,7 @@ SRC_URI="mirror://openbsd/OpenSSH/portable/${PARCH}.tar.gz
 
 LICENSE="BSD GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 # Probably want to drop ssl defaulting to on in a future version.
 IUSE="abi_mips_n32 audit bindist debug hpn kerberos kernel_linux ldns libedit 
libressl livecd pam +pie sctp selinux +ssl static test X X509"
 RESTRICT="!test? ( test )"



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

2019-03-07 Thread William Hubbs
commit: 0a5d69bc6cbccb7c2681fa442c2417991aaad5c9
Author: William Hubbs  sony  com>
AuthorDate: Thu Mar  7 21:55:24 2019 +
Commit: William Hubbs  gentoo  org>
CommitDate: Thu Mar  7 21:57:12 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a5d69bc

dev-python/pytest-testmon: take TDD to a new level with py.test and testmon

Copyright: Sony Interactive Entertainment Inc.
Package-Manager: Portage-2.3.51, Repoman-2.3.12
Signed-off-by: William Hubbs  gentoo.org>

 dev-python/pytest-testmon/Manifest |  1 +
 dev-python/pytest-testmon/metadata.xml |  8 +++
 .../pytest-testmon/pytest-testmon-0.9.15.ebuild| 26 ++
 3 files changed, 35 insertions(+)

diff --git a/dev-python/pytest-testmon/Manifest 
b/dev-python/pytest-testmon/Manifest
new file mode 100644
index 000..b56efbe0dbe
--- /dev/null
+++ b/dev-python/pytest-testmon/Manifest
@@ -0,0 +1 @@
+DIST pytest-testmon-0.9.15.tar.gz 32468 BLAKE2B 
72678f4a5ed9bbc1ee6a4ec611da105554856454dcd3a3f199084645977d7ce461697218c460f9ae3b5a56bd90843822e5e88c54fb43f55a12f2c31d4ea53658
 SHA512 
fb414c492188f59e34a5f940e9f378cc841dd9de311738a0238980318261f51b869c30e1218e3219dabf8c438f28bcb9b10f751c07240b533ead537f4b6d8d4e

diff --git a/dev-python/pytest-testmon/metadata.xml 
b/dev-python/pytest-testmon/metadata.xml
new file mode 100644
index 000..c36c37139fa
--- /dev/null
+++ b/dev-python/pytest-testmon/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   willi...@gentoo.org
+   William Hubbs
+   
+

diff --git a/dev-python/pytest-testmon/pytest-testmon-0.9.15.ebuild 
b/dev-python/pytest-testmon/pytest-testmon-0.9.15.ebuild
new file mode 100644
index 000..c5e588074fd
--- /dev/null
+++ b/dev-python/pytest-testmon/pytest-testmon-0.9.15.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
+inherit distutils-r1
+
+DESCRIPTION="take TDD to a new level with py.test and testmon"
+HOMEPAGE="https://github.com/tarpas/pytest-testmon;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+
+RDEPEND="dev-python/pytest[${PYTHON_USEDEP}]
+dev-python/coverage[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+   dev-python/setuptools[${PYTHON_USEDEP}]"
+
+python_test() {
+   distutils_install_for_testing
+   py.test -v || die "Tests fail with ${EPYTHON}"
+}



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

2019-03-07 Thread Thomas Deutschmann
commit: 1255115fcbf016b59f159a295ae97c9cae255853
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Mar  7 21:45:34 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Mar  7 21:50:20 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1255115f

x11-plugins/wmnd: x86 stable (bug #678588)

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Thomas Deutschmann  gentoo.org>

 x11-plugins/wmnd/wmnd-0.4.17-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/x11-plugins/wmnd/wmnd-0.4.17-r1.ebuild 
b/x11-plugins/wmnd/wmnd-0.4.17-r1.ebuild
index 2ff4dd22db8..5174401be2c 100644
--- a/x11-plugins/wmnd/wmnd-0.4.17-r1.ebuild
+++ b/x11-plugins/wmnd/wmnd-0.4.17-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -9,7 +9,7 @@ 
SRC_URI="https://www.thregr.org/~wavexx/software/wmnd/releases/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~x64-solaris"
+KEYWORDS="~amd64 ~ppc x86 ~amd64-linux ~x86-linux ~x64-solaris"
 IUSE="snmp"
 
 RDEPEND="x11-libs/libX11



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

2019-03-07 Thread Thomas Deutschmann
commit: c58d732113cd23e4a09a105297a5ff5a1ca2b899
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Mar  7 21:42:57 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Mar  7 21:50:14 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c58d7321

sys-apps/makedev: x86 stable (bug #679452)

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Thomas Deutschmann  gentoo.org>

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

diff --git a/sys-apps/makedev/makedev-3.23.1-r1.ebuild 
b/sys-apps/makedev/makedev-3.23.1-r1.ebuild
index 3d490dc50ca..81a4be36805 100644
--- a/sys-apps/makedev/makedev-3.23.1-r1.ebuild
+++ b/sys-apps/makedev/makedev-3.23.1-r1.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://people.redhat.com/nalin/MAKEDEV/${MY_P}-${MY_REL}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh sparc x86"
 IUSE="build selinux"
 
 RDEPEND="!

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

2019-03-07 Thread Thomas Deutschmann
commit: 341602749042079aac6da2bc0f2e1fd8323af4d3
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Mar  7 21:43:49 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Mar  7 21:50:15 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34160274

net-misc/openssh: x86 stable (bug #675522)

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Thomas Deutschmann  gentoo.org>

 net-misc/openssh/openssh-7.9_p1-r4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/openssh/openssh-7.9_p1-r4.ebuild 
b/net-misc/openssh/openssh-7.9_p1-r4.ebuild
index 932cb4d10fc..f108a54dd01 100644
--- a/net-misc/openssh/openssh-7.9_p1-r4.ebuild
+++ b/net-misc/openssh/openssh-7.9_p1-r4.ebuild
@@ -33,7 +33,7 @@ SRC_URI="mirror://openbsd/OpenSSH/portable/${PARCH}.tar.gz
 
 LICENSE="BSD GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 # Probably want to drop ssl defaulting to on in a future version.
 IUSE="abi_mips_n32 audit bindist debug hpn kerberos kernel_linux ldns libedit 
libressl livecd pam +pie sctp selinux +ssl static test X X509"
 RESTRICT="!test? ( test )"



[gentoo-commits] repo/gentoo:master commit in: dev-tex/culmus-latex/

2019-03-07 Thread Thomas Deutschmann
commit: 644cee67a5d6e016b6d0af538b1bb55ec50b9466
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Mar  7 21:41:26 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Mar  7 21:50:11 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=644cee67

dev-tex/culmus-latex: x86 stable (bug #679460)

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Thomas Deutschmann  gentoo.org>

 dev-tex/culmus-latex/culmus-latex-0.7-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-tex/culmus-latex/culmus-latex-0.7-r1.ebuild 
b/dev-tex/culmus-latex/culmus-latex-0.7-r1.ebuild
index 266e2aad82a..0781f8caa59 100644
--- a/dev-tex/culmus-latex/culmus-latex-0.7-r1.ebuild
+++ b/dev-tex/culmus-latex/culmus-latex-0.7-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/ivritex/${P}_src.tar.gz -> 
${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 sparc x86"
 IUSE="examples"
 
 RDEPEND="virtual/latex-base"



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

2019-03-07 Thread Thomas Deutschmann
commit: e3325a3e8ebee06e13041cd9fe8bbfa31fc802ee
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Mar  7 21:45:17 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Mar  7 21:50:19 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3325a3e

x11-plugins/wmmon: x86 stable (bug #678588)

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Thomas Deutschmann  gentoo.org>

 x11-plugins/wmmon/wmmon-1.4.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/x11-plugins/wmmon/wmmon-1.4.ebuild 
b/x11-plugins/wmmon/wmmon-1.4.ebuild
index 921742857e8..36a6b74ce55 100644
--- a/x11-plugins/wmmon/wmmon-1.4.ebuild
+++ b/x11-plugins/wmmon/wmmon-1.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -9,7 +9,7 @@ SRC_URI="https://www.dockapps.net/download/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+KEYWORDS="~amd64 ~ppc ~sparc x86"
 IUSE=""
 
 RDEPEND=">=x11-libs/libdockapp-0.7:=



[gentoo-commits] repo/gentoo:master commit in: dev-db/lmdb/

2019-03-07 Thread Thomas Deutschmann
commit: 906f8e8d6538fe506803cca4bed1f706d1e27064
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Mar  7 21:42:31 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Mar  7 21:50:13 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=906f8e8d

dev-db/lmdb: x86 stable (bug #678696)

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Thomas Deutschmann  gentoo.org>

 dev-db/lmdb/lmdb-0.9.23.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-db/lmdb/lmdb-0.9.23.ebuild b/dev-db/lmdb/lmdb-0.9.23.ebuild
index ea820a73ff1..8e3cff203af 100644
--- a/dev-db/lmdb/lmdb-0.9.23.ebuild
+++ b/dev-db/lmdb/lmdb-0.9.23.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/LMDB/lmdb/archive/LMDB_${PV}.tar.gz;
 
 LICENSE="OPENLDAP"
 SLOT="0/${PV}"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh sparc 
~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh sparc x86 
~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~x64-solaris ~x86-solaris"
 IUSE="static-libs"
 
 DEPEND=""



[gentoo-commits] repo/gentoo:master commit in: sys-cluster/galera/

2019-03-07 Thread Thomas Deutschmann
commit: 0502501372d853e2e85c589cfdeacb8729216a18
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Mar  7 21:42:05 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Mar  7 21:50:12 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05025013

sys-cluster/galera: x86 stable (bug #672438)

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Thomas Deutschmann  gentoo.org>

 sys-cluster/galera/galera-25.3.25.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-cluster/galera/galera-25.3.25.ebuild 
b/sys-cluster/galera/galera-25.3.25.ebuild
index 63c58040a94..5c2fe5ea75b 100644
--- a/sys-cluster/galera/galera-25.3.25.ebuild
+++ b/sys-cluster/galera/galera-25.3.25.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -15,7 +15,7 @@ LICENSE="GPL-2 BSD"
 
 SLOT="0"
 
-KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 x86"
 IUSE="cpu_flags_x86_sse4_2 garbd test"
 
 CDEPEND="



[gentoo-commits] repo/gentoo:master commit in: sys-process/supervise-scripts/

2019-03-07 Thread Thomas Deutschmann
commit: 783f12cd0e4ac9747cc8c665ca5d0bb117adc781
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Mar  7 21:44:59 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Mar  7 21:50:18 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=783f12cd

sys-process/supervise-scripts: x86 stable (bug #679104)

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Thomas Deutschmann  gentoo.org>

 sys-process/supervise-scripts/supervise-scripts-4.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/supervise-scripts/supervise-scripts-4.0-r1.ebuild 
b/sys-process/supervise-scripts/supervise-scripts-4.0-r1.ebuild
index 8f635627b9e..81196f403fc 100644
--- a/sys-process/supervise-scripts/supervise-scripts-4.0-r1.ebuild
+++ b/sys-process/supervise-scripts/supervise-scripts-4.0-r1.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="http://untroubled.org/supervise-scripts/archive/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~ppc sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~ppc sparc x86"
 IUSE="doc"
 
 RDEPEND="virtual/daemontools"



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtnetworkauth/

2019-03-07 Thread Thomas Deutschmann
commit: f3f67599c513c3d807cf59c25ea586d8f8118810
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Mar  7 21:44:02 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Mar  7 21:50:16 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3f67599

dev-qt/qtnetworkauth: x86 stable (bug #678192)

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Thomas Deutschmann  gentoo.org>

 dev-qt/qtnetworkauth/qtnetworkauth-5.11.3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-qt/qtnetworkauth/qtnetworkauth-5.11.3.ebuild 
b/dev-qt/qtnetworkauth/qtnetworkauth-5.11.3.ebuild
index d4809b78213..198a6ef2623 100644
--- a/dev-qt/qtnetworkauth/qtnetworkauth-5.11.3.ebuild
+++ b/dev-qt/qtnetworkauth/qtnetworkauth-5.11.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -8,7 +8,7 @@ DESCRIPTION="Network authorization library for the Qt5 
framework"
 LICENSE="GPL-3"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 ~x86"
+   KEYWORDS="~amd64 x86"
 fi
 
 IUSE=""



[gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmweather+/

2019-03-07 Thread Thomas Deutschmann
commit: bdb1829b96aa229a7c8e561ae106b8c3cdbcd6d7
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Mar  7 21:45:57 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Mar  7 21:50:21 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bdb1829b

x11-plugins/wmweather+: x86 stable (bug #678588)

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Thomas Deutschmann  gentoo.org>

 x11-plugins/wmweather+/wmweather+-2.17.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/x11-plugins/wmweather+/wmweather+-2.17.ebuild 
b/x11-plugins/wmweather+/wmweather+-2.17.ebuild
index e5a57ede9f1..1045e96c8da 100644
--- a/x11-plugins/wmweather+/wmweather+-2.17.ebuild
+++ b/x11-plugins/wmweather+/wmweather+-2.17.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -9,7 +9,7 @@ SRC_URI="mirror://sourceforge/wmweatherplus/${P}.tar.gz"
 
 SLOT="0"
 LICENSE="GPL-2"
-KEYWORDS="~amd64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~amd64 ~mips ~ppc ~ppc64 ~sparc x86"
 IUSE=""
 
 DEPEND="dev-libs/libpcre



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/rubygems/

2019-03-07 Thread Thomas Deutschmann
commit: b3c52752b878ac2ef5dbb107ae98d28aeb5ec00f
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Mar  7 21:44:42 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Mar  7 21:50:17 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3c52752

dev-ruby/rubygems: x86 stable (bug #679490)

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Thomas Deutschmann  gentoo.org>

 dev-ruby/rubygems/rubygems-2.7.9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/rubygems/rubygems-2.7.9.ebuild 
b/dev-ruby/rubygems/rubygems-2.7.9.ebuild
index 3acce2b5a99..88c7f3917aa 100644
--- a/dev-ruby/rubygems/rubygems-2.7.9.ebuild
+++ b/dev-ruby/rubygems/rubygems-2.7.9.ebuild
@@ -13,7 +13,7 @@ LICENSE="GPL-2 || ( Ruby MIT )"
 
 SRC_URI="https://rubygems.org/rubygems/${P}.tgz;
 
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 SLOT="0"
 IUSE="server test"
 



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

2019-03-07 Thread Matt Turner
commit: 4d9c3970103a0f5d177eb33377c641d6d3bbb706
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Mar  7 21:44:43 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Mar  7 21:44:43 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d9c3970

sys-kernel/gentoo-sources-4.19.27-r1: ppc64 stable, bug 679558

Signed-off-by: Matt Turner  gentoo.org>

 sys-kernel/gentoo-sources/gentoo-sources-4.19.27-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.19.27-r1.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.19.27-r1.ebuild
index afe9ab8cc5b..f8eff7e19ae 100644
--- a/sys-kernel/gentoo-sources/gentoo-sources-4.19.27-r1.ebuild
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.19.27-r1.ebuild
@@ -10,7 +10,7 @@ inherit kernel-2
 detect_version
 detect_arch
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh 
~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh 
~sparc ~x86"
 HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches;
 IUSE="experimental"
 



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

2019-03-07 Thread Matt Turner
commit: 3f7df74e341547f8bffb71273e99de84a0849892
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Mar  7 21:44:34 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Mar  7 21:44:34 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f7df74e

sys-kernel/gentoo-sources-4.19.27-r1: ppc stable, bug 679558

Signed-off-by: Matt Turner  gentoo.org>

 sys-kernel/gentoo-sources/gentoo-sources-4.19.27-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.19.27-r1.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.19.27-r1.ebuild
index bfce4687c55..afe9ab8cc5b 100644
--- a/sys-kernel/gentoo-sources/gentoo-sources-4.19.27-r1.ebuild
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.19.27-r1.ebuild
@@ -10,7 +10,7 @@ inherit kernel-2
 detect_version
 detect_arch
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh 
~sparc ~x86"
 HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches;
 IUSE="experimental"
 



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

2019-03-07 Thread Brian Evans
commit: d54defffc0c1d541bb099fb9c10793b4d24f977e
Author: Brian Evans  gentoo  org>
AuthorDate: Thu Mar  7 21:41:56 2019 +
Commit: Brian Evans  gentoo  org>
CommitDate: Thu Mar  7 21:41:56 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d54defff

dev-lang/php: Revbump 5.6.40 with security patches Feb 2019

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Brian Evans  gentoo.org>

 dev-lang/php/Manifest |   1 +
 dev-lang/php/php-5.6.40-r1.ebuild | 801 ++
 2 files changed, 802 insertions(+)

diff --git a/dev-lang/php/Manifest b/dev-lang/php/Manifest
index 75e4537270e..259404b9ddd 100644
--- a/dev-lang/php/Manifest
+++ b/dev-lang/php/Manifest
@@ -8,3 +8,4 @@ DIST php-7.2.16.tar.xz 12166372 BLAKE2B 
c59ac69b717a8ee88f229baa94c43f9ee1d9c716
 DIST php-7.3.1.tar.xz 11944376 BLAKE2B 
55b3192774c08b1e4c6621e16176a1e352ff6ba5540794a5d769b6416929723638f1409f2f8224c7fe3db99c9b020fa51db7b78d50eaa00e790308562a0a5334
 SHA512 
0663d90537fe3901cad00ba1056782050b8a61e8edb49f01851add4992df21d23aee3e9468e32b76b7f53ffd513f1ba10c9513c549e247d796416ed176355348
 DIST php-7.3.2.tar.xz 11966760 BLAKE2B 
bb913e754e86ebbbef641d0516eb1fff7dfd7d7fe54776d4de0312175cdbc292694addd60e8ad863726796d482517e9312d83754eb70201de1a8a21e892cd87e
 SHA512 
e49eaf1f0811098910beddc407d5047e09a0f528baf4b62f2a42e8faba9d3d7a0ae82a0fd7a5bec265e22ef1bcf0cdcc4e9f0a521258412405923800798cba66
 DIST php-7.3.3.tar.xz 11972184 BLAKE2B 
e6404d8af6d0196f27a8939e995e317307287e2110b3cdc436659eb074087ac545a4253d86c4ee7374dffbe4348004bd257ec0e2b7169e8c125e664c56f9dfe7
 SHA512 
bad5fa35f5962fa23dbe01fe85f76ce80e431cf2f9719284c082bb1fa32af26407407a97d3bf999165a6158f83a9669e3dd641f6d70028ec644b74a414fb803d
+DIST php-patches-20190307-r1.tar.xz 20796 BLAKE2B 
251f0d8b222e4a6a339a3b1d4aff39fab8bd7203ec34295b7316a366a7d0015bb9e6665614005949da9decbca53aa9ac0aab63845638a6b4d3d462eabff4ea35
 SHA512 
d7a412ec1bc6002c458c6bc3cb53faf4e95a852a6cdad337f6a81a978dd56ba72801cccbe866857d6c5b7e95dfe558878133e44a4e9f9b6efd38e679acc82af9

diff --git a/dev-lang/php/php-5.6.40-r1.ebuild 
b/dev-lang/php/php-5.6.40-r1.ebuild
new file mode 100644
index 000..3ee5d2479b6
--- /dev/null
+++ b/dev-lang/php/php-5.6.40-r1.ebuild
@@ -0,0 +1,801 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+inherit autotools flag-o-matic systemd
+
+PATCH_V="20190307"
+
+DESCRIPTION="The PHP language runtime engine"
+HOMEPAGE="https://secure.php.net/;
+SRC_URI="https://php.net/distributions/${P}.tar.xz
+   mirror://gentoo/php-patches-${PATCH_V}-r1.tar.xz"
+
+LICENSE="PHP-3.01
+   BSD
+   Zend-2.0
+   bcmath? ( LGPL-2.1+ )
+   fpm? ( BSD-2 )
+   gd? ( gd )
+   unicode? ( BSD-2 LGPL-2.1 )"
+
+SLOT="$(ver_cut 1-2)"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos"
+
+# We can build the following SAPIs in the given order
+SAPIS="embed cli cgi fpm apache2"
+
+# SAPIs and SAPI-specific USE flags (cli SAPI is default on):
+IUSE="${IUSE}
+   ${SAPIS/cli/+cli}
+   threads"
+
+IUSE="${IUSE} acl bcmath berkdb bzip2 calendar cdb cjk
+   coverage crypt +ctype curl debug
+   enchant exif +fileinfo +filter firebird
+   flatfile ftp gd gdbm gmp +hash +iconv imap inifile
+   intl iodbc ipv6 +json kerberos ldap ldap-sasl libedit libressl
+   mhash mssql mysql libmysqlclient mysqli nls
+   oci8-instant-client odbc +opcache pcntl pdo +phar +posix postgres qdbm
+   readline recode selinux +session sharedmem
+   +simplexml snmp soap sockets spell sqlite ssl
+   sybase-ct sysvipc systemd tidy +tokenizer truetype unicode vpx wddx
+   +xml xmlreader xmlwriter xmlrpc xpm xslt zip zlib"
+
+# The supported (that is, autodetected) versions of BDB are listed in
+# the ./configure script. Other versions *work*, but we need to stick to
+# the ones that can be detected to avoid a repeat of bug #564824.
+COMMON_DEPEND="
+   >=app-eselect/eselect-php-0.9.1[apache2?,fpm?]
+   >=dev-libs/libpcre-8.32[unicode]
+   fpm? ( acl? ( sys-apps/acl ) )
+   apache2? ( || ( >=www-servers/apache-2.4[apache2_modules_unixd,threads=]
+   =dev-libs/libmcrypt-2.4 )
+   curl? ( >=net-misc/curl-7.10.5 )
+   enchant? ( app-text/enchant )
+   exif? ( !gd? (
+   virtual/jpeg:0
+   media-libs/libpng:0=
+   sys-libs/zlib:0=
+   ) )
+   firebird? ( dev-db/firebird )
+   gd? ( virtual/jpeg:0 media-libs/libpng:0= sys-libs/zlib:0= )
+   gdbm? ( >=sys-libs/gdbm-1.8.0:0= )
+   gmp? ( dev-libs/gmp:0= )
+   iconv? ( virtual/libiconv )
+   imap? ( virtual/imap-c-client

[gentoo-commits] proj/genkernel:master commit in: arch/x86_64/, arch/x86/

2019-03-07 Thread Ben Kohler
commit: 803093e728262d03ae39b5acd30914f1a2f506ee
Author: Ben Kohler  gentoo  org>
AuthorDate: Thu Mar  7 21:28:51 2019 +
Commit: Ben Kohler  gentoo  org>
CommitDate: Thu Mar  7 21:30:46 2019 +
URL:https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=803093e7

x86{,_64}/kernel-config: add DRM_AMDGPU

Closes: https://bugs.gentoo.org/651126

Signed-off-by: Ben Kohler  gentoo.org>

 arch/x86/kernel-config| 1 +
 arch/x86_64/kernel-config | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/arch/x86/kernel-config b/arch/x86/kernel-config
index 2fea553..c865618 100644
--- a/arch/x86/kernel-config
+++ b/arch/x86/kernel-config
@@ -2568,6 +2568,7 @@ CONFIG_DRM=m
 CONFIG_DRM_TDFX=m
 CONFIG_DRM_R128=m
 CONFIG_DRM_RADEON=m
+CONFIG_DRM_AMDGPU=m
 CONFIG_DRM_I810=m
 CONFIG_DRM_I830=m
 CONFIG_DRM_I915=m

diff --git a/arch/x86_64/kernel-config b/arch/x86_64/kernel-config
index 3e99ec9..5a849ce 100644
--- a/arch/x86_64/kernel-config
+++ b/arch/x86_64/kernel-config
@@ -2287,7 +2287,7 @@ CONFIG_DRM_TTM=m
 CONFIG_DRM_TDFX=m
 CONFIG_DRM_R128=m
 CONFIG_DRM_RADEON=m
-# CONFIG_DRM_RADEON_KMS is not set
+CONFIG_DRM_AMDGPU=m
 CONFIG_DRM_I810=m
 CONFIG_DRM_I830=m
 CONFIG_DRM_I915=m



[gentoo-commits] repo/gentoo:master commit in: sys-cluster/cinder/

2019-03-07 Thread Matthew Thode
commit: 1978f9e1fd925b4ccaeee7bf41b2f7c7e26ce094
Author: Matthew Thode  gentoo  org>
AuthorDate: Thu Mar  7 21:07:44 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Thu Mar  7 21:28:04 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1978f9e1

sys-cluster/cinder: 13.0.3 stable amd64 and x86 with cleanup

Package-Manager: Portage-2.3.51, Repoman-2.3.12
Signed-off-by: Matthew Thode  gentoo.org>

 sys-cluster/cinder/Manifest |   2 -
 sys-cluster/cinder/cinder-13.0.2.ebuild | 213 
 sys-cluster/cinder/cinder-13.0.3.ebuild |   2 +-
 3 files changed, 1 insertion(+), 216 deletions(-)

diff --git a/sys-cluster/cinder/Manifest b/sys-cluster/cinder/Manifest
index e5e6449327c..2a8309921ad 100644
--- a/sys-cluster/cinder/Manifest
+++ b/sys-cluster/cinder/Manifest
@@ -1,9 +1,7 @@
 DIST cinder-11.1.1.tar.gz 5808526 BLAKE2B 
1b773e45673c35faff1a327d73608949e088f3635adb6dd6c7e779e708dd8f2270b85086378d48042b86e60ad7ca94754d56c1d0193f1d715112a03cf3163c77
 SHA512 
10ecf0068c57077a24bb0445a0901e07e7ad211cd7fac67ed016b770b477e9ba0e9954de70f165aae69e079f6b2e9416d8292ec701db4c97b987c7dac8f69a43
 DIST cinder-11.2.0.tar.gz 5832600 BLAKE2B 
3d06bef947ffd8b38bb178de79f592b678793bb53ccec23d2b46132d78180d58aa11ea760c9ad5d3923d32452c700aeb6e097d84261e86bdce79d34bff1c2402
 SHA512 
4ef77c0d0423286d1ce2aa1174b65b17999819f719f061811c24f277e41b8463bf4971982c4d9f5e085aac75fcd964353ae26bcf7b395023a0aa37e96414
 DIST cinder-12.0.5.tar.gz 5358388 BLAKE2B 
7ee078eb4cc4c4b16053453f1f3e5bd37c29766f80bedd1b3fe6e9d44387c8215d0fed1f79d92576254bf51b567227193a7175db7d06ef35d7f3fff5d82dd4da
 SHA512 
80788d2b10a4a0bf83e61db8e58f54dd8bbcd9fa06cd4025d37809f310bc7ed148ea9c180f4e6f02cf06f8b388384cbb9cb8a8f29a327acfe8188503550a7097
-DIST cinder-13.0.2.tar.gz 5463591 BLAKE2B 
d146e43bdd97bd15aeaf7c582c8cbe37080a7a1e8b5090c2727fb2dfbfc953121c0bb4c2adfce5f09d3e43e02093335dcce655dcc64abfa98d58b08327257950
 SHA512 
04ea9c0dafcc98858b587bf94e5afa20cfbfdd1aebd615ac62cfc7821a8dc6106b695071d68dc369bff014e877fc188216f3b05a9a08ea94a1b99712eca25c92
 DIST cinder-13.0.3.tar.gz 5464871 BLAKE2B 
3d2beebe7503d673ebc8a3f6b07da2a6799d276578823cb1abb518894f88cf97ec051337016b177ddc45614d70b9a5350a49c144011b0d1e41beaf901b4a73da
 SHA512 
2e358f7f0220aa6b6b88dedc8c942abcf5c54c53a690d18d84bee6d63b4f28b75c463f1d37a5e24925431e441f26066dbb0b4d33750429efbe7663d0e69de3a4
-DIST cinder.conf.sample-13.0.2 185527 BLAKE2B 
c53c017c5cacf2fb604840e14adf3b1db36bf8dd2c79d29f1c6b35da843640f97efcfd97d6f68a40a2f928ce864a3e221d7138d7cac977c0d544817e2826ebb2
 SHA512 
1dc850bebd66d90e2950795337a78ea8aea69ead0aeb3e5b7f97c7b12f33a3afc483f3bde2942a34539fbc048fa5b589b3c7d2df53314180f64094569bb81b15
 DIST cinder.conf.sample-13.0.3 185527 BLAKE2B 
c53c017c5cacf2fb604840e14adf3b1db36bf8dd2c79d29f1c6b35da843640f97efcfd97d6f68a40a2f928ce864a3e221d7138d7cac977c0d544817e2826ebb2
 SHA512 
1dc850bebd66d90e2950795337a78ea8aea69ead0aeb3e5b7f97c7b12f33a3afc483f3bde2942a34539fbc048fa5b589b3c7d2df53314180f64094569bb81b15
 DIST cinder.conf.sample-2018.2. 185527 BLAKE2B 
c53c017c5cacf2fb604840e14adf3b1db36bf8dd2c79d29f1c6b35da843640f97efcfd97d6f68a40a2f928ce864a3e221d7138d7cac977c0d544817e2826ebb2
 SHA512 
1dc850bebd66d90e2950795337a78ea8aea69ead0aeb3e5b7f97c7b12f33a3afc483f3bde2942a34539fbc048fa5b589b3c7d2df53314180f64094569bb81b15
 DIST pike-cinder.conf.sample 185310 BLAKE2B 
6f6a626537098107d63cd33ef6f8cc63dd5064711fcab3b6a7ebd0bb4170d3cc18e1cc414491859c63ca02d39602f496068823975f1cd5de731402696ade0868
 SHA512 
12c44b7a31888fbf4c70e037a2f5d0b778018e10bd0fc1cb97391bbe2fc6f97bbe4bec0d1504513ee0235ce50decda6883fe64a7d8fd5e329d8ad73e6bb74654

diff --git a/sys-cluster/cinder/cinder-13.0.2.ebuild 
b/sys-cluster/cinder/cinder-13.0.2.ebuild
deleted file mode 100644
index a8e41663d73..000
--- a/sys-cluster/cinder/cinder-13.0.2.ebuild
+++ /dev/null
@@ -1,213 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
-
-inherit distutils-r1 eutils linux-info user
-
-DESCRIPTION="Cinder is the OpenStack Block storage service, a spin out of 
nova-volumes"
-HOMEPAGE="https://launchpad.net/cinder;
-
-if [[ ${PV} == * ]];then
-   inherit git-r3
-   
SRC_URI="https://dev.gentoo.org/~prometheanfire/dist/openstack/cinder/rocky/cinder.conf.sample
 -> cinder.conf.sample-${PV}"
-   EGIT_REPO_URI="https://github.com/openstack/cinder.git;
-   EGIT_BRANCH="stable/rocky"
-else
-   
SRC_URI="https://dev.gentoo.org/~prometheanfire/dist/openstack/cinder/rocky/cinder.conf.sample
 -> cinder.conf.sample-${PV}
-   https://tarballs.openstack.org/${PN}/${P}.tar.gz;
-   KEYWORDS="amd64 ~arm64 x86"
-fi
-
-LICENSE="Apache-2.0"
-SLOT="0"
-IUSE="+api +scheduler +volume infiniband iscsi lvm mysql +memcached postgres 
rdma sqlite +tcp test +tgt"
-REQUIRED_USE="|| ( mysql postgres sqlite ) iscsi? ( tgt ) infiniband? 

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

2019-03-07 Thread Matthew Thode
commit: fa5315c2376cde831eedebbb52f0f8ecbd52dbdf
Author: Matthew Thode  gentoo  org>
AuthorDate: Thu Mar  7 21:25:47 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Thu Mar  7 21:28:08 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa5315c2

app-crypt/certbot-apache: 0.31.0 stable amd64/x86 with cleanup

0.32.0 bump

Package-Manager: Portage-2.3.51, Repoman-2.3.12
Signed-off-by: Matthew Thode  gentoo.org>

 app-crypt/certbot-apache/Manifest  |  2 +-
 .../certbot-apache/certbot-apache-0.30.1.ebuild| 38 --
 .../certbot-apache/certbot-apache-0.31.0.ebuild|  2 +-
 ...-0.31.0.ebuild => certbot-apache-0.32.0.ebuild} |  0
 4 files changed, 2 insertions(+), 40 deletions(-)

diff --git a/app-crypt/certbot-apache/Manifest 
b/app-crypt/certbot-apache/Manifest
index 6f0fcf7a3b2..2bb930b0466 100644
--- a/app-crypt/certbot-apache/Manifest
+++ b/app-crypt/certbot-apache/Manifest
@@ -1,2 +1,2 @@
-DIST certbot-0.30.1.tar.gz 1267198 BLAKE2B 
dc1ce89f376d8cd0ca02dbec50cb39e8c7fc5e140c342b8b80e1226ddffa0a3cf798683679d7815cc9da24ce0371e19f5288619ba69941226f6170f8ec9948fc
 SHA512 
31b790ed6911a9e632327d0833209c679535403d71a9977c8b785cc7585c67a4e18971b33f407598da4c7c67e073b0c2164203df34ec69bf3a0feb6bb326fbce
 DIST certbot-0.31.0.tar.gz 1267960 BLAKE2B 
4097a3d278d86589e7273c3f5c4f809f0a5777319856a2aea27233ee99eadf2e7c075c5400970be6a2f11032e54457c9705ef45b85e9d158bc04c7761e59a23a
 SHA512 
9202800649691e9b2d6b4c898b975d11ef3aba8f34903c93a11eafa5300f64c939547cfbbe34ac664de293d2540b143f14d3117969e4a6dfc55d624cfae44fea
+DIST certbot-0.32.0.tar.gz 1284873 BLAKE2B 
c3fa538de87b67680a7bc7465d77ab2947606aec4def3717b5d942c83254ff758d751e137bfe33cb6f9362a11a9bad7fba0337927b638f3af7ddf304d408c447
 SHA512 
fa61e975d2ce09efa3570118f220cd9f9d2fc8d5ab408feb4c4e50bfa795cb28be6c7a78497fb10bc91e577e908126988197ae5d016be4823c5c4ddb68cbf5a4

diff --git a/app-crypt/certbot-apache/certbot-apache-0.30.1.ebuild 
b/app-crypt/certbot-apache/certbot-apache-0.30.1.ebuild
deleted file mode 100644
index 8bf039bdf51..000
--- a/app-crypt/certbot-apache/certbot-apache-0.30.1.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=(python{2_7,3_4,3_5,3_6})
-
-if [[ ${PV} == * ]]; then
-   EGIT_REPO_URI="https://github.com/certbot/certbot.git;
-   inherit git-r3
-   S=${WORKDIR}/${P}/${PN}
-else
-   
SRC_URI="https://github.com/${PN%-apache}/${PN%-apache}/archive/v${PV}.tar.gz 
-> ${PN%-apache}-${PV}.tar.gz"
-   KEYWORDS="amd64 ~arm64 x86"
-   S=${WORKDIR}/${PN%-apache}-${PV}/${PN}
-fi
-
-inherit distutils-r1
-
-DESCRIPTION="Apache plugin for certbot (Let's Encrypt Client)"
-HOMEPAGE="https://github.com/certbot/certbot https://letsencrypt.org/;
-
-LICENSE="Apache-2.0"
-SLOT="0"
-IUSE="test"
-
-RDEPEND=">=app-crypt/certbot-0.26.0[${PYTHON_USEDEP}]
-   >=app-crypt/acme-0.25.0[${PYTHON_USEDEP}]
-   dev-python/mock[${PYTHON_USEDEP}]
-   dev-python/python-augeas[${PYTHON_USEDEP}]
-   dev-python/zope-component[${PYTHON_USEDEP}]
-   dev-python/zope-interface[${PYTHON_USEDEP}]"
-DEPEND="test? ( ${RDEPEND}
-   dev-python/nose[${PYTHON_USEDEP}] )
-   dev-python/setuptools[${PYTHON_USEDEP}]"
-
-python_test() {
-   nosetests || die
-}

diff --git a/app-crypt/certbot-apache/certbot-apache-0.31.0.ebuild 
b/app-crypt/certbot-apache/certbot-apache-0.31.0.ebuild
index b6c158fb2f5..8bf039bdf51 100644
--- a/app-crypt/certbot-apache/certbot-apache-0.31.0.ebuild
+++ b/app-crypt/certbot-apache/certbot-apache-0.31.0.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == * ]]; then
S=${WORKDIR}/${P}/${PN}
 else

SRC_URI="https://github.com/${PN%-apache}/${PN%-apache}/archive/v${PV}.tar.gz 
-> ${PN%-apache}-${PV}.tar.gz"
-   KEYWORDS="~amd64 ~arm64 ~x86"
+   KEYWORDS="amd64 ~arm64 x86"
S=${WORKDIR}/${PN%-apache}-${PV}/${PN}
 fi
 

diff --git a/app-crypt/certbot-apache/certbot-apache-0.31.0.ebuild 
b/app-crypt/certbot-apache/certbot-apache-0.32.0.ebuild
similarity index 100%
copy from app-crypt/certbot-apache/certbot-apache-0.31.0.ebuild
copy to app-crypt/certbot-apache/certbot-apache-0.32.0.ebuild



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

2019-03-07 Thread Matthew Thode
commit: 77503807b0736a50bb31d8f1f54929a4406ad0a0
Author: Matthew Thode  gentoo  org>
AuthorDate: Thu Mar  7 21:20:19 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Thu Mar  7 21:28:06 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77503807

app-crypt/acme: 0.32.0 bump 0.31.0 stable amd64 and x86 with cleanup

Package-Manager: Portage-2.3.51, Repoman-2.3.12
Signed-off-by: Matthew Thode  gentoo.org>

 app-crypt/acme/Manifest   | 2 +-
 app-crypt/acme/acme-0.31.0.ebuild | 2 +-
 app-crypt/acme/{acme-0.30.1.ebuild => acme-0.32.0.ebuild} | 4 ++--
 app-crypt/acme/acme-.ebuild   | 2 +-
 4 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/app-crypt/acme/Manifest b/app-crypt/acme/Manifest
index 6f0fcf7a3b2..2bb930b0466 100644
--- a/app-crypt/acme/Manifest
+++ b/app-crypt/acme/Manifest
@@ -1,2 +1,2 @@
-DIST certbot-0.30.1.tar.gz 1267198 BLAKE2B 
dc1ce89f376d8cd0ca02dbec50cb39e8c7fc5e140c342b8b80e1226ddffa0a3cf798683679d7815cc9da24ce0371e19f5288619ba69941226f6170f8ec9948fc
 SHA512 
31b790ed6911a9e632327d0833209c679535403d71a9977c8b785cc7585c67a4e18971b33f407598da4c7c67e073b0c2164203df34ec69bf3a0feb6bb326fbce
 DIST certbot-0.31.0.tar.gz 1267960 BLAKE2B 
4097a3d278d86589e7273c3f5c4f809f0a5777319856a2aea27233ee99eadf2e7c075c5400970be6a2f11032e54457c9705ef45b85e9d158bc04c7761e59a23a
 SHA512 
9202800649691e9b2d6b4c898b975d11ef3aba8f34903c93a11eafa5300f64c939547cfbbe34ac664de293d2540b143f14d3117969e4a6dfc55d624cfae44fea
+DIST certbot-0.32.0.tar.gz 1284873 BLAKE2B 
c3fa538de87b67680a7bc7465d77ab2947606aec4def3717b5d942c83254ff758d751e137bfe33cb6f9362a11a9bad7fba0337927b638f3af7ddf304d408c447
 SHA512 
fa61e975d2ce09efa3570118f220cd9f9d2fc8d5ab408feb4c4e50bfa795cb28be6c7a78497fb10bc91e577e908126988197ae5d016be4823c5c4ddb68cbf5a4

diff --git a/app-crypt/acme/acme-0.31.0.ebuild 
b/app-crypt/acme/acme-0.31.0.ebuild
index cc94bdaee73..d4ea2b9f2e6 100644
--- a/app-crypt/acme/acme-0.31.0.ebuild
+++ b/app-crypt/acme/acme-0.31.0.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == * ]]; then
S=${WORKDIR}/${P}/${PN}
 else
SRC_URI="https://github.com/certbot/certbot/archive/v${PV}.tar.gz -> 
certbot-${PV}.tar.gz"
-   KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86"
S=${WORKDIR}/certbot-${PV}/acme
 fi
 

diff --git a/app-crypt/acme/acme-0.30.1.ebuild 
b/app-crypt/acme/acme-0.32.0.ebuild
similarity index 93%
rename from app-crypt/acme/acme-0.30.1.ebuild
rename to app-crypt/acme/acme-0.32.0.ebuild
index d4ea2b9f2e6..8a9d37f4aec 100644
--- a/app-crypt/acme/acme-0.30.1.ebuild
+++ b/app-crypt/acme/acme-0.32.0.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == * ]]; then
S=${WORKDIR}/${P}/${PN}
 else
SRC_URI="https://github.com/certbot/certbot/archive/v${PV}.tar.gz -> 
certbot-${PV}.tar.gz"
-   KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
S=${WORKDIR}/certbot-${PV}/acme
 fi
 
@@ -25,7 +25,7 @@ IUSE="test"
 
 RDEPEND="
>=dev-python/cryptography-1.2.3[${PYTHON_USEDEP}]
-   >=dev-python/josepy-1.0.0[${PYTHON_USEDEP}]
+   >=dev-python/josepy-1.1.0[${PYTHON_USEDEP}]
dev-python/mock[${PYTHON_USEDEP}]
>=dev-python/pyopenssl-0.13.1[${PYTHON_USEDEP}]
dev-python/pyrfc3339[${PYTHON_USEDEP}]

diff --git a/app-crypt/acme/acme-.ebuild b/app-crypt/acme/acme-.ebuild
index cc94bdaee73..8a9d37f4aec 100644
--- a/app-crypt/acme/acme-.ebuild
+++ b/app-crypt/acme/acme-.ebuild
@@ -25,7 +25,7 @@ IUSE="test"
 
 RDEPEND="
>=dev-python/cryptography-1.2.3[${PYTHON_USEDEP}]
-   >=dev-python/josepy-1.0.0[${PYTHON_USEDEP}]
+   >=dev-python/josepy-1.1.0[${PYTHON_USEDEP}]
dev-python/mock[${PYTHON_USEDEP}]
>=dev-python/pyopenssl-0.13.1[${PYTHON_USEDEP}]
dev-python/pyrfc3339[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: media-sound/pulseeffects/

2019-03-07 Thread Matthew Thode
commit: e89dc56226472687c2f0642602afa53dd13560c2
Author: Matthew Thode  gentoo  org>
AuthorDate: Thu Mar  7 21:05:57 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Thu Mar  7 21:28:02 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e89dc562

media-sound/pulseeffects: 4.5.5 bump (fix memleak)

Package-Manager: Portage-2.3.51, Repoman-2.3.12
Signed-off-by: Matthew Thode  gentoo.org>

 media-sound/pulseeffects/Manifest   | 2 +-
 .../{pulseeffects-4.5.4.ebuild => pulseeffects-4.5.5.ebuild}| 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/pulseeffects/Manifest 
b/media-sound/pulseeffects/Manifest
index 9b908cbb2b1..2cc6e10f18f 100644
--- a/media-sound/pulseeffects/Manifest
+++ b/media-sound/pulseeffects/Manifest
@@ -1,3 +1,3 @@
 DIST pulseeffects-3.2.3.tar.gz 648968 BLAKE2B 
aef2aaacacc41020c5f14582c91b53ba84f3e56d7cf4a13a955769ff80796ae21cbc0ecad9b2c3e24985a6a6daf86888c3a8c6e2387b917860336e73fa8c0d6b
 SHA512 
802068c867b9708e7503e0beb65fb5aaf9ff4916b98048634a443f701864db00e5401de42ff58ed3e5fe9430af6caae74efe8f0b1b0e3e2c9d48dcb7c7e6a400
 DIST pulseeffects-4.4.7.tar.gz 1082596 BLAKE2B 
3265507191f5fca405282d8bdf9cf078023e80d2ca8f3a8bb999f7828f5220ca61b68ce01dc80e2d066a0d759b83229eabd523aff71106bd4024067afd1a8220
 SHA512 
243bd23d107f22a2a4b5934fb67bc5c059f278f2ec824814791ea24429e8d53844ffd71c9c21c35209261f4a0a4633827362bfd43355437a10944bbfd9a25421
-DIST pulseeffects-4.5.4.tar.gz 183 BLAKE2B 
f66c32dceff2d0ae4f7f09b8a920ff0a3cfd86763fdc93577955e9938350ea96b90d5900461b894de68a8ae5b63922926fd0cead986ba8a762d0ecfa8ea21c32
 SHA512 
f3566010fc2fb118defab5e17c3f77a3537e16ab0792a7fd72ca60d70a03c0e6ea44e853ede079b7a006acba822f5c04fa0d30961c786aa9113f5a5b8352e585
+DIST pulseeffects-4.5.5.tar.gz 1783582 BLAKE2B 
4c2154fad61705811d2e2135bdacc7f1e31d499ea65fbbb044896ba37cfde9ef4cd925fe7cc390c5611fb294d57a7297c7e54c76b3d69505c9b595d47259ad9a
 SHA512 
fe45097bcd5aa9754c612c52cfba7d06d14185e18a75e5ae2a257733159f0288897e4f60d147e164f4bcafcd23978e23a006753b2b26e26613809863895cfab5

diff --git a/media-sound/pulseeffects/pulseeffects-4.5.4.ebuild 
b/media-sound/pulseeffects/pulseeffects-4.5.5.ebuild
similarity index 100%
rename from media-sound/pulseeffects/pulseeffects-4.5.4.ebuild
rename to media-sound/pulseeffects/pulseeffects-4.5.5.ebuild



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

2019-03-07 Thread Matthew Thode
commit: 6951fd9519cdc380c1af60159c50646fb6169830
Author: Matthew Thode  gentoo  org>
AuthorDate: Thu Mar  7 21:09:08 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Thu Mar  7 21:28:05 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6951fd95

app-admin/ansible: 2.6.13 and 2.7.7 stable with cleanup

Package-Manager: Portage-2.3.51, Repoman-2.3.12
Signed-off-by: Matthew Thode  gentoo.org>

 app-admin/ansible/Manifest  |  2 -
 app-admin/ansible/ansible-2.6.12.ebuild | 66 -
 app-admin/ansible/ansible-2.6.13.ebuild |  2 +-
 app-admin/ansible/ansible-2.7.6.ebuild  | 66 -
 app-admin/ansible/ansible-2.7.7.ebuild  |  2 +-
 5 files changed, 2 insertions(+), 136 deletions(-)

diff --git a/app-admin/ansible/Manifest b/app-admin/ansible/Manifest
index 9afec0179e5..eca62c69cd1 100644
--- a/app-admin/ansible/Manifest
+++ b/app-admin/ansible/Manifest
@@ -1,7 +1,5 @@
 DIST ansible-2.5.14.tar.gz 10119785 BLAKE2B 
6e771aafc16053185ee6d275d6d41f64aa3f0d6dffbe721a66b548b97e84d78916e03827d592b961f9a4e0bb03fae09320731a4b8fdb814126cecdfb51f9f136
 SHA512 
9635b1c4bc9a93a24f4bb2894c9fed63803cecb01c5562559e3b808791d1007b26aa0aade4aa05fd4bae0f7d01216588d4e2e0bf4c5fb6cdf677d9b40e9e2de8
-DIST ansible-2.6.12.tar.gz 10726648 BLAKE2B 
9f3b1b48069f5b450f649bf1c21ee57922ac3db6a8b1b11c459b572bf298813490f230400f09d35d4d7b21a709643ac37cb527719fea59a1b57616b476235dcb
 SHA512 
daee0a5c37a83dfd22b1fccb5245735e4874f7428f5e8f0244a8a208c7f73729bffc06df16d16e257ae65b8d4cafeb4e3b67e49160b5d9d530666166b5096a70
 DIST ansible-2.6.13.tar.gz 10730575 BLAKE2B 
2442925421996731be59db7ca18994f9c158f0b1247554bc8252d76d6c8fe8574e4ec2e62d71d7de075a9b109c43620232c78d91dcb3aa8d574752862de4d156
 SHA512 
7592214bc5c0c4283c99d7a422d44a54f424afe848b40fa2c0b0a4b556361a6290b459d8bdb575ec323e4e96bbad7abc939cdb5664839bb13f5de3d054ffb880
 DIST ansible-2.6.14.tar.gz 10732165 BLAKE2B 
c753860a521c37357c7a5042391957680865416c036fcaf3920a65e291dc3ed3a52e94ad5b99acdb0d2c919e3be68b8462e462a935497dfe83b406adf4e63dad
 SHA512 
ee532c0d61ab03a0937e89bfa7565f27f1905987784f31895e8ac6e4a8ecf76ca9f30201d278a68a995b8fc27151712dba2e79c13269a472d923355e36072e4e
-DIST ansible-2.7.6.tar.gz 11796062 BLAKE2B 
171dbcc7380ded52b03b9b109705008a492dbc5b8542fa600562c66abb8c3d3ace6bc92696559357d62fec106938e8fa4366b67cd621e4e8144fad59d0870db7
 SHA512 
db0813009b4683b74bf4dda640adc3dad750e053c3a87f97c6e61a2a5ea7668ea51e97ec204ddcdba6f09733bb399f824f87f365b74c35315b979603c99a6b70
 DIST ansible-2.7.7.tar.gz 11809560 BLAKE2B 
3960e4dcd166fb77ddcb6bbae03b20fe679b76aee3db118ddd4642ab7b837a66929bd4ec76c071c53eba7ece47aaf8a52ceb34ea092d3e3db8355839575b684c
 SHA512 
41e007ccc5b22eaa1a7aa9c16f8d012268cbd1055b5c10a204134b7707ab7bf205aab04efccda9fb5497034896542d29ba253ad4ea09b4755b665bada22b4c54
 DIST ansible-2.7.8.tar.gz 11812884 BLAKE2B 
867ed7072efc4effafd637ac0353bd722269046cae8ddb794eea8c6cf9d739bc567f2a5323a589c21a74bbb57565ef153fb8c52798c17809a42400abe72ce65c
 SHA512 
f3501ce8b642f83fe3d5e21cdfa26bce8611e92bc6e68e40b3a7ff2443c7d8ee0b2175981c92a5e83f9ce8c5d7d75aac95106a237bb9325c66319d96a790009a

diff --git a/app-admin/ansible/ansible-2.6.12.ebuild 
b/app-admin/ansible/ansible-2.6.12.ebuild
deleted file mode 100644
index 90340deaacc..000
--- a/app-admin/ansible/ansible-2.6.12.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python2_7 python3_{5,6} )
-
-inherit distutils-r1 eutils
-
-DESCRIPTION="Model-driven deployment, config management, and command execution 
framework"
-HOMEPAGE="https://ansible.com/;
-SRC_URI="https://releases.ansible.com/${PN}/${P}.tar.gz;
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 x86 ~x64-macos"
-IUSE="doc test"
-
-RDEPEND="
-   dev-python/paramiko[${PYTHON_USEDEP}]
-   dev-python/jinja[${PYTHON_USEDEP}]
-   dev-python/pyyaml[${PYTHON_USEDEP}]
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   dev-python/cryptography[${PYTHON_USEDEP}]
-   dev-python/httplib2[${PYTHON_USEDEP}]
-   dev-python/six[${PYTHON_USEDEP}]
-   dev-python/netaddr[${PYTHON_USEDEP}]
-   net-misc/sshpass
-   virtual/ssh
-"
-DEPEND="
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   >=dev-python/packaging-16.6[${PYTHON_USEDEP}]
-   doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
-   test? (
-   ${RDEPEND}
-   dev-python/nose[${PYTHON_USEDEP}]
-   >=dev-python/mock-1.0.1[${PYTHON_USEDEP}]
-   dev-python/passlib[${PYTHON_USEDEP}]
-   dev-python/coverage[${PYTHON_USEDEP}]
-   dev-python/unittest2[${PYTHON_USEDEP}]
-   dev-vcs/git
-   )"
-
-# not included in release tarball
-RESTRICT="test"
-
-python_compile_all() {
-   if use doc; then
-   cd docs/docsite || die
-   export CPUS=4
-   

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

2019-03-07 Thread Matthew Thode
commit: b17613f70af5d7cc30bcedffc9fb2ac49e26ab1f
Author: Matthew Thode  gentoo  org>
AuthorDate: Thu Mar  7 21:23:20 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Thu Mar  7 21:28:07 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b17613f7

app-crypt/certbot: 0.31.0 stable amd64 and x86, 0.32.0 bup /w cleanup

Package-Manager: Portage-2.3.51, Repoman-2.3.12
Signed-off-by: Matthew Thode  gentoo.org>

 app-crypt/certbot/Manifest| 2 +-
 app-crypt/certbot/certbot-0.31.0.ebuild   | 2 +-
 app-crypt/certbot/{certbot-0.30.1-r1.ebuild => certbot-0.32.0.ebuild} | 4 ++--
 app-crypt/certbot/certbot-.ebuild | 2 +-
 4 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/app-crypt/certbot/Manifest b/app-crypt/certbot/Manifest
index 6f0fcf7a3b2..2bb930b0466 100644
--- a/app-crypt/certbot/Manifest
+++ b/app-crypt/certbot/Manifest
@@ -1,2 +1,2 @@
-DIST certbot-0.30.1.tar.gz 1267198 BLAKE2B 
dc1ce89f376d8cd0ca02dbec50cb39e8c7fc5e140c342b8b80e1226ddffa0a3cf798683679d7815cc9da24ce0371e19f5288619ba69941226f6170f8ec9948fc
 SHA512 
31b790ed6911a9e632327d0833209c679535403d71a9977c8b785cc7585c67a4e18971b33f407598da4c7c67e073b0c2164203df34ec69bf3a0feb6bb326fbce
 DIST certbot-0.31.0.tar.gz 1267960 BLAKE2B 
4097a3d278d86589e7273c3f5c4f809f0a5777319856a2aea27233ee99eadf2e7c075c5400970be6a2f11032e54457c9705ef45b85e9d158bc04c7761e59a23a
 SHA512 
9202800649691e9b2d6b4c898b975d11ef3aba8f34903c93a11eafa5300f64c939547cfbbe34ac664de293d2540b143f14d3117969e4a6dfc55d624cfae44fea
+DIST certbot-0.32.0.tar.gz 1284873 BLAKE2B 
c3fa538de87b67680a7bc7465d77ab2947606aec4def3717b5d942c83254ff758d751e137bfe33cb6f9362a11a9bad7fba0337927b638f3af7ddf304d408c447
 SHA512 
fa61e975d2ce09efa3570118f220cd9f9d2fc8d5ab408feb4c4e50bfa795cb28be6c7a78497fb10bc91e577e908126988197ae5d016be4823c5c4ddb68cbf5a4

diff --git a/app-crypt/certbot/certbot-0.31.0.ebuild 
b/app-crypt/certbot/certbot-0.31.0.ebuild
index 24ed55a9e6c..9fe3a605824 100644
--- a/app-crypt/certbot/certbot-0.31.0.ebuild
+++ b/app-crypt/certbot/certbot-0.31.0.ebuild
@@ -9,7 +9,7 @@ if [[ ${PV} == * ]]; then
inherit git-r3
 else
SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86"
 fi
 
 inherit distutils-r1

diff --git a/app-crypt/certbot/certbot-0.30.1-r1.ebuild 
b/app-crypt/certbot/certbot-0.32.0.ebuild
similarity index 93%
rename from app-crypt/certbot/certbot-0.30.1-r1.ebuild
rename to app-crypt/certbot/certbot-0.32.0.ebuild
index c4d5a2b8488..1c019d37388 100644
--- a/app-crypt/certbot/certbot-0.30.1-r1.ebuild
+++ b/app-crypt/certbot/certbot-0.32.0.ebuild
@@ -9,7 +9,7 @@ if [[ ${PV} == * ]]; then
inherit git-r3
 else
SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
 fi
 
 inherit distutils-r1
@@ -28,7 +28,7 @@ RDEPEND="
>=dev-python/configargparse-0.9.3[${PYTHON_USEDEP}]
dev-python/configobj[${PYTHON_USEDEP}]
>=dev-python/cryptography-1.2[${PYTHON_USEDEP}]
-   dev-python/josepy[${PYTHON_USEDEP}]
+   >=dev-python/josepy-1.1.0[${PYTHON_USEDEP}]
dev-python/mock[${PYTHON_USEDEP}]
>=dev-python/parsedatetime-1.3[${PYTHON_USEDEP}]
dev-python/pyrfc3339[${PYTHON_USEDEP}]

diff --git a/app-crypt/certbot/certbot-.ebuild 
b/app-crypt/certbot/certbot-.ebuild
index 7dcb4fadad6..1c019d37388 100644
--- a/app-crypt/certbot/certbot-.ebuild
+++ b/app-crypt/certbot/certbot-.ebuild
@@ -28,7 +28,7 @@ RDEPEND="
>=dev-python/configargparse-0.9.3[${PYTHON_USEDEP}]
dev-python/configobj[${PYTHON_USEDEP}]
>=dev-python/cryptography-1.2[${PYTHON_USEDEP}]
-   dev-python/josepy[${PYTHON_USEDEP}]
+   >=dev-python/josepy-1.1.0[${PYTHON_USEDEP}]
dev-python/mock[${PYTHON_USEDEP}]
>=dev-python/parsedatetime-1.3[${PYTHON_USEDEP}]
dev-python/pyrfc3339[${PYTHON_USEDEP}]



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

2019-03-07 Thread Matthew Thode
commit: ee5771fb766d1f126fa4cb0067f98a3184e2b64a
Author: Matthew Thode  gentoo  org>
AuthorDate: Thu Mar  7 21:27:35 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Thu Mar  7 21:28:09 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee5771fb

app-crypt/certbot-nginx: 0.31.0 stable amd64/x86 with cleanup

0.32.0 bump

Package-Manager: Portage-2.3.51, Repoman-2.3.12
Signed-off-by: Matthew Thode  gentoo.org>

 app-crypt/certbot-nginx/Manifest   |  2 +-
 .../certbot-nginx/certbot-nginx-0.30.1.ebuild  | 34 --
 .../certbot-nginx/certbot-nginx-0.31.0.ebuild  |  2 +-
 ...x-0.31.0.ebuild => certbot-nginx-0.32.0.ebuild} |  0
 4 files changed, 2 insertions(+), 36 deletions(-)

diff --git a/app-crypt/certbot-nginx/Manifest b/app-crypt/certbot-nginx/Manifest
index 6f0fcf7a3b2..2bb930b0466 100644
--- a/app-crypt/certbot-nginx/Manifest
+++ b/app-crypt/certbot-nginx/Manifest
@@ -1,2 +1,2 @@
-DIST certbot-0.30.1.tar.gz 1267198 BLAKE2B 
dc1ce89f376d8cd0ca02dbec50cb39e8c7fc5e140c342b8b80e1226ddffa0a3cf798683679d7815cc9da24ce0371e19f5288619ba69941226f6170f8ec9948fc
 SHA512 
31b790ed6911a9e632327d0833209c679535403d71a9977c8b785cc7585c67a4e18971b33f407598da4c7c67e073b0c2164203df34ec69bf3a0feb6bb326fbce
 DIST certbot-0.31.0.tar.gz 1267960 BLAKE2B 
4097a3d278d86589e7273c3f5c4f809f0a5777319856a2aea27233ee99eadf2e7c075c5400970be6a2f11032e54457c9705ef45b85e9d158bc04c7761e59a23a
 SHA512 
9202800649691e9b2d6b4c898b975d11ef3aba8f34903c93a11eafa5300f64c939547cfbbe34ac664de293d2540b143f14d3117969e4a6dfc55d624cfae44fea
+DIST certbot-0.32.0.tar.gz 1284873 BLAKE2B 
c3fa538de87b67680a7bc7465d77ab2947606aec4def3717b5d942c83254ff758d751e137bfe33cb6f9362a11a9bad7fba0337927b638f3af7ddf304d408c447
 SHA512 
fa61e975d2ce09efa3570118f220cd9f9d2fc8d5ab408feb4c4e50bfa795cb28be6c7a78497fb10bc91e577e908126988197ae5d016be4823c5c4ddb68cbf5a4

diff --git a/app-crypt/certbot-nginx/certbot-nginx-0.30.1.ebuild 
b/app-crypt/certbot-nginx/certbot-nginx-0.30.1.ebuild
deleted file mode 100644
index ec0e921c2c8..000
--- a/app-crypt/certbot-nginx/certbot-nginx-0.30.1.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=(python{2_7,3_4,3_5,3_6})
-
-if [[ ${PV} == * ]]; then
-   EGIT_REPO_URI="https://github.com/certbot/certbot.git;
-   inherit git-r3
-   S=${WORKDIR}/${P}/${PN}
-else
-   
SRC_URI="https://github.com/${PN%-nginx}/${PN%-nginx}/archive/v${PV}.tar.gz -> 
${PN%-nginx}-${PV}.tar.gz"
-   KEYWORDS="amd64 ~arm ~arm64 x86"
-   S=${WORKDIR}/${PN%-nginx}-${PV}/${PN}
-fi
-
-inherit distutils-r1
-
-DESCRIPTION="Nginx plugin for certbot (Let's Encrypt Client)"
-HOMEPAGE="https://github.com/certbot/certbot https://letsencrypt.org/;
-
-LICENSE="Apache-2.0"
-SLOT="0"
-IUSE=""
-
-CDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
-RDEPEND="${CDEPEND}
-   >=app-crypt/certbot-0.22.0[${PYTHON_USEDEP}]
-   >=app-crypt/acme-0.26.0[${PYTHON_USEDEP}]
-   dev-python/mock[${PYTHON_USEDEP}]
-   dev-python/pyopenssl[${PYTHON_USEDEP}]
-   >=dev-python/pyparsing-1.5.5[${PYTHON_USEDEP}]
-   dev-python/zope-interface[${PYTHON_USEDEP}]"
-DEPEND="${CDEPEND}"

diff --git a/app-crypt/certbot-nginx/certbot-nginx-0.31.0.ebuild 
b/app-crypt/certbot-nginx/certbot-nginx-0.31.0.ebuild
index b84d186a8cd..ec0e921c2c8 100644
--- a/app-crypt/certbot-nginx/certbot-nginx-0.31.0.ebuild
+++ b/app-crypt/certbot-nginx/certbot-nginx-0.31.0.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == * ]]; then
S=${WORKDIR}/${P}/${PN}
 else

SRC_URI="https://github.com/${PN%-nginx}/${PN%-nginx}/archive/v${PV}.tar.gz -> 
${PN%-nginx}-${PV}.tar.gz"
-   KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 x86"
S=${WORKDIR}/${PN%-nginx}-${PV}/${PN}
 fi
 

diff --git a/app-crypt/certbot-nginx/certbot-nginx-0.31.0.ebuild 
b/app-crypt/certbot-nginx/certbot-nginx-0.32.0.ebuild
similarity index 100%
copy from app-crypt/certbot-nginx/certbot-nginx-0.31.0.ebuild
copy to app-crypt/certbot-nginx/certbot-nginx-0.32.0.ebuild



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

2019-03-07 Thread Mart Raudsepp
commit: 978d84bdf4a798117285dfd18e6acb1ec0ef55ec
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Thu Mar  7 17:10:09 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Thu Mar  7 21:13:10 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=978d84bd

net-libs/libsoup: default enable USE=vala

Various GNOME packages will unconditionally need it. Default enable
it, as it just means need of a vala slot at build time. Vala itself
ships a libsoup vapi too, but it should be better to have it from
the library itself, so it matches the API the library version
actually provides.

Bug: https://bugs.gentoo.org/665578
Package-Manager: Portage-2.3.52, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 net-libs/libsoup/libsoup-2.62.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libsoup/libsoup-2.62.3.ebuild 
b/net-libs/libsoup/libsoup-2.62.3.ebuild
index d32f74dcc10..0fd9a010737 100644
--- a/net-libs/libsoup/libsoup-2.62.3.ebuild
+++ b/net-libs/libsoup/libsoup-2.62.3.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/libsoup;
 LICENSE="LGPL-2+"
 SLOT="2.4"
 
-IUSE="debug gssapi +introspection samba ssl test vala"
+IUSE="debug gssapi +introspection samba ssl test +vala"
 REQUIRED_USE="vala? ( introspection )"
 
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"



[gentoo-commits] repo/gentoo:master commit in: gnome-extra/gnome-boxes/

2019-03-07 Thread Mart Raudsepp
commit: e438d302ebafe6a0001a07fe5780e4fa050e9c88
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Thu Mar  7 21:02:02 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Thu Mar  7 21:13:10 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e438d302

gnome-extra/gnome-boxes: bump to 3.30.3

Package-Manager: Portage-2.3.52, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 gnome-extra/gnome-boxes/Manifest  |   1 +
 gnome-extra/gnome-boxes/gnome-boxes-3.30.3.ebuild | 118 ++
 2 files changed, 119 insertions(+)

diff --git a/gnome-extra/gnome-boxes/Manifest b/gnome-extra/gnome-boxes/Manifest
index ef813bdf02f..24cd3745499 100644
--- a/gnome-extra/gnome-boxes/Manifest
+++ b/gnome-extra/gnome-boxes/Manifest
@@ -1,2 +1,3 @@
 DIST gnome-boxes-3.24.1.tar.xz 1710348 BLAKE2B 
ce90cc1a6baefa45c1a553b059f4fa7ac5c9a6fbd7a2d71377a9c6f38fddb7ac5a110f38d0a65b45cf2ba948ebee6026cc22b5f93a2ba521c9db6cb20bd3dc37
 SHA512 
a687dd65af91d717862bba0a81d715b64de1092cbb5ffd8a756fe80988c84110127f186007e8cf4011bf23cc0ec0adb346ead72ef47c655f85a7fcb9ed3ec393
 DIST gnome-boxes-3.26.4.tar.xz 1893760 BLAKE2B 
91d01f33b2fb03150c0abd75cb58a9a9ecd8deeb14d32502f5766e06c93b4d236f971417e0a26c44e1250afa069966b607912f2dde92fc5058e598eb029ff03b
 SHA512 
f92f09ea6f61d418253b3b4388bc7aac321cbbba853908b3a8e4faca0e04287cc7c3387eefdd2e150bc9dace8ef5ebbbab3dc3b38b26e0e2d010272703fbf6a3
+DIST gnome-boxes-3.30.3.tar.xz 1198224 BLAKE2B 
1c65d3f051d32dc85284da4d392e3ec418edf028b61f1166173ac6ced3e6cba687b297ea135a4e54058c561eb5fe69d767e9ee698fb6b16f6bd4cd09b00d5c3a
 SHA512 
fc8a06bb8c71356d50002468f7722aee14abe8432ccce319ada3032746b53eb2f679a93f991c04ae34832a315fc95d561ffc169c4560a23573c046705b5446b4

diff --git a/gnome-extra/gnome-boxes/gnome-boxes-3.30.3.ebuild 
b/gnome-extra/gnome-boxes/gnome-boxes-3.30.3.ebuild
new file mode 100644
index 000..37221b4903b
--- /dev/null
+++ b/gnome-extra/gnome-boxes/gnome-boxes-3.30.3.ebuild
@@ -0,0 +1,118 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+VALA_USE_DEPEND="vapigen"
+VALA_MIN_API_VERSION="0.36"
+
+inherit gnome.org gnome2-utils linux-info meson readme.gentoo-r1 vala xdg
+
+DESCRIPTION="Simple GNOME 3 application to access remote or virtual systems"
+HOMEPAGE="https://wiki.gnome.org/Apps/Boxes;
+
+LICENSE="LGPL-2+ CC-BY-2.0"
+SLOT="0"
+
+IUSE="rdp"
+KEYWORDS="~amd64"
+
+# FIXME: ovirt is not available in tree; though it seems the gnome-boxes ovirt 
broker is too buggy atm anyways (would need rest[vala] as well)
+# FIXME: qemu probably needs to depend on spice[smartcard] directly with 
USE=spice
+# FIXME: Check over libvirt USE=libvirtd,qemu and the smartcard/usbredir 
requirements
+# Technically vala itself still ships a libsoup vapi, but that may change, and 
it should be better to use the .vapi from the same libsoup version
+# gtk-vnc raised due to missing vala bindings in earlier ebuilds
+COMMON_DEPEND="
+   >=app-arch/libarchive-3:=
+   >=dev-libs/glib-2.52:2
+   >=dev-libs/gobject-introspection-1.54:=
+   >=x11-libs/gtk+-3.22.20:3[introspection]
+   >=net-libs/gtk-vnc-0.8.0-r1[gtk3(+),vala]
+   >=sys-libs/libosinfo-1.1.0[vala]
+   app-crypt/libsecret[vala]
+   >=net-libs/libsoup-2.44:2.4[vala]
+   virtual/libusb:1
+   >=app-emulation/libvirt-glib-0.2.3[vala]
+   >=dev-libs/libxml2-2.7.8:2
+   >=net-misc/spice-gtk-0.32[gtk3(+),smartcard,usbredir,vala]
+   app-misc/tracker:0/2.0
+   net-libs/webkit-gtk:4
+   >=virtual/libgudev-165:=
+   rdp? ( net-misc/freerdp:= )
+"
+DEPEND="${COMMON_DEPEND}
+   $(vala_depend)
+   dev-libs/appstream-glib
+   dev-util/itstool
+   >=sys-devel/gettext-0.19.8
+   virtual/pkgconfig
+"
+# These are called via exec():
+# sys-fs/mtools mcopy for unattended file copying for files that libarchive 
doesn't support
+# virtual/cdrtools mkisofs is needed for unattended installer secondary disk 
image creation
+# app-emulation/libguestfs virt-sysprep is used for VM cloing, if not there, 
it logs debug and doesn't function
+# sys-apps/policycoreutils restorecon is used for checking selinux context
+# app-emulation/libvirt virsh used for various checks (and we need the library 
anyways)
+# sys-auth/polkit used for making all libvirt system disks readable via 
"pkexec chmod a+r" that aren't already readable to the user (libvirt system 
importer)
+# app-emulation/qemu qemu-img used to convert image to QCOW2 format during copy
+RDEPEND="${COMMON_DEPEND}
+   >=app-misc/tracker-miners-2[iso]
+   app-emulation/spice[smartcard]
+   >=app-emulation/libvirt-0.9.3[libvirtd,qemu]
+   >=app-emulation/qemu-1.3.1[spice,smartcard,usbredir]
+   sys-fs/mtools
+   virtual/cdrtools
+   sys-auth/polkit
+"
+
+DISABLE_AUTOFORMATTING="yes"
+DOC_CONTENTS="Before running gnome-boxes for local VMs, you will need to load 
the KVM modules.
+If 

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

2019-03-07 Thread Mart Raudsepp
commit: f44a68df03515029c306b6913d0ec7e533a159d0
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Thu Mar  7 16:57:33 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Thu Mar  7 21:11:36 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f44a68df

net-libs/gtk-vnc: default enable USE=vala

Various GNOME packages will unconditionally need it (gnome-boxes
in main tree already will). Default enable it, as it just means
need of a vala slot at build time.

Bug: https://bugs.gentoo.org/665578
Package-Manager: Portage-2.3.52, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 net-libs/gtk-vnc/gtk-vnc-0.8.0-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-libs/gtk-vnc/gtk-vnc-0.8.0-r1.ebuild 
b/net-libs/gtk-vnc/gtk-vnc-0.8.0-r1.ebuild
index 16545aa4b3e..0a28696fd00 100644
--- a/net-libs/gtk-vnc/gtk-vnc-0.8.0-r1.ebuild
+++ b/net-libs/gtk-vnc/gtk-vnc-0.8.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -15,7 +15,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/gtk-vnc;
 LICENSE="LGPL-2.1+"
 SLOT="0"
 KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
-IUSE="examples +introspection pulseaudio sasl vala"
+IUSE="examples +introspection pulseaudio sasl +vala"
 REQUIRED_USE="
vala? ( introspection )
 "



[gentoo-commits] proj/genkernel:master commit in: arch/arm/, arch/ppc64/, arch/mips/, arch/x86_64/, arch/ppc/, arch/parisc/, ...

2019-03-07 Thread Ben Kohler
commit: c87225e71ddf4306f842107fd57bdefa5acc335b
Author: Ben Kohler  gentoo  org>
AuthorDate: Thu Mar  7 21:10:41 2019 +
Commit: Ben Kohler  gentoo  org>
CommitDate: Thu Mar  7 21:10:41 2019 +
URL:https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=c87225e7

modules_load: add broadcom phy drivers

Closes: https://bugs.gentoo.org/648288

Signed-off-by: Ben Kohler  gentoo.org>

 arch/alpha/modules_load| 2 +-
 arch/arm/modules_load  | 2 +-
 arch/ia64/modules_load | 2 +-
 arch/mips/modules_load | 2 +-
 arch/parisc/modules_load   | 2 +-
 arch/parisc64/modules_load | 2 +-
 arch/ppc/modules_load  | 2 +-
 arch/ppc64/modules_load| 2 +-
 arch/ppc64le/modules_load  | 2 +-
 arch/s390/modules_load | 2 +-
 arch/sparc/modules_load| 2 +-
 arch/sparc64/modules_load  | 2 +-
 arch/um/modules_load   | 2 +-
 arch/x86/modules_load  | 2 +-
 arch/x86_64/modules_load   | 2 +-
 15 files changed, 15 insertions(+), 15 deletions(-)

diff --git a/arch/alpha/modules_load b/arch/alpha/modules_load
index 650f025..f451001 100644
--- a/arch/alpha/modules_load
+++ b/arch/alpha/modules_load
@@ -16,7 +16,7 @@ MODULES_WAITSCAN="scsi_wait_scan"
 MODULES_BLOCK="sdhci_pci"
 
 # Hardware (Network)
-MODULES_NET="e1000 tg3 virtio_net"
+MODULES_NET="e1000 tg3 broadcom bcm_phy_lib virtio_net"
 
 # iSCSI support
 MODULES_ISCSI="scsi_transport_iscsi libiscsi iscsi_tcp"

diff --git a/arch/arm/modules_load b/arch/arm/modules_load
index 650f025..f451001 100644
--- a/arch/arm/modules_load
+++ b/arch/arm/modules_load
@@ -16,7 +16,7 @@ MODULES_WAITSCAN="scsi_wait_scan"
 MODULES_BLOCK="sdhci_pci"
 
 # Hardware (Network)
-MODULES_NET="e1000 tg3 virtio_net"
+MODULES_NET="e1000 tg3 broadcom bcm_phy_lib virtio_net"
 
 # iSCSI support
 MODULES_ISCSI="scsi_transport_iscsi libiscsi iscsi_tcp"

diff --git a/arch/ia64/modules_load b/arch/ia64/modules_load
index a3243b3..8c782f0 100644
--- a/arch/ia64/modules_load
+++ b/arch/ia64/modules_load
@@ -16,7 +16,7 @@ MODULES_WAITSCAN="scsi_wait_scan"
 MODULES_BLOCK="sdhci_acpi sdhci_pci"
 
 # Hardware (Network)
-MODULES_NET="e1000 tg3 virtio_net"
+MODULES_NET="e1000 tg3 broadcom bcm_phy_lib virtio_net"
 
 # iSCSI support
 MODULES_ISCSI="scsi_transport_iscsi libiscsi iscsi_tcp"

diff --git a/arch/mips/modules_load b/arch/mips/modules_load
index 650f025..f451001 100644
--- a/arch/mips/modules_load
+++ b/arch/mips/modules_load
@@ -16,7 +16,7 @@ MODULES_WAITSCAN="scsi_wait_scan"
 MODULES_BLOCK="sdhci_pci"
 
 # Hardware (Network)
-MODULES_NET="e1000 tg3 virtio_net"
+MODULES_NET="e1000 tg3 broadcom bcm_phy_lib virtio_net"
 
 # iSCSI support
 MODULES_ISCSI="scsi_transport_iscsi libiscsi iscsi_tcp"

diff --git a/arch/parisc/modules_load b/arch/parisc/modules_load
index 650f025..f451001 100644
--- a/arch/parisc/modules_load
+++ b/arch/parisc/modules_load
@@ -16,7 +16,7 @@ MODULES_WAITSCAN="scsi_wait_scan"
 MODULES_BLOCK="sdhci_pci"
 
 # Hardware (Network)
-MODULES_NET="e1000 tg3 virtio_net"
+MODULES_NET="e1000 tg3 broadcom bcm_phy_lib virtio_net"
 
 # iSCSI support
 MODULES_ISCSI="scsi_transport_iscsi libiscsi iscsi_tcp"

diff --git a/arch/parisc64/modules_load b/arch/parisc64/modules_load
index 5a6648e..c7b4a62 100644
--- a/arch/parisc64/modules_load
+++ b/arch/parisc64/modules_load
@@ -15,7 +15,7 @@ MODULES_SCSI="sd_mod sg sr_mod aic79xx aic7xxx aic7xxx_old 
arcmsr BusLogic ncr53
 MODULES_WAITSCAN="scsi_wait_scan"
 
 # Hardware (Network)
-MODULES_NET="e1000 tg3 virtio_net"
+MODULES_NET="e1000 tg3 broadcom bcm_phy_lib virtio_net"
 
 # iSCSI support
 MODULES_ISCSI="scsi_transport_iscsi libiscsi iscsi_tcp"

diff --git a/arch/ppc/modules_load b/arch/ppc/modules_load
index 650f025..f451001 100644
--- a/arch/ppc/modules_load
+++ b/arch/ppc/modules_load
@@ -16,7 +16,7 @@ MODULES_WAITSCAN="scsi_wait_scan"
 MODULES_BLOCK="sdhci_pci"
 
 # Hardware (Network)
-MODULES_NET="e1000 tg3 virtio_net"
+MODULES_NET="e1000 tg3 broadcom bcm_phy_lib virtio_net"
 
 # iSCSI support
 MODULES_ISCSI="scsi_transport_iscsi libiscsi iscsi_tcp"

diff --git a/arch/ppc64/modules_load b/arch/ppc64/modules_load
index 650f025..f451001 100644
--- a/arch/ppc64/modules_load
+++ b/arch/ppc64/modules_load
@@ -16,7 +16,7 @@ MODULES_WAITSCAN="scsi_wait_scan"
 MODULES_BLOCK="sdhci_pci"
 
 # Hardware (Network)
-MODULES_NET="e1000 tg3 virtio_net"
+MODULES_NET="e1000 tg3 broadcom bcm_phy_lib virtio_net"
 
 # iSCSI support
 MODULES_ISCSI="scsi_transport_iscsi libiscsi iscsi_tcp"

diff --git a/arch/ppc64le/modules_load b/arch/ppc64le/modules_load
index 650f025..f451001 100644
--- a/arch/ppc64le/modules_load
+++ b/arch/ppc64le/modules_load
@@ -16,7 +16,7 @@ MODULES_WAITSCAN="scsi_wait_scan"
 MODULES_BLOCK="sdhci_pci"
 
 # Hardware (Network)
-MODULES_NET="e1000 tg3 virtio_net"
+MODULES_NET="e1000 tg3 broadcom bcm_phy_lib virtio_net"
 
 # iSCSI support
 MODULES_ISCSI="scsi_transport_iscsi libiscsi iscsi_tcp"

diff --git a/arch/s390/modules_load b/arch/s390/modules_load
index 650f025..f451001 100644
--- 

[gentoo-commits] proj/genkernel:master commit in: arch/x86_64/, arch/arm/, arch/parisc/, arch/s390/, arch/ia64/, arch/ppc/, ...

2019-03-07 Thread Ben Kohler
commit: 5aa3d6112f0bf7ebf22cf5624f9c3c205307af31
Author: Ben Kohler  gentoo  org>
AuthorDate: Thu Mar  7 21:08:19 2019 +
Commit: Ben Kohler  gentoo  org>
CommitDate: Thu Mar  7 21:08:19 2019 +
URL:https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=5aa3d611

modules_load: replace crc32c with crc32c_generic + crc32c-intel

Fixes: https://bugs.gentoo.org/655110
Fixes: https://bugs.gentoo.org/666338

Signed-off-by: Ben Kohler  gentoo.org>

 arch/alpha/modules_load| 2 +-
 arch/arm/modules_load  | 2 +-
 arch/ia64/modules_load | 2 +-
 arch/mips/modules_load | 2 +-
 arch/parisc/modules_load   | 2 +-
 arch/parisc64/modules_load | 2 +-
 arch/ppc/modules_load  | 2 +-
 arch/ppc64/modules_load| 2 +-
 arch/ppc64le/modules_load  | 2 +-
 arch/s390/modules_load | 2 +-
 arch/sparc/modules_load| 2 +-
 arch/sparc64/modules_load  | 2 +-
 arch/um/modules_load   | 2 +-
 arch/x86/modules_load  | 2 +-
 arch/x86_64/modules_load   | 2 +-
 15 files changed, 15 insertions(+), 15 deletions(-)

diff --git a/arch/alpha/modules_load b/arch/alpha/modules_load
index a2dbbf7..650f025 100644
--- a/arch/alpha/modules_load
+++ b/arch/alpha/modules_load
@@ -30,7 +30,7 @@ MODULES_USB="ehci-pci ehci-hcd uhci usb-ohci hid usb-storage 
uas uhci-hcd ohci-h
 MODULES_FS="ext2 ext3 ext4 btrfs reiserfs jfs nfs xfs zfs f2fs fuse loop 
squashfs aufs overlay cramfs configfs fscrypto efivarfs msdos qemu_fw_cfg"
 
 # Crypto
-MODULES_CRYPTO="sha256_generic cbc crc32c crc32_generic aes_generic xts"
+MODULES_CRYPTO="sha256_generic cbc crc32c_generic crc32c-intel crc32_generic 
aes_generic xts"
 
 # Virtio
 MODULES_VIRTIO="virtio_scsi virtio_blk virtio_console virtio-rng virtio 
virtio_balloon virtio_input virtio_ring virtio_pci virtio_mmio virtio_crypto 
virtio_net"

diff --git a/arch/arm/modules_load b/arch/arm/modules_load
index a2dbbf7..650f025 100644
--- a/arch/arm/modules_load
+++ b/arch/arm/modules_load
@@ -30,7 +30,7 @@ MODULES_USB="ehci-pci ehci-hcd uhci usb-ohci hid usb-storage 
uas uhci-hcd ohci-h
 MODULES_FS="ext2 ext3 ext4 btrfs reiserfs jfs nfs xfs zfs f2fs fuse loop 
squashfs aufs overlay cramfs configfs fscrypto efivarfs msdos qemu_fw_cfg"
 
 # Crypto
-MODULES_CRYPTO="sha256_generic cbc crc32c crc32_generic aes_generic xts"
+MODULES_CRYPTO="sha256_generic cbc crc32c_generic crc32c-intel crc32_generic 
aes_generic xts"
 
 # Virtio
 MODULES_VIRTIO="virtio_scsi virtio_blk virtio_console virtio-rng virtio 
virtio_balloon virtio_input virtio_ring virtio_pci virtio_mmio virtio_crypto 
virtio_net"

diff --git a/arch/ia64/modules_load b/arch/ia64/modules_load
index 519bfbd..a3243b3 100644
--- a/arch/ia64/modules_load
+++ b/arch/ia64/modules_load
@@ -30,7 +30,7 @@ MODULES_USB="ehci-pci ehci-hcd uhci usb-ohci hid usb-storage 
uas uhci-hcd ohci-h
 MODULES_FS="ext2 ext3 ext4 btrfs reiserfs jfs nfs xfs zfs f2fs fuse loop 
squashfs aufs overlay cramfs configfs fscrypto efivarfs msdos qemu_fw_cfg"
 
 # Crypto
-MODULES_CRYPTO="sha256_generic cbc crc32c crc32_generic aes_generic xts"
+MODULES_CRYPTO="sha256_generic cbc crc32c_generic crc32c-intel crc32_generic 
aes_generic xts"
 
 # Virtio
 MODULES_VIRTIO="virtio_scsi virtio_blk virtio_console virtio-rng virtio 
virtio_balloon virtio_input virtio_ring virtio_pci virtio_mmio virtio_crypto 
virtio_net"

diff --git a/arch/mips/modules_load b/arch/mips/modules_load
index a2dbbf7..650f025 100644
--- a/arch/mips/modules_load
+++ b/arch/mips/modules_load
@@ -30,7 +30,7 @@ MODULES_USB="ehci-pci ehci-hcd uhci usb-ohci hid usb-storage 
uas uhci-hcd ohci-h
 MODULES_FS="ext2 ext3 ext4 btrfs reiserfs jfs nfs xfs zfs f2fs fuse loop 
squashfs aufs overlay cramfs configfs fscrypto efivarfs msdos qemu_fw_cfg"
 
 # Crypto
-MODULES_CRYPTO="sha256_generic cbc crc32c crc32_generic aes_generic xts"
+MODULES_CRYPTO="sha256_generic cbc crc32c_generic crc32c-intel crc32_generic 
aes_generic xts"
 
 # Virtio
 MODULES_VIRTIO="virtio_scsi virtio_blk virtio_console virtio-rng virtio 
virtio_balloon virtio_input virtio_ring virtio_pci virtio_mmio virtio_crypto 
virtio_net"

diff --git a/arch/parisc/modules_load b/arch/parisc/modules_load
index a2dbbf7..650f025 100644
--- a/arch/parisc/modules_load
+++ b/arch/parisc/modules_load
@@ -30,7 +30,7 @@ MODULES_USB="ehci-pci ehci-hcd uhci usb-ohci hid usb-storage 
uas uhci-hcd ohci-h
 MODULES_FS="ext2 ext3 ext4 btrfs reiserfs jfs nfs xfs zfs f2fs fuse loop 
squashfs aufs overlay cramfs configfs fscrypto efivarfs msdos qemu_fw_cfg"
 
 # Crypto
-MODULES_CRYPTO="sha256_generic cbc crc32c crc32_generic aes_generic xts"
+MODULES_CRYPTO="sha256_generic cbc crc32c_generic crc32c-intel crc32_generic 
aes_generic xts"
 
 # Virtio
 MODULES_VIRTIO="virtio_scsi virtio_blk virtio_console virtio-rng virtio 
virtio_balloon virtio_input virtio_ring virtio_pci virtio_mmio virtio_crypto 
virtio_net"

diff --git a/arch/parisc64/modules_load b/arch/parisc64/modules_load
index 8838f38..5a6648e 100644
--- a/arch/parisc64/modules_load
+++ 

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

2019-03-07 Thread Thomas Deutschmann
commit: 0b9112c9801b9fc368afa7a4024a1f0843119618
Author: Henning Schild  hennsch  de>
AuthorDate: Mon Dec  3 22:07:48 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Mar  7 20:58:29 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b9112c9

www-apps/radicale: Version bump to 2.1.11

Signed-off-by: Henning Schild  hennsch.de>
Closes: https://github.com/gentoo/gentoo/pull/10557
Signed-off-by: Thomas Deutschmann  gentoo.org>

 www-apps/radicale/Manifest   |  1 +
 www-apps/radicale/radicale-2.1.11.ebuild | 84 
 2 files changed, 85 insertions(+)

diff --git a/www-apps/radicale/Manifest b/www-apps/radicale/Manifest
index 437b4a0d556..38d3d8bb9f3 100644
--- a/www-apps/radicale/Manifest
+++ b/www-apps/radicale/Manifest
@@ -1,3 +1,4 @@
 DIST Radicale-1.1.6.tar.gz 48280 BLAKE2B 
38d3047d473fad24188b597a57d3e1f0e34df03f00f6806b86c447ed731be074bf0b5f6dfb951c8a9f627993bf0763792150bc06532414a658e4d306123fcdd6
 SHA512 
3fed85fc5fa2b041277112870b8b508a22cc85ec0680dd1cf9411e73715e18a9b0ddd651eafb0c9529bd308e7fd87ae44ecdd82935f4062050919780301d56d9
 DIST Radicale-2.1.10.tar.gz 77790 BLAKE2B 
37061dd049dc918775f20b522ed86a47f32f34505c13763f8ae49ff007aca77f88caafc959be857c735c11b13506efdfc8413750808b88d5ea6dbe69e05f03ff
 SHA512 
30fac6639e56bbd10664330d84ebba28b34005b4b4b4c5a6c22f53cb7e810ba4961cbd314e62fe33538674a2d4b45f14751f36ef5fa2ae2b7d44c1b1158f6e1c
+DIST Radicale-2.1.11.tar.gz 76490 BLAKE2B 
35578b693a32d4a77f8ff1c93cbb8fb63fd8dabf9fde79cd928d4afa6e059fe836840ca6a33621c13e9421a69bfb25cbb59688ba83bed62003ef3b56b54804b1
 SHA512 
e85f12664d3db6b911dd534eaddd15c498ca4f641cc15523644300aca8b1ef3f6fd4d9645857235502f03a7903111905537b04f9a6fdbde1a60fbb720d377733
 DIST Radicale-2.1.8.tar.gz 76348 BLAKE2B 
87a4ec20990dc7e5dbba88a3fb3d1475210d40c12584d5bb7ba7c6d1ca2cd8efb97b7054d322f0a7fbe58fd8325be63df52f1d370cc13ccc90863b0900925656
 SHA512 
038bee4114b090bcf873e8a4ec83cbbc7bdd34b4843fd1a769a023c891b589b3a18637d5f8f8595691a7930804ad7695e333bb9df96d00515b7a3695294eb5f7

diff --git a/www-apps/radicale/radicale-2.1.11.ebuild 
b/www-apps/radicale/radicale-2.1.11.ebuild
new file mode 100644
index 000..4872a7b5e46
--- /dev/null
+++ b/www-apps/radicale/radicale-2.1.11.ebuild
@@ -0,0 +1,84 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+PYTHON_COMPAT=( python{3_4,3_5,3_6} )
+
+inherit distutils-r1 eutils user
+
+MY_PN="Radicale"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="A simple CalDAV calendar server"
+HOMEPAGE="https://radicale.org/;
+SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="+bcrypt"
+
+RDEPEND=">=dev-python/vobject-0.9.6[${PYTHON_USEDEP}]
+   >=dev-python/python-dateutil-2.7.3[${PYTHON_USEDEP}]
+   bcrypt? ( dev-python/passlib[bcrypt,${PYTHON_USEDEP}] )"
+
+S=${WORKDIR}/${MY_P}
+
+RDIR=/var/lib/radicale
+LDIR=/var/log/radicale
+
+pkg_pretend() {
+   if [[ -f ${RDIR}/.props && ${MERGE_TYPE} != buildonly ]]; then
+   eerror "It looks like you have a version 1 database in ${RDIR}."
+   eerror "You must convert this database to version 2 format 
before upgrading."
+   eerror "You may want to back up the old database before 
migrating."
+   eerror
+   eerror "If you have kept the Gentoo-default database 
configuration, this will work:"
+   eerror "1. Stop any running instance of Radicale."
+   eerror "2. Run \`radicale --export-storage 
~/radicale-exported\`."
+   eerror "3. Run \`chown -R radicale: ~/radicale-exported\`"
+   eerror "4. Run \`mv \"${RDIR}\" \"${RDIR}.old\"\`."
+   eerror "5. Install Radicale version 2."
+   eerror "6. Run \`mv ~/radicale-exported 
\"${RDIR}/collections\"\`."
+   eerror
+   eerror "For more details, or if you are have a more complex 
configuration,"
+   eerror "please see the migration guide: 
https://radicale.org/1to2/;
+   eerror "If you do a custom migration, please ensure the 
database is cleaned out of"
+   eerror "${RDIR}, including the hidden .props file."
+   die
+   fi
+}
+
+pkg_setup() {
+   enewgroup radicale
+   enewuser radicale -1 -1 ${RDIR} radicale
+}
+
+python_install_all() {
+   rm README* || die
+
+   # init file
+   newinitd "${FILESDIR}"/radicale.init.d radicale
+
+   # directories
+   diropts -m0750 -oradicale -gradicale
+   keepdir ${RDIR}
+   diropts -m0755 -oradicale -gradicale
+   keepdir ${LDIR}
+
+   # config file
+   insinto /etc/${PN}
+   doins config logging
+
+   # fcgi and wsgi files
+   exeinto /usr/share/${PN}
+   doexe radicale.fcgi radicale.wsgi
+
+   distutils-r1_python_install_all
+}
+
+pkg_postinst() {
+   einfo "A 

[gentoo-commits] repo/gentoo:master commit in: www-apps/radicale/, www-apps/radicale/files/

2019-03-07 Thread Thomas Deutschmann
commit: 6f6b42f6f6efdd9ddfb0bb39111292cb2c6d6c2b
Author: Karel Kočí  email  cz>
AuthorDate: Tue Dec  4 21:53:48 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Mar  7 21:00:47 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f6b42f6

www-apps/radicale: log stdout and stderr to syslog

Radicale in default sends all its logs to stderr and stdout. This
redirect them to syslog.

Bug: https://bugs.gentoo.org/672534
Signed-off-by: Karel Kočí  email.cz>
Closes: https://github.com/gentoo/gentoo/pull/10574
Signed-off-by: Thomas Deutschmann  gentoo.org>

 www-apps/radicale/files/radicale-r1.init.d | 27 ++
 ...ale-2.1.11.ebuild => radicale-2.1.10-r1.ebuild} | 10 
 www-apps/radicale/radicale-2.1.11.ebuild   |  8 +++
 3 files changed, 34 insertions(+), 11 deletions(-)

diff --git a/www-apps/radicale/files/radicale-r1.init.d 
b/www-apps/radicale/files/radicale-r1.init.d
new file mode 100644
index 000..9e2ddb7c510
--- /dev/null
+++ b/www-apps/radicale/files/radicale-r1.init.d
@@ -0,0 +1,27 @@
+#!/sbin/openrc-run
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+PIDFILE=/var/run/radicale.pid
+
+depend() {
+use net
+need localmount
+}
+
+start() {
+ebegin "Starting radicale"
+start-stop-daemon --start --quiet --background \
+--user radicale \
+--stderr-logger /usr/bin/logger \
+--pidfile ${PIDFILE} --make-pidfile \
+--exec /usr/bin/radicale -- --foreground
+eend $?
+}
+
+stop() {
+ebegin "Stopping radicale"
+start-stop-daemon --stop --quiet \
+--pidfile ${PIDFILE}
+eend $?
+}

diff --git a/www-apps/radicale/radicale-2.1.11.ebuild 
b/www-apps/radicale/radicale-2.1.10-r1.ebuild
similarity index 90%
copy from www-apps/radicale/radicale-2.1.11.ebuild
copy to www-apps/radicale/radicale-2.1.10-r1.ebuild
index 4872a7b5e46..34fd1a1d2f8 100644
--- a/www-apps/radicale/radicale-2.1.11.ebuild
+++ b/www-apps/radicale/radicale-2.1.10-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="6"
@@ -19,14 +19,14 @@ SLOT="0"
 KEYWORDS="~amd64 ~x86"
 IUSE="+bcrypt"
 
-RDEPEND=">=dev-python/vobject-0.9.6[${PYTHON_USEDEP}]
+RDEPEND="sys-apps/util-linux
+   >=dev-python/vobject-0.9.6[${PYTHON_USEDEP}]
>=dev-python/python-dateutil-2.7.3[${PYTHON_USEDEP}]
bcrypt? ( dev-python/passlib[bcrypt,${PYTHON_USEDEP}] )"
 
 S=${WORKDIR}/${MY_P}
 
 RDIR=/var/lib/radicale
-LDIR=/var/log/radicale
 
 pkg_pretend() {
if [[ -f ${RDIR}/.props && ${MERGE_TYPE} != buildonly ]]; then
@@ -59,13 +59,11 @@ python_install_all() {
rm README* || die
 
# init file
-   newinitd "${FILESDIR}"/radicale.init.d radicale
+   newinitd "${FILESDIR}"/radicale-r1.init.d radicale
 
# directories
diropts -m0750 -oradicale -gradicale
keepdir ${RDIR}
-   diropts -m0755 -oradicale -gradicale
-   keepdir ${LDIR}
 
# config file
insinto /etc/${PN}

diff --git a/www-apps/radicale/radicale-2.1.11.ebuild 
b/www-apps/radicale/radicale-2.1.11.ebuild
index 4872a7b5e46..a65d7bc588b 100644
--- a/www-apps/radicale/radicale-2.1.11.ebuild
+++ b/www-apps/radicale/radicale-2.1.11.ebuild
@@ -19,14 +19,14 @@ SLOT="0"
 KEYWORDS="~amd64 ~x86"
 IUSE="+bcrypt"
 
-RDEPEND=">=dev-python/vobject-0.9.6[${PYTHON_USEDEP}]
+RDEPEND="sys-apps/util-linux
+   >=dev-python/vobject-0.9.6[${PYTHON_USEDEP}]
>=dev-python/python-dateutil-2.7.3[${PYTHON_USEDEP}]
bcrypt? ( dev-python/passlib[bcrypt,${PYTHON_USEDEP}] )"
 
 S=${WORKDIR}/${MY_P}
 
 RDIR=/var/lib/radicale
-LDIR=/var/log/radicale
 
 pkg_pretend() {
if [[ -f ${RDIR}/.props && ${MERGE_TYPE} != buildonly ]]; then
@@ -59,13 +59,11 @@ python_install_all() {
rm README* || die
 
# init file
-   newinitd "${FILESDIR}"/radicale.init.d radicale
+   newinitd "${FILESDIR}"/radicale-r1.init.d radicale
 
# directories
diropts -m0750 -oradicale -gradicale
keepdir ${RDIR}
-   diropts -m0755 -oradicale -gradicale
-   keepdir ${LDIR}
 
# config file
insinto /etc/${PN}



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

2019-03-07 Thread Ben Kohler
commit: 4980dddaa91b4198a1b3f3ff852278ad680a6372
Author: Ben Kohler  gentoo  org>
AuthorDate: Thu Mar  7 20:42:06 2019 +
Commit: Ben Kohler  gentoo  org>
CommitDate: Thu Mar  7 20:42:06 2019 +
URL:https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=4980ddda

genkernel.conf: remove misleading comment about INSTALL default

Fixes: https://bugs.gentoo.org/663550

Signed-off-by: Ben Kohler  gentoo.org>

 genkernel.conf | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/genkernel.conf b/genkernel.conf
index 57cb2b0..1533c7a 100644
--- a/genkernel.conf
+++ b/genkernel.conf
@@ -7,8 +7,7 @@
 
 # =Common Command Line Option Defaults=
 
-# Should we install to $BOOTDIR?  Default is "no" because genkernel is used in
-# catalyst and stage building.
+# Should we install to $BOOTDIR?
 #INSTALL="yes"
 
 # Run 'make oldconfig' before compiling this kernel?



[gentoo-commits] proj/sci:master commit in: sci-biology/CAT/files/, sci-biology/CAT/

2019-03-07 Thread Martin Mokrejs
commit: e75a3d6b5e82f3ca53ef356f21afe0369e82eac1
Author: Martin Mokrejs  fold  natur  cuni  cz>
AuthorDate: Thu Mar  7 19:43:41 2019 +
Commit: Martin Mokrejs  fold  natur  cuni  cz>
CommitDate: Thu Mar  7 19:43:41 2019 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=e75a3d6b

sci-biology/CAT: add missing -lstdc++ -lm and drop -w

Use proper env variables

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Martin Mokrejs  fold.natur.cuni.cz>

 sci-biology/CAT/CAT-1.3.ebuild|  9 ++---
 sci-biology/CAT/files/CAT-1.3_respect_env_variables.patch | 15 ++-
 2 files changed, 16 insertions(+), 8 deletions(-)

diff --git a/sci-biology/CAT/CAT-1.3.ebuild b/sci-biology/CAT/CAT-1.3.ebuild
index 2628c04a9..44d099524 100644
--- a/sci-biology/CAT/CAT-1.3.ebuild
+++ b/sci-biology/CAT/CAT-1.3.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-DESCRIPTION="Estimate codon usage bias and its statistical significance"
+DESCRIPTION="Codon usage bias (composition) and its statistical significance"
 HOMEPAGE="
http://bigd.big.ac.cn/tools/cat
http://cbb.big.ac.cn/Software
@@ -11,9 +11,9 @@ HOMEPAGE="
http://www.cbrc.kaust.edu.sa/CAT;
 SRC_URI="ftp://download.big.ac.cn/bigd/tools/${PN}${PV}.tar.gz -> ${P}.tar.gz"
 
-LICENSE="GPL-3"
+LICENSE="GPL-3+"
 SLOT="0"
-KEYWORDS=""
+KEYWORDS="~amd64 ~x86"
 IUSE=""
 
 PATCHES=( "${FILESDIR}"/CAT-1.3_respect_env_variables.patch )
@@ -30,5 +30,8 @@ src_compile(){
 }
 
 src_install(){
+   dodoc README.TXT
+   newdoc doc/CAT-DOC.pdf "${PN}".pdf
+   cd src || die
dobin CAT
 }

diff --git a/sci-biology/CAT/files/CAT-1.3_respect_env_variables.patch 
b/sci-biology/CAT/files/CAT-1.3_respect_env_variables.patch
index 5dff3986c..9c32d8a1d 100644
--- a/sci-biology/CAT/files/CAT-1.3_respect_env_variables.patch
+++ b/sci-biology/CAT/files/CAT-1.3_respect_env_variables.patch
@@ -1,11 +1,16 @@
 CAT1.3/src/makefile2011-03-13 15:05:27.0 +0100
-+++ CAT1.3/src/makefile2019-03-07 20:08:29.988220775 +0100
-@@ -1,6 +1,6 @@
+--- CAT1.3/src/makefile.ori2011-03-13 15:05:27.0 +0100
 CAT1.3/src/makefile2019-03-07 20:31:27.147985682 +0100
+@@ -1,10 +1,10 @@
  PRGS = CAT 
 -CC = g++
 -CFLAGS = -O3
-+CC ?= g++
-+CFLAGS ?= -O3
++CXX ?= g++
++CXXFLAGS ?= -O3
  
  all:  $(PRGS) 
  
+ CAT: main_CAT.cpp CAT.cpp base.cpp
+-  $(CC) $(CFLAGS) -o  $@ main_CAT.cpp CAT.cpp base.cpp  -w
++  $(CXX) $(CXXFLAGS) -o  $@ main_CAT.cpp CAT.cpp base.cpp -lstdc++ -lm
+ install: CAT
+   install CAT ~/bin/



[gentoo-commits] proj/sci:master commit in: sci-biology/CAT/, sci-biology/CAT/files/

2019-03-07 Thread Martin Mokrejs
commit: 2b35fa3317ef51f0de6002b65efa23605ee5e0cb
Author: Martin Mokrejs  fold  natur  cuni  cz>
AuthorDate: Thu Mar  7 19:20:38 2019 +
Commit: Martin Mokrejs  fold  natur  cuni  cz>
CommitDate: Thu Mar  7 19:20:38 2019 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=2b35fa33

sci-biology/CAT: new package

Does not compile, probably requires some older C++ standard?

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Martin Mokrejs  fold.natur.cuni.cz>

 sci-biology/CAT/CAT-1.3.ebuild | 34 ++
 .../CAT/files/CAT-1.3_respect_env_variables.patch  | 11 +++
 sci-biology/CAT/metadata.xml   | 12 
 3 files changed, 57 insertions(+)

diff --git a/sci-biology/CAT/CAT-1.3.ebuild b/sci-biology/CAT/CAT-1.3.ebuild
new file mode 100644
index 0..2628c04a9
--- /dev/null
+++ b/sci-biology/CAT/CAT-1.3.ebuild
@@ -0,0 +1,34 @@
+# Copyright 2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Estimate codon usage bias and its statistical significance"
+HOMEPAGE="
+   http://bigd.big.ac.cn/tools/cat
+   http://cbb.big.ac.cn/Software
+   http://code.google.com/p/composition-analysis-toolkit
+   http://www.cbrc.kaust.edu.sa/CAT;
+SRC_URI="ftp://download.big.ac.cn/bigd/tools/${PN}${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS=""
+IUSE=""
+
+PATCHES=( "${FILESDIR}"/CAT-1.3_respect_env_variables.patch )
+
+DEPEND=""
+RDEPEND="${DEPEND}"
+BDEPEND=""
+
+S="${WORKDIR}/${PN}${PV}"
+
+src_compile(){
+   cd src || die
+   emake
+}
+
+src_install(){
+   dobin CAT
+}

diff --git a/sci-biology/CAT/files/CAT-1.3_respect_env_variables.patch 
b/sci-biology/CAT/files/CAT-1.3_respect_env_variables.patch
new file mode 100644
index 0..5dff3986c
--- /dev/null
+++ b/sci-biology/CAT/files/CAT-1.3_respect_env_variables.patch
@@ -0,0 +1,11 @@
+--- CAT1.3/src/makefile2011-03-13 15:05:27.0 +0100
 CAT1.3/src/makefile2019-03-07 20:08:29.988220775 +0100
+@@ -1,6 +1,6 @@
+ PRGS = CAT 
+-CC = g++
+-CFLAGS = -O3
++CC ?= g++
++CFLAGS ?= -O3
+ 
+ all:  $(PRGS) 
+ 

diff --git a/sci-biology/CAT/metadata.xml b/sci-biology/CAT/metadata.xml
new file mode 100644
index 0..138cb7705
--- /dev/null
+++ b/sci-biology/CAT/metadata.xml
@@ -0,0 +1,12 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   mmokr...@fold.natur.cuni.cz
+   Martin Mokrejs
+   
+   
+   sci-biol...@gentoo.org
+   Gentoo Biology Project
+   
+



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

2019-03-07 Thread Ian Stakenvicius
commit: f5efe59e2c6c11b669bf33441134d2f4a8ba9741
Author: Ian Stakenvicius  gentoo  org>
AuthorDate: Thu Mar  7 19:05:21 2019 +
Commit: Ian Stakenvicius  gentoo  org>
CommitDate: Thu Mar  7 19:05:45 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5efe59e

dev-lang/spidermonkey: drop top-level 'asm volatile' on 1.8.5

Required to build using gcc-8 and above.  Also bumped to EAPI6 while in there.

Bug: https://bugs.gentoo.org/679330
Signed-off-by: Ian Stakenvicius  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 dev-lang/spidermonkey/Manifest |   1 +
 dev-lang/spidermonkey/spidermonkey-1.8.5-r7.ebuild | 147 +
 2 files changed, 148 insertions(+)

diff --git a/dev-lang/spidermonkey/Manifest b/dev-lang/spidermonkey/Manifest
index ea9d03ce4a8..072cc20aec7 100644
--- a/dev-lang/spidermonkey/Manifest
+++ b/dev-lang/spidermonkey/Manifest
@@ -7,6 +7,7 @@ DIST mozjs-52.9.1pre1.tar.bz2 30178574 BLAKE2B 
0920432b5140e78297a9bcbccb54268d7
 DIST mozjs17.0.0.tar.gz 6778934 BLAKE2B 
a37debf5079fc4c27bb9edd3172c6e7914f6128fac6ffa97b49ac266c477d0916b180fb68ecd0916a52f935959a83d73254b0ba72b4898adc5e3b85927d17d2a
 SHA512 
39b68aeb9f712f146778d8b68ee795709a1372c8ab893a222af4eb34882427d6f5cf877e743d6cb2f1b4348c194d8f3774f00cb775b03515b34b49560b748be4
 DIST spidermonkey-52.0-patches-0.tar.xz 5172 BLAKE2B 
8bcf9477de47ef3b882cd3281efa7f77c16ce11fc93f6a620917adf629fde8290af1dd69f0930a889aacfee3603bf60eb9c1e718a1dfd3e218a1013b6192
 SHA512 
88ad640fb0efa4972f1b7782bd0abee1751b73914ee51faade93b25c4d8eec64e7693898842a406c49fc2ab43733404efeccb138afb64d2193b9a5eb612578e3
 DIST spidermonkey-slot0-patches-01.tar.xz 10488 BLAKE2B 
4a5195ac11d1076046424fc10d1416d097fb230cd8b0b28ac8b65d379e0c0518586ced0f48f833dea52b13fb5d300e02664657ab2479bfcc343bc358d394d5d7
 SHA512 
6c878ed0b50c052989a8b965fed845e9c672b691f4c4b1f98ee82e81a33880e1e6bf1dac8222d71322553282de602a88272dedebbcf50d27967fc172f0a8054a
+DIST spidermonkey-slot0-patches-02.tar.xz 10952 BLAKE2B 
fb7bf5cdac6c821a48d407ff172fe0ec7297e047d3b3bab952f226f413b83ea70325175b41c1680725ff588111b424efc97a0c66e392989da510c43d38528ff1
 SHA512 
cd62890c4b58658d99fc1b52f05ccb35c07da835b168bb9d5e6b219de5021122c199cc2255c5b0be01ef582f53dd51c9975921e6bde9f14e9b43536e2bee85f2
 DIST spidermonkey-slot17-patches-01.tar.xz 2748 BLAKE2B 
a55504d726f925096de7e066a1d323154bc796018644f347bc1d012ea6ee8441cc19f30689e06fd26bab5a5d2e8376e90bf2c1930a588be8b48865f7bbc524ea
 SHA512 
21a90f85d156de3cca9811317507162a458f908bb447924fcfbf49b7bb70496b611ce7df90b90775316b8ceafda56692be3bf856b168b83ed40b8a5c668eed3f
 DIST spidermonkey-slot24-patches-01.tar.xz 3444 BLAKE2B 
f207577db223d51e315d473f0eefa8a2805fab49acd952fa5796eb4e967c82c76965afcdea1b55ac98c5e94f4321f40c1ea9079d5ebee99fdef950bddee91ab2
 SHA512 
712250983f726eb2fe7ae243e9ca510b6e5b8fa0f221fe5120c2e2f75334f7e4b10b8ab172869d7333a120529dbc2a513c170533d5ad5af27a2643ce1384bbdb
 DIST spidermonkey-slot38-patches-01.tar.xz 7472 BLAKE2B 
7585aa6f5a84d6ae21e41137fca8da093580182f798f63bfcf2e402e3bf58df4cb3f43cef3eb635044508800f6757247fa3a65ca53230243a455925f436a9510
 SHA512 
953acee985d192c6d0f18f14c70fdda33a7c8f784c6833ca8b75495044b40a8b3f29b281c40dbfcda0c8570c111a3dd1717c2ef0ffd651c1b50d1f2bff1f6d09

diff --git a/dev-lang/spidermonkey/spidermonkey-1.8.5-r7.ebuild 
b/dev-lang/spidermonkey/spidermonkey-1.8.5-r7.ebuild
new file mode 100644
index 000..74694de9206
--- /dev/null
+++ b/dev-lang/spidermonkey/spidermonkey-1.8.5-r7.ebuild
@@ -0,0 +1,147 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+WANT_AUTOCONF="2.1"
+PYTHON_COMPAT=( python2_7 )
+PYTHON_REQ_USE="threads"
+inherit autotools toolchain-funcs multilib python-any-r1 versionator pax-utils
+
+MY_PN="js"
+TARBALL_PV="$(replace_all_version_separators '' $(get_version_component_range 
1-3))"
+MY_P="${MY_PN}-${PV}"
+TARBALL_P="${MY_PN}${TARBALL_PV}-1.0.0"
+DESCRIPTION="Stand-alone JavaScript C library"
+HOMEPAGE="https://developer.mozilla.org/en-US/docs/Mozilla/Projects/SpiderMonkey;
+SRC_URI="https://archive.mozilla.org/pub/js/${TARBALL_P}.tar.gz
+   https://dev.gentoo.org/~axs/distfiles/${PN}-slot0-patches-02.tar.xz
+   "
+
+LICENSE="NPL-1.1"
+SLOT="0/mozjs185"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x64-macos"
+IUSE="debug minimal static-libs test"
+
+S="${WORKDIR}/${MY_P}"
+BUILDDIR="${S}/js/src"
+
+RDEPEND=">=dev-libs/nspr-4.7.0
+   sys-libs/readline:0=
+   x64-macos? ( dev-libs/jemalloc )"
+DEPEND="${RDEPEND}
+   ${PYTHON_DEPS}
+   app-arch/zip
+   virtual/pkgconfig"
+
+PATCHES=(
+   "${WORKDIR}"/sm0/${P}-fix-install-symlinks.patch
+   "${WORKDIR}"/sm0/${P}-fix-ppc64.patch
+   "${WORKDIR}"/sm0/${P}-arm_respect_cflags-3.patch
+   "${WORKDIR}"/sm0/${PN}-1.8.7-freebsd-pthreads.patch
+   

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

2019-03-07 Thread Martin Mokrejs
commit: b89f5830731c5051879f16da515be37ad14eab10
Author: Martin Mokrejs  fold  natur  cuni  cz>
AuthorDate: Thu Mar  7 18:47:51 2019 +
Commit: Martin Mokrejs  fold  natur  cuni  cz>
CommitDate: Thu Mar  7 18:47:51 2019 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=b89f5830

sci-biology/ParaAT: add missing default in src_prepare()

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Martin Mokrejs  fold.natur.cuni.cz>

 sci-biology/ParaAT/ParaAT-1.0.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sci-biology/ParaAT/ParaAT-1.0.ebuild 
b/sci-biology/ParaAT/ParaAT-1.0.ebuild
index 9339b121e..d806d90eb 100644
--- a/sci-biology/ParaAT/ParaAT-1.0.ebuild
+++ b/sci-biology/ParaAT/ParaAT-1.0.ebuild
@@ -21,6 +21,7 @@ S="${WORKDIR}/${PN}${PV}"
 
 src_prepare(){
rm -f ._Epal2nal.pl ._ParaAT.pl
+   default
 }
 
 src_install(){



[gentoo-commits] proj/sci:master commit in: sci-biology/KaKs_Calculator/files/, sci-biology/KaKs_Calculator/

2019-03-07 Thread Martin Mokrejs
commit: 3ae295ae35d49fc7242ae20b64611ebccc0daec3
Author: Martin Mokrejs  fold  natur  cuni  cz>
AuthorDate: Thu Mar  7 18:41:26 2019 +
Commit: Martin Mokrejs  fold  natur  cuni  cz>
CommitDate: Thu Mar  7 18:41:26 2019 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=3ae295ae

sci-biology/KaKs_Calculator: new package

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Martin Mokrejs  fold.natur.cuni.cz>

 .../KaKs_Calculator/KaKs_Calculator-1.2.ebuild | 22 +++---
 .../KaKs_Calculator/KaKs_Calculator-2.0.ebuild | 48 ++
 ...Ks_Calculator-1.2_strlen_was_not_declared.patch | 11 +
 3 files changed, 75 insertions(+), 6 deletions(-)

diff --git a/sci-biology/KaKs_Calculator/KaKs_Calculator-1.2.ebuild 
b/sci-biology/KaKs_Calculator/KaKs_Calculator-1.2.ebuild
index ccd592626..929117604 100644
--- a/sci-biology/KaKs_Calculator/KaKs_Calculator-1.2.ebuild
+++ b/sci-biology/KaKs_Calculator/KaKs_Calculator-1.2.ebuild
@@ -1,24 +1,33 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
 inherit eutils toolchain-funcs
 
 DESCRIPTION="Calculate nonsynonymous (Ka) and synonymous (Ks) substitution 
rates"
-HOMEPAGE="https://code.google.com/p/kaks-calculator;
+HOMEPAGE="https://code.google.com/p/kaks-calculator
+   http://bigd.big.ac.cn/tools/kaks;
 SRC_URI="
-   
https://kaks-calculator.googlecode.com/files/KaKs_Calculator"${PV}".tar.gz
-   https://kaks-calculator.googlecode.com/files/parseFastaIntoAXT.pl;
+   
https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/kaks-calculator/KaKs_Calculator"${PV}".tar.gz
 -> ${P}.tar.gz
+   
https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/kaks-calculator/parseFastaIntoAXT.pl
+   
https://raw.githubusercontent.com/WilsonSayresLab/AlignmentProcessor/master/KaKs_Calculator/${PN}${PV}/KaKs_CalculatorDOC.pdf
 -> ${P}_manual.pdf
+   
https://s3.amazonaws.com/fumba.me/share+files/1-s2.0-S1672022907600072-main.pdf 
-> ${PN}-Zhang_et_al_2006.pdf"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS=""
+KEYWORDS="~amd64 ~x86"
 IUSE=""
 
+PATCHES=( "${FILESDIR}/${PN}"-1.2_strlen_was_not_declared.patch )
+
+# ParaAT: A parallel tool for constructing multiple protein-coding DNA 
alignments
+# http://cbb.big.ac.cn/software
+# https://www.sciencedirect.com/science/article/pii/S0006291X12003518
 DEPEND="sci-biology/ParaAT"
 RDEPEND="
dev-lang/perl
+   sci-biology/paml
${DEPEND}"
 
 S="${WORKDIR}"/KaKs_Calculator"${PV}"
@@ -36,4 +45,5 @@ src_compile(){
 src_install(){
dobin "${DISTDIR}"/parseFastaIntoAXT.pl
dobin src/{KaKs_Calculator,AXTConvertor,ConPairs}
+   dodoc "${DISTDIR}"/${P}_manual.pdf 
"${DISTDIR}"/${PN}-Zhang_et_al_2006.pdf
 }

diff --git a/sci-biology/KaKs_Calculator/KaKs_Calculator-2.0.ebuild 
b/sci-biology/KaKs_Calculator/KaKs_Calculator-2.0.ebuild
new file mode 100644
index 0..5edd1323a
--- /dev/null
+++ b/sci-biology/KaKs_Calculator/KaKs_Calculator-2.0.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit eutils toolchain-funcs
+
+DESCRIPTION="Calculate nonsynonymous (Ka) and synonymous (Ks) substitution 
rates"
+HOMEPAGE="https://code.google.com/p/kaks-calculator
+   https://sourceforge.net/projects/kakscalculator2/
+   https://www.sciencedirect.com/science/article/pii/S1672022910600083;
+SRC_URI="
+   
https://netcologne.dl.sourceforge.net/project/kakscalculator2/${PN}${PV}.tar.gz 
-> ${P}.tar.gz
+   
https://github.com/WilsonSayresLab/AlignmentProcessor/blob/master/KaKs_Calculator/${PN}${PV}/${PN}${PV}_manual.pdf
 -> ${P}_manual.pdf
+   
https://s3.amazonaws.com/fumba.me/share+files/1-s2.0-S1672022907600072-main.pdf 
-> ${PN}-Zhang_et_al_2006.pdf"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+PATCHES=( "${FILESDIR}/${PN}"-1.2_strlen_was_not_declared.patch )
+
+# ParaAT: A parallel tool for constructing multiple protein-coding DNA 
alignments
+# http://cbb.big.ac.cn/software
+# https://www.sciencedirect.com/science/article/pii/S0006291X12003518
+DEPEND="sci-biology/ParaAT"
+RDEPEND="
+   dev-lang/perl
+   sci-biology/paml
+   ${DEPEND}"
+
+S="${WORKDIR}"/KaKs_Calculator"${PV}"
+
+src_prepare(){
+   sed -e "s/^CC = g++/CC="$(tc-getCXX)"/; s/^CFLAGS/#CFLAGS/" -i 
src/makefile  || die
+   default
+}
+
+src_compile(){
+   cd src || die
+   default
+}
+
+src_install(){
+   dobin src/{KaKs_Calculator,AXTConvertor,ConPairs}
+   dodoc "${DISTDIR}"/${P}_manual.pdf 
"${DISTDIR}"/${PN}-Zhang_et_al_2006.pdf
+}

diff --git 
a/sci-biology/KaKs_Calculator/files/KaKs_Calculator-1.2_strlen_was_not_declared.patch
 
b/sci-biology/KaKs_Calculator/files/KaKs_Calculator-1.2_strlen_was_not_declared.patch
new file mode 100644

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

2019-03-07 Thread Martin Mokrejs
commit: 70ea861437459dc2b1637d75098132578282b6f0
Author: Martin Mokrejs  fold  natur  cuni  cz>
AuthorDate: Thu Mar  7 18:39:01 2019 +
Commit: Martin Mokrejs  fold  natur  cuni  cz>
CommitDate: Thu Mar  7 18:39:01 2019 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=70ea8614

sci-biology/ParaAT: new package

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Martin Mokrejs  fold.natur.cuni.cz>

 sci-biology/ParaAT/ParaAT-1.0.ebuild | 29 +
 sci-biology/ParaAT/metadata.xml  | 12 
 2 files changed, 41 insertions(+)

diff --git a/sci-biology/ParaAT/ParaAT-1.0.ebuild 
b/sci-biology/ParaAT/ParaAT-1.0.ebuild
new file mode 100644
index 0..9339b121e
--- /dev/null
+++ b/sci-biology/ParaAT/ParaAT-1.0.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DESCRIPTION="Create multiple protein-coding DNA alignments and 
back-Translation"
+HOMEPAGE="https://code.google.com/p/paraat
+   http://cbb.big.ac.cn/software
+   https://www.sciencedirect.com/science/article/pii/S0006291X12003518;
+SRC_URI="https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/paraat/${PN}${PV}.tar.gz
 -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="dev-lang/perl"
+RDEPEND="${DEPEND}"
+
+S="${WORKDIR}/${PN}${PV}"
+
+src_prepare(){
+   rm -f ._Epal2nal.pl ._ParaAT.pl
+}
+
+src_install(){
+   dobin *.pl
+   dodoc readme.txt
+}

diff --git a/sci-biology/ParaAT/metadata.xml b/sci-biology/ParaAT/metadata.xml
new file mode 100644
index 0..138cb7705
--- /dev/null
+++ b/sci-biology/ParaAT/metadata.xml
@@ -0,0 +1,12 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   mmokr...@fold.natur.cuni.cz
+   Martin Mokrejs
+   
+   
+   sci-biol...@gentoo.org
+   Gentoo Biology Project
+   
+



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

2019-03-07 Thread Matt Turner
commit: 0ba755337c3f15af8b16de7d37163d6c2c38940b
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Mar  7 18:37:03 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Mar  7 18:37:03 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ba75533

sys-kernel/gentoo-sources-4.19.27: ppc stable, bug 679558

Signed-off-by: Matt Turner  gentoo.org>

 sys-kernel/gentoo-sources/gentoo-sources-4.19.27.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.19.27.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.19.27.ebuild
index 7ffb4d43807..72196a4b5c5 100644
--- a/sys-kernel/gentoo-sources/gentoo-sources-4.19.27.ebuild
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.19.27.ebuild
@@ -10,7 +10,7 @@ inherit kernel-2
 detect_version
 detect_arch
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh 
~sparc ~x86"
 HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches;
 IUSE="experimental"
 



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

2019-03-07 Thread Matt Turner
commit: f4235c28781db40c6977b22d7355527780b3c11d
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Mar  7 18:37:14 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Mar  7 18:37:14 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4235c28

sys-kernel/gentoo-sources-4.19.27: ppc64 stable, bug 679558

Signed-off-by: Matt Turner  gentoo.org>

 sys-kernel/gentoo-sources/gentoo-sources-4.19.27.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.19.27.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.19.27.ebuild
index 72196a4b5c5..098cdc4bfd0 100644
--- a/sys-kernel/gentoo-sources/gentoo-sources-4.19.27.ebuild
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.19.27.ebuild
@@ -10,7 +10,7 @@ inherit kernel-2
 detect_version
 detect_arch
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh 
~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh 
~sparc ~x86"
 HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches;
 IUSE="experimental"
 



[gentoo-commits] proj/portage-utils:master commit in: man/, /, man/include/

2019-03-07 Thread Fabian Groffen
commit: 9ae56f85211d2c7c00b77b836e797339fc76f9b8
Author: Fabian Groffen  gentoo  org>
AuthorDate: Thu Mar  7 18:18:47 2019 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Thu Mar  7 18:18:47 2019 +
URL:https://gitweb.gentoo.org/proj/portage-utils.git/commit/?id=9ae56f85

qlist: change -U to display disabled flags with -v

reimplement umapstr() to allow printing flags not enabled, this is
slightly related to bug #656550.

Signed-off-by: Fabian Groffen  gentoo.org>

 man/include/qlist.optdesc.yaml |   2 +-
 man/qlist.1|   4 +-
 qlist.c| 183 ++---
 3 files changed, 119 insertions(+), 70 deletions(-)

diff --git a/man/include/qlist.optdesc.yaml b/man/include/qlist.optdesc.yaml
index a60ef0d..2b9299c 100644
--- a/man/include/qlist.optdesc.yaml
+++ b/man/include/qlist.optdesc.yaml
@@ -19,6 +19,6 @@ verbose: |
 When listing the package contents, a single \fB\-v\fR displays
 symlinks with an arrow (\->) to their target.  Two or more \fB\-v\fR
 adds colour to the entries and prints like \fB\-I\fR before the
-listing.
+listing.  Shows disabled USE-flags when used with \fB\-U\fR.
 quiet: |
 Suppresses the parenthesis around the USE-flags when used with \fB\-U\fR.

diff --git a/man/qlist.1 b/man/qlist.1
index c2c585c..4df7dab 100644
--- a/man/qlist.1
+++ b/man/qlist.1
@@ -1,5 +1,5 @@
 .\" generated by mkman.py, please do NOT edit!
-.TH qlist "1" "Feb 2019" "Gentoo Foundation" "qlist"
+.TH qlist "1" "Mar 2019" "Gentoo Foundation" "qlist"
 .SH NAME
 qlist \- list files owned by pkgname
 .SH SYNOPSIS
@@ -60,7 +60,7 @@ When used with \fB\-I\fR, print the package version next to 
name.
 When listing the package contents, a single \fB\-v\fR displays
 symlinks with an arrow (\->) to their target.  Two or more \fB\-v\fR
 adds colour to the entries and prints like \fB\-I\fR before the
-listing.
+listing.  Shows disabled USE-flags when used with \fB\-U\fR.
 .TP
 \fB\-q\fR, \fB\-\-quiet\fR
 Suppresses the parenthesis around the USE-flags when used with \fB\-U\fR.

diff --git a/qlist.c b/qlist.c
index 4a3b95a..3ca3f5e 100644
--- a/qlist.c
+++ b/qlist.c
@@ -43,84 +43,124 @@ static const char * const qlist_opts_help[] = {
 };
 #define qlist_usage(ret) usage(ret, QLIST_FLAGS, qlist_long_opts, 
qlist_opts_help, NULL, lookup_applet_idx("qlist"))
 
-static char *
-grab_pkg_umap(q_vdb_pkg_ctx *pkg_ctx)
+static int
+cmpstringp(const void *p1, const void *p2)
+{
+   /* case insensitive comparator */
+   return strcasecmp(*((char * const *)p1), *((char * const *)p2));
+}
+
+/*
+ * ==> /var/db/pkg/mail-mta/exim-4.92/IUSE <==
+ * arc dane dcc +dkim dlfunc dmarc +dnsdb doc dovecot-sasl dsn
+ * elibc_glibc exiscan-acl gnutls idn ipv6 ldap libressl lmtp maildir
+ * mbx mysql nis pam perl pkcs11 postgres +prdr proxy radius redis sasl
+ * selinux spf sqlite srs ssl syslog tcpd +tpda X
+ *
+ * ==> /var/db/pkg/mail-mta/exim-4.92/PKGUSE <==
+ * -X dkim dmarc exiscan-acl ipv6 -ldap lmtp maildir -mbox pam -perl spf
+ * ssl tcpd
+ *
+ * ==> /var/db/pkg/mail-mta/exim-4.92/USE <==
+ * abi_x86_64 amd64 dkim dmarc dnsdb elibc_glibc exiscan-acl ipv6
+ * kernel_linux lmtp maildir pam prdr spf ssl tcpd tpda userland_GNU
+ *
+ * % emerge -pv exim
+ *
+ * These are the packages that would be merged, in order:
+ *
+ * Calculating dependencies... done!
+ * [ebuild   R   ~] mail-mta/exim-4.92::gentoo  USE="dkim dmarc dnsdb
+ * exiscan-acl ipv6 lmtp maildir pam prdr spf ssl tcpd tpda -X -arc
+ * -dane -dcc -dlfunc -doc -dovecot-sasl -dsn -gnutls -idn -ldap
+ * -libressl -mbx -mysql -nis -perl -pkcs11 -postgres -proxy -radius
+ * -redis -sasl (-selinux) -sqlite -srs -syslog" 0 KiB
+ *
+ * % qlist -IUv exim
+ * mail-mta/exim-4.92 (-arc -dane -dcc dkim -dlfunc dmarc dnsdb -doc
+ * -dovecot-sasl -dsn exiscan-acl -gnutls -idn ipv6 -ldap -libressl lmtp
+ * maildir -mbx -mysql -nis pam -perl -pkcs11 -postgres prdr -proxy
+ * -radius -redis -sasl -selinux spf -sqlite -srs ssl -syslog tcpd tpda
+ * -X)
+ */
+static char _umapstr_buf[BUFSIZ];
+static const char *
+umapstr(char display, q_vdb_pkg_ctx *pkg_ctx)
 {
-   static char umap[BUFSIZ];
-   static char *use, *iuse;
-   static size_t use_len, iuse_len;
-   int use_argc = 0, iuse_argc = 0;
-   char **use_argv = NULL, **iuse_argv = NULL;
-   queue *ll = NULL;
-   queue *sets = NULL;
-   int i, u;
+   char *bufp = _umapstr_buf;
+   char *use = NULL;
+   char *iuse = NULL;
+   size_t use_len;
+   size_t iuse_len;
+   int use_argc = 0;
+   int iuse_argc = 0;
+   char **use_argv = NULL;
+   char **iuse_argv = NULL;
+   int i;
+   int u;
+   int d;
+
+   *bufp = '\0';
+   if (!display)
+   return bufp;
 
q_vdb_pkg_eat(pkg_ctx, "USE", , _len);
if (!use[0])
-   return NULL;
+   return bufp;
q_vdb_pkg_eat(pkg_ctx, "IUSE", , _len);
if 

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

2019-03-07 Thread Matt Turner
commit: 5f6fa62a21794dbcb40ff7d41e94486cd5ecabdf
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Mar  7 18:16:11 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Mar  7 18:17:27 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f6fa62a

x11-drivers/xf86-video-ati: Version bump to 19.0.0

Signed-off-by: Matt Turner  gentoo.org>

 x11-drivers/xf86-video-ati/Manifest|  1 +
 .../xf86-video-ati/xf86-video-ati-19.0.0.ebuild| 43 ++
 2 files changed, 44 insertions(+)

diff --git a/x11-drivers/xf86-video-ati/Manifest 
b/x11-drivers/xf86-video-ati/Manifest
index 553d8dc498d..9ac8f8ad37f 100644
--- a/x11-drivers/xf86-video-ati/Manifest
+++ b/x11-drivers/xf86-video-ati/Manifest
@@ -1 +1,2 @@
 DIST xf86-video-ati-18.1.0.tar.bz2 891953 BLAKE2B 
9092554c708b583f9b99a6788104a1e9420537fbbe6ae7e82be2a2299ad834365d00f8b146ce845afb5e2a08d3de3da591143eff63d4fb34c7040251f443
 SHA512 
7a58c9a6cb4876bd2ff37d837372b4e360e81fec7de6a6c7a48d70a5338d62745f734f5d4207f30aa368ff2d9ef44f5f1ef36afd73802a618998c16fe395ed53
+DIST xf86-video-ati-19.0.0.tar.bz2 901467 BLAKE2B 
727581b205dd02995a9da2114d5a300e06172b1ee0fb02ea273d2fcf97dbc8cffea6ea6f12d8c6ed5a4a185a972ee4f007309e7331ca17ec0d2658df76aa349c
 SHA512 
0674c8befa926fd3b431ce80d90f2cd0de17314efe7fd3a5ed0d78018d6cd32625b514bf68436a47eb15e5ad4b50317f3c09fd687b77e69a067d1210ee459827

diff --git a/x11-drivers/xf86-video-ati/xf86-video-ati-19.0.0.ebuild 
b/x11-drivers/xf86-video-ati/xf86-video-ati-19.0.0.ebuild
new file mode 100644
index 000..bcca1714ec2
--- /dev/null
+++ b/x11-drivers/xf86-video-ati/xf86-video-ati-19.0.0.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+XORG_DRI=always
+inherit linux-info xorg-3
+
+if [[ ${PV} == * ]]; then
+   SRC_URI=""
+else
+   KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd"
+fi
+
+DESCRIPTION="ATI video driver"
+HOMEPAGE="https://www.x.org/wiki/ati/;
+
+IUSE="+glamor udev"
+
+RDEPEND=">=x11-libs/libdrm-2.4.89[video_cards_radeon]
+   >=x11-libs/libpciaccess-0.8.0
+   glamor? ( x11-base/xorg-server[glamor] )
+   udev? ( virtual/libudev:= )"
+DEPEND="${RDEPEND}
+   x11-base/xorg-proto"
+
+pkg_pretend() {
+   if use kernel_linux ; then
+   if kernel_is -ge 3 9; then
+   CONFIG_CHECK="~!DRM_RADEON_UMS ~!FB_RADEON"
+   else
+   CONFIG_CHECK="~DRM_RADEON_KMS ~!FB_RADEON"
+   fi
+   fi
+   check_extra_config
+}
+
+pkg_setup() {
+   XORG_CONFIGURE_OPTIONS=(
+   $(use_enable glamor)
+   $(use_enable udev)
+   )
+}



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

2019-03-07 Thread Matt Turner
commit: 82d0e171bf004c20b4806933eebd42b2ee78ed48
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Mar  7 18:12:57 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Mar  7 18:17:27 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82d0e171

x11-drivers/xf86-video-amdgpu: EAPI 7

Signed-off-by: Matt Turner  gentoo.org>

 x11-drivers/xf86-video-amdgpu/xf86-video-amdgpu-.ebuild | 7 +++
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/x11-drivers/xf86-video-amdgpu/xf86-video-amdgpu-.ebuild 
b/x11-drivers/xf86-video-amdgpu/xf86-video-amdgpu-.ebuild
index 2fcd2628b39..4040501730a 100644
--- a/x11-drivers/xf86-video-amdgpu/xf86-video-amdgpu-.ebuild
+++ b/x11-drivers/xf86-video-amdgpu/xf86-video-amdgpu-.ebuild
@@ -1,9 +1,9 @@
 # Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=7
 XORG_DRI="always"
-inherit xorg-2
+inherit xorg-3
 
 if [[ ${PV} == * ]]; then
SRC_URI=""
@@ -20,10 +20,9 @@ RDEPEND=">=x11-libs/libdrm-2.4.89[video_cards_amdgpu]
udev? ( virtual/libudev:= )"
 DEPEND="${RDEPEND}"
 
-src_configure() {
+pkg_setup() {
XORG_CONFIGURE_OPTIONS=(
--enable-glamor
$(use_enable udev)
)
-   xorg-2_src_configure
 }



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

2019-03-07 Thread Matt Turner
commit: 076a2b5ec7c21ca3481b1a3bd465c15cab024f59
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Mar  7 18:11:53 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Mar  7 18:17:27 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=076a2b5e

x11-drivers/xf86-video-amdgpu: Version bump to 19.0.0

Signed-off-by: Matt Turner  gentoo.org>

 x11-drivers/xf86-video-amdgpu/Manifest |  1 +
 .../xf86-video-amdgpu-19.0.0.ebuild| 28 ++
 2 files changed, 29 insertions(+)

diff --git a/x11-drivers/xf86-video-amdgpu/Manifest 
b/x11-drivers/xf86-video-amdgpu/Manifest
index 79948a812b5..89ee321b8ee 100644
--- a/x11-drivers/xf86-video-amdgpu/Manifest
+++ b/x11-drivers/xf86-video-amdgpu/Manifest
@@ -1 +1,2 @@
 DIST xf86-video-amdgpu-18.1.0.tar.bz2 430542 BLAKE2B 
c582c6d5357949833b5b9408e638e3037e38530f9a1d5e85936d1ee866effc4da1c56d7da2e8aa48cde73c09107968840262941e7b0063aa7d2aacfecc5bf120
 SHA512 
371f1a9f6cd2ce3b7117361222d196950c5efa01d957783c79a37c19a2273ce33d133fa51bb68432b8535aad61cb14fbb61d173a167d318b2533eb2507b7a903
+DIST xf86-video-amdgpu-19.0.0.tar.bz2 439773 BLAKE2B 
899d8a13b2d4dc4a3fc604bacf9f2f9798f717fa6f7b602c7ee0308b2ef6ad41d49945eefdbb682b1ebe96d63e9789ad0e420180452e37f68ab7e8e35d80c434
 SHA512 
6a30fc03185816307f16693cd6b07f13694ca1b6b1327c58a951bccc8082f112bb768ab610229dc1040617eef860fc1ab17a7e6bf635c5a4e454e252f3addca8

diff --git a/x11-drivers/xf86-video-amdgpu/xf86-video-amdgpu-19.0.0.ebuild 
b/x11-drivers/xf86-video-amdgpu/xf86-video-amdgpu-19.0.0.ebuild
new file mode 100644
index 000..4040501730a
--- /dev/null
+++ b/x11-drivers/xf86-video-amdgpu/xf86-video-amdgpu-19.0.0.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+XORG_DRI="always"
+inherit xorg-3
+
+if [[ ${PV} == * ]]; then
+   SRC_URI=""
+else
+   KEYWORDS="~amd64 ~x86"
+fi
+
+DESCRIPTION="Accelerated Open Source driver for AMDGPU cards"
+
+IUSE="udev"
+
+RDEPEND=">=x11-libs/libdrm-2.4.89[video_cards_amdgpu]
+   x11-base/xorg-server[glamor(-)]
+   udev? ( virtual/libudev:= )"
+DEPEND="${RDEPEND}"
+
+pkg_setup() {
+   XORG_CONFIGURE_OPTIONS=(
+   --enable-glamor
+   $(use_enable udev)
+   )
+}



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

2019-03-07 Thread Matt Turner
commit: d09554542d65bb04ccafe95d0325ad149dffd25d
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Mar  7 18:15:29 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Mar  7 18:17:27 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0955454

x11-drivers/xf86-video-ati: EAPI 7

Signed-off-by: Matt Turner  gentoo.org>

 x11-drivers/xf86-video-ati/xf86-video-ati-.ebuild | 7 +++
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/x11-drivers/xf86-video-ati/xf86-video-ati-.ebuild 
b/x11-drivers/xf86-video-ati/xf86-video-ati-.ebuild
index 58a78866021..bcca1714ec2 100644
--- a/x11-drivers/xf86-video-ati/xf86-video-ati-.ebuild
+++ b/x11-drivers/xf86-video-ati/xf86-video-ati-.ebuild
@@ -1,10 +1,10 @@
 # Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=7
 
 XORG_DRI=always
-inherit linux-info xorg-2
+inherit linux-info xorg-3
 
 if [[ ${PV} == * ]]; then
SRC_URI=""
@@ -35,10 +35,9 @@ pkg_pretend() {
check_extra_config
 }
 
-src_configure() {
+pkg_setup() {
XORG_CONFIGURE_OPTIONS=(
$(use_enable glamor)
$(use_enable udev)
)
-   xorg-2_src_configure
 }



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

2019-03-07 Thread Richard Freeman
commit: 21958ae36d51af24779adb3968692e9988d52d06
Author: Richard Freeman  gentoo  org>
AuthorDate: Thu Mar  7 18:05:37 2019 +
Commit: Richard Freeman  gentoo  org>
CommitDate: Thu Mar  7 18:06:42 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21958ae3

media-radio/tqsl: bump

Closes: https://bugs.gentoo.org/679692
Signed-off-by: Richard Freeman  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 media-radio/tqsl/Manifest  |  1 +
 media-radio/tqsl/tqsl-2.4.3.ebuild | 32 
 2 files changed, 33 insertions(+)

diff --git a/media-radio/tqsl/Manifest b/media-radio/tqsl/Manifest
index d38ef8c3c45..b9859a9d02a 100644
--- a/media-radio/tqsl/Manifest
+++ b/media-radio/tqsl/Manifest
@@ -1,2 +1,3 @@
 DIST tqsl-2.3.1.tar.gz 2896807 BLAKE2B 
f2937950b5328cfb0a13b87797f40594799e01139d5b307199095b8cdbe6f4532e911fd9661ad3b663d8616d9287d8a359f2fefb4364c6450ba4be2505a89c63
 SHA512 
edaa21b1605bcb38790a66d61e1498a04f41c4f9b3b577908a6e57cd38e1ac2e1724e9c6d5421e0ca4a4ea72d1d5f5d54f08bf5a6c202bf68181ec12f27d4afd
 DIST tqsl-2.4.1.tar.gz 4191260 BLAKE2B 
a70652c12e0704daecbd6d38bddcc386de55242feea9d2905c65dcfa01337c0a2f31ec8596b7cf58b35c77da0f6b79ecf9188bc4f74df51b9e2479361643e3ca
 SHA512 
7b61cf2dc37a3216548e9b82335bae2947be2c2ea4c43860fb4baffd4ce13f5f3d61cd999a293d4baae87835c56d2eb2fcce8a36f17eeba4e18ccab3e5053b60
+DIST tqsl-2.4.3.tar.gz 4194821 BLAKE2B 
6a8af8b396f349cc16ac74694b2d0b4e4a8e9f4fc2ea0850d53ce59980e59b4a89fed352118f020acffa42e502db0762e8d0eee560ec067cf620cfd798f3c23a
 SHA512 
fb5de8eee5d72279d945b7a6f5c495b1d3c4437977c84a548062a1e9ceb657e20fe6df995b5f440077ff02e6e3ab8c28ec9fbe2a447d04f771271105e8ffb356

diff --git a/media-radio/tqsl/tqsl-2.4.3.ebuild 
b/media-radio/tqsl/tqsl-2.4.3.ebuild
new file mode 100644
index 000..da5bebcbef2
--- /dev/null
+++ b/media-radio/tqsl/tqsl-2.4.3.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit eutils cmake-utils wxwidgets vcs-snapshot
+
+DESCRIPTION="ARRL Logbook of the World"
+HOMEPAGE="http://www.arrl.org/tqsl-download;
+SRC_URI="https://github.com/rich0/trustedqsl-tqsl/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="LOTW"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="dev-libs/expat:=
+   dev-libs/openssl:0=
+   net-misc/curl:=
+   sys-libs/db:=
+   sys-libs/zlib:=
+   x11-libs/wxGTK:3.0="
+DEPEND="${RDEPEND}"
+
+DOCS=( AUTHORS.txt INSTALL README )
+HTML_DOCS=( html )
+
+WX_GTK_VER=3.0
+
+pkg_setup() {
+   setup-wxwidgets
+}



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

2019-03-07 Thread Ian Stakenvicius
commit: b4336a5e6a3866fa43cd0e5221cbe312b8db8c7d
Author: Ian Stakenvicius  gentoo  org>
AuthorDate: Thu Mar  7 18:05:18 2019 +
Commit: Ian Stakenvicius  gentoo  org>
CommitDate: Thu Mar  7 18:05:51 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4336a5e

dev-lang/spidermonkey: disable linker automagic

Ensure the build system uses LD rather than automagically using
gold.

Signed-off-by: Ian Stakenvicius  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 dev-lang/spidermonkey/spidermonkey-52.9.1_pre1.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-lang/spidermonkey/spidermonkey-52.9.1_pre1.ebuild 
b/dev-lang/spidermonkey/spidermonkey-52.9.1_pre1.ebuild
index d80c73d9c22..9324e9d313f 100644
--- a/dev-lang/spidermonkey/spidermonkey-52.9.1_pre1.ebuild
+++ b/dev-lang/spidermonkey/spidermonkey-52.9.1_pre1.ebuild
@@ -77,6 +77,7 @@ src_configure() {
--with-system-nspr \
--disable-optimize \
--with-intl-api \
+   --disable-gold \
$(use_with system-icu) \
$(use_enable debug) \
$(use_enable test tests) \



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

2019-03-07 Thread Matt Turner
commit: a785fd3b339b622ed9e0ab8b185d377d01b5502b
Author: Mike Lothian  fireburn  co  uk>
AuthorDate: Thu Mar  7 13:05:35 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Mar  7 18:02:18 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a785fd3b

media-libs/mesa: Remove dependency on vulkan-layers from mesa-

The vulkan-overlay-layer no longer requires headers from vulkan-layers

Signed-off-by: Mike Lothian  fireburn.co.uk>
Signed-off-by: Matt Turner  gentoo.org>

 media-libs/mesa/mesa-.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/media-libs/mesa/mesa-.ebuild b/media-libs/mesa/mesa-.ebuild
index fb346d34912..e66a4bbfece 100644
--- a/media-libs/mesa/mesa-.ebuild
+++ b/media-libs/mesa/mesa-.ebuild
@@ -218,7 +218,6 @@ DEPEND="${RDEPEND}
sys-devel/gettext
virtual/pkgconfig
valgrind? ( dev-util/valgrind )
-   vulkan-overlay? ( media-libs/vulkan-layers[${MULTILIB_USEDEP}] )
x11-base/xorg-proto
x11-libs/libXrandr[${MULTILIB_USEDEP}]
$(python_gen_any_dep ">=dev-python/mako-0.8.0[\${PYTHON_USEDEP}]")



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

2019-03-07 Thread Matt Turner
commit: bc05927c97d16c8084b0d0c0ff7a5d73a72e3086
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Mar  7 18:04:47 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Mar  7 18:04:52 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc05927c

media-libs/mesa: Version bump to 19.0.0_rc7

Signed-off-by: Matt Turner  gentoo.org>

 media-libs/mesa/Manifest   |   1 +
 media-libs/mesa/mesa-19.0.0_rc7.ebuild | 524 +
 2 files changed, 525 insertions(+)

diff --git a/media-libs/mesa/Manifest b/media-libs/mesa/Manifest
index d5f6b53faae..78596b1d395 100644
--- a/media-libs/mesa/Manifest
+++ b/media-libs/mesa/Manifest
@@ -8,3 +8,4 @@ DIST mesa-19.0.0-rc3.tar.xz 11919960 BLAKE2B 
24b2b6304cc8332dc5edc8db05e5b09e50c
 DIST mesa-19.0.0-rc4.tar.xz 11928252 BLAKE2B 
8cf4c2671e3de11e4ed65f0a451dae78bb40bfa32753306060be0d1523ed9f15d0ea479b628b592fcc43927e5c82ea8c68ef02494bb17be58b01ddcd2ea4dc3a
 SHA512 
e17bfc29084a8efa259fcca16374f2f33aa1b62e034a8637fe0c9985410b1722fe68092b6f393fbf23f0db6ec3e1d6a191541d37cee650e42909ec7e0232f5a6
 DIST mesa-19.0.0-rc5.tar.xz 11927936 BLAKE2B 
9fe64733df91f1788b6fba7ab64637f332854671bc0b5c647c962e12985c993eb185b95bdbe4baa98ca408c3d68818c925a653b5b12d5e02ca64812d80c05133
 SHA512 
f73bafa6d63576720a0aa6254b6fc97ba4e6e1ecf8b62bc62dd83967d5624fc83caed150707f1e5bfda87aff0bc3ebcd4872f8020ba5c23d3f6b42ab4523a91f
 DIST mesa-19.0.0-rc6.tar.xz 11928968 BLAKE2B 
c077973c07485fd8ebf42f1da6f8b8d7d2417dd1051bf1488c5244793e0ad32b01ab73e9f65d9dc61fb9d16716ad4be94c62ac73e521c11cf2ab35daaef8c5bf
 SHA512 
88b3b6877acee4ede515dc986a1ca84a341f59b7283318848ea8eb5fd2892ed37d9ad960baf3f92ea10042d51b4e5e101b9f781af0669e0192503e8a79fc2b5f
+DIST mesa-19.0.0-rc7.tar.xz 11929088 BLAKE2B 
e0695b3d82612c53986857190eff7749afee23af42a4e3daef0b6910e7f00cc16007f86c51d6fa952a0fa66f89268498223cb157455ba6b2e0524eb2fc1c
 SHA512 
f86d13ffef4c567614ffe74220139cad319b4cfec06005b97eb1487b146bd7fc16521ba71136f16503c96eb9bf95e1dcb6a3f50214d1f4529887415f1abddfdf

diff --git a/media-libs/mesa/mesa-19.0.0_rc7.ebuild 
b/media-libs/mesa/mesa-19.0.0_rc7.ebuild
new file mode 100644
index 000..daf421bff7b
--- /dev/null
+++ b/media-libs/mesa/mesa-19.0.0_rc7.ebuild
@@ -0,0 +1,524 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python3_4 python3_5 python3_6 python3_7 )
+
+inherit llvm meson multilib-minimal pax-utils python-any-r1
+
+OPENGL_DIR="xorg-x11"
+
+MY_P="${P/_/-}"
+
+DESCRIPTION="OpenGL-like graphic library for Linux"
+HOMEPAGE="https://www.mesa3d.org/ https://mesa.freedesktop.org/;
+
+if [[ ${PV} ==  ]]; then
+   EGIT_REPO_URI="https://gitlab.freedesktop.org/mesa/mesa.git;
+   EXPERIMENTAL="true"
+   inherit git-r3
+else
+   SRC_URI="https://mesa.freedesktop.org/archive/${MY_P}.tar.xz;
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~sparc-solaris 
~x64-solaris ~x86-solaris"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+RESTRICT="
+   !test? ( test )
+"
+
+RADEON_CARDS="r100 r200 r300 r600 radeon radeonsi"
+VIDEO_CARDS="${RADEON_CARDS} freedreno i915 i965 imx intel nouveau vc4 virgl 
vivante vmware"
+for card in ${VIDEO_CARDS}; do
+   IUSE_VIDEO_CARDS+=" video_cards_${card}"
+done
+
+IUSE="${IUSE_VIDEO_CARDS}
+   +classic d3d9 debug +dri3 +egl +gallium +gbm gles1 gles2 +libglvnd +llvm
+   lm_sensors opencl osmesa pax_kernel pic selinux test unwind vaapi 
valgrind
+   vdpau vulkan wayland xa xvmc"
+
+REQUIRED_USE="
+   d3d9?   ( dri3 || ( video_cards_r300 video_cards_r600 
video_cards_radeonsi video_cards_nouveau video_cards_vmware ) )
+   gles1?  ( egl )
+   gles2?  ( egl )
+   vulkan? ( dri3
+ || ( video_cards_i965 video_cards_radeonsi )
+ video_cards_radeonsi? ( llvm ) )
+   wayland? ( egl gbm )
+   video_cards_freedreno?  ( gallium )
+   video_cards_intel?  ( classic )
+   video_cards_i915?   ( || ( classic gallium ) )
+   video_cards_i965?   ( classic )
+   video_cards_imx?( gallium video_cards_vivante )
+   video_cards_nouveau? ( || ( classic gallium ) )
+   video_cards_radeon? ( || ( classic gallium )
+ gallium? ( x86? ( llvm ) 
amd64? ( llvm ) ) )
+   video_cards_r100?   ( classic )
+   video_cards_r200?   ( classic )
+   video_cards_r300?   ( gallium x86? ( llvm ) amd64? ( llvm ) )
+   video_cards_r600?   ( gallium )
+   video_cards_radeonsi?   ( gallium llvm )
+   video_cards_vc4? ( gallium )
+   video_cards_virgl? ( gallium )
+   video_cards_vivante? ( gallium gbm )
+   video_cards_vmware? ( gallium )
+"
+
+LIBDRM_DEPSTRING=">=x11-libs/libdrm-2.4.97"
+RDEPEND="
+   !app-eselect/eselect-mesa
+   

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

2019-03-07 Thread Matt Turner
commit: 2db7512cb780ea7cabbdd7cd92b0243b12c8ae64
Author: Mike Lothian  fireburn  co  uk>
AuthorDate: Thu Mar  7 13:04:28 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Mar  7 18:02:15 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2db7512c

media-libs/mesa: Update vulkan-overlay description in metadata.xml

Signed-off-by: Mike Lothian  fireburn.co.uk>
Closes: https://github.com/gentoo/gentoo/pull/11292
Signed-off-by: Matt Turner  gentoo.org>

 media-libs/mesa/metadata.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/mesa/metadata.xml b/media-libs/mesa/metadata.xml
index 8099392fa04..1adb4bf77ae 100644
--- a/media-libs/mesa/metadata.xml
+++ b/media-libs/mesa/metadata.xml
@@ -24,7 +24,7 @@
Compile in valgrind memory hints
Enable the VDPAU acceleration interface for 
the Gallium3D Video Layer.
Enable Vulkan drivers
-   Enable vulkan-overlay-layer for 
vulkan stats"
+   Build vulkan-overlay-layer which 
displays Frames Per Second and other statistics
Enable support for dev-libs/wayland
Enable the XA (X Acceleration) API for 
Gallium3D.
Enable the XvMC acceleration interface for 
the Gallium3D Video Layer.



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

2019-03-07 Thread Mikle Kolyada
commit: ba85cf889b56a11f004065d335d741bab218d147
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Thu Mar  7 17:42:23 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Thu Mar  7 17:42:23 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba85cf88

dev-util/ftnchek: Drop old

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 dev-util/ftnchek/ftnchek-3.3.1-r1.ebuild | 41 
 1 file changed, 41 deletions(-)

diff --git a/dev-util/ftnchek/ftnchek-3.3.1-r1.ebuild 
b/dev-util/ftnchek/ftnchek-3.3.1-r1.ebuild
deleted file mode 100644
index 9ef2be707e2..000
--- a/dev-util/ftnchek/ftnchek-3.3.1-r1.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="2"
-
-inherit autotools
-
-DESCRIPTION="Static analyzer a la 'lint' for Fortran 77"
-HOMEPAGE="https://www.dsm.fordham.edu/~ftnchek/;
-SRC_URI="https://www.dsm.fordham.edu/~${PN}/download/${P}.tar.gz;
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc x86"
-IUSE=""
-
-src_prepare() {
-   #1 Do not strip
-   #2 CFLAGS is used internally, so append to it
-   sed -i Makefile.in \
-   -e '/-$(STRIP)/d' \
-   -e 's|CFLAGS\([[:space:]]*\)=|CFLAGS\1+=|' \
-   || die "sed Makefile.in"
-
-   #1 Respect CFLAGS
-   #2 Respect LDFLAGS
-   sed -i configure.in \
-   -e 's|OPT=".*"|OPT=""|g' \
-   -e '/^LDFLAGS=/d' \
-   || die "sed configure.in"
-
-   eautoreconf
-}
-
-src_install() {
-   einstall || die
-   dodoc FAQ PATCHES README ToDo
-   dohtml html/*
-   dodir /usr/share/${PN}
-   cp -r test "${D}"/usr/share/${PN}
-}



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

2019-03-07 Thread Mikle Kolyada
commit: ee13e218c1a04965197260f31f5b716d118bd7c8
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Thu Mar  7 17:41:24 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Thu Mar  7 17:41:24 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee13e218

dev-util/ftnchek: x86 stable wrt bug #679470

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
RepoMan-Options: --include-arches="x86"

 dev-util/ftnchek/ftnchek-3.3.1-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/ftnchek/ftnchek-3.3.1-r2.ebuild 
b/dev-util/ftnchek/ftnchek-3.3.1-r2.ebuild
index 8543e828e99..116df3b59ee 100644
--- a/dev-util/ftnchek/ftnchek-3.3.1-r2.ebuild
+++ b/dev-util/ftnchek/ftnchek-3.3.1-r2.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://www.dsm.fordham.edu/~${PN}/download/${P}.tar.gz;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="~amd64 ~ppc x86"
 
 src_prepare() {
default



[gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-autoconf/

2019-03-07 Thread Mikle Kolyada
commit: 635024851193dc13b8eeae42e12a1dbd62fa3f90
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Thu Mar  7 17:38:41 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Thu Mar  7 17:40:44 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63502485

dev-ml/ocaml-autoconf: amd64 stable wrt bug #679468

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"

 dev-ml/ocaml-autoconf/ocaml-autoconf-1.1-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ml/ocaml-autoconf/ocaml-autoconf-1.1-r1.ebuild 
b/dev-ml/ocaml-autoconf/ocaml-autoconf-1.1-r1.ebuild
index 9fba6468f10..59bc71b2622 100644
--- a/dev-ml/ocaml-autoconf/ocaml-autoconf-1.1-r1.ebuild
+++ b/dev-ml/ocaml-autoconf/ocaml-autoconf-1.1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -9,7 +9,7 @@ 
SRC_URI="http://forge.ocamlcore.org/frs/download.php/282/${P}.tar.gz;
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc ~x86"
 
 src_install() {
emake DESTDIR="${D}" prefix="/usr" install



[gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-autoconf/

2019-03-07 Thread Mikle Kolyada
commit: eadad8cb4f7a0b2868dec5011ba830e43a5981c7
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Thu Mar  7 17:40:30 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Thu Mar  7 17:40:47 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eadad8cb

dev-ml/ocaml-autoconf: Drop old

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 dev-ml/ocaml-autoconf/ocaml-autoconf-1.1.ebuild | 21 -
 1 file changed, 21 deletions(-)

diff --git a/dev-ml/ocaml-autoconf/ocaml-autoconf-1.1.ebuild 
b/dev-ml/ocaml-autoconf/ocaml-autoconf-1.1.ebuild
deleted file mode 100644
index 194d83a1595..000
--- a/dev-ml/ocaml-autoconf/ocaml-autoconf-1.1.ebuild
+++ /dev/null
@@ -1,21 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="2"
-
-DESCRIPTION="autoconf macros to support configuration of OCaml programs and 
libraries"
-HOMEPAGE="http://ocaml-autoconf.forge.ocamlcore.org/;
-SRC_URI="http://forge.ocamlcore.org/frs/download.php/282/${P}.tar.gz;
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ppc x86"
-IUSE=""
-
-DEPEND=""
-RDEPEND="${DEPEND}"
-
-src_install() {
-   emake DESTDIR="${D}" prefix="/usr" install || die
-   dodoc README
-}



[gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-autoconf/

2019-03-07 Thread Mikle Kolyada
commit: 411fc8e5d1497477a81e4e196438a74acf648d17
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Thu Mar  7 17:39:32 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Thu Mar  7 17:40:46 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=411fc8e5

dev-ml/ocaml-autoconf: x86 stable wrt bug #679468

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
RepoMan-Options: --include-arches="x86"

 dev-ml/ocaml-autoconf/ocaml-autoconf-1.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ml/ocaml-autoconf/ocaml-autoconf-1.1-r1.ebuild 
b/dev-ml/ocaml-autoconf/ocaml-autoconf-1.1-r1.ebuild
index 35f6fbb5cdb..7b2ab99fb8e 100644
--- a/dev-ml/ocaml-autoconf/ocaml-autoconf-1.1-r1.ebuild
+++ b/dev-ml/ocaml-autoconf/ocaml-autoconf-1.1-r1.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="http://forge.ocamlcore.org/frs/download.php/282/${P}.tar.gz;
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ppc ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ppc x86"
 
 src_install() {
emake DESTDIR="${D}" prefix="/usr" install



[gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-autoconf/

2019-03-07 Thread Mikle Kolyada
commit: 904c434668e89df7151eeaee39e14c786bffe573
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Thu Mar  7 17:39:04 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Thu Mar  7 17:40:45 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=904c4346

dev-ml/ocaml-autoconf: ppc stable wrt bug #679468

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
RepoMan-Options: --include-arches="ppc"

 dev-ml/ocaml-autoconf/ocaml-autoconf-1.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ml/ocaml-autoconf/ocaml-autoconf-1.1-r1.ebuild 
b/dev-ml/ocaml-autoconf/ocaml-autoconf-1.1-r1.ebuild
index 59bc71b2622..35f6fbb5cdb 100644
--- a/dev-ml/ocaml-autoconf/ocaml-autoconf-1.1-r1.ebuild
+++ b/dev-ml/ocaml-autoconf/ocaml-autoconf-1.1-r1.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="http://forge.ocamlcore.org/frs/download.php/282/${P}.tar.gz;
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ppc ~x86"
 
 src_install() {
emake DESTDIR="${D}" prefix="/usr" install



[gentoo-commits] repo/gentoo:master commit in: sys-cluster/torque/

2019-03-07 Thread Ian Stakenvicius
commit: caea5bc25186343247d5a68dfac73c3a0430ba58
Author: Ian Stakenvicius  gentoo  org>
AuthorDate: Wed Feb 27 17:22:26 2019 +
Commit: Ian Stakenvicius  gentoo  org>
CommitDate: Thu Mar  7 17:37:43 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=caea5bc2

sys-cluster/torque: fix documentation URLs in postinst message

Closes: https://bugs.gentoo.org/666224
Signed-off-by: Ian Stakenvicius  gentoo.org>
Package-Manager: Portage-2.3.49, Repoman-2.3.11

 sys-cluster/torque/torque-4.2.10-r1.ebuild |  2 +-
 sys-cluster/torque/torque-6.0.3.ebuild | 16 +---
 2 files changed, 6 insertions(+), 12 deletions(-)

diff --git a/sys-cluster/torque/torque-4.2.10-r1.ebuild 
b/sys-cluster/torque/torque-4.2.10-r1.ebuild
index 7c06eb30b27..bf8705f64b4 100644
--- a/sys-cluster/torque/torque-4.2.10-r1.ebuild
+++ b/sys-cluster/torque/torque-4.2.10-r1.ebuild
@@ -175,7 +175,7 @@ pkg_postinst() {
showmessage=0;
elog "If this is the first time torque has been installed, then 
you are not"
elog "ready to start the server.  Please refer to the 
documentation located at:"
-   elog 
"http://docs.adaptivecomputing.com/torque/${PN//./-}/Content/topics/1-installConfig/initializeConfigOnServer.htm;
+   elog 
"http://docs.adaptivecomputing.com/torque/${PN//./-}/help.htm#topics/1-installConfig/initializeConfigOnServer.htm;
elog
else
for i in ${REPLACING_VERSIONS} ; do

diff --git a/sys-cluster/torque/torque-6.0.3.ebuild 
b/sys-cluster/torque/torque-6.0.3.ebuild
index ec9563e95bf..75508148652 100644
--- a/sys-cluster/torque/torque-6.0.3.ebuild
+++ b/sys-cluster/torque/torque-6.0.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -165,15 +165,9 @@ pkg_preinst() {
 }
 
 pkg_postinst() {
-   elog "If this is the first time torque has been installed, then you 
are not"
-   elog "ready to start the server.  Please refer to the documentation 
located at:"
-   elog 
"http://docs.adaptivecomputing.com/torque/${PN//./-}/Content/topics/1-installConfig/initializeConfigOnServer.htm;
-   if [[ -z "${REPLACING_VERSIONS}" ]] || [[ ${REPLACING_VERSIONS} < 4 ]]; 
then
-   echo
-   elog "Important 4.0+ updates"
-   elog "  - The on-wire protocol version has been changed."
-   elog "Versions of Torque before 4.0.0 are no longer able to 
communicate."
-   elog "  - pbs_iff has been replaced by trqauthd, you will now 
need to add"
-   elog "trqauthd to your default runlevel."
+if [[ -z "${REPLACING_VERSIONS}" ]] ; then
+   elog "If this is the first time torque has been installed, then 
you are not"
+   elog "ready to start the server.  Please refer to the 
documentation located at:"
+   elog 
"http://docs.adaptivecomputing.com/torque/${PN//./-}/adminGuide/help.htm#topics/torque/1-installConfig/initializeConfigOnServer.htm;
fi
 }



[gentoo-commits] repo/gentoo:master commit in: sys-cluster/torque/files/

2019-03-07 Thread Ian Stakenvicius
commit: f6a2e18a206684aaba8de78d3c2997d9f18a92cb
Author: Ian Stakenvicius  gentoo  org>
AuthorDate: Thu Mar  7 17:36:52 2019 +
Commit: Ian Stakenvicius  gentoo  org>
CommitDate: Thu Mar  7 17:37:47 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6a2e18a

sys-cluster/torque: cleanup filesdir

Signed-off-by: Ian Stakenvicius  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 .../files/CVE-2013-4319-2.x-root-submit-fix.patch  |  40 --
 sys-cluster/torque/files/CVE-2013-4495.patch   |  32 -
 sys-cluster/torque/files/CVE-2014-0749.patch   |  32 -
 ...mit-tm_adopt-to-only-adopt-a-session-id-t.patch | 134 -
 sys-cluster/torque/files/tcl8.6.patch  |  87 -
 5 files changed, 325 deletions(-)

diff --git a/sys-cluster/torque/files/CVE-2013-4319-2.x-root-submit-fix.patch 
b/sys-cluster/torque/files/CVE-2013-4319-2.x-root-submit-fix.patch
deleted file mode 100644
index aa53239f157..000
--- a/sys-cluster/torque/files/CVE-2013-4319-2.x-root-submit-fix.patch
+++ /dev/null
@@ -1,40 +0,0 @@
-From 5dee0365a56dd2cc4cfd0b182bc843b4f32c086c Mon Sep 17 00:00:00 2001
-From: Justin Bronder 
-Date: Mon, 23 Dec 2013 12:40:27 -0500
-Subject: [PATCH] CVE-2013-4319: 2.x root submit fix
-
-https://bugs.gentoo.org/show_bug.cgi?id=484320
-http://nvd.nist.gov/nvd.cfm?cvename=CVE-2013-4319\

- src/server/process_request.c | 15 +++
- 1 file changed, 15 insertions(+)
-
-diff --git a/src/server/process_request.c b/src/server/process_request.c
-index d4a3c92..b06a333 100644
 a/src/server/process_request.c
-+++ b/src/server/process_request.c
-@@ -640,6 +640,21 @@ void process_request(
- log_buffer);
-   }
- 
-+if (svr_conn[sfds].cn_authen != PBS_NET_CONN_FROM_PRIVIL)
-+  {
-+  sprintf(log_buffer, "request type %s from host %s rejected (connection 
not privileged)",
-+reqtype_to_txt(request->rq_type),
-+request->rq_host);
-+
-+  log_record(PBSEVENT_JOB, PBS_EVENTCLASS_JOB, id, log_buffer);
-+
-+  req_reject(PBSE_BADHOST, 0, request, NULL, "request not authorized");
-+
-+  close_client(sfds);
-+
-+  return;
-+  }
-+
- if (!tfind(svr_conn[sfds].cn_addr, ))
-   {
-   sprintf(log_buffer, "request type %s from host %s rejected (host not 
authorized)",
--- 
-1.8.3.2
-

diff --git a/sys-cluster/torque/files/CVE-2013-4495.patch 
b/sys-cluster/torque/files/CVE-2013-4495.patch
deleted file mode 100644
index 41232c07ec7..000
--- a/sys-cluster/torque/files/CVE-2013-4495.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-From 8246d967bbcf174482ef01b1bf4920a5944b1011 Mon Sep 17 00:00:00 2001
-From: David Beer 
-Date: Wed, 13 Nov 2013 10:47:48 -0700
-Subject: [PATCH] Use Michael Jenning's patch for CVE 2013-4495 instead of the
- original. This one is being used because 2.5 should face the minimal possible
- change.
-

- src/server/svr_mail.c | 6 ++
- 1 file changed, 2 insertions(+), 4 deletions(-)
-
-diff --git a/src/server/svr_mail.c b/src/server/svr_mail.c
-index 26b6dd7..241bdfc 100644
 a/src/server/svr_mail.c
-+++ b/src/server/svr_mail.c
-@@ -372,11 +372,9 @@ void svr_mailowner(
- exit(1);
- }
- 
--  sprintf(cmdbuf, "%s -f %s %s",
--
-+  sprintf(cmdbuf, "%s -t -f %s",
-   SENDMAIL_CMD,
--  mailfrom,
--  mailto);
-+  mailfrom);
- 
-   outmail = (FILE *)popen(cmdbuf, "w");
- 
--- 
-1.8.3.2
-

diff --git a/sys-cluster/torque/files/CVE-2014-0749.patch 
b/sys-cluster/torque/files/CVE-2014-0749.patch
deleted file mode 100644
index 52131edcf7e..000
--- a/sys-cluster/torque/files/CVE-2014-0749.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-From 3ed749263abe3d69fa3626d142a5789dcb5a5684 Mon Sep 17 00:00:00 2001
-From: David Beer 
-Date: Fri, 23 Aug 2013 15:53:09 -0600
-Subject: [PATCH] Merge pull request #171 into 2.5-fixes.
-

- src/lib/Libdis/disrsi_.c | 9 +
- 1 file changed, 9 insertions(+)
-
-diff --git a/src/lib/Libdis/disrsi_.c b/src/lib/Libdis/disrsi_.c
-index 69edd28..154514c 100644
 a/src/lib/Libdis/disrsi_.c
-+++ b/src/lib/Libdis/disrsi_.c
-@@ -112,6 +112,15 @@ int disrsi_(
-   if (dis_umaxd == 0)
- disiui_();
- 
-+  if (count >= dis_umaxd)
-+{
-+if (count > dis_umaxd)
-+  goto overflow;
-+
-+if (memcmp(scratch, dis_umax, dis_umaxd) > 0)
-+  goto overflow;
-+}
-+
-   switch (c = (*dis_getc)(stream))
- {
- 
--- 
-1.8.3.2
-

diff --git 
a/sys-cluster/torque/files/TRQ-2885-limit-tm_adopt-to-only-adopt-a-session-id-t.patch
 
b/sys-cluster/torque/files/TRQ-2885-limit-tm_adopt-to-only-adopt-a-session-id-t.patch
deleted file mode 100644
index 63713a0bc16..000
--- 
a/sys-cluster/torque/files/TRQ-2885-limit-tm_adopt-to-only-adopt-a-session-id-t.patch
+++ /dev/null
@@ -1,134 +0,0 @@
-From f2f4c950f3d461a249111c8826da3beaafccace9 Mon Sep 17 00:00:00 2001
-From: Chad Vizino 
-Date: Tue, 23 Sep 2014 17:40:59 -0600
-Subject: [PATCH 1/2] TRQ-2885 - limit 

[gentoo-commits] repo/gentoo:master commit in: sys-cluster/torque/

2019-03-07 Thread Ian Stakenvicius
commit: ce0f064025bf0d46de8c07f3372f32569a4e80b2
Author: Ian Stakenvicius  gentoo  org>
AuthorDate: Thu Mar  7 17:16:51 2019 +
Commit: Ian Stakenvicius  gentoo  org>
CommitDate: Thu Mar  7 17:37:45 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce0f0640

sys-cluster/torque: bump to 6.0.4

Source tarball is from latest 6.0 github commit, snapshot from 2018-08-29

Signed-off-by: Ian Stakenvicius  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 sys-cluster/torque/Manifest|  2 +-
 .../{torque-6.0.3.ebuild => torque-6.0.4.ebuild}   | 18 +++---
 2 files changed, 12 insertions(+), 8 deletions(-)

diff --git a/sys-cluster/torque/Manifest b/sys-cluster/torque/Manifest
index 7126d842443..14f7f301012 100644
--- a/sys-cluster/torque/Manifest
+++ b/sys-cluster/torque/Manifest
@@ -1,3 +1,3 @@
 DIST torque-4.1.7.tar.gz 6218108 BLAKE2B 
6c1ad0f1bb3f364603ad7f498999bd910491910fa5632b9f6b82e08b3afb8c54e8775c38bc8e5c959aa99d0647c54c7c348cd07bcbe11add8bfab5f3f06a4c80
 SHA512 
5a085c0a7b205fed075bff4599db90ca5c4bb5f22d87d76fd56539d5cc1935bb8eeffcd4d18ba84401bd4ca128718070b69c8b91ab6814a4638622ba351654e6
 DIST torque-4.2.10-gh-20150517.tar.gz 5836286 BLAKE2B 
7108f1adcb6f674526b7db97df4ebcee04ae5c818d4f35ed1230a4e72e52ec0bc3b44e17334a143b21bcd3acccefc3927eca4f98d54d37745c8bb46a75e07045
 SHA512 
600bb5389b6a4161732b7aa82627f1ebeae238d7091aa2e223d9a14c44bf4668662f664b976f62ba3f1d8a366f90fb6058a8c904e20c26432dccd6abcd9c57fa
-DIST torque-6.0.3-1485300822_19e79ad.tar.gz 41660338 BLAKE2B 
5e6c2e4bfffbe96d3a3e441f4c4420b4cb81a882bc498c4bf9474cf15a6808234f444183876a5ccfd46b6a9e4113d404cf72359ab3166146c3040854485f807d
 SHA512 
40531f2e7732a11ffc224c536f61adc48ce5699a7caebb8aa1fbe7536b5ca4ed66c8436420bc918f7538ef980818141888aa26390a5a2c8185c8cc57373a0ac1
+DIST torque-6.0.4-gh-20170829.tar.gz 6182495 BLAKE2B 
f9156ae4ffe388a7f3fa0df142e5f2d48c16fd7b8c148a3a80cd1c977eb0c1ef4a455da275f993100867be043422526ed05c53734e707851083d6d23ee1a2cc4
 SHA512 
8f1101adb89e06617de501f7956e126633b78b495baeb7980d3c534d34537cc604a3cf0a7c23c48eb2554b26cc13672b0e00c75d0f722d63ac4d42d57388ed94

diff --git a/sys-cluster/torque/torque-6.0.3.ebuild 
b/sys-cluster/torque/torque-6.0.4.ebuild
similarity index 92%
rename from sys-cluster/torque/torque-6.0.3.ebuild
rename to sys-cluster/torque/torque-6.0.4.ebuild
index 75508148652..42f1f078421 100644
--- a/sys-cluster/torque/torque-6.0.3.ebuild
+++ b/sys-cluster/torque/torque-6.0.4.ebuild
@@ -1,14 +1,13 @@
 # Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=6
 
-inherit flag-o-matic eutils linux-info
+inherit autotools flag-o-matic linux-info
 
 DESCRIPTION="Resource manager and queuing system based on OpenPBS"
 HOMEPAGE="http://www.adaptivecomputing.com/products/open-source/torque;
-DISTFILEHASH="1485300822_19e79ad"
-SRC_URI="http://wpfilebase.s3.amazonaws.com/torque/${P}-${DISTFILEHASH}.tar.gz;
+SRC_URI="https://github.com/adaptivecomputing/torque/archive/6a0b37f85c7d644e9217cbab1542792d646f59a6.tar.gz
 -> ${P}-gh-20170829.tar.gz"
 
 LICENSE="torque-2.5"
 SLOT="0"
@@ -47,7 +46,11 @@ RDEPEND="${DEPEND_COMMON}
 # by the configure.ac and Makefile.am are missing.
 # http://www.supercluster.org/pipermail/torquedev/2014-October/004773.html
 
-S="${WORKDIR}"/${P}-${DISTFILEHASH}
+S="${WORKDIR}"/${PN}-6a0b37f85c7d644e9217cbab1542792d646f59a6
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-6.0.3-fix-emptystring-comparison.patch
+)
 
 pkg_setup() {
PBS_SERVER_HOME="${PBS_SERVER_HOME:-/var/spool/${PN}}"
@@ -81,10 +84,11 @@ pkg_setup() {
 }
 
 src_prepare() {
-   epatch "${FILESDIR}"/${P}-fix-emptystring-comparison.patch
+   default
# We install to a valid location, no need to muck with ld.so.conf
# --without-loadlibfile is supposed to do this for us...
sed -i '/mk_default_ld_lib_file || return 1/d' buildutils/pbs_mkdirs.in 
|| die
+   eautoreconf
 }
 
 src_configure() {
@@ -165,7 +169,7 @@ pkg_preinst() {
 }
 
 pkg_postinst() {
-if [[ -z "${REPLACING_VERSIONS}" ]] ; then
+   if [[ -z "${REPLACING_VERSIONS}" ]] ; then
elog "If this is the first time torque has been installed, then 
you are not"
elog "ready to start the server.  Please refer to the 
documentation located at:"
elog 
"http://docs.adaptivecomputing.com/torque/${PN//./-}/adminGuide/help.htm#topics/torque/1-installConfig/initializeConfigOnServer.htm;



[gentoo-commits] repo/gentoo:master commit in: sys-cluster/torque/

2019-03-07 Thread Ian Stakenvicius
commit: 0a2e7d8868e0456a25b56f0a52724c8d5ca12f3c
Author: Ian Stakenvicius  gentoo  org>
AuthorDate: Mon Feb 25 21:01:33 2019 +
Commit: Ian Stakenvicius  gentoo  org>
CommitDate: Thu Mar  7 17:37:41 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a2e7d88

sys-cluster/torque: cleanup old

- Dropped buggy 4.2.9-r5
- Dropped very old 2.5 series

Signed-off-by: Ian Stakenvicius  gentoo.org>
Package-Manager: Portage-2.3.49, Repoman-2.3.11

 sys-cluster/torque/Manifest|   2 -
 sys-cluster/torque/torque-2.5.13-r1.ebuild | 253 -
 sys-cluster/torque/torque-4.2.9-r5.ebuild  | 183 -
 3 files changed, 438 deletions(-)

diff --git a/sys-cluster/torque/Manifest b/sys-cluster/torque/Manifest
index 7b5ca3a6350..7126d842443 100644
--- a/sys-cluster/torque/Manifest
+++ b/sys-cluster/torque/Manifest
@@ -1,5 +1,3 @@
-DIST torque-2.5.13.tar.gz 5854910 BLAKE2B 
47fa519cbd2d9aeecb3bc323ba3f08f871b2259eb9c83335449a1f7c0d382fdffd0ced4f3ef09707c50a222d77ca0e5a39536b5c0f734bee37d3b50aec710430
 SHA512 
e08ddf3950bb32177f4bc504a502fae3928a616739c28ca9687c5207606817d4589583306508a2c568cf19fc8c5617dc4a9decc81576c2875660b715c256cfcf
 DIST torque-4.1.7.tar.gz 6218108 BLAKE2B 
6c1ad0f1bb3f364603ad7f498999bd910491910fa5632b9f6b82e08b3afb8c54e8775c38bc8e5c959aa99d0647c54c7c348cd07bcbe11add8bfab5f3f06a4c80
 SHA512 
5a085c0a7b205fed075bff4599db90ca5c4bb5f22d87d76fd56539d5cc1935bb8eeffcd4d18ba84401bd4ca128718070b69c8b91ab6814a4638622ba351654e6
 DIST torque-4.2.10-gh-20150517.tar.gz 5836286 BLAKE2B 
7108f1adcb6f674526b7db97df4ebcee04ae5c818d4f35ed1230a4e72e52ec0bc3b44e17334a143b21bcd3acccefc3927eca4f98d54d37745c8bb46a75e07045
 SHA512 
600bb5389b6a4161732b7aa82627f1ebeae238d7091aa2e223d9a14c44bf4668662f664b976f62ba3f1d8a366f90fb6058a8c904e20c26432dccd6abcd9c57fa
-DIST torque-4.2.9.tar.gz 6294022 BLAKE2B 
2a57bebd7d9160deb3c610c21e1014a813c6e53771aadd65241d5fc623d41dca314e7b391cb218e0c9e917936c0547d1ba4c184442c20cef8bb62f98072537cc
 SHA512 
898703fa1d02310c22e2a02b86d67ca52ebed46684597931944edebb39f8293746739c8dca9cd10e07c2e7274c3dd7f65a5664d1980817e3feec58952c4cf4d1
 DIST torque-6.0.3-1485300822_19e79ad.tar.gz 41660338 BLAKE2B 
5e6c2e4bfffbe96d3a3e441f4c4420b4cb81a882bc498c4bf9474cf15a6808234f444183876a5ccfd46b6a9e4113d404cf72359ab3166146c3040854485f807d
 SHA512 
40531f2e7732a11ffc224c536f61adc48ce5699a7caebb8aa1fbe7536b5ca4ed66c8436420bc918f7538ef980818141888aa26390a5a2c8185c8cc57373a0ac1

diff --git a/sys-cluster/torque/torque-2.5.13-r1.ebuild 
b/sys-cluster/torque/torque-2.5.13-r1.ebuild
deleted file mode 100644
index 7a45fb1c900..000
--- a/sys-cluster/torque/torque-2.5.13-r1.ebuild
+++ /dev/null
@@ -1,253 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit autotools-utils eutils flag-o-matic linux-info
-
-DESCRIPTION="Resource manager and queuing system based on OpenPBS"
-HOMEPAGE="http://www.adaptivecomputing.com/products/open-source/torque;
-SRC_URI="http://www.adaptivecomputing.com/index.php?wpfb_dl=1643 -> 
${P}.tar.gz"
-
-LICENSE="torque-2.5"
-
-SLOT="0"
-KEYWORDS="alpha amd64 hppa ia64 ~mips ppc ppc64 sparc x86"
-IUSE="cpusets +crypt doc drmaa kernel_linux munge server static-libs +syslog 
threads tk xml"
-
-# ed is used by makedepend-sh
-DEPEND_COMMON="
-   sys-libs/readline:0=
-   munge? ( sys-auth/munge )
-   tk? (
-   dev-lang/tk:0=
-   dev-lang/tcl:0=
-   )
-   syslog? ( virtual/logger )
-   !!games-util/qstat"
-
-# libncurses.so is just needed so that configure will pass for the readline 
check
-DEPEND="${DEPEND_COMMON}
-   sys-libs/ncurses:*
-   sys-apps/ed
-   !!sys-cluster/slurm"
-
-RDEPEND="${DEPEND_COMMON}
-   crypt? ( net-misc/openssh )
-   !crypt? ( net-misc/netkit-rsh )"
-
-DOCS=( Release_Notes )
-
-AUTOTOOLS_IN_SOURCE_BUILD=1
-
-pkg_setup() {
-   PBS_SERVER_HOME="${PBS_SERVER_HOME:-/var/spool/torque}"
-
-   # Find a Torque server to use.  Check environment, then
-   # current setup (if any), and fall back on current hostname.
-   if [ -z "${PBS_SERVER_NAME}" ]; then
-   if [ -f "${ROOT}${PBS_SERVER_HOME}/server_name" ]; then
-   
PBS_SERVER_NAME="$(<${ROOT}${PBS_SERVER_HOME}/server_name)"
-   else
-   PBS_SERVER_NAME=$(hostname -f)
-   fi
-   fi
-
-   if use cpusets; then
-   if ! use kernel_linux; then
-   einfo
-   elog "Torque currently only has support for cpusets 
in linux."
-   elog "Assuming you didn't really want this USE flag and 
ignoring."
-   einfo
-   else
-   linux-info_pkg_setup
-   einfo
-   elog "Torque support for cpusets is still in 
development, you may"
-   

[gentoo-commits] repo/gentoo:master commit in: sys-cluster/torque/files/, sys-cluster/torque/

2019-03-07 Thread Ian Stakenvicius
commit: 26611d6eaebddfe64f6412e5a7c5be2a952e95a4
Author: Ian Stakenvicius  gentoo  org>
AuthorDate: Mon Feb 25 20:32:40 2019 +
Commit: Ian Stakenvicius  gentoo  org>
CommitDate: Thu Mar  7 17:37:39 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26611d6e

sys-cluster/torque: updated 4.2.10

Switched the distfile to a snapshot of the latest from 4.2.10 branch in
github, which includes a large number of changes and bug fixes.  Also
included a patch to address -fpermissive compilation errors sometimes
experienced with newer toolchains.

Signed-off-by: Ian Stakenvicius  gentoo.org>
Package-Manager: Portage-2.3.49, Repoman-2.3.11

 sys-cluster/torque/Manifest|   2 +-
 .../torque-4.2-use-NULL-instead-of-char0.patch | 140 +
 ...orque-4.2.10.ebuild => torque-4.2.10-r1.ebuild} |  14 +--
 3 files changed, 147 insertions(+), 9 deletions(-)

diff --git a/sys-cluster/torque/Manifest b/sys-cluster/torque/Manifest
index 27f557e822d..7b5ca3a6350 100644
--- a/sys-cluster/torque/Manifest
+++ b/sys-cluster/torque/Manifest
@@ -1,5 +1,5 @@
 DIST torque-2.5.13.tar.gz 5854910 BLAKE2B 
47fa519cbd2d9aeecb3bc323ba3f08f871b2259eb9c83335449a1f7c0d382fdffd0ced4f3ef09707c50a222d77ca0e5a39536b5c0f734bee37d3b50aec710430
 SHA512 
e08ddf3950bb32177f4bc504a502fae3928a616739c28ca9687c5207606817d4589583306508a2c568cf19fc8c5617dc4a9decc81576c2875660b715c256cfcf
 DIST torque-4.1.7.tar.gz 6218108 BLAKE2B 
6c1ad0f1bb3f364603ad7f498999bd910491910fa5632b9f6b82e08b3afb8c54e8775c38bc8e5c959aa99d0647c54c7c348cd07bcbe11add8bfab5f3f06a4c80
 SHA512 
5a085c0a7b205fed075bff4599db90ca5c4bb5f22d87d76fd56539d5cc1935bb8eeffcd4d18ba84401bd4ca128718070b69c8b91ab6814a4638622ba351654e6
-DIST torque-4.2.10.tar.gz 6294022 BLAKE2B 
2a57bebd7d9160deb3c610c21e1014a813c6e53771aadd65241d5fc623d41dca314e7b391cb218e0c9e917936c0547d1ba4c184442c20cef8bb62f98072537cc
 SHA512 
898703fa1d02310c22e2a02b86d67ca52ebed46684597931944edebb39f8293746739c8dca9cd10e07c2e7274c3dd7f65a5664d1980817e3feec58952c4cf4d1
+DIST torque-4.2.10-gh-20150517.tar.gz 5836286 BLAKE2B 
7108f1adcb6f674526b7db97df4ebcee04ae5c818d4f35ed1230a4e72e52ec0bc3b44e17334a143b21bcd3acccefc3927eca4f98d54d37745c8bb46a75e07045
 SHA512 
600bb5389b6a4161732b7aa82627f1ebeae238d7091aa2e223d9a14c44bf4668662f664b976f62ba3f1d8a366f90fb6058a8c904e20c26432dccd6abcd9c57fa
 DIST torque-4.2.9.tar.gz 6294022 BLAKE2B 
2a57bebd7d9160deb3c610c21e1014a813c6e53771aadd65241d5fc623d41dca314e7b391cb218e0c9e917936c0547d1ba4c184442c20cef8bb62f98072537cc
 SHA512 
898703fa1d02310c22e2a02b86d67ca52ebed46684597931944edebb39f8293746739c8dca9cd10e07c2e7274c3dd7f65a5664d1980817e3feec58952c4cf4d1
 DIST torque-6.0.3-1485300822_19e79ad.tar.gz 41660338 BLAKE2B 
5e6c2e4bfffbe96d3a3e441f4c4420b4cb81a882bc498c4bf9474cf15a6808234f444183876a5ccfd46b6a9e4113d404cf72359ab3166146c3040854485f807d
 SHA512 
40531f2e7732a11ffc224c536f61adc48ce5699a7caebb8aa1fbe7536b5ca4ed66c8436420bc918f7538ef980818141888aa26390a5a2c8185c8cc57373a0ac1

diff --git 
a/sys-cluster/torque/files/torque-4.2-use-NULL-instead-of-char0.patch 
b/sys-cluster/torque/files/torque-4.2-use-NULL-instead-of-char0.patch
new file mode 100644
index 000..a1cb85327d7
--- /dev/null
+++ b/sys-cluster/torque/files/torque-4.2-use-NULL-instead-of-char0.patch
@@ -0,0 +1,140 @@
+--- a/src/cmds/pbsnodes.c  2015-03-17 16:43:36.0 -0400
 b/src/cmds/pbsnodes.c  2019-02-25 12:33:37.824638386 -0500
+@@ -693,7 +693,7 @@
+ /* -N n is the same as -N ""  -- it clears the note */
+ 
+ if (!strcmp(note, "n"))
+-  *note = '\0';
++  *note = NULL;
+ 
+ if (strlen(note) > MAX_NOTE)
+   {
+@@ -821,7 +821,7 @@
+ {
+ nodeargs = (char **)calloc(2, sizeof(char **));
+ nodeargs[0] = strdup("");
+-nodeargs[1] = '\0';
++nodeargs[1] = NULL;
+ }
+   }
+ }
+@@ -901,7 +901,7 @@
+ 
+ MXMLCreateE(, "Data");
+ 
+-for (lindex = 0;nodeargs[lindex] != '\0';lindex++)
++for (lindex = 0;nodeargs[lindex] != NULL;lindex++)
+   {
+   bstatus = statnode(con, nodeargs[lindex]);
+ 
+@@ -922,7 +922,7 @@
+ }
+   else
+ {
+-for (lindex = 0;nodeargs[lindex] != '\0';lindex++)
++for (lindex = 0;nodeargs[lindex] != NULL;lindex++)
+   {
+   bstatus = statnode(con, nodeargs[lindex]);
+ 
+@@ -946,7 +946,7 @@
+ 
+   /* list any node that is DOWN, OFFLINE, or UNKNOWN */
+ 
+-  for (lindex = 0;nodeargs[lindex] != '\0';lindex++)
++  for (lindex = 0;nodeargs[lindex] != NULL;lindex++)
+ {
+ bstatus = statnode(con, nodeargs[lindex]);
+ 
+--- a/src/cmds/qsub_functions.c2015-03-17 16:43:36.0 -0400
 b/src/cmds/qsub_functions.c2019-02-25 12:32:00.442982091 -0500
+@@ -542,7 +542,7 @@
+   static char tmpLine[65536];
+ 
+   /* we've reached the end */
+-  if ((start == NULL) && (*tok_ptr == '\0'))
++  if 

  1   2   >