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

2020-03-06 Thread Mikle Kolyada
commit: 1d281de3cc9c631fa1297adcb0a622d50c2371c7
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sat Mar  7 07:23:04 2020 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sat Mar  7 07:23:04 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d281de3

sys-auth/pambase:  Version bump (v20200304)

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

 sys-auth/pambase/Manifest|  1 +
 sys-auth/pambase/pambase-20200304.ebuild | 83 
 2 files changed, 84 insertions(+)

diff --git a/sys-auth/pambase/Manifest b/sys-auth/pambase/Manifest
index ca862a1638a..8e35b3e7c0d 100644
--- a/sys-auth/pambase/Manifest
+++ b/sys-auth/pambase/Manifest
@@ -1,2 +1,3 @@
 DIST pambase-20190402.tar.gz 3679 BLAKE2B 
992d7bf6b6f74ef22a8808b57dd6faffb6c351eaa8be4172f320031334ca6def698b2cb17005b58ac3c18e89a94012e279b0f27cc2bea5040ae8ddc3233cba2d
 SHA512 
565d64653e9898b9bd231c1461ec0988a19dbc9500ff1417a7197ac75804abeb13ca543121ae4afb29017c1e99073a16137e5c876f43dcc01e2641218760f4ae
 DIST pambase-20191128.tar.gz 3472 BLAKE2B 
1028239c14eed3d06239f98667ffe136dc3c9cdb9c74d8f49e0c819d9ea308285cdd234538418357030dd39693040592b00f193cac4e37e15b9f277386096860
 SHA512 
09100457cacbe309eac8545818de3e4bff4f0c4a29b4c1758217dd80206c664f497570ef67207866aaf70be60ec963677b385adaf2c4a0cd931a50404098051b
+DIST pambase-20200304.tar.gz 3466 BLAKE2B 
e4d406460d435403ed7a46d517f9006cacc54a94f5019a573c81b331731c88679ed6d388354b5946894bdfada556b4c73735c3f4de88fc7678cd831c68ab46c3
 SHA512 
c2a7f3fd143637fbdf5c0a3c58ba5a3c23c5e8adb1f057d02b4b9d64660435fc529031a0f710a9e5fc7091710f78dcb2f3e1ff48f033fb491ddd0399ef05b189

diff --git a/sys-auth/pambase/pambase-20200304.ebuild 
b/sys-auth/pambase/pambase-20200304.ebuild
new file mode 100644
index 000..dec07bfc81d
--- /dev/null
+++ b/sys-auth/pambase/pambase-20200304.ebuild
@@ -0,0 +1,83 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="PAM base configuration files"
+HOMEPAGE="https://github.com/gentoo/pambase";
+SRC_URI="https://github.com/gentoo/pambase/archive/${P}.tar.gz";
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux"
+IUSE="caps consolekit +cracklib debug elogind minimal mktemp +nullok pam_krb5 
pam_ssh passwdqc securetty selinux +sha512 systemd"
+
+RESTRICT="binchecks"
+
+REQUIRED_USE="?? ( consolekit elogind systemd )"
+
+MIN_PAM_REQ=1.1.3
+
+RDEPEND="
+   >=sys-libs/pam-${MIN_PAM_REQ}
+   consolekit? ( sys-auth/consolekit[pam] )
+   cracklib? ( sys-libs/pam[cracklib] )
+   elogind? ( sys-auth/elogind[pam] )
+   mktemp? ( sys-auth/pam_mktemp )
+   pam_krb5? (
+   >=sys-libs/pam-${MIN_PAM_REQ}
+   sys-auth/pam_krb5
+   )
+   caps? ( sys-libs/libcap[pam] )
+   pam_ssh? ( sys-auth/pam_ssh )
+   passwdqc? ( sys-auth/pam_passwdqc )
+   selinux? ( sys-libs/pam[selinux] )
+   sha512? ( >=sys-libs/pam-${MIN_PAM_REQ} )
+   systemd? ( sys-apps/systemd[pam] )
+"
+DEPEND="
+   app-arch/xz-utils
+   app-portage/portage-utils
+"
+
+S="${WORKDIR}/${PN}-${P}"
+
+src_compile() {
+   local linux_pam_version
+   if has_version sys-libs/pam; then
+   local ver_str=$(qatom $(best_version sys-libs/pam) | cut -d ' ' 
-f 3)
+   linux_pam_version=$(printf "0x%02x%02x%02x" ${ver_str//\./ })
+   fi
+
+   use_var() {
+   local varname=$(echo "$1" | tr '[:lower:]' '[:upper:]')
+   local usename=${2-$(echo "$1" | tr '[:upper:]' '[:lower:]')}
+   local varvalue=$(usex ${usename})
+   echo "${varname}=${varvalue}"
+   }
+
+   emake \
+   GIT=true \
+   $(use_var debug) \
+   $(use_var LIBCAP caps) \
+   $(use_var cracklib) \
+   $(use_var passwdqc) \
+   $(use_var consolekit) \
+   $(use_var elogind) \
+   $(use_var systemd) \
+   $(use_var selinux) \
+   $(use_var nullok) \
+   $(use_var mktemp) \
+   $(use_var pam_ssh) \
+   $(use_var securetty) \
+   $(use_var sha512) \
+   $(use_var KRB5 pam_krb5) \
+   $(use_var minimal) \
+   LINUX_PAM_VERSION=${linux_pam_version}
+}
+
+src_test() { :; }
+
+src_install() {
+   emake GIT=true DESTDIR="${ED}" install
+}



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

2020-03-06 Thread Mikle Kolyada
commit: e29da550d2f92c7df345effd16623f86c23174b3
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sat Mar  7 06:49:32 2020 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sat Mar  7 06:51:08 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e29da550

app-editors/vim: Version bump (v8.2.0360)

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

 app-editors/vim/Manifest|   1 +
 app-editors/vim/vim-8.2.0360.ebuild | 318 
 2 files changed, 319 insertions(+)

diff --git a/app-editors/vim/Manifest b/app-editors/vim/Manifest
index 71ed0753222..84eb8e30b4c 100644
--- a/app-editors/vim/Manifest
+++ b/app-editors/vim/Manifest
@@ -5,3 +5,4 @@ DIST vim-8.2.0055.tar.gz 14655766 BLAKE2B 
73703f4f08cd78f75c53cd446e3edc171805a1
 DIST vim-8.2.0114.tar.gz 14667122 BLAKE2B 
3f6219592a1b8ed85caee4cfa289e4042380da4e4a563692fb36d60fdec9e29930a8e20963fa574dd346928b34626ea51a8ab79085c1fac86c755bccfeac
 SHA512 
0e45a63bc910f8f2972e2df076523d3a2612836bee0cffba6c2753eeadaff978054689af4029384713e822aabe0e57aa8c89bbb5f9a813781f381c3a2a416d1f
 DIST vim-8.2.0210-gentoo-patches.tar.bz2 2755 BLAKE2B 
21f1fb97c95d4f2eb45968783add80e11011be12fd2d701c267644a44da9782214828e022667c1a0a2ed08aedb7c12b6756a8b8adea4db5c7a3cb7dc94b75fd8
 SHA512 
c942c33dc033d63569e07523fa7652d1c53685aa64f9e7a4bf4e6126012790ec0ec820a7a9209cfe64096679ba8a9f9394ed92696a933e3c8be10658d16b8a7b
 DIST vim-8.2.0210.tar.gz 14757725 BLAKE2B 
b78ed42b42d40911efb76d4317c116b1c207909ed47241f9dbe6cf6385a4a25ee8cceb2d883171dd922027fb91e9f25e4741fdcd6ebc69217e7d26eae2f88efe
 SHA512 
118131c7c186bac36b3e4928a0021e03b4bf197e1d5651019f4fcf8d4fee89fb7e0123adaf18bebc932c5e06217904526d0625513646e34aebf6cfdee8885260
+DIST vim-8.2.0360.tar.gz 14842830 BLAKE2B 
fe3a13cb4bef4ada1bd13cdc80aa9a4ab275d1ff16a7f5308109adc7c5a3459393e1c8153fa32a972141b27cce3aaff50c59416d1ba32e4dca03074be49705a9
 SHA512 
183bcb5cc73290193de99beb69b56b64efa37db9d905c6e76a51ac727f4447f76346dde632e2dfae9d289abb4b9ca11a14f7e350eaa699fc2c3c7c2e35fc20b2

diff --git a/app-editors/vim/vim-8.2.0360.ebuild 
b/app-editors/vim/vim-8.2.0360.ebuild
new file mode 100644
index 000..ac2920a55c2
--- /dev/null
+++ b/app-editors/vim/vim-8.2.0360.ebuild
@@ -0,0 +1,318 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+VIM_VERSION="8.2"
+PYTHON_COMPAT=( python3_{6,7,8} )
+PYTHON_REQ_USE="threads(+)"
+USE_RUBY="ruby24 ruby25 ruby26 ruby27"
+
+inherit vim-doc flag-o-matic bash-completion-r1 python-single-r1 ruby-single 
desktop xdg-utils
+
+if [[ ${PV} == * ]] ; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/vim/vim.git";
+else
+   SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> ${P}.tar.gz
+   
https://dev.gentoo.org/~radhermit/vim/vim-8.2.0210-gentoo-patches.tar.bz2";
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
+fi
+
+DESCRIPTION="Vim, an improved vi-style text editor"
+HOMEPAGE="https://vim.sourceforge.io/ https://github.com/vim/vim";
+
+SLOT="0"
+LICENSE="vim"
+IUSE="X acl cscope debug gpm lua luajit minimal nls perl python racket ruby 
selinux sound tcl terminal vim-pager"
+REQUIRED_USE="
+   python? ( ${PYTHON_REQUIRED_USE} )
+   vim-pager? ( !minimal )
+"
+
+RDEPEND="
+   >=app-eselect/eselect-vi-1.1
+   >=sys-libs/ncurses-5.2-r2:0=
+   nls? ( virtual/libintl )
+   acl? ( kernel_linux? ( sys-apps/acl ) )
+   cscope? ( dev-util/cscope )
+   gpm? ( >=sys-libs/gpm-1.19.3 )
+   lua? (
+   luajit? ( dev-lang/luajit:2= )
+   !luajit? ( dev-lang/lua:0[deprecated] )
+   )
+   !minimal? ( ~app-editors/vim-core-${PV} )
+   vim-pager? ( app-editors/vim-core[-minimal] )
+   perl? ( dev-lang/perl:= )
+   python? ( ${PYTHON_DEPS} )
+   racket? ( dev-scheme/racket )
+   ruby? ( ${RUBY_DEPS} )
+   selinux? ( sys-libs/libselinux )
+   sound? ( media-libs/libcanberra )
+   tcl? ( dev-lang/tcl:0= )
+   X? ( x11-libs/libXt )
+"
+
+DEPEND="
+   ${RDEPEND}
+   sys-devel/autoconf
+   nls? ( sys-devel/gettext )
+"
+
+pkg_setup() {
+   # people with broken alphabets run into trouble. bug 82186.
+   unset LANG LC_ALL
+   export LC_COLLATE="C"
+
+   # Gnome sandbox silliness. bug #114475.
+   mkdir -p "${T}"/home || die "mkdir failed"
+   export HOME="${T}"/home
+
+   use python && python-single-r1_pkg_setup
+}
+
+src_prepare() {
+   if [[ ${PV} != * ]] ; then
+   # Gentoo patches to fix runtime issues, cross-compile errors, 
etc
+   eapply "${WORKDIR}"/patches/
+   fi
+
+   # Fixup a script to use awk

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

2020-03-06 Thread Mikle Kolyada
commit: 76a0c97babcfcd25bfc30f456301bf01c14d9619
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sat Mar  7 06:47:00 2020 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sat Mar  7 06:51:08 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76a0c97b

app-editors/vim-core: Version bump (v8.2.0360)

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

 app-editors/vim-core/Manifest |   1 +
 app-editors/vim-core/vim-core-8.2.0360.ebuild | 225 ++
 2 files changed, 226 insertions(+)

diff --git a/app-editors/vim-core/Manifest b/app-editors/vim-core/Manifest
index 71ed0753222..84eb8e30b4c 100644
--- a/app-editors/vim-core/Manifest
+++ b/app-editors/vim-core/Manifest
@@ -5,3 +5,4 @@ DIST vim-8.2.0055.tar.gz 14655766 BLAKE2B 
73703f4f08cd78f75c53cd446e3edc171805a1
 DIST vim-8.2.0114.tar.gz 14667122 BLAKE2B 
3f6219592a1b8ed85caee4cfa289e4042380da4e4a563692fb36d60fdec9e29930a8e20963fa574dd346928b34626ea51a8ab79085c1fac86c755bccfeac
 SHA512 
0e45a63bc910f8f2972e2df076523d3a2612836bee0cffba6c2753eeadaff978054689af4029384713e822aabe0e57aa8c89bbb5f9a813781f381c3a2a416d1f
 DIST vim-8.2.0210-gentoo-patches.tar.bz2 2755 BLAKE2B 
21f1fb97c95d4f2eb45968783add80e11011be12fd2d701c267644a44da9782214828e022667c1a0a2ed08aedb7c12b6756a8b8adea4db5c7a3cb7dc94b75fd8
 SHA512 
c942c33dc033d63569e07523fa7652d1c53685aa64f9e7a4bf4e6126012790ec0ec820a7a9209cfe64096679ba8a9f9394ed92696a933e3c8be10658d16b8a7b
 DIST vim-8.2.0210.tar.gz 14757725 BLAKE2B 
b78ed42b42d40911efb76d4317c116b1c207909ed47241f9dbe6cf6385a4a25ee8cceb2d883171dd922027fb91e9f25e4741fdcd6ebc69217e7d26eae2f88efe
 SHA512 
118131c7c186bac36b3e4928a0021e03b4bf197e1d5651019f4fcf8d4fee89fb7e0123adaf18bebc932c5e06217904526d0625513646e34aebf6cfdee8885260
+DIST vim-8.2.0360.tar.gz 14842830 BLAKE2B 
fe3a13cb4bef4ada1bd13cdc80aa9a4ab275d1ff16a7f5308109adc7c5a3459393e1c8153fa32a972141b27cce3aaff50c59416d1ba32e4dca03074be49705a9
 SHA512 
183bcb5cc73290193de99beb69b56b64efa37db9d905c6e76a51ac727f4447f76346dde632e2dfae9d289abb4b9ca11a14f7e350eaa699fc2c3c7c2e35fc20b2

diff --git a/app-editors/vim-core/vim-core-8.2.0360.ebuild 
b/app-editors/vim-core/vim-core-8.2.0360.ebuild
new file mode 100644
index 000..e8ecb7550a6
--- /dev/null
+++ b/app-editors/vim-core/vim-core-8.2.0360.ebuild
@@ -0,0 +1,225 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+VIM_VERSION="8.2"
+inherit estack vim-doc flag-o-matic bash-completion-r1 prefix desktop xdg-utils
+
+if [[ ${PV} == * ]] ; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/vim/vim.git";
+   EGIT_CHECKOUT_DIR=${WORKDIR}/vim-${PV}
+else
+   SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> 
vim-${PV}.tar.gz
+   
https://dev.gentoo.org/~radhermit/vim/vim-8.2.0210-gentoo-patches.tar.bz2";
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
+fi
+
+DESCRIPTION="vim and gvim shared files"
+HOMEPAGE="https://vim.sourceforge.io/ https://github.com/vim/vim";
+
+SLOT="0"
+LICENSE="vim"
+IUSE="nls acl minimal"
+
+DEPEND="sys-devel/autoconf"
+# avoid icon file collision bug #673880
+RDEPEND="!!> 
"${S}"/src/feature.h
+   echo '#define SYS_GVIMRC_FILE "'${EPREFIX}'/etc/vim/gvimrc"' >> 
"${S}"/src/feature.h
+
+   # Use exuberant ctags which installs as /usr/bin/exuberant-ctags.
+   # Hopefully this pattern won't break for a while at least.
+   # This fixes bug 29398 (27 Sep 2003 agriffis)
+   sed -i 's/\> "$c" || die "echo failed"
+   done
+
+   # Try to avoid sandbox problems. Bug #114475.
+   if [[ -d "${S}"/src/po ]]; then
+   sed -i -e \
+   '/-S check.vim/s,..VIM.,ln -s $(VIM) testvim \; 
./testvim -X,' \
+   "${S}"/src/po/Makefile || die "sed failed"
+   fi
+
+   cp -v "${S}"/src/config.mk.dist "${S}"/src/auto/config.mk || die "cp 
failed"
+
+   # Bug #378107 - Build properly with >=perl-core/ExtUtils-ParseXS-3.20.0
+   sed -i -e \
+   "s:\\\$(PERLLIB)/ExtUtils/xsubpp:${EPREFIX}/usr/bin/xsubpp:" \
+   "${S}"/src/Makefile || die 'sed for ExtUtils-ParseXS failed'
+
+   eapply_user
+}
+
+src_configure() {
+   local myconf
+
+   # Fix bug 37354: Disallow -funroll-all-loops on amd64
+   # Bug 57859 suggests that we want to do this for all archs
+   filter-flags -funroll-all-loops
+
+   # Fix bug 76331: -O3 causes problems, use -O2 instead. We'll do this for
+   # everyone since previous flag filtering bugs have turned out to affect
+   # multiple archs...
+   replace-flags -O3 -O2
+
+   # Fix bug 18245: Prevent "make" from the following chain

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

2020-03-06 Thread Mikle Kolyada
commit: 4accb8c774dd23c8b31cb65a27a6c8f42481b805
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sat Mar  7 06:50:34 2020 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sat Mar  7 06:51:08 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4accb8c7

app-editors/gvim: Version bump (v8.2.0360)

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

 app-editors/gvim/Manifest |   1 +
 app-editors/gvim/gvim-8.2.0360.ebuild | 367 ++
 2 files changed, 368 insertions(+)

diff --git a/app-editors/gvim/Manifest b/app-editors/gvim/Manifest
index 71ed0753222..84eb8e30b4c 100644
--- a/app-editors/gvim/Manifest
+++ b/app-editors/gvim/Manifest
@@ -5,3 +5,4 @@ DIST vim-8.2.0055.tar.gz 14655766 BLAKE2B 
73703f4f08cd78f75c53cd446e3edc171805a1
 DIST vim-8.2.0114.tar.gz 14667122 BLAKE2B 
3f6219592a1b8ed85caee4cfa289e4042380da4e4a563692fb36d60fdec9e29930a8e20963fa574dd346928b34626ea51a8ab79085c1fac86c755bccfeac
 SHA512 
0e45a63bc910f8f2972e2df076523d3a2612836bee0cffba6c2753eeadaff978054689af4029384713e822aabe0e57aa8c89bbb5f9a813781f381c3a2a416d1f
 DIST vim-8.2.0210-gentoo-patches.tar.bz2 2755 BLAKE2B 
21f1fb97c95d4f2eb45968783add80e11011be12fd2d701c267644a44da9782214828e022667c1a0a2ed08aedb7c12b6756a8b8adea4db5c7a3cb7dc94b75fd8
 SHA512 
c942c33dc033d63569e07523fa7652d1c53685aa64f9e7a4bf4e6126012790ec0ec820a7a9209cfe64096679ba8a9f9394ed92696a933e3c8be10658d16b8a7b
 DIST vim-8.2.0210.tar.gz 14757725 BLAKE2B 
b78ed42b42d40911efb76d4317c116b1c207909ed47241f9dbe6cf6385a4a25ee8cceb2d883171dd922027fb91e9f25e4741fdcd6ebc69217e7d26eae2f88efe
 SHA512 
118131c7c186bac36b3e4928a0021e03b4bf197e1d5651019f4fcf8d4fee89fb7e0123adaf18bebc932c5e06217904526d0625513646e34aebf6cfdee8885260
+DIST vim-8.2.0360.tar.gz 14842830 BLAKE2B 
fe3a13cb4bef4ada1bd13cdc80aa9a4ab275d1ff16a7f5308109adc7c5a3459393e1c8153fa32a972141b27cce3aaff50c59416d1ba32e4dca03074be49705a9
 SHA512 
183bcb5cc73290193de99beb69b56b64efa37db9d905c6e76a51ac727f4447f76346dde632e2dfae9d289abb4b9ca11a14f7e350eaa699fc2c3c7c2e35fc20b2

diff --git a/app-editors/gvim/gvim-8.2.0360.ebuild 
b/app-editors/gvim/gvim-8.2.0360.ebuild
new file mode 100644
index 000..abe335c6f24
--- /dev/null
+++ b/app-editors/gvim/gvim-8.2.0360.ebuild
@@ -0,0 +1,367 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+VIM_VERSION="8.2"
+PYTHON_COMPAT=( python3_{6,7,8} )
+PYTHON_REQ_USE="threads(+)"
+USE_RUBY="ruby24 ruby25 ruby26 ruby27"
+
+inherit vim-doc flag-o-matic xdg-utils bash-completion-r1 prefix 
python-single-r1 ruby-single
+
+if [[ ${PV} == * ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/vim/vim.git";
+   EGIT_CHECKOUT_DIR=${WORKDIR}/vim-${PV}
+else
+   SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> 
vim-${PV}.tar.gz
+   
https://dev.gentoo.org/~radhermit/vim/vim-8.2.0210-gentoo-patches.tar.bz2";
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
+fi
+
+DESCRIPTION="GUI version of the Vim text editor"
+HOMEPAGE="https://vim.sourceforge.io/ https://github.com/vim/vim";
+
+SLOT="0"
+LICENSE="vim"
+IUSE="acl aqua cscope debug gtk gtk2 lua luajit motif neXt netbeans nls perl 
python racket ruby selinux session sound tcl"
+REQUIRED_USE="
+   python? ( ${PYTHON_REQUIRED_USE} )
+"
+
+RDEPEND="
+   ~app-editors/vim-core-${PV}
+   >=app-eselect/eselect-vi-1.1
+   >=sys-libs/ncurses-5.2-r2:0=
+   x11-libs/libICE
+   x11-libs/libSM
+   x11-libs/libXext
+   x11-libs/libXt
+   acl? ( kernel_linux? ( sys-apps/acl ) )
+   !aqua? (
+   gtk? (
+   x11-libs/gtk+:3
+   x11-libs/libXft
+   )
+   !gtk? (
+   gtk2? (
+   >=x11-libs/gtk+-2.6:2
+   x11-libs/libXft
+   )
+   !gtk2? (
+   motif? ( >=x11-libs/motif-2.3:0 )
+   !motif? (
+   neXt? ( x11-libs/neXtaw )
+   !neXt? ( x11-libs/libXaw )
+   )
+   )
+   )
+   )
+   cscope? ( dev-util/cscope )
+   lua? (
+   luajit? ( dev-lang/luajit:2= )
+   !luajit? ( dev-lang/lua:0[deprecated] )
+   )
+   nls? ( virtual/libintl )
+   perl? ( dev-lang/perl:= )
+   python? ( ${PYTHON_DEPS} )
+   racket? ( dev-scheme/racket )
+   ruby? ( ${RUBY_DEPS} )
+   selinux? ( sys-libs/libselinux )
+   session? ( x11-libs/libSM )
+   sound? ( media-libs/libcanberra )
+   tcl? ( dev-lang/tcl:0= )
+"
+DEPEND="${RDEPEND}
+   sys-devel/autoconf
+   virtua

[gentoo-commits] repo/gentoo:master commit in: x11-base/xorg-server/

2020-03-06 Thread Matt Turner
commit: 3e0cc08fbd16ec629a621bfa8b9d6de4d588298a
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Mar  7 05:45:24 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Mar  7 05:45:32 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e0cc08f

x11-base/xorg-server: Enable IUSE=libglvnd by default

Closes: https://bugs.gentoo.org/711764
Signed-off-by: Matt Turner  gentoo.org>

 x11-base/xorg-server/xorg-server-1.20.7.ebuild | 2 +-
 x11-base/xorg-server/xorg-server-.ebuild   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/x11-base/xorg-server/xorg-server-1.20.7.ebuild 
b/x11-base/xorg-server/xorg-server-1.20.7.ebuild
index 6643f5d54cd..98a672bfda6 100644
--- a/x11-base/xorg-server/xorg-server-1.20.7.ebuild
+++ b/x11-base/xorg-server/xorg-server-1.20.7.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} != * ]]; then
 fi
 
 IUSE_SERVERS="dmx kdrive wayland xephyr xnest xorg xvfb"
-IUSE="${IUSE_SERVERS} debug elogind ipv6 libressl libglvnd minimal selinux 
+suid systemd +udev unwind xcsecurity"
+IUSE="${IUSE_SERVERS} debug elogind ipv6 libressl +libglvnd minimal selinux 
+suid systemd +udev unwind xcsecurity"
 
 CDEPEND="libglvnd? (
media-libs/libglvnd

diff --git a/x11-base/xorg-server/xorg-server-.ebuild 
b/x11-base/xorg-server/xorg-server-.ebuild
index 684b011fb23..8ba0b72a0c9 100644
--- a/x11-base/xorg-server/xorg-server-.ebuild
+++ b/x11-base/xorg-server/xorg-server-.ebuild
@@ -15,7 +15,7 @@ if [[ ${PV} != * ]]; then
 fi
 
 IUSE_SERVERS="dmx kdrive wayland xephyr xnest xorg xvfb"
-IUSE="${IUSE_SERVERS} debug elogind ipv6 libressl libglvnd minimal selinux 
+suid systemd +udev unwind xcsecurity"
+IUSE="${IUSE_SERVERS} debug elogind ipv6 libressl +libglvnd minimal selinux 
+suid systemd +udev unwind xcsecurity"
 
 CDEPEND="libglvnd? (
media-libs/libglvnd



[gentoo-commits] repo/gentoo:master commit in: x11-drivers/nvidia-drivers/

2020-03-06 Thread Matt Turner
commit: 2d242bce050883c2f7b73b0515d828f2b2d93fde
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Mar  7 05:47:02 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Mar  7 05:47:04 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d242bce

x11-drivers/nvidia-drivers: Enable IUSE=libglvnd by default

Closes: https://bugs.gentoo.org/711764
Signed-off-by: Matt Turner  gentoo.org>

 x11-drivers/nvidia-drivers/nvidia-drivers-435.21-r1.ebuild | 2 +-
 x11-drivers/nvidia-drivers/nvidia-drivers-440.59.ebuild| 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/x11-drivers/nvidia-drivers/nvidia-drivers-435.21-r1.ebuild 
b/x11-drivers/nvidia-drivers/nvidia-drivers-435.21-r1.ebuild
index 33342e4c716..1d8a6ae60a0 100644
--- a/x11-drivers/nvidia-drivers/nvidia-drivers-435.21-r1.ebuild
+++ b/x11-drivers/nvidia-drivers/nvidia-drivers-435.21-r1.ebuild
@@ -26,7 +26,7 @@ KEYWORDS="-* amd64"
 LICENSE="GPL-2 NVIDIA-r2"
 SLOT="0/${PV%.*}"
 
-IUSE="acpi compat +driver gtk3 kernel_FreeBSD kernel_linux +kms libglvnd 
multilib static-libs +tools uvm wayland +X"
+IUSE="acpi compat +driver gtk3 kernel_FreeBSD kernel_linux +kms +libglvnd 
multilib static-libs +tools uvm wayland +X"
 REQUIRED_USE="
tools? ( X )
static-libs? ( tools )

diff --git a/x11-drivers/nvidia-drivers/nvidia-drivers-440.59.ebuild 
b/x11-drivers/nvidia-drivers/nvidia-drivers-440.59.ebuild
index c9b0e1376d3..e416cc204ee 100644
--- a/x11-drivers/nvidia-drivers/nvidia-drivers-440.59.ebuild
+++ b/x11-drivers/nvidia-drivers/nvidia-drivers-440.59.ebuild
@@ -26,7 +26,7 @@ KEYWORDS="-* amd64"
 LICENSE="GPL-2 NVIDIA-r2"
 SLOT="0/${PV%.*}"
 
-IUSE="acpi compat +driver gtk3 kernel_FreeBSD kernel_linux +kms libglvnd 
multilib static-libs +tools uvm wayland +X"
+IUSE="acpi compat +driver gtk3 kernel_FreeBSD kernel_linux +kms +libglvnd 
multilib static-libs +tools uvm wayland +X"
 REQUIRED_USE="
tools? ( X )
static-libs? ( tools )



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

2020-03-06 Thread Matt Turner
commit: 610435804dde859d84d0bebf8e8ad29729256ab4
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Mar  7 03:04:24 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Mar  7 03:10:23 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61043580

media-libs/mesa: Enable IUSE=libglvnd by default

It's going to be unmasked soon, and I'd like to have it enabled by
default for Mesa 20.0.

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

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

diff --git a/media-libs/mesa/mesa-.ebuild b/media-libs/mesa/mesa-.ebuild
index 4710eca2f2d..d6118a8b9af 100644
--- a/media-libs/mesa/mesa-.ebuild
+++ b/media-libs/mesa/mesa-.ebuild
@@ -35,7 +35,7 @@ for card in ${VIDEO_CARDS}; do
 done
 
 IUSE="${IUSE_VIDEO_CARDS}
-   +classic d3d9 debug +dri3 +egl +gallium +gbm gles1 +gles2 libglvnd +llvm
+   +classic d3d9 debug +dri3 +egl +gallium +gbm gles1 +gles2 +libglvnd 
+llvm
lm-sensors opencl osmesa selinux test unwind vaapi valgrind vdpau vulkan
vulkan-overlay wayland +X xa xvmc +zstd"
 



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

2020-03-06 Thread Matt Turner
commit: da216dbf52bc21c38df470030f3001573a3aab37
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Mar  7 03:05:32 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Mar  7 03:10:26 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da216dbf

media-libs/mesa: Version bump to 20.0.1

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

 media-libs/mesa/Manifest   |   1 +
 media-libs/mesa/mesa-20.0.1.ebuild | 544 +
 2 files changed, 545 insertions(+)

diff --git a/media-libs/mesa/Manifest b/media-libs/mesa/Manifest
index 776ba075152..56b16dd6b32 100644
--- a/media-libs/mesa/Manifest
+++ b/media-libs/mesa/Manifest
@@ -1,3 +1,4 @@
 DIST mesa-19.2.8.tar.xz 11462168 BLAKE2B 
c49d6d3d10b4c85534a75e4bea29fc8b7526c784af5068764de623d40cbb59ecb96beb1969fa1a13815b6bd259bb98faaf42e4969792c6a75ce702d4b2e57155
 SHA512 
9bedc2f1a5296da96c1a2a491edaea701e70f683b26eac076e8cbef2230156d5d5ddb2330c3a2530afd4982a9893d76ded8d54bc73a98c846de0c3dfa3634c43
 DIST mesa-19.3.4.tar.xz 11968288 BLAKE2B 
be39a2ca08d91f8afbc2f3a47d596b14445fac62600f64d627b23d63b340b002bc05246eece95e19b33485a92c01f7980fff52b2375b7a2053161e0aa87d0b38
 SHA512 
2bbb3dc8f1d839f11fe12cc959393cd69607fa6714b2166b80299e0559d2d3b0ac38ed4e15ac3e5f472264eb24536d1901d350f7409f3a7e00d6f4ccbb2312fb
 DIST mesa-20.0.0.tar.xz 12153408 BLAKE2B 
41daa21c5b74bb0e50e713ee9766fb60bad5bce4c6ab23aee6e7c32fead61dcc3f17f927a91cb6f1fa1f1c1c314c666a81fde3e5d1b388ed930811b15f92d647
 SHA512 
3968820029434682fb6644947c76e12b6bb991a3d05cb519a6ea971ecc4aa9b21d03f84b9a452cc21cc77a7981db9e40dd2dfd3ea3dee85b3dd88a59b4842bbb
+DIST mesa-20.0.1.tar.xz 12174080 BLAKE2B 
bc25d95b6737006d755384cfe759439819fadfacf441db723247fd5d0c7dad1daa84695dfdf86319ba2ac68ac2d66f48dc396e8d7e8c579faa7fbdda4391636f
 SHA512 
9e005ebbb699c1ad83b73c503c467907958a3d9cad644d8f7ac95804fd265debcf563784a1054c8e0bf40106e33b13185607e8270a197e9ddc34c50b1b2c4d82

diff --git a/media-libs/mesa/mesa-20.0.1.ebuild 
b/media-libs/mesa/mesa-20.0.1.ebuild
new file mode 100644
index 000..b7e1f507aed
--- /dev/null
+++ b/media-libs/mesa/mesa-20.0.1.ebuild
@@ -0,0 +1,544 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6,7,8} )
+
+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";
+   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-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 intel iris lima nouveau 
panfrost 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 selinux test unwind vaapi valgrind vdpau vulkan
+   vulkan-overlay wayland +X xa xvmc +zstd"
+
+REQUIRED_USE="
+   d3d9?   ( dri3 || ( video_cards_iris 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_iris 
video_cards_radeonsi )
+ video_cards_radeonsi? ( llvm ) )
+   vulkan-overlay? ( vulkan )
+   wayland? ( egl gbm )
+   video_cards_freedreno?  ( gallium )
+   video_cards_intel?  ( classic )
+   video_cards_i915?   ( || ( classic gallium ) )
+   video_cards_i965?   ( classic )
+   video_cards_iris?   ( gallium )
+   video_cards_lima?   ( gallium )
+   video_cards_nouveau? ( || ( classic gallium ) )
+   video_cards_panfrost? ( 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 )
+   xa? ( X )
+   xvmc? ( X )
+"
+
+LIBDRM_DEPSTRING=">=x11-libs/libdrm-2.4.100"
+RDEPEND="
+   !app-eselect/eselect-mesa
+   >=dev-libs/expat-2.1.0-r3:=[$

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

2020-03-06 Thread Matt Turner
commit: e27b382a34c1ee4b70934aefca64c5ba62e2cef4
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Mar  7 03:06:48 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Mar  7 03:10:26 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e27b382a

dev-libs/wayland-protocols: Version bump to 1.20

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

 dev-libs/wayland-protocols/Manifest | 1 +
 .../{wayland-protocols-.ebuild => wayland-protocols-1.20.ebuild}| 2 +-
 dev-libs/wayland-protocols/wayland-protocols-.ebuild| 2 +-
 3 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/dev-libs/wayland-protocols/Manifest 
b/dev-libs/wayland-protocols/Manifest
index 96c5ba05c4b..e66308acbbe 100644
--- a/dev-libs/wayland-protocols/Manifest
+++ b/dev-libs/wayland-protocols/Manifest
@@ -1,2 +1,3 @@
 DIST wayland-protocols-1.18.tar.xz 108344 BLAKE2B 
7e770bafa364ff96441354246801d1c6cbe561eefe864673610dc2d47e3aa5ac7cd22a2fc2925aa1060a261ed6df8b6b5ef81c33adbeb374170821feeecd651f
 SHA512 
166be44f370a99281da442e7e2c2fc2f3169b61eeaa69263611b4e33847e93d1071f3cc89537597e1252d48d03993ce39c7d65f43b66a23c9b1551f47959e483
 DIST wayland-protocols-1.19.tar.xz 107612 BLAKE2B 
ff91a7eeca0e43a3e93c927f440253c01751872ace142d874431a347ad652c04d02f36fa08b7e48787d569db9787415eafbd24495a442568b6476332c8935243
 SHA512 
f09b700a785da0002ca215d2e695461368534c5c961e064ca19b73fe0c72754b3c9d4076cf495d8c907053dbabb2381f6a2bbcef41564071a4c589a8c44ff0fb
+DIST wayland-protocols-1.20.tar.xz 111684 BLAKE2B 
2ddd3d0b0dde94fda4788a1fd6631b6fcf22fb134e74a55f2c310ab4b72802d3b069d294e3d7b68ea6ddfdb0f944ac9011b73a9678e65eec924135822f697087
 SHA512 
d13f65d03add2c39cc32bf6bda0e981e9f52504bf8505fceea045c8baeb73bea64fa4edb99cb837677fbab1b5b3023054adff36fac127e819690f366b81c4977

diff --git a/dev-libs/wayland-protocols/wayland-protocols-.ebuild 
b/dev-libs/wayland-protocols/wayland-protocols-1.20.ebuild
similarity index 95%
copy from dev-libs/wayland-protocols/wayland-protocols-.ebuild
copy to dev-libs/wayland-protocols/wayland-protocols-1.20.ebuild
index 837f825ff1b..85d20d4e9e3 100644
--- a/dev-libs/wayland-protocols/wayland-protocols-.ebuild
+++ b/dev-libs/wayland-protocols/wayland-protocols-1.20.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7

diff --git a/dev-libs/wayland-protocols/wayland-protocols-.ebuild 
b/dev-libs/wayland-protocols/wayland-protocols-.ebuild
index 837f825ff1b..85d20d4e9e3 100644
--- a/dev-libs/wayland-protocols/wayland-protocols-.ebuild
+++ b/dev-libs/wayland-protocols/wayland-protocols-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7



[gentoo-commits] repo/gentoo:master commit in: sci-mathematics/glpk/, sci-mathematics/glpk/files/

2020-03-06 Thread Michael Orlitzky
commit: 20a34c28e3afae7c20221d6fb76ae83d119c1375
Author: Michael Orlitzky  gentoo  org>
AuthorDate: Fri Mar  6 21:50:06 2020 +
Commit: Michael Orlitzky  gentoo  org>
CommitDate: Sat Mar  7 02:13:24 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20a34c28

sci-mathematics/glpk: new version 4.65.

This new upstream version fixes a few minor ebuild issues:

  * I've attempted to fix the MySQL include location in a more standard
way, by using mysql_config (bug 597620). Another solution was already
present in v4.63, so I've marked this bug as resolved.

  * The virtual/mysql dependency was replaced, per bug 666060. This will
be completely resolved when v4.65 goes stable and v4.63 is removed.

We also include a new patch, from upstream, to quiet some overly-verbose
output. The patch to debundle the system libraries was forward-ported to
the new version thanks to François Bissey, who maintained an ebuild for
v4.65 in the sage-on-gentoo overlay until now.

Bug: https://bugs.gentoo.org/666060
Closes: https://bugs.gentoo.org/597620
Closes: https://bugs.gentoo.org/711648
Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Michael Orlitzky  gentoo.org>

 sci-mathematics/glpk/Manifest  |  1 +
 .../files/glpk-4.65-debundle-system-libs.patch | 91 ++
 .../files/glpk-4.65-fix-mysql-include-prefix.patch | 47 +++
 .../glpk/files/glpk-4.65-longstep_verbosity.patch  | 23 ++
 sci-mathematics/glpk/glpk-4.65.ebuild  | 69 
 5 files changed, 231 insertions(+)

diff --git a/sci-mathematics/glpk/Manifest b/sci-mathematics/glpk/Manifest
index e7dae3fabf9..6c89c63e486 100644
--- a/sci-mathematics/glpk/Manifest
+++ b/sci-mathematics/glpk/Manifest
@@ -1 +1,2 @@
 DIST glpk-4.63.tar.gz 4131787 BLAKE2B 
791fa1a1424011668019e180fc245c0319f601255f596affe87afa0df47d9d615a8accd794d51c15bff5fe4fe6409369362f6c9e82bdde67903177b8da55e891
 SHA512 
3ee9b9ec5322282a9c62b2ee209fc7760383a6a764ef3816445ffb66f15ed4d00309bff1b98d50c243b58aa74f83072afde45c389799e637e11e86f4db45276c
+DIST glpk-4.65.tar.gz 4167110 BLAKE2B 
4ccb5cd8301bdca2ccdecfc1648642afe26ff0a1ee9a75cb5a3906838086e5c41edfb16e7c55f4ad677d192f6a66b866f2d917c5be7103da7141bfb1f74e636b
 SHA512 
997e8e599ff1718a08c66b86eadd0e01f4644899f1e95920f8ae91d66b4d8361021766b346845f4dcbcfe667b41ab72ea3d377017a0ebf85d7ece091cfd81375

diff --git a/sci-mathematics/glpk/files/glpk-4.65-debundle-system-libs.patch 
b/sci-mathematics/glpk/files/glpk-4.65-debundle-system-libs.patch
new file mode 100644
index 000..78af8b8d943
--- /dev/null
+++ b/sci-mathematics/glpk/files/glpk-4.65-debundle-system-libs.patch
@@ -0,0 +1,91 @@
+diff --git a/configure.ac b/configure.ac
+index 96c4cc5..29e11f9 100644
+--- a/configure.ac
 b/configure.ac
+@@ -69,6 +69,11 @@ AC_PROG_LIBTOOL
+ dnl Check for math library
+ AC_CHECK_LIB([m], [exp])
+ 
++AC_CHECK_LIB([amd], [amd_1])
++AC_CHECK_LIB([colamd], [colamd])
++AC_CHECK_HEADER([amd.h])
++AC_CHECK_LIB([z], [gzopen])
++
+ dnl Check for  header
+ AC_CHECK_HEADER([sys/time.h],
+AC_DEFINE([HAVE_SYS_TIME_H], [1], [N/A]))
+diff --git a/src/Makefile.am b/src/Makefile.am
+index eb5dc1b..b814627 100644
+--- a/src/Makefile.am
 b/src/Makefile.am
+@@ -6,10 +6,8 @@ lib_LTLIBRARIES = libglpk.la
+ 
+ libglpk_la_CPPFLAGS = \
+ -I$(srcdir) \
+--I$(srcdir)/amd \
+ -I$(srcdir)/api \
+ -I$(srcdir)/bflib \
+--I$(srcdir)/colamd \
+ -I$(srcdir)/draft \
+ -I$(srcdir)/env \
+ -I$(srcdir)/intopt \
+@@ -18,8 +16,7 @@ libglpk_la_CPPFLAGS = \
+ -I$(srcdir)/mpl \
+ -I$(srcdir)/npp \
+ -I$(srcdir)/proxy \
+--I$(srcdir)/simplex \
+--I$(srcdir)/zlib
++-I$(srcdir)/simplex
+ 
+ libglpk_la_LDFLAGS = \
+ -version-info 43:0:3 \
+@@ -27,18 +24,6 @@ libglpk_la_LDFLAGS = \
+ ${NOUNDEFINED}
+ 
+ libglpk_la_SOURCES = \
+-amd/amd_1.c \
+-amd/amd_2.c \
+-amd/amd_aat.c \
+-amd/amd_control.c \
+-amd/amd_defaults.c \
+-amd/amd_dump.c \
+-amd/amd_info.c \
+-amd/amd_order.c \
+-amd/amd_post_tree.c \
+-amd/amd_postorder.c \
+-amd/amd_preprocess.c \
+-amd/amd_valid.c \
+ api/advbas.c \
+ api/asnhall.c \
+ api/asnlp.c \
+@@ -104,7 +89,6 @@ bflib/scf.c \
+ bflib/scfint.c \
+ bflib/sgf.c \
+ bflib/sva.c \
+-colamd/colamd.c \
+ draft/bfd.c \
+ draft/bfx.c \
+ draft/glpapi06.c \
+@@ -202,21 +186,6 @@ simplex/spxprim.c \
+ simplex/spxprob.c \
+ simplex/spychuzc.c \
+ simplex/spychuzr.c \
+-simplex/spydual.c \
+-zlib/adler32.c \
+-zlib/compress.c \
+-zlib/crc32.c \
+-zlib/deflate.c \
+-zlib/gzclose.c \
+-zlib/gzlib.c \
+-zlib/gzread.c \
+-zlib/gzwrite.c \
+-zlib/inffast.c \
+-zlib/inflate.c \
+-zlib/inftrees.c \
+-zlib/trees.c \
+-zlib/uncompr.c \
+-zlib/zio.c \
+-zlib/zutil.c
++simplex/spydual.c
+ 
+ ## eof ##

diff --git 
a/sci-mathematics/glpk/files/glpk-4.65-fix-mysql-include-prefix.patch 
b/sci-mathematics/glpk/files/glpk-4.65-fix-mysql-include-prefix.patch
new file mode 100644
index 000..4dd6583d6de
--- /dev/null
+++ b/sci-mathematics/glpk/files/glpk-4.65-fix-my

[gentoo-commits] repo/gentoo:master commit in: sci-mathematics/glpk/

2020-03-06 Thread Michael Orlitzky
commit: ab834ffe5dc482e7e663176ffe293440a285
Author: Michael Orlitzky  gentoo  org>
AuthorDate: Fri Mar  6 21:52:04 2020 +
Commit: Michael Orlitzky  gentoo  org>
CommitDate: Sat Mar  7 02:13:25 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab834ffe

sci-mathematics/glpk: add myself and François Bissey as maintainers.

Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Michael Orlitzky  gentoo.org>

 sci-mathematics/glpk/metadata.xml | 19 +++
 1 file changed, 15 insertions(+), 4 deletions(-)

diff --git a/sci-mathematics/glpk/metadata.xml 
b/sci-mathematics/glpk/metadata.xml
index 237a45406ed..eef02da51bb 100644
--- a/sci-mathematics/glpk/metadata.xml
+++ b/sci-mathematics/glpk/metadata.xml
@@ -3,15 +3,26 @@
 
   
 robb...@gentoo.org
+  
+
+m...@gentoo.org
+  
+  
+frp.bis...@gmail.com
+François Bissey
+  
+  
+proxy-ma...@gentoo.org
+Proxy Maintainers
   
   
 sci-mathemat...@gentoo.org
 Gentoo Mathematics Project
   
   
-  The GNU Linear Programming Kit package is intended for solving
-  large-scale linear programming (LP), mixed integer programming
-  (MIP), and other related problems. It is a set of routines written
-  in ANSI C and organized in the form of a callable library. 
+The GNU Linear Programming Kit package is intended for solving
+large-scale linear programming (LP), mixed integer programming
+(MIP), and other related problems. It is a set of routines written
+in ANSI C and organized in the form of a callable library.
 
 



[gentoo-commits] repo/gentoo:master commit in: profiles/, mail-mta/opensmtpd/, mail-mta/opensmtpd/files/

2020-03-06 Thread Jason A. Donenfeld
commit: ea5bd9d4206b4e0c2c75a03337509e0d6d72ef51
Author: Jason A. Donenfeld  gentoo  org>
AuthorDate: Sat Mar  7 00:30:24 2020 +
Commit: Jason A. Donenfeld  gentoo  org>
CommitDate: Sat Mar  7 00:32:31 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea5bd9d4

mail-mta/opensmtpd: remove ancient ~6.0.3_p1 version

Closes: https://bugs.gentoo.org/710754
Package-Manager: Portage-2.3.88, Repoman-2.3.20
Signed-off-by: Jason A. Donenfeld  gentoo.org>

 mail-mta/opensmtpd/Manifest|   1 -
 .../opensmtpd-6.0.3_p1-fix-crash-on-auth.patch |  43 --
 .../files/opensmtpd-6.0.3_p1-openssl_1.1.patch | 722 -
 .../files/opensmtpd-6.0.3_p1-security-fixes.patch  | 123 
 mail-mta/opensmtpd/opensmtpd-6.0.3_p1-r3.ebuild|  78 ---
 profiles/package.mask  |   8 -
 6 files changed, 975 deletions(-)

diff --git a/mail-mta/opensmtpd/Manifest b/mail-mta/opensmtpd/Manifest
index 0c001fb94e6..ef56b7e6d94 100644
--- a/mail-mta/opensmtpd/Manifest
+++ b/mail-mta/opensmtpd/Manifest
@@ -1,2 +1 @@
-DIST opensmtpd-6.0.3p1.tar.gz 699702 BLAKE2B 
49f08e8329adc049a562b6ef7efa4c0a39cbcfe8a158cb905cfc726a7302ffe9833ccfb52041340767d55d0f2ae2087e8eac92b7359016c6c76b4d963a334558
 SHA512 
e579818a0ddbe637deb5a4e40f43eaf797783903ceac18fd89a57581b135b9e407d424e1a70ff7b4b06a0ee50bafb6e8ab2451371917887904b06ff1b55d320f
 DIST opensmtpd-6.6.4p1.tar.gz 790754 BLAKE2B 
18cc19569ae764eff3d672cbfb87df7bd00afcce93705ad128e935c0a47a246c3a6166fca7b6f844c0dd5e728492d8aeb7e0f8a8c1f5a756bf356ae9afb80852
 SHA512 
267307c91f4fcf21624b0897dfb1f5638b77da7b8d9a02211d734ed2cc5bd39ea7542ae7f200255e2945518fbe7609a0e5aa4e5c6dcb8146014f08b3845c108b

diff --git 
a/mail-mta/opensmtpd/files/opensmtpd-6.0.3_p1-fix-crash-on-auth.patch 
b/mail-mta/opensmtpd/files/opensmtpd-6.0.3_p1-fix-crash-on-auth.patch
deleted file mode 100644
index c20b5e0a0ef..000
--- a/mail-mta/opensmtpd/files/opensmtpd-6.0.3_p1-fix-crash-on-auth.patch
+++ /dev/null
@@ -1,43 +0,0 @@
-From 9b5f70b93e038df5446bd37a4adac5a0380748e7 Mon Sep 17 00:00:00 2001
-From: johannes 
-Date: Wed, 21 Feb 2018 23:57:11 +0100
-Subject: [PATCH] crypt_checkpass: include HAVE_CRYPT_H definition, add NULL
- check
-

- openbsd-compat/crypt_checkpass.c | 9 -
- 1 file changed, 8 insertions(+), 1 deletion(-)
-
-diff --git a/openbsd-compat/crypt_checkpass.c 
b/openbsd-compat/crypt_checkpass.c
-index dafd2dae..d10b3a57 100644
 a/openbsd-compat/crypt_checkpass.c
-+++ b/openbsd-compat/crypt_checkpass.c
-@@ -1,5 +1,6 @@
- /* OPENBSD ORIGINAL: lib/libc/crypt/cryptutil.c */
- 
-+#include "includes.h"
- #include 
- #ifdef HAVE_CRYPT_H
- #include 
-@@ -10,6 +11,8 @@
- int
- crypt_checkpass(const char *pass, const char *goodhash)
- {
-+  char *c;
-+
-   if (goodhash == NULL)
-   goto fail;
- 
-@@ -17,7 +20,11 @@ crypt_checkpass(const char *pass, const char *goodhash)
-   if (strlen(goodhash) == 0 && strlen(pass) == 0)
-   return 0;
- 
--  if (strcmp(crypt(pass, goodhash), goodhash) == 0)
-+  c = crypt(pass, goodhash);
-+  if (c == NULL)
-+  goto fail;
-+
-+  if (strcmp(c, goodhash) == 0)
-   return 0;
- 
- fail:

diff --git a/mail-mta/opensmtpd/files/opensmtpd-6.0.3_p1-openssl_1.1.patch 
b/mail-mta/opensmtpd/files/opensmtpd-6.0.3_p1-openssl_1.1.patch
deleted file mode 100644
index 40a62ae9251..000
--- a/mail-mta/opensmtpd/files/opensmtpd-6.0.3_p1-openssl_1.1.patch
+++ /dev/null
@@ -1,722 +0,0 @@
-Description: Enable support for OpenSSL 1.1
-Author: Sebastian Andrzej Siewior 
-Ryan Kavanagh 
-Origin: Debian
-Bug: https://github.com/OpenSMTPD/OpenSMTPD/issues/738
-Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=859544
-Forwarded: https://github.com/OpenSMTPD/OpenSMTPD/pull/825
-Last-Update: 2018-03-18

-This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
-diff --git a/openbsd-compat/libressl.c b/openbsd-compat/libressl.c
-index f4f2b52e..d06e006f 100644
 a/openbsd-compat/libressl.c
-+++ b/openbsd-compat/libressl.c
-@@ -81,14 +81,14 @@ SSL_CTX_use_certificate_chain(SSL_CTX *ctx, char *buf, 
off_t len)
-   x = ca = NULL;
- 
-   if ((in = BIO_new_mem_buf(buf, len)) == NULL) {
--  SSLerr(SSL_F_SSL_CTX_USE_CERTIFICATE_CHAIN_FILE, ERR_R_BUF_LIB);
-+  SSLerr(SSL_F_SSL_CTX_USE_CERTIFICATE_FILE, ERR_R_BUF_LIB);
-   goto end;
-   }
- 
-   if ((x = PEM_read_bio_X509(in, NULL,
--  ctx->default_passwd_callback,
--  ctx->default_passwd_callback_userdata)) == NULL) {
--  SSLerr(SSL_F_SSL_CTX_USE_CERTIFICATE_CHAIN_FILE, ERR_R_PEM_LIB);
-+  SSL_CTX_get_default_passwd_cb(ctx),
-+  SSL_CTX_get_default_passwd_cb_userdata(ctx))) == NULL) {
-+  SSLerr(SSL_F_SSL_CTX_USE_CERTIFICATE_FILE, ERR_R_PEM_LIB);
-   goto end;
-   }
- 
-@@ -99,14 +99,

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

2020-03-06 Thread Jörg Bornkessel
commit: 78de03dc358755693e6e1f8144872d5c877868de
Author: Joerg Bornkessel  gentoo  org>
AuthorDate: Fri Mar  6 22:43:32 2020 +
Commit: Jörg Bornkessel  gentoo  org>
CommitDate: Fri Mar  6 22:44:19 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78de03dc

media-video/vdr: use-flag permashift,support for acct/guid handling

for the next gentoo-vdr-scripts version
with acct/{user,group} handling
we have to change the old homedir
/var/vdr to /var/lib/vdr.
this affects also the VIDEODIR
first improvement in this version.

Package-Manager: Portage-2.3.90, Repoman-2.3.20
Signed-off-by: Joerg Bornkessel  gentoo.org>

 media-video/vdr/Manifest|   1 +
 media-video/vdr/vdr-2.4.1-r3.ebuild | 206 
 2 files changed, 207 insertions(+)

diff --git a/media-video/vdr/Manifest b/media-video/vdr/Manifest
index 645fd58bd16..715cb3e5d65 100644
--- a/media-video/vdr/Manifest
+++ b/media-video/vdr/Manifest
@@ -1,6 +1,7 @@
 DIST extpng-vdr-2.2.0-gentoo-edition-v1.patch.bz2 34664 BLAKE2B 
81b68ebe0ef4588c3676f0b7a2c766d8d4d4f754a987b3be5868f3c6eff9158d4cea8e492ca81df535e637dbdc5baff638d1fafb4163e9d9a2d0125aba17e2e1
 SHA512 
16d6fbb8201f003dfe653b6a49424b794d7e697e27ad6f2383dbe17b76712ea5a3da88a676900b84d75ff7425bf3eb9084d60a89a4598758f482dc1f013f7b3e
 DIST vdr-2.1.5-naludump-0.1.diff 21548 BLAKE2B 
f193d982d072bbba2261d7dabd82e27795b2e4d8d18ae4486d8c559e7325b87f5902def7bb313e98585331144af62597f6f025f44ca142187e724516bc32c175
 SHA512 
d9188d5bfcf0588c22dc526fc1082253a1b505b322ccfbe676b8b2c12d4471af7b605924bcea85e879c9606d5e2cecdf6a6e8819cd9b8d877e5bb9f62b91251f
 DIST vdr-2.2.0.tar.bz2 922708 BLAKE2B 
975e07d6d4c5bd13ee92be5d6a1826d6404b0c59e20fa2e30689b185a61e02d54782ad528e6a4f15e0d36806b30bcf48aa336d63adb3604e78056ff318e0fd2c
 SHA512 
183f58133915c6c0fe8ec2b88becbcb2a36418210e6dcf7931053d3771d727c3581593f9eb5c9693abf39e22e728f7b41c42079cd704610c3636ec05134ea93d
+DIST vdr-2.4-patch-for-permashift.diff 20424 BLAKE2B 
426139bd890e50e491d006445d988468441c6bf2f489d35b2b0e290c064ac87e8989cdd9a05e2befd0488300a0d4faa017ab9901152003c6b0f066cce5de
 SHA512 
f21bd6d7b883354c254e1c92d730449dad6eac8ebdd2a593c907a962c2bf3a74859d66e1418984da5b62892d7b7d170282956f15af11d7a788bc759506454ba8
 DIST vdr-2.4.0-ttxtsubs.patch.bz2 16721 BLAKE2B 
d5c3da713cd82ed8c3baccd1336d283404ebf1099116e76776c26a41ac193aa88bcb5bc2aaa8409a6d40e61c122bbc8ac0d67cb6ff8f83b0dbaea392101643b9
 SHA512 
99f2cab268d3f6af11607333a35583e5802f90636712e0429eb89eb66ccea7b1fb16a0d3ed2ff266e6f87c338bf77f97028a372eef5e6116b27220a5670a6d31
 DIST vdr-2.4.1.tar.bz2 940623 BLAKE2B 
6fa7858e1c0fc25d3332d20347b30515276fc2b54905f32109dfa7f59e4e0c8a83687be405fac063a673c89d77e191f62162b1bd0ed6ee179d32a27f73076fb3
 SHA512 
b851ebf626de1a6aea11ee9c0cd87d78ebebdc34128925d2027a7030db1262064edb8818566a87ce22d37a9bd2b4f0b4ff1aad8dd251061d9ff972ffe0cf022d
 DIST vdr-2.4.1_mainmenuhook-1.0.1.patch.bz2 1463 BLAKE2B 
2be3597a273a92d02be0d072e3d74b39275cbbe17d22e570f416d42c46b53f43209498e569142a2cc357e5f7176d2454cb2a86d0822b29cca913eab2ae9cc27f
 SHA512 
9d3eb501fa06ff5b03361ef65c8ddeeba5f37493cc0edc2d4f54e200e48e17607957fa95bd1540f028bc9a98ad6f42b4d38cf79e9ce971de36bed30def108759

diff --git a/media-video/vdr/vdr-2.4.1-r3.ebuild 
b/media-video/vdr/vdr-2.4.1-r3.ebuild
new file mode 100644
index 000..288169d7293
--- /dev/null
+++ b/media-video/vdr/vdr-2.4.1-r3.ebuild
@@ -0,0 +1,206 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit eutils flag-o-matic multilib toolchain-funcs
+
+DESCRIPTION="Video Disk Recorder - turns a pc into a powerful set top box for 
DVB"
+HOMEPAGE="http://www.tvdr.de/";
+SRC_URI="ftp://ftp.tvdr.de/vdr/${P}.tar.bz2
+   mainmenuhooks? ( 
http://vdr.websitec.de/download/${PN}/${P}/${P}_mainmenuhook-1.0.1.patch.bz2 )
+   menuorg? ( 
https://projects.vdr-developer.org/projects/plg-menuorg/repository/revisions/master/raw/vdr-patch/vdr-menuorg-2.3.x.diff
 )
+   naludump? ( 
http://www.udo-richter.de/vdr/files/vdr-2.1.5-naludump-0.1.diff )
+   pinplugin? ( 
http://vdr.websitec.de/download/${PN}/${P}/${P}_pinplugin.patch.bz2 )
+   ttxtsubs? ( 
http://vdr.websitec.de/download/${PN}/${P}/${PN}-2.4.0-ttxtsubs.patch.bz2 )
+   permashift? ( 
https://raw.githubusercontent.com/eikesauer/Permashift/master/vdr-2.4-patch-for-permashift.diff
 )"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86"
+IUSE="bidi debug demoplugins html keyboard mainmenuhooks menuorg naludump 
pinplugin permashift systemd ttxtsubs verbose"
+
+COMMON_DEPEND="
+   virtual/jpeg:*
+   sys-libs/libcap
+   >=media-libs/fontconfig-2.4.2
+   >=media-libs/freetype-2"
+DEPEND="${COMMON_DEPEND}
+   >=virtual/linuxtv-dvb-headers-5.3"
+RDEPEND="${COMMON_DEPEND}
+   dev-lang/perl
+   media-tv/gentoo-vdr-scripts
+   media-fonts/corefonts
+   bidi? ( dev-libs/fribidi )
+   systemd? ( sys

[gentoo-commits] repo/gentoo:master commit in: media-plugins/vdr-permashift/

2020-03-06 Thread Jörg Bornkessel
commit: 9e39103502886c55d99df28a0cd7cd8d9932b8d0
Author: Joerg Bornkessel  gentoo  org>
AuthorDate: Fri Mar  6 22:34:33 2020 +
Commit: Jörg Bornkessel  gentoo  org>
CommitDate: Fri Mar  6 22:44:17 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e391035

media-plugins/vdr-permashift: bump to pre release

this version supports
media-video/vdr-2.4.x with readded use-flag permashift

Package-Manager: Portage-2.3.90, Repoman-2.3.20
Signed-off-by: Joerg Bornkessel  gentoo.org>

 media-plugins/vdr-permashift/Manifest  |  1 +
 .../vdr-permashift-1.0.4_pre20200301.ebuild| 26 ++
 2 files changed, 27 insertions(+)

diff --git a/media-plugins/vdr-permashift/Manifest 
b/media-plugins/vdr-permashift/Manifest
index 01870946603..a2183e798b1 100644
--- a/media-plugins/vdr-permashift/Manifest
+++ b/media-plugins/vdr-permashift/Manifest
@@ -1 +1,2 @@
 DIST vdr-permashift-1.0.1.tgz 49184 BLAKE2B 
2342f0d071afd7f38b6109a514f124760aaf0058c9ef974974ee31f282a5ede8ee3636431e0c7e30a39f2da5ec966471b9c6ca073a8a13054052fbc8418fb3dc
 SHA512 
b69e492e42f9ba2123f45e5ea1de8db937c3569a35da53429a4c97222e8a1aff0d4a5ab22920e65796d173e2963a9feda02a5a558309784b6296cd041352f252
+DIST vdr-permashift-1.0.4_pre20200301.tar.gz 52894 BLAKE2B 
710a8373fb1bfb8d51eabb43db56c79a29c3fbd34f730f02bc73bfde6f1da68a3fdae221e06f71c25108bba6b5dc87b0a975d6dd62beef64738649c0e796a191
 SHA512 
a9e78df00d43ef692092ea299e13520ebc71766a7ebdbf3c0963e535014c837b3556b2fa81b444680830c703b56f459ef2ec01904282c0f34b80e20cba96a5f8

diff --git 
a/media-plugins/vdr-permashift/vdr-permashift-1.0.4_pre20200301.ebuild 
b/media-plugins/vdr-permashift/vdr-permashift-1.0.4_pre20200301.ebuild
new file mode 100644
index 000..94c32694d30
--- /dev/null
+++ b/media-plugins/vdr-permashift/vdr-permashift-1.0.4_pre20200301.ebuild
@@ -0,0 +1,26 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit vdr-plugin-2
+
+# commit 2020/03/01
+GIT_VERSION="f3541d7c0e3e201daf06a49304db0a0d7d5f8dd1"
+
+DESCRIPTION="VDR Plugin: permanent timeshift by recording live TV on RAM"
+HOMEPAGE="http://ein-eike.de/vdr-plugin-permashift-english/";
+SRC_URI="https://github.com/eikesauer/Permashift/archive/${GIT_VERSION}.tar.gz 
-> ${PF}.tar.gz"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+DEPEND="media-video/vdr[permashift]"
+RDEPEND="${DEPEND}"
+
+S="${WORKDIR}/Permashift-${GIT_VERSION}"
+
+QA_FLAGS_IGNORED="
+   usr/lib/vdr/plugins/libvdr-.*
+   usr/lib64/vdr/plugins/libvdr-.*"



[gentoo-commits] repo/gentoo:master commit in: app-emulation/xen/

2020-03-06 Thread Yixun Lan
commit: 4e1a0667c9be4b76c4eef62be717be4ba288a147
Author: Tomáš Mózes  gmail  com>
AuthorDate: Fri Mar  6 06:40:30 2020 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Fri Mar  6 22:33:09 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e1a0667

app-emulation/xen: warn about credit2 scheduler instability

Bug: https://bugs.gentoo.org/710140
Closes: https://github.com/gentoo/gentoo/pull/14842
Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Tomáš Mózes  gmail.com>
Signed-off-by: Yixun Lan  gentoo.org>

 app-emulation/xen/xen-4.12.2.ebuild| 9 +
 app-emulation/xen/xen-4.13.0-r1.ebuild | 9 +
 2 files changed, 18 insertions(+)

diff --git a/app-emulation/xen/xen-4.12.2.ebuild 
b/app-emulation/xen/xen-4.12.2.ebuild
index ec19a8729db..078c4ede678 100644
--- a/app-emulation/xen/xen-4.12.2.ebuild
+++ b/app-emulation/xen/xen-4.12.2.ebuild
@@ -153,4 +153,13 @@ pkg_postinst() {
elog "You can optionally block the installation of /boot/xen-syms by an 
entry"
elog "in folder /etc/portage/env using the portage's feature 
INSTALL_MASK"
elog "e.g. echo ${msg} > /etc/portage/env/xen.conf"
+
+   ewarn
+   ewarn "Xen 4.12+ changed the default scheduler to credit2 which can 
cause"
+   ewarn "domU lockups on multi-cpu systems. The legacy credit scheduler 
seems"
+   ewarn "to work fine."
+   ewarn
+   ewarn "Add sched=credit to xen command line options to use the legacy 
scheduler."
+   ewarn
+   ewarn 
"https://wiki.gentoo.org/wiki/Xen#Xen_domU_hanging_with_Xen_4.12.2B";
 }

diff --git a/app-emulation/xen/xen-4.13.0-r1.ebuild 
b/app-emulation/xen/xen-4.13.0-r1.ebuild
index 2c03982f660..7da3187cee2 100644
--- a/app-emulation/xen/xen-4.13.0-r1.ebuild
+++ b/app-emulation/xen/xen-4.13.0-r1.ebuild
@@ -153,4 +153,13 @@ pkg_postinst() {
elog "You can optionally block the installation of /boot/xen-syms by an 
entry"
elog "in folder /etc/portage/env using the portage's feature 
INSTALL_MASK"
elog "e.g. echo ${msg} > /etc/portage/env/xen.conf"
+
+   ewarn
+   ewarn "Xen 4.12+ changed the default scheduler to credit2 which can 
cause"
+   ewarn "domU lockups on multi-cpu systems. The legacy credit scheduler 
seems"
+   ewarn "to work fine."
+   ewarn
+   ewarn "Add sched=credit to xen command line options to use the legacy 
scheduler."
+   ewarn
+   ewarn 
"https://wiki.gentoo.org/wiki/Xen#Xen_domU_hanging_with_Xen_4.12.2B";
 }



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

2020-03-06 Thread Craig Andrews
commit: 0e508f8e2eca62003e28f8243c369e27dc519dc2
Author: Craig Andrews  gentoo  org>
AuthorDate: Fri Mar  6 21:54:17 2020 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Fri Mar  6 22:14:49 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e508f8e

net-libs/quiche: Remove criterion

See: https://github.com/cloudflare/quiche/commit/4100ce
Package-Manager: Portage-2.3.92, Repoman-2.3.20
Signed-off-by: Craig Andrews  gentoo.org>

 net-libs/quiche/quiche-.ebuild | 2 --
 1 file changed, 2 deletions(-)

diff --git a/net-libs/quiche/quiche-.ebuild 
b/net-libs/quiche/quiche-.ebuild
index c739b541cea..6b2fceb3dbb 100644
--- a/net-libs/quiche/quiche-.ebuild
+++ b/net-libs/quiche/quiche-.ebuild
@@ -20,8 +20,6 @@ cc-1.0.49
 cfg-if-0.1.10
 clap-2.33.0
 cmake-0.1.42
-criterion-0.3.0
-criterion-plot-0.4.0
 crossbeam-deque-0.7.2
 crossbeam-epoch-0.8.0
 crossbeam-queue-0.2.1



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

2020-03-06 Thread Andreas K. Hüttel
commit: 455d026a8bc71ef723a440f71c1a55fb695d3746
Author: Andreas K. Huettel  gentoo  org>
AuthorDate: Fri Mar  6 21:01:48 2020 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Fri Mar  6 21:03:20 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=455d026a

dev-perl/Lab-Measurement: Version bump

Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Andreas K. Huettel  gentoo.org>

 .../{Lab-Measurement-.ebuild => Lab-Measurement-3.692.ebuild} | 4 ++--
 dev-perl/Lab-Measurement/Lab-Measurement-.ebuild  | 4 ++--
 dev-perl/Lab-Measurement/Manifest | 1 +
 3 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/dev-perl/Lab-Measurement/Lab-Measurement-.ebuild 
b/dev-perl/Lab-Measurement/Lab-Measurement-3.692.ebuild
similarity index 97%
copy from dev-perl/Lab-Measurement/Lab-Measurement-.ebuild
copy to dev-perl/Lab-Measurement/Lab-Measurement-3.692.ebuild
index 5dbfeb19665..4bf9cc43266 100644
--- a/dev-perl/Lab-Measurement/Lab-Measurement-.ebuild
+++ b/dev-perl/Lab-Measurement/Lab-Measurement-3.692.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -24,7 +24,7 @@ SLOT="0"
 IUSE="test"
 RESTRICT="!test? ( test )"
 
-DZIL_PLUGINS=( Git SurgicalPodWeaver RPM AuthorsFromGit )
+DZIL_PLUGINS=( Git PodWeaver AuthorsFromGit )
 
 RDEPEND="
virtual/perl-Carp

diff --git a/dev-perl/Lab-Measurement/Lab-Measurement-.ebuild 
b/dev-perl/Lab-Measurement/Lab-Measurement-.ebuild
index 5dbfeb19665..4bf9cc43266 100644
--- a/dev-perl/Lab-Measurement/Lab-Measurement-.ebuild
+++ b/dev-perl/Lab-Measurement/Lab-Measurement-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -24,7 +24,7 @@ SLOT="0"
 IUSE="test"
 RESTRICT="!test? ( test )"
 
-DZIL_PLUGINS=( Git SurgicalPodWeaver RPM AuthorsFromGit )
+DZIL_PLUGINS=( Git PodWeaver AuthorsFromGit )
 
 RDEPEND="
virtual/perl-Carp

diff --git a/dev-perl/Lab-Measurement/Manifest 
b/dev-perl/Lab-Measurement/Manifest
index b5f7296f55a..35be7e69d81 100644
--- a/dev-perl/Lab-Measurement/Manifest
+++ b/dev-perl/Lab-Measurement/Manifest
@@ -1,2 +1,3 @@
 DIST Lab-Measurement-3.661.tar.gz 593060 BLAKE2B 
3dead20cc9f01e058c9f1f5f366a83ec63af7179fb64d697aab8329d1d27796620ad7f583dd537805533b9ac2caa4c8be343792e7fda4d2c29bdc3dc48744fea
 SHA512 
e008ef335b6cd929ecbeac1144ce0e0a57aca734238c423652e8908fe06ae67c44a8475ad67420f180ce2af2d9fed83a5438590e4b113fd90aba227165f6928f
 DIST Lab-Measurement-3.682.tar.gz 619504 BLAKE2B 
58e82472ee7811d787ca0f1b691c73a1f52e2bafbb9e19dc8989c58d58fea8f2a58d105cf5b74d7f6d627e8d9106060476f7c683281db52a10e8dbd70fec489f
 SHA512 
fd4fcd6e1e321788429f46593fc86c2cc705437a7511021636f70018e565cfc5647d9a2fb6adbf6d23858f7d0e9b61356b4ce550f94481559c3285a85442994d
+DIST Lab-Measurement-3.692.tar.gz 609567 BLAKE2B 
0e73254415927cf4a6454aa33ffe5408d23b2f7ab0773fe35b12096879bbd618eb856cb99b8611d61a72926d55d4c8a2ef1aecc354b6246fa0ee27f08bff6b3f
 SHA512 
9a94a47af43e479f28aa7c8243cd2e79f27df9f7a809fffaba58c42031aa858a7f7daa26f3f0b7d648eaa721d8163d1d840150089bba4bfa0f3cfd9a9b2338d4



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

2020-03-06 Thread Andreas K. Hüttel
commit: 4d7c6a5189a1c06d72f8d9d57bfa923a7029e549
Author: Andreas K. Huettel  gentoo  org>
AuthorDate: Fri Mar  6 21:02:17 2020 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Fri Mar  6 21:03:23 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d7c6a51

dev-perl/Lab-Measurement: Remove old

Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Andreas K. Huettel  gentoo.org>

 .../Lab-Measurement/Lab-Measurement-3.661.ebuild   | 148 -
 dev-perl/Lab-Measurement/Manifest  |   1 -
 2 files changed, 149 deletions(-)

diff --git a/dev-perl/Lab-Measurement/Lab-Measurement-3.661.ebuild 
b/dev-perl/Lab-Measurement/Lab-Measurement-3.661.ebuild
deleted file mode 100644
index 8f24c91af66..000
--- a/dev-perl/Lab-Measurement/Lab-Measurement-3.661.ebuild
+++ /dev/null
@@ -1,148 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DIST_EXAMPLES=( "examples/*" )
-
-if [[ "${PV}" != "" ]]; then
-   DIST_VERSION=${PV%.0}
-   DIST_AUTHOR="AKHUETTEL"
-   KEYWORDS="~amd64 ~x86"
-   inherit perl-module
-else
-   EGIT_REPO_URI="https://github.com/lab-measurement/Lab-Measurement.git";
-   EGIT_BRANCH="master"
-   EGIT_CHECKOUT_DIR="${WORKDIR}/${PN}-git"
-   inherit perl-module git-r3
-fi
-
-DESCRIPTION="Measurement control and automation with Perl"
-HOMEPAGE="https://www.labmeasurement.de";
-
-SLOT="0"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-DZIL_PLUGINS=( Git SurgicalPodWeaver RPM AuthorsFromGit )
-
-RDEPEND="
-   virtual/perl-Carp
-   dev-perl/Class-ISA
-   >=dev-perl/Class-Method-Modifiers-2.110.0
-   >=dev-perl/Clone-0.310.0
-   virtual/perl-Data-Dumper
-   virtual/perl-Encode
-   >=dev-perl/Exception-Class-1.0.0
-   virtual/perl-Exporter
-   virtual/perl-File-Path
-   virtual/perl-File-Spec
-   virtual/perl-Getopt-Long
-   dev-perl/Hook-LexWrap
-   virtual/perl-IO
-   >=dev-perl/IO-Socket-Timeout-0.320.0
-   dev-perl/List-MoreUtils
-   virtual/perl-Scalar-List-Utils
-   virtual/perl-Math-Complex
-   >=virtual/perl-Module-Load-0.260.0
-   >=dev-perl/Moose-2.121.300
-   >=dev-perl/MooseX-Params-Validate-0.180.0
-   dev-perl/MooseX-StrictConstructor
-   >=dev-perl/PDL-2.7.0
-   dev-perl/PDL-Graphics-Gnuplot
-   >=dev-perl/Role-Tiny-1.3.4
-   virtual/perl-Socket
-   dev-perl/Statistics-Descriptive
-   virtual/perl-Storable
-   >=dev-perl/TermReadKey-2.300.0
-   virtual/perl-Thread-Semaphore
-   virtual/perl-Time-HiRes
-   dev-perl/Time-Monotonic
-   virtual/perl-Time-Piece
-   >=dev-perl/Try-Tiny-0.220.0
-   >=dev-perl/YAML-LibYAML-0.410.0
-   virtual/perl-autodie
-   >=dev-perl/namespace-autoclean-0.200.0
-   virtual/perl-parent
-   sci-visualization/gnuplot
-   dev-perl/Lab-VXI11
-   dev-perl/USB-TMC
-"
-DEPEND="
-   ${RDEPEND}
-   virtual/perl-ExtUtils-MakeMaker
-   test? (
-   dev-perl/File-Slurper
-   virtual/perl-File-Temp
-   dev-perl/Test-Fatal
-   dev-perl/Test-File
-   virtual/perl-Test-Simple
-   dev-perl/Text-Diff
-   dev-perl/aliased
-   )
-"
-if [[ "${PV}" == "" ]]; then
-   DEPEND="${DEPEND}
-   dev-perl/Dist-Zilla"
-   for dzp in "${DZIL_PLUGINS[@]}" ; do
-   DEPEND="${DEPEND}
-   dev-perl/Dist-Zilla-Plugin-${dzp}"
-   done
-fi
-
-src_unpack() {
-   if [[ "${PV}" == "" ]]; then
-   git-r3_src_unpack
-   mkdir -p "${S}" || die "Can't make ${S}"
-   else
-   default
-   fi
-}
-
-dzil_to_distdir() {
-   local dzil_root dest has_missing modname dzil_version
-   dzil_root="$1"
-   dest="$2"
-
-   cd "${dzil_root}" || die "Can't enter git workdir '${dzil_root}'";
-
-   dzil_version="$(dzil version)" || die "Error invoking 'dzil version'"
-   einfo "Generating CPAN dist with ${dzil_version}"
-
-   has_missing=""
-
-   einfo "Checking dzil authordeps"
-   while IFS= read -d $'\n' -r modname; do
-   if [[ -z "${has_missing}" ]]; then
-   has_missing=1
-   eerror "'dzil authordeps' indicates missing build 
dependencies"
-   eerror "These will prevent building, please report a 
bug"
-   eerror "Missing:"
-   fi
-   eerror "  ${modname}"
-   done < <( dzil authordeps --missing --versions )
-
-   [[ -z "${has_missing}" ]] || die "Satisfy all missing authordeps first"
-
-   einfo "Checking dzil build deps"
-   while IFS= read -d $'\n' -r modname; do
-   if [[ -z "${has_missing}" ]]; then
-   has_missing=1
-   ewarn "'dzil listdeps' indicates 

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

2020-03-06 Thread William Hubbs
commit: 70700600ac5c40475a00d1c127b65261ba2e3587
Author: William Hubbs  sony  com>
AuthorDate: Fri Mar  6 20:46:21 2020 +
Commit: William Hubbs  gentoo  org>
CommitDate: Fri Mar  6 20:57:05 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=70700600

app-misc/go-jira: 1.0.23 bump

Signed-off-by: William Hubbs  gentoo.org>

 app-misc/go-jira/Manifest  |  93 +
 app-misc/go-jira/go-jira-1.0.23.ebuild | 123 +
 2 files changed, 216 insertions(+)

diff --git a/app-misc/go-jira/Manifest b/app-misc/go-jira/Manifest
index d886f9710d8..ea3bd33f64a 100644
--- a/app-misc/go-jira/Manifest
+++ b/app-misc/go-jira/Manifest
@@ -1,3 +1,76 @@
+DIST github.com%2F!masterminds%2Fgoutils%2F@v%2Fv1.1.0.mod 38 BLAKE2B 
6bb3112d9b8ba6f9cf4d0c4ee376da93bf21b139563a211c51ee44a302caf9670181cd27f7e21c6fd05bf87c9273daa726c942749ffb18b623d17c7170aba6b1
 SHA512 
a3c38d1db1472c71e1c47b936d47ac2ecfb49519c2e78dd453d234f1a6153bf007eb96fabe0be7dcbd868160a3869e854ec6776356b9011fe7ef51a634b30aad
+DIST github.com%2F!masterminds%2Fgoutils%2F@v%2Fv1.1.0.zip 21259 BLAKE2B 
6ebd8152517cfcd5e883bc56dbb3d347fce7ac09589e8ad5a96af8d39c5e18b284e616cb1a6f6641084a34c07e59d4ded65b600dcc9041c9af59d26afd368993
 SHA512 
5800ddecf3717ea31dd991068c785053b9c6cb5ffdbc97b681bcce4219634362acc7811eec766117f0087536abaf0eaa22b8d66a44103a1644e5907e3174dfae
+DIST github.com%2F!masterminds%2Fsemver%2F@v%2Fv1.5.0.mod 37 BLAKE2B 
60b2ec6aeaaece8fbe3ca154b432f677dbb46672fdbc95b503f613190df535c7254900c9cfaa3319ab2d7562513640c7cc9fe650d75d97dc09fe84a17e359a86
 SHA512 
4f01cd11b3ae6f26266154ee37e7a4084e61e865fa9427187a24a02631415f2367a4afad83b4e1cf772b263aaf8f180b4b177e30ae884cdcab239919c9e08bbc
+DIST github.com%2F!masterminds%2Fsemver%2F@v%2Fv1.5.0.zip 38193 BLAKE2B 
13e82289c645e2a34250f8822274767c45c79bd6e54f505f20995c0c17a83b807be68b490c481fc9595637dbf2e0da4494cc230763a7138658a11aca9cc6b3f1
 SHA512 
4500f7ea6c626f82689009f5439d541a048918a986adb2d5e2d629fa96d2877783a33bb0c059a510788722a8ebf324c6c6a7ebc23174d1d9e7842cf5da55a96b
+DIST github.com%2F!masterminds%2Fsprig%2F@v%2Fv2.21.0+incompatible.mod 36 
BLAKE2B 
39effbee6cce58e89a4f700e32424a1353ae2c4410579a0cdccce4e5e44cb2e8f0bf9c5419eb199628b1be549d4c3deb890a3675579997096ace6393ab5267a8
 SHA512 
86c3285d609dcf781e8ac5d63a6d320af0cee0465e7071caa925e5c7cb259f46451b570c1a6c122ebd6b099e2fc2a5ed4bf6da7fff906a62709982649cbb9a72
+DIST github.com%2F!masterminds%2Fsprig%2F@v%2Fv2.21.0+incompatible.zip 58411 
BLAKE2B 
bad6282c6fb208c8730da8df64ebf019613016c67118d3c4cb2f38fee5d78ff4bafe923887bb7cb9dc0cdb301df77471904933786584834c01a0a41efdb32b7e
 SHA512 
6e26de6711a9e02c194afa15badbb03c378954688b07519cc9fd8045419ddb3e0b85d4dbf6aaf8de33b54b5de653db87c744bd37682021bd393f8319d6308894
+DIST 
github.com%2F!netflix%2Fgo-expect%2F@v%2Fv0.0.0-20180928190340-9d1f4485533b.mod 
36 BLAKE2B 
94171fec75b4e45d40bf820417400401971e3f18eb68588d15466e709097607b89ba18c8d8b6d2d658e4f718ab0662cc605c76c955464d9e6d45609945f5
 SHA512 
a1e0fa80fdf59962a05f1f6b1232c17f301010ada93a8628a89ea187de325c75f7d85359306c613371552671ffef2e513938e2d2ff57731dd2b226a54f87049d
+DIST 
github.com%2F!netflix%2Fgo-expect%2F@v%2Fv0.0.0-20180928190340-9d1f4485533b.zip 
23443 BLAKE2B 
6188548df580d0131c8d5cc15857f6651a052493a54d80b1b9329a1eb50edf847487c6822649a67041e0491d0410bd1b73f6f86f187a255a0f6a0c2183c30a14
 SHA512 
b2f2369103ff57572895a6d9294826c494c93976ff30ff4ed5e0876ad700fa48a7366bf159d81b6bc7bf46ca15def81678f77405d696607aea4cc01a677709ed
+DIST 
github.com%2Falecthomas%2Ftemplate%2F@v%2Fv0.0.0-20160405071501-a0175ee3bccc.mod
 38 BLAKE2B 
2e1a897393e3527f0f82e6ab9baf62558d9cf54b56ada5d79aa1b206128de30395d9082bc600c4aa2a17e81095e429cc5874de950478545319ea0b867de7
 SHA512 
072ca7ba3d5ca815f58848db201002cc572d95334aeacfe44cb226505ad20d82ce06eb2ee059650912ae499db6291822c583296cb65a66e54adce62d6d850929
+DIST 
github.com%2Falecthomas%2Ftemplate%2F@v%2Fv0.0.0-20160405071501-a0175ee3bccc.zip
 66023 BLAKE2B 
c023de8e6a5f0b13a7ad1484f21f04643782d802becae77f247709f0c16ab8aff7caf748736561138448efe1cd52c0ac1903b22b92ec56efe817935ccd45ff22
 SHA512 
356c87eec65f0dc8a680b7a19e888d87fb8c808ec675501df635560fd5d3b57da36ecc2cd9eeb4a5e454c5564d4cf1a062b47b7a050e116b57c87afbe020eb53
+DIST 
github.com%2Falecthomas%2Funits%2F@v%2Fv0.0.0-20151022065526-2efee857e7cf.mod 
35 BLAKE2B 
873b4b9c8491117a0b99bcc183ae96fc7e392c68d7271b73b5d7876574a5c7d67580425b35445ff2fff326c5cc7f328326d5d11946699c213cb2b84e8a9a0aad
 SHA512 
7f23b8c5622c02b295646c7baf6f2ea3dd01e11e18ac9c263b853c7f771f5d098d8bcb75971f0cdc33d1c4765b563f3382ec5dc4bf20010065c3f1bc94e93175
+DIST 
github.com%2Falecthomas%2Funits%2F@v%2Fv0.0.0-20151022065526-2efee857e7cf.zip 
5176 BLAKE2B 
58fdc8010b4ee8363336ef720c8ef2d126c2b7dd79357ca4f99a1094957965544430420f6ae4155490f75242cd7a7cd20993a9ae15087ccdf33327c551caff59
 SHA512 
0dd4cbe03b224bfe68d00d121f758796f6e63b9617261bc7d8f6ad1ef9878976b8eae5eadc2f6abee28670a83e6925596f4d35bea529

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

2020-03-06 Thread Joonas Niilola
commit: 7c3e26e1fa234fd71aba43651dfce86b28adc79f
Author: Joonas Niilola  gentoo  org>
AuthorDate: Fri Mar  6 20:00:18 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Fri Mar  6 20:00:43 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c3e26e1

sys-kernel/pf-sources: bump to 5.5-pf6

Signed-off-by: Joonas Niilola  gentoo.org>

 sys-kernel/pf-sources/Manifest |  1 +
 sys-kernel/pf-sources/pf-sources-5.5_p6.ebuild | 67 ++
 2 files changed, 68 insertions(+)

diff --git a/sys-kernel/pf-sources/Manifest b/sys-kernel/pf-sources/Manifest
index d8763252542..441f7995f2b 100644
--- a/sys-kernel/pf-sources/Manifest
+++ b/sys-kernel/pf-sources/Manifest
@@ -14,3 +14,4 @@ DIST pf-sources-5.5_p2.patch 657945 BLAKE2B 
96acd27211f938605ff14b0588388b786069
 DIST pf-sources-5.5_p3.patch 1305735 BLAKE2B 
3b124c3fe3949ea18242558d57672f4f9f1e854f0c7351cbfc71ae2783028f7e170df0a8cde55692e87a77915e85decdd91e34105b1685dc0c6718c211d7b596
 SHA512 
c6915878e5d6347af89ea515ce66b14d3ae511b37774b8e1a277c5154dc9a3398731aa4da838dbf42fe0945000fc329f63a62b60d0b42acc5d1b843c5d614a77
 DIST pf-sources-5.5_p4.patch 1489666 BLAKE2B 
3906d23f42d4943acf3e75a5b47d94b808417338cffbf8e04dad825387188be678afa3eb7d264c687e483b91b82402370a2df7e72c82294cffc39d4a7c0429b5
 SHA512 
b0c9cad6a375205c65d32d435efede2dbb98cd6e077aa7ef4d0d33e9735f3937980c371b87a76d5595426b3dce3606bacdb69eb1c8baf14d435e2c9190035bc2
 DIST pf-sources-5.5_p5.patch 2147102 BLAKE2B 
0f6aee4d3e59386e3acdf67ab7f931e45acb3d6d1b8aa39a914875da1bde2733d5b4bfc601635280f7f6fd0dcfbf1c6cdd77061a3e4230b128896da829b9e495
 SHA512 
7d60c3a18bec8642cc13594bdbb82c684d78d62636f9bbb9f2e791f7695476420c6d80256a4157a44e61f9d85c9405dd398587f935c33c77b8a2b92538855037
+DIST pf-sources-5.5_p6.patch 2597110 BLAKE2B 
7ab0a9bb5b1787cb2488e418bc3b45edf2348e60f118f90e47025d540367a93a49c87fd2362fc3bb3e84d89bd8d0c2b8f63c6f79e969813ce398578bdef9bcc2
 SHA512 
5530fd6e874ee5f0ac03e558c475790ac4e0ff79e98aa2df272d223d9a3cebf49a1e90a08751a37b694cd6b643040d0ececeea66a7a855194fbd33b448cdf3c9

diff --git a/sys-kernel/pf-sources/pf-sources-5.5_p6.ebuild 
b/sys-kernel/pf-sources/pf-sources-5.5_p6.ebuild
new file mode 100644
index 000..2a683a5287d
--- /dev/null
+++ b/sys-kernel/pf-sources/pf-sources-5.5_p6.ebuild
@@ -0,0 +1,67 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+# Define what default functions to run
+ETYPE="sources"
+
+# No 'experimental' USE flag provided, but we still want to use genpatches
+K_EXP_GENPATCHES_NOUSE="1"
+
+# Just get basic genpatches, -pf patch set already includes vanilla-linux
+# updates
+K_GENPATCHES_VER="1"
+
+# -pf already sets EXTRAVERSION to kernel Makefile
+K_NOSETEXTRAVERSION="1"
+
+# Not supported by the Gentoo security team
+K_SECURITY_UNSUPPORTED="1"
+
+# We want the very basic patches from gentoo-sources, experimental patch is
+# already included in pf-sources
+K_WANT_GENPATCHES="base extras"
+
+inherit eutils kernel-2
+detect_version
+
+DESCRIPTION="Linux kernel fork that includes the pf-kernel patchset and 
Gentoo's genpatches"
+HOMEPAGE="https://gitlab.com/post-factum/pf-kernel/-/wikis/README
+   https://dev.gentoo.org/~mpagano/genpatches/";
+SRC_URI="${KERNEL_URI}
+   
https://github.com/pfactum/pf-kernel/compare/v${PV/_p*/}...v${PV/_p*/}-pf${PV/*_p/}.diff
 -> ${P}.patch
+   
https://dev.gentoo.org/~mpagano/genpatches/tarballs/genpatches-${PV/_p*/}-${K_GENPATCHES_VER}.base.tar.xz
+   
https://dev.gentoo.org/~mpagano/genpatches/tarballs/genpatches-${PV/_p*/}-${K_GENPATCHES_VER}.extras.tar.xz";
+
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+
+S="${WORKDIR}/linux-${PVR}-pf"
+
+PATCHES=( "${DISTDIR}/${P}.patch" )
+
+K_EXTRAEINFO="For more info on pf-sources and details on how to report 
problems,
+   see: ${HOMEPAGE}."
+
+pkg_setup() {
+   ewarn ""
+   ewarn "${PN} is *not* supported by the Gentoo Kernel Project in any 
way."
+   ewarn "If you need support, please contact the pf developers directly."
+   ewarn "Do *not* open bugs in Gentoo's bugzilla unless you have issues 
with"
+   ewarn "the ebuilds. Thank you."
+   ewarn ""
+
+   kernel-2_pkg_setup
+}
+
+src_prepare() {
+   default
+   kernel-2_src_prepare
+}
+
+pkg_postinst() {
+   kernel-2_pkg_postinst
+
+   elog "Optional features:"
+   optfeature "Userspace KSM helper" sys-process/uksmd
+}



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

2020-03-06 Thread Michał Górny
commit: 104ae8d0fa47e819c5fc2233b5882bd2c48ae525
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Mar  6 12:24:43 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Mar  6 19:55:38 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=104ae8d0

sys-kernel/vanilla-kernel: Bump to 5.5.8

Signed-off-by: Michał Górny  gentoo.org>

 sys-kernel/vanilla-kernel/Manifest |  1 +
 .../vanilla-kernel/vanilla-kernel-5.5.8.ebuild | 65 ++
 2 files changed, 66 insertions(+)

diff --git a/sys-kernel/vanilla-kernel/Manifest 
b/sys-kernel/vanilla-kernel/Manifest
index d49463ac55e..dfb763f0440 100644
--- a/sys-kernel/vanilla-kernel/Manifest
+++ b/sys-kernel/vanilla-kernel/Manifest
@@ -9,5 +9,6 @@ DIST linux-5.4.24.tar.xz 109481252 BLAKE2B 
8124547a1be476b61612d22f856627ed0a70e
 DIST linux-5.5.5-arch1.amd64.config 243885 BLAKE2B 
088e76a9981a64cd6163667fd09cc02148f15cc53812a429d1f5e22dc893823f57041e581ec957f38504c1fbb5aa0c7886847d1ea4cdc44d5ab245dcc304edc3
 SHA512 
e6958e1fd35e2a900fa6c81e68e35b42496e245829b8bfd85d9d351dcdf8bbea93d25a0edf74871beababb4ba28cd7a731e589e68e047ac972d973ea8c20d3ac
 DIST linux-5.5.6-arch1.i686.config 243301 BLAKE2B 
c5fdd9dc2a0baed1ea421faa8f254d6ece47e89b78fc4c25c38369b53acc1f954978f2f86eda23b77d20a35096a596944f9c433db66008278ed2b8140823ce62
 SHA512 
b2d75bb1826a4dfad10aa5b6fa9cce2684d5de2dabc6da165e192e5a33cbd6eeaff4d7f236e074f4c099830e01e767bd6bc14a70d644057dce59288ae9704877
 DIST linux-5.5.7.tar.xz 110727036 BLAKE2B 
25a0c09a2a8b2ff8762dcf29dc326339537a49996b232c1568de036475a3afb62406fcf85c4357a8fa32088fdb7f868c46ff13a6fa3c2c554b8717c7fbe57712
 SHA512 
a6f4f171ed041a556378dd037de309243272dfa5a51268755d931e75df1358ed970af0a26e3bb4fe64c75f02318a7d0e497e3e9e6a4d10ab9d2d65e958670754
+DIST linux-5.5.8.tar.xz 110741748 BLAKE2B 
c7f017bff5beeaea947a93a97b8f0e0dc137e5df3e7b342ef4dbb0336072aadb16bf22a2cb777bf82627dd100378b4fde00eecfdd6ac30b41b4fa2ce32abc8f9
 SHA512 
0aecbfaae033834db85d17349aeb22d62168244eb2a5db627c7bcab8a2800dfae6e21dda29efb29c3d78fae99ef673d22471ea433098a870113e2db67252a093
 DIST tinycorelinux-10.1-amd64.qcow2 16842752 BLAKE2B 
e013e76503c335739a9623c0901ca791937a0e6b177854535cadec1e2c2cd2df588283ed3128cf652595f32264fbfe5b3bd3a8c97665fd4da344e308535be366
 SHA512 
c3aeb20ff8769da9211694b7f701907cc7ae7582cdfad2c2fdc008d97ebcbd9dc08245b4e8f8450e1cb304bd705345a11fe79f901a47979fee91443841d55641
 DIST tinycorelinux-10.1-x86.qcow2 14876672 BLAKE2B 
3c760eb7438b13261e52ecfaa33a53649ced95f1ab40aae52134b8cdc31a16d7aa0d6a6dd716e268ed148e9d77a10b7c700b141b61d70c82d271ffe88e8e2a3c
 SHA512 
9964538dc42f232a11949f74b61d46422ea5da3bdc253a217119bd0b8a750c40fd2da0b07157067be9ac0226472614f210a1248114df0d331df390979867a895

diff --git a/sys-kernel/vanilla-kernel/vanilla-kernel-5.5.8.ebuild 
b/sys-kernel/vanilla-kernel/vanilla-kernel-5.5.8.ebuild
new file mode 100644
index 000..0fc8e282259
--- /dev/null
+++ b/sys-kernel/vanilla-kernel/vanilla-kernel-5.5.8.ebuild
@@ -0,0 +1,65 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit kernel-build
+
+MY_P=linux-${PV}
+# 
https://git.archlinux.org/svntogit/packages.git/log/trunk/config?h=packages/linux
+AMD64_CONFIG_VER=5.5.5-arch1
+AMD64_CONFIG_HASH=e4d4ca36741d228042185e2a9047cd88fb5b4169
+# https://git.archlinux32.org/packages/log/core/linux/config.i686
+I686_CONFIG_VER=5.5.6-arch1
+I686_CONFIG_HASH=7d53d8a42f68648bce5b002aaf8c2b14e6298275
+
+DESCRIPTION="Linux kernel built from vanilla upstream sources"
+HOMEPAGE="https://www.kernel.org/";
+SRC_URI+=" https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 
1).x/${MY_P}.tar.xz
+   amd64? (
+   
https://git.archlinux.org/svntogit/packages.git/plain/trunk/config?h=packages/linux&id=${AMD64_CONFIG_HASH}
+   -> linux-${AMD64_CONFIG_VER}.amd64.config
+   )
+   x86? (
+   
https://git.archlinux32.org/packages/plain/core/linux/config.i686?id=${I686_CONFIG_HASH}
+   -> linux-${I686_CONFIG_VER}.i686.config
+   )"
+S=${WORKDIR}/${MY_P}
+
+LICENSE="GPL-2"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   !sys-kernel/vanilla-kernel-bin:${SLOT}"
+
+src_prepare() {
+   default
+
+   # prepare the default config
+   case ${ARCH} in
+   amd64)
+   cp "${DISTDIR}"/linux-${AMD64_CONFIG_VER}.amd64.config 
.config || die
+   ;;
+   x86)
+   cp "${DISTDIR}"/linux-${I686_CONFIG_VER}.i686.config 
.config || die
+   ;;
+   *)
+   die "Unsupported arch ${ARCH}"
+   ;;
+   esac
+
+   local config_tweaks=(
+   # shove arch under the carpet!
+   -e 's:^CONFIG_DEFAULT_HOSTNAME=:&"gentoo":'
+   # we do support x32
+   -e '/CONFIG_X86_X32/s:.*:CONFIG_X86_X32=y:'
+   # disable s

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

2020-03-06 Thread Michał Górny
commit: 0724ae514ca4daaa0e636c73500279f88059d8bb
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Mar  6 12:23:55 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Mar  6 19:55:35 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0724ae51

sys-kernel/vanilla-kernel: Bump to 4.19.108

Signed-off-by: Michał Górny  gentoo.org>

 sys-kernel/vanilla-kernel/Manifest |  1 +
 .../vanilla-kernel/vanilla-kernel-4.19.108.ebuild  | 65 ++
 2 files changed, 66 insertions(+)

diff --git a/sys-kernel/vanilla-kernel/Manifest 
b/sys-kernel/vanilla-kernel/Manifest
index 1b59815d67d..45bad4e665d 100644
--- a/sys-kernel/vanilla-kernel/Manifest
+++ b/sys-kernel/vanilla-kernel/Manifest
@@ -1,4 +1,5 @@
 DIST linux-4.19.107.tar.xz 103417476 BLAKE2B 
4cafa666bb7a5c16bd806c0b0d8bfdf98fd8a09ffc99512a3b354abfe3514fb61802c596a898417e54b52f7c3da4ccac0c52746d4f80c77ceff79f0f9821663f
 SHA512 
92b23cdbe1234bfc606b498bb59e2c493d57693f7897b92c3d1d8b2620394e55dc5c80c1fc40c862778f81f91ed09e2fa4598f196f969977dc44c80ac13dce05
+DIST linux-4.19.108.tar.xz 103408396 BLAKE2B 
d8130982ef7b1bbcdc6b1e4099b6bf5bd707f722b74b2e8cf8bcd45e510f3e39c8418851c923013a6919c4c45c43c65fae8f39ba92563f4645c1c3a3fcfd2937
 SHA512 
c39099f314fe22e902f561f0dd17fad021a9b8d4ad3c154709a7680e710980a44bcadf46092da7f1a0a9c6910a9b2a8116cc874f8991e197ff05fafe4312da2d
 DIST linux-4.19.85-arch1.i686.config 222183 BLAKE2B 
03eac77940db0ee6b4f2a006edc600ef34141bbca849f5be4de9b961301a8fc987da6d0e21344aa5d80c29bb7793d56cf5441abb6c8e4057d94e2601c174c1be
 SHA512 
6bd45c9dfd96b1afb8c1ca1ca72722baee6c91894e454d7af937de02242d3bb9d3b6870f5976aa96245c753c6bc1ac637a6356125b0d4c596aadef643b8c3d8d
 DIST linux-4.19.92-arch1.amd64.config 222487 BLAKE2B 
a658d80d85525287a1df9053ca2ddfe423ab423bcc3b9ea8bd9cda65cc7ffa4b1be782c48c867c13e46070af4016f446860f5cf71351f239da1eff6c45a5aa6a
 SHA512 
a5658c8e8464516dffd6f624344e739784cb315d334b2c5105bd5d16022b6366ad4ec00d3692a7b78e2458514175522bc85e834bf19593feff6363b616860258
 DIST linux-5.4.18.arch1.amd64.config 241388 BLAKE2B 
dacc83b154eab51e3c7f57bba6e02a4edfe34fa584c907f514b8afe9cb7ef39aa245caf82a35f648e379883fbbb6426b763879676cd3cecf741bcf342f165a81
 SHA512 
bf211c4293f7dbd980bfcc47fb337a2db359f1320573f5086a5ec60a0c50b4105723e010212eb6d5b9c2ba3ecb5fa4381f8b67c16596647c030b4f49274120b9

diff --git a/sys-kernel/vanilla-kernel/vanilla-kernel-4.19.108.ebuild 
b/sys-kernel/vanilla-kernel/vanilla-kernel-4.19.108.ebuild
new file mode 100644
index 000..17bfa6ee759
--- /dev/null
+++ b/sys-kernel/vanilla-kernel/vanilla-kernel-4.19.108.ebuild
@@ -0,0 +1,65 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit kernel-build
+
+MY_P=linux-${PV}
+# 
https://git.archlinux.org/svntogit/packages.git/log/trunk/config?h=packages/linux-lts
+AMD64_CONFIG_VER=4.19.92-arch1
+AMD64_CONFIG_HASH=bf97de6a2e405659aaad4c251b7f0bb48d5ed3c9
+# https://git.archlinux32.org/packages/log/core/linux-lts/config
+I686_CONFIG_VER=4.19.85-arch1
+I686_CONFIG_HASH=1f0345e2983d2edd55b401cb5a87fdf365a4192c
+
+DESCRIPTION="Linux kernel built from vanilla upstream sources"
+HOMEPAGE="https://www.kernel.org/";
+SRC_URI+=" https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 
1).x/${MY_P}.tar.xz
+   amd64? (
+   
https://git.archlinux.org/svntogit/packages.git/plain/trunk/config?h=packages/linux-lts&id=${AMD64_CONFIG_HASH}
+   -> linux-${AMD64_CONFIG_VER}.amd64.config
+   )
+   x86? (
+   
https://git.archlinux32.org/packages/plain/core/linux-lts/config?id=${I686_CONFIG_HASH}
+   -> linux-${I686_CONFIG_VER}.i686.config
+   )"
+S=${WORKDIR}/${MY_P}
+
+LICENSE="GPL-2"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   !sys-kernel/vanilla-kernel-bin:${SLOT}"
+
+src_prepare() {
+   default
+
+   # prepare the default config
+   case ${ARCH} in
+   amd64)
+   cp "${DISTDIR}"/linux-${AMD64_CONFIG_VER}.amd64.config 
.config || die
+   ;;
+   x86)
+   cp "${DISTDIR}"/linux-${I686_CONFIG_VER}.i686.config 
.config || die
+   ;;
+   *)
+   die "Unsupported arch ${ARCH}"
+   ;;
+   esac
+
+   local config_tweaks=(
+   # shove arch under the carpet!
+   -e 's:^CONFIG_DEFAULT_HOSTNAME=:&"gentoo":'
+   # we do support x32
+   -e '/CONFIG_X86_X32/s:.*:CONFIG_X86_X32=y:'
+   # disable signatures
+   -e '/CONFIG_MODULE_SIG/d'
+   -e '/CONFIG_SECURITY_LOCKDOWN/d'
+   # disable compression to allow stripping
+   -e '/CONFIG_MODULE_COMPRESS/d'
+   # disable gcc plugins to unbreak distcc
+   -e '/CONFIG_GCC_PLUGIN_STRUCTLEAK/d'
+   )
+   sed -i "${config_tweaks[@]}" .config ||

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

2020-03-06 Thread Michał Górny
commit: 762425c25c03a015e53c2954f77aa74121b16e5e
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Mar  6 12:24:05 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Mar  6 19:55:35 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=762425c2

sys-kernel/gentoo-kernel: Bump to 4.19.108

Signed-off-by: Michał Górny  gentoo.org>

 sys-kernel/gentoo-kernel/Manifest  |  2 +
 .../gentoo-kernel/gentoo-kernel-4.19.108.ebuild| 76 ++
 2 files changed, 78 insertions(+)

diff --git a/sys-kernel/gentoo-kernel/Manifest 
b/sys-kernel/gentoo-kernel/Manifest
index eb5949d..f37631bed9a 100644
--- a/sys-kernel/gentoo-kernel/Manifest
+++ b/sys-kernel/gentoo-kernel/Manifest
@@ -1,5 +1,7 @@
 DIST genpatches-4.19-106.base.tar.xz 3207860 BLAKE2B 
4a5c29c2e1e825630b4bccba0dcd2aaab4fe9755fc135eb5990641705743384c0b3da75a89c86f450af9686ab6c036fcf18abed18f7e55f71a8ecdf582a7ab0e
 SHA512 
7660e2f81b5cbd2705998ecc04bd611d39eb5cc30978737aba6741709f16fa6336fdf3bdeaaca2d2cd70ee7d55c205484ca4295774c02d5ff22722a14315e647
 DIST genpatches-4.19-106.extras.tar.xz 17492 BLAKE2B 
d84b9ed61c0d3e3fd032ac5bda3e2898e09c652166305a4a2a949938713d2b7e04405d16ed22d9fc7171d8850dc27a886956b2f3f99b6c7519c0b74e3089f032
 SHA512 
422d7cf4a79ecc5bdb48e01a77207cf77162a1cda33dd629cf806d149193ddfa0254e93f7dacebb39cf0f42a3fd17a131cc3e14b6340b5a90f20b449c99ece54
+DIST genpatches-4.19-107.base.tar.xz 3227648 BLAKE2B 
0a40b4a65cef13ba6840a3ff5380bc286cbb4fad8bdd1d714385435e0403afd8b128be2253cb9e08756b01bebd319782b5821cb879310fe45d5f034a6234b7da
 SHA512 
d2dd2859104c38014357ebc4fd94b81cee27fb13ce6ece76e8ba82d4726d0ce35cac96c8af7eb7a55f559fc4ac305779ebfdca30b194d4e791a5120fb9a78456
+DIST genpatches-4.19-107.extras.tar.xz 17488 BLAKE2B 
55a484a8927241b721ebcdc0d48f92895982f27e7e05c68f9e04638019355fd296ad514fa767c72b27aaa3fcae0339f436080776fa53081d489e51e889a2e1ff
 SHA512 
42126be688244fda9fb87e1d83785933fb6a96d92e02460f3fd34704e45b5f73ba2921e599f5a51729939f3cacc0d29ca5a9dbedb5d929551169b02ab765617e
 DIST genpatches-5.4-23.base.tar.xz 956024 BLAKE2B 
5270c606d07a9c593e8428ebf4636ccec4e6fe07fdda05617451cb1d6523c39fa5c483f9e2006e7944c0f7f835c40d8bffe50606b3266d4a8134779a5d651c3f
 SHA512 
038aeb54cf8854461d61b38598e0191f46fe8b327ec7287c721238f8a41fc8a69a80c4c914ad04569aed6d994321979dcf469c376297ad555ac9095dddae4567
 DIST genpatches-5.4-23.extras.tar.xz 1744 BLAKE2B 
a744740c74b52b66f8db5f0a71174b15284bd83c0ca9318c2bc3809586aa914f20239a9a122930df587cf861412d7ce33a7efb74128bfd2dd52516abbe0cf20a
 SHA512 
74f429626747883c5b4c6e8cb6bced6a5dc377a758637b7eded70dc9471121aa8496030f4b00ac0cd9bacb693d89366d10fc34d0827286ade8160038bf9aa1f7
 DIST genpatches-5.5-9.base.tar.xz 399476 BLAKE2B 
a4582c276854d99a15766b0f9ae28326c3ba89d46e513e7265b839788966057fdfc46912695d74dc560cf22db087d20869dbfd69c59250d0b2e59cf56a506d81
 SHA512 
cb566c2394bf1c98a32343b5be1bc9ecc1a48587443cac39a2e999b09adedb3319726b1321a6d38ae6e6eb39e106dd1e251ed15f127ffb730f6597949df512de

diff --git a/sys-kernel/gentoo-kernel/gentoo-kernel-4.19.108.ebuild 
b/sys-kernel/gentoo-kernel/gentoo-kernel-4.19.108.ebuild
new file mode 100644
index 000..3b0d137453f
--- /dev/null
+++ b/sys-kernel/gentoo-kernel/gentoo-kernel-4.19.108.ebuild
@@ -0,0 +1,76 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit kernel-build
+
+MY_P=linux-4.19.94
+GENPATCHES_P=genpatches-${PV%.*}-$(( ${PV##*.} - 1))
+# 
https://git.archlinux.org/svntogit/packages.git/log/trunk/config?h=packages/linux-lts
+AMD64_CONFIG_VER=4.19.92-arch1
+AMD64_CONFIG_HASH=bf97de6a2e405659aaad4c251b7f0bb48d5ed3c9
+# https://git.archlinux32.org/packages/log/core/linux-lts/config
+I686_CONFIG_VER=4.19.85-arch1
+I686_CONFIG_HASH=1f0345e2983d2edd55b401cb5a87fdf365a4192c
+
+DESCRIPTION="Linux kernel built with Gentoo patches"
+HOMEPAGE="https://www.kernel.org/";
+SRC_URI+=" https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 
1).x/${MY_P}.tar.xz
+   
https://dev.gentoo.org/~mpagano/dist/genpatches/${GENPATCHES_P}.base.tar.xz
+   
https://dev.gentoo.org/~mpagano/dist/genpatches/${GENPATCHES_P}.extras.tar.xz
+   amd64? (
+   
https://git.archlinux.org/svntogit/packages.git/plain/trunk/config?h=packages/linux-lts&id=${AMD64_CONFIG_HASH}
+   -> linux-${AMD64_CONFIG_VER}.amd64.config
+   )
+   x86? (
+   
https://git.archlinux32.org/packages/plain/core/linux-lts/config?id=${I686_CONFIG_HASH}
+   -> linux-${I686_CONFIG_VER}.i686.config
+   )"
+S=${WORKDIR}/${MY_P}
+
+LICENSE="GPL-2"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   !sys-kernel/vanilla-kernel:${SLOT}
+   !sys-kernel/vanilla-kernel-bin:${SLOT}"
+
+src_prepare() {
+   local PATCHES=(
+   # meh, genpatches have no directory
+   # (skip most patch release patches, we just fetch newer sources)
+   "${WORKDIR}"/109[4-9]*.patch
+   

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

2020-03-06 Thread Michał Górny
commit: fbd4b3b868b894f586d63f5afaea5a4189ff2b47
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Mar  6 19:54:39 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Mar  6 19:55:41 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbd4b3b8

sys-kernel/gentoo-kernel-bin: Bump to 5.4.24

Signed-off-by: Michał Górny  gentoo.org>

 sys-kernel/gentoo-kernel-bin/Manifest  |  2 +
 .../gentoo-kernel-bin-5.4.24.ebuild| 46 ++
 2 files changed, 48 insertions(+)

diff --git a/sys-kernel/gentoo-kernel-bin/Manifest 
b/sys-kernel/gentoo-kernel-bin/Manifest
index 012ef151b35..8afe4e11fb8 100644
--- a/sys-kernel/gentoo-kernel-bin/Manifest
+++ b/sys-kernel/gentoo-kernel-bin/Manifest
@@ -4,6 +4,8 @@ DIST gentoo-kernel-4.19.108-1.amd64.xpak 61335185 BLAKE2B 
aca10f98a1cae44d796113
 DIST gentoo-kernel-4.19.108-1.x86.xpak 53603785 BLAKE2B 
f73ca2f45e549ab71af0c59667cb7668a8fdc3110676a29d25ac7736e1c304ac687eb149e5d926bf155c9305db9ecd35139c16fec172789f6623056c91c6d3a8
 SHA512 
3ee73beb268b542c38e883546bf6ecb41ef5f0aea647cda1a32ead116309afa2e0361c4e717cabdea64b09b703ab15120e6ea3d966084900047c183ad92ebe46
 DIST gentoo-kernel-5.4.23-1.amd64.xpak 64901352 BLAKE2B 
e8e610dafd50d6ec41067107ca6a738c5080e76bc7f64cd59b7b8e33a7a65ff8c4f02363574ecc9c09192b409b73b4698e559a7f98d1a003bac1c14dbd8774e5
 SHA512 
61aeafaf4f1b6e1b0e5aedf120758520fafae75d78b70babce6b874661508ab85ad2f7a1ce6aa1252e3d3a73c782cc03a6a56a6d74a538fb1306b86c52f6c904
 DIST gentoo-kernel-5.4.23-1.x86.xpak 56515809 BLAKE2B 
4a96d2cc7d97b8246736b026ffa7f49cecf97818df342576965bd724602921d5ee4dda87167b40f9263e776f8c1d073a3d215bed35897af124c27f92357ea9ea
 SHA512 
673b8e8dd1a4be89f49e6173fbbbc0ee334bb040cb75f49a850fcf1f666b93b2ac66ca73d5b9221c65c7cc520fed4c37e56ed434c9b0a8cf59535d260930a264
+DIST gentoo-kernel-5.4.24-1.amd64.xpak 6489 BLAKE2B 
eb639ca7776e1b2094620e71baac2c53be76c4cd12783f4d07a845b4c07ae894bc2de75b4fb77c9b14ece3a2cae53be2d969a7cc6ee541a26c39f04a57d49a06
 SHA512 
4648bd9fd369d222cb36bb2247cb618995d679ff5405ed26383a72473d6fea726f0369d3406727196f50bdefadc64e7acf80b283d0f365877a389a3d3e8ba697
+DIST gentoo-kernel-5.4.24-1.x86.xpak 56510472 BLAKE2B 
68c715db0815024e31c9a460b30a5bce3df32eba50a4f5f8a20107a7ea5ee2ec75b4179e38e5f1128a6be824bcff41c2e646240836f9ea5f8881b9bdfc752657
 SHA512 
8b7a2af3d63aac259dd1c40c7a2cd39deeac179508796f93ac5208c2f396f5f3bcb269cea395f5c4687898e8606d9053c793e05624abdba7548b4fa5c2013cb0
 DIST gentoo-kernel-5.5.7-1.amd64.xpak 65766080 BLAKE2B 
05732adba34cadc43b602a929469de656c57a2ae74ebd2d5d1c40312887f8889ac2768d53dbd58eb1b49dadd1f4a15bb6efcaf425294aa206b05952c1752a831
 SHA512 
bbeaa28894c7629085686f77d3a211a304c59bbcc66974dc476c74128312b6ecd094fcb399cc8f56fa1ba3f14aed2c174bd408799acf540cab39bb8eade22c01
 DIST gentoo-kernel-5.5.7-1.x86.xpak 57160779 BLAKE2B 
6323263bea0671d0d6939404b934d756f5f4c71912e128bdc2c5521b9f84d561af5a56853ebd8b24d53d3cb0a3e13c4df993a6f802f6f2ddbc07dd0a46763d31
 SHA512 
7bca175b60ab30ce4558db614b33bd694566322a5d7b4ed9efea82ad2cd37e3f45b45a922ed927739c20e74dc0753eb153bcc7439595dbdfd61ac1aace831d9a
 DIST tinycorelinux-10.1-amd64.qcow2 16842752 BLAKE2B 
e013e76503c335739a9623c0901ca791937a0e6b177854535cadec1e2c2cd2df588283ed3128cf652595f32264fbfe5b3bd3a8c97665fd4da344e308535be366
 SHA512 
c3aeb20ff8769da9211694b7f701907cc7ae7582cdfad2c2fdc008d97ebcbd9dc08245b4e8f8450e1cb304bd705345a11fe79f901a47979fee91443841d55641

diff --git a/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.4.24.ebuild 
b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.4.24.ebuild
new file mode 100644
index 000..68ca59b5735
--- /dev/null
+++ b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.4.24.ebuild
@@ -0,0 +1,46 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit kernel-install
+
+MY_P=${P/-bin/}-1
+DESCRIPTION="Pre-built Linux kernel with genpatches"
+HOMEPAGE="https://www.kernel.org/";
+SRC_URI+="
+   amd64? (
+   
https://dev.gentoo.org/~mgorny/binpkg/amd64/kernel/sys-kernel/gentoo-kernel/${MY_P}.xpak
+   -> ${MY_P}.amd64.xpak
+   )
+   x86? (
+   
https://dev.gentoo.org/~mgorny/binpkg/x86/kernel/sys-kernel/gentoo-kernel/${MY_P}.xpak
+   -> ${MY_P}.x86.xpak
+   )"
+S=${WORKDIR}
+
+LICENSE="GPL-2"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   !sys-kernel/gentoo-kernel:${SLOT}
+   !sys-kernel/vanilla-kernel:${SLOT}
+   !sys-kernel/vanilla-kernel-bin:${SLOT}"
+
+QA_PREBUILT='*'
+
+src_unpack() {
+   ebegin "Unpacking ${MY_P}.${ARCH}.xpak"
+   tar -x < <(xz -c -d --single-stream "${DISTDIR}/${MY_P}.${ARCH}.xpak")
+   eend ${?} || die "Unpacking ${MY_P} failed"
+}
+
+src_test() {
+   kernel-install_test "${PV}" \
+   
"${WORKDIR}/usr/src/linux-${PV}/$(kernel-install_get_image_path)" \
+   "lib/modules/${PV}"
+}
+
+src_install() {
+   mv * "${E

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

2020-03-06 Thread Michał Górny
commit: 300052eb0cc92486dbff9df7c9e18233af7a0ffd
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Mar  6 19:54:47 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Mar  6 19:55:42 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=300052eb

sys-kernel/gentoo-kernel-bin: Bump to 5.5.8

Signed-off-by: Michał Górny  gentoo.org>

 sys-kernel/gentoo-kernel-bin/Manifest  |  2 +
 .../gentoo-kernel-bin-5.5.8.ebuild | 46 ++
 2 files changed, 48 insertions(+)

diff --git a/sys-kernel/gentoo-kernel-bin/Manifest 
b/sys-kernel/gentoo-kernel-bin/Manifest
index 8afe4e11fb8..bdf332387dd 100644
--- a/sys-kernel/gentoo-kernel-bin/Manifest
+++ b/sys-kernel/gentoo-kernel-bin/Manifest
@@ -8,5 +8,7 @@ DIST gentoo-kernel-5.4.24-1.amd64.xpak 6489 BLAKE2B 
eb639ca7776e1b2094620e71
 DIST gentoo-kernel-5.4.24-1.x86.xpak 56510472 BLAKE2B 
68c715db0815024e31c9a460b30a5bce3df32eba50a4f5f8a20107a7ea5ee2ec75b4179e38e5f1128a6be824bcff41c2e646240836f9ea5f8881b9bdfc752657
 SHA512 
8b7a2af3d63aac259dd1c40c7a2cd39deeac179508796f93ac5208c2f396f5f3bcb269cea395f5c4687898e8606d9053c793e05624abdba7548b4fa5c2013cb0
 DIST gentoo-kernel-5.5.7-1.amd64.xpak 65766080 BLAKE2B 
05732adba34cadc43b602a929469de656c57a2ae74ebd2d5d1c40312887f8889ac2768d53dbd58eb1b49dadd1f4a15bb6efcaf425294aa206b05952c1752a831
 SHA512 
bbeaa28894c7629085686f77d3a211a304c59bbcc66974dc476c74128312b6ecd094fcb399cc8f56fa1ba3f14aed2c174bd408799acf540cab39bb8eade22c01
 DIST gentoo-kernel-5.5.7-1.x86.xpak 57160779 BLAKE2B 
6323263bea0671d0d6939404b934d756f5f4c71912e128bdc2c5521b9f84d561af5a56853ebd8b24d53d3cb0a3e13c4df993a6f802f6f2ddbc07dd0a46763d31
 SHA512 
7bca175b60ab30ce4558db614b33bd694566322a5d7b4ed9efea82ad2cd37e3f45b45a922ed927739c20e74dc0753eb153bcc7439595dbdfd61ac1aace831d9a
+DIST gentoo-kernel-5.5.8-1.amd64.xpak 65789134 BLAKE2B 
bf55be87d32899d885a04fe7106989b3aa3f4b97b0bee5d32a9cb8c699a00a9e75c4b2db48c67a2d0d558d0f549cf9aff12658b73fe723fda2fdd902f373e696
 SHA512 
3d1017d8dabf8cf9faad16f21165dd27c8d68cef88722d4b7aa57d4ffb0ba9f4d9cd11a0455ad948bc7b7331ccdd216ee68fce4fd733c993806e33b33fd85a5f
+DIST gentoo-kernel-5.5.8-1.x86.xpak 57175448 BLAKE2B 
1685c8d61a709af22fa95432e6801e64c9a18157a302840f347035c60e6792c2056f66037a9a7126b02f7db7975a5ddd868b130eb1ca1e5fb5758d5943ca860d
 SHA512 
07c2599dd7719699b8fdcabb31e78ac8978dadfff5a2ed2eeca7a0dae70b613e02187d7d8e67eb851a0ae4eed7c98191cb9c28ed2a86db5ac659ca62d20107b9
 DIST tinycorelinux-10.1-amd64.qcow2 16842752 BLAKE2B 
e013e76503c335739a9623c0901ca791937a0e6b177854535cadec1e2c2cd2df588283ed3128cf652595f32264fbfe5b3bd3a8c97665fd4da344e308535be366
 SHA512 
c3aeb20ff8769da9211694b7f701907cc7ae7582cdfad2c2fdc008d97ebcbd9dc08245b4e8f8450e1cb304bd705345a11fe79f901a47979fee91443841d55641
 DIST tinycorelinux-10.1-x86.qcow2 14876672 BLAKE2B 
3c760eb7438b13261e52ecfaa33a53649ced95f1ab40aae52134b8cdc31a16d7aa0d6a6dd716e268ed148e9d77a10b7c700b141b61d70c82d271ffe88e8e2a3c
 SHA512 
9964538dc42f232a11949f74b61d46422ea5da3bdc253a217119bd0b8a750c40fd2da0b07157067be9ac0226472614f210a1248114df0d331df390979867a895

diff --git a/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.5.8.ebuild 
b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.5.8.ebuild
new file mode 100644
index 000..68ca59b5735
--- /dev/null
+++ b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.5.8.ebuild
@@ -0,0 +1,46 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit kernel-install
+
+MY_P=${P/-bin/}-1
+DESCRIPTION="Pre-built Linux kernel with genpatches"
+HOMEPAGE="https://www.kernel.org/";
+SRC_URI+="
+   amd64? (
+   
https://dev.gentoo.org/~mgorny/binpkg/amd64/kernel/sys-kernel/gentoo-kernel/${MY_P}.xpak
+   -> ${MY_P}.amd64.xpak
+   )
+   x86? (
+   
https://dev.gentoo.org/~mgorny/binpkg/x86/kernel/sys-kernel/gentoo-kernel/${MY_P}.xpak
+   -> ${MY_P}.x86.xpak
+   )"
+S=${WORKDIR}
+
+LICENSE="GPL-2"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   !sys-kernel/gentoo-kernel:${SLOT}
+   !sys-kernel/vanilla-kernel:${SLOT}
+   !sys-kernel/vanilla-kernel-bin:${SLOT}"
+
+QA_PREBUILT='*'
+
+src_unpack() {
+   ebegin "Unpacking ${MY_P}.${ARCH}.xpak"
+   tar -x < <(xz -c -d --single-stream "${DISTDIR}/${MY_P}.${ARCH}.xpak")
+   eend ${?} || die "Unpacking ${MY_P} failed"
+}
+
+src_test() {
+   kernel-install_test "${PV}" \
+   
"${WORKDIR}/usr/src/linux-${PV}/$(kernel-install_get_image_path)" \
+   "lib/modules/${PV}"
+}
+
+src_install() {
+   mv * "${ED}" || die
+}



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

2020-03-06 Thread Michał Górny
commit: 6fe749c27c112917eccd08db32d030bf02d098b5
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Mar  6 19:54:29 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Mar  6 19:55:40 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6fe749c2

sys-kernel/gentoo-kernel-bin: Bump to 4.19.108

Signed-off-by: Michał Górny  gentoo.org>

 sys-kernel/gentoo-kernel-bin/Manifest  |  2 +
 .../gentoo-kernel-bin-4.19.108.ebuild  | 46 ++
 2 files changed, 48 insertions(+)

diff --git a/sys-kernel/gentoo-kernel-bin/Manifest 
b/sys-kernel/gentoo-kernel-bin/Manifest
index bb468ed294f..012ef151b35 100644
--- a/sys-kernel/gentoo-kernel-bin/Manifest
+++ b/sys-kernel/gentoo-kernel-bin/Manifest
@@ -1,5 +1,7 @@
 DIST gentoo-kernel-4.19.107-1.amd64.xpak 61334447 BLAKE2B 
cf58cd409c20d0990a24aea073586f3414955d2a4282097312a7c10c9b7225cbb10c35ee4ba19efabea7542793a56b70251b8efc56c0cc55e5f4b00f260d15f8
 SHA512 
0f10b079bd8eab9684cf48aa7c36747140e014b74710a217f6ed50833172b405379ebf9b505e36634e23f672aeaa65ad8859b52dc069d6f651d595976959a536
 DIST gentoo-kernel-4.19.107-1.x86.xpak 53605880 BLAKE2B 
9b3e4eea0a904c94958a7c5e64ea274892b4b744a4efd0636477fb86bd2fdc06c88eef380ecf4b4175dd67fe6528380083728a58867da550e974accc47e7a0be
 SHA512 
31dd5fe2af75605422230f145795ba1d3e6004b9f8487e65192cc6144e0ec8c786b7b8a6eab8e14ea63d194650805204d0d000ec72e91ad4b77817589fd602a2
+DIST gentoo-kernel-4.19.108-1.amd64.xpak 61335185 BLAKE2B 
aca10f98a1cae44d796113cd8452ef3362e8694fbd50a505addb553c44719f9ab58838e633bec1d35403b0940c726fa7dccc296926461c0728b28a41f951ea69
 SHA512 
2f7bc58bbcc72022a3997a82d9581fa813404ead028837947311e31c0392f3301011a845b5a84bb8d0a799af68b21a225c47c09b2cba0c485a6c510440abf6be
+DIST gentoo-kernel-4.19.108-1.x86.xpak 53603785 BLAKE2B 
f73ca2f45e549ab71af0c59667cb7668a8fdc3110676a29d25ac7736e1c304ac687eb149e5d926bf155c9305db9ecd35139c16fec172789f6623056c91c6d3a8
 SHA512 
3ee73beb268b542c38e883546bf6ecb41ef5f0aea647cda1a32ead116309afa2e0361c4e717cabdea64b09b703ab15120e6ea3d966084900047c183ad92ebe46
 DIST gentoo-kernel-5.4.23-1.amd64.xpak 64901352 BLAKE2B 
e8e610dafd50d6ec41067107ca6a738c5080e76bc7f64cd59b7b8e33a7a65ff8c4f02363574ecc9c09192b409b73b4698e559a7f98d1a003bac1c14dbd8774e5
 SHA512 
61aeafaf4f1b6e1b0e5aedf120758520fafae75d78b70babce6b874661508ab85ad2f7a1ce6aa1252e3d3a73c782cc03a6a56a6d74a538fb1306b86c52f6c904
 DIST gentoo-kernel-5.4.23-1.x86.xpak 56515809 BLAKE2B 
4a96d2cc7d97b8246736b026ffa7f49cecf97818df342576965bd724602921d5ee4dda87167b40f9263e776f8c1d073a3d215bed35897af124c27f92357ea9ea
 SHA512 
673b8e8dd1a4be89f49e6173fbbbc0ee334bb040cb75f49a850fcf1f666b93b2ac66ca73d5b9221c65c7cc520fed4c37e56ed434c9b0a8cf59535d260930a264
 DIST gentoo-kernel-5.5.7-1.amd64.xpak 65766080 BLAKE2B 
05732adba34cadc43b602a929469de656c57a2ae74ebd2d5d1c40312887f8889ac2768d53dbd58eb1b49dadd1f4a15bb6efcaf425294aa206b05952c1752a831
 SHA512 
bbeaa28894c7629085686f77d3a211a304c59bbcc66974dc476c74128312b6ecd094fcb399cc8f56fa1ba3f14aed2c174bd408799acf540cab39bb8eade22c01

diff --git a/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-4.19.108.ebuild 
b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-4.19.108.ebuild
new file mode 100644
index 000..68ca59b5735
--- /dev/null
+++ b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-4.19.108.ebuild
@@ -0,0 +1,46 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit kernel-install
+
+MY_P=${P/-bin/}-1
+DESCRIPTION="Pre-built Linux kernel with genpatches"
+HOMEPAGE="https://www.kernel.org/";
+SRC_URI+="
+   amd64? (
+   
https://dev.gentoo.org/~mgorny/binpkg/amd64/kernel/sys-kernel/gentoo-kernel/${MY_P}.xpak
+   -> ${MY_P}.amd64.xpak
+   )
+   x86? (
+   
https://dev.gentoo.org/~mgorny/binpkg/x86/kernel/sys-kernel/gentoo-kernel/${MY_P}.xpak
+   -> ${MY_P}.x86.xpak
+   )"
+S=${WORKDIR}
+
+LICENSE="GPL-2"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   !sys-kernel/gentoo-kernel:${SLOT}
+   !sys-kernel/vanilla-kernel:${SLOT}
+   !sys-kernel/vanilla-kernel-bin:${SLOT}"
+
+QA_PREBUILT='*'
+
+src_unpack() {
+   ebegin "Unpacking ${MY_P}.${ARCH}.xpak"
+   tar -x < <(xz -c -d --single-stream "${DISTDIR}/${MY_P}.${ARCH}.xpak")
+   eend ${?} || die "Unpacking ${MY_P} failed"
+}
+
+src_test() {
+   kernel-install_test "${PV}" \
+   
"${WORKDIR}/usr/src/linux-${PV}/$(kernel-install_get_image_path)" \
+   "lib/modules/${PV}"
+}
+
+src_install() {
+   mv * "${ED}" || die
+}



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

2020-03-06 Thread Michał Górny
commit: d11befe33a0d2ca807f3f940ecf05af0a71647ba
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Mar  6 12:24:55 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Mar  6 19:55:39 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d11befe3

sys-kernel/gentoo-kernel: Bump to 5.5.8

Signed-off-by: Michał Górny  gentoo.org>

 sys-kernel/gentoo-kernel/Manifest  |  2 +
 .../gentoo-kernel/gentoo-kernel-5.5.8.ebuild   | 73 ++
 2 files changed, 75 insertions(+)

diff --git a/sys-kernel/gentoo-kernel/Manifest 
b/sys-kernel/gentoo-kernel/Manifest
index e2776506303..5aa85568572 100644
--- a/sys-kernel/gentoo-kernel/Manifest
+++ b/sys-kernel/gentoo-kernel/Manifest
@@ -6,6 +6,8 @@ DIST genpatches-5.4-23.base.tar.xz 956024 BLAKE2B 
5270c606d07a9c593e8428ebf4636c
 DIST genpatches-5.4-23.extras.tar.xz 1744 BLAKE2B 
a744740c74b52b66f8db5f0a71174b15284bd83c0ca9318c2bc3809586aa914f20239a9a122930df587cf861412d7ce33a7efb74128bfd2dd52516abbe0cf20a
 SHA512 
74f429626747883c5b4c6e8cb6bced6a5dc377a758637b7eded70dc9471121aa8496030f4b00ac0cd9bacb693d89366d10fc34d0827286ade8160038bf9aa1f7
 DIST genpatches-5.4-24.base.tar.xz 1012048 BLAKE2B 
88f206f9824bdbe818a159832be638bd37ba274cc06fa245c7e48fe67112383ba3254e6e6433a5ebef792b4b61798aba9d748f8bffac0f62aa9c5536cc934b8d
 SHA512 
bfa30fab2737af4d7e8874831cadec224a634832502f7472c4a018ee98ff698e5134101b06f09ab779e03d62920a29691a12a189ff19e055cfb1effce584b8d9
 DIST genpatches-5.4-24.extras.tar.xz 1740 BLAKE2B 
959877a73da6fc757631407722e086c41409309060b275139c092aacc9cb1a7b749638322abf019bf194508d06a73eeef00939dc666f94313a680452b1fc91c2
 SHA512 
d9c85b2e581bcda49cf34ca90dbcb124c56ab515a8df67a55b08f5e8c0495894376267ba78c966dc9697d88ca8e429e2018d9dedd1a1fddaa7107c6fc74f248b
+DIST genpatches-5.5-10.base.tar.xz 456696 BLAKE2B 
d26c970cad7ffc6950f92fdd906a85f4e0e6242c6450b7ac0211a2cab8ade3c03112f3220943babbf26f115d35d3ba3dec18ff00c7a5608efadcaf7d417431e3
 SHA512 
bbd56eac912dac056d8273a9f3c21710fc614619b1bb6b52c48bf5972518a17ae20ad8601fb294a446415d0ecda57501681a4bbf13fe4a493a48a0d2d324e396
+DIST genpatches-5.5-10.extras.tar.xz 1740 BLAKE2B 
43ef46fdd52322a5b1f370690e7e39d8a6b835726b4166b5f35f079446042b60c9f59e159a88ac82ffa384ff7dce619140783a7e202d3374e272e140744a6459
 SHA512 
57affa6ae287b621407d8c8b8d12dcc7a45bb3d68bbd0418737c95df6ef7bdd76ea8a90caec3322b2e3a75ccb159c42fb132e38cf8c62e21d7abd22e98d309c9
 DIST genpatches-5.5-9.base.tar.xz 399476 BLAKE2B 
a4582c276854d99a15766b0f9ae28326c3ba89d46e513e7265b839788966057fdfc46912695d74dc560cf22db087d20869dbfd69c59250d0b2e59cf56a506d81
 SHA512 
cb566c2394bf1c98a32343b5be1bc9ecc1a48587443cac39a2e999b09adedb3319726b1321a6d38ae6e6eb39e106dd1e251ed15f127ffb730f6597949df512de
 DIST genpatches-5.5-9.extras.tar.xz 1744 BLAKE2B 
c8f761afd767cef3ea6c1d79a3eb6e7dbef2d292dfcecd314189d92c020b3016ae8e3f5cfad3a532f34d9c47f01421ba38e3305b381791dc07375d217f3ac9a0
 SHA512 
5f48330ef699b9704baabb2c8171c80d445790c7876a92b0c7ea49bc29ee8347d87e441b9a51e2eedd069a78fc7011053e6282e54c216852cc9ba080064169d6
 DIST linux-4.19.85-arch1.i686.config 222183 BLAKE2B 
03eac77940db0ee6b4f2a006edc600ef34141bbca849f5be4de9b961301a8fc987da6d0e21344aa5d80c29bb7793d56cf5441abb6c8e4057d94e2601c174c1be
 SHA512 
6bd45c9dfd96b1afb8c1ca1ca72722baee6c91894e454d7af937de02242d3bb9d3b6870f5976aa96245c753c6bc1ac637a6356125b0d4c596aadef643b8c3d8d

diff --git a/sys-kernel/gentoo-kernel/gentoo-kernel-5.5.8.ebuild 
b/sys-kernel/gentoo-kernel/gentoo-kernel-5.5.8.ebuild
new file mode 100644
index 000..46f0dc57842
--- /dev/null
+++ b/sys-kernel/gentoo-kernel/gentoo-kernel-5.5.8.ebuild
@@ -0,0 +1,73 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit kernel-build
+
+MY_P=linux-${PV%.*}
+GENPATCHES_P=genpatches-${PV%.*}-$(( ${PV##*.} + 2 ))
+# 
https://git.archlinux.org/svntogit/packages.git/log/trunk/config?h=packages/linux
+AMD64_CONFIG_VER=5.5.5-arch1
+AMD64_CONFIG_HASH=e4d4ca36741d228042185e2a9047cd88fb5b4169
+# https://git.archlinux32.org/packages/log/core/linux/config.i686
+I686_CONFIG_VER=5.5.6-arch1
+I686_CONFIG_HASH=7d53d8a42f68648bce5b002aaf8c2b14e6298275
+
+DESCRIPTION="Linux kernel built with Gentoo patches"
+HOMEPAGE="https://www.kernel.org/";
+SRC_URI+=" https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 
1).x/${MY_P}.tar.xz
+   
https://dev.gentoo.org/~mpagano/dist/genpatches/${GENPATCHES_P}.base.tar.xz
+   
https://dev.gentoo.org/~mpagano/dist/genpatches/${GENPATCHES_P}.extras.tar.xz
+   amd64? (
+   
https://git.archlinux.org/svntogit/packages.git/plain/trunk/config?h=packages/linux&id=${AMD64_CONFIG_HASH}
+   -> linux-${AMD64_CONFIG_VER}.amd64.config
+   )
+   x86? (
+   
https://git.archlinux32.org/packages/plain/core/linux/config.i686?id=${I686_CONFIG_HASH}
+   -> linux-${I686_CONFIG_VER}.i686.config
+   )"
+S=${WORKDIR}/${MY_P}
+
+LI

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

2020-03-06 Thread Michał Górny
commit: bef9d6f1531ac1c0e85e27458cb0124baa9e7bb2
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Mar  6 12:24:18 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Mar  6 19:55:36 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bef9d6f1

sys-kernel/vanilla-kernel: Bump to 5.4.24

Signed-off-by: Michał Górny  gentoo.org>

 sys-kernel/vanilla-kernel/Manifest |  1 +
 .../vanilla-kernel/vanilla-kernel-5.4.24.ebuild| 65 ++
 2 files changed, 66 insertions(+)

diff --git a/sys-kernel/vanilla-kernel/Manifest 
b/sys-kernel/vanilla-kernel/Manifest
index 45bad4e665d..d49463ac55e 100644
--- a/sys-kernel/vanilla-kernel/Manifest
+++ b/sys-kernel/vanilla-kernel/Manifest
@@ -5,6 +5,7 @@ DIST linux-4.19.92-arch1.amd64.config 222487 BLAKE2B 
a658d80d85525287a1df9053ca2
 DIST linux-5.4.18.arch1.amd64.config 241388 BLAKE2B 
dacc83b154eab51e3c7f57bba6e02a4edfe34fa584c907f514b8afe9cb7ef39aa245caf82a35f648e379883fbbb6426b763879676cd3cecf741bcf342f165a81
 SHA512 
bf211c4293f7dbd980bfcc47fb337a2db359f1320573f5086a5ec60a0c50b4105723e010212eb6d5b9c2ba3ecb5fa4381f8b67c16596647c030b4f49274120b9
 DIST linux-5.4.18.arch1.i686.config 240651 BLAKE2B 
9e00b28951593aefc53cf735bd30589e44c9326f53ff98f7b2a244e171192910f93ab9f20d879ec06ace9b1169a6b3d3d6acf2105736905cca3b9c2db1cc8e68
 SHA512 
0c9331fd1256e044734d24d4ca58e2677604482aa0ce33f65a5df63dce4d2615ea9686a53a0e603956437d9b9d23e54389459d7ea0bfe66597609dae96952785
 DIST linux-5.4.23.tar.xz 109502288 BLAKE2B 
84b3f193c490e9e6a5095266a61dd683470c14351dc597b569106b813e96e7ab304468495dbf9997ab42d602eb1a3f80dffe523e36e6d209a9986dbfaf75579d
 SHA512 
392cb5daac01f5d7de958ac5aa5163a4ce9f66312539ebe62742e82307a35462a785450e1265fb4c20134ba25b979ee8566e6a6e5c2e6b305658b9939ee993eb
+DIST linux-5.4.24.tar.xz 109481252 BLAKE2B 
8124547a1be476b61612d22f856627ed0a70e3bb4ff3898a93eaaa6921870baf3bfcf3901a0f85772c995da5c2214d0a3ff440143438a479808e229d2ba9fb5d
 SHA512 
1d30040ee4992156cc0436e1782fee1c1b2fbb50462ac29429be141eac5f6c7e0a124db335fcd42c5d73f03b564a5903c3de73afd867e0c923a9f1cb88273200
 DIST linux-5.5.5-arch1.amd64.config 243885 BLAKE2B 
088e76a9981a64cd6163667fd09cc02148f15cc53812a429d1f5e22dc893823f57041e581ec957f38504c1fbb5aa0c7886847d1ea4cdc44d5ab245dcc304edc3
 SHA512 
e6958e1fd35e2a900fa6c81e68e35b42496e245829b8bfd85d9d351dcdf8bbea93d25a0edf74871beababb4ba28cd7a731e589e68e047ac972d973ea8c20d3ac
 DIST linux-5.5.6-arch1.i686.config 243301 BLAKE2B 
c5fdd9dc2a0baed1ea421faa8f254d6ece47e89b78fc4c25c38369b53acc1f954978f2f86eda23b77d20a35096a596944f9c433db66008278ed2b8140823ce62
 SHA512 
b2d75bb1826a4dfad10aa5b6fa9cce2684d5de2dabc6da165e192e5a33cbd6eeaff4d7f236e074f4c099830e01e767bd6bc14a70d644057dce59288ae9704877
 DIST linux-5.5.7.tar.xz 110727036 BLAKE2B 
25a0c09a2a8b2ff8762dcf29dc326339537a49996b232c1568de036475a3afb62406fcf85c4357a8fa32088fdb7f868c46ff13a6fa3c2c554b8717c7fbe57712
 SHA512 
a6f4f171ed041a556378dd037de309243272dfa5a51268755d931e75df1358ed970af0a26e3bb4fe64c75f02318a7d0e497e3e9e6a4d10ab9d2d65e958670754

diff --git a/sys-kernel/vanilla-kernel/vanilla-kernel-5.4.24.ebuild 
b/sys-kernel/vanilla-kernel/vanilla-kernel-5.4.24.ebuild
new file mode 100644
index 000..120e57e30b7
--- /dev/null
+++ b/sys-kernel/vanilla-kernel/vanilla-kernel-5.4.24.ebuild
@@ -0,0 +1,65 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit kernel-build
+
+MY_P=linux-${PV}
+# 
https://git.archlinux.org/svntogit/packages.git/log/trunk/config?h=packages/linux-lts
+AMD64_CONFIG_VER=5.4.18.arch1
+AMD64_CONFIG_HASH=f81c67d74936ab16f9356add6600be0de003abb4
+# https://git.archlinux32.org/packages/log/core/linux-lts/config
+I686_CONFIG_VER=5.4.18.arch1
+I686_CONFIG_HASH=c4c120c5fde43a49d84db7d60a9722e2ca1d1c2a
+
+DESCRIPTION="Linux kernel built from vanilla upstream sources"
+HOMEPAGE="https://www.kernel.org/";
+SRC_URI+=" https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 
1).x/${MY_P}.tar.xz
+   amd64? (
+   
https://git.archlinux.org/svntogit/packages.git/plain/trunk/config?h=packages/linux-lts&id=${AMD64_CONFIG_HASH}
+   -> linux-${AMD64_CONFIG_VER}.amd64.config
+   )
+   x86? (
+   
https://git.archlinux32.org/packages/plain/core/linux-lts/config?id=${I686_CONFIG_HASH}
+   -> linux-${I686_CONFIG_VER}.i686.config
+   )"
+S=${WORKDIR}/${MY_P}
+
+LICENSE="GPL-2"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   !sys-kernel/vanilla-kernel-bin:${SLOT}"
+
+src_prepare() {
+   default
+
+   # prepare the default config
+   case ${ARCH} in
+   amd64)
+   cp "${DISTDIR}"/linux-${AMD64_CONFIG_VER}.amd64.config 
.config || die
+   ;;
+   x86)
+   cp "${DISTDIR}"/linux-${I686_CONFIG_VER}.i686.config 
.config || die
+   ;;
+   *)
+   die "Unsu

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

2020-03-06 Thread Michał Górny
commit: 71cdfe92310f9af8d7801a79c0f6eed516f8b6b2
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Mar  6 12:24:28 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Mar  6 19:55:37 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71cdfe92

sys-kernel/gentoo-kernel: Bump to 5.4.24

Signed-off-by: Michał Górny  gentoo.org>

 sys-kernel/gentoo-kernel/Manifest  |  2 +
 .../gentoo-kernel/gentoo-kernel-5.4.24.ebuild  | 73 ++
 2 files changed, 75 insertions(+)

diff --git a/sys-kernel/gentoo-kernel/Manifest 
b/sys-kernel/gentoo-kernel/Manifest
index f37631bed9a..e2776506303 100644
--- a/sys-kernel/gentoo-kernel/Manifest
+++ b/sys-kernel/gentoo-kernel/Manifest
@@ -4,6 +4,8 @@ DIST genpatches-4.19-107.base.tar.xz 3227648 BLAKE2B 
0a40b4a65cef13ba6840a3ff538
 DIST genpatches-4.19-107.extras.tar.xz 17488 BLAKE2B 
55a484a8927241b721ebcdc0d48f92895982f27e7e05c68f9e04638019355fd296ad514fa767c72b27aaa3fcae0339f436080776fa53081d489e51e889a2e1ff
 SHA512 
42126be688244fda9fb87e1d83785933fb6a96d92e02460f3fd34704e45b5f73ba2921e599f5a51729939f3cacc0d29ca5a9dbedb5d929551169b02ab765617e
 DIST genpatches-5.4-23.base.tar.xz 956024 BLAKE2B 
5270c606d07a9c593e8428ebf4636ccec4e6fe07fdda05617451cb1d6523c39fa5c483f9e2006e7944c0f7f835c40d8bffe50606b3266d4a8134779a5d651c3f
 SHA512 
038aeb54cf8854461d61b38598e0191f46fe8b327ec7287c721238f8a41fc8a69a80c4c914ad04569aed6d994321979dcf469c376297ad555ac9095dddae4567
 DIST genpatches-5.4-23.extras.tar.xz 1744 BLAKE2B 
a744740c74b52b66f8db5f0a71174b15284bd83c0ca9318c2bc3809586aa914f20239a9a122930df587cf861412d7ce33a7efb74128bfd2dd52516abbe0cf20a
 SHA512 
74f429626747883c5b4c6e8cb6bced6a5dc377a758637b7eded70dc9471121aa8496030f4b00ac0cd9bacb693d89366d10fc34d0827286ade8160038bf9aa1f7
+DIST genpatches-5.4-24.base.tar.xz 1012048 BLAKE2B 
88f206f9824bdbe818a159832be638bd37ba274cc06fa245c7e48fe67112383ba3254e6e6433a5ebef792b4b61798aba9d748f8bffac0f62aa9c5536cc934b8d
 SHA512 
bfa30fab2737af4d7e8874831cadec224a634832502f7472c4a018ee98ff698e5134101b06f09ab779e03d62920a29691a12a189ff19e055cfb1effce584b8d9
+DIST genpatches-5.4-24.extras.tar.xz 1740 BLAKE2B 
959877a73da6fc757631407722e086c41409309060b275139c092aacc9cb1a7b749638322abf019bf194508d06a73eeef00939dc666f94313a680452b1fc91c2
 SHA512 
d9c85b2e581bcda49cf34ca90dbcb124c56ab515a8df67a55b08f5e8c0495894376267ba78c966dc9697d88ca8e429e2018d9dedd1a1fddaa7107c6fc74f248b
 DIST genpatches-5.5-9.base.tar.xz 399476 BLAKE2B 
a4582c276854d99a15766b0f9ae28326c3ba89d46e513e7265b839788966057fdfc46912695d74dc560cf22db087d20869dbfd69c59250d0b2e59cf56a506d81
 SHA512 
cb566c2394bf1c98a32343b5be1bc9ecc1a48587443cac39a2e999b09adedb3319726b1321a6d38ae6e6eb39e106dd1e251ed15f127ffb730f6597949df512de
 DIST genpatches-5.5-9.extras.tar.xz 1744 BLAKE2B 
c8f761afd767cef3ea6c1d79a3eb6e7dbef2d292dfcecd314189d92c020b3016ae8e3f5cfad3a532f34d9c47f01421ba38e3305b381791dc07375d217f3ac9a0
 SHA512 
5f48330ef699b9704baabb2c8171c80d445790c7876a92b0c7ea49bc29ee8347d87e441b9a51e2eedd069a78fc7011053e6282e54c216852cc9ba080064169d6
 DIST linux-4.19.85-arch1.i686.config 222183 BLAKE2B 
03eac77940db0ee6b4f2a006edc600ef34141bbca849f5be4de9b961301a8fc987da6d0e21344aa5d80c29bb7793d56cf5441abb6c8e4057d94e2601c174c1be
 SHA512 
6bd45c9dfd96b1afb8c1ca1ca72722baee6c91894e454d7af937de02242d3bb9d3b6870f5976aa96245c753c6bc1ac637a6356125b0d4c596aadef643b8c3d8d

diff --git a/sys-kernel/gentoo-kernel/gentoo-kernel-5.4.24.ebuild 
b/sys-kernel/gentoo-kernel/gentoo-kernel-5.4.24.ebuild
new file mode 100644
index 000..49f94f6888a
--- /dev/null
+++ b/sys-kernel/gentoo-kernel/gentoo-kernel-5.4.24.ebuild
@@ -0,0 +1,73 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit kernel-build
+
+MY_P=linux-${PV%.*}
+GENPATCHES_P=genpatches-${PV%.*}-${PV##*.}
+# 
https://git.archlinux.org/svntogit/packages.git/log/trunk/config?h=packages/linux-lts
+AMD64_CONFIG_VER=5.4.18.arch1
+AMD64_CONFIG_HASH=f81c67d74936ab16f9356add6600be0de003abb4
+# https://git.archlinux32.org/packages/log/core/linux-lts/config
+I686_CONFIG_VER=5.4.18.arch1
+I686_CONFIG_HASH=c4c120c5fde43a49d84db7d60a9722e2ca1d1c2a
+
+DESCRIPTION="Linux kernel built with Gentoo patches"
+HOMEPAGE="https://www.kernel.org/";
+SRC_URI+=" https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 
1).x/${MY_P}.tar.xz
+   
https://dev.gentoo.org/~mpagano/dist/genpatches/${GENPATCHES_P}.base.tar.xz
+   
https://dev.gentoo.org/~mpagano/dist/genpatches/${GENPATCHES_P}.extras.tar.xz
+   amd64? (
+   
https://git.archlinux.org/svntogit/packages.git/plain/trunk/config?h=packages/linux-lts&id=${AMD64_CONFIG_HASH}
+   -> linux-${AMD64_CONFIG_VER}.amd64.config
+   )
+   x86? (
+   
https://git.archlinux32.org/packages/plain/core/linux-lts/config?id=${I686_CONFIG_HASH}
+   -> linux-${I686_CONFIG_VER}.i686.config
+   )"
+S=${WORKDIR}/${MY_P}
+

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

2020-03-06 Thread Jorge Manuel B. S. Vicetto
commit: 2dcc18058276bd4a229301d59850c3e91e1a1eae
Author: Jorge Manuel B. S. Vicetto (jmbsvicetto)  gentoo 
 org>
AuthorDate: Fri Mar  6 19:41:20 2020 +
Commit: Jorge Manuel B. S. Vicetto  gentoo  org>
CommitDate: Fri Mar  6 19:42:08 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2dcc1805

www-apps/drupal: Add 8.8.3 release.

Package-Manager: Portage-2.3.88, Repoman-2.3.20
Signed-off-by: Jorge Manuel B. S. Vicetto (jmbsvicetto)  
gentoo.org>

 www-apps/drupal/Manifest|  1 +
 www-apps/drupal/drupal-8.8.3.ebuild | 68 +
 2 files changed, 69 insertions(+)

diff --git a/www-apps/drupal/Manifest b/www-apps/drupal/Manifest
index bc53f2963c0..f57bf074562 100644
--- a/www-apps/drupal/Manifest
+++ b/www-apps/drupal/Manifest
@@ -2,3 +2,4 @@ DIST drupal-7.69.tar.gz 3314294 BLAKE2B 
bfa1d528caf5dc1fa8a21d65244801e2d10961ec
 DIST drupal-8.7.11.tar.gz 17899106 BLAKE2B 
b0971595319abcae978a0a85f3d11345e3411d412775754139c9562baf5e3c4e49f5ff279139ab1b2128f72987746f13b3edb801cca9984269ce929492243f79
 SHA512 
1952630cce84c3d819e9f34e2beed3268f0e6aaa634aa367310b4aad59c1d86a59fe11d258aa6d0823cd0d2c227ce54d88fc27e07c53b660a6833e1f15feb9f1
 DIST drupal-8.8.1.tar.gz 19409293 BLAKE2B 
f0fb8874fc4c706f15ab35795357088d4edf75a2bac23343feadf9e02a706f553d3985c418369c76ede310744c645d3ca4085d920f1bd3069c36d31ef3b90d52
 SHA512 
68663b078c7e4468d8fcaa82c385c79930d4d5741e9ec598faeda6b1f8eeb37dbd8a841bc5a458c1dc97dda9a566edaa981991cdd19fea1edc963f72d746c639
 DIST drupal-8.8.2.tar.gz 19438764 BLAKE2B 
d37d1a4387b8873d6b42ed6afcae89025325aefddecfc3528b161fc86898630f6117301217b4aeeff0aa35ee906aa21de367dc1958db27ec26987c1e599217db
 SHA512 
e4ec3e93649e1698da95a46af9087068beaf5c89a7941d7a3d9fd90d5d28a6ba765cc2ba1954a9c27117197e4322df711c07017b29fd89abc75bfa596fa58362
+DIST drupal-8.8.3.tar.gz 19473677 BLAKE2B 
a9d9788e90b5cf137276246f503dc0ce9a01baec55a8666d51ff987ed3742a74f53fb684bd1fea70eadb6fcb113387f520aed14c2666f244ae3681cbd446d346
 SHA512 
d0a4cfec09699da1f206f425c598b9beaae5e34c8a3bab27b7639bc5d27515126ba4ff3af78357964a9998e1d8fce7baf935821db149ec091bc6af45906054f1

diff --git a/www-apps/drupal/drupal-8.8.3.ebuild 
b/www-apps/drupal/drupal-8.8.3.ebuild
new file mode 100644
index 000..50acdd30770
--- /dev/null
+++ b/www-apps/drupal/drupal-8.8.3.ebuild
@@ -0,0 +1,68 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit webapp
+
+MY_PV=${PV:0:3}.0
+MY_P=${P/_/-}
+S="${WORKDIR}/${MY_P}"
+
+DESCRIPTION="PHP-based open-source platform and content management system"
+HOMEPAGE="https://www.drupal.org/";
+SRC_URI="https://ftp.drupal.org/files/projects/${MY_P}.tar.gz";
+
+LICENSE="GPL-2"
+KEYWORDS="~amd64 ~x86"
+IUSE="+mysql postgres sqlite +uploadprogress"
+
+RDEPEND="
+   dev-lang/php[gd,hash(+),mysql?,pdo,postgres?,simplexml,sqlite?,xml]
+   virtual/httpd-php
+   uploadprogress? ( dev-php/pecl-uploadprogress )
+"
+
+need_httpd_cgi
+
+REQUIRED_USE="|| ( mysql postgres sqlite )"
+
+src_install() {
+   webapp_src_preinst
+
+   local docs="LICENSE.txt README.txt core/MAINTAINERS.txt 
core/INSTALL.txt core/CHANGELOG.txt \
+   core/INSTALL.mysql.txt core/INSTALL.pgsql.txt 
core/INSTALL.sqlite.txt core/UPDATE.txt "
+
+   dodoc ${docs}
+   rm -f ${docs} core/INSTALL core/COPYRIGHT.txt core/LICENSE.txt || die
+
+   cp sites/default/{default.settings.php,settings.php} || die
+   insinto "${MY_HTDOCSDIR}"
+   doins -r .
+
+   dodir "${MY_HTDOCSDIR}"/files
+   webapp_serverowned "${MY_HTDOCSDIR}"/files
+
+   webapp_configfile "${MY_HTDOCSDIR}"/sites/default/settings.php
+   webapp_configfile "${MY_HTDOCSDIR}"/.htaccess
+
+   webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt
+
+   webapp_src_install
+}
+
+pkg_postinst() {
+   echo
+   ewarn "SECURITY NOTICE"
+   ewarn "If you plan on using SSL on your Drupal site, please consult the 
postinstall information:"
+   ewarn "\t# webapp-config --show-postinst ${PN} ${PV}"
+   echo
+   ewarn "If this is a new install, unless you want anyone with network 
access to your server to be"
+   ewarn "able to run the setup, you'll have to configure your web server 
to limit access to it."
+   echo
+   ewarn "If you're doing a new drupal-8 install, you'll have to copy 
/sites/default/default.services.yml"
+   ewarn "to /sites/default/services.yml and grant it write permissions to 
your web server."
+   ewarn "Just follow the instructions of the drupal setup and be sure to 
resolve any permissions issue"
+   ewarn "reported by the setup."
+   echo
+}



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

2020-03-06 Thread Mike Gilbert
commit: f4b7717d6ccf2f939d5314f0583598cb4fab0644
Author: Mike Gilbert  gentoo  org>
AuthorDate: Fri Mar  6 19:40:17 2020 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Fri Mar  6 19:40:17 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4b7717d

sys-apps/hwids: 20200204 stable for all

Package-Manager: Portage-2.3.92_p3, Repoman-2.3.20_p118
Signed-off-by: Mike Gilbert  gentoo.org>

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

diff --git a/sys-apps/hwids/hwids-20200204.ebuild 
b/sys-apps/hwids/hwids-20200204.ebuild
index bca039bc189..c3ee9793f0c 100644
--- a/sys-apps/hwids/hwids-20200204.ebuild
+++ b/sys-apps/hwids/hwids-20200204.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} ==  ]]; then
EGIT_REPO_URI="https://github.com/gentoo/hwids.git";
 else
SRC_URI="https://github.com/gentoo/hwids/archive/${P}.tar.gz";
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux"
+   KEYWORDS="~alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 ~riscv 
s390 sh sparc x86 ~amd64-linux ~x86-linux"
 fi
 
 LICENSE="|| ( GPL-2 BSD ) public-domain"



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

2020-03-06 Thread Mike Gilbert
commit: 86a881033066925d6ed80a41a25654caad15a477
Author: Mike Gilbert  gentoo  org>
AuthorDate: Fri Mar  6 19:38:44 2020 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Fri Mar  6 19:38:44 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86a88103

sys-apps/hwids: bump to 20200306

Package-Manager: Portage-2.3.92_p3, Repoman-2.3.20_p118
Signed-off-by: Mike Gilbert  gentoo.org>

 sys-apps/hwids/Manifest  |  1 +
 sys-apps/hwids/hwids-20200306.ebuild | 91 
 2 files changed, 92 insertions(+)

diff --git a/sys-apps/hwids/Manifest b/sys-apps/hwids/Manifest
index 47089ef0df0..ccf1a31f162 100644
--- a/sys-apps/hwids/Manifest
+++ b/sys-apps/hwids/Manifest
@@ -2,3 +2,4 @@ DIST hwids-20190316.tar.gz 3312959 BLAKE2B 
d9f4c7170979c404a69ca0b51903af34db01a
 DIST hwids-20190818.tar.gz 3407208 BLAKE2B 
c2a0098cba4a34210461a2781f325a95f18696c1917ff3a1c26a2f56383e9edd087ab6b3a1a173a92df829fc250cf460d915a98298f9c38a71396bf232916245
 SHA512 
74086f96152482af3c9caabc729f34d193cc619aae88d44aa0472d674b7533ab806b13243c95bfa04417bdd40e3bb7069b766c2c0824f19d0c62385b043a01c2
 DIST hwids-20191025.tar.gz 3443988 BLAKE2B 
0352f1568d7ceeb2c599d789f96a3175703f3c86240188beb9a080eabb6e7659aeeadf193f15050519fb64c58ee8d8832919cf6922b5017861b32be543235a03
 SHA512 
6f637ca8c4d6b1261c5c2eccd8d1a64ab750f4c36f3d435b50b75949c15e571d83bc61dd6a14e777b53d383d7d02c34f616cc6a62d005db3d965b33b4121deca
 DIST hwids-20200204.tar.gz 3495191 BLAKE2B 
23075b6728d9b0e020be45729d0df4cef95cac5e912e646b612266337d1add59c87a1031e6672c5b6eb23e13c26e6299b62a5886aa25017242a86fd474c1e9ae
 SHA512 
1d2a9baaa7ab64575a3d9b98ae4df9060cb8593ae752365296dd53b18bc5996170bbfe1c5b4b1ffc24b28e3dbaa7c321c4fa333bbf91449a6ca7b187cbe23741
+DIST hwids-20200306.tar.gz 3512152 BLAKE2B 
6a6ee48598e72f97a90bff8f45aacb699218570ede5b60ed119ebae78de6cd4b92e02f96cf57c83710da699be9a7dcdfdef8d404539e04b664298874b35e54ce
 SHA512 
eff1d2783925ca459b387fbaa5cf68a98aa4209ab8509ad92a902b4d02cc7f4a47e5506c2beed4c792d24a8ab636ad77b376a92b59ae4f605d1b5258350ff250

diff --git a/sys-apps/hwids/hwids-20200306.ebuild 
b/sys-apps/hwids/hwids-20200306.ebuild
new file mode 100644
index 000..bca039bc189
--- /dev/null
+++ b/sys-apps/hwids/hwids-20200306.ebuild
@@ -0,0 +1,91 @@
+# Copyright 2012-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit udev
+
+DESCRIPTION="Hardware (PCI, USB, OUI, IAB) IDs databases"
+HOMEPAGE="https://github.com/gentoo/hwids";
+if [[ ${PV} ==  ]]; then
+   PYTHON_COMPAT=( python3_{6,7} )
+   inherit git-r3 python-any-r1
+   EGIT_REPO_URI="https://github.com/gentoo/hwids.git";
+else
+   SRC_URI="https://github.com/gentoo/hwids/archive/${P}.tar.gz";
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux"
+fi
+
+LICENSE="|| ( GPL-2 BSD ) public-domain"
+SLOT="0"
+IUSE="+net +pci +udev +usb"
+
+RDEPEND="
+   udev? ( virtual/udev )
+   !

[gentoo-commits] proj/hwids: New tag: hwids-20200306

2020-03-06 Thread Mike Gilbert
commit: 
Commit: Mike Gilbert  gentoo  org>
CommitDate: Fri Mar  6 19:35:11 2020 +

New tag: hwids-20200306




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

2020-03-06 Thread Mike Gilbert
commit: 98fb3b88045ac64e8fd62c9e53e5845ee919fc5f
Author: Mike Gilbert  gentoo  org>
AuthorDate: Fri Mar  6 19:19:36 2020 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Fri Mar  6 19:19:36 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98fb3b88

sys-apps/systemd: remove unused patches

Signed-off-by: Mike Gilbert  gentoo.org>

 sys-apps/systemd/files/245-rc1-network-debug.patch | 45 --
 .../systemd/files/245-rc1-sysctl-segfault.patch| 23 ---
 2 files changed, 68 deletions(-)

diff --git a/sys-apps/systemd/files/245-rc1-network-debug.patch 
b/sys-apps/systemd/files/245-rc1-network-debug.patch
deleted file mode 100644
index e65035f2185..000
--- a/sys-apps/systemd/files/245-rc1-network-debug.patch
+++ /dev/null
@@ -1,45 +0,0 @@
-From 01ec0028d97fa97d2e433659e24a1517b0e2382e Mon Sep 17 00:00:00 2001
-From: Mike Gilbert 
-Date: Wed, 5 Feb 2020 11:04:50 -0500
-Subject: [PATCH] network: remove unnecessary link->ifname from debug log
- statements
-
-Since 98b0299479a68ffd414888368907fc776a46b82a, we log the interface
-name automatically via log_link_debug().
-
-Fixes: https://github.com/systemd/systemd/issues/14782

- src/network/networkd-dhcp-server.c | 6 +++---
- 1 file changed, 3 insertions(+), 3 deletions(-)
-
-diff --git a/src/network/networkd-dhcp-server.c 
b/src/network/networkd-dhcp-server.c
-index a6dbe2e596c..bee75a6930e 100644
 a/src/network/networkd-dhcp-server.c
-+++ b/src/network/networkd-dhcp-server.c
-@@ -45,7 +45,7 @@ static int link_push_uplink_dns_to_dhcp_server(Link *link, 
sd_dhcp_server *s) {
- size_t n_addresses = 0, n_allocated = 0;
- unsigned i;
- 
--log_link_debug(link, "Copying DNS server information from %s", 
link->ifname);
-+log_link_debug(link, "Copying DNS server information from link");
- 
- if (!link->network)
- return 0;
-@@ -99,7 +99,7 @@ static int link_push_uplink_ntp_to_dhcp_server(Link *link, 
sd_dhcp_server *s) {
- if (!link->network)
- return 0;
- 
--log_link_debug(link, "Copying NTP server information from %s", 
link->ifname);
-+log_link_debug(link, "Copying NTP server information from link");
- 
- STRV_FOREACH(a, link->network->ntp) {
- union in_addr_union ia;
-@@ -148,7 +148,7 @@ static int link_push_uplink_sip_to_dhcp_server(Link *link, 
sd_dhcp_server *s) {
- if (!link->network)
- return 0;
- 
--log_link_debug(link, "Copying SIP server information from %s", 
link->ifname);
-+log_link_debug(link, "Copying SIP server information from link");
- 
- STRV_FOREACH(a, link->network->sip) {
- union in_addr_union ia;

diff --git a/sys-apps/systemd/files/245-rc1-sysctl-segfault.patch 
b/sys-apps/systemd/files/245-rc1-sysctl-segfault.patch
deleted file mode 100644
index 7618b2deba5..000
--- a/sys-apps/systemd/files/245-rc1-sysctl-segfault.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-From db99904bc8482efe556bb010a8b203a3e60ee37f Mon Sep 17 00:00:00 2001
-From: Yu Watanabe 
-Date: Thu, 6 Feb 2020 19:13:11 +0900
-Subject: [PATCH] sysctl: fix segfault
-
-Fixes #14801.

- src/sysctl/sysctl.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/src/sysctl/sysctl.c b/src/sysctl/sysctl.c
-index bbcf0c43235..0cdb740d218 100644
 a/src/sysctl/sysctl.c
-+++ b/src/sysctl/sysctl.c
-@@ -257,7 +257,7 @@ static int parse_file(OrderedHashmap **sysctl_options, 
const char *path, bool ig
- 
- existing = ordered_hashmap_get(*sysctl_options, p);
- if (existing) {
--if (streq(value, existing->value)) {
-+if (streq_ptr(value, existing->value)) {
- existing->ignore_failure = 
existing->ignore_failure || ignore_failure;
- continue;
- }



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

2020-03-06 Thread Mike Gilbert
commit: dd065a84d41ed86f157ecd9abefc0feb73258349
Author: Mike Gilbert  gentoo  org>
AuthorDate: Fri Mar  6 19:14:44 2020 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Fri Mar  6 19:14:44 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd065a84

sys-apps/systemd: bump to 245

Package-Manager: Portage-2.3.92_p3, Repoman-2.3.20_p118
Signed-off-by: Mike Gilbert  gentoo.org>

 sys-apps/systemd/Manifest  |   3 +-
 .../{systemd-245_rc2.ebuild => systemd-245.ebuild} |   0
 sys-apps/systemd/systemd-245_rc1-r2.ebuild | 512 -
 3 files changed, 1 insertion(+), 514 deletions(-)

diff --git a/sys-apps/systemd/Manifest b/sys-apps/systemd/Manifest
index 1128f76364d..d88adc0fc83 100644
--- a/sys-apps/systemd/Manifest
+++ b/sys-apps/systemd/Manifest
@@ -1,5 +1,4 @@
 DIST systemd-243.tar.gz 8242522 BLAKE2B 
89e3ebbea5a99061329f7c78220a66c1e075d5ba90dfdf5ee8d0d9b762ef4600dc82d8ca2054632e5e343b6272cd8046c92f7f99dcfa8287c5ef2b42fb96d4cb
 SHA512 
56b52a297aa5ac04d9667eb3afb1598725b197de73ff72baa1aabbc2844e36fba7b7fccdf6d214ae8b5b926616b2b7e15772763aaa80ec938d74333ff9c8673e
 DIST systemd-244.tar.gz 8445963 BLAKE2B 
19751fb9c058a079694ee1b991259fd3f1fa30ae98ca38bbe8caadfc5628db7848c7f742a1b11781fbd67f911adda917d7a4da1dddb63064907f86f47e5a3256
 SHA512 
08f260fb15b5eb273faafda826dd9154e9a02841b4c5911cc1c7e1445072ad51389f8cced7b9acf112737c20fd56b2fbf48b3f914733c934c774d38a23b616fb
-DIST systemd-245-rc1.tar.gz 8961356 BLAKE2B 
ed04166ead57c2f1cc1a1ca2f0041cae134b503d3448ea9fdd799e12d81f45721ee304d4aabd96d3eab8ea1321b283820e8d2a850b41733e40f07fd419f67b95
 SHA512 
2ef9a295f3897c6642a2fac2e3c73467ece9bc6fc196cc4f3707b9c23af2581eb9f74def78909d57513b67604bf1cf6dc5dbb31c6d435f7997677d09a73d006b
-DIST systemd-245-rc2.tar.gz 8986493 BLAKE2B 
7b5fdb3af94cbedf75e3c4d150797fe4a150102519766e5db3275df9d677ff0e4b69aef07f7bcd9e5efb52392be65c93f3fd3ba66c9b9a8de4e18b906545bddb
 SHA512 
71d6a7c8db4845c95abe66aca041bf6df7d868a9f56be94a188c11647f723d33ea8611a8a84d0f2f71ceacafa4d41fa9c26df25c239c60e0121e762570b8a963
+DIST systemd-245.tar.gz 8993479 BLAKE2B 
be0b1fca5ba8585978f570868bc9135c1fee78ea64dcdf8b1a3419e856a83da90104ed2f86e5f3e5b0b6f29d4b34f603bfe1e4cbc61ccf71bedce547db62ff35
 SHA512 
1b80d0e02472dfc4197f11dab4f56cf90e8a6e105ce19f837cb11335b6d8577ed49031dad94cdb41aa9bdc06ec8eec62c8e9246272b83935e7bb9dcd3cd8c012
 DIST systemd-stable-244.3.tar.gz 8484735 BLAKE2B 
25125ecdae59c852e8ceb45b7ed0b76631b301ab4026c4e389c4bc12090fe41f5918411a75bd20f38b6b3993445df93c850ba98f8d9b30fd24fc4e25f8355a3d
 SHA512 
f8e83fa3e57ac8fdbed61b66bb45fd0eafa6fb36eda26f10690d93f34b03daab6ce4e7eff45b79dcaf59f11f41c1b022d1d9314f576c50ad28f6bb5901f1b18d

diff --git a/sys-apps/systemd/systemd-245_rc2.ebuild 
b/sys-apps/systemd/systemd-245.ebuild
similarity index 100%
rename from sys-apps/systemd/systemd-245_rc2.ebuild
rename to sys-apps/systemd/systemd-245.ebuild

diff --git a/sys-apps/systemd/systemd-245_rc1-r2.ebuild 
b/sys-apps/systemd/systemd-245_rc1-r2.ebuild
deleted file mode 100644
index 3ab16fd6edd..000
--- a/sys-apps/systemd/systemd-245_rc1-r2.ebuild
+++ /dev/null
@@ -1,512 +0,0 @@
-# Copyright 2011-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-if [[ ${PV} ==  ]]; then
-   EGIT_REPO_URI="https://github.com/systemd/systemd.git";
-   inherit git-r3
-else
-   if [[ ${PV} == *.* ]]; then
-   MY_PN=systemd-stable
-   else
-   MY_PN=systemd
-   fi
-   MY_PV=${PV/_/-}
-   MY_P=${MY_PN}-${MY_PV}
-   S=${WORKDIR}/${MY_P}
-   
SRC_URI="https://github.com/systemd/${MY_PN}/archive/v${MY_PV}/${MY_P}.tar.gz";
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 
~sparc ~x86"
-fi
-
-PYTHON_COMPAT=( python3_{6,7,8} )
-
-inherit bash-completion-r1 linux-info meson multilib-minimal ninja-utils pam 
python-any-r1 systemd toolchain-funcs udev usr-ldscript
-
-DESCRIPTION="System and service manager for Linux"
-HOMEPAGE="https://www.freedesktop.org/wiki/Software/systemd";
-
-LICENSE="GPL-2 LGPL-2.1 MIT public-domain"
-SLOT="0/2"
-IUSE="acl apparmor audit build cgroup-hybrid cryptsetup curl dns-over-tls 
elfutils +gcrypt gnuefi http idn importd +kmod +lz4 lzma nat pam pcre pkcs11 
policykit pwquality qrcode +resolvconf +seccomp selinux split-usr static-libs 
+sysv-utils test vanilla xkb"
-
-REQUIRED_USE="importd? ( curl gcrypt lzma )"
-RESTRICT="!test? ( test )"
-
-MINKV="3.11"
-
-COMMON_DEPEND=">=sys-apps/util-linux-2.30:0=[${MULTILIB_USEDEP}]
-   sys-libs/libcap:0=[${MULTILIB_USEDEP}]
-   acl? ( sys-apps/acl:0= )
-   apparmor? ( sys-libs/libapparmor:0= )
-   audit? ( >=sys-process/audit-2:0= )
-   cryptsetup? ( >=sys-fs/cryptsetup-2.0.1:0= )
-   curl? ( net-misc/curl:0= )
-   dns-over-tls? ( >=net-libs/gnutls-3.5.3:0= )
-   elfutils? ( >=dev-libs/elfutils-0.158:0= )
-   gcrypt? ( >=dev-libs/libgcrypt-1.4.5:0=[${M

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

2020-03-06 Thread Sergei Trofimovich
commit: a664bdd217c8f4fbb108d6c2585425383b749b3b
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Fri Mar  6 18:29:12 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Fri Mar  6 18:35:50 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a664bdd2

toolchain.eclass: always use -O2, even when no -O is passed in.

Mike noticed that CFLAGS without any optimization options
still effectively are -O0. Let's follow glibc ebuild here
and always use -O2.

Suggested-by: Mike Gilbert
Signed-off-by: Sergei Trofimovich  gentoo.org>

 eclass/toolchain.eclass | 6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass
index d69ce9503ea..05d13189d3d 100644
--- a/eclass/toolchain.eclass
+++ b/eclass/toolchain.eclass
@@ -1494,8 +1494,12 @@ downgrade_arch_flags() {
 }
 
 gcc_do_filter_flags() {
-   replace-flags -O? -O2 # 701786 (-O3)
+   # Be conservative here:
+   # - don't allow -O3 and like to over-optimize libgcc # 701786
+   # - don't allow -O0 to generate potentially invalid startup code
strip-flags
+   filter-flags '-O?'
+   append-flags -O2
 
# dont want to funk ourselves
filter-flags '-mabi*' -m31 -m32 -m64



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

2020-03-06 Thread Patrick McLean
commit: 1aeca8385689f5cdd20150b8032cc6657cd259cb
Author: Patrick McLean  gentoo  org>
AuthorDate: Fri Mar  6 18:28:25 2020 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Fri Mar  6 18:29:42 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1aeca838

dev-python/pyformance-0.4-r1: add python3_7

Package-Manager: Portage-2.3.92, Repoman-2.3.20
Signed-off-by: Patrick McLean  gentoo.org>

 dev-python/pyformance/pyformance-0.4-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pyformance/pyformance-0.4-r1.ebuild 
b/dev-python/pyformance/pyformance-0.4-r1.ebuild
index 92b43e1f1e9..a071e4b9c06 100644
--- a/dev-python/pyformance/pyformance-0.4-r1.ebuild
+++ b/dev-python/pyformance/pyformance-0.4-r1.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-PYTHON_COMPAT=( python3_6 python3_8 )
+PYTHON_COMPAT=( python3_6 python3_7 python3_8 )
 
 inherit distutils-r1
 



[gentoo-commits] repo/gentoo:master commit in: sci-chemistry/shelx/

2020-03-06 Thread Ulrich Müller
commit: ef6fd343ead216d9b346faa6637f7b8a13495ef6
Author: Ulrich Müller  gentoo  org>
AuthorDate: Fri Mar  6 18:03:12 2020 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Fri Mar  6 18:03:12 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef6fd343

sci-chemistry/shelx: Remove package.

Bug: https://bugs.gentoo.org/702352
Signed-off-by: Ulrich Müller  gentoo.org>

 sci-chemistry/shelx/Manifest  | 18 --
 sci-chemistry/shelx/metadata.xml  |  8 -
 sci-chemistry/shelx/shelx-20141228.ebuild | 59 ---
 3 files changed, 85 deletions(-)

diff --git a/sci-chemistry/shelx/Manifest b/sci-chemistry/shelx/Manifest
deleted file mode 100644
index a28d1244b06..000
--- a/sci-chemistry/shelx/Manifest
+++ /dev/null
@@ -1,18 +0,0 @@
-DIST anode_amd64.bz2 8758937 BLAKE2B 
a5ef69be49149d7dddaa99a51f435a22df6820a8a8c9b641335bc5fa4b969e470454523b6cc34fe64d03f447af946cdbdad22ef6784a49dbb2261650c221c9b5
 SHA512 
6d9f0e506531e14956a95ed23c4c5ccfabaf79b92feba237923db2731e9f3861163f6039e556a6976d910075558fae120088c4805f09880ff33955eff86cc2e1
-DIST anode_x86.bz2 4310241 BLAKE2B 
5220c6b0438a08af27cc0094178f0dfecd3b528c324f79f3dedffda40facd502cbe8d65c8bd2338f9246c8eb215d22e2cfddbe2117bc8e6320573a8fa39db82d
 SHA512 
344e25564d4e0d94764c536625c9be3f4a4b8be74153f17f07254f798e9ebbfe416d069a082906187ba0ec7ab958adf8c7c1ec0afab7a6b146fe02a0b5b88505
-DIST ciftab_amd64.bz2 1409694 BLAKE2B 
bfc56d37954f3571eb0419e525c79576023b54fee40db9d29fa9e1b7d1145c13dc73de362e16cffdb6cba1cb28960c0fd0d5fca5abeeb8bd6f953d5ad17d803f
 SHA512 
7f2439cf5d7afefaf9df0a2e0ab970076ea3f65d1e394aa0a81340e4cae0cbcbd25169a5e490c8269cfdc92fe9d1240d9d0a2949322b48c339f7556173e83428
-DIST ciftab_x86.bz2 510941 BLAKE2B 
eaf458bb7123ca2e8d6c7525f5796f1062b4b94974754e4e340caf5c580ca4ca6b714090c21a7371bbe15d777e48853e9a6b96da8e5155f11ecbeba81593f9f0
 SHA512 
185628c888e74e7f7ae69eccb3195d841eab83616449c3358dd3fb49605f6bb9e86e97959cf6d20b424037746b67332ad98b9a41ca2a7fae7e3cbe503bf71127
-DIST shelxc_amd64.bz2 1512555 BLAKE2B 
6bdddb74b719f73d1225ca2956e3ef86ac38fcdeebf3b56899d4c73213295d60efb5526a8fb2b9db7c2891ff36a83d596d9416d6e2f4be2e86cc031637666100
 SHA512 
11b382c6a8440052ffaf136f5c4695d7f6d10e184334810d0f9b7ff25a782c424ae3509a0bbacabddb152b56e6fdfea7266f9c395d0a39994a8c02bd650625ca
-DIST shelxc_x86.bz2 614564 BLAKE2B 
8b45373bf8392cea08c816acda7af0ba4a3ad776d88cafe8ca1cd4ba3c6a241493b5f403e48c5526458a7eb93de808c6bdeb04da8eed801f149eb19f6c95adae
 SHA512 
5be05948e5b79a44e4ead25deba9b1b08857a4636e4c2f8cdc832f6bb2c2407122adff393035f91ce24b48b025191582b919771052f56ebd7a06aaf66dc82115
-DIST shelxd_amd64.bz2 8773698 BLAKE2B 
4cdd16ab39c2be996f282d70b247abd391de59814c3330d46ce446bcf8a9dee5464d95c74ee87b087d3ebb2227c5b7c8b4f852a5f09db8a55460a4656ffa4d0e
 SHA512 
6cb881a937e461edf9c9e7736bfab164e6dc16c4df4291b8dce69b3abf98ce27fadb8079cc5142d2b77eb94ac42c0bb375f3ac21b45f590d535839cc7f8cd762
-DIST shelxd_x86.bz2 4406371 BLAKE2B 
78f083b86c05b2081d80310d1a10ad24a2c1ad581423fc32cb7e83dba482076143d3bf23edd2a109d70d3ae5b615563a10fd8f6fbdf7e85bfafee5d123eaae94
 SHA512 
68d11983f98984bfaca089b839d38cc9607857d2bb6d2cff306d9efa2f34ea8d741220eb01a99d2ecdd832dde1794b4bb228ceae3fc0e87e3210dfa491e6a402
-DIST shelxe_amd64.bz2 8302570 BLAKE2B 
7a662c9d1ac3ab73d6266b763b5bab2ce9d865d4dfc742485032406711e4ecbf5e3b733cdaf0726111d30b39d2390ae976fcc69187a721cdba5987d82b4e213c
 SHA512 
cbafde59ba1d9943f74e8c66cc012168f1f8062e978d2f9103adb4d130c9a024e3e8b170af5b5207168f23db4742b4a99ce3b550e897c59e1dfd3631d7d6c6ab
-DIST shelxe_x86.bz2 4177233 BLAKE2B 
48ad55d206c9e6ff40c136bce798b6b0ef2d3b17468911b0ecaa5a2e668972c7b46ea6a4f5408b016d298fd17ef7122e3b32238feb095dc7e2e251e7bb6cdcec
 SHA512 
67d56beef36918ec6b5d86109d2e61a0dc5a34ed73174ba5cdf96e0db8d8d41cdf20bffdee138f6f177e30a9df32aa1494c18221139538e5c778d61d5f558c51
-DIST shelxl_amd64.bz2 2985452 BLAKE2B 
cd5e64c07a302735c771a7fa29612d75134bedf9af443be6218632bcd11f33ba355e67a0b690b2d66bf4014d629d4928146d28d536f672630d7f7286dbee0577
 SHA512 
0c5b5e4bf6041399221a2f321a3e8f3def952a6eb9af26652a8af04c4bedf5cb98aa529c11e84da20c061028701a49af960135ac697ae157609ca8ae8acde219
-DIST shelxl_x86.bz2 1610822 BLAKE2B 
027c1f52175446a6952695df2c9869cb4d38813e92e782920d75e40299f1883f562d465bfe52b8eeab6de9aa2e516d3651ff8fbe716e4646a8250c33ae4d7cc8
 SHA512 
deaeed15676f294088ce07dc3760e2eecca503f87a537e3e9598d1de6102e82f25b2bd46c080e5140a35046847c345845a88adf159197be640ba52b1a790cfec
-DIST shelxs_amd64.bz2 1606403 BLAKE2B 
adaf69454a60832daa27f73801f7fe43e704231c9a6a0af9eea45b4a04a0dc239a5962f9fc1fd686cde6ec9797241c8172fde5233b731cee2829ba1bfdcc16de
 SHA512 
3d26e8bc10f0004ee52a564be567db0cdf41f7d05d457e66c12e117bb82550066bf7333830f8dcd56ea987de677f365db25a51f4c22efda9c911fda03d49086e
-DIST shelxs_x86.bz2 746352 BLAKE2B 
d391c82a284321e23c150ebeeb2d8b6ce26c18b2ba208431cba72d5369e932fc712eee21169c95fd3bf28296c235cf7193cef28861237efc4d58d18614a23258
 SHA512 
9ecf1e8da8df228

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

2020-03-06 Thread Ulrich Müller
commit: a2ee48c23a71ef3df198e31693b219bb6508b18b
Author: Ulrich Müller  gentoo  org>
AuthorDate: Fri Mar  6 18:03:52 2020 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Fri Mar  6 18:03:52 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2ee48c2

profiles: Drop mask for removed sci-chemistry/shelx.

Signed-off-by: Ulrich Müller  gentoo.org>

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

diff --git a/profiles/package.mask b/profiles/package.mask
index cf7f2c637cd..d5a4bc79b9e 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -420,13 +420,6 @@ net-im/turses
 # Removal in 30 days.  Bug #708332.
 dev-python/egenix-mx-base
 
-# Ulrich Müller  (2020-02-05)
-# Last version bump in 2014, while upstream is at 2019/1.
-# Ebuild claims "free-noncomm", but has an inaccessible distfile
-# behind a registration wall. Unresponsive Gentoo maintainer.
-# Masked for removal in 30 days. Bug #702352.
-sci-chemistry/shelx
-
 # Joonas Niilola  (2020-02-05)
 # Stagnant upstream with latest release from 2016, python2-only, no maintainer
 # in Gentoo, no notable ebuild action in years, multiple bugs open. Blocks



[gentoo-commits] repo/gentoo:master commit in: dev-php/pecl-uploadprogress/, dev-php/pecl-uploadprogress/files/

2020-03-06 Thread Michael Orlitzky
commit: 6ad0e787c9a3e8cddbc787b1420dc9551cbc55e1
Author: Michael Orlitzky  gentoo  org>
AuthorDate: Fri Mar  6 17:14:21 2020 +
Commit: Michael Orlitzky  gentoo  org>
CommitDate: Fri Mar  6 17:14:37 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ad0e787

dev-php/pecl-uploadprogress: new version 1.1.3.

This new version supports all newer slots of PHP, making our custom
patches obsolete. Thanks to Reuben Farrelly for the heads-up!

Closes: https://bugs.gentoo.org/711658
Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Michael Orlitzky  gentoo.org>

 dev-php/pecl-uploadprogress/Manifest   |   2 +-
 .../pecl-uploadprogress/files/1.0.3.1-php7.patch   | 148 -
 ...-r4.ebuild => pecl-uploadprogress-1.1.3.ebuild} |  15 ++-
 3 files changed, 9 insertions(+), 156 deletions(-)

diff --git a/dev-php/pecl-uploadprogress/Manifest 
b/dev-php/pecl-uploadprogress/Manifest
index fe1058ee715..ce8d10d0aef 100644
--- a/dev-php/pecl-uploadprogress/Manifest
+++ b/dev-php/pecl-uploadprogress/Manifest
@@ -1 +1 @@
-DIST uploadprogress-1.0.3.1.tgz 9040 BLAKE2B 
b926ee0cc7d40276425ea8eed86c5934c35ff2436b5785888394927a145620caa335d4eae87fd85bd754f8a67c1562f3b8d23a2c626f0d0ca4bed4bf4872e465
 SHA512 
c317a30ed81430184b643e2755867cdccf9848312aa31a5527e4fe229ac19ee3099121de8e253207b55dd7e788c28720bd3c477663c4ca15100478647a6dc1bb
+DIST uploadprogress-1.1.3.tgz 14798 BLAKE2B 
5edda3e8672bb0e0829d100284240fcceac26be695386225a18446c742f59edfd906a9ae2f17b594816d3cddea02eb648db01a3352d7f8bd764ad2f6b2e03628
 SHA512 
2202f419be852a71eadae47eaa83909a032e5a6bbe4ce17ae5d45ea4e9f6d9c9edceb2111630d1f0e277b531d463accf540288ecbcca9bf154fe01754f225686

diff --git a/dev-php/pecl-uploadprogress/files/1.0.3.1-php7.patch 
b/dev-php/pecl-uploadprogress/files/1.0.3.1-php7.patch
deleted file mode 100644
index c90f4bd9539..000
--- a/dev-php/pecl-uploadprogress/files/1.0.3.1-php7.patch
+++ /dev/null
@@ -1,148 +0,0 @@
-From 7a4d6b3ac3575caedf9429940f54688411cbf5e9 Mon Sep 17 00:00:00 2001
-From: Jan-E 
-Date: Sun, 19 Apr 2015 18:49:48 +0200
-Subject: [PATCH 1/2] PHP7 compatibility
-

- uploadprogress.c | 36 +---
- 1 file changed, 33 insertions(+), 3 deletions(-)
-
-diff --git a/uploadprogress.c b/uploadprogress.c
-index 30f6758..7a52ba7 100644
 a/uploadprogress.c
-+++ b/uploadprogress.c
-@@ -71,7 +71,7 @@ PHPAPI extern int (*php_rfc1867_callback)(unsigned int , 
void *, void ** TSRMLS_
-  */
- static int uploadprogress_php_rfc1867_file(unsigned int event, void  
*event_data, void **data TSRMLS_DC)
- {
--zval handler;
-+//zval handler;
- char *callable = NULL;
- uploadprogress_data * progress;
- int read_bytes;
-@@ -157,7 +157,11 @@ static int uploadprogress_php_rfc1867_file(unsigned int 
event, void  *event_data
- 
- if (get_contents) {
- php_stream *stream;
-+#if defined(ZEND_ENGINE_3)
-+int options = 0;
-+#else
- int options = ENFORCE_SAFE_MODE;
-+#endif
- 
- stream = php_stream_open_wrapper(progress->data_filename, 
"ab", options, NULL);
- if (stream) {
-@@ -301,7 +305,7 @@ PHP_FUNCTION(uploadprogress_get_info)
- {
- char * id;
- int id_lg;
--char method;
-+//char method;
- 
- if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &id, &id_lg) == 
FAILURE) {
- return;
-@@ -417,7 +421,11 @@ static void uploadprogress_file_php_get_info(char * id, 
zval * return_value)
- v[index] = 0;
- }
- }
-+#if defined(ZEND_ENGINE_3)
-+add_assoc_string( return_value, k, v );
-+#else
- add_assoc_string( return_value, k, v, 1 );
-+#endif
- }
- fclose(F);
- }
-@@ -432,10 +440,22 @@ static void uploadprogress_file_php_get_info(char * id, 
zval * return_value)
-  */
- static void uploadprogress_file_php_get_contents(char *id, char *fieldname, 
long maxlen, zval *return_value)
- {
-+#if defined(ZEND_ENGINE_3)
-+char *filename, *template, *data_identifier;
-+zend_string *contents;
-+#else
- char *filename, *template, *contents, *data_identifier;
-+#endif
- php_stream *stream;
-+#if defined(ZEND_ENGINE_3)
-+int options = 0;
-+#else
- int options = ENFORCE_SAFE_MODE;
--int len, newlen;
-+#endif
-+int len;
-+#if PHP_API_VERSION < 20100412
-+int newlen;
-+#endif
- TSRMLS_FETCH();
- 
- template = INI_STR("uploadprogress.file.contents_template");
-@@ -455,7 +475,13 @@ static void uploadprogress_file_php_get_contents(char 
*id, char *fieldname, long
- }
- 
- /* uses mmap if possible */
-+#if defined(ZEND_ENGINE_3)
-+contents = php_stream_copy_to_mem(stream, maxlen, 0);
-+len = contents->len;
-+if (contents && len > 0) {
-+#else
- if ((len = php_stream_copy_to_mem(stream, &contents, maxlen, 0)) > 0) 
{

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

2020-03-06 Thread Matthew Thode
commit: 9e0d66696f5f1e2430250c65b36e902155dc1506
Author: Matthew Thode  gentoo  org>
AuthorDate: Fri Mar  6 17:06:55 2020 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Fri Mar  6 17:07:16 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e0d6669

app-admin/ansible: 2.9.6 bump

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

 app-admin/ansible/Manifest |  1 +
 app-admin/ansible/ansible-2.9.6.ebuild | 68 ++
 2 files changed, 69 insertions(+)

diff --git a/app-admin/ansible/Manifest b/app-admin/ansible/Manifest
index 435d4681672..c47eae9ba64 100644
--- a/app-admin/ansible/Manifest
+++ b/app-admin/ansible/Manifest
@@ -1,2 +1,3 @@
 DIST ansible-2.9.4.tar.gz 14170264 BLAKE2B 
e230837360d29df460906d118b3c2ebb9a9dc1ac2a4427809a16716e67a79db8e737ed1beca757bd8a75b631c8cb6c26e58b1caeaaeb613731d63031f1e4e34e
 SHA512 
21020548100fc31b59d4ee1b461f2a14359f2f18752d431cd041eb987c8c8b308f1aa1687461a9b3f5a086485b77b3a38c8f006b942cc24cb2157b45e6582822
 DIST ansible-2.9.5.tar.gz 14186885 BLAKE2B 
c64fb384ab55c5b9cca753319fba911b8a40d634b59998f2e4c65ccafaa536788f3ac8c18a45a4b0d322ecca9b7fa2c580311a35a202ad70c2de2157ab04bfaf
 SHA512 
cd2ce807b3136e2c02856339ea910b0a5cae8ca946da804ed7d3ec5725d3eff0fe5b4bd8527b2a17d6f3109e16859d52045b50f2ffd21169b30768e65b813407
+DIST ansible-2.9.6.tar.gz 14201258 BLAKE2B 
29da78035291a252f215a49945e82d9f3598a91c9c8993c69623668e9f8a667882330d51c75e1ae27ee5242f4a6320ee947af338c4c38e23f4f9d04cf19364ca
 SHA512 
7111fd72b4e029b2f661bfb849b4323b69ea796f8a069ad3120e8de390effa670180c69ca0fd5e0a1c2e444db6d574a52d530a2b0343c76cd81ba963b3c3a7cb

diff --git a/app-admin/ansible/ansible-2.9.6.ebuild 
b/app-admin/ansible/ansible-2.9.6.ebuild
new file mode 100644
index 000..73f6fb55df5
--- /dev/null
+++ b/app-admin/ansible/ansible-2.9.6.ebuild
@@ -0,0 +1,68 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6,7} )
+
+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 ~arm ~arm64 ~x86 ~x64-macos"
+IUSE="doc test"
+RESTRICT="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}]
+   dev-python/pexpect[${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}]
+   dev-python/sphinx-notfound-page[${PYTHON_USEDEP}]
+   >=dev-python/pygments-2.4.0[${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
+   )"
+
+python_compile_all() {
+   if use doc; then
+   cd docs/docsite || die
+   export CPUS=4
+   emake -f Makefile.sphinx html
+   fi
+}
+
+python_test() {
+   nosetests -d -w test/units -v --with-coverage --cover-package=ansible 
--cover-branches || die
+}
+
+python_install_all() {
+   use doc && local HTML_DOCS=( docs/docsite/_build/html/. )
+   distutils-r1_python_install_all
+
+   dodoc -r examples
+}



[gentoo-commits] repo/gentoo:master commit in: sci-mathematics/gfan/

2020-03-06 Thread Michael Orlitzky
commit: f2f461b73ee564076c4c71d16754364677de0e55
Author: Michael Orlitzky  gentoo  org>
AuthorDate: Fri Mar  6 16:56:00 2020 +
Commit: Michael Orlitzky  gentoo  org>
CommitDate: Fri Mar  6 16:56:00 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2f461b7

sci-mathematics/gfan: improve the long description in metadata.xml.

Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Michael Orlitzky  gentoo.org>

 sci-mathematics/gfan/metadata.xml | 17 -
 1 file changed, 16 insertions(+), 1 deletion(-)

diff --git a/sci-mathematics/gfan/metadata.xml 
b/sci-mathematics/gfan/metadata.xml
index abc08ece608..c9e1ddd54b3 100644
--- a/sci-mathematics/gfan/metadata.xml
+++ b/sci-mathematics/gfan/metadata.xml
@@ -6,6 +6,21 @@
   Gentoo Mathematics Project
  
 
-  gfan is a computer algebra tool to compute Groebner fans and tropical 
varieties.
+  Gfan is a software package for computing Gröbner fans and tropical
+  varieties. These are polyhedral fans associated to polynomial
+  ideals. The maximal cones of a Gröbner fan are in bijection with the
+  marked reduced Gröbner bases of its defining ideal. The software
+  computes all marked reduced Gröbner bases of an ideal. Their union
+  is a universal Gröbner basis. The tropical variety of a polynomial
+  ideal is a certain subcomplex of the Gröbner fan. Gfan contains
+  algorithms for computing this complex for general ideals and
+  specialized algorithms for tropical curves, tropical hypersurfaces
+  and tropical varieties of prime ideals. In addition to the above
+  core functions the package contains many tools which are useful in
+  the study of Gröbner bases, initial ideals and tropical
+  geometry. The full list of commands can be found in Appendix B of
+  the manual. For ordinary Gröbner basis computations Gfan is not
+  competitive in speed compared to programs such as CoCoA, Singular
+  and Macaulay2.
 
 



[gentoo-commits] repo/gentoo:master commit in: sci-mathematics/gfan/, sci-mathematics/gfan/files/

2020-03-06 Thread Michael Orlitzky
commit: 72f1a1873ac70ee1a9ecd27afa8c3c5fb10b58f7
Author: Michael Orlitzky  gentoo  org>
AuthorDate: Fri Mar  6 16:52:59 2020 +
Commit: Michael Orlitzky  gentoo  org>
CommitDate: Fri Mar  6 16:53:28 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72f1a187

sci-mathematics/gfan: new version 0.6.2.

Update our version of gfan to the latest upstream v0.6.2, from
September 28th 2017. The new ebuild is based off of the version that
François Bissey maintains in the sage-on-gentoo overlay, with a few
additional changes:

  * Merged the EAPI=7 and slot dependency updates from ::gentoo.

  * Change the LICENSE to "GPL-2+", to match the upstream LICENSE file.

  * Stripped some more CFLAGS mangling out of the upstream Makefile.
Corresponding to this we now replace "-O3" by "-O2" in the ebuild.

  * Added USE="doc", to build and install the LaTeX manual.

Closes: https://bugs.gentoo.org/711492
Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Michael Orlitzky  gentoo.org>

 sci-mathematics/gfan/Manifest  |   1 +
 .../gfan/files/gfan-0.6.2-Makefile.patch   | 155 ++
 .../gfan/files/gfan-0.6.2-testsuite.patch  | 222 +
 .../gfan/files/gfan-0.6.2-xcode9.3_compat.patch|  13 ++
 sci-mathematics/gfan/gfan-0.6.2.ebuild |  56 ++
 5 files changed, 447 insertions(+)

diff --git a/sci-mathematics/gfan/Manifest b/sci-mathematics/gfan/Manifest
index 09b70904371..b0e6c30ed01 100644
--- a/sci-mathematics/gfan/Manifest
+++ b/sci-mathematics/gfan/Manifest
@@ -1 +1,2 @@
 DIST gfan0.5.tar.gz 1134987 BLAKE2B 
73ea793f5dbceb76a9f143a258ee3e38e1466e4e15ed96dbabb58f33d3a091a885479dd00f8179d3bf2c85cf275605823f63aa33272f1f9984e0fc5841ab35e9
 SHA512 
11a9657adcd5b39f73244450c09b132d8cd19474d0f9151c0127682bc16847537e4096d39e8a0a63b5c6aef6720e54a72bfd361a5271808d5a5595fd2df494fa
+DIST gfan0.6.2.tar.gz 1321059 BLAKE2B 
1ed61e1e084a1ceb65dd21848440bc3a90486c0ce4012b3b64c8029e89636696d2b0e5446ea156d2cf050b5db179c7c2f25c97e683cecf6e9616e8553d8513bf
 SHA512 
5961820750af2522fdc1a86c0254742c3b003607a8707df5d6cd5f0bc6461e4d3db3b1d3cb537979d57eb9dff387974a58aeb91d0b5246d7c701cadc5a2cf4cf

diff --git a/sci-mathematics/gfan/files/gfan-0.6.2-Makefile.patch 
b/sci-mathematics/gfan/files/gfan-0.6.2-Makefile.patch
new file mode 100644
index 000..8e8db53bc91
--- /dev/null
+++ b/sci-mathematics/gfan/files/gfan-0.6.2-Makefile.patch
@@ -0,0 +1,155 @@
+diff --git a/Makefile b/Makefile
+index 2c9f949..a49a590 100644
+--- a/Makefile
 b/Makefile
+@@ -2,8 +2,8 @@ ALL: default
+ 
+ # When -g is used, it seems that stackdump does not work.
+ # GPROFFLAG = -pg
+-GPROFFLAG = -g
+-#GPROFFLAG = 
++#GPROFFLAG = -g
++GPROFFLAG =
+ 
+ PREFIX?=/usr/local
+ 
+@@ -22,20 +22,8 @@ STACTDUMP_OPTIONS = -DSTACKDUMP_ENABLED 
-D__assert_fail=__assert_fail2
+ endif
+ 
+ 
+-ifeq ($(sagepath),)
+-SAGE_LINKOPTIONS = 
+-SAGE_INCLUDEOPTIONS =
+-else
+-SAGE_LINKOPTIONS = -L$(sagepath)/ -lpython2.6 -lcsage -lsingular
+-SAGE_INCLUDEOPTIONS = -I $(sagepath)/
+-SAGE_OBJECTS = sage.o sage_link.so
+-
+-sage_link.so: sage_link.pyx setup.py
+-  python setup.py build_ext --inplace 
--pyrex-include-dirs=$(SAGE_ROOT)/devel/sage/
+-endif
+-
+ ifeq ($(gmppath),)
+-GMP_LINKOPTIONS = -lgmp
++GMP_LINKOPTIONS = -lgmp -lm
+ GMP_INCLUDEOPTIONS =
+ else
+ GMP_LINKOPTIONS = $(gmppath)/lib/libgmp.a
+@@ -49,7 +37,7 @@ CDDDEFINE_PREFIX = -DNOCDDPREFIX
+ endif
+ 
+ ifeq ($(cddpath),)
+-CDD_LINKOPTIONS = -L/usr/local -lcddgmp
++CDD_LINKOPTIONS = -lcddgmp
+ CDD_INCLUDEOPTIONS =
+ else
+ CDD_LINKOPTIONS = $(cddpath)/lib/libcddgmp.a
+@@ -71,37 +59,8 @@ SOPLEX_OBJECTS = lp_soplexcdd.o
+ endif
+ 
+ 
+-# rememember to adjust USEFACTORY in field_rationalfunctions2
+-ifeq ($(singular),)
+-ifeq ($(factory),)
+-SINGULAR_PATH =
+-SINGULAR_LINKOPTIONS =
+-SINGULAR_INCLUDEOPTIONS =
+-SINGULAR_OBJECTS = src/polynomialgcd.o 
+-else
+-SINGULAR_PATH =
+-SINGULAR_LINKOPTIONS = -lcf -lcfmem
+-SINGULAR_INCLUDEOPTIONS = -I /usr/local/include/factory/
+-SINGULAR_OBJECTS = src/polynomialgcd.o src/ftmpl_inst.o
+-endif
+-else
+-#SINGULAR_PATH = $(HOME)/math/software/Singular-3-1-0
+-#SINGULAR_LINKOPTIONS =  -L$(SINGULAR_PATH)/Singular -lsingular -lncurses 
-lreadline
+-#SINGULAR_INCLUDEOPTIONS = -I $(SINGULAR_PATH)/kernel -I 
$(SINGULAR_PATH)/omalloc
+-#SINGULAR_OBJECTS = src/singular.o src/singularconversion.o
+-SINGULAR_PATH = $(HOME)/math/software/Singular-svn/trunk/x86_64-Linux
+-SINGULAR_LINKOPTIONS =  -L$(SINGULAR_PATH)/lib -lsingular -lncurses 
-lreadline  -lcf -lcfmem
+-SINGULAR_INCLUDEOPTIONS = -I $(SINGULAR_PATH)/include -I 
$(SINGULAR_PATH)/include/omalloc
+-SINGULAR_OBJECTS = src/ftmpl_inst.o src/singular.o src/singularconversion.o
+-#Run the following line before running gfan
+-#export 
LD_LIBRARY_PATH="/home/anders/math/software/Singular-svn/trunk/x86_64-Linux/lib/:${LD_LIBRARY_PATH}"
+-endif
+-
+-# To produce factory templates:
+-#g++ -c /home/anders/math/software/fact

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

2020-03-06 Thread Thomas Deutschmann
commit: 1907f8ac187bba12769e4b8e4b46b8810eb55d51
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Fri Mar  6 16:50:27 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Fri Mar  6 16:51:29 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1907f8ac

sys-kernel/linux-firmware: new snapshot

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

 sys-kernel/linux-firmware/Manifest |   1 +
 .../linux-firmware/linux-firmware-20200302.ebuild  | 354 +
 2 files changed, 355 insertions(+)

diff --git a/sys-kernel/linux-firmware/Manifest 
b/sys-kernel/linux-firmware/Manifest
index d754824dd94..9784629f884 100644
--- a/sys-kernel/linux-firmware/Manifest
+++ b/sys-kernel/linux-firmware/Manifest
@@ -7,3 +7,4 @@ DIST linux-firmware-20191022.tar.gz 198935619 BLAKE2B 
94d90a8e85af7104f08c398d3d
 DIST linux-firmware-20191108.tar.gz 203746264 BLAKE2B 
cd756ac1b1bde9706cd8321133da2e4e620a3236614427ae9836fc5e98fbc62e79060e6cf50717b41391fba9d56e16140f722ffcc5764e4b81ad2e798d1b41ec
 SHA512 
75eb78ef642cc48dc3d8d2cdd7e5312b82ee3c9ebd6ead40a02fdc1d4329c5a9226237fa0ec8e617fc358cc12144dacf4ef6c1441fe444974c1506ef21ea70a0
 DIST linux-firmware-20191215.tar.gz 203746264 BLAKE2B 
cd756ac1b1bde9706cd8321133da2e4e620a3236614427ae9836fc5e98fbc62e79060e6cf50717b41391fba9d56e16140f722ffcc5764e4b81ad2e798d1b41ec
 SHA512 
75eb78ef642cc48dc3d8d2cdd7e5312b82ee3c9ebd6ead40a02fdc1d4329c5a9226237fa0ec8e617fc358cc12144dacf4ef6c1441fe444974c1506ef21ea70a0
 DIST linux-firmware-20200122.tar.gz 219807963 BLAKE2B 
976cf7f8da61213a1210348cffdda8cae1b3f3a2d46aac05fe331fdff37e954620c2768f8941e0d4b6fff8c7b69d68b86516c9df9b9cf96538a4463b0957d1a2
 SHA512 
23500cc99d31597fe691341404cbe9375f7995783b4bf055a53a67ace380bdf9db1c247f12ae7e63ac02e4078e5089aa33e5cc6c2622b26dfaab4a65bfab1db3
+DIST linux-firmware-20200302.tar.gz 221566178 BLAKE2B 
a6fd243dcf4b9e1f0d91136046f1f9df0059c4916debb4108e620f0e587982d61bc9433ca6880dc4451fc60510eff2489ecd1c4979ac2344a0eacb6041da2dd7
 SHA512 
c694d268c0be20a34dbf4f823458d1ed378ae41dfebd2b4d064207f44b0532fe3b02af58ff4ab58e3d2777ad82cb87c1d11e7906b0f423043007b3b75648b458

diff --git a/sys-kernel/linux-firmware/linux-firmware-20200302.ebuild 
b/sys-kernel/linux-firmware/linux-firmware-20200302.ebuild
new file mode 100644
index 000..c8c50ee8030
--- /dev/null
+++ b/sys-kernel/linux-firmware/linux-firmware-20200302.ebuild
@@ -0,0 +1,354 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit mount-boot savedconfig
+
+if [[ ${PV} == * ]]; then
+   inherit git-r3
+   
EGIT_REPO_URI="https://git.kernel.org/pub/scm/linux/kernel/git/firmware/${PN}.git";
+else
+   GIT_COMMIT="0148cfefcbf98898ca65bb26d9d7d638b30e211d"
+   
SRC_URI="https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/snapshot/linux-firmware-${GIT_COMMIT}.tar.gz
 -> ${P}.tar.gz"
+   KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sh 
sparc x86"
+fi
+
+DESCRIPTION="Linux firmware files"
+HOMEPAGE="https://git.kernel.org/?p=linux/kernel/git/firmware/linux-firmware.git";
+
+LICENSE="GPL-2 GPL-2+ GPL-3 BSD MIT || ( MPL-1.1 GPL-2 )
+   redistributable? (
+   linux-fw-redistributable ( BSD-2 BSD BSD-4 ISC MIT 
no-source-code ) )
+   unknown-license? ( all-rights-reserved )"
+SLOT="0"
+IUSE="initramfs +redistributable savedconfig unknown-license"
+RESTRICT="binchecks strip
+   unknown-license? ( bindist )"
+
+REQUIRED_USE="initramfs? ( redistributable )"
+
+BDEPEND="initramfs? ( app-arch/cpio )"
+
+#add anything else that collides to this
+RDEPEND="!savedconfig? (
+   redistributable? (
+   !sys-firmware/alsa-firmware[alsa_cards_ca0132]
+   !media-tv/cx18-firmware
+   ! "${UCODETMP}/early_cpio"
+
+   local amd_ucode_file="${UCODEDIR}/AuthenticAMD.bin"
+   cat "${S}"/amd-ucode/*.bin > "${amd_ucode_file}" || die 
"Failed to concat amd cpu ucode"
+
+   if [[ ! -s "${amd_ucode_file}" ]]; then
+   die "Sanity check failed: '${amd_ucode_file}' 
is empty!"
+   fi
+
+   pushd "${UCODETMP}" &>/dev/null || die
+   find . -print0 | cpio --quiet --null -o -H newc -R 0:0 
> "${S}"/amd-uc.img
+   popd &>/dev/null || die
+   if [[ ! -s "${S}/amd-uc.img" ]]; then
+   die "Failed to create '${S}/amd-uc.img'!"
+   fi
+   else
+   # If this will ever happen something has changed which
+   # must be reviewed
+   die "'${S}/amd-ucode' not found!"
+   fi
+   fi
+
+   echo "# Remove files that shall not be installed fro

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

2020-03-06 Thread Sebastian Pipping
commit: 560cd26d1d394283d2ab728c88fa0315ffe1d2bf
Author: Sebastian Pipping  gentoo  org>
AuthorDate: Fri Mar  6 16:32:45 2020 +
Commit: Sebastian Pipping  gentoo  org>
CommitDate: Fri Mar  6 16:32:45 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=560cd26d

dev-python/wrapt: Improve use of distutils_enable_sphinx

Signed-off-by: Sebastian Pipping  gentoo.org>
Package-Manager: Portage-2.3.92, Repoman-2.3.20

 dev-python/wrapt/wrapt-1.12.0.ebuild | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/dev-python/wrapt/wrapt-1.12.0.ebuild 
b/dev-python/wrapt/wrapt-1.12.0.ebuild
index 8a24a98651e..978e8e79af6 100644
--- a/dev-python/wrapt/wrapt-1.12.0.ebuild
+++ b/dev-python/wrapt/wrapt-1.12.0.ebuild
@@ -16,10 +16,8 @@ LICENSE="BSD"
 SLOT="0"
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux ~x64-macos ~x86-macos"
 
-DEPEND="doc? ( dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}] )"
-
 distutils_enable_tests pytest
-distutils_enable_sphinx docs --no-autodoc
+distutils_enable_sphinx docs dev-python/sphinx_rtd_theme
 
 python_compile() {
local WRAPT_EXTENSIONS=true



[gentoo-commits] proj/devmanual:master commit in: appendices/devbook-guide/

2020-03-06 Thread Ulrich Müller
commit: d7fd191af16b7ebe32ea13d5bef2c7ef1f0da538
Author: Ulrich Müller  gentoo  org>
AuthorDate: Fri Mar  6 16:23:33 2020 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Fri Mar  6 16:23:33 2020 +
URL:https://gitweb.gentoo.org/proj/devmanual.git/commit/?id=d7fd191a

devbook-guide: Restore example for nested lists.

This partially reverts commit 491304c.

Signed-off-by: Ulrich Müller  gentoo.org>

 appendices/devbook-guide/text.xml | 40 ++-
 1 file changed, 35 insertions(+), 5 deletions(-)

diff --git a/appendices/devbook-guide/text.xml 
b/appendices/devbook-guide/text.xml
index 26de10e..51e8a8d 100644
--- a/appendices/devbook-guide/text.xml
+++ b/appendices/devbook-guide/text.xml
@@ -465,18 +465,48 @@ that you must close all tags including list items unlike 
in HTML.
 
 
 Definition lists (
) are also supported. Please note that -neither the definition term tag (
) nor the definition data tag -(
) accept any other block level tag such as paragraphs or -admonitions. A definition list comprises: +the definition term tag (
) does not accept any other block +level tag such as paragraphs or admonitions. A definition list comprises:
A Definition List Tag containing
- Definition Term Tags, + Definition Term Tags
- each followed by one or more Definition Data Tags. + and Definition Data Tags. + + + +The following example copied from +https://www.w3.org/TR/REC-html40/struct/lists.html";>w3.org +shows that lists may also be nested and different list types may be used +together: + + + + The ingredients: + + + 100 g flour + 10 g sugar + 1 cup water + 2 eggs + salt, pepper + + + The procedure: + + + Mix dry ingredients thoroughly. + Pour in wet ingredients. + Mix for 10 minutes. + Bake for one hour at 300 degrees. + + + Notes: + The recipe may be improved by adding raisins.

[gentoo-commits] proj/devmanual:master commit in: appendices/devbook-guide/

2020-03-06 Thread Ulrich Müller
commit: 92a1cf4b1f924f00d2a0eaa5d2e01f9bf404aad9
Author: Ulrich Müller  gentoo  org>
AuthorDate: Fri Mar  6 16:24:37 2020 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Fri Mar  6 16:24:37 2020 +
URL:https://gitweb.gentoo.org/proj/devmanual.git/commit/?id=92a1cf4b

devbook-guide: Use consistent ordering when mentioning admonitions.

Signed-off-by: Ulrich Müller  gentoo.org>

 appendices/devbook-guide/text.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/appendices/devbook-guide/text.xml 
b/appendices/devbook-guide/text.xml
index 51e8a8d..a7d9eef 100644
--- a/appendices/devbook-guide/text.xml
+++ b/appendices/devbook-guide/text.xml
@@ -229,7 +229,7 @@ This is a warning.
 We introduced a lot of new tags in the previous section  here's what you
 need to know. The 

(paragraph),

 (preformatted block),  (code block),
-,  and  tags
+,  and  tags
 all can contain one or more lines of text. Besides the 
, ,
    ,
      and
      elements (which we'll cover in just a bit), these are the @@ -577,7 +577,7 @@ Both sections are described next. (opening tag only) and before every
      ,

      ,

      ,
       , 
      ,
, -
    ,
      ,
      , +
        ,
          ,
          , , and (opening tags only).

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

          commit: 6fb169cf04e84a0b91708630e832ac0c5c1ecd8d
          Author: Ulrich Müller  gentoo  org>
          AuthorDate: Sat Feb 29 22:56:58 2020 +
          Commit: Ulrich Müller  gentoo  org>
          CommitDate: Fri Mar  6 16:27:03 2020 +
          URL:https://gitweb.gentoo.org/proj/devmanual.git/commit/?id=6fb169cf
          
          devbook.xsl: Bring admonitions in line with the wiki.
          
          Use alert-info, alert-warning, and alert-danger for note, important,
          and warning, respectively. This is also the scheme used in the wiki:
          https://wiki.gentoo.org/wiki/Gentoo_Wiki:Guidelines#Block-level_layout_elements
          
          Yellow background for important and red for warning also agrees with
          the colours formerly used with GuideXML:
          https://web.archive.org/web/20150314192204/http://www.gentoo.org/doc/en/xml-guide.xml#doc_chap2_sect3
          
          Closes: https://bugs.gentoo.org/711164
          Signed-off-by: Ulrich Müller  gentoo.org>
          
           devbook.xsl | 22 +++---
           1 file changed, 11 insertions(+), 11 deletions(-)
          
          diff --git a/devbook.xsl b/devbook.xsl
          index ea15885..1605663 100644
          --- a/devbook.xsl
          +++ b/devbook.xsl
          @@ -233,30 +233,30 @@
           
             
           
          -  
          +  
           
          -Important:
          +Note:
           
           
             
           
          -  
          -
          -Note:
          +  
          +
          +Important:
           
           
             
           
          -  
          -
          -Todo:
          +  
          +
          +Warning:
           
           
             
           
          -  
          -
          -Warning:
          +  
          +
          +Todo:
           
           
             
          
          
          

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

          commit: c84f7dff8e6a67bd4bc02b83119db11550990a2e
          Author: Andrew Ammerlaan  riseup  net>
          AuthorDate: Fri Mar  6 13:28:02 2020 +
          Commit: Joonas Niilola  gentoo  org>
          CommitDate: Fri Mar  6 15:55:35 2020 +
          URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c84f7dff
          
          dev-libs/libsass: remove old 3.5.5
          
          3.5.5 has security issue, 3.6.1 is stable
          
          Bug: https://bugs.gentoo.org/711680
          Package-Manager: Portage-2.3.92, Repoman-2.3.20
          Signed-off-by: Andrew Ammerlaan  riseup.net>
          Closes: https://github.com/gentoo/gentoo/pull/14847
          Signed-off-by: Joonas Niilola  gentoo.org>
          
           dev-libs/libsass/Manifest |  1 -
           dev-libs/libsass/libsass-3.5.5.ebuild | 54 ---
           2 files changed, 55 deletions(-)
          
          diff --git a/dev-libs/libsass/Manifest b/dev-libs/libsass/Manifest
          index 3303bed9cee..031f5585191 100644
          --- a/dev-libs/libsass/Manifest
          +++ b/dev-libs/libsass/Manifest
          @@ -1,3 +1,2 @@
          -DIST libsass-3.5.5.tar.gz 327298 BLAKE2B 
          4127722343394bca4ed054987eed6113788e10dc4d03a869778c10b56135406c1fcd72dc101bfe405c96267b628735e8ee74d3812ab392f097dc941b78bef882
           SHA512 
          dcb73a5080c00023b60a19ea037ba5af481253a7b47492bd7114bf45ab78ed931c7b207fa8f12ed200a39760553d72ae92dbe4eb80b826b59a6201fb34008fe5
           DIST libsass-3.6.1.tar.gz 333609 BLAKE2B 
          ea6cb0285a6d741614bb900ff0f3b74660c74ec9ed071abf2d980bfe3f55b02fa2873d3860e5b767ca82b5f202f3d2aef28b73357bf8d2b3117c925b4dc78791
           SHA512 
          e9a3a30851e26145d049c4b20951c663a9d48c781a732acd3cc2cdb30df3449e445b57211f666b58afa137431fbdb149add48ff8a0dec92bd8abb514c90adebb
           DIST libsass-3.6.3.tar.gz 331301 BLAKE2B 
          9e25994d19bd93fb53be32f69cafa40204d5892bd676fd7e9a3fcfe4cb6e84d21e9c53043b4766b602f811617f4eeb8bc5719dd7977657ccefff088d418c4e5c
           SHA512 
          e290f2045784ba1cf84e87e5bd33129b5452fec1d25da657b084b3561ec76df195a75595248a493dbd85c6a1215ed600332477945922309c021d9e416ebb29ee
          
          diff --git a/dev-libs/libsass/libsass-3.5.5.ebuild 
          b/dev-libs/libsass/libsass-3.5.5.ebuild
          deleted file mode 100644
          index 1ece89467a7..000
          --- a/dev-libs/libsass/libsass-3.5.5.ebuild
          +++ /dev/null
          @@ -1,54 +0,0 @@
          -# Copyright 1999-2019 Gentoo Authors
          -# Distributed under the terms of the GNU General Public License v2
          -
          -EAPI=7
          -
          -inherit autotools multilib-minimal
          -
          -if [[ ${PV} = * ]]; then
          -   EGIT_REPO_URI="https://github.com/sass/libsass.git";
          -   inherit git-r3
          -   KEYWORDS=
          -else
          -   SRC_URI="https://github.com/sass/libsass/archive/${PV}.tar.gz -> 
          ${P}.tar.gz"
          -   KEYWORDS="amd64 ~arm arm64 ~ppc ~ppc64 x86 ~amd64-linux"
          -fi
          -
          -DESCRIPTION="A C/C++ implementation of a Sass CSS compiler"
          -HOMEPAGE="https://github.com/sass/libsass";
          -LICENSE="MIT"
          -SLOT="0/1" # libsass soname
          -IUSE="static-libs"
          -
          -RDEPEND=""
          -DEPEND="${RDEPEND}"
          -
          -DOCS=( Readme.md SECURITY.md )
          -
          -src_prepare() {
          -   default
          -
          -   if [[ ${PV} != * ]]; then
          -   [[ -f VERSION ]] || echo "${PV}" > VERSION
          -   fi
          -   eautoreconf
          -
          -   # only sane way to deal with various version-related scripts, env 
          variables etc.
          -   multilib_copy_sources
          -}
          -
          -multilib_src_configure() {
          -   econf \
          -   $(use_enable static-libs static) \
          -   --enable-shared
          -}
          -
          -multilib_src_install() {
          -   emake DESTDIR="${D}" install
          -   find "${D}" -name '*.la' -delete || die
          -}
          -
          -multilib_src_install_all() {
          -   einstalldocs
          -   dodoc -r "${S}/docs"
          -}
          
          
          

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

          commit: 94bcbe1f54d5abab03907cf2fb86cfe12e050209
          Author: band-a-prend  yandex  ru>
          AuthorDate: Fri Mar  6 12:46:19 2020 +
          Commit: Joonas Niilola  gentoo  org>
          CommitDate: Fri Mar  6 15:55:36 2020 +
          URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94bcbe1f
          
          media-gfx/gimp: 2.10.18-r1 restore python2 plugins support
          
          Closes: https://bugs.gentoo.org/711628
          
          Signed-off-by: Sergey Torokhov  yandex.ru>
          Closes: https://github.com/gentoo/gentoo/pull/14846
          Signed-off-by: Joonas Niilola  gentoo.org>
          
           media-gfx/gimp/gimp-2.10.18-r1.ebuild | 226 ++
           1 file changed, 226 insertions(+)
          
          diff --git a/media-gfx/gimp/gimp-2.10.18-r1.ebuild 
          b/media-gfx/gimp/gimp-2.10.18-r1.ebuild
          new file mode 100644
          index 000..84e548f9f15
          --- /dev/null
          +++ b/media-gfx/gimp/gimp-2.10.18-r1.ebuild
          @@ -0,0 +1,226 @@
          +# Copyright 1999-2020 Gentoo Authors
          +# Distributed under the terms of the GNU General Public License v2
          +
          +EAPI=6
          +PYTHON_COMPAT=( python2_7 )
          +GNOME2_EAUTORECONF=yes
          +WANT_AUTOMAKE=
          +
          +inherit autotools gnome2 python-single-r1 virtualx
          +
          +DESCRIPTION="GNU Image Manipulation Program"
          +HOMEPAGE="https://www.gimp.org/";
          +SRC_URI="mirror://gimp/v2.10/${P}.tar.bz2"
          +LICENSE="GPL-3 LGPL-3"
          +SLOT="2"
          +KEYWORDS="~amd64 ~ia64 ~ppc64 ~x86"
          +
          +IUSE="aalib alsa altivec aqua debug doc gnome heif jpeg2k mng openexr 
          postscript python udev unwind vector-icons webp wmf xpm cpu_flags_x86_mmx 
          cpu_flags_x86_sse"
          +REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
          +
          +RESTRICT="!test? ( test )"
          +
          +COMMON_DEPEND="
          +   >=app-text/poppler-0.50[cairo]
          +   >=app-text/poppler-data-0.4.7
          +   >=dev-libs/atk-2.2.0
          +   >=dev-libs/glib-2.56.0:2
          +   >=dev-libs/json-glib-1.2.6
          +   dev-libs/libxml2:2
          +   dev-libs/libxslt
          +   >=gnome-base/librsvg-2.40.6:2
          +   >=media-gfx/mypaint-brushes-1.3.0
          +   >=media-libs/babl-0.1.74
          +   >=media-libs/fontconfig-2.12.4
          +   >=media-libs/freetype-2.1.7
          +   >=media-libs/gegl-0.4.22:0.4[cairo]
          +   >=media-libs/gexiv2-0.10.6
          +   >=media-libs/harfbuzz-0.9.19
          +   >=media-libs/lcms-2.8:2
          +   >=media-libs/libmypaint-1.3.0:=
          +   >=media-libs/libpng-1.6.25:0=
          +   >=media-libs/tiff-3.5.7:0
          +   net-libs/glib-networking[ssl]
          +   sys-libs/zlib
          +   virtual/jpeg
          +   >=x11-libs/cairo-1.12.2
          +   >=x11-libs/gdk-pixbuf-2.31:2
          +   >=x11-libs/gtk+-2.24.32:2
          +   x11-libs/libXcursor
          +   >=x11-libs/pango-1.29.4
          +   aalib? ( media-libs/aalib )
          +   alsa? ( >=media-libs/alsa-lib-1.0.0 )
          +   aqua? ( >=x11-libs/gtk-mac-integration-2.0.0 )
          +   heif? ( >=media-libs/libheif-1.3.2:= )
          +   jpeg2k? ( >=media-libs/openjpeg-2.1.0:2= )
          +   mng? ( media-libs/libmng:= )
          +   openexr? ( >=media-libs/openexr-1.6.1:= )
          +   postscript? ( app-text/ghostscript-gpl )
          +   python? (
          +   ${PYTHON_DEPS}
          +   $(python_gen_cond_dep '
          +   >=dev-python/pycairo-1.0.2[${PYTHON_MULTI_USEDEP}]
          +   >=dev-python/pygtk-2.10.4:2[${PYTHON_MULTI_USEDEP}]
          +   ')
          +   )
          +   udev? ( dev-libs/libgudev:= )
          +   unwind? ( >=sys-libs/libunwind-1.1.0:= )
          +   webp? ( >=media-libs/libwebp-0.6.0:= )
          +   wmf? ( >=media-libs/libwmf-0.2.8 )
          +   xpm? ( x11-libs/libXpm )
          +"
          +
          +RDEPEND="
          +   ${COMMON_DEPEND}
          +   x11-themes/hicolor-icon-theme
          +   gnome? ( gnome-base/gvfs )
          +"
          +
          +DEPEND="
          +   ${COMMON_DEPEND}
          +   >=dev-lang/perl-5.10.0
          +   dev-libs/appstream-glib
          +   dev-util/gtk-update-icon-cache
          +   >=dev-util/intltool-0.40.1
          +   sys-apps/findutils
          +   >=sys-devel/gettext-0.19
          +   >=sys-devel/libtool-2.2
          +   virtual/pkgconfig
          +"
          +
          +DOCS=( "AUTHORS" "ChangeLog" "HACKING" "NEWS" "README" "README.i18n" )
          +
          +# Bugs 685210 (and duplicate 691070)
          +PATCHES=(
          +   "${FILESDIR}/${PN}-2.10_fix_test-appdata.patch"
          +)
          +
          +pkg_setup() {
          +   use python && python-single-r1_pkg_setup
          +}
          +
          +src_prepare() {
          +   # Disable system CFLAGS suppressing on SSE{2,4.1} support tests by 
          addition of {SSE2,SSE4_1}_EXTRA_CFLAGS: bug #702554
          +   sed -i -e 's:\$intrinsics_save_CFLAGS 
          \$SSE2_EXTRA_CFLAGS:\$SSE2_EXTRA_CFLAGS \$intrinsics_save_CFLAGS:' \
          +   -e 's:\$intrinsics_save_CFLAGS 
          \$SSE4_1_EXTRA_CFLAGS:\$SSE4_1_EXTRA_CFLAGS \$intrinsics_save_CFLAGS:' 
          configure.ac || die
          +
          +   sed -i -e 's/== "xquartz"/= "xquartz"/' configure.ac || die #494864
          +   sed 's:-DGIMP_DISABLE_DEPRECATED:-DGIMP_protect_DISABLE_DEPRECATED:g' 
          -i configure.ac || die #615144
          +
          +   gnome2_src_prepare  # calls eautoreconf
          +
          +   sed 's:-DGIMP_protect_DISABLE_DEPRECATED:-DGIMP_DISABLE_DEPRECATED:g' 
          -i configure || die #615144
          +   fgrep -q GIMP_DISABLE_DEPRECATED configure || die #615144, self-test
          +}
          +
          +_adjust_sandbox() {
          +   # Bugs #569738 and #591214
          +   local nv
          +   for nv in /dev/nvidia-uvm /dev/nvidiactl /dev/nvidia{0..9} ; do
          +   

          [gentoo-commits] repo/gentoo:master commit in: www-client/google-chrome-beta/

          commit: 4a72e0afe21bbaf0ce1447b540122cc9df367898
          Author: Mike Gilbert  gentoo  org>
          AuthorDate: Fri Mar  6 15:44:35 2020 +
          Commit: Mike Gilbert  gentoo  org>
          CommitDate: Fri Mar  6 15:44:35 2020 +
          URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a72e0af
          
          www-client/google-chrome-beta: automated update (81.0.4044.43)
          
          Package-Manager: Portage-2.3.92_p3, Repoman-2.3.20_p118
          Signed-off-by: Mike Gilbert  gentoo.org>
          
           www-client/google-chrome-beta/Manifest  | 2 +-
           ...-beta-81.0.4044.34.ebuild => google-chrome-beta-81.0.4044.43.ebuild} | 0
           2 files changed, 1 insertion(+), 1 deletion(-)
          
          diff --git a/www-client/google-chrome-beta/Manifest 
          b/www-client/google-chrome-beta/Manifest
          index b2cff3c7ca6..5818dd3603f 100644
          --- a/www-client/google-chrome-beta/Manifest
          +++ b/www-client/google-chrome-beta/Manifest
          @@ -1 +1 @@
          -DIST google-chrome-beta_81.0.4044.34-1_amd64.deb 66708676 BLAKE2B 
          d647a2998b334d155a0c30de768cb315bb0740d33e4add13bce3f7efdccad1e9e25944b0d21aaf6a1aa47325fe20183d41f83f26e7104f8a697fbaf0af690bca
           SHA512 
          867e86358142bc685821faa3fa074d3a47cc47c1d1d070a3d8c54b0d5c8323efd9939d3fc6bb8b91afcca1b872498b986f6bde942b063d9187fa72fcd1d92d81
          +DIST google-chrome-beta_81.0.4044.43-1_amd64.deb 3962 BLAKE2B 
          fa1a8ff86fc59ff49bd181d8d1c469816b80dcb4329dbc0168188bbce0920a3a387a471c063f9f11214c0c49d7ddd3d25c297982585c68ff20c4c1b4ddfe7b1e
           SHA512 
          0f738fb50109f1e8b33c8fcef7d5f9c6217a7f680cd7d777b61d6e47ad0151e5c96ff450f599f04330cbbe574337e89c8223410e712384ce96b834d4d25db68b
          
          diff --git 
          a/www-client/google-chrome-beta/google-chrome-beta-81.0.4044.34.ebuild 
          b/www-client/google-chrome-beta/google-chrome-beta-81.0.4044.43.ebuild
          similarity index 100%
          rename from www-client/google-chrome-beta/google-chrome-beta-81.0.4044.34.ebuild
          rename to www-client/google-chrome-beta/google-chrome-beta-81.0.4044.43.ebuild
          
          
          

          [gentoo-commits] repo/gentoo:master commit in: www-plugins/chrome-binary-plugins/

          commit: edbdd7b2baed44460a8948a2563f3918cbe2b22c
          Author: Mike Gilbert  gentoo  org>
          AuthorDate: Fri Mar  6 15:44:43 2020 +
          Commit: Mike Gilbert  gentoo  org>
          CommitDate: Fri Mar  6 15:44:43 2020 +
          URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=edbdd7b2
          
          www-plugins/chrome-binary-plugins: automated update (81.0.4044.43)
          
          Package-Manager: Portage-2.3.92_p3, Repoman-2.3.20_p118
          Signed-off-by: Mike Gilbert  gentoo.org>
          
           www-plugins/chrome-binary-plugins/Manifest  | 2 +-
           ...44.34_beta.ebuild => chrome-binary-plugins-81.0.4044.43_beta.ebuild} | 0
           2 files changed, 1 insertion(+), 1 deletion(-)
          
          diff --git a/www-plugins/chrome-binary-plugins/Manifest 
          b/www-plugins/chrome-binary-plugins/Manifest
          index 758f4fdf4a9..1049acb8309 100644
          --- a/www-plugins/chrome-binary-plugins/Manifest
          +++ b/www-plugins/chrome-binary-plugins/Manifest
          @@ -1,3 +1,3 @@
          -DIST google-chrome-beta_81.0.4044.34-1_amd64.deb 66708676 BLAKE2B 
          d647a2998b334d155a0c30de768cb315bb0740d33e4add13bce3f7efdccad1e9e25944b0d21aaf6a1aa47325fe20183d41f83f26e7104f8a697fbaf0af690bca
           SHA512 
          867e86358142bc685821faa3fa074d3a47cc47c1d1d070a3d8c54b0d5c8323efd9939d3fc6bb8b91afcca1b872498b986f6bde942b063d9187fa72fcd1d92d81
          +DIST google-chrome-beta_81.0.4044.43-1_amd64.deb 3962 BLAKE2B 
          fa1a8ff86fc59ff49bd181d8d1c469816b80dcb4329dbc0168188bbce0920a3a387a471c063f9f11214c0c49d7ddd3d25c297982585c68ff20c4c1b4ddfe7b1e
           SHA512 
          0f738fb50109f1e8b33c8fcef7d5f9c6217a7f680cd7d777b61d6e47ad0151e5c96ff450f599f04330cbbe574337e89c8223410e712384ce96b834d4d25db68b
           DIST google-chrome-stable_80.0.3987.132-1_amd64.deb 63597456 BLAKE2B 
          62285e7b7dbeb137135ec5ccd2245c542a3305e8867910666d2c11463936a764f2f91ca9076d735044046555e383e3f829e011a2c2fa454cddbc8f05ad5fb50e
           SHA512 
          d88a5cff2727113913f3342c6420d1560b38e09002a5f981da3b4f8cb8620abd270409bbd11cba9f7d3d49b1cf472c74b27385417b43144070497f29f20a18f4
           DIST google-chrome-unstable_82.0.4068.4-1_amd64.deb 68621040 BLAKE2B 
          b2b3a7716dcbb1b46d4d4f90e3e69b1c9a4768afa9aa01bc37389c13dc8c7857e451039bafec410831fbc3dd9f8306a4395d175914ff2057afd316983bbb6c18
           SHA512 
          893c67d2b1ca58d834a8874d57f9d8e6484ac37e115c44be2b1f4a581daadbf2075448b52ec95ed87e6e5f890e33de718951137bafe326e6332a3029c0dc24d7
          
          diff --git 
          a/www-plugins/chrome-binary-plugins/chrome-binary-plugins-81.0.4044.34_beta.ebuild
           
          b/www-plugins/chrome-binary-plugins/chrome-binary-plugins-81.0.4044.43_beta.ebuild
          similarity index 100%
          rename from 
          www-plugins/chrome-binary-plugins/chrome-binary-plugins-81.0.4044.34_beta.ebuild
          rename to 
          www-plugins/chrome-binary-plugins/chrome-binary-plugins-81.0.4044.43_beta.ebuild
          
          
          

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

          commit: bafc4eae02664b2a8920b8be558445285efe1275
          Author: Stephan Hartmann  googlemail  com>
          AuthorDate: Thu Mar  5 16:05:21 2020 +
          Commit: Mike Gilbert  gentoo  org>
          CommitDate: Fri Mar  6 15:44:07 2020 +
          URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bafc4eae
          
          www-client/chromium: beta channel bump to 81.0.4044.43
          
          Package-Manager: Portage-2.3.89, Repoman-2.3.20
          Signed-off-by: Stephan Hartmann  googlemail.com>
          Signed-off-by: Mike Gilbert  gentoo.org>
          Closes: https://github.com/gentoo/gentoo/pull/14841
          
           www-client/chromium/Manifest| 2 +-
           .../{chromium-81.0.4044.34.ebuild => chromium-81.0.4044.43.ebuild}  | 0
           2 files changed, 1 insertion(+), 1 deletion(-)
          
          diff --git a/www-client/chromium/Manifest b/www-client/chromium/Manifest
          index aa1c19a2547..b132e958c2a 100644
          --- a/www-client/chromium/Manifest
          +++ b/www-client/chromium/Manifest
          @@ -1,4 +1,4 @@
           DIST chromium-80.0.3987.122.tar.xz 801340492 BLAKE2B 
          3f3015346120735c0d04268606fd61ddf57d63e042efe77d7e701fdc9609038a06cbc9380c6d90cb7324dc1679e62c86d971f36bd66f676bd2b16bc4c391bd0f
           SHA512 
          3a022c55f5745f2cfb7e28efb113f78ff686da638cd02f0585ef1ae8620f81ece864bc27b4e0a88daf3f409ff565a9b80b8859d1fd7d62c8b1d26cb8b311acc5
           DIST chromium-80.0.3987.132.tar.xz 796975056 BLAKE2B 
          0da35d3218f4f44c15f05693336a034876764ef228f173cd00cedc045ebc06972416779a39458863b47a1863ab8f21b5d2dc11c6ed33ee81649cd0316bf31524
           SHA512 
          10bf0d1efdf2ead9e94de90971ec135f5370f8c949acfd75ca953aed706510cc3a1464f1ff3c40275921bb24953d8ce65d095e38cb0d56488ccc2c7fa27516d4
          -DIST chromium-81.0.4044.34.tar.xz 791437908 BLAKE2B 
          ca7f71e3e6b8982fa65fa812ce5856902b9dcf0d472b07d7fc9c9afd686348f893259413e5aacf67ad898d2e15d167b403613ae62573264fcd28e40db1460e30
           SHA512 
          9ed2fa58799d038791ad7b705a60b2add0ff5d0c8200f29c51380f87fabd15a024f9d480d18bdc9026ff2807bb054c7a81e2f06a3e4b7776b2a86a8d4dec
          +DIST chromium-81.0.4044.43.tar.xz 785978276 BLAKE2B 
          295e5a09d79db7205aea64511356f8a649ad054c4f279ab2a1dd72631b3bff2245ca6272f3eb11414eb5a612c47b988325390932d91c4e55ccc9c0883593331f
           SHA512 
          6391c9d0460646b8c241f5ec5502b801e9f500651fc73ad664215a43047ab50fa6851edeed5cbb9c1637576d8081295f4f4a67d3d7daa15769241a0055494bf6
           DIST chromium-82.0.4068.4.tar.xz 803352676 BLAKE2B 
          64356b7c840d6ba955d2b7aced1faf85e05f19c9c0b39e8bf86529b86bba2e162404820f5710e9962c4d5e1325086becc3aebb0fdc2683b06231a2a0e8d7a6ae
           SHA512 
          ceb3b50ad4b38e969cf27c386d696665d773e73c000a1cd1ee158bbff86ae94b09a5fbe128547ed496e258ce8bfaf9bbf28b0d229254400c86afbe49fc7e8d8b
          
          diff --git a/www-client/chromium/chromium-81.0.4044.34.ebuild 
          b/www-client/chromium/chromium-81.0.4044.43.ebuild
          similarity index 100%
          rename from www-client/chromium/chromium-81.0.4044.34.ebuild
          rename to www-client/chromium/chromium-81.0.4044.43.ebuild
          
          
          

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

          commit: 0c0b4a1f9cd9d5f3122e355c1b6c9d7b2aa9767b
          Author: Mike Gilbert  gentoo  org>
          AuthorDate: Fri Mar  6 15:32:08 2020 +
          Commit: Mike Gilbert  gentoo  org>
          CommitDate: Fri Mar  6 15:32:08 2020 +
          URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c0b4a1f
          
          sys-apps/kmod: uncomment python_optimize
          
          Bug: https://bugs.gentoo.org/711602
          Package-Manager: Portage-2.3.92_p3, Repoman-2.3.20_p118
          Signed-off-by: Mike Gilbert  gentoo.org>
          
           sys-apps/kmod/{kmod-26-r4.ebuild => kmod-26-r5.ebuild} | 2 +-
           1 file changed, 1 insertion(+), 1 deletion(-)
          
          diff --git a/sys-apps/kmod/kmod-26-r4.ebuild b/sys-apps/kmod/kmod-26-r5.ebuild
          similarity index 99%
          rename from sys-apps/kmod/kmod-26-r4.ebuild
          rename to sys-apps/kmod/kmod-26-r5.ebuild
          index a3805406d20..55fb119f24f 100644
          --- a/sys-apps/kmod/kmod-26-r4.ebuild
          +++ b/sys-apps/kmod/kmod-26-r5.ebuild
          @@ -142,7 +142,7 @@ src_install() {
          VPATH="${native_builddir}:${S}" \
          install-pkgpyexecLTLIBRARIES \
          install-dist_pkgpyexecPYTHON
          -   #python_optimize
          +   python_optimize
          }
           
          python_foreach_impl python_install
          
          
          

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

          commit: bc2bb596101c147201c06f6c0c5be00e4d4a4378
          Author: Lars Wendler  gentoo  org>
          AuthorDate: Fri Mar  6 15:26:05 2020 +
          Commit: Lars Wendler  gentoo  org>
          CommitDate: Fri Mar  6 15:26:05 2020 +
          URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc2bb596
          
          sys-apps/fwupd: Revbump to fix path to fwupdtool
          
          Thanks-to: Joakim Tjernlund  infinera.com>
          Package-Manager: Portage-2.3.92, Repoman-2.3.20
          Signed-off-by: Lars Wendler  gentoo.org>
          
           .../fwupd/files/fwupd-1.3.9-fwupdtool_path.patch | 20 
           .../{fwupd-1.3.9.ebuild => fwupd-1.3.9-r1.ebuild}|  1 +
           2 files changed, 21 insertions(+)
          
          diff --git a/sys-apps/fwupd/files/fwupd-1.3.9-fwupdtool_path.patch 
          b/sys-apps/fwupd/files/fwupd-1.3.9-fwupdtool_path.patch
          new file mode 100644
          index 000..a01e5fbe570
          --- /dev/null
          +++ b/sys-apps/fwupd/files/fwupd-1.3.9-fwupdtool_path.patch
          @@ -0,0 +1,20 @@
          +From 4e381f2a61c6ea4eb7438c14f76b8301762a800c Mon Sep 17 00:00:00 2001
          +From: Dennis Kadioglu 
          +Date: Thu, 5 Mar 2020 09:37:56 +0100
          +Subject: [PATCH] fix fwupd.shutdown.in according to the movement of fwupdtool
          + to bindir
          +
          +---
          + data/fwupd.shutdown.in | 2 +-
          + 1 file changed, 1 insertion(+), 1 deletion(-)
          +
          +diff --git a/data/fwupd.shutdown.in b/data/fwupd.shutdown.in
          +index 4c027e7ab..53b334555 100755
          +--- a/data/fwupd.shutdown.in
           b/data/fwupd.shutdown.in
          +@@ -4,4 +4,4 @@
          + [ -f @localstatedir@/lib/fwupd/pending.db ] || exit 0
          + 
          + # activate firmware when we have a read-only filesysten
          +-@libexecdir@/fwupd/fwupdtool activate
          ++@bindir@/fwupdtool activate
          
          diff --git a/sys-apps/fwupd/fwupd-1.3.9.ebuild 
          b/sys-apps/fwupd/fwupd-1.3.9-r1.ebuild
          similarity index 99%
          rename from sys-apps/fwupd/fwupd-1.3.9.ebuild
          rename to sys-apps/fwupd/fwupd-1.3.9-r1.ebuild
          index 03fab547386..6f4ebb4daa9 100644
          --- a/sys-apps/fwupd/fwupd-1.3.9.ebuild
          +++ b/sys-apps/fwupd/fwupd-1.3.9-r1.ebuild
          @@ -94,6 +94,7 @@ RDEPEND="
           PATCHES=(
          "${FILESDIR}/${PN}-1.3.9-logind_plugin.patch"
          "${FILESDIR}/${P}-optional_agent_man_page.patch"
          +   "${FILESDIR}/${P}-fwupdtool_path.patch"
           )
           
           pkg_setup() {
          
          
          

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

          commit: a64ae1d3b6f3af052521ec5a14ba07267c88bcc5
          Author: Lars Wendler  gentoo  org>
          AuthorDate: Fri Mar  6 15:22:26 2020 +
          Commit: Lars Wendler  gentoo  org>
          CommitDate: Fri Mar  6 15:22:58 2020 +
          URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a64ae1d3
          
          sys-apps/fwupd: Fixed build with USE="-agent man"
          
          Thanks-to: Joakim Tjernlund  infinera.com>
          Closes: https://bugs.gentoo.org/711682
          Package-Manager: Portage-2.3.92, Repoman-2.3.20
          Signed-off-by: Lars Wendler  gentoo.org>
          
           .../fwupd-1.3.9-optional_agent_man_page.patch  | 57 ++
           sys-apps/fwupd/fwupd-1.3.9.ebuild  |  1 +
           2 files changed, 58 insertions(+)
          
          diff --git a/sys-apps/fwupd/files/fwupd-1.3.9-optional_agent_man_page.patch 
          b/sys-apps/fwupd/files/fwupd-1.3.9-optional_agent_man_page.patch
          new file mode 100644
          index 000..6c9898557ff
          --- /dev/null
          +++ b/sys-apps/fwupd/files/fwupd-1.3.9-optional_agent_man_page.patch
          @@ -0,0 +1,57 @@
          +From bacd3a44fe6f06ddd8bb65a3a56eb1738a65ed8c Mon Sep 17 00:00:00 2001
          +From: Lars Wendler 
          +Date: Fri, 6 Mar 2020 16:00:23 +0100
          +Subject: [PATCH] Don't build/install fwupdagent man page if agent build is not
          + requested
          +
          +Otherwise build fails with:
          +
          +  src/meson.build:196:2: ERROR: Unknown variable "fwupdagent".
          +
          +Gentoo-bug: https://bugs.gentoo.org/711682
          +Signed-off-by: Lars Wendler 
          +---
          + src/meson.build | 30 --
          + 1 file changed, 16 insertions(+), 14 deletions(-)
          +
          +diff --git a/src/meson.build b/src/meson.build
          +index 46a9c4ded..e9aac607e 100644
          +--- a/src/meson.build
           b/src/meson.build
          +@@ -193,20 +193,22 @@ if build_daemon and get_option('man')
          + install : true,
          + install_dir : join_paths(mandir, 'man1'),
          +   )
          +-  custom_target('fwupdagent-man',
          +-input : fwupdagent,
          +-output : 'fwupdagent.1',
          +-command : [
          +-  help2man, '@INPUT@',
          +-  '--no-info',
          +-  '--output', '@OUTPUT@',
          +-  '--name', 'Firmware updating agent',
          +-  '--manual', 'User Commands',
          +-  '--version-string', fwupd_version,
          +-],
          +-install : true,
          +-install_dir : join_paths(mandir, 'man1'),
          +-  )
          ++  if get_option('agent')
          ++custom_target('fwupdagent-man',
          ++  input : fwupdagent,
          ++  output : 'fwupdagent.1',
          ++  command : [
          ++help2man, '@INPUT@',
          ++'--no-info',
          ++'--output', '@OUTPUT@',
          ++'--name', 'Firmware updating agent',
          ++'--manual', 'User Commands',
          ++'--version-string', fwupd_version,
          ++  ],
          ++  install : true,
          ++  install_dir : join_paths(mandir, 'man1'),
          ++)
          ++  endif
          + endif
          + if get_option('man')
          +   custom_target('fwupdtool-man',
          
          diff --git a/sys-apps/fwupd/fwupd-1.3.9.ebuild 
          b/sys-apps/fwupd/fwupd-1.3.9.ebuild
          index a10af44195e..03fab547386 100644
          --- a/sys-apps/fwupd/fwupd-1.3.9.ebuild
          +++ b/sys-apps/fwupd/fwupd-1.3.9.ebuild
          @@ -93,6 +93,7 @@ RDEPEND="
           
           PATCHES=(
          "${FILESDIR}/${PN}-1.3.9-logind_plugin.patch"
          +   "${FILESDIR}/${P}-optional_agent_man_page.patch"
           )
           
           pkg_setup() {
          
          
          

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

          commit: 38e62628c1da110135ac151fece76ee4d663ba7c
          Author: William Hubbs  gentoo  org>
          AuthorDate: Fri Mar  6 15:16:22 2020 +
          Commit: William Hubbs  gentoo  org>
          CommitDate: Fri Mar  6 15:19:11 2020 +
          URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38e62628
          
          go-module.eclass: remove the -mod readonly switch from go get
          
          This is not valid in go 1.14, and according to their release notes was
          ignored or caused the build to fail.
          
          Signed-off-by: William Hubbs  gentoo.org>
          
           eclass/go-module.eclass | 2 --
           1 file changed, 2 deletions(-)
          
          diff --git a/eclass/go-module.eclass b/eclass/go-module.eclass
          index 68a72d12e1b..08c123873c4 100644
          --- a/eclass/go-module.eclass
          +++ b/eclass/go-module.eclass
          @@ -394,12 +394,10 @@ _go-module_src_unpack_verify_gosum() {
          # 'go mod tidy' && 'go get' will flag it.
          # -v = verbose
          # -d = download only, don't install
          -   # -mod readonly = treat modules as readonly source
          einfo "Verifying linked Golang modules"
          go get \
          -v \
          -d \
          -   -mod readonly \
          all \
          || die "Some module is missing, update EGO_SUM"
           }
          
          
          

          [gentoo-commits] repo/gentoo:master commit in: app-text/texlive-core/

          commit: 6dca6ef1f07d027f41a4bc5a621b5329bcd9419f
          Author: Mikle Kolyada  gentoo  org>
          AuthorDate: Fri Mar  6 15:13:16 2020 +
          Commit: Mikle Kolyada  gentoo  org>
          CommitDate: Fri Mar  6 15:13:59 2020 +
          URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6dca6ef1
          
          app-text/texlive-core: fix poppler-0.86 compat
          
          Closes: https://bugs.gentoo.org/711096
          Package-Manager: Portage-2.3.89, Repoman-2.3.20
          Signed-off-by: Mikle Kolyada  gentoo.org>
          
           app-text/texlive-core/Manifest|   1 +
           app-text/texlive-core/texlive-core-2019-r9.ebuild | 363 ++
           2 files changed, 364 insertions(+)
          
          diff --git a/app-text/texlive-core/Manifest b/app-text/texlive-core/Manifest
          index bf80173f1e0..f1373b1fbab 100644
          --- a/app-text/texlive-core/Manifest
          +++ b/app-text/texlive-core/Manifest
          @@ -1,6 +1,7 @@
           DIST texlive-20190410-source.tar.xz 53783408 BLAKE2B 
          8e34c7c2b74eab1c4d16ddbf7eddd8566593e6d68c42a2634760f11d86e68970698d8b9deddcf3297966968ede11ecf30e0b04ec19b708dc3e6d0a2abcc3799d
           SHA512 
          7759d8e668e53c0c73e48907096da9d8fb6384dd9c3342ddfb05e17d077054c5351d35256cf4e63a6da502de2f09f521979bede7209cdd5bd8ae80eba0efed2e
           DIST texlive-core-patches-2019-4.tar.xz 11932 BLAKE2B 
          5e73e2bd3afeb904f2b8898081ffd770c9ab152368ae5a8699d5f63507e3c0584901d7d6f8fece7724b8e744d7816fe31db4b96962c0550491a57a6d51adb296
           SHA512 
          fce31563f8c7e8f1f0bdcba9c5108d9f5d14529c22c110e33f32a6367560f7f255e51a1e86f1d5c8fb275085ff3ba6d0f5f474acd79ff61d67be795dfb330708
           DIST texlive-core-patches-2019-8.tar.xz 15172 BLAKE2B 
          97ac7855200fcf86463e09df1bdd30f9ebf50e8d207a136ed9dd380776f15d0a883b5eaec22ede4ae9e5201dc47cc40854e1ac77d197fe2bc8c0f5a1c287c1eb
           SHA512 
          1a9af52496a7cb4f8e0223811ac84e7adf6ff8d63ad1c29d5c738716e4a45db1375e3f67324104e6a40a93f68de46d7326b3e851a4e33ab66ae562667e4a883e
          +DIST texlive-core-patches-2019-9.tar.xz 15368 BLAKE2B 
          4beaf8d071b9e3c5a1bfeb4ae617af13b0ebbab564c8be69da746be656235102d55d4ed01f65b016b804914228ed852510df659367e72fb6dfabe2eaf6b77201
           SHA512 
          45da734b0c12ab7f12bdec9e414f7fa73740dba9c628c1954560b5d255f3024224025bdcf4866ee79575abb49a1af62005cb266165bf9dd338fe9393217f9e83
           DIST texlive-module-a2ping-2019.tar.xz 30616 BLAKE2B 
          545abfdd3aa23b8d2bed608d7b7aef0f9578d5c4d6039880d435144c687014edb8c841afcb2d9ca1fc48a365b2bcb57832d49d1c6bb35480a01a813e40e18ea6
           SHA512 
          983084ca3d70eff729d81d5d52a74e1bf1f95e384916bc81d17be81290f70c1da5ac891c1665a2451975f36fd56ea0036e1d0dc46b2e98b61ddc660ac044c23c
           DIST texlive-module-a2ping.doc-2019.tar.xz 39740 BLAKE2B 
          1a9cf6e4cf4dd4dd7677efddafc9da191ab3c34eea3b7bd0f51937f6946e1696b858aa9d53e7599c220933b06bc0332869a0bd596ca66b9801b48adb5ab1aa2b
           SHA512 
          daeefb01a0197e3b7751614cb84e2926f670d36b7e8a389bfbbe39cbd941c4d10ef5112593bfb88e11fa15f7f7bb07f2538c7d0a68cefe1482bbdaf02d475512
           DIST texlive-module-adhocfilelist-2019.tar.xz 3600 BLAKE2B 
          cf6e37b1b3ce64ee7033f43677416c3de6abf2859bb2d985795608f8ccbfc09f842cd3d2664840ff64a7352f179abe4e5fec096b25326a47bd074cbd26bce78d
           SHA512 
          57436dae1489c0f614c4b002f83d34a711398a762ac532b44b1d91a51d068462aaedb5b034923629f7630f039988452eb833d1e98af389c788091517bbee8954
          
          diff --git a/app-text/texlive-core/texlive-core-2019-r9.ebuild 
          b/app-text/texlive-core/texlive-core-2019-r9.ebuild
          new file mode 100644
          index 000..c559ea59e3d
          --- /dev/null
          +++ b/app-text/texlive-core/texlive-core-2019-r9.ebuild
          @@ -0,0 +1,363 @@
          +# Copyright 1999-2020 Gentoo Authors
          +# Distributed under the terms of the GNU General Public License v2
          +
          +EAPI=7
          +
          +TL_SOURCE_VERSION=20190410
          +
          +inherit flag-o-matic toolchain-funcs libtool texlive-common
          +
          +MY_P=${PN%-core}-${TL_SOURCE_VERSION}-source
          +
          +PATCHLEVEL=9
          +
          +DESCRIPTION="A complete TeX distribution"
          +HOMEPAGE="https://tug.org/texlive/";
          +SLOT="0"
          +LICENSE="GPL-2 LPPL-1.3c TeX"
          +
          +SRC_URI="mirror://gentoo/${MY_P}.tar.xz
          +   mirror://gentoo/${PN}-patches-${PV}-${PATCHLEVEL}.tar.xz
          +   mirror://gentoo/texlive-tlpdb-${PV}.tar.xz"
          +
          +TL_CORE_BINEXTRA_MODULES="
          +   a2ping adhocfilelist arara asymptote bundledoc checklistings ctan_chk
          +   ctanify ctanupload ctie cweb de-macro dtl dtxgen dvi2tty dviasm dvicopy
          +   dvidvi dviljk dvipos findhyph fragmaster hook-pre-commit-pkg hyphenex
          +   installfont lacheck latex-git-log latex-papersize latex2man latex2nemeth
          +   latexfileversion latexpand latexindent ltxfileinfo ltximg listings-ext 
          make4ht
          +   match_parens mflua mkjobtexmf patgen pdfbook2 pdfcrop pdflatexpicscale 
          pdftools
          +   pdfxup pfarrei pkfix pkfix-helper purifyeps seetexk srcredact sty2dtx
          +   synctex tex4ebook texcount texdef texdiff texdirflatten texdoc texfot
          +   texliveonfly texloganalyser texosquery texware tie tpic2pdftex 
          typeoutfileinfo
          +   web collection-binextra
          +   "
          +TL_CORE_BINEXTRA_DOC_MODULES="
          +   a2ping.doc adhocfilelist.doc arara.doc asymptote.doc bundledoc.doc
          +   checklistings.doc ctan_chk.doc ctanify.doc ctanupload.doc ctie.doc
          +   cweb.doc de-macro.doc dtl.doc dtxgen.doc dvi2tty.doc dviasm.doc 
          

          [gentoo-commits] repo/gentoo:master commit in: sci-libs/m4rie/

          commit: 10c3378f2ec1f4f02d92d3ad4fc8bb4a548bc862
          Author: Michael Orlitzky  gentoo  org>
          AuthorDate: Fri Mar  6 14:52:27 2020 +
          Commit: Michael Orlitzky  gentoo  org>
          CommitDate: Fri Mar  6 14:59:20 2020 +
          URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10c3378f
          
          sci-libs/m4rie: new package for matrices over GF(2^e) with "e" small.
          
          The m4rie package is an extension of sci-libs/m4ri. It is used by
          SageMath, which can now detect and use the system copy of m4rie. Its
          inclusion therefore prevents pointless rebuilds of m4rie by users of
          SageMath on Gentoo. The ebuild was imported from the sage-on-gentoo
          overlay where François Bissey has been maintaining it.
          
          Closes: https://bugs.gentoo.org/711498
          Package-Manager: Portage-2.3.84, Repoman-2.3.20
          Signed-off-by: Michael Orlitzky  gentoo.org>
          
           sci-libs/m4rie/Manifest  |  1 +
           sci-libs/m4rie/m4rie-20200115.ebuild | 31 +++
           sci-libs/m4rie/metadata.xml  | 30 ++
           3 files changed, 62 insertions(+)
          
          diff --git a/sci-libs/m4rie/Manifest b/sci-libs/m4rie/Manifest
          new file mode 100644
          index 000..4dda6fb591c
          --- /dev/null
          +++ b/sci-libs/m4rie/Manifest
          @@ -0,0 +1 @@
          +DIST m4rie-20200115.tar.gz 500702 BLAKE2B 
          d8b1506ef9902def6577851a97dd6f7da986dce39b3250f9f9b66f9caf8f811568b7975165fb75b6b8ab3c9faf65d890f7c2254725224266f1250a0bcf18a464
           SHA512 
          22c990cf06de9ac790f82f48e498b2bfc87fdf6834257f4e4a4c44e2446b4226438d21692d654008b58df36d8da746bba04dcf1a3d50e34ccf8c678efd5b642b
          
          diff --git a/sci-libs/m4rie/m4rie-20200115.ebuild 
          b/sci-libs/m4rie/m4rie-20200115.ebuild
          new file mode 100644
          index 000..676a82f2a93
          --- /dev/null
          +++ b/sci-libs/m4rie/m4rie-20200115.ebuild
          @@ -0,0 +1,31 @@
          +# Copyright 1999-2020 Gentoo Authors
          +# Distributed under the terms of the GNU General Public License v2
          +
          +EAPI=7
          +
          +DESCRIPTION="Fast dense matrix arithmetic over GF(2^e) for 2 <= e <= 16"
          +HOMEPAGE="https://bitbucket.org/malb/m4rie/";
          +SRC_URI="https://bitbucket.org/malb/${PN}/downloads/${P}.tar.gz";
          +
          +LICENSE="GPL-2+"
          +SLOT="0"
          +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
          +IUSE="debug static-libs"
          +
          +DEPEND=">=sci-libs/m4ri-20140914"
          +RDEPEND="${DEPEND}"
          +
          +src_configure() {
          +   # m4rie doesn't actually have any openmp code. The configure flag
          +   # stems from a mistaken belief that it needs to be there to use the
          +   # openmp code in m4ri.
          +   econf \
          +   --disable-openmp \
          +   $(use_enable debug) \
          +   $(use_enable static-libs static)
          +}
          +
          +src_install(){
          +   default
          +   find "${ED}" -name '*.la' -delete || die
          +}
          
          diff --git a/sci-libs/m4rie/metadata.xml b/sci-libs/m4rie/metadata.xml
          new file mode 100644
          index 000..33cb9a18e32
          --- /dev/null
          +++ b/sci-libs/m4rie/metadata.xml
          @@ -0,0 +1,30 @@
          +
          +http://www.gentoo.org/dtd/metadata.dtd";>
          +
          +  
          +m...@gentoo.org
          +  
          +  
          +  
          +frp.bis...@gmail.com
          +François Bissey
          +  
          +  
          +proxy-ma...@gentoo.org
          +Proxy Maintainers
          +  
          +
          +  
          +M4RIE is a library for fast arithmetic with dense matrices over
          +GF(2^e) for "e" between 2 and 16, inclusive. The name stems from
          +the fact that it relies heavily on M4RI.
          +  
          +
          +  
          +malb/m4rie
          +  
          +
          
          
          

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

          commit: 6840a814528be31440ffb8c9dbfb0636a88c4c45
          Author: Michał Górny  gentoo  org>
          AuthorDate: Fri Mar  6 14:12:22 2020 +
          Commit: Michał Górny  gentoo  org>
          CommitDate: Fri Mar  6 14:38:27 2020 +
          URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6840a814
          
          dev-python/django-picklefield: Drop to ~arch
          
          Signed-off-by: Michał Górny  gentoo.org>
          
           dev-python/django-picklefield/django-picklefield-0.3.2.ebuild | 2 +-
           1 file changed, 1 insertion(+), 1 deletion(-)
          
          diff --git a/dev-python/django-picklefield/django-picklefield-0.3.2.ebuild 
          b/dev-python/django-picklefield/django-picklefield-0.3.2.ebuild
          index 3e50ea10e5f..ea7ba164cbd 100644
          --- a/dev-python/django-picklefield/django-picklefield-0.3.2.ebuild
          +++ b/dev-python/django-picklefield/django-picklefield-0.3.2.ebuild
          @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
           
           LICENSE="MIT"
           SLOT="0"
          -KEYWORDS="amd64 x86"
          +KEYWORDS="~amd64 ~x86"
           IUSE=""
           
           RDEPEND=">=dev-python/django-1.1.1[${PYTHON_USEDEP}]
          
          
          

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

          commit: 5e6dbf5ab349685d37264746fbb3930965bb346c
          Author: Michał Górny  gentoo  org>
          AuthorDate: Fri Mar  6 14:12:15 2020 +
          Commit: Michał Górny  gentoo  org>
          CommitDate: Fri Mar  6 14:38:24 2020 +
          URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e6dbf5a
          
          dev-python/django-discover-runner: Drop to ~arch
          
          Signed-off-by: Michał Górny  gentoo.org>
          
           dev-python/django-discover-runner/django-discover-runner-1.0.ebuild | 2 +-
           1 file changed, 1 insertion(+), 1 deletion(-)
          
          diff --git 
          a/dev-python/django-discover-runner/django-discover-runner-1.0.ebuild 
          b/dev-python/django-discover-runner/django-discover-runner-1.0.ebuild
          index ea83c0c6569..b007078eb09 100644
          --- a/dev-python/django-discover-runner/django-discover-runner-1.0.ebuild
          +++ b/dev-python/django-discover-runner/django-discover-runner-1.0.ebuild
          @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
           
           LICENSE="BSD"
           SLOT="0"
          -KEYWORDS="amd64 x86"
          +KEYWORDS="~amd64 ~x86"
           IUSE=""
           
           DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
          
          
          

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

          commit: 16ab01b9aa6c6e0fcb76916af6e52e1da32f63aa
          Author: Michał Górny  gentoo  org>
          AuthorDate: Fri Mar  6 14:12:12 2020 +
          Commit: Michał Górny  gentoo  org>
          CommitDate: Fri Mar  6 14:38:23 2020 +
          URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16ab01b9
          
          dev-python/django-appconf: Drop to ~arch
          
          Signed-off-by: Michał Górny  gentoo.org>
          
           dev-python/django-appconf/django-appconf-1.0.1.ebuild | 2 +-
           1 file changed, 1 insertion(+), 1 deletion(-)
          
          diff --git a/dev-python/django-appconf/django-appconf-1.0.1.ebuild 
          b/dev-python/django-appconf/django-appconf-1.0.1.ebuild
          index 03ff2037c41..859b0987c16 100644
          --- a/dev-python/django-appconf/django-appconf-1.0.1.ebuild
          +++ b/dev-python/django-appconf/django-appconf-1.0.1.ebuild
          @@ -16,7 +16,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
           
           LICENSE="BSD"
           SLOT="0"
          -KEYWORDS="amd64 x86"
          +KEYWORDS="~amd64 ~x86"
           IUSE="doc"
           
           RDEPEND="
          
          
          

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

          commit: 0c7224f53d09bbebebabcfb1180ba0e749b344fb
          Author: Michał Górny  gentoo  org>
          AuthorDate: Fri Mar  6 14:12:25 2020 +
          Commit: Michał Górny  gentoo  org>
          CommitDate: Fri Mar  6 14:38:28 2020 +
          URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c7224f5
          
          dev-python/django-recaptcha: Drop to ~arch
          
          Signed-off-by: Michał Górny  gentoo.org>
          
           dev-python/django-recaptcha/django-recaptcha-1.0.5.ebuild | 2 +-
           1 file changed, 1 insertion(+), 1 deletion(-)
          
          diff --git a/dev-python/django-recaptcha/django-recaptcha-1.0.5.ebuild 
          b/dev-python/django-recaptcha/django-recaptcha-1.0.5.ebuild
          index 20106016cf2..032d5b6cdee 100644
          --- a/dev-python/django-recaptcha/django-recaptcha-1.0.5.ebuild
          +++ b/dev-python/django-recaptcha/django-recaptcha-1.0.5.ebuild
          @@ -13,7 +13,7 @@ 
          SRC_URI="https://github.com/praekelt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
           
           LICENSE="BSD"
           SLOT="0"
          -KEYWORDS="amd64 x86"
          +KEYWORDS="~amd64 ~x86"
           IUSE="test"
           RESTRICT="!test? ( test )"
           
          
          
          

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

          commit: 55715af34bf98ceed082eed0fa33da0fa39ac4c8
          Author: Michał Górny  gentoo  org>
          AuthorDate: Fri Mar  6 14:12:17 2020 +
          Commit: Michał Górny  gentoo  org>
          CommitDate: Fri Mar  6 14:38:25 2020 +
          URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=55715af3
          
          dev-python/django-haystack: Drop to ~arch
          
          Signed-off-by: Michał Górny  gentoo.org>
          
           dev-python/django-haystack/django-haystack-2.4.1.ebuild | 2 +-
           1 file changed, 1 insertion(+), 1 deletion(-)
          
          diff --git a/dev-python/django-haystack/django-haystack-2.4.1.ebuild 
          b/dev-python/django-haystack/django-haystack-2.4.1.ebuild
          index 54d73485aca..86545144dc6 100644
          --- a/dev-python/django-haystack/django-haystack-2.4.1.ebuild
          +++ b/dev-python/django-haystack/django-haystack-2.4.1.ebuild
          @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
           
           LICENSE="BSD"
           SLOT="0"
          -KEYWORDS="amd64 x86"
          +KEYWORDS="~amd64 ~x86"
           IUSE="doc test"
           
           RDEPEND=">=dev-python/django-1.6[${PYTHON_USEDEP}]"
          
          
          

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

          commit: 68789c2217e3b7876a73c4843aab2f8f5ddf5119
          Author: Michał Górny  gentoo  org>
          AuthorDate: Fri Mar  6 14:12:30 2020 +
          Commit: Michał Górny  gentoo  org>
          CommitDate: Fri Mar  6 14:38:29 2020 +
          URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68789c22
          
          dev-python/django-setuptest: Drop to ~arch
          
          Signed-off-by: Michał Górny  gentoo.org>
          
           dev-python/django-setuptest/django-setuptest-0.2.1.ebuild | 2 +-
           1 file changed, 1 insertion(+), 1 deletion(-)
          
          diff --git a/dev-python/django-setuptest/django-setuptest-0.2.1.ebuild 
          b/dev-python/django-setuptest/django-setuptest-0.2.1.ebuild
          index 7505f891152..522ae886fd4 100644
          --- a/dev-python/django-setuptest/django-setuptest-0.2.1.ebuild
          +++ b/dev-python/django-setuptest/django-setuptest-0.2.1.ebuild
          @@ -13,7 +13,7 @@ 
          SRC_URI="https://github.com/praekelt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
           LICENSE="MIT"
           SLOT="0"
           
          -KEYWORDS="amd64 x86"
          +KEYWORDS="~amd64 ~x86"
           IUSE=""
           
           RDEPEND="dev-python/pep8[${PYTHON_USEDEP}]
          
          
          

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

          commit: 6d0858ec7469d1327e9fad71108a9a637469851e
          Author: Michał Górny  gentoo  org>
          AuthorDate: Fri Mar  6 14:13:35 2020 +
          Commit: Michał Górny  gentoo  org>
          CommitDate: Fri Mar  6 14:38:30 2020 +
          URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d0858ec
          
          dev-python/django: Remove vulnerable (drop to ~arch)
          
          Bug: https://bugs.gentoo.org/692384
          Bug: https://bugs.gentoo.org/701744
          Bug: https://bugs.gentoo.org/706204
          Bug: https://bugs.gentoo.org/707998
          Bug: https://bugs.gentoo.org/711522
          Signed-off-by: Michał Górny  gentoo.org>
          
           dev-python/django/Manifest|  4 --
           dev-python/django/django-2.1.8.ebuild | 88 -
           dev-python/django/django-2.1.9.ebuild | 88 -
           dev-python/django/django-2.2.1.ebuild | 91 ---
           dev-python/django/django-2.2.2.ebuild | 91 ---
           5 files changed, 362 deletions(-)
          
          diff --git a/dev-python/django/Manifest b/dev-python/django/Manifest
          index 268a20019d7..04789f79fe5 100644
          --- a/dev-python/django/Manifest
          +++ b/dev-python/django/Manifest
          @@ -1,5 +1 @@
          -DIST Django-2.1.8.tar.gz 8613572 BLAKE2B 
          543e41f1b4031b624f903f075e95af7e010510f4c265aebd35a5f6b3f074703b3a4b54bc7f2a9752e717ac99d20c42d6e34e556ca619a531cf8c66622ce1419a
           SHA512 
          f84fcdf919091a9db6289f25da601ce447382f79118a99f8f316b2479a9325d629f725edb4618300f76e23bd68ae45ff4c6b6576988f109d1a7ba715c73327c3
          -DIST Django-2.1.9.tar.gz 8608747 BLAKE2B 
          d5ef1aacc30067dfe5369655eb23ea67788f22edcf8ba070944c0fb4fdf2fc3628a364d480a3d47bae0339255fb66a3bc27f11eb5f07280812ab5f57b4367c64
           SHA512 
          1f6ad122012d898da52ce44465700d2492ef9002d5c327b25e3edfe2116b8a1143feab79751a581029664311452d52d96fe116d8817edb0ef7d7dbddfc0a5ec7
          -DIST Django-2.2.1.tar.gz 8973889 BLAKE2B 
          890ab092807a587dbaba69fb6da7a4c53c8e976d3a4c29003549d72dd69c374640df280885a62845dda0d00f432e398747b9ed652aebbd7e3434c07e71d9a80f
           SHA512 
          661ed7352847d2167f8d3410b476cb585a269ef5d3afe0cb59cf0c9a2ea22f0572f12825368bc222f33f8c6d4c71767adade97e25b69f5a619795ccb670773e2
           DIST Django-2.2.11.tar.gz 9010479 BLAKE2B 
          9df126f62368c43a64fcdbf9d3831c78dd37e41eb88670517eeec84043083cc437d95301d86798b5945313b515d63bd12cba8484e74b6da2311af2e86ce87adc
           SHA512 
          b33ece4606e5a23626caee121018522166a0e1f32bd41ea4eb3d4c1f624943990a07e04c5a4f5d52958e733790178474e9314d346ce1e4d5d6e49ac2a700c857
          -DIST Django-2.2.2.tar.gz 8841523 BLAKE2B 
          fc498c19caed7fc8766b015df3049ce325886ebcebf02a1f6618c13ea9d12dea56ad65b860f3b0dee0b6532d97e754bb8cca2c3f0a375c630c28d52a2fd62a2e
           SHA512 
          87e0a7b2d0e6d6149c746a7cd5547351ba002c6eaedac160e72544b429d41b133da5c36256a07155b7b4743969e9ff4c3ac890c9925db428117f68a67104df0f
          
          diff --git a/dev-python/django/django-2.1.8.ebuild 
          b/dev-python/django/django-2.1.8.ebuild
          deleted file mode 100644
          index ad94ca7e568..000
          --- a/dev-python/django/django-2.1.8.ebuild
          +++ /dev/null
          @@ -1,88 +0,0 @@
          -# Copyright 1999-2020 Gentoo Authors
          -# Distributed under the terms of the GNU General Public License v2
          -
          -EAPI=7
          -
          -PYTHON_COMPAT=( python3_{6,7} )
          -PYTHON_REQ_USE='sqlite?,threads(+)'
          -
          -inherit bash-completion-r1 distutils-r1 eutils
          -
          -MY_PN="Django"
          -MY_P="${MY_PN}-${PV}"
          -
          -DESCRIPTION="High-level Python web framework"
          -HOMEPAGE="https://www.djangoproject.com/ https://pypi.org/project/Django/";
          -SRC_URI="https://www.djangoproject.com/m/releases/$(ver_cut 
          1-2)/${MY_P}.tar.gz"
          -
          -LICENSE="BSD"
          -# admin fonts: Roboto (media-fonts/roboto)
          -LICENSE+=" Apache-2.0"
          -# admin icons, jquery, xregexp.js
          -LICENSE+=" MIT"
          -SLOT="0"
          -KEYWORDS="amd64 ~arm64 ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos 
          ~x64-macos ~x86-macos"
          -IUSE="doc sqlite test"
          -RESTRICT="!test? ( test )"
          -
          -RDEPEND="dev-python/pytz[${PYTHON_USEDEP}]"
          -BDEPEND="
          -   dev-python/setuptools[${PYTHON_USEDEP}]
          -   doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
          -   test? (
          -   $(python_gen_impl_dep sqlite)
          -   dev-python/docutils[${PYTHON_USEDEP}]
          -   dev-python/numpy[${PYTHON_USEDEP}]
          -   dev-python/pillow[${PYTHON_USEDEP}]
          -   dev-python/pyyaml[${PYTHON_USEDEP}]
          -   dev-python/mock[${PYTHON_USEDEP}]
          -   )"
          -
          -S="${WORKDIR}/${MY_P}"
          -
          -PATCHES=(
          -   "${FILESDIR}"/${PN}-2.0.7-bashcomp.patch
          -)
          -
          -python_prepare_all() {
          -   # Prevent d'loading in the doc build
          -   sed -e '/^"sphinx.ext.intersphinx",/d' -i docs/conf.py || die
          -
          -   distutils-r1_python_prepare_all
          -}
          -
          -python_compile_all() {
          -   use doc && emake -C docs html
          -}
          -
          -python_test() {
          -   # Tests have non-standard assumptions about PYTHONPATH,
          -   # and don't work with ${BUILD_DIR}/lib.
          -   PYTHONPATH=. "${PYTHON}" tests/runtests.py --settings=test_sqlite -v2 \
          -   || die "Tests fail with ${EPYTHON}"
          -}
          -
          -python_install_all() {
          -   newbashcomp extras/django_bash_completion ${PN}-admin
          -   bashcomp_alias ${PN}-admin django-admin.py
          -
          -   if use doc; then
          -

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

          commit: 1e963e47282b44f38737d37f4078969c6716b1a6
          Author: Michał Górny  gentoo  org>
          AuthorDate: Fri Mar  6 14:12:20 2020 +
          Commit: Michał Górny  gentoo  org>
          CommitDate: Fri Mar  6 14:38:26 2020 +
          URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e963e47
          
          dev-python/django-nose: Drop to ~arch
          
          Signed-off-by: Michał Górny  gentoo.org>
          
           dev-python/django-nose/django-nose-1.4.4.ebuild | 2 +-
           1 file changed, 1 insertion(+), 1 deletion(-)
          
          diff --git a/dev-python/django-nose/django-nose-1.4.4.ebuild 
          b/dev-python/django-nose/django-nose-1.4.4.ebuild
          index cac648de9f1..e95c0653998 100644
          --- a/dev-python/django-nose/django-nose-1.4.4.ebuild
          +++ b/dev-python/django-nose/django-nose-1.4.4.ebuild
          @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
           
           LICENSE="BSD"
           SLOT="0"
          -KEYWORDS="amd64 x86"
          +KEYWORDS="~amd64 ~x86"
           IUSE="test"
           RESTRICT="!test? ( test )"
           
          
          
          

          [gentoo-commits] repo/gentoo:master commit in: dev-python/qrcode/files/, dev-python/qrcode/

          commit: 3876f8017ea895e349f5beb4dde8364b9d79e979
          Author: Michał Górny  gentoo  org>
          AuthorDate: Fri Mar  6 13:48:18 2020 +
          Commit: Michał Górny  gentoo  org>
          CommitDate: Fri Mar  6 14:38:21 2020 +
          URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3876f801
          
          dev-python/qrcode: Remove old
          
          Signed-off-by: Michał Górny  gentoo.org>
          
           dev-python/qrcode/Manifest   |  1 -
           dev-python/qrcode/files/qrcode-5.1-unicode.patch | 34 
           dev-python/qrcode/qrcode-5.1-r1.ebuild   | 41 
           3 files changed, 76 deletions(-)
          
          diff --git a/dev-python/qrcode/Manifest b/dev-python/qrcode/Manifest
          index 33b3e69372f..c3b31a21768 100644
          --- a/dev-python/qrcode/Manifest
          +++ b/dev-python/qrcode/Manifest
          @@ -1,2 +1 @@
          -DIST qrcode-5.1.tar.gz 22259 BLAKE2B 
          1aad710fbfdaa1c1be505038ceedbf02de8bcb2a37ead59265ff03af63b96d6cd740672cb2bd3a8f3b67eb981ed791cf2d53050c02d1499e6efcf1fcce2903c1
           SHA512 
          67a7bb51fe2386f3b1ac0b799d3850d3ca4f61286fdc809654df3f5a1071b503707a9a3e82e595b7611dd9d7b7e74b36e19b86942fb5ad94c256cd7ca9aa02f3
           DIST qrcode-6.1.tar.gz 29363 BLAKE2B 
          5f31035b6c548c710d0d8198428612fc52417be7af5b5f412a42d264cb6a3ba96de65651049390107cc77e886df2b139942266aba579896f05692177b394ea11
           SHA512 
          4831553932442f5535cba15d5958a656b399112f0f379c28ad9b610c33d88ec6d0613dc7047a2315606e49f027bfd13a15a332ce86b80040d56e1114a0f62251
          
          diff --git a/dev-python/qrcode/files/qrcode-5.1-unicode.patch 
          b/dev-python/qrcode/files/qrcode-5.1-unicode.patch
          deleted file mode 100644
          index 2d628c68e5a..000
          --- a/dev-python/qrcode/files/qrcode-5.1-unicode.patch
          +++ /dev/null
          @@ -1,34 +0,0 @@
          -From 0a9f17d3afb0ff01f68c2276ec0844d329a6add9 Mon Sep 17 00:00:00 2001
          -From: Chris Beaven 
          -Date: Mon, 3 Nov 2014 10:56:14 -0600
          -Subject: [PATCH] Fix script piping to stdout in Python 3
          -
          -Fixes #66
          
          - qrcode/console_scripts.py | 13 -
          - 1 file changed, 12 insertions(+), 1 deletion(-)
          -
          -diff --git a/qrcode/console_scripts.py b/qrcode/console_scripts.py
          -index d215993..c51463b 100755
           a/qrcode/console_scripts.py
          -+++ b/qrcode/console_scripts.py
          -@@ -57,7 +57,18 @@ def main(args=sys.argv[1:]):
          - return
          - 
          - img = qr.make_image(image_factory=image_factory)
          --img.save(sys.stdout)
          -+
          -+sys.stdout.flush()
          -+if sys.version_info[0] >= 3:
          -+buff = sys.stdout.buffer
          -+else:
          -+if sys.platform == 'win32':
          -+import os
          -+import msvcrt
          -+msvcrt.setmode(sys.stdout.fileno(), os.O_BINARY)
          -+buff = sys.stdout
          -+
          -+img.save(buff)
          - 
          - 
          - if __name__ == "__main__":
          
          diff --git a/dev-python/qrcode/qrcode-5.1-r1.ebuild 
          b/dev-python/qrcode/qrcode-5.1-r1.ebuild
          deleted file mode 100644
          index 2a2e7529533..000
          --- a/dev-python/qrcode/qrcode-5.1-r1.ebuild
          +++ /dev/null
          @@ -1,41 +0,0 @@
          -# Copyright 1999-2020 Gentoo Authors
          -# Distributed under the terms of the GNU General Public License v2
          -
          -EAPI=5
          -
          -PYTHON_COMPAT=( python3_6 )
          -
          -inherit distutils-r1
          -
          -DESCRIPTION="QR Code generator on top of PIL"
          -HOMEPAGE="https://pypi.org/project/qrcode/";
          -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
          -
          -LICENSE="BSD"
          -SLOT="0"
          -KEYWORDS="amd64 ~arm ~arm64 x86"
          -IUSE="test"
          -RESTRICT="!test? ( test )"
          -
          -# optional deps:
          -# - pillow and lxml for svg backend, set as hard deps
          -RDEPEND="
          -   dev-python/six[${PYTHON_USEDEP}]
          -   dev-python/lxml[${PYTHON_USEDEP}]
          -   dev-python/pillow[${PYTHON_USEDEP}]"
          -DEPEND="
          -   dev-python/setuptools[${PYTHON_USEDEP}]
          -   test? ( ${RDEPEND} )"
          -
          -PATCHES=(
          -   "${FILESDIR}"/${P}-unicode.patch
          -)
          -
          -python_test() {
          -   "${PYTHON}" -m unittest discover > /dev/tty | less || die "Testing 
          failed with ${EPYTHON}"
          -}
          -
          -src_install() {
          -   distutils-r1_src_install
          -   doman doc/qr.1
          -}
          
          
          

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

          commit: 6d93e409fde64132b10dba78b048a4750493a32d
          Author: Michał Górny  gentoo  org>
          AuthorDate: Fri Mar  6 13:54:28 2020 +
          Commit: Michał Górny  gentoo  org>
          CommitDate: Fri Mar  6 14:38:22 2020 +
          URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d93e409
          
          dev-python/django: Bump to 2.2.11
          
          Signed-off-by: Michał Górny  gentoo.org>
          
           dev-python/django/Manifest |  1 +
           dev-python/django/django-2.2.11.ebuild | 77 ++
           2 files changed, 78 insertions(+)
          
          diff --git a/dev-python/django/Manifest b/dev-python/django/Manifest
          index a24eca6d3aa..268a20019d7 100644
          --- a/dev-python/django/Manifest
          +++ b/dev-python/django/Manifest
          @@ -1,4 +1,5 @@
           DIST Django-2.1.8.tar.gz 8613572 BLAKE2B 
          543e41f1b4031b624f903f075e95af7e010510f4c265aebd35a5f6b3f074703b3a4b54bc7f2a9752e717ac99d20c42d6e34e556ca619a531cf8c66622ce1419a
           SHA512 
          f84fcdf919091a9db6289f25da601ce447382f79118a99f8f316b2479a9325d629f725edb4618300f76e23bd68ae45ff4c6b6576988f109d1a7ba715c73327c3
           DIST Django-2.1.9.tar.gz 8608747 BLAKE2B 
          d5ef1aacc30067dfe5369655eb23ea67788f22edcf8ba070944c0fb4fdf2fc3628a364d480a3d47bae0339255fb66a3bc27f11eb5f07280812ab5f57b4367c64
           SHA512 
          1f6ad122012d898da52ce44465700d2492ef9002d5c327b25e3edfe2116b8a1143feab79751a581029664311452d52d96fe116d8817edb0ef7d7dbddfc0a5ec7
           DIST Django-2.2.1.tar.gz 8973889 BLAKE2B 
          890ab092807a587dbaba69fb6da7a4c53c8e976d3a4c29003549d72dd69c374640df280885a62845dda0d00f432e398747b9ed652aebbd7e3434c07e71d9a80f
           SHA512 
          661ed7352847d2167f8d3410b476cb585a269ef5d3afe0cb59cf0c9a2ea22f0572f12825368bc222f33f8c6d4c71767adade97e25b69f5a619795ccb670773e2
          +DIST Django-2.2.11.tar.gz 9010479 BLAKE2B 
          9df126f62368c43a64fcdbf9d3831c78dd37e41eb88670517eeec84043083cc437d95301d86798b5945313b515d63bd12cba8484e74b6da2311af2e86ce87adc
           SHA512 
          b33ece4606e5a23626caee121018522166a0e1f32bd41ea4eb3d4c1f624943990a07e04c5a4f5d52958e733790178474e9314d346ce1e4d5d6e49ac2a700c857
           DIST Django-2.2.2.tar.gz 8841523 BLAKE2B 
          fc498c19caed7fc8766b015df3049ce325886ebcebf02a1f6618c13ea9d12dea56ad65b860f3b0dee0b6532d97e754bb8cca2c3f0a375c630c28d52a2fd62a2e
           SHA512 
          87e0a7b2d0e6d6149c746a7cd5547351ba002c6eaedac160e72544b429d41b133da5c36256a07155b7b4743969e9ff4c3ac890c9925db428117f68a67104df0f
          
          diff --git a/dev-python/django/django-2.2.11.ebuild 
          b/dev-python/django/django-2.2.11.ebuild
          new file mode 100644
          index 000..e336a179343
          --- /dev/null
          +++ b/dev-python/django/django-2.2.11.ebuild
          @@ -0,0 +1,77 @@
          +# Copyright 1999-2020 Gentoo Authors
          +# Distributed under the terms of the GNU General Public License v2
          +
          +EAPI=7
          +
          +DISTUTILS_USE_SETUPTOOLS=rdepend
          +PYTHON_COMPAT=( python3_{6,7,8} )
          +PYTHON_REQ_USE='sqlite?,threads(+)'
          +
          +inherit bash-completion-r1 distutils-r1 eutils
          +
          +MY_PN="Django"
          +MY_P="${MY_PN}-${PV}"
          +
          +DESCRIPTION="High-level Python web framework"
          +HOMEPAGE="https://www.djangoproject.com/ https://pypi.org/project/Django/";
          +SRC_URI="https://www.djangoproject.com/m/releases/$(ver_cut 
          1-2)/${MY_P}.tar.gz"
          +S="${WORKDIR}/${MY_P}"
          +
          +LICENSE="BSD"
          +# admin fonts: Roboto (media-fonts/roboto)
          +LICENSE+=" Apache-2.0"
          +# admin icons, jquery, xregexp.js
          +LICENSE+=" MIT"
          +SLOT="0"
          +KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos 
          ~x64-macos ~x86-macos"
          +IUSE="doc sqlite test"
          +RESTRICT="!test? ( test )"
          +
          +RDEPEND="
          +   dev-python/pytz[${PYTHON_USEDEP}]
          +   dev-python/python-sqlparse[${PYTHON_USEDEP}]"
          +BDEPEND="
          +   dev-python/setuptools[${PYTHON_USEDEP}]
          +   doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
          +   test? (
          +   $(python_gen_impl_dep sqlite)
          +   dev-python/docutils[${PYTHON_USEDEP}]
          +   dev-python/jinja[${PYTHON_USEDEP}]
          +   dev-python/numpy[${PYTHON_USEDEP}]
          +   dev-python/pillow[webp,${PYTHON_USEDEP}]
          +   dev-python/pyyaml[${PYTHON_USEDEP}]
          +   dev-python/tblib[${PYTHON_USEDEP}]
          +   )"
          +
          +PATCHES=(
          +   "${FILESDIR}"/${PN}-2.0.7-bashcomp.patch
          +)
          +
          +distutils_enable_sphinx docs
          +
          +python_test() {
          +   # Tests have non-standard assumptions about PYTHONPATH,
          +   # and don't work with ${BUILD_DIR}/lib.
          +   PYTHONPATH=. "${EPYTHON}" tests/runtests.py --settings=test_sqlite -v2 
          ||
          +   die "Tests fail with ${EPYTHON}"
          +}
          +
          +python_install_all() {
          +   newbashcomp extras/django_bash_completion ${PN}-admin
          +   bashcomp_alias ${PN}-admin django-admin.py
          +
          +   distutils-r1_python_install_all
          +}
          +
          +pkg_postinst() {
          +   elog "Additional Backend support can be enabled via"
          +   optfeature "MySQL backend support" dev-python/mysqlclient
          +   optfeature "PostgreSQL backend support" dev-python/psycopg:2
          +   echo ""
          +   elog "Other features can be enhanced by"
          +   optfeature "GEO Django" "sci-libs/gdal[geos]"
          +   optfeature "Memcached support" dev-python/pylibmc 
          dev-python/python-memcached
          +   optfeature "ImageField Support" dev-python/pillow
          +   optfeature 

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

          commit: 5eca3e02c87163b3c541cdee893830d201abfb86
          Author: Jory Pratt  gentoo  org>
          AuthorDate: Fri Mar  6 14:13:38 2020 +
          Commit: Jory Pratt  gentoo  org>
          CommitDate: Fri Mar  6 14:15:19 2020 +
          URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5eca3e02
          
          dev-libs/nss: Drop pem support in favor of new nss-pem package
          
          Package-Manager: Portage-2.3.92, Repoman-2.3.20
          Signed-off-by: Jory Pratt  gentoo.org>
          
           .../nss/{nss-3.50.ebuild => nss-3.50-r1.ebuild}| 22 +++---
           1 file changed, 3 insertions(+), 19 deletions(-)
          
          diff --git a/dev-libs/nss/nss-3.50.ebuild b/dev-libs/nss/nss-3.50-r1.ebuild
          similarity index 94%
          rename from dev-libs/nss/nss-3.50.ebuild
          rename to dev-libs/nss/nss-3.50-r1.ebuild
          index c3b9fde9344..b6a9c7b9594 100644
          --- a/dev-libs/nss/nss-3.50.ebuild
          +++ b/dev-libs/nss/nss-3.50-r1.ebuild
          @@ -7,20 +7,16 @@ inherit eutils flag-o-matic multilib toolchain-funcs 
          multilib-minimal
           
           NSPR_VER="4.25"
           RTM_NAME="NSS_${PV//./_}_RTM"
          -# Rev of https://git.fedorahosted.org/cgit/nss-pem.git
          -PEM_GIT_REV="429b0222759d8ad8e6dcd29e62875ae3efd69116"
          -PEM_P="${PN}-pem-20160329"
           
           DESCRIPTION="Mozilla's Network Security Services library that implements PKI 
          support"
           HOMEPAGE="http://www.mozilla.org/projects/security/pki/nss/";
           
          SRC_URI="https://archive.mozilla.org/pub/security/nss/releases/${RTM_NAME}/src/${P}.tar.gz
          -   cacert? ( 
          https://dev.gentoo.org/~axs/distfiles/${PN}-cacert-class1-class3.patch )
          -   nss-pem? ( https://dev.gentoo.org/~polynomial-c/${PEM_P}.tar.xz )"
          +   cacert? ( 
          https://dev.gentoo.org/~axs/distfiles/${PN}-cacert-class1-class3.patch )"
           
           LICENSE="|| ( MPL-2.0 GPL-2 LGPL-2.1 )"
           SLOT="0"
           KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
          ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-macos ~sparc-solaris ~x64-solaris 
          ~x86-solaris"
          -IUSE="cacert +nss-pem utils"
          +IUSE="cacert utils"
           BDEPEND="
          >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}]
           "
          @@ -46,19 +42,7 @@ PATCHES=(
          "${FILESDIR}/${PN}-3.23-hppa-byte_order.patch"
           )
           
          -src_unpack() {
          -   unpack ${A}
          -   if use nss-pem ; then
          -   mv "${PN}"/lib/ckfw/pem/ "${S}"/lib/ckfw/ || die
          -   fi
          -}
          -
           src_prepare() {
          -   if use nss-pem ; then
          -   PATCHES+=(
          -   "${FILESDIR}/${PN}-3.47-enable-pem.patch"
          -   )
          -   fi
          if use cacert ; then #521462
          PATCHES+=(
          "${DISTDIR}/${PN}-cacert-class1-class3.patch"
          @@ -280,7 +264,7 @@ multilib_src_install() {
          insinto /usr/include/nss
          doins public/nss/*.{h,api}
          insinto /usr/include/nss/private
          -   doins private/nss/{blapi,alghmac}.h
          +   doins private/nss/{blapi,alghmac,cmac}.h
           
          popd >/dev/null || die
           
          
          
          

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

          commit: 66e2f1113aeba8ee8136b27cc60fa921eda891c2
          Author: Jory Pratt  gentoo  org>
          AuthorDate: Fri Mar  6 14:15:04 2020 +
          Commit: Jory Pratt  gentoo  org>
          CommitDate: Fri Mar  6 14:15:20 2020 +
          URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66e2f111
          
          dev-libs/nss-pem: initial import to remove pem use from dev-libs/nss
          
          Package-Manager: Portage-2.3.92, Repoman-2.3.20
          Signed-off-by: Jory Pratt  gentoo.org>
          
           dev-libs/nss-pem/Manifest |  1 +
           dev-libs/nss-pem/metadata.xml | 11 +++
           dev-libs/nss-pem/nss-pem-1.0.5.ebuild | 23 +++
           3 files changed, 35 insertions(+)
          
          diff --git a/dev-libs/nss-pem/Manifest b/dev-libs/nss-pem/Manifest
          new file mode 100644
          index 000..5a3fe7560ec
          --- /dev/null
          +++ b/dev-libs/nss-pem/Manifest
          @@ -0,0 +1 @@
          +DIST nss-pem-1.0.5.tar.xz 36320 BLAKE2B 
          c2294595d95a2de2bf6d9e68dc10955297fb6ef27c9e85dbabc7854b900942070f70a8e4c1abef618e7265daa75f5bd2a2fca3fe923973345f9c1b64a3da8ff5
           SHA512 
          8dabebf114ac94441caf6d279f810de4124a3ffc05ae66777496b3e66f8b8148d535cb438a165d84f53111c468d595f3b16651cd7a990eeedca9d413aad65b2b
          
          diff --git a/dev-libs/nss-pem/metadata.xml b/dev-libs/nss-pem/metadata.xml
          new file mode 100644
          index 000..013b4adb210
          --- /dev/null
          +++ b/dev-libs/nss-pem/metadata.xml
          @@ -0,0 +1,11 @@
          +
          +http://www.gentoo.org/dtd/metadata.dtd";>
          +
          +  
          +anar...@gentoo.org
          +Jory A. Pratt
          +  
          +
          +kdudka/nss-pem
          +
          +
          
          diff --git a/dev-libs/nss-pem/nss-pem-1.0.5.ebuild 
          b/dev-libs/nss-pem/nss-pem-1.0.5.ebuild
          new file mode 100644
          index 000..e5fecd0f848
          --- /dev/null
          +++ b/dev-libs/nss-pem/nss-pem-1.0.5.ebuild
          @@ -0,0 +1,23 @@
          +# Copyright 1999-2020 Gentoo Authors
          +# Distributed under the terms of the GNU General Public License v2
          +
          +EAPI=7
          +
          +inherit cmake-multilib
          +
          +DESCRIPTION="PEM file reader for Network Security Services (NSS)"
          +HOMEPAGE="https://github.com/kdudka/nss-pem";
          +SRC_URI="https://github.com/kdudka/${PN}/releases/download/${P}/${P}.tar.xz";
          +
          +LICENSE="MPL-1.1"
          +SLOT="0"
          +KEYWORDS="~amd64 ~arm64"
          +IUSE=""
          +
          +BDEPEND=" >=dev-libs/nss-3.50-r1 "
          +RDEPEND="${BDEPEND}"
          +
          +DEPEND="<=dev-libs/nss-3.50
          +   ${RDEPEND}"
          +
          +S="${WORKDIR}/${P}/src"
          
          
          

          [gentoo-commits] proj/tex:master commit in: 2019/patches/

          commit: fe370d3fcd032cda6c0a0de31d094add85699fff
          Author: Mikle Kolyada  gentoo  org>
          AuthorDate: Fri Mar  6 14:05:12 2020 +
          Commit: Mikle Kolyada  gentoo  org>
          CommitDate: Fri Mar  6 14:05:12 2020 +
          URL:https://gitweb.gentoo.org/proj/tex.git/commit/?id=fe370d3f
          
          Add poppler-0.86 compat patch
          
          Signed-off-by: Mikle Kolyada  gentoo.org>
          
           2019/patches/texlive-core-2019-poppler086.patch | 820 
           1 file changed, 820 insertions(+)
          
          diff --git a/2019/patches/texlive-core-2019-poppler086.patch 
          b/2019/patches/texlive-core-2019-poppler086.patch
          new file mode 100644
          index 000..4ab4f95
          --- /dev/null
          +++ b/2019/patches/texlive-core-2019-poppler086.patch
          @@ -0,0 +1,820 @@
          +From 1203f6d9d51d6bedf11e36509f3a56638b1c816e Mon Sep 17 00:00:00 2001
          +From: Mikle Kolyada 
          +Date: Fri, 6 Mar 2020 13:31:24 +
          +Subject: [PATCH] poppler-0.86 compat
          +
          +Signed-off-by: Mikle Kolyada 
          +---
          + pdftoepdf.cc | 308 ++-
          + pdftosrc.cc  |  76 ++---
          + utils.c  |   1 -
          + 3 files changed, 192 insertions(+), 193 deletions(-)
          +
          +diff --git a/pdftoepdf.cc b/pdftoepdf.cc
          +index 4db0c90..d13293e 100644
          +--- a/texk/web2c/pdftexdir/pdftoepdf.cc
           b/texk/web2c/pdftexdir/pdftoepdf.cc
          +@@ -1,5 +1,5 @@
          + /*
          +-Copyright 1996-2016 Han The Thanh, 
          ++Copyright 1996-2017 Han The Thanh, 
          + 
          + This file is part of pdfTeX.
          + 
          +@@ -17,6 +17,15 @@ You should have received a copy of the GNU General Public 
          License along
          + with this program.  If not, see .
          + */
          + 
          ++/*
          ++This is based on the patch texlive-poppler-0.59.patch <2017-09-19> at
          ++https://git.archlinux.org/svntogit/packages.git/plain/texlive-bin/trunk
          ++by Arch Linux. A little modifications are made to avoid a crash for
          ++some kind of pdf images, such as figure_missing.pdf in gnuplot.
          ++The poppler should be 0.75.0 or newer versions.
          ++POPPLER_VERSION should be defined.
          ++*/
          ++
          + /* Do this early in order to avoid a conflict between
          +MINGW32  defining 'boolean' as 'unsigned char' and
          + defining Pascal's boolean as 'int'.
          +@@ -39,10 +48,7 @@ with this program.  If not, see 
          .
          + #include 
          + #define GString GooString
          + #else
          +-#include 
          +-#include 
          +-#include 
          +-#include 
          ++#error POPPLER_VERSION should be defined.
          + #endif
          + #include 
          + 
          +@@ -84,31 +90,6 @@ extern integer zround(double);
          + #define MASK_SUPPRESS_PTEX_PAGENUMBER 0x04
          + #define MASK_SUPPRESS_PTEX_INFODICT   0x08
          + 
          +-// PdfObject encapsulates the xpdf Object type,
          +-// and properly frees its resources on destruction.
          +-// Use obj-> to access members of the Object,
          +-// and &obj to get a pointer to the object.
          +-// It is no longer necessary to call Object::free explicitely.
          +-
          +-class PdfObject {
          +-  public:
          +-PdfObject() {   // nothing
          +-} ~PdfObject() {
          +-iObject.free();
          +-}
          +-Object *operator->() {
          +-return &iObject;
          +-}
          +-Object *operator&() {
          +-return &iObject;
          +-}
          +-  private: // no copying or assigning
          +-PdfObject(const PdfObject &);
          +-void operator=(const PdfObject &);
          +-  public:
          +-Object iObject;
          +-};
          +-
          + // When copying the Resources of the selected page, all objects are copied
          + // recusively top-down. Indirect objects however are not fetched during
          + // copying, but get a new object number from pdfTeX and then will be
          +@@ -139,7 +120,7 @@ struct UsedEncoding {
          + 
          + static InObj *inObjList;
          + static UsedEncoding *encodingList;
          +-static GBool isInit = gFalse;
          ++static bool isInit = false;
          + 
          + // 
          + // Maintain list of open embedded PDF files
          +@@ -212,18 +193,6 @@ static void delete_document(PdfDocument * pdf_doc)
          + delete pdf_doc;
          + }
          + 
          +-// Replacement for
          +-//  Object *initDict(Dict *dict1){ initObj(objDict); dict = dict1; return 
          this; }
          +-
          +-static void initDictFromDict(PdfObject & obj, Dict * dict)
          +-{
          +-obj->initDict(xref);
          +-for (int i = 0, l = dict->getLength(); i < l; i++) {
          +-Object obj1;
          +-obj->dictAdd(copyString(dict->getKey(i)), dict->getValNF(i, &obj1));
          +-}
          +-}
          +-
          + // 
          + 
          + static int addEncoding(GfxFont * gfont)
          +@@ -320,10 +289,10 @@ static void copyName(char *s)
          + 
          + static void copyDictEntry(Object * obj, int i)
          + {
          +-PdfObject obj1;
          +-copyName(obj->dictGetKey(i));
          ++Object obj1;
          ++copyName((char *)obj->dictGetKey(i));
          + pdf_puts(" ");
          +-obj->dictGetValNF(i, &obj1);
          ++obj1 = obj->dictGetValNF(i).copy();
          + copyObject(&obj1);
          + pdf_puts("\n");
          + }
          +@@ -348,7 +317,7 @@ static void copyFontDict(Object * obj, InObj * r)
          + pdf_puts("<<\n");
          + assert(r->type == objFont); // FontDescriptor is in fd_tree
          + for (i = 0, l = obj->dictGetLength(); i < l; ++i) {
          +-key = obj->dictGetKey(i);
          ++key = (char *)obj->dictGe

          [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/gp2c/

          commit: daf61b4defd22c00ad48673a834a0e706f2c4c4a
          Author: Michael Orlitzky  gentoo  org>
          AuthorDate: Fri Mar  6 13:54:19 2020 +
          Commit: Michael Orlitzky  gentoo  org>
          CommitDate: Fri Mar  6 13:54:19 2020 +
          URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=daf61b4d
          
          sci-mathematics/gp2c: new version 0.0.11.3.
          
          Upstream bugfix release gp2c-0.0.11pl3. The most interesting thing
          here Gentoo-wise is support for gcc-10.x (-fno-common).
          
          Package-Manager: Portage-2.3.84, Repoman-2.3.20
          Signed-off-by: Michael Orlitzky  gentoo.org>
          
           sci-mathematics/gp2c/Manifest |  1 +
           sci-mathematics/gp2c/gp2c-0.0.11.3.ebuild | 29 +
           2 files changed, 30 insertions(+)
          
          diff --git a/sci-mathematics/gp2c/Manifest b/sci-mathematics/gp2c/Manifest
          index 28aa36077e4..f69c31f8cc4 100644
          --- a/sci-mathematics/gp2c/Manifest
          +++ b/sci-mathematics/gp2c/Manifest
          @@ -1 +1,2 @@
           DIST gp2c-0.0.11pl2.tar.gz 851845 BLAKE2B 
          599469af3e9975270e6d9f88c1209ee3da9ae9ab9bfc90abf2431e00d553d427c15a509278b099a133262b6d02d6fa3f06090bd0083c46c9488e697dc5da5245
           SHA512 
          20f7fc61480a70d3f8811d7881e0f386a1ced522b5c538443dc0a9fe3332d37a67ba68441eb512b5fefdb761e232f9316704fa456a311651161da7b4653ca4b7
          +DIST gp2c-0.0.11pl3.tar.gz 854003 BLAKE2B 
          478307b9fa56b8e58a66001bbeac3ce6193a446cb6a339bbd65de9105924fe92a0e9c39302d836c7f3e7d2fe100ac678514d4e7eef1bdb0b880cc55763002864
           SHA512 
          06d3680da739ce13a0a80a88c7b07a9b336acecb95f4841d8e984f1d4b66ad0a3ffe47e2abb77ad7e564fa976d16c468d62e6ddc15ede3beba00db6d92a91d97
          
          diff --git a/sci-mathematics/gp2c/gp2c-0.0.11.3.ebuild 
          b/sci-mathematics/gp2c/gp2c-0.0.11.3.ebuild
          new file mode 100644
          index 000..b7314146b67
          --- /dev/null
          +++ b/sci-mathematics/gp2c/gp2c-0.0.11.3.ebuild
          @@ -0,0 +1,29 @@
          +# Copyright 1999-2020 Gentoo Authors
          +# Distributed under the terms of the GNU General Public License v2
          +
          +EAPI=7
          +
          +MY_P="${PN}-"$(ver_rs  3 'pl')
          +DESCRIPTION="A GP to C translator"
          +HOMEPAGE="http://pari.math.u-bordeaux.fr/";
          +SRC_URI="http://pari.math.u-bordeaux.fr/pub/pari/GP2C/${MY_P}.tar.gz";
          +
          +LICENSE="GPL-2+"
          +SLOT="0"
          +KEYWORDS="~amd64"
          +IUSE="test"
          +RESTRICT="!test? ( test )"
          +
          +# Perl is run on the build host to compile the descriptions in desc/,
          +# see for example desc/Makefile.am.
          +BDEPEND="dev-lang/perl"
          +
          +# This is the first version of pari to put pari.cfg where we expect it.
          +DEPEND=">=sci-mathematics/pari-2.11.2"
          +RDEPEND="${DEPEND}"
          +
          +S="${WORKDIR}/${MY_P}"
          +
          +src_configure() {
          +   econf --with-paricfg="${EPREFIX}/usr/share/pari/pari.cfg"
          +}
          
          
          

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

          commit: 7fef22e47bf42ff049ddd60ea3298008fa9edfe2
          Author: Michał Górny  gentoo  org>
          AuthorDate: Fri Mar  6 12:23:13 2020 +
          Commit: Michał Górny  gentoo  org>
          CommitDate: Fri Mar  6 13:43:03 2020 +
          URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7fef22e4
          
          sys-kernel/gentoo-kernel-bin: Remove old
          
          Signed-off-by: Michał Górny  gentoo.org>
          
           sys-kernel/gentoo-kernel-bin/Manifest  | 12 --
           .../gentoo-kernel-bin-4.19.105.ebuild  | 46 --
           .../gentoo-kernel-bin-4.19.106.ebuild  | 46 --
           .../gentoo-kernel-bin-5.4.21.ebuild| 46 --
           .../gentoo-kernel-bin-5.4.22.ebuild| 46 --
           .../gentoo-kernel-bin-5.5.5.ebuild | 46 --
           .../gentoo-kernel-bin-5.5.6.ebuild | 46 --
           7 files changed, 288 deletions(-)
          
          diff --git a/sys-kernel/gentoo-kernel-bin/Manifest 
          b/sys-kernel/gentoo-kernel-bin/Manifest
          index 6835f651833..bb468ed294f 100644
          --- a/sys-kernel/gentoo-kernel-bin/Manifest
          +++ b/sys-kernel/gentoo-kernel-bin/Manifest
          @@ -1,19 +1,7 @@
          -DIST gentoo-kernel-4.19.105-1.amd64.xpak 61366525 BLAKE2B 
          5e2fd9f0de9e88c674843d44d7edd84898c3e2b20f214a1ed877b715a6796b5884b6c03927789a26e7d817385f755bf9effe98e94accb910a06e228caef18d12
           SHA512 
          387fa7a800cefdc291cdfda6eae991febe1e57bb05999895bb86b4c2b52b9e54345e6ca0686095da9e7ca58689865f08d7bacc52138a9904a762c91c0f76fed0
          -DIST gentoo-kernel-4.19.105-1.x86.xpak 53619417 BLAKE2B 
          2127dc3eb07b4ea5ce1eec21c2c7b1180dcfde164f922ea7842f219a7a7592081352b22a76247869f081f4d6c0d9fba54023ef248cfedee6043fa2bd2b4fb4a6
           SHA512 
          be986a45a42eacf0b23036396e7c662cd4b7dbfd5e2bb17130567d14617aa37a211936c60937404c80a2e4f70302a36c32b6ecb66173de287bda259b229c0b67
          -DIST gentoo-kernel-4.19.106-1.amd64.xpak 61346140 BLAKE2B 
          0047a62cca3f5cc9669ffd0392600c8490beb4eb7f48517d4c4438349d9a6b24d0f80a0b9fabe37aff826923591972c800cd1b537e5af10880c63f8f91457993
           SHA512 
          544504bfccd639a4be469fde26c0c6e4f1b40e0d099dc11da1adc6d6d977e36994090ec58b35c05d4a2a656aeaeb4eb6ea385faf41fc40e605eac928d81831f7
          -DIST gentoo-kernel-4.19.106-1.x86.xpak 53613130 BLAKE2B 
          8033159b2d27b869c74132451ebbd190f012d615693759c002ea098b69daadef1bc20bc5f297ca5f74aa73c566c04413d7a696ca910947196c8b385a727d6f68
           SHA512 
          22e8fb99a816910938bfec9b95a96a224e6fbace2c9822921006051f2810cb41ce8d317bc350d08c4872b99d0ba81857cb0c338e8a324dfebfc69a90650116dc
           DIST gentoo-kernel-4.19.107-1.amd64.xpak 61334447 BLAKE2B 
          cf58cd409c20d0990a24aea073586f3414955d2a4282097312a7c10c9b7225cbb10c35ee4ba19efabea7542793a56b70251b8efc56c0cc55e5f4b00f260d15f8
           SHA512 
          0f10b079bd8eab9684cf48aa7c36747140e014b74710a217f6ed50833172b405379ebf9b505e36634e23f672aeaa65ad8859b52dc069d6f651d595976959a536
           DIST gentoo-kernel-4.19.107-1.x86.xpak 53605880 BLAKE2B 
          9b3e4eea0a904c94958a7c5e64ea274892b4b744a4efd0636477fb86bd2fdc06c88eef380ecf4b4175dd67fe6528380083728a58867da550e974accc47e7a0be
           SHA512 
          31dd5fe2af75605422230f145795ba1d3e6004b9f8487e65192cc6144e0ec8c786b7b8a6eab8e14ea63d194650805204d0d000ec72e91ad4b77817589fd602a2
          -DIST gentoo-kernel-5.4.21-1.amd64.xpak 64909623 BLAKE2B 
          0d3218a176481410f9d647b417415b8f1c162c7fdab29453c67ab044a6ceb5ca4d99407b13645acd7102560f7778aa5e73c867e7ae7629295bad6704925b2a18
           SHA512 
          e9a04881450532cbd9ca64795d079f98a675e03484532fe66bc4680178fabb86a8115ce4bd273e9e3b9c90697e6a1bc94e2c075da18880451cd1f4d1a9877725
          -DIST gentoo-kernel-5.4.21-1.x86.xpak 56509481 BLAKE2B 
          81f01abade64d8bb0eb52107800291e45c3be33c78c14001fee4144430eaed00e9d291a5a3873cd17fab5e1d7a601296018a6c22826e39967b5338f2ad63428b
           SHA512 
          cd0c268d62ce4785e2e5f7404a88041d7d10b7934dbce40ae3b46c430896136dc8b998953ab88e50916d2e92761b12932faf863af91999fb529fe4ec20a1cd5c
          -DIST gentoo-kernel-5.4.22-1.amd64.xpak 64879207 BLAKE2B 
          fdf9343a5d5eb0eaded98de752fd096db96229c45aa36d35690dd105eb27a30296f7cfd5d060384160a5bf5c756a2ccea516adfecb34c8939a8d5cdfd06b09b4
           SHA512 
          af47e2d53d0e9651f40fb0c08c2e64170cb6dffbf8a3eed57ec4d3a7497f42f940f4ac0c3fe37b95d39d880b628b5f3359dccc4cc827de5612fa4a232c3bd12f
          -DIST gentoo-kernel-5.4.22-1.x86.xpak 56520822 BLAKE2B 
          9d03481aaaf84eefcad5c4558b1292ea1263f8b0953c5747ba93e8c829b67c37fbb81d826096451e775ca884fb70d72f7c68c0f09b2c9ffd87099739a4899bbc
           SHA512 
          75d209743515b7679d5a7585f0550302965bb06d1cf31e1b9e40919d3f0b111faa907ca254c7cf8b716aa319d87010be70c39004beb0059294816c9480f41188
           DIST gentoo-kernel-5.4.23-1.amd64.xpak 64901352 BLAKE2B 
          e8e610dafd50d6ec41067107ca6a738c5080e76bc7f64cd59b7b8e33a7a65ff8c4f02363574ecc9c09192b409b73b4698e559a7f98d1a003bac1c14dbd8774e5
           SHA512 
          61aeafaf4f1b6e1b0e5aedf120758520fafae75d78b70babce6b874661508ab85ad2f7a1ce6aa1252e3d3a73c782cc03a6a56a6d74a538fb1306b86c52f6c904
           DIST gentoo-kernel-5.4.23-1.x86.xpak 56515809 BLAKE2B 
          4a96d2cc7d97b8246736b026ffa7f49cecf97818df342576965bd724602921d5ee4dda87167b40f9263e776f8c1d073a3d215bed35897af124c27f92357ea9ea
           SHA512 
          673b8e8dd1a4be89f49e6173fbbbc0ee334bb

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

          commit: 33da0ac1824bc09550a39bfdb6776b6ce66db89c
          Author: Michał Górny  gentoo  org>
          AuthorDate: Fri Mar  6 12:12:04 2020 +
          Commit: Michał Górny  gentoo  org>
          CommitDate: Fri Mar  6 13:43:00 2020 +
          URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33da0ac1
          
          dev-python/tblib: Remove py2
          
          Signed-off-by: Michał Górny  gentoo.org>
          
           dev-python/tblib/tblib-1.3.2-r1.ebuild | 2 +-
           dev-python/tblib/tblib-1.3.2.ebuild| 2 +-
           2 files changed, 2 insertions(+), 2 deletions(-)
          
          diff --git a/dev-python/tblib/tblib-1.3.2-r1.ebuild 
          b/dev-python/tblib/tblib-1.3.2-r1.ebuild
          index 3750e29e528..ce373381ffd 100644
          --- a/dev-python/tblib/tblib-1.3.2-r1.ebuild
          +++ b/dev-python/tblib/tblib-1.3.2-r1.ebuild
          @@ -3,7 +3,7 @@
           
           EAPI=7
           
          -PYTHON_COMPAT=( python{2_7,3_6,3_7} )
          +PYTHON_COMPAT=( python{3_6,3_7} )
           
           inherit distutils-r1
           
          
          diff --git a/dev-python/tblib/tblib-1.3.2.ebuild 
          b/dev-python/tblib/tblib-1.3.2.ebuild
          index 138700e1689..03e9a0cf2f3 100644
          --- a/dev-python/tblib/tblib-1.3.2.ebuild
          +++ b/dev-python/tblib/tblib-1.3.2.ebuild
          @@ -3,7 +3,7 @@
           
           EAPI=6
           
          -PYTHON_COMPAT=( python{2_7,3_6} )
          +PYTHON_COMPAT=( python3_6 )
           
           inherit distutils-r1
           
          
          
          

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

          commit: 3444dd05af7f5d057878052e90823371d2d8cab0
          Author: Michał Górny  gentoo  org>
          AuthorDate: Fri Mar  6 12:17:29 2020 +
          Commit: Michał Górny  gentoo  org>
          CommitDate: Fri Mar  6 13:43:01 2020 +
          URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3444dd05
          
          dev-python/tblib: Bump to 1.6.0
          
          Signed-off-by: Michał Górny  gentoo.org>
          
           dev-python/tblib/Manifest   |  1 +
           dev-python/tblib/tblib-1.6.0.ebuild | 21 +
           2 files changed, 22 insertions(+)
          
          diff --git a/dev-python/tblib/Manifest b/dev-python/tblib/Manifest
          index e63c51910bf..8d4d31792dd 100644
          --- a/dev-python/tblib/Manifest
          +++ b/dev-python/tblib/Manifest
          @@ -1 +1,2 @@
           DIST tblib-1.3.2.tar.gz 26958 BLAKE2B 
          5c50f6b63b45f34f35843d9e39f03493715e19304804d38e134cd63621d1b72116a84d1403e25a4681d84568dfb87cba2874eaa10fccff6054e121aea86f88cd
           SHA512 
          c04d204e8dc53c87fecdb484162488ca10b509341ad030e67300d9c3ac61d29dd56c1cef8318bcf13d90ccd5633520d75ab45dd0aea8de29ba7317adacce
          +DIST tblib-1.6.0.tar.gz 31450 BLAKE2B 
          a1efccab5c6363c166ef73e8e03750d1f47993684fda662065f9705d115347cf4b2ed3438ef375e3d14a0dbc35ceb234c8357ee33d2ac9e3a94b66bec3670b3a
           SHA512 
          3b11b94f341499f648c182e7a9b6c648b5312a18b3f23bf7e5d554052db4ffb7c4a4faa097bc2426b4159e28f0578c6b369ff4d02eb7711726b5359242216d35
          
          diff --git a/dev-python/tblib/tblib-1.6.0.ebuild 
          b/dev-python/tblib/tblib-1.6.0.ebuild
          new file mode 100644
          index 000..f7f6b2e7f95
          --- /dev/null
          +++ b/dev-python/tblib/tblib-1.6.0.ebuild
          @@ -0,0 +1,21 @@
          +# Copyright 1999-2020 Gentoo Authors
          +# Distributed under the terms of the GNU General Public License v2
          +
          +EAPI=7
          +
          +PYTHON_COMPAT=( python3_{6,7,8} )
          +
          +inherit distutils-r1
          +
          +DESCRIPTION="Traceback fiddling library for Python"
          +HOMEPAGE="https://github.com/ionelmc/python-tblib";
          +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
          +
          +LICENSE="BSD"
          +SLOT="0"
          +KEYWORDS="~amd64 ~arm64 ~ia64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
          +
          +RDEPEND="dev-python/six[${PYTHON_USEDEP}]"
          +BDEPEND="test? ( dev-python/twisted[${PYTHON_USEDEP}] )"
          +
          +distutils_enable_tests pytest
          
          
          

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

          commit: a940ee56f9c003b4c5985a76f6a14297114cddfa
          Author: Michał Górny  gentoo  org>
          AuthorDate: Fri Mar  6 12:10:16 2020 +
          Commit: Michał Górny  gentoo  org>
          CommitDate: Fri Mar  6 13:42:59 2020 +
          URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a940ee56
          
          dev-python/packaging: Bump to 20.3
          
          Signed-off-by: Michał Górny  gentoo.org>
          
           dev-python/packaging/Manifest  |  1 +
           dev-python/packaging/packaging-20.3.ebuild | 51 ++
           2 files changed, 52 insertions(+)
          
          diff --git a/dev-python/packaging/Manifest b/dev-python/packaging/Manifest
          index 59384a6f7b6..000c9a03539 100644
          --- a/dev-python/packaging/Manifest
          +++ b/dev-python/packaging/Manifest
          @@ -2,3 +2,4 @@ DIST packaging-16.8.tar.gz 44706 BLAKE2B 
          6443f05d3745eb6c4cc3d51fccfb1afcfa207ac
           DIST packaging-19.2.tar.gz 59110 BLAKE2B 
          8098538b8f48f4ff478eb13f3f4384d08c246b8a99711a48b2f412deaecd85faf13e24fd910a7a262c3407c5eb54939cd926e31e6f802deed0e28e0a92dfdb86
           SHA512 
          af7312a85292f577d3e6e57154f10fb380bbdee749344ba4b226a09f22bf5ca664ed63c62cd5b4dea0be5eb5cff5c17ad04415aab8c925fa90dcae2e1c6dee5a
           DIST packaging-20.0.tar.gz 72663 BLAKE2B 
          39fe2c52389978d1c6d7a0a0044b549a96fd386f83ece2dac65090b8ea55193fb2334102523c5119ef29050655d81bc015e3b02c6589088ef6f5bc8e97f3aa04
           SHA512 
          f7d99700d27d5aebbb3343f1de6ee9ce1372750b805c55a40d1a1fbeb6cfcfe2184875db56de175c6cd46e17f1567c30a39d5527870902c3c69168d025447587
           DIST packaging-20.1.tar.gz 72955 BLAKE2B 
          cd23c407693fcfd62c6fb40d996c3768201535cf6ba6dc825a6ee9e1b456a902aa730d1151e3b4e73fcc1193236dbd5ea9cfe6e17eefbc038d48aed12df9089b
           SHA512 
          1d51e81ab8b8c552d880ae3d210fe140835de181b6fcee3eb382f0f1d6a416e9cbdaeb52a81c50c53d2c5f5cdc40ee516f29ced845868a1bf7be3b23433f21d7
          +DIST packaging-20.3.tar.gz 73015 BLAKE2B 
          863a04124543d510455ffd6cd6974e7b3ed0c43e02baa5124631e24e7d56017d0289475fbcd9a4f038607c4a13aced32d2b98a82d975903afa154b520feb0019
           SHA512 
          b27ad6f72bfe0965a6e6bff78e4e37d4cbab73dc0a1b019673c85615c9d99edf237effeb9756702c6e8c1575a2d981f6d1af364c73d0a451fbb167d64678630f
          
          diff --git a/dev-python/packaging/packaging-20.3.ebuild 
          b/dev-python/packaging/packaging-20.3.ebuild
          new file mode 100644
          index 000..cbdf1bd9438
          --- /dev/null
          +++ b/dev-python/packaging/packaging-20.3.ebuild
          @@ -0,0 +1,51 @@
          +# Copyright 1999-2020 Gentoo Authors
          +# Distributed under the terms of the GNU General Public License v2
          +
          +EAPI=7
          +
          +PYTHON_COMPAT=( python2_7 python3_{6,7,8} pypy3  )
          +
          +inherit distutils-r1
          +
          +DESCRIPTION="Core utilities for Python packages"
          +HOMEPAGE="https://github.com/pypa/packaging 
          https://pypi.org/project/packaging/";
          +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
          +
          +SLOT="0"
          +LICENSE="|| ( Apache-2.0 BSD-2 )"
          +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
          ~sh ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
          ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
          ~x86-solaris"
          +IUSE="test"
          +RESTRICT="!test? ( test )"
          +
          +RDEPEND="
          +   >=dev-python/pyparsing-2.1.10[${PYTHON_USEDEP}]
          +   dev-python/six[${PYTHON_USEDEP}]
          +"
          +DEPEND="
          +   test? (
          +   dev-python/pretend[${PYTHON_USEDEP}]
          +   dev-python/pytest[${PYTHON_USEDEP}]
          +   )
          +"
          +
          +PATCHES=(
          +   "${FILESDIR}/${PN}-16.8-distutils.patch"
          +)
          +
          +python_test() {
          +   pytest --capture=no --strict -vv || die
          +}
          +
          +pkg_preinst() {
          +   # https://bugs.gentoo.org/585146
          +   cd "${HOME}" || die
          +
          +   _cleanup() {
          +   local pyver=$("${PYTHON}" -c "from distutils.sysconfig import 
          get_python_version; print(get_python_version())")
          +   local 
          egginfo="${ROOT}$(python_get_sitedir)/${P}-py${pyver}.egg-info"
          +   if [[ -d ${egginfo} ]]; then
          +   rm -rv "${egginfo}" || die "Failed to remove egg-info 
          directory"
          +   fi
          +   }
          +   python_foreach_impl _cleanup
          +}
          
          
          

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

          commit: 63a367ae36fe6993de2cec8868101fb07a10d558
          Author: Michał Górny  gentoo  org>
          AuthorDate: Fri Mar  6 12:08:52 2020 +
          Commit: Michał Górny  gentoo  org>
          CommitDate: Fri Mar  6 13:42:58 2020 +
          URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63a367ae
          
          dev-python/sphinx: Bump to 2.4.4
          
          Signed-off-by: Michał Górny  gentoo.org>
          
           dev-python/sphinx/Manifest|   1 +
           dev-python/sphinx/sphinx-2.4.4.ebuild | 111 ++
           2 files changed, 112 insertions(+)
          
          diff --git a/dev-python/sphinx/Manifest b/dev-python/sphinx/Manifest
          index 1f76e63d576..cca9cf5ab47 100644
          --- a/dev-python/sphinx/Manifest
          +++ b/dev-python/sphinx/Manifest
          @@ -1,3 +1,4 @@
           DIST Sphinx-1.7.5.tar.gz 4726802 BLAKE2B 
          8d828dcae1f3ebb813c5f2de8c096a3fac4ab88b424955c27592349c544b775a21703c904a54efa7f86e1967198f4950804904a82a7142a3499f33c5343506e3
           SHA512 
          db2a8df2cdb2ed78ce2341175575c2b04a149451b2bc8a4f74ddc73e308a19d505874fdbae4e370ce48a9b1cdb4de47cdab489bc57c1b378e857d5b8d04a07b8
           DIST Sphinx-2.0.1.tar.gz 6017030 BLAKE2B 
          a446aab8c7f5a4adc93477f4f60ca975690cb4c507d6e51393a4b2c4c56563b9a12e3ea3f85d214c6bdbc7834be107384fe9029d09a73da207fd9699c4b77ab8
           SHA512 
          28430912917a8e3eb6efe6b69268e2a5ae06795c261f2a18ef62f781e365396832c4e4bcfaad7704b1c5f840e98a9dfb82e3b438a491a13cea5c10bee66bf23b
           DIST Sphinx-2.4.3.tar.gz 5711784 BLAKE2B 
          624bfad7bfb75f568ea28063ac909685a3f563dfff4605ea212fa53bf79b50e7743f1b642ccb1f73b899cfd33841977203ee73d7ab624d553889cd071f204535
           SHA512 
          cafd3b185210f3f2ccab48508d3abde50178ffa30136c0302c5855780b316f976566891ad4852f246ed5ebfa95e56701ef5096ca7dc98d91f3ba4e84754c8f6e
          +DIST Sphinx-2.4.4.tar.gz 5966973 BLAKE2B 
          727a75eb4ec33beadf80b22cdd8dda02a53f4da4aea10ee18ecae658a69a9bb797f83b0d11b41b8405bf18b2472ea7fd501bea85382c20c5f2a9d5b14a032428
           SHA512 
          cd35b7ebdf4eb41fb3a58706333ca4328fbf9b37999ad1bcc751f9769f0a294464e4def019a403fcd2204ca963ef641c35c957a4145eb50af07573d21df8c74d
          
          diff --git a/dev-python/sphinx/sphinx-2.4.4.ebuild 
          b/dev-python/sphinx/sphinx-2.4.4.ebuild
          new file mode 100644
          index 000..8063e705318
          --- /dev/null
          +++ b/dev-python/sphinx/sphinx-2.4.4.ebuild
          @@ -0,0 +1,111 @@
          +# Copyright 1999-2020 Gentoo Authors
          +# Distributed under the terms of the GNU General Public License v2
          +
          +EAPI=7
          +
          +DISTUTILS_USE_SETUPTOOLS=rdepend
          +PYTHON_COMPAT=( python3_{6,7,8} pypy3 )
          +PYTHON_REQ_USE="threads(+)"
          +
          +inherit distutils-r1
          +
          +DESCRIPTION="Python documentation generator"
          +HOMEPAGE="https://www.sphinx-doc.org/
          +   https://github.com/sphinx-doc/sphinx";
          +SRC_URI="mirror://pypi/S/${PN^}/${P^}.tar.gz"
          +
          +LICENSE="BSD"
          +SLOT="0"
          +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
          ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
          ~x64-solaris"
          +IUSE="doc latex test"
          +RESTRICT="!test? ( test )"
          +
          +RDEPEND="
          +   /dev/null || die
          +   "${EPYTHON}" -m sphinx.pycode.__init__ || die "Grammar generation 
          failed."
          +   popd >/dev/null || die
          +}
          +
          +python_compile_all() {
          +   if use doc; then
          +   esetup.py build_sphinx
          +   HTML_DOCS=( "${BUILD_DIR}"/sphinx/html/. )
          +   fi
          +}
          +
          +python_test() {
          +   mkdir -p "${BUILD_DIR}/sphinx_tempdir" || die
          +   local -x SPHINX_TEST_TEMPDIR="${BUILD_DIR}/sphinx_tempdir"
          +   pytest -vv || die "Tests fail with ${EPYTHON}"
          +}
          
          
          

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

          commit: 5a1ef95ec0e72a06d5bfca94b344e03063dd1a25
          Author: Michał Górny  gentoo  org>
          AuthorDate: Fri Mar  6 12:23:15 2020 +
          Commit: Michał Górny  gentoo  org>
          CommitDate: Fri Mar  6 13:43:04 2020 +
          URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a1ef95e
          
          sys-kernel/gentoo-kernel: Remove old
          
          Signed-off-by: Michał Górny  gentoo.org>
          
           sys-kernel/gentoo-kernel/Manifest  | 14 
           .../gentoo-kernel/gentoo-kernel-4.19.105.ebuild| 76 --
           .../gentoo-kernel/gentoo-kernel-4.19.106.ebuild| 76 --
           .../gentoo-kernel/gentoo-kernel-5.4.21.ebuild  | 73 -
           .../gentoo-kernel/gentoo-kernel-5.4.22.ebuild  | 73 -
           .../gentoo-kernel/gentoo-kernel-5.5.5.ebuild   | 73 -
           .../gentoo-kernel/gentoo-kernel-5.5.6.ebuild   | 73 -
           7 files changed, 458 deletions(-)
          
          diff --git a/sys-kernel/gentoo-kernel/Manifest 
          b/sys-kernel/gentoo-kernel/Manifest
          index 330a3325d2c..eb5949d 100644
          --- a/sys-kernel/gentoo-kernel/Manifest
          +++ b/sys-kernel/gentoo-kernel/Manifest
          @@ -1,19 +1,7 @@
          -DIST genpatches-4.19-104.base.tar.xz 3133964 BLAKE2B 
          4a47a56d7be225e0e4c3e22456ff9801898de9f36e300da295f909976d9fd36c95de421a233b45227c2d190d4f91f39836eca838d3f5fff1bf8683c877c7ba06
           SHA512 
          a710092cf5121e12c861bde4ddb453de3b5ec14a6d5b406775ff3f7670206be3e4ed7cb7457ade2cfa2d644c45843671ee43b6f1928f2950bcd92ae795683f26
          -DIST genpatches-4.19-104.extras.tar.xz 17504 BLAKE2B 
          4013c6336d35818c8995b7f75152e66e24ebb3df9e1ce9e7bba2e197a05f786476607dfc6b9fed06565bb6dd92e981f917996366c0b7d4734619e8b3cf58
           SHA512 
          552a12d1bca99c85d4d74a19429c1efda5e2e99110d467f64e8d13962ae15ab03de4c923896ed9ae070b3c247d837159c825118c8d0fa503c971432d3d7985d4
          -DIST genpatches-4.19-105.base.tar.xz 3179988 BLAKE2B 
          7f85c9011564ccdb368f0bef5b2ded7e61a47c70cb6e7b579c995c83ff2e1142454ed18e9cd87234c4526eea57fcefb502ef3282ef508b1dd580c371dc61cbcb
           SHA512 
          7a01de87b333af8d60c6156898f5d043ae0d0ce7b1dfc7906b4f717c1a2a943940cff10f64bd221b459751c42d0c52bba3e39b2ff79e6622f952edf8b66e4c4e
          -DIST genpatches-4.19-105.extras.tar.xz 17496 BLAKE2B 
          82c72721eca259b0945b7f8ae3271d40f9ff90980de96f015c7c8011cb6ae771c1938b61d76ed1939b2c63002dc388ca5644f360b53da55a9f74a9f5ac9cdf01
           SHA512 
          be72c2c3728f92d644a78fb19e353d24f70aa986b4e316a8788265fabc1fd2bd9412845d5c058fb38b7b538e836126fee3e3c95e3b857a38ff48ec8130361c79
           DIST genpatches-4.19-106.base.tar.xz 3207860 BLAKE2B 
          4a5c29c2e1e825630b4bccba0dcd2aaab4fe9755fc135eb5990641705743384c0b3da75a89c86f450af9686ab6c036fcf18abed18f7e55f71a8ecdf582a7ab0e
           SHA512 
          7660e2f81b5cbd2705998ecc04bd611d39eb5cc30978737aba6741709f16fa6336fdf3bdeaaca2d2cd70ee7d55c205484ca4295774c02d5ff22722a14315e647
           DIST genpatches-4.19-106.extras.tar.xz 17492 BLAKE2B 
          d84b9ed61c0d3e3fd032ac5bda3e2898e09c652166305a4a2a949938713d2b7e04405d16ed22d9fc7171d8850dc27a886956b2f3f99b6c7519c0b74e3089f032
           SHA512 
          422d7cf4a79ecc5bdb48e01a77207cf77162a1cda33dd629cf806d149193ddfa0254e93f7dacebb39cf0f42a3fd17a131cc3e14b6340b5a90f20b449c99ece54
          -DIST genpatches-5.4-21.base.tar.xz 825640 BLAKE2B 
          2f6da03c546be189d057dc44b5772f56ab25e8ff50b8775524b93af1387651e98c7a8077dd8f1f1c094767499256ee6336ba6fd28f9fad7dccef3d82f72899bb
           SHA512 
          c408a85d4e6929b10f0cda2315c0b0db69afe6916b7fdcf6f86dd9d607b4722fa212e772ec18eb162ff031d2ec0899e4dbef934710d80f17d7c90a8bea8f7e72
          -DIST genpatches-5.4-21.extras.tar.xz 1744 BLAKE2B 
          c033e92c37a242bb1df4d3f75c7cba258bd51bc918e056632d351e801ee5ec0beb0f63f54be0eea3f45b1e5850cb97579ff287714f0d3d53898b6e57ba0b9641
           SHA512 
          14b17b599ad1fdfa72355ee0450fbe448d28216ce5ed5f96a750bc633539e7a9d1a2547edfd658cfcf9ff8667f929c6c0966c3725fe53f69554a6ae7c2e5e210
          -DIST genpatches-5.4-22.base.tar.xz 915300 BLAKE2B 
          d178fedfcfdb604ddf37bc23f1fa6565f8e0cedfdcc632bb20d4683db9161621eee3f998430e9c26df39712065669db4b81471fb3fdbc7b52f457e9bc05ddf37
           SHA512 
          77e0fb0bb06f2fcf5f42141e5386779fc2f83db9f12ceb4e5d9ea3e38b8e32fa3d189432127ae73ceeab08ef0d781a26f39cb5439963e656c72abc31e1b2f750
          -DIST genpatches-5.4-22.extras.tar.xz 1744 BLAKE2B 
          f11d59a1f630a1fd8b328d62454575e46029bfa35a0f26579677dfd1bf19e7a4c12870d4d673717570d9ceed81a43d6cac515acee003bfca9bba6f3d526b70c5
           SHA512 
          b05d44f5d0b0f3b77396b2de1a720cda33ebc4114381b6d781eb495f31c586e228abb83a9144198f199f2fa2b237d8212a7195de70171097f71bc19a1d259db0
           DIST genpatches-5.4-23.base.tar.xz 956024 BLAKE2B 
          5270c606d07a9c593e8428ebf4636ccec4e6fe07fdda05617451cb1d6523c39fa5c483f9e2006e7944c0f7f835c40d8bffe50606b3266d4a8134779a5d651c3f
           SHA512 
          038aeb54cf8854461d61b38598e0191f46fe8b327ec7287c721238f8a41fc8a69a80c4c914ad04569aed6d994321979dcf469c376297ad555ac9095dddae4567
           DIST genpatches-5.4-23.extras.tar.xz 1744 BLAKE2B 
          a744740c74b52b66f8db5f0a71174b15284bd83c0ca9318c2bc3809586aa914f20239a9a122930df587cf861412d7ce33a7efb74128bfd2dd52516abbe0cf20a
           SHA512 
          74f429626747883c5b4c6e8cb6bced6a5dc377a758637b7eded70dc9471121aa8496030f4b00ac0cd9bacb693d89366d10fc34d0827286ade8160

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

          commit: dcd11c0a4f1afc67eb5e8c5cce4d14162cf01f0a
          Author: Michał Górny  gentoo  org>
          AuthorDate: Fri Mar  6 12:23:17 2020 +
          Commit: Michał Górny  gentoo  org>
          CommitDate: Fri Mar  6 13:43:04 2020 +
          URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dcd11c0a
          
          sys-kernel/vanilla-kernel: Remove old
          
          Signed-off-by: Michał Górny  gentoo.org>
          
           sys-kernel/vanilla-kernel/Manifest |  8 ---
           .../vanilla-kernel/vanilla-kernel-4.19.105.ebuild  | 65 --
           .../vanilla-kernel/vanilla-kernel-4.19.106.ebuild  | 65 --
           .../vanilla-kernel/vanilla-kernel-5.4.21.ebuild| 65 --
           .../vanilla-kernel/vanilla-kernel-5.4.22.ebuild| 65 --
           .../vanilla-kernel/vanilla-kernel-5.5.5.ebuild | 65 --
           .../vanilla-kernel/vanilla-kernel-5.5.6.ebuild | 65 --
           7 files changed, 398 deletions(-)
          
          diff --git a/sys-kernel/vanilla-kernel/Manifest 
          b/sys-kernel/vanilla-kernel/Manifest
          index 9574607a07f..1b59815d67d 100644
          --- a/sys-kernel/vanilla-kernel/Manifest
          +++ b/sys-kernel/vanilla-kernel/Manifest
          @@ -1,19 +1,11 @@
          -DIST linux-4.19.105.tar.xz 103435348 BLAKE2B 
          58f085797654abcef7a614bba34f77e22c5d2203ba5070e11ee603f7dcb9facb30c9ffcfbcc17c72d7bb4f93c2514c7491963804613e1fe1e0950a6fe812be49
           SHA512 
          32dc4eb8b535af3a3998a8d4fca4d1b47d1a09fdb324d18e70b4098d7431d836d3c6449cbf07d4b5188ba07bfafa0c2f91ec875b369676f208a25f45d40f64c1
          -DIST linux-4.19.106.tar.xz 103413276 BLAKE2B 
          eaa454def0cd18c38ba47f61a09c526ac15d895ea0131de4b531b09c3f21e1b8afdc66c4207f887dd7b3f13194d8415309546ab7a84c85446b468b8e89c49f71
           SHA512 
          c456c15038c1f0bb98f66dbcb0cb296b10d55f4102e6bb075892b2b65c33f32a7450417dee9b7064a37ef0f42d0b2914be3ee5df0b4fad2d0ab664d7504d1e4c
           DIST linux-4.19.107.tar.xz 103417476 BLAKE2B 
          4cafa666bb7a5c16bd806c0b0d8bfdf98fd8a09ffc99512a3b354abfe3514fb61802c596a898417e54b52f7c3da4ccac0c52746d4f80c77ceff79f0f9821663f
           SHA512 
          92b23cdbe1234bfc606b498bb59e2c493d57693f7897b92c3d1d8b2620394e55dc5c80c1fc40c862778f81f91ed09e2fa4598f196f969977dc44c80ac13dce05
           DIST linux-4.19.85-arch1.i686.config 222183 BLAKE2B 
          03eac77940db0ee6b4f2a006edc600ef34141bbca849f5be4de9b961301a8fc987da6d0e21344aa5d80c29bb7793d56cf5441abb6c8e4057d94e2601c174c1be
           SHA512 
          6bd45c9dfd96b1afb8c1ca1ca72722baee6c91894e454d7af937de02242d3bb9d3b6870f5976aa96245c753c6bc1ac637a6356125b0d4c596aadef643b8c3d8d
           DIST linux-4.19.92-arch1.amd64.config 222487 BLAKE2B 
          a658d80d85525287a1df9053ca2ddfe423ab423bcc3b9ea8bd9cda65cc7ffa4b1be782c48c867c13e46070af4016f446860f5cf71351f239da1eff6c45a5aa6a
           SHA512 
          a5658c8e8464516dffd6f624344e739784cb315d334b2c5105bd5d16022b6366ad4ec00d3692a7b78e2458514175522bc85e834bf19593feff6363b616860258
           DIST linux-5.4.18.arch1.amd64.config 241388 BLAKE2B 
          dacc83b154eab51e3c7f57bba6e02a4edfe34fa584c907f514b8afe9cb7ef39aa245caf82a35f648e379883fbbb6426b763879676cd3cecf741bcf342f165a81
           SHA512 
          bf211c4293f7dbd980bfcc47fb337a2db359f1320573f5086a5ec60a0c50b4105723e010212eb6d5b9c2ba3ecb5fa4381f8b67c16596647c030b4f49274120b9
           DIST linux-5.4.18.arch1.i686.config 240651 BLAKE2B 
          9e00b28951593aefc53cf735bd30589e44c9326f53ff98f7b2a244e171192910f93ab9f20d879ec06ace9b1169a6b3d3d6acf2105736905cca3b9c2db1cc8e68
           SHA512 
          0c9331fd1256e044734d24d4ca58e2677604482aa0ce33f65a5df63dce4d2615ea9686a53a0e603956437d9b9d23e54389459d7ea0bfe66597609dae96952785
          -DIST linux-5.4.21.tar.xz 109482812 BLAKE2B 
          21322e6bddbdb2d8e7c0e21a3bb908b83230bcf28626273e4af745e6453823a9d33d46ab86121175278748c7823c8139ffa9eebaa4da1995f7debf821adb5992
           SHA512 
          816e0acc3be5ab5614f573fea6749fb3e2bd260753f97129882455875b60faf2cf1bee949e5920e11a05052e8ea845a94a922ea6ab4e9097594b2f468bd8d75a
          -DIST linux-5.4.22.tar.xz 109491488 BLAKE2B 
          4e7695ec5777b83327b598e2cf99f8204936d47bb090e1ac35c335029ae85d269598bd5d277d604cff2a98154aa4936ebadcdbcba64829bb069afd07d017980a
           SHA512 
          7003f1f2d57baa9aabc52fdcfaac9456fb4e3fe1e6edc46a4016e561a1d7be4440ce10d2d45366125f950dfd8147e51d9bbabdcf34701f95528a4f8f68a32c81
           DIST linux-5.4.23.tar.xz 109502288 BLAKE2B 
          84b3f193c490e9e6a5095266a61dd683470c14351dc597b569106b813e96e7ab304468495dbf9997ab42d602eb1a3f80dffe523e36e6d209a9986dbfaf75579d
           SHA512 
          392cb5daac01f5d7de958ac5aa5163a4ce9f66312539ebe62742e82307a35462a785450e1265fb4c20134ba25b979ee8566e6a6e5c2e6b305658b9939ee993eb
          -DIST linux-5.5.2-arch1.i686.config 243261 BLAKE2B 
          dc0a7efb9c94af540043db8e559c04bfe2eb493158b0fe7d25984b85ae364cf262cf78ee57f1b1b6c4e9cc51138be15c098268e77f63f158702851352952837b
           SHA512 
          29cbf564fc30f9e8030001cae09d2711292d4e2c9c66f96a61a7d1575dd93d86f00d356697f011ff3810c8db95f95ac1fd54d6220c1f9095797891c29a7e2723
          -DIST linux-5.5.4-arch1.amd64.config 243869 BLAKE2B 
          cf65ebea77e2c8d3de643ddec5b6a3afee6abb3f858ddd987c96a294152caa4aa6731350774a8438d5e2a40c6847433d4243dcebddaaa63bb4cc4187674d7d7d
           SHA512 
          a14808fd73c1d15ca1d73de1e0cf91cecc89332c8ed650352c972b116325c6126cb70e2a40b002616b2bcc9e9197f4486705c353ad3da300c7bbd6ce44ff3737
           DIST linux-5.5.5-arch1.

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

          commit: c917c21bfb239dc74fb0f8ac0a5b98aa00278a84
          Author: Andreas K. Huettel  gentoo  org>
          AuthorDate: Fri Mar  6 13:30:58 2020 +
          Commit: Andreas K. Hüttel  gentoo  org>
          CommitDate: Fri Mar  6 13:30:58 2020 +
          URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c917c21b
          
          sys-libs/binutils-libs: Remove old
          
          Package-Manager: Portage-2.3.87, Repoman-2.3.20
          Signed-off-by: Andreas K. Hüttel  gentoo.org>
          
           sys-libs/binutils-libs/Manifest|   1 -
           sys-libs/binutils-libs/binutils-libs-2.33.1.ebuild | 120 -
           2 files changed, 121 deletions(-)
          
          diff --git a/sys-libs/binutils-libs/Manifest b/sys-libs/binutils-libs/Manifest
          index 00d58647ea8..007085e003c 100644
          --- a/sys-libs/binutils-libs/Manifest
          +++ b/sys-libs/binutils-libs/Manifest
          @@ -1,6 +1,5 @@
           DIST binutils-2.32-patches-2.tar.xz 145672 BLAKE2B 
          8218e621f99cb4bcd1638c3011449b94480d207eaeb79cf75c0072e0f1a86bfd1603fc4515bc40d3ac1921a18b9a211b20568f59b11b13eb44e6cff1329c5af9
           SHA512 
          55c25a603f6175af3ade6848e5c1faba06a147d72e9a4f53d44502d97db76499485a67b278a654d18884714a7bf7b360c77c9e42dba3cdc188f805bfe461f09f
           DIST binutils-2.32.tar.xz 20774880 BLAKE2B 
          d1bdbd9c8487c091665c197974ce4bdf520b7a67ed6997a81b87e6a0af9514a091458244f583acec5ae580ac2ee5e908f67f483b8e5263cd18ced794cb235da6
           SHA512 
          d326408f12a03d9a61a9de56584c2af12f81c2e50d2d7e835d51565df8314df01575724afa1e43bd0db45cfc9916b41519b67dfce03232aa4978704492a6994a
          -DIST binutils-2.33.1-patches-1.tar.xz 17944 BLAKE2B 
          811ad416fe9c059f645856a3123ed32303afe1d0f166a15cb6de0673b5494fdcc4c165da4a68eb7ab73f007618e3a97a5578c4b47de21e57fe501d6a21b6d595
           SHA512 
          63b439637206d21e46d2b79383b38da2b28365a0fdea1f5ac3b665cd05e0b55cd1d7763c05567a5f7ae2c645d2ae639a27e465d535b928d9f8f0e6b94f31e1f7
           DIST binutils-2.33.1-patches-2.tar.xz 18636 BLAKE2B 
          0e0757329b6a83aeff4f4c450c95e73fd48fcc89f83e63f294568632bee0972552cf2f57494352c5d9a7c16a51cdbc4108b38fa6028d4388c8e76046b3da9212
           SHA512 
          d982f68d1f5fdb384309a2a1b7426bf840a90e7a85b37229b4223b62c36cab9dd9ec0c08382c85c68adf996dec21133df3180a2fc649363adae8645f8282f71d
           DIST binutils-2.33.1.tar.xz 21490848 BLAKE2B 
          c336a8412938dc8c224f40a763a8bea9937cca0462a8fb80e62f14aabe590107fc061a3f4b9327e1f4652cb026384d36a91b4766d4d469d2d0680932874b638c
           SHA512 
          b7a6767c6c7ca6b5cafa7080e6820b7bb3a53b7148348c438d99905defbdf0d30c9744a484ee01c9441a8153901808513366b15ba9533e20c9673c262ade36ac
           DIST binutils-2.34-patches-1.tar.xz 20388 BLAKE2B 
          8828505f62259a307de445357320827e7f6bc416a7f4c72140add505f62eef3928c7daec13be158b52c2a7a1d989f539025e4be6ec27ef80ede81477a42c5042
           SHA512 
          951dffcc30ad5706dc48e71995217655c5d96472446ab66a357f19486b57d1868143a9809887eab7ba8c42c33124f8b37d3bab6618388ea8a08b4399d348a645
          
          diff --git a/sys-libs/binutils-libs/binutils-libs-2.33.1.ebuild 
          b/sys-libs/binutils-libs/binutils-libs-2.33.1.ebuild
          deleted file mode 100644
          index 92daa188602..000
          --- a/sys-libs/binutils-libs/binutils-libs-2.33.1.ebuild
          +++ /dev/null
          @@ -1,120 +0,0 @@
          -# Copyright 1999-2019 Gentoo Authors
          -# Distributed under the terms of the GNU General Public License v2
          -
          -EAPI=7
          -
          -PATCH_VER=1
          -PATCH_DEV=dilfridge
          -
          -inherit eutils libtool toolchain-funcs multilib-minimal
          -
          -MY_PN="binutils"
          -MY_P="${MY_PN}-${PV}"
          -PATCH_BINUTILS_VER=${PATCH_BINUTILS_VER:-${PV}}
          -PATCH_DEV=${PATCH_DEV:-slyfox}
          -
          -DESCRIPTION="Core binutils libraries (libbfd, libopcodes, libiberty) for 
          external packages"
          -HOMEPAGE="https://sourceware.org/binutils/";
          -SRC_URI="mirror://gnu/binutils/${MY_P}.tar.xz
          -   
          https://dev.gentoo.org/~${PATCH_DEV}/distfiles/${MY_PN}-${PATCH_BINUTILS_VER}-patches-${PATCH_VER}.tar.xz";
          -
          -LICENSE="|| ( GPL-3 LGPL-3 )"
          -SLOT="0/${PV}"
          -IUSE="64-bit-bfd multitarget nls static-libs"
          -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
          ~s390 ~sh ~sparc ~x86"
          -
          -COMMON_DEPEND="sys-libs/zlib[${MULTILIB_USEDEP}]"
          -DEPEND="${COMMON_DEPEND}
          -   nls? ( sys-devel/gettext )"
          -# Need a newer binutils-config that'll reset include/lib symlinks for us.
          -RDEPEND="${COMMON_DEPEND}
          -   >=sys-devel/binutils-config-5
          -   nls? ( !=2.24) make this an explicit option. #497268
          -   --enable-install-libiberty
          -   --disable-werror
          -   --with-bugurl="https://bugs.gentoo.org/";
          -   --with-pkgversion="$(pkgversion)"
          -   $(use_enable static-libs static)
          -   # The binutils eclass enables this flag for all bi-arch builds,
          -   # but other tools often don't care about that support.  Put it
          -   # beyond a flag if people really want it, but otherwise leave
          -   # it disabled as it can slow things down on 32bit arches. 
          #438522
          -   $(use_enable 64-bit-bfd)
          -   # This only disables building in the zlib subdir.
          -   # For binutils itself, it'll use the system version. #591516
          -   --without-zlib
          -   --with-system-zlib
          -   # We only care about the libs, so

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

          commit: 2346bb397b5eb688b44715c73ead24a638e88530
          Author: Andreas K. Huettel  gentoo  org>
          AuthorDate: Fri Mar  6 13:29:56 2020 +
          Commit: Andreas K. Hüttel  gentoo  org>
          CommitDate: Fri Mar  6 13:29:56 2020 +
          URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2346bb39
          
          sys-devel/binutils: Remove old
          
          Package-Manager: Portage-2.3.87, Repoman-2.3.20
          Signed-off-by: Andreas K. Hüttel  gentoo.org>
          
           sys-devel/binutils/Manifest   |   1 -
           sys-devel/binutils/binutils-2.33.1.ebuild | 433 --
           2 files changed, 434 deletions(-)
          
          diff --git a/sys-devel/binutils/Manifest b/sys-devel/binutils/Manifest
          index 57696899ef0..3621a419748 100644
          --- a/sys-devel/binutils/Manifest
          +++ b/sys-devel/binutils/Manifest
          @@ -5,7 +5,6 @@ DIST binutils-2.31.1.tar.xz 20467996 BLAKE2B 
          6b914df1fbb7cf54f2159f71b2c2b09f3f6
           DIST binutils-2.32-patches-2.tar.xz 145672 BLAKE2B 
          8218e621f99cb4bcd1638c3011449b94480d207eaeb79cf75c0072e0f1a86bfd1603fc4515bc40d3ac1921a18b9a211b20568f59b11b13eb44e6cff1329c5af9
           SHA512 
          55c25a603f6175af3ade6848e5c1faba06a147d72e9a4f53d44502d97db76499485a67b278a654d18884714a7bf7b360c77c9e42dba3cdc188f805bfe461f09f
           DIST binutils-2.32-patches-3.tar.xz 151372 BLAKE2B 
          70d5f78d9f3e3bf9ff096b6f24babcc35c63395a5e1155a981a5ceb4b7a5706ad2ee0c77c74e910fc0eefeaed19763113186deb9665eed538dc3b8e227bef12d
           SHA512 
          5e91eff63332c2aca86a82a287ca4959a6098065ed88078265a3d79a2c851abd113e9736b75d8102a208996ed1191b0e23569921217ece975f1d9005a55afd0d
           DIST binutils-2.32.tar.xz 20774880 BLAKE2B 
          d1bdbd9c8487c091665c197974ce4bdf520b7a67ed6997a81b87e6a0af9514a091458244f583acec5ae580ac2ee5e908f67f483b8e5263cd18ced794cb235da6
           SHA512 
          d326408f12a03d9a61a9de56584c2af12f81c2e50d2d7e835d51565df8314df01575724afa1e43bd0db45cfc9916b41519b67dfce03232aa4978704492a6994a
          -DIST binutils-2.33.1-patches-1.tar.xz 17944 BLAKE2B 
          811ad416fe9c059f645856a3123ed32303afe1d0f166a15cb6de0673b5494fdcc4c165da4a68eb7ab73f007618e3a97a5578c4b47de21e57fe501d6a21b6d595
           SHA512 
          63b439637206d21e46d2b79383b38da2b28365a0fdea1f5ac3b665cd05e0b55cd1d7763c05567a5f7ae2c645d2ae639a27e465d535b928d9f8f0e6b94f31e1f7
           DIST binutils-2.33.1-patches-2.tar.xz 18636 BLAKE2B 
          0e0757329b6a83aeff4f4c450c95e73fd48fcc89f83e63f294568632bee0972552cf2f57494352c5d9a7c16a51cdbc4108b38fa6028d4388c8e76046b3da9212
           SHA512 
          d982f68d1f5fdb384309a2a1b7426bf840a90e7a85b37229b4223b62c36cab9dd9ec0c08382c85c68adf996dec21133df3180a2fc649363adae8645f8282f71d
           DIST binutils-2.33.1.tar.xz 21490848 BLAKE2B 
          c336a8412938dc8c224f40a763a8bea9937cca0462a8fb80e62f14aabe590107fc061a3f4b9327e1f4652cb026384d36a91b4766d4d469d2d0680932874b638c
           SHA512 
          b7a6767c6c7ca6b5cafa7080e6820b7bb3a53b7148348c438d99905defbdf0d30c9744a484ee01c9441a8153901808513366b15ba9533e20c9673c262ade36ac
           DIST binutils-2.34-patches-1.tar.xz 20388 BLAKE2B 
          8828505f62259a307de445357320827e7f6bc416a7f4c72140add505f62eef3928c7daec13be158b52c2a7a1d989f539025e4be6ec27ef80ede81477a42c5042
           SHA512 
          951dffcc30ad5706dc48e71995217655c5d96472446ab66a357f19486b57d1868143a9809887eab7ba8c42c33124f8b37d3bab6618388ea8a08b4399d348a645
          
          diff --git a/sys-devel/binutils/binutils-2.33.1.ebuild 
          b/sys-devel/binutils/binutils-2.33.1.ebuild
          deleted file mode 100644
          index 164192f9c5c..000
          --- a/sys-devel/binutils/binutils-2.33.1.ebuild
          +++ /dev/null
          @@ -1,433 +0,0 @@
          -# Copyright 1999-2020 Gentoo Authors
          -# Distributed under the terms of the GNU General Public License v2
          -
          -EAPI=7
          -
          -inherit eutils libtool flag-o-matic gnuconfig multilib toolchain-funcs
          -
          -DESCRIPTION="Tools necessary to build programs"
          -HOMEPAGE="https://sourceware.org/binutils/";
          -LICENSE="GPL-3+"
          -IUSE="default-gold doc +gold multitarget +nls +plugins static-libs test"
          -REQUIRED_USE="default-gold? ( gold )"
          -
          -# Variables that can be set here:
          -# PATCH_VER  - the patchset version
          -#  Default: empty, no patching
          -# PATCH_BINUTILS_VER - the binutils version in the patchset name
          -#- Default: PV
          -# PATCH_DEV  - Use download URI 
          https://dev.gentoo.org/~{PATCH_DEV}/distfiles/...
          -#  for the patchsets
          -
          -PATCH_VER=1
          -PATCH_DEV=dilfridge
          -
          -case ${PV} in
          -   )
          -   EGIT_REPO_URI="https://sourceware.org/git/binutils-gdb.git";
          -   inherit git-r3
          -   S=${WORKDIR}/binutils
          -   EGIT_CHECKOUT_DIR=${S}
          -   SLOT=${PV}
          -   ;;
          -   *.)
          -   EGIT_REPO_URI="https://sourceware.org/git/binutils-gdb.git";
          -   inherit git-r3
          -   S=${WORKDIR}/binutils
          -   EGIT_CHECKOUT_DIR=${S}
          -   EGIT_BRANCH=$(ver_cut 1-2)
          -   EGIT_BRANCH="binutils-${EGIT_BRANCH/./_}-branch"
          -   SLOT=$(ver_cut 1-2)
          -   ;;
          -   *)
          -   SRC_URI="mirror://gnu/binutils/binutils-${PV}.tar.xz"
          -   SLOT=$(ver_cut 1-2)
          -   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips 
          ~ppc ~ppc64 ~riscv 

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

          commit: 13eb3b1cbaaa56e4bf2c27d656b25a3345e2ffbc
          Author: Bernard Cafarelli  gentoo  org>
          AuthorDate: Fri Mar  6 13:01:05 2020 +
          Commit: Bernard Cafarelli  gentoo  org>
          CommitDate: Fri Mar  6 13:01:05 2020 +
          URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13eb3b1c
          
          media-gfx/mcomix: drop old stable
          
          Broken and depending on pygtk
          
          Bug: https://bugs.gentoo.org/708100
          Package-Manager: Portage-2.3.92, Repoman-2.3.20
          Signed-off-by: Bernard Cafarelli  gentoo.org>
          
           media-gfx/mcomix/Manifest|  1 -
           media-gfx/mcomix/mcomix-1.2.1.ebuild | 69 
           2 files changed, 70 deletions(-)
          
          diff --git a/media-gfx/mcomix/Manifest b/media-gfx/mcomix/Manifest
          index 29d4b5c1fec..7070a2d548c 100644
          --- a/media-gfx/mcomix/Manifest
          +++ b/media-gfx/mcomix/Manifest
          @@ -1,2 +1 @@
          -DIST mcomix-1.2.1.tar.bz2 571128 BLAKE2B 
          fa00e55e5cf2ef676a625b97ca467ade6b629fa08bfd920b8c370dc7d33c6602c5614d120d7279df32d063db646da8b635712ba90793175eea2c74c2c1973a8a
           SHA512 
          efa4d57edc3a48d9e711767fb3e233ef9b334ff8ba467999e572e60ed747a4ee4aa420c8aa7788b16d7eb6e0901d454d6a405fcec47a8c74098a49491e915cd0
           DIST mcomix-1.3.0_pre20200206.tar.gz 3292571 BLAKE2B 
          ad76316020645495042d27bf831588e628da11077efe29b302a57be4e688558b4db8d3f850200bf4a54b84b428a16a52f88ea5e20be85b628ef3630a5f624643
           SHA512 
          c98d4a7022993af3a5c0b5425df52f14b586549472bcd4576a72039c8c6d4fde31df4255df45ab7467acb0280bda02b92d4803b7f92b7c1c818b58df7b52a3ff
          
          diff --git a/media-gfx/mcomix/mcomix-1.2.1.ebuild 
          b/media-gfx/mcomix/mcomix-1.2.1.ebuild
          deleted file mode 100644
          index c34c73cf85a..000
          --- a/media-gfx/mcomix/mcomix-1.2.1.ebuild
          +++ /dev/null
          @@ -1,69 +0,0 @@
          -# Copyright 1999-2020 Gentoo Authors
          -# Distributed under the terms of the GNU General Public License v2
          -
          -EAPI="5"
          -
          -PYTHON_COMPAT=( python2_7 )
          -PYTHON_REQ_USE="sqlite"
          -
          -PLOCALES="ca cs de el es fa fr gl he hr hu id it ja ko nl pl pt_BR ru sv uk 
          zh_CN zh_TW"
          -
          -inherit distutils-r1 eutils l10n xdg-utils
          -
          -DESCRIPTION="A fork of comix, a GTK image viewer for comic book archives"
          -HOMEPAGE="https://sourceforge.net/p/mcomix/wiki/Home/";
          -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
          -
          -LICENSE="GPL-2"
          -SLOT="0"
          -KEYWORDS="amd64 x86"
          -IUSE=""
          -
          -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
          -RDEPEND="${DEPEND}
          -   >=dev-python/pygtk-2.14[${PYTHON_USEDEP}]
          -   virtual/jpeg
          -   dev-python/pillow[${PYTHON_USEDEP}]
          -   x11-libs/gdk-pixbuf
          -   !media-gfx/comix"
          -
          -DOCS=( ChangeLog README )
          -
          -src_prepare() {
          -   local checklocales
          -   for l in $(find "${S}"/mcomix/messages/* -maxdepth 0 -type d);
          -   do checklocales+="$(basename $l) "
          -   done
          -
          -   [[ ${PLOCALES} == ${checklocales% } ]] \
          -   || eqawarn "Update to PLOCALES=\"${checklocales% }\""
          -
          -   my_rm_loc() {
          -   rm -rf "${S}/mcomix/messages/${1}/LC_MESSAGES" || die
          -   rmdir "${S}/mcomix/messages/${1}" || die
          -   }
          -
          -   l10n_for_each_disabled_locale_do my_rm_loc
          -
          -   distutils-r1_src_prepare
          -}
          -
          -pkg_postinst() {
          -   xdg_mimeinfo_database_update
          -   xdg_desktop_database_update
          -   echo
          -   elog "Additional packages are required to open the most common comic 
          archives:"
          -   elog
          -   elog "cbr: app-arch/unrar"
          -   elog "cbz: app-arch/unzip"
          -   elog
          -   elog "You can also add support for 7z or LHA archives by installing"
          -   elog "app-arch/p7zip or app-arch/lha. Install app-text/mupdf for"
          -   elog "pdf support."
          -   echo
          -}
          -
          -pkg_postrm() {
          -   xdg_mimeinfo_database_update
          -   xdg_desktop_database_update
          -}
          
          
          

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

          commit: 21f415f5141f9aff9b1ec82f878680401e70cf3b
          Author: Ben Kohler  gentoo  org>
          AuthorDate: Fri Mar  6 12:56:41 2020 +
          Commit: Ben Kohler  gentoo  org>
          CommitDate: Fri Mar  6 12:57:00 2020 +
          URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21f415f5
          
          net-misc/dropbox: drop old
          
          Package-Manager: Portage-2.3.92, Repoman-2.3.20
          Signed-off-by: Ben Kohler  gentoo.org>
          
           net-misc/dropbox/Manifest|   8 ---
           net-misc/dropbox/dropbox-89.4.278.ebuild | 109 ---
           net-misc/dropbox/dropbox-90.4.307.ebuild | 109 ---
           net-misc/dropbox/dropbox-91.4.548.ebuild | 109 ---
           net-misc/dropbox/dropbox-92.3.365.ebuild | 102 -
           5 files changed, 437 deletions(-)
          
          diff --git a/net-misc/dropbox/Manifest b/net-misc/dropbox/Manifest
          index 32b014ca8b1..d58c1e82995 100644
          --- a/net-misc/dropbox/Manifest
          +++ b/net-misc/dropbox/Manifest
          @@ -1,12 +1,4 @@
           DIST dropbox-lnx.x86-89.3.268.tar.gz 92308961 BLAKE2B 
          4b1a229eca8e96b49360404fc3a03277343f1dcea9b2065b637d8531b266233215e3f3c21163d20ed104db90b4d37dcd873bc1353036a14f89ac50b78180a518
           SHA512 
          25195ef1f44641ca3aee00c4b5cb52006d9610b9d067ea1ade4717dd47729db98e5b0556b5c61ea881ee84e8f8aafec86891d8d3f4c1ecc81974159e3321
          -DIST dropbox-lnx.x86-89.4.278.tar.gz 92309633 BLAKE2B 
          47f886ab9f81335b8cb0a9133ad0b47e55d53aab6d6d99b89f2b266bd0345e4a788b950dd3fce7b24ff91ffc45c2ba5e8e5154d28a1c3690ed1d200d4d06e9ee
           SHA512 
          7f3731f32ef7869c31b18ca7b167ed5695deb8c8130aff3bb77837991ae3472bd49ef4069dd5ccda76a02b518f7eaba0209fbaf94b974e7caed4c0f8b9ee
          -DIST dropbox-lnx.x86-90.4.307.tar.gz 92672302 BLAKE2B 
          4323a379cbfe4428db63bb36c78b9eb83dc6026242eeb6f6f68687f0868c2d03edcf40ff2c9312e5a432458814c96a4df749640f0a256ecc675f3a5e860a8772
           SHA512 
          b3248397d8b83436ccaf671528a2dd333c8bcb3073b3248f1826a63c5b1f542a7bebfd8ee184e3eb5feb74070116c681a3c71816c4a8ae817ed992cc9b07aa00
          -DIST dropbox-lnx.x86-91.4.548.tar.gz 93309539 BLAKE2B 
          8e0349ad072c6aabfd0b0b8c6b75acede9bb0765945a49186362f2f511ee73a989ef408d1634110cabc9116002d5f046d7fb723db7d4748ca192e652ccdb7535
           SHA512 
          f4c6c2883da728ab9ad811183680ffdb34600af8da48e3c54dc65d6ca533e92d1f44a878e5f2f9379e26049e184a0d6943a886d7af194969c92ec83289a0d9d5
          -DIST dropbox-lnx.x86-92.3.365.tar.gz 93818688 BLAKE2B 
          670b1ae458f7ba76290478860f06cf58379f94a639887dfb738715a3cdcb1191635adc26b10363575cd0d131b096bdfd9191a09ed2cbe228b6ba9e3eb807ea29
           SHA512 
          25ed1f1f257694fa1f249f97ec2e0da66bef10cee94dae8e5bc3e1643c7c561689c6ff8a9699d1140ef5400771c08706f44295fb8c7f7f09be2f7042b24d11a5
           DIST dropbox-lnx.x86-93.3.258.tar.gz 93320225 BLAKE2B 
          d6b9d87718e1a2832c6afd28515658c2219dc3cae1b16fc3704c00cad9e2a63547b5c09ec5d80a41b32ba688fc7d064f493db43714e693d3a2ba71303730be83
           SHA512 
          2b1fb83ce43f6e8db12294ff1850dfb65bb88ba14e9e5b734d66f07b4ce8e805f4d63260f1036e083796db7a42f03d62516ee96cab993705a4bce878c86279ca
           DIST dropbox-lnx.x86_64-89.3.268.tar.gz 96723713 BLAKE2B 
          5bfb7721303b466f9015709f1a235045263fa0db46ff4f0ad7e772c4dc1261b8c7549d63c0ac4a9d98e35581c630ad5ed851d0c63334267b196bec7dc93c0ddf
           SHA512 
          627bf49df5a6da76bf04484912c7be686f4e9adc51be619fd613b56fdd514088c173c39cab5fb5a6757074130efc54edf192c7df43090965ba9066de5d0f1755
          -DIST dropbox-lnx.x86_64-89.4.278.tar.gz 96726025 BLAKE2B 
          152be18f9b15e9e2a4c188ea6f4649da09b6d50571bacf42068db1abe16a375612e5db9c86369cc4d3e582b660d79df1f35af03504abfed64e728a8515630eed
           SHA512 
          5bfc29ff40a3b423eb03ad44e0212ebf015b877bd128432f76ff3103aa43ea6f87575247a5b0b815951c203dfd4b54345e6ab880ab47deb21e29d659e5819755
          -DIST dropbox-lnx.x86_64-90.4.307.tar.gz 97077393 BLAKE2B 
          2271b740d381ad5748ec0b5986991b1b3e5ef9d9553e101eca787ff0db5eb03dd91934b7024cdb2eb545dff7ecb5dd64bb95d3b0b8b5f709fb27f90081a1a0e4
           SHA512 
          464ba52e6fe3376c1bd8cb0806a65918e2fd3ff0e5b8379c6c19f9b302cc64b64cdc80f9b8ee2a072fa6564d8c9de0502a9474c72ef5560d7a0b62faf9c5633a
          -DIST dropbox-lnx.x86_64-91.4.548.tar.gz 97671093 BLAKE2B 
          589d92f99809b59b84075c827de697c15ad566eaa6269b5c017f781115db391c09738b2032a0e0215b304d58bf324686cb1db9a41d822f99259fa205daa5c38a
           SHA512 
          b6868fa07258423c22f6d800a33e220b3b8d19b06f5a99ec16890e4a1f7e2c9112d3e16cfa64f145cb9287ee149c20c4ce91bf434ebe5b4393bad91ba76edb8b
          -DIST dropbox-lnx.x86_64-92.3.365.tar.gz 98181418 BLAKE2B 
          f9ac16e13fc52b0e875617ef161beb902fd75956af9fd3194d2bab5be2d2454d5e0dc510b8b62ca4c892c57f76c9598aca770dc2608f691faa53ae9d45b1721a
           SHA512 
          64f26097838fd8d49ce7a25cf303422e9c742fa867a58c145f30cacf85e559a9d0f124715057c0149cb576fb09706372d5518188df7ccb3ec56cd9f7e0de14ae
           DIST dropbox-lnx.x86_64-93.3.258.tar.gz 97663412 BLAKE2B 
          bed59ecb0c9ad57eb11597deac29bbca09c4a938eca7c759c0314c47392e2eb33b75febfb9056057f8495cd34078645c203b16e5aac7ad505d56c460ab7d529f
           SHA512 
          6873d6b27330eacc5e8300331863c84f5a4425d84216a2879e0784c86224576d71a729d4720b986b74ec0733c4254012e0013cdf775bbc8114f48704836a783d
          
          diff --git a/net-misc/dropbox/dropbox-89.4.278.ebuild 
          b/net-misc/dropbox/dropbox-89.4.278.ebuild
          deleted fi

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

          commit: e3d34d28ae3834b4b16a7b80c75002216b0d134f
          Author: Ben Kohler  gentoo  org>
          AuthorDate: Fri Mar  6 12:50:10 2020 +
          Commit: Ben Kohler  gentoo  org>
          CommitDate: Fri Mar  6 12:56:58 2020 +
          URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3d34d28
          
          net-wireless/unifi: bump to 5.13.10
          
          Package-Manager: Portage-2.3.92, Repoman-2.3.20
          Signed-off-by: Ben Kohler  gentoo.org>
          
           net-wireless/unifi/Manifest |  1 +
           net-wireless/unifi/unifi-5.13.10.ebuild | 73 +
           2 files changed, 74 insertions(+)
          
          diff --git a/net-wireless/unifi/Manifest b/net-wireless/unifi/Manifest
          index ead3460b56b..cb7a87e45e4 100644
          --- a/net-wireless/unifi/Manifest
          +++ b/net-wireless/unifi/Manifest
          @@ -2,5 +2,6 @@ DIST unifi-5.12.35.zip 114691419 BLAKE2B 
          0400f78cbc880f52e8e352a1b8ef925c293b5a5
           DIST unifi-5.12.46.zip 115612217 BLAKE2B 
          86facd4f21cf66091acfb4bfa5155188b30b1a33848ff0c24c393abf53f5efb114aca86b43b6040961fd9afe6ba1e1a42280f20f48c21772f884edd52b10b25c
           SHA512 
          05135f75bf6484810ff66b58452ea8bca1c4e47d5fa7a955bdf9653777f80a7fa355bdaa6586e3a0d98bdcf69cce4e28cf3d14cf8204b82591ba6a08307deef3
           DIST unifi-5.12.60.zip 117404012 BLAKE2B 
          2ef8fbbf3c6be963929678e1e563ec4e8716e385a61ae770fdf275d166a8b0db3bdbbd043a61bf9aca347a2383712733de5b80712f2ce9201772956f1e6fd2a1
           SHA512 
          d6c172f69b13941fa1c6a69dc1a2995a94f9a42024c8814cbda6e68796a2244a08e6acd00dc5af45b68164157d1cd5d04b343aeb4086cbd71b72c5af2904
           DIST unifi-5.12.66.zip 117434749 BLAKE2B 
          6d48632b7add5f3943574decb66aeb209c570151ee4f1c4dca10feeff924ba1946bc7bd1aae8ce36ac0a20ce2765da9953ded073086a82fd59ed08a57e30965d
           SHA512 
          138882bd7a67900ff47e5b02644a7e1941aef98d49ee6e56fa41b462ffd2e92e073e8064bfd846f2c369ef3491b3adc3032dd2ca9b8980058ca88d1925367ca0
          +DIST unifi-5.13.10.zip 126198214 BLAKE2B 
          168baabd0523091ee41b75809c9bbe9941ea0dd9fa97807c826ad1be3afee868ac0932b5068ddcbfd8cfd9c6e3c7838c663c7b248e9cd21ea90cac59e99ed99d
           SHA512 
          08d4053201671380c152597ed6a795f593a03b67488d3d21c1f1320bc2ca980e9985e86e45eb6ef5582184c371a33eedbecfc867aac6c9129f653b84c1a87fcc
           DIST unifi-5.13.9.zip 117147673 BLAKE2B 
          d05f0e6d0bdada8e1e02f78f99d59f02e259f9c6f6e78827a7288520e393e0811f37501004b3914f5df4ec2065728b28d5a9eb3a376d1f83b174ab7e07215bea
           SHA512 
          363b8019ba0854c289b2ec375739d0a86353fd876f3b59c7d8dd191da40866433ed98c1888d5d45a5def1209c1c0d7be733a71c3f5749c7b4def682d195e
           DIST unifi-5.6.42.zip 63581448 BLAKE2B 
          dc12149acc56587043b9f6c45a43327a9a067dda86127c60ad62a4681a0c8ba873435b60183989332f561fb52f71c7207480766ec23d9c0e892cc20c521a9819
           SHA512 
          467c0ad284a84795537484f371867d851e67c7e396215d539a9705f17f374b50db4051121a6634d1944474a2474bdd75fca860ab00b48634a5d3e8749a122989
          
          diff --git a/net-wireless/unifi/unifi-5.13.10.ebuild 
          b/net-wireless/unifi/unifi-5.13.10.ebuild
          new file mode 100644
          index 000..800112ef51b
          --- /dev/null
          +++ b/net-wireless/unifi/unifi-5.13.10.ebuild
          @@ -0,0 +1,73 @@
          +# Copyright 1999-2020 Gentoo Authors
          +# Distributed under the terms of the GNU General Public License v2
          +
          +EAPI=6
          +
          +# Set this var for any releases except stable
          +RC_SUFFIX="-202b4c03d0"
          +
          +inherit systemd
          +
          +DESCRIPTION="A Management Controller for Ubiquiti Networks UniFi APs"
          +HOMEPAGE="https://www.ubnt.com";
          +SRC_URI="https://dl.ui.com/unifi/${PV}${RC_SUFFIX}/UniFi.unix.zip -> ${P}.zip"
          +
          +KEYWORDS="~amd64"
          +LICENSE="Apache-1.0 Apache-2.0 BSD-1 BSD-2 BSD CDDL EPL-1.0 GPL-2 LGPL-2.1 
          LGPL-3 MIT ubiquiti"
          +SLOT="0/5.13"
          +IUSE="systemd"
          +
          +RDEPEND="
          +   acct-group/unifi
          +   acct-user/unifi
          +   dev-db/mongodb
          +   virtual/jre:1.8
          +"
          +
          +DEPEND="app-arch/unzip"
          +
          +RESTRICT="bindist mirror"
          +
          +S="${WORKDIR}/UniFi"
          +
          +DOCS=( "readme.txt" )
          +
          +QA_PREBUILT="usr/lib/unifi/lib/native/Linux/x86_64/*.so"
          +
          +src_prepare() {
          +   # Remove unneeded files Linux, Mac and Windows
          +   rm -r lib/native/Linux/{aarch64,armv7} lib/native/{Mac,Windows} || die
          +   if ! use systemd; then
          +   rm lib/native/Linux/x86_64/libubnt_sdnotify_jni.so || die
          +   fi
          +
          +   default
          +}
          +
          +src_install() {
          +   # Install MongoDB wrapper script, to avoid problems with >= 3.6.0
          +   # See 
          https://community.ubnt.com/t5/UniFi-Routing-Switching/MongoDB-3-6/td-p/2195435
          +   exeinto /usr/lib/unifi/bin
          +   newexe "${FILESDIR}"/mongod-wrapper mongod
          +
          +   insinto /usr/lib/unifi
          +   doins -r dl lib webapps
          +
          +   diropts -o unifi -g unifi
          +   keepdir /var/lib/unifi/{conf,data,run,tmp,work} /var/log/unifi
          +
          +   for symlink in conf data run tmp work; do
          +   dosym ../../../var/lib/unifi/${symlink} 
          /usr/lib/unifi/${symlink}
          +   done
          +   dosym ../../../var/log/unifi /usr/lib/unifi/logs
          +
          +   newinitd "${FILESDIR}"/unifi.initd-r1 unifi
          +   systemd_dounit "${FILESDIR}"/unifi.service
          +
          +   newconfd "${FILESDIR}"/unifi.confd unifi
          +
          +   echo 'CONFIG_PROTECT="/var/lib/unifi"' > "${T}"/99unifi || die
          +   doenvd "${T}"/99unifi
          +
          +   einstalldocs
          +}
          
          
          

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

          commit: 4c5dfb2fa546444f0f5a3abbb93cebc4f568181d
          Author: Ben Kohler  gentoo  org>
          AuthorDate: Fri Mar  6 12:55:18 2020 +
          Commit: Ben Kohler  gentoo  org>
          CommitDate: Fri Mar  6 12:56:59 2020 +
          URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c5dfb2f
          
          net-misc/dropbox: bump to 93.3.258
          
          Package-Manager: Portage-2.3.92, Repoman-2.3.20
          Signed-off-by: Ben Kohler  gentoo.org>
          
           net-misc/dropbox/Manifest|   2 +
           net-misc/dropbox/dropbox-93.3.258.ebuild | 102 +++
           2 files changed, 104 insertions(+)
          
          diff --git a/net-misc/dropbox/Manifest b/net-misc/dropbox/Manifest
          index a8b5bfdcf60..32b014ca8b1 100644
          --- a/net-misc/dropbox/Manifest
          +++ b/net-misc/dropbox/Manifest
          @@ -3,8 +3,10 @@ DIST dropbox-lnx.x86-89.4.278.tar.gz 92309633 BLAKE2B 
          47f886ab9f81335b8cb0a9133a
           DIST dropbox-lnx.x86-90.4.307.tar.gz 92672302 BLAKE2B 
          4323a379cbfe4428db63bb36c78b9eb83dc6026242eeb6f6f68687f0868c2d03edcf40ff2c9312e5a432458814c96a4df749640f0a256ecc675f3a5e860a8772
           SHA512 
          b3248397d8b83436ccaf671528a2dd333c8bcb3073b3248f1826a63c5b1f542a7bebfd8ee184e3eb5feb74070116c681a3c71816c4a8ae817ed992cc9b07aa00
           DIST dropbox-lnx.x86-91.4.548.tar.gz 93309539 BLAKE2B 
          8e0349ad072c6aabfd0b0b8c6b75acede9bb0765945a49186362f2f511ee73a989ef408d1634110cabc9116002d5f046d7fb723db7d4748ca192e652ccdb7535
           SHA512 
          f4c6c2883da728ab9ad811183680ffdb34600af8da48e3c54dc65d6ca533e92d1f44a878e5f2f9379e26049e184a0d6943a886d7af194969c92ec83289a0d9d5
           DIST dropbox-lnx.x86-92.3.365.tar.gz 93818688 BLAKE2B 
          670b1ae458f7ba76290478860f06cf58379f94a639887dfb738715a3cdcb1191635adc26b10363575cd0d131b096bdfd9191a09ed2cbe228b6ba9e3eb807ea29
           SHA512 
          25ed1f1f257694fa1f249f97ec2e0da66bef10cee94dae8e5bc3e1643c7c561689c6ff8a9699d1140ef5400771c08706f44295fb8c7f7f09be2f7042b24d11a5
          +DIST dropbox-lnx.x86-93.3.258.tar.gz 93320225 BLAKE2B 
          d6b9d87718e1a2832c6afd28515658c2219dc3cae1b16fc3704c00cad9e2a63547b5c09ec5d80a41b32ba688fc7d064f493db43714e693d3a2ba71303730be83
           SHA512 
          2b1fb83ce43f6e8db12294ff1850dfb65bb88ba14e9e5b734d66f07b4ce8e805f4d63260f1036e083796db7a42f03d62516ee96cab993705a4bce878c86279ca
           DIST dropbox-lnx.x86_64-89.3.268.tar.gz 96723713 BLAKE2B 
          5bfb7721303b466f9015709f1a235045263fa0db46ff4f0ad7e772c4dc1261b8c7549d63c0ac4a9d98e35581c630ad5ed851d0c63334267b196bec7dc93c0ddf
           SHA512 
          627bf49df5a6da76bf04484912c7be686f4e9adc51be619fd613b56fdd514088c173c39cab5fb5a6757074130efc54edf192c7df43090965ba9066de5d0f1755
           DIST dropbox-lnx.x86_64-89.4.278.tar.gz 96726025 BLAKE2B 
          152be18f9b15e9e2a4c188ea6f4649da09b6d50571bacf42068db1abe16a375612e5db9c86369cc4d3e582b660d79df1f35af03504abfed64e728a8515630eed
           SHA512 
          5bfc29ff40a3b423eb03ad44e0212ebf015b877bd128432f76ff3103aa43ea6f87575247a5b0b815951c203dfd4b54345e6ab880ab47deb21e29d659e5819755
           DIST dropbox-lnx.x86_64-90.4.307.tar.gz 97077393 BLAKE2B 
          2271b740d381ad5748ec0b5986991b1b3e5ef9d9553e101eca787ff0db5eb03dd91934b7024cdb2eb545dff7ecb5dd64bb95d3b0b8b5f709fb27f90081a1a0e4
           SHA512 
          464ba52e6fe3376c1bd8cb0806a65918e2fd3ff0e5b8379c6c19f9b302cc64b64cdc80f9b8ee2a072fa6564d8c9de0502a9474c72ef5560d7a0b62faf9c5633a
           DIST dropbox-lnx.x86_64-91.4.548.tar.gz 97671093 BLAKE2B 
          589d92f99809b59b84075c827de697c15ad566eaa6269b5c017f781115db391c09738b2032a0e0215b304d58bf324686cb1db9a41d822f99259fa205daa5c38a
           SHA512 
          b6868fa07258423c22f6d800a33e220b3b8d19b06f5a99ec16890e4a1f7e2c9112d3e16cfa64f145cb9287ee149c20c4ce91bf434ebe5b4393bad91ba76edb8b
           DIST dropbox-lnx.x86_64-92.3.365.tar.gz 98181418 BLAKE2B 
          f9ac16e13fc52b0e875617ef161beb902fd75956af9fd3194d2bab5be2d2454d5e0dc510b8b62ca4c892c57f76c9598aca770dc2608f691faa53ae9d45b1721a
           SHA512 
          64f26097838fd8d49ce7a25cf303422e9c742fa867a58c145f30cacf85e559a9d0f124715057c0149cb576fb09706372d5518188df7ccb3ec56cd9f7e0de14ae
          +DIST dropbox-lnx.x86_64-93.3.258.tar.gz 97663412 BLAKE2B 
          bed59ecb0c9ad57eb11597deac29bbca09c4a938eca7c759c0314c47392e2eb33b75febfb9056057f8495cd34078645c203b16e5aac7ad505d56c460ab7d529f
           SHA512 
          6873d6b27330eacc5e8300331863c84f5a4425d84216a2879e0784c86224576d71a729d4720b986b74ec0733c4254012e0013cdf775bbc8114f48704836a783d
          
          diff --git a/net-misc/dropbox/dropbox-93.3.258.ebuild 
          b/net-misc/dropbox/dropbox-93.3.258.ebuild
          new file mode 100644
          index 000..ff550315591
          --- /dev/null
          +++ b/net-misc/dropbox/dropbox-93.3.258.ebuild
          @@ -0,0 +1,102 @@
          +# Copyright 1999-2020 Gentoo Authors
          +# Distributed under the terms of the GNU General Public License v2
          +
          +EAPI=7
          +
          +inherit desktop pax-utils systemd xdg
          +
          +DESCRIPTION="Dropbox daemon (pretends to be GUI-less)"
          +HOMEPAGE="https://www.dropbox.com/";
          +SRC_URI="
          +   amd64? ( 
          https://clientupdates.dropboxstatic.com/dbx-releng/client/dropbox-lnx.x86_64-${PV}.tar.gz
           )
          +   x86? ( 
          https://clientupdates.dropboxstatic.com/dbx-releng/client/dropbox-lnx.x86-${PV}.tar.gz
           )"
          +
          +LICENSE="BSD-2 CC-BY-ND-3.0 FTL MIT LGPL-2 openssl dropbox"
          +SLOT="0"
          +KEYWORDS="~amd64 ~x86 ~x86-linux"
          +IUSE="+librsync-bundled selinux X"
          +
          +RESTRICT="mirror strip"
          +
          +QA_PREBUILT="opt/.

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

          commit: f44d05b7a912b6289009c66604defde234b84079
          Author: Lars Wendler  gentoo  org>
          AuthorDate: Fri Mar  6 12:31:30 2020 +
          Commit: Lars Wendler  gentoo  org>
          CommitDate: Fri Mar  6 12:36:14 2020 +
          URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f44d05b7
          
          sys-apps/fwupd: Removed old
          
          Package-Manager: Portage-2.3.92, Repoman-2.3.20
          Signed-off-by: Lars Wendler  gentoo.org>
          
           sys-apps/fwupd/Manifest   |   2 -
           sys-apps/fwupd/fwupd-1.3.6.ebuild | 163 --
           sys-apps/fwupd/fwupd-1.3.7.ebuild | 163 --
           3 files changed, 328 deletions(-)
          
          diff --git a/sys-apps/fwupd/Manifest b/sys-apps/fwupd/Manifest
          index df0d2dcc6dc..e5a784b78a0 100644
          --- a/sys-apps/fwupd/Manifest
          +++ b/sys-apps/fwupd/Manifest
          @@ -1,5 +1,3 @@
           DIST fwupd-1.2.11.tar.gz 1945646 BLAKE2B 
          4eb6d5008d0e515880147a94b2632ed70b5f7ab1891775ac121347653c06bf4403ab7f4a1fe16a6195d360fe06d64c8971dd53c1538aeac40d155f59979a
           SHA512 
          a8d6a76ac59937547c6866d414e95a67779574901b0a15ecfde763f49b434b284be2ade1194179225785006e5f93836667469d08f32d4c87fc85927aa0bfe9de
          -DIST fwupd-1.3.6.tar.gz 2207849 BLAKE2B 
          465055d90576d4c0a7812f2554d2bc3298a12030816a2469ce653d28f9ea81e363c401355191d41b200975a615cfc64b954e0cced6b6f6bbfbbf26f63163a25e
           SHA512 
          20a5f346563b1cb8296f31ea448f336d8b54df2e5296524e2fa040a31001838b0de4a88f0d4aad9f5eeaeb4acc46919c0effb254ce681556db00cec5a4a1bc78
          -DIST fwupd-1.3.7.tar.gz 2223704 BLAKE2B 
          e86603542dc76ec355912fae86721b8e60cea8bef34224cf5f157d3a91058deafc2804761ece472f0264ef42d7fa2b77d935a1638c9db3a6c0722c0659ce6a59
           SHA512 
          6734533193be40051a565609905097c76d9f53c53075e37f560408be698774be0867383877b2acbcd2e5a92c817afdd30532f3d94465b27311b31c825a38481e
           DIST fwupd-1.3.8.tar.gz 2246170 BLAKE2B 
          b55df322c64947b7bf05daaec2c5b2f646a4e53d757482dcd4d33e94d725315e6456bf69d5dbca3ef870437e1cc2a861537fc7af9b059497f119f08477de
           SHA512 
          0f0aa380adc5e167e49db4261b50bee9c905786afcd44b5fe221f42a77306219d40888989e0b16448535eaf077baed12de56b6cca42f91fca09c4a8384f243e4
           DIST fwupd-1.3.9.tar.gz 2254260 BLAKE2B 
          ead64be3eca00fd2d045fb6c5ccd42d8913fa056736e6ae039feef70b6edababe50fb0552db39bf057750d3f0d2224b18b7ecf5a5a408a1f1ac3023d89687f68
           SHA512 
          b81ef1f683082e4c49ab8acd8848118fed1383d4e3e73967daaa68927e553a5bc4973004d3dd26b268b901c5deb1f9238a98537d24cfd957162f508c9622e1e4
          
          diff --git a/sys-apps/fwupd/fwupd-1.3.6.ebuild 
          b/sys-apps/fwupd/fwupd-1.3.6.ebuild
          deleted file mode 100644
          index a9c5006ef34..000
          --- a/sys-apps/fwupd/fwupd-1.3.6.ebuild
          +++ /dev/null
          @@ -1,163 +0,0 @@
          -# Copyright 1999-2020 Gentoo Authors
          -# Distributed under the terms of the GNU General Public License v2
          -
          -EAPI=7
          -
          -PYTHON_COMPAT=( python3_{6,7,8} )
          -
          -inherit linux-info meson python-single-r1 vala xdg toolchain-funcs
          -
          -DESCRIPTION="Aims to make updating firmware on Linux automatic, safe and 
          reliable"
          -HOMEPAGE="https://fwupd.org";
          -SRC_URI="https://github.com/hughsie/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
          -
          -LICENSE="LGPL-2.1+"
          -SLOT="0"
          -KEYWORDS="~amd64 ~arm ~x86"
          -IUSE="agent amt consolekit dell gtk-doc elogind minimal +gpg introspection 
          +man nvme pkcs7 redfish synaptics systemd test thunderbolt tpm uefi"
          -REQUIRED_USE="${PYTHON_REQUIRED_USE}
          -   ^^ ( consolekit elogind minimal systemd )
          -   dell? ( uefi )
          -   minimal? ( !introspection )
          -"
          -RESTRICT="!test? ( test )"
          -
          -BDEPEND="$(vala_depend)
          -   virtual/pkgconfig
          -   gtk-doc? ( dev-util/gtk-doc )
          -   introspection? ( dev-libs/gobject-introspection )
          -   man? (
          -   app-text/docbook-sgml-utils
          -   sys-apps/help2man
          -   )
          -   test? (
          -   thunderbolt? ( dev-util/umockdev )
          -   net-libs/gnutls[tools]
          -   )
          -"
          -DEPEND="${PYTHON_DEPS}
          -   >=app-arch/gcab-1.0
          -   app-arch/libarchive:=
          -   dev-db/sqlite
          -   >=dev-libs/glib-2.45.8:2
          -   dev-libs/json-glib
          -   dev-libs/libgpg-error
          -   dev-libs/libgudev:=
          -   >=dev-libs/libgusb-0.2.9[introspection?]
          -   >=dev-libs/libxmlb-0.1.13
          -   $(python_gen_cond_dep '
          -   dev-python/pillow[${PYTHON_MULTI_USEDEP}]
          -   dev-python/pycairo[${PYTHON_MULTI_USEDEP}]
          -   dev-python/pygobject:3[cairo,${PYTHON_MULTI_USEDEP}]
          -   ')
          -   >=net-libs/libsoup-2.51.92:2.4[introspection?]
          -   virtual/libelf:0=
          -   virtual/udev
          -   consolekit? ( >=sys-auth/consolekit-1.0.0 )
          -   dell? (
          -   sys-libs/efivar
          -   >=sys-libs/libsmbios-2.4.0
          -   )
          -   elogind? ( sys-auth/elogind )
          -   gpg? (
          -   app-crypt/gpgme
          -   dev-libs/libgpg-error
          -   )
          -   !minimal? (
          -   >=sys-auth/polkit-0.103
          -   )
          -   nvme? ( sys-libs/efivar )
          -   pkcs7? ( >=net-libs/gnutls-3.4.4.1:= )
          -   redfish? ( sys-libs/efivar )
          -   systemd? ( >=sys-apps/systemd-211 )
          -   thunderbolt? (
          -   sys-apps/thunderbolt-software-user-space
          -

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

          commit: 61a0a4bca0457f8f9912d274fce8c8c118520459
          Author: Lars Wendler  gentoo  org>
          AuthorDate: Fri Mar  6 11:45:52 2020 +
          Commit: Lars Wendler  gentoo  org>
          CommitDate: Fri Mar  6 12:36:12 2020 +
          URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61a0a4bc
          
          dev-libs/libxmlb: Bump to version 0.1.15
          
          Package-Manager: Portage-2.3.92, Repoman-2.3.20
          Signed-off-by: Lars Wendler  gentoo.org>
          
           dev-libs/libxmlb/Manifest  |  1 +
           dev-libs/libxmlb/libxmlb-0.1.15.ebuild | 58 ++
           2 files changed, 59 insertions(+)
          
          diff --git a/dev-libs/libxmlb/Manifest b/dev-libs/libxmlb/Manifest
          index 99a52b42837..406c17ccfc2 100644
          --- a/dev-libs/libxmlb/Manifest
          +++ b/dev-libs/libxmlb/Manifest
          @@ -1,3 +1,4 @@
           DIST libxmlb-0.1.12.tar.gz 91256 BLAKE2B 
          b063bed9d7794b300ec40622c7fd0caac974b7f1be57b08ccb1864587b7bf47f892a39d1f4f0df226d3fe7ca03ffcec471a4f28afb8e64ae841d6898a337b60f
           SHA512 
          aebd9f41421bb0d78954038b3221bed879d296ec2d3061e7e7747980974e01081e51ea36d4e94545af5006b3dc4714d535aeea1943e42a7f1661ba1177979b31
           DIST libxmlb-0.1.13.tar.gz 91597 BLAKE2B 
          f5b1cffba36f25260df44b85109df22aca9f76a47a71c82b99504ce6f072b5b01c32aa26ae36ee37ff717a25dcbf094def8c3b65c7e53883aad726d919181db1
           SHA512 
          ae2c043db0c3a9719c1527933e087825068f970bde28bc7b507a6535b51133d463b1dce6c8b02148a555bb28868ab563f7bb01e6324661dac92fab556c9a39b0
           DIST libxmlb-0.1.14.tar.gz 92388 BLAKE2B 
          cf3057fadf87c866f456bb2eac773e056adba56e0912c249cd89acff2e9a722414876717c6b2065d836fee66032a3d55d9fd2a824ef1fe480604c36887b47c44
           SHA512 
          906340212ce4a515bec81a1b7a5f04539712a48322d7fcff0992f82e5676cdf15c38b0340c28c9eed65a58321e3e17bac641f05bd403504c87599327ba6d4e49
          +DIST libxmlb-0.1.15.tar.gz 92923 BLAKE2B 
          97b6af812397dd279e7e3c038627fcf8228cbfa5c3af91ceeb5361e32d37d357eda6a193f627a5f4442426fb08abca1ff11684fe199d9d3a4add72ca4f3f5d08
           SHA512 
          58268b3a690af36c0923afdee3ae58e88bf778eebbc6a439be1bc85ed985efdc20cd7006c976586f7be87310dc091d67370f4bbec58379fc4e7349bfa3d8
          
          diff --git a/dev-libs/libxmlb/libxmlb-0.1.15.ebuild 
          b/dev-libs/libxmlb/libxmlb-0.1.15.ebuild
          new file mode 100644
          index 000..8ceaed57364
          --- /dev/null
          +++ b/dev-libs/libxmlb/libxmlb-0.1.15.ebuild
          @@ -0,0 +1,58 @@
          +# Copyright 1999-2020 Gentoo Authors
          +# Distributed under the terms of the GNU General Public License v2
          +
          +EAPI=7
          +
          +PYTHON_COMPAT=( python3_{6,7,8} )
          +
          +inherit meson python-any-r1
          +
          +DESCRIPTION="Library to help create and query binary XML blobs"
          +HOMEPAGE="https://github.com/hughsie/libxmlb";
          +SRC_URI="https://github.com/hughsie/libxmlb/archive/${PV}.tar.gz -> 
          ${P}.tar.gz"
          +LICENSE="LGPL-2.1+"
          +SLOT="0"
          +
          +KEYWORDS="~amd64 ~arm ~arm64 ~x86"
          +IUSE="doc introspection stemmer test"
          +
          +RESTRICT="!test? ( test )"
          +
          +RDEPEND="
          +   dev-libs/glib:2
          +   sys-apps/util-linux
          +   stemmer? ( dev-libs/snowball-stemmer )
          +"
          +
          +DEPEND="
          +   ${RDEPEND}
          +   doc? ( dev-util/gtk-doc )
          +   introspection? ( dev-libs/gobject-introspection )
          +"
          +
          +BDEPEND="
          +   >=dev-util/meson-0.47.0
          +   virtual/pkgconfig
          +   introspection? (
          +   $(python_gen_any_dep 'dev-python/setuptools[${PYTHON_USEDEP}]')
          +   ${PYTHON_DEPS}
          +   )
          +"
          +
          +python_check_deps() {
          +   has_version -b "dev-python/setuptools[${PYTHON_USEDEP}]"
          +}
          +
          +pkg_setup() {
          +   use introspection && python-any-r1_pkg_setup
          +}
          +
          +src_configure() {
          +   local emesonargs=(
          +   -Dgtkdoc="$(usex doc true false)"
          +   -Dintrospection="$(usex introspection true false)"
          +   -Dstemmer="$(usex stemmer true false)"
          +   -Dtests="$(usex test true false)"
          +   )
          +   meson_src_configure
          +}
          
          
          

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

          commit: 56bb5e22b7af8e4a7f5c1583a2479767c0ee42d4
          Author: Lars Wendler  gentoo  org>
          AuthorDate: Fri Mar  6 12:30:45 2020 +
          Commit: Lars Wendler  gentoo  org>
          CommitDate: Fri Mar  6 12:36:13 2020 +
          URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56bb5e22
          
          sys-apps/fwupd: Bump to version 1.3.9
          
          Package-Manager: Portage-2.3.92, Repoman-2.3.20
          Signed-off-by: Lars Wendler  gentoo.org>
          
           sys-apps/fwupd/Manifest|   1 +
           .../fwupd/files/fwupd-1.3.9-logind_plugin.patch|  13 ++
           sys-apps/fwupd/fwupd-1.3.9.ebuild  | 167 +
           3 files changed, 181 insertions(+)
          
          diff --git a/sys-apps/fwupd/Manifest b/sys-apps/fwupd/Manifest
          index 4d30214b4a0..df0d2dcc6dc 100644
          --- a/sys-apps/fwupd/Manifest
          +++ b/sys-apps/fwupd/Manifest
          @@ -2,3 +2,4 @@ DIST fwupd-1.2.11.tar.gz 1945646 BLAKE2B 
          4eb6d5008d0e515880147a94b2632ed70b5f7ab
           DIST fwupd-1.3.6.tar.gz 2207849 BLAKE2B 
          465055d90576d4c0a7812f2554d2bc3298a12030816a2469ce653d28f9ea81e363c401355191d41b200975a615cfc64b954e0cced6b6f6bbfbbf26f63163a25e
           SHA512 
          20a5f346563b1cb8296f31ea448f336d8b54df2e5296524e2fa040a31001838b0de4a88f0d4aad9f5eeaeb4acc46919c0effb254ce681556db00cec5a4a1bc78
           DIST fwupd-1.3.7.tar.gz 2223704 BLAKE2B 
          e86603542dc76ec355912fae86721b8e60cea8bef34224cf5f157d3a91058deafc2804761ece472f0264ef42d7fa2b77d935a1638c9db3a6c0722c0659ce6a59
           SHA512 
          6734533193be40051a565609905097c76d9f53c53075e37f560408be698774be0867383877b2acbcd2e5a92c817afdd30532f3d94465b27311b31c825a38481e
           DIST fwupd-1.3.8.tar.gz 2246170 BLAKE2B 
          b55df322c64947b7bf05daaec2c5b2f646a4e53d757482dcd4d33e94d725315e6456bf69d5dbca3ef870437e1cc2a861537fc7af9b059497f119f08477de
           SHA512 
          0f0aa380adc5e167e49db4261b50bee9c905786afcd44b5fe221f42a77306219d40888989e0b16448535eaf077baed12de56b6cca42f91fca09c4a8384f243e4
          +DIST fwupd-1.3.9.tar.gz 2254260 BLAKE2B 
          ead64be3eca00fd2d045fb6c5ccd42d8913fa056736e6ae039feef70b6edababe50fb0552db39bf057750d3f0d2224b18b7ecf5a5a408a1f1ac3023d89687f68
           SHA512 
          b81ef1f683082e4c49ab8acd8848118fed1383d4e3e73967daaa68927e553a5bc4973004d3dd26b268b901c5deb1f9238a98537d24cfd957162f508c9622e1e4
          
          diff --git a/sys-apps/fwupd/files/fwupd-1.3.9-logind_plugin.patch 
          b/sys-apps/fwupd/files/fwupd-1.3.9-logind_plugin.patch
          new file mode 100644
          index 000..526fe7700ed
          --- /dev/null
          +++ b/sys-apps/fwupd/files/fwupd-1.3.9-logind_plugin.patch
          @@ -0,0 +1,13 @@
          +Enable logind plugin when -Delogind=true is set as well
          +
          +--- fwupd-1.3.9/plugins/meson.build
           fwupd-1.3.9/plugins/meson.build
          +@@ -27,7 +27,7 @@
          + subdir('wacom-raw')
          + endif
          + 
          +-if get_option('systemd')
          ++if get_option('systemd') or get_option('elogind')
          + subdir('logind')
          + endif
          + 
          
          diff --git a/sys-apps/fwupd/fwupd-1.3.9.ebuild 
          b/sys-apps/fwupd/fwupd-1.3.9.ebuild
          new file mode 100644
          index 000..a10af44195e
          --- /dev/null
          +++ b/sys-apps/fwupd/fwupd-1.3.9.ebuild
          @@ -0,0 +1,167 @@
          +# Copyright 1999-2020 Gentoo Authors
          +# Distributed under the terms of the GNU General Public License v2
          +
          +EAPI=7
          +
          +PYTHON_COMPAT=( python3_{6,7,8} )
          +
          +inherit linux-info meson python-single-r1 vala xdg toolchain-funcs
          +
          +DESCRIPTION="Aims to make updating firmware on Linux automatic, safe and 
          reliable"
          +HOMEPAGE="https://fwupd.org";
          +SRC_URI="https://github.com/hughsie/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
          +
          +LICENSE="LGPL-2.1+"
          +SLOT="0"
          +KEYWORDS="~amd64 ~arm ~x86"
          +IUSE="agent amt consolekit dell gtk-doc elogind minimal +gpg introspection 
          +man nvme pkcs7 redfish synaptics systemd test thunderbolt tpm uefi"
          +REQUIRED_USE="${PYTHON_REQUIRED_USE}
          +   ^^ ( consolekit elogind minimal systemd )
          +   dell? ( uefi )
          +   minimal? ( !introspection )
          +"
          +RESTRICT="!test? ( test )"
          +
          +BDEPEND="$(vala_depend)
          +   virtual/pkgconfig
          +   gtk-doc? ( dev-util/gtk-doc )
          +   introspection? ( dev-libs/gobject-introspection )
          +   man? (
          +   app-text/docbook-sgml-utils
          +   sys-apps/help2man
          +   )
          +   test? (
          +   thunderbolt? ( dev-util/umockdev )
          +   net-libs/gnutls[tools]
          +   )
          +"
          +DEPEND="${PYTHON_DEPS}
          +   >=app-arch/gcab-1.0
          +   app-arch/libarchive:=
          +   dev-db/sqlite
          +   >=dev-libs/glib-2.45.8:2
          +   dev-libs/json-glib
          +   dev-libs/libgpg-error
          +   dev-libs/libgudev:=
          +   >=dev-libs/libgusb-0.2.9[introspection?]
          +   >=dev-libs/libxmlb-0.1.13
          +   $(python_gen_cond_dep '
          +   dev-python/pillow[${PYTHON_MULTI_USEDEP}]
          +   dev-python/pycairo[${PYTHON_MULTI_USEDEP}]
          +   dev-python/pygobject:3[cairo,${PYTHON_MULTI_USEDEP}]
          +   ')
          +   >=net-libs/libsoup-2.51.92:2.4[introspection?]
          +   virtual/libelf:0=
          +   virtual/udev
          +   consolekit? ( >=sys-auth/consolekit-1.0.0 )
          +   dell? (
          +   sys-libs/efivar
          +   >=sys-libs/libsmbios-2.4.0
          +   )
          +   elogind? ( sys-auth/elogind )
          +   gpg? (
          +   app-crypt/gpgme
          +   dev-libs/

          [gentoo-commits] repo/gentoo:master commit in: sys-process/procps/files/, sys-process/procps/

          commit: d832efe0225a524ed86bab423bf90cef980a6480
          Author: Lars Wendler  gentoo  org>
          AuthorDate: Fri Mar  6 12:35:45 2020 +
          Commit: Lars Wendler  gentoo  org>
          CommitDate: Fri Mar  6 12:36:14 2020 +
          URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d832efe0
          
          sys-process/procps: Revbump for toprc backwards compatibility
          
          Thanks-to: Massimo Burcheri  gmail.com>
          Closes: https://bugs.gentoo.org/711676
          Package-Manager: Portage-2.3.92, Repoman-2.3.20
          Signed-off-by: Lars Wendler  gentoo.org>
          
           ...ocps-3.3.16-toprc_backwards_compatibility.patch | 71 ++
           ...ps-3.3.16-r1.ebuild => procps-3.3.16-r2.ebuild} |  1 +
           2 files changed, 72 insertions(+)
          
          diff --git 
          a/sys-process/procps/files/procps-3.3.16-toprc_backwards_compatibility.patch 
          b/sys-process/procps/files/procps-3.3.16-toprc_backwards_compatibility.patch
          new file mode 100644
          index 000..19721205dfe
          --- /dev/null
          +++ b/sys-process/procps/files/procps-3.3.16-toprc_backwards_compatibility.patch
          @@ -0,0 +1,71 @@
          +From 5cd29e5093efa3c6ee9c5310b64347f1d54b707d Mon Sep 17 00:00:00 2001
          +From: Jim Warner 
          +Date: Sat, 15 Feb 2020 00:00:00 -0600
          +Subject: [PATCH] top: restore configuration file backward compatibility
          +
          +The Debian bug referenced below has nothing to do with
          +locales. In fact, top was made locale independent back
          +in release 3.3.13 (April, 2018). However, that bug did
          +reveal some misplaced logic which this patch corrects.
          +
          +Prompted by the Qualys audit, all rcfile field strings
          +were checked for potential duplicates which could only
          +have resulted from some user's manual/malicious edits.
          +
          +Unfortunately, that code was executed before top had a
          +chance to enforce the proper/maximum string length (in
          +the event an extremely old rcfile had just been read).
          +This created some potential string overrun references.
          +
          +In top's original 3.3.15 implementation, the potential
          +overrun extended for 15 characters. That is the number
          +of field characters added with 3.3.9 (December, 2013).
          +But, since strchr() was used, no error exit was taken.
          +
          +In the revised 3.3.16 implementation, the strchr() was
          +replaced with '&w->rc.fieldscur[n]'. This held overrun
          +to a single position while producing an error message.
          +
          +So, this commit just moves that logic to a point where
          +fieldscur is guaranteed to be longer than EU_MAXPFLGS.
          +
          +Reference(s):
          +https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=951335
          +. revised 3.3.16 validation logic
          +commit 291d98ee5036567f93d21bc11142b0a7e2ee70ae
          +. original 3.3.15 validation logic
          +commit fdb58974e24c025a1f866f324c62f1d8f96234f8
          +
          +Signed-off-by: Jim Warner 
          +---
          +diff --git a/top/top.c b/top/top.c
          +index 63ec5fe..b4fe21e 100644
          +--- a/top/top.c
           b/top/top.c
          +@@ -3939,11 +3939,6 @@ static const char *configs_file (FILE *fp, const char 
          *name, float *delay) {
          +  // too bad fscanf is not as flexible with his format string as snprintf
          +  #error Hey, fix the above fscanf 'PFLAGSSIZ' dependency !
          + #endif
          +-  // ensure there's been no manual alteration of fieldscur
          +-  for (n = 0 ; n < EU_MAXPFLGS; n++) {
          +- if (&w->rc.fieldscur[n] != strrchr(w->rc.fieldscur, 
          w->rc.fieldscur[n]))
          +-return p;
          +-  }
          +   // be tolerant of missing release 3.3.10 graph modes additions
          +   if (3 > fscanf(fp, "\twinflags=%d, sortindx=%d, maxtasks=%d, 
          graph_cpus=%d, graph_mems=%d\n"
          +  , &w->rc.winflags, &w->rc.sortindx, &w->rc.maxtasks, 
          &w->rc.graph_cpus, &w->rc.graph_mems))
          +@@ -3989,6 +3984,11 @@ static const char *configs_file (FILE *fp, const char 
          *name, float *delay) {
          +   return p;
          + break;
          +   }
          ++  // ensure there's been no manual alteration of fieldscur
          ++  for (n = 0 ; n < EU_MAXPFLGS; n++) {
          ++ if (&w->rc.fieldscur[n] != strrchr(w->rc.fieldscur, 
          w->rc.fieldscur[n]))
          ++return p;
          ++  }
          + #ifndef USE_X_COLHDR
          +   OFFw(w, NOHIFND_xxx | NOHISEL_xxx);
          + #endif
          +-- 
          +2.24.1
          +
          
          diff --git a/sys-process/procps/procps-3.3.16-r1.ebuild 
          b/sys-process/procps/procps-3.3.16-r2.ebuild
          similarity index 97%
          rename from sys-process/procps/procps-3.3.16-r1.ebuild
          rename to sys-process/procps/procps-3.3.16-r2.ebuild
          index b7c8b18e232..8a5e2ae740e 100644
          --- a/sys-process/procps/procps-3.3.16-r1.ebuild
          +++ b/sys-process/procps/procps-3.3.16-r2.ebuild
          @@ -43,6 +43,7 @@ PATCHES=(
          "${FILESDIR}"/${PN}-3.3.12-proc-tests.patch # 583036
           
          # Upstream fixes
          +   "${FILESDIR}"/${P}-toprc_backwards_compatibility.patch #711676
           )
           
           multilib_src_configure() {
          
          
          

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

          commit: 242aeaea3aa45559aa209fcd01ec34a78e4cd121
          Author: Lars Wendler  gentoo  org>
          AuthorDate: Fri Mar  6 11:46:26 2020 +
          Commit: Lars Wendler  gentoo  org>
          CommitDate: Fri Mar  6 12:36:13 2020 +
          URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=242aeaea
          
          dev-libs/libxmlb: Removed old
          
          Package-Manager: Portage-2.3.92, Repoman-2.3.20
          Signed-off-by: Lars Wendler  gentoo.org>
          
           dev-libs/libxmlb/Manifest  |  1 -
           dev-libs/libxmlb/libxmlb-0.1.13.ebuild | 58 --
           2 files changed, 59 deletions(-)
          
          diff --git a/dev-libs/libxmlb/Manifest b/dev-libs/libxmlb/Manifest
          index 406c17ccfc2..e2c6fca7ca3 100644
          --- a/dev-libs/libxmlb/Manifest
          +++ b/dev-libs/libxmlb/Manifest
          @@ -1,4 +1,3 @@
           DIST libxmlb-0.1.12.tar.gz 91256 BLAKE2B 
          b063bed9d7794b300ec40622c7fd0caac974b7f1be57b08ccb1864587b7bf47f892a39d1f4f0df226d3fe7ca03ffcec471a4f28afb8e64ae841d6898a337b60f
           SHA512 
          aebd9f41421bb0d78954038b3221bed879d296ec2d3061e7e7747980974e01081e51ea36d4e94545af5006b3dc4714d535aeea1943e42a7f1661ba1177979b31
          -DIST libxmlb-0.1.13.tar.gz 91597 BLAKE2B 
          f5b1cffba36f25260df44b85109df22aca9f76a47a71c82b99504ce6f072b5b01c32aa26ae36ee37ff717a25dcbf094def8c3b65c7e53883aad726d919181db1
           SHA512 
          ae2c043db0c3a9719c1527933e087825068f970bde28bc7b507a6535b51133d463b1dce6c8b02148a555bb28868ab563f7bb01e6324661dac92fab556c9a39b0
           DIST libxmlb-0.1.14.tar.gz 92388 BLAKE2B 
          cf3057fadf87c866f456bb2eac773e056adba56e0912c249cd89acff2e9a722414876717c6b2065d836fee66032a3d55d9fd2a824ef1fe480604c36887b47c44
           SHA512 
          906340212ce4a515bec81a1b7a5f04539712a48322d7fcff0992f82e5676cdf15c38b0340c28c9eed65a58321e3e17bac641f05bd403504c87599327ba6d4e49
           DIST libxmlb-0.1.15.tar.gz 92923 BLAKE2B 
          97b6af812397dd279e7e3c038627fcf8228cbfa5c3af91ceeb5361e32d37d357eda6a193f627a5f4442426fb08abca1ff11684fe199d9d3a4add72ca4f3f5d08
           SHA512 
          58268b3a690af36c0923afdee3ae58e88bf778eebbc6a439be1bc85ed985efdc20cd7006c976586f7be87310dc091d67370f4bbec58379fc4e7349bfa3d8
          
          diff --git a/dev-libs/libxmlb/libxmlb-0.1.13.ebuild 
          b/dev-libs/libxmlb/libxmlb-0.1.13.ebuild
          deleted file mode 100644
          index 36fbd3fd48d..000
          --- a/dev-libs/libxmlb/libxmlb-0.1.13.ebuild
          +++ /dev/null
          @@ -1,58 +0,0 @@
          -# Copyright 1999-2020 Gentoo Authors
          -# Distributed under the terms of the GNU General Public License v2
          -
          -EAPI=7
          -
          -PYTHON_COMPAT=( python3_{6,7} )
          -
          -inherit meson python-any-r1
          -
          -DESCRIPTION="Library to help create and query binary XML blobs"
          -HOMEPAGE="https://github.com/hughsie/libxmlb";
          -SRC_URI="https://github.com/hughsie/libxmlb/archive/${PV}.tar.gz -> 
          ${P}.tar.gz"
          -LICENSE="LGPL-2.1+"
          -SLOT="0"
          -
          -KEYWORDS="~amd64 ~arm ~arm64 ~x86"
          -IUSE="doc introspection stemmer test"
          -
          -RESTRICT="!test? ( test )"
          -
          -RDEPEND="
          -   dev-libs/glib:2
          -   sys-apps/util-linux
          -   stemmer? ( dev-libs/snowball-stemmer )
          -"
          -
          -DEPEND="
          -   ${RDEPEND}
          -   doc? ( dev-util/gtk-doc )
          -   introspection? ( dev-libs/gobject-introspection )
          -"
          -
          -BDEPEND="
          -   >=dev-util/meson-0.47.0
          -   virtual/pkgconfig
          -   introspection? (
          -   $(python_gen_any_dep 'dev-python/setuptools[${PYTHON_USEDEP}]')
          -   ${PYTHON_DEPS}
          -   )
          -"
          -
          -python_check_deps() {
          -   has_version -b "dev-python/setuptools[${PYTHON_USEDEP}]"
          -}
          -
          -pkg_setup() {
          -   use introspection && python-any-r1_pkg_setup
          -}
          -
          -src_configure() {
          -   local emesonargs=(
          -   -Dgtkdoc="$(usex doc true false)"
          -   -Dintrospection="$(usex introspection true false)"
          -   -Dstemmer="$(usex stemmer true false)"
          -   -Dtests="$(usex test true false)"
          -   )
          -   meson_src_configure
          -}
          
          
          

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

          commit: 9c9e243f046e0d33ee9906029fb3cb5c74e98cab
          Author: Lars Wendler  gentoo  org>
          AuthorDate: Fri Mar  6 12:32:29 2020 +
          Commit: Lars Wendler  gentoo  org>
          CommitDate: Fri Mar  6 12:36:14 2020 +
          URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c9e243f
          
          sys-process/procps: Removed old
          
          Package-Manager: Portage-2.3.92, Repoman-2.3.20
          Signed-off-by: Lars Wendler  gentoo.org>
          
           sys-process/procps/procps-3.3.16.ebuild | 82 -
           1 file changed, 82 deletions(-)
          
          diff --git a/sys-process/procps/procps-3.3.16.ebuild 
          b/sys-process/procps/procps-3.3.16.ebuild
          deleted file mode 100644
          index 520b8f0d950..000
          --- a/sys-process/procps/procps-3.3.16.ebuild
          +++ /dev/null
          @@ -1,82 +0,0 @@
          -# Copyright 1999-2020 Gentoo Authors
          -# Distributed under the terms of the GNU General Public License v2
          -
          -EAPI=7
          -
          -inherit toolchain-funcs flag-o-matic usr-ldscript
          -
          -DESCRIPTION="standard informational utilities and process-handling tools"
          -HOMEPAGE="http://procps-ng.sourceforge.net/ 
          https://gitlab.com/procps-ng/procps";
          -SRC_URI="mirror://sourceforge/${PN}-ng/${PN}-ng-${PV}.tar.xz"
          -
          -LICENSE="GPL-2"
          -SLOT="0/8" # libprocps.so
          -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
          ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux"
          -IUSE="elogind +kill modern-top +ncurses nls selinux static-libs systemd test 
          unicode"
          -RESTRICT="!test? ( test )"
          -
          -COMMON_DEPEND="
          -   elogind? ( sys-auth/elogind )
          -   ncurses? ( >=sys-libs/ncurses-5.7-r7:=[unicode?] )
          -   selinux? ( sys-libs/libselinux )
          -   systemd? ( sys-apps/systemd )
          -"
          -DEPEND="${COMMON_DEPEND}
          -   elogind? ( virtual/pkgconfig )
          -   ncurses? ( virtual/pkgconfig )
          -   systemd? ( virtual/pkgconfig )
          -   test? ( dev-util/dejagnu )"
          -RDEPEND="
          -   ${COMMON_DEPEND}
          -   kill? (
          -   !sys-apps/coreutils[kill]
          -   !sys-apps/util-linux[kill]
          -   )
          -   !http://www.freelists.org/post/procps/PATCH-enable-transparent-large-file-support
          -   append-lfs-flags #471102
          -   local myeconfargs=(
          -   $(use_with elogind)
          -   $(use_enable kill)
          -   $(use_enable modern-top)
          -   $(use_with ncurses)
          -   $(use_enable nls)
          -   $(use_enable selinux libselinux)
          -   $(use_enable static-libs static)
          -   $(use_with systemd)
          -   $(use_enable unicode watch8bit)
          -   )
          -   econf "${myeconfargs[@]}"
          -}
          -
          -src_test() {
          -   emake check 
          

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

          commit: 2780371de256939ae1ae37d13cae0f27fe842d65
          Author: Agostino Sarubbo  gentoo  org>
          AuthorDate: Fri Mar  6 12:32:06 2020 +
          Commit: Agostino Sarubbo  gentoo  org>
          CommitDate: Fri Mar  6 12:32:06 2020 +
          URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2780371d
          
          media-gfx/mcomix: x86 stable wrt bug #711584
          
          Package-Manager: Portage-2.3.89, Repoman-2.3.20
          RepoMan-Options: --include-arches="x86"
          Signed-off-by: Agostino Sarubbo  gentoo.org>
          
           media-gfx/mcomix/mcomix-1.3.0_pre20200206.ebuild | 2 +-
           1 file changed, 1 insertion(+), 1 deletion(-)
          
          diff --git a/media-gfx/mcomix/mcomix-1.3.0_pre20200206.ebuild 
          b/media-gfx/mcomix/mcomix-1.3.0_pre20200206.ebuild
          index 9418be57c81..dcc3df6bb40 100644
          --- a/media-gfx/mcomix/mcomix-1.3.0_pre20200206.ebuild
          +++ b/media-gfx/mcomix/mcomix-1.3.0_pre20200206.ebuild
          @@ -15,7 +15,7 @@ 
          SRC_URI="https://github.com/multiSnow/mcomix3/archive/${GIT_PV}.tar.gz -> ${P}.t
           
           LICENSE="GPL-2"
           SLOT="0"
          -KEYWORDS="amd64 ~x86"
          +KEYWORDS="amd64 x86"
           IUSE=""
           
           DEPEND="${PYTHON_DEPS}"
          
          
          

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

          commit: 5dcac2c16b9e6aaac962ed6172c4c68415eb4abc
          Author: Agostino Sarubbo  gentoo  org>
          AuthorDate: Fri Mar  6 12:31:57 2020 +
          Commit: Agostino Sarubbo  gentoo  org>
          CommitDate: Fri Mar  6 12:31:57 2020 +
          URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5dcac2c1
          
          dev-util/codeblocks: x86 stable wrt bug #711574
          
          Package-Manager: Portage-2.3.89, Repoman-2.3.20
          RepoMan-Options: --include-arches="x86"
          Signed-off-by: Agostino Sarubbo  gentoo.org>
          
           dev-util/codeblocks/codeblocks-17.12-r302.ebuild | 2 +-
           1 file changed, 1 insertion(+), 1 deletion(-)
          
          diff --git a/dev-util/codeblocks/codeblocks-17.12-r302.ebuild 
          b/dev-util/codeblocks/codeblocks-17.12-r302.ebuild
          index 04510d42041..47cecf4c74f 100644
          --- a/dev-util/codeblocks/codeblocks-17.12-r302.ebuild
          +++ b/dev-util/codeblocks/codeblocks-17.12-r302.ebuild
          @@ -11,7 +11,7 @@ DESCRIPTION="The open source, cross platform, free C, C++ and 
          Fortran IDE"
           HOMEPAGE="http://www.codeblocks.org/";
           LICENSE="GPL-3"
           SLOT="0"
          -KEYWORDS="amd64 ~ppc ~x86"
          +KEYWORDS="amd64 ~ppc x86"
           SRC_URI="mirror://sourceforge/${PN}/${P/-/_}.tar.xz
           https://dev.gentoo.org/~leio/distfiles/${P}-fortran.tar.xz
           
          https://dev.gentoo.org/~leio/distfiles/${P}_update_astyle_plugin_to_v3.1.patch.xz";
          
          
          

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

          commit: 0a1e633fa45a2fc9651e804835732950a0ee97e8
          Author: Agostino Sarubbo  gentoo  org>
          AuthorDate: Fri Mar  6 12:32:20 2020 +
          Commit: Agostino Sarubbo  gentoo  org>
          CommitDate: Fri Mar  6 12:32:20 2020 +
          URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a1e633f
          
          dev-python/qrcode: x86 stable wrt bug #711652
          
          Package-Manager: Portage-2.3.89, Repoman-2.3.20
          RepoMan-Options: --include-arches="x86"
          Signed-off-by: Agostino Sarubbo  gentoo.org>
          
           dev-python/qrcode/qrcode-6.1.ebuild | 2 +-
           1 file changed, 1 insertion(+), 1 deletion(-)
          
          diff --git a/dev-python/qrcode/qrcode-6.1.ebuild 
          b/dev-python/qrcode/qrcode-6.1.ebuild
          index 302af0286b4..ece12a005c1 100644
          --- a/dev-python/qrcode/qrcode-6.1.ebuild
          +++ b/dev-python/qrcode/qrcode-6.1.ebuild
          @@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
           
           LICENSE="BSD"
           SLOT="0"
          -KEYWORDS="amd64 ~arm arm64 ~x86"
          +KEYWORDS="amd64 ~arm arm64 x86"
           
           # optional deps:
           # - pillow and lxml for svg backend, set as hard deps
          
          
          

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

          commit: 838895f5e2b37a36b240189394ed2fdb5d4977a9
          Author: Agostino Sarubbo  gentoo  org>
          AuthorDate: Fri Mar  6 12:32:02 2020 +
          Commit: Agostino Sarubbo  gentoo  org>
          CommitDate: Fri Mar  6 12:32:02 2020 +
          URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=838895f5
          
          x11-misc/picom: x86 stable wrt bug #711580
          
          Package-Manager: Portage-2.3.89, Repoman-2.3.20
          RepoMan-Options: --include-arches="x86"
          Signed-off-by: Agostino Sarubbo  gentoo.org>
          
           x11-misc/picom/picom-7.5-r1.ebuild | 2 +-
           1 file changed, 1 insertion(+), 1 deletion(-)
          
          diff --git a/x11-misc/picom/picom-7.5-r1.ebuild 
          b/x11-misc/picom/picom-7.5-r1.ebuild
          index f42286af735..b2473732a34 100644
          --- a/x11-misc/picom/picom-7.5-r1.ebuild
          +++ b/x11-misc/picom/picom-7.5-r1.ebuild
          @@ -12,7 +12,7 @@ SRC_URI="https://github.com/yshui/picom/archive/v${PV}.tar.gz 
          -> ${P}.tar.gz"
           
           LICENSE="MPL-2.0 MIT"
           SLOT="0"
          -KEYWORDS="amd64 ~x86"
          +KEYWORDS="amd64 x86"
           IUSE="+config-file dbus +doc +drm opengl pcre"
           
           REQUIRED_USE="${PYTHON_REQUIRED_USE}"
          
          
          

          [gentoo-commits] repo/gentoo:master commit in: net-ftp/atftp/

          commit: 042df22f6cf77940585060ea1fdb503be7dc751f
          Author: Agostino Sarubbo  gentoo  org>
          AuthorDate: Fri Mar  6 12:32:15 2020 +
          Commit: Agostino Sarubbo  gentoo  org>
          CommitDate: Fri Mar  6 12:32:15 2020 +
          URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=042df22f
          
          net-ftp/atftp: x86 stable wrt bug #711630
          
          Package-Manager: Portage-2.3.89, Repoman-2.3.20
          RepoMan-Options: --include-arches="x86"
          Signed-off-by: Agostino Sarubbo  gentoo.org>
          
           net-ftp/atftp/atftp-0.7.2-r1.ebuild | 2 +-
           1 file changed, 1 insertion(+), 1 deletion(-)
          
          diff --git a/net-ftp/atftp/atftp-0.7.2-r1.ebuild 
          b/net-ftp/atftp/atftp-0.7.2-r1.ebuild
          index e542d78d256..69defd42942 100644
          --- a/net-ftp/atftp/atftp-0.7.2-r1.ebuild
          +++ b/net-ftp/atftp/atftp-0.7.2-r1.ebuild
          @@ -10,7 +10,7 @@ SRC_URI="mirror://sourceforge/atftp/${P}.tar.gz"
           
           LICENSE="GPL-2+"
           SLOT="0"
          -KEYWORDS="amd64 ~arm ~ppc ~ppc64 ~s390 ~sparc ~x86"
          +KEYWORDS="amd64 ~arm ~ppc ~ppc64 ~s390 ~sparc x86"
           IUSE="selinux tcpd readline pcre"
           
           DEPEND="tcpd? ( sys-apps/tcp-wrappers )
          
          
          

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

          commit: 4cb3b0cc5ce78bb2a4f914b59bd98a92aa1fe7f1
          Author: Agostino Sarubbo  gentoo  org>
          AuthorDate: Fri Mar  6 12:31:53 2020 +
          Commit: Agostino Sarubbo  gentoo  org>
          CommitDate: Fri Mar  6 12:31:53 2020 +
          URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4cb3b0cc
          
          sys-devel/gdb: x86 stable wrt bug #690582
          
          Package-Manager: Portage-2.3.89, Repoman-2.3.20
          RepoMan-Options: --include-arches="x86"
          Signed-off-by: Agostino Sarubbo  gentoo.org>
          
           sys-devel/gdb/gdb-9.1.ebuild | 2 +-
           1 file changed, 1 insertion(+), 1 deletion(-)
          
          diff --git a/sys-devel/gdb/gdb-9.1.ebuild b/sys-devel/gdb/gdb-9.1.ebuild
          index 8d8929f9d0e..5f86bf7834d 100644
          --- a/sys-devel/gdb/gdb-9.1.ebuild
          +++ b/sys-devel/gdb/gdb-9.1.ebuild
          @@ -44,7 +44,7 @@ SRC_URI="${SRC_URI}
           LICENSE="GPL-2 LGPL-2"
           SLOT="0"
           if [[ ${PV} != * ]] ; then
          -   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
          ~riscv ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux 
          ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
          +   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
          ~riscv ~s390 ~sh ~sparc x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux 
          ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
           fi
           IUSE="+client lzma multitarget nls +python +server source-highlight test 
          vanilla xml xxhash"
           REQUIRED_USE="
          
          
          

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

          commit: 5f08a368761f5f082238e2dcf6de78803083a26c
          Author: Agostino Sarubbo  gentoo  org>
          AuthorDate: Fri Mar  6 12:32:11 2020 +
          Commit: Agostino Sarubbo  gentoo  org>
          CommitDate: Fri Mar  6 12:32:11 2020 +
          URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f08a368
          
          sys-apps/coreutils: x86 stable wrt bug #711616
          
          Package-Manager: Portage-2.3.89, Repoman-2.3.20
          RepoMan-Options: --include-arches="x86"
          Signed-off-by: Agostino Sarubbo  gentoo.org>
          
           sys-apps/coreutils/coreutils-8.31-r1.ebuild | 2 +-
           1 file changed, 1 insertion(+), 1 deletion(-)
          
          diff --git a/sys-apps/coreutils/coreutils-8.31-r1.ebuild 
          b/sys-apps/coreutils/coreutils-8.31-r1.ebuild
          index 3afd6b74f86..f52235307dd 100644
          --- a/sys-apps/coreutils/coreutils-8.31-r1.ebuild
          +++ b/sys-apps/coreutils/coreutils-8.31-r1.ebuild
          @@ -16,7 +16,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.xz
           
           LICENSE="GPL-3"
           SLOT="0"
          -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
          ~s390 ~sh ~sparc ~x86 ~x86-linux"
          +KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
          ~s390 ~sh ~sparc x86 ~x86-linux"
           IUSE="acl caps gmp hostname kill multicall nls selinux +split-usr static test 
          vanilla xattr"
           RESTRICT="!test? ( test )"
           
          
          
          

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

          commit: fefe4c091a1e2be1f1c0da0d71ffca563fc99441
          Author: Michał Górny  gentoo  org>
          AuthorDate: Fri Mar  6 12:02:53 2020 +
          Commit: Michał Górny  gentoo  org>
          CommitDate: Fri Mar  6 12:05:37 2020 +
          URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fefe4c09
          
          dev-python/python-sqlparse: Update remote-ids
          
          Signed-off-by: Michał Górny  gentoo.org>
          
           dev-python/python-sqlparse/metadata.xml | 3 +--
           1 file changed, 1 insertion(+), 2 deletions(-)
          
          diff --git a/dev-python/python-sqlparse/metadata.xml 
          b/dev-python/python-sqlparse/metadata.xml
          index 2b283af49f1..13cb8d15bee 100644
          --- a/dev-python/python-sqlparse/metadata.xml
          +++ b/dev-python/python-sqlparse/metadata.xml
          @@ -6,8 +6,7 @@
           Python
             
             
          -python-sqlparse
          -python-sqlparse
          +sqlparse
           andialbrecht/sqlparse
             
           
          
          
          

            1   2   >