[gentoo-commits] proj/sci:master commit in: dev-libs/libconfig/

2020-09-21 Thread Aisha Tammy
commit: 812ad6749c5eec034b009571a7fe9a87e43d123d
Author: Aisha Tammy  aisha  cc>
AuthorDate: Tue Sep 22 01:56:40 2020 +
Commit: Aisha Tammy  aisha  cc>
CommitDate: Tue Sep 22 01:56:50 2020 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=812ad674

dev-libs/libconfig: drop package

present in ::gentoo

Package-Manager: Portage-3.0.7, Repoman-3.0.1
Signed-off-by: Aisha Tammy  aisha.cc>

 dev-libs/libconfig/libconfig-.ebuild | 60 
 dev-libs/libconfig/metadata.xml  | 15 
 2 files changed, 75 deletions(-)

diff --git a/dev-libs/libconfig/libconfig-.ebuild 
b/dev-libs/libconfig/libconfig-.ebuild
deleted file mode 100644
index dda594548..0
--- a/dev-libs/libconfig/libconfig-.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-AUTOTOOLS_AUTORECONF="1"
-inherit eutils autotools-multilib
-
-DESCRIPTION="Libconfig is a simple library for manipulating structured 
configuration files"
-HOMEPAGE="http://www.hyperrealm.com/libconfig/libconfig.html;
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-if [[ ${PV} == "" ]] ; then
-   EGIT_REPO_URI="https://github.com/hyperrealm/libconfig.git 
git://github.com/hyperrealm/libconfig.git"
-   inherit git-r3
-   KEYWORDS=""
-else
-   SRC_URI="http://www.hyperrealm.com/${PN}/${P}.tar.gz;
-   KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-linux"
-   PATCHES=( "${FILESDIR}/${P}-out-of-source-build.patch" )
-fi
-
-IUSE="+cxx examples static-libs"
-
-DEPEND="
-   sys-devel/libtool
-   virtual/yacc"
-
-src_prepare() {
-   sed -i configure.ac -e 's|AM_CONFIG_HEADER|AC_CONFIG_HEADERS|g' || die
-   autotools-multilib_src_prepare
-}
-
-multilib_src_configure() {
-   local myeconfargs=(
-   $(use_enable cxx)
-   --disable-examples
-   )
-   autotools-utils_src_configure
-}
-
-multilib_src_test() {
-   # It responds to check but that does not work as intended
-   emake test
-}
-
-multilib_src_install_all() {
-   einstalldocs
-   prune_libtool_files
-
-   if use examples; then
-   find examples/ -name "Makefile.*" -delete || die
-   local dir
-   for dir in examples/c examples/c++; do
-   insinto /usr/share/doc/${PF}/${dir}
-   doins ${dir}/*
-   done
-   fi
-}

diff --git a/dev-libs/libconfig/metadata.xml b/dev-libs/libconfig/metadata.xml
deleted file mode 100644
index 2d70bee59..0
--- a/dev-libs/libconfig/metadata.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   s...@gentoo.org
-   Gentoo Science Project
-   
-   
-Libconfig is a simple library for processing structured configuration files.
-Libconfig is very compact — a fraction of the size of the expat XML parser 
library.
-This makes it well-suited for memory-constrained systems like handheld devices.
-The library includes bindings for both the C and C++ languages.
-It works on POSIX-compliant UNIX systems (GNU/Linux, Mac OS X, Solaris, 
FreeBSD).
-
-



[gentoo-commits] proj/sci:master commit in: dev-libs/libflatarray/

2020-09-21 Thread Aisha Tammy
commit: 171c67d3608bf1c6262f4bc193ad42e9ed6be016
Author: Aisha Tammy  aisha  cc>
AuthorDate: Tue Sep 22 01:55:06 2020 +
Commit: Aisha Tammy  aisha  cc>
CommitDate: Tue Sep 22 01:55:28 2020 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=171c67d3

dev-libs/libflatarray: drop package

present in ::gentoo

Package-Manager: Portage-3.0.7, Repoman-3.0.1
Signed-off-by: Aisha Tammy  aisha.cc>

 dev-libs/libflatarray/libflatarray-.ebuild | 51 --
 dev-libs/libflatarray/metadata.xml | 22 ---
 2 files changed, 73 deletions(-)

diff --git a/dev-libs/libflatarray/libflatarray-.ebuild 
b/dev-libs/libflatarray/libflatarray-.ebuild
deleted file mode 100644
index 12132ab11..0
--- a/dev-libs/libflatarray/libflatarray-.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-if [ ${PV} == "" ] ; then
-   _SCM=mercurial
-   EHG_REPO_URI="http://bitbucket.org/gentryx/libflatarray;
-   SRC_URI=""
-   KEYWORDS=""
-   CMAKE_USE_DIR="${S}"
-else
-   SRC_URI="http://www.libgeodecomp.org/archive/${P}.tar.bz2;
-   KEYWORDS="~amd64 ~ppc ~x86"
-   S="${WORKDIR}/${P}"
-fi
-
-inherit cmake-utils cuda ${_SCM}
-
-DESCRIPTION="Struct of arrays library with object oriented interface for C++"
-HOMEPAGE="http://www.libgeodecomp.org/libflatarray.html;
-
-SLOT="0"
-LICENSE="Boost-1.0"
-IUSE="cuda doc"
-
-RDEPEND="
-   >=dev-libs/boost-1.48
-   cuda? ( dev-util/nvidia-cuda-toolkit )"
-DEPEND="${RDEPEND}
-   doc? ( app-doc/doxygen )"
-
-src_configure() {
-   local mycmakeargs=(
-   $(cmake-utils_use_with cuda CUDA)
-   )
-   cmake-utils_src_configure
-}
-
-src_compile() {
-   cmake-utils_src_compile
-}
-
-src_install() {
-   DOCS=( README )
-   cmake-utils_src_install
-}
-
-src_test() {
-   cmake-utils_src_make test
-}

diff --git a/dev-libs/libflatarray/metadata.xml 
b/dev-libs/libflatarray/metadata.xml
deleted file mode 100644
index 124b52db7..0
--- a/dev-libs/libflatarray/metadata.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-LibGeoDecomp is a multi-dimensional C++ array class which provides
-an object-oriented view (a.k.a. array of structs, AoS) while
-internally storing data in a struct of arrays (SoA) manner. It
-comes with utilities to move data to CUDA enabled GPUs.
-
-   
-   gent...@gmx.de
-   
-   
-   clus...@gentoo.org
-   Gentoo Cluster Project
-   
-   
-   
-Enables plugins for NVIDIA GPUs (e.g. CUDAAllocator)
-
-   
-



[gentoo-commits] proj/sci:master commit in: dev-libs/mxml/

2020-09-21 Thread Aisha Tammy
commit: d7f67de0228e2f0eab49fe813824c4d49ae5648a
Author: Aisha Tammy  aisha  cc>
AuthorDate: Tue Sep 22 01:52:06 2020 +
Commit: Aisha Tammy  aisha  cc>
CommitDate: Tue Sep 22 01:52:22 2020 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=d7f67de0

dev-libs/mxml: drop package

present in ::gentoo

Package-Manager: Portage-3.0.7, Repoman-3.0.1
Signed-off-by: Aisha Tammy  aisha.cc>

 dev-libs/mxml/metadata.xml| 17 -
 dev-libs/mxml/mxml-2.9.ebuild | 18 --
 2 files changed, 35 deletions(-)

diff --git a/dev-libs/mxml/metadata.xml b/dev-libs/mxml/metadata.xml
deleted file mode 100644
index 42a46e0c3..0
--- a/dev-libs/mxml/metadata.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   cj...@cam.ac.uk
-   Chris Kerr
-   I don't develop this software, I'm just a Gentoo 
user who
-wanted to install it
-   
-   
-   s...@gentoo.org
-   Gentoo Science Project
-   
-   Mini-XML is a lightweight, ultra-portable XML library
-that requires only an ANSI C compiler and a 'make' program.
-   
-

diff --git a/dev-libs/mxml/mxml-2.9.ebuild b/dev-libs/mxml/mxml-2.9.ebuild
deleted file mode 100644
index a5b1b8ebc..0
--- a/dev-libs/mxml/mxml-2.9.ebuild
+++ /dev/null
@@ -1,18 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-DESCRIPTION="Mini-XML: A lightweight ANSI C XML library"
-HOMEPAGE="http://www.msweet.org/projects.php?Z3;
-SRC_URI="http://www.msweet.org/files/project3/${P}.tar.gz;
-
-LICENSE="LGPL-2-with-linking-exception"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE=""
-
-src_install() {
-   emake install DSTROOT="${D}"
-   dodoc README ANNOUNCEMENT CHANGES
-}



[gentoo-commits] proj/sci:master commit in: app-portage/g-octave/

2020-09-21 Thread Aisha Tammy
commit: c39f1f80ff73b19688a7defc6f8bed9271238180
Author: Aisha Tammy  aisha  cc>
AuthorDate: Tue Sep 22 01:48:26 2020 +
Commit: Aisha Tammy  aisha  cc>
CommitDate: Tue Sep 22 01:48:43 2020 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=c39f1f80

app-portage/g-octave: drop package

present in ::gentoo

Package-Manager: Portage-3.0.7, Repoman-3.0.1
Signed-off-by: Aisha Tammy  aisha.cc>

 app-portage/g-octave/g-octave-.ebuild | 40 ---
 app-portage/g-octave/metadata.xml | 16 -
 2 files changed, 56 deletions(-)

diff --git a/app-portage/g-octave/g-octave-.ebuild 
b/app-portage/g-octave/g-octave-.ebuild
deleted file mode 100644
index 62316f5cf..0
--- a/app-portage/g-octave/g-octave-.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1 git-r3
-
-DESCRIPTION="A tool that generates and installs ebuilds for Octave-Forge"
-HOMEPAGE="http://www.g-octave.org/;
-SRC_URI=""
-EGIT_REPO_URI="git://git.overlays.gentoo.org/proj/g-octave.git"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS=""
-IUSE="doc test"
-
-DEPEND="
-   dev-python/docutils[${PYTHON_USEDEP}]
-   doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
-RDEPEND="sys-apps/portage"
-
-S="${WORKDIR}/${PN}"
-
-python_compile_all() {
-   use doc && emake -C docs html
-}
-
-python_test() {
-   ${PYTHON} scripts/run_tests.py || die
-}
-
-python_install_all() {
-   doman ${PN}.1
-   use doc && HTML_DOCS=( docs/_build/html/. )
-   HTML_DOCS+=( ${PN}.html )
-   distutils-r1_python_install_all
-}

diff --git a/app-portage/g-octave/metadata.xml 
b/app-portage/g-octave/metadata.xml
deleted file mode 100644
index 2388656e8..0
--- a/app-portage/g-octave/metadata.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   raf...@rafaelmartins.eng.br
-   Rafael Goncalves Martins
-   
-   
-g-octave is a tool that generates and installs ebuilds for Octave-Forge
-packages "on-the-fly" to Gentoo Linux, using Portage. It's capable to
-generate ebuilds and Manifest files for the packages, and to install
-them using an autogenerated overlay (named g-octave). g-octave can also
-handle patches to the packages automatically. The command line interface
-tries to be very similar to the interface of the emerge tool.
-
-



[gentoo-commits] repo/proj/guru:dev commit in: dev-python/pypandoc/

2020-09-21 Thread Maciej Barć
commit: 46c5c578a7451f3919ef46805415991d8c2383ff
Author: Maciej Barć  protonmail  com>
AuthorDate: Tue Sep 22 01:42:28 2020 +
Commit: Maciej Barć  protonmail  com>
CommitDate: Tue Sep 22 01:42:28 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=46c5c578

dev-python/pypandoc: add python 3.8 compatibility

Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Maciej Barć  protonmail.com>

 dev-python/pypandoc/pypandoc-1.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pypandoc/pypandoc-1.5.ebuild 
b/dev-python/pypandoc/pypandoc-1.5.ebuild
index 6f5d84ca..180756a3 100644
--- a/dev-python/pypandoc/pypandoc-1.5.ebuild
+++ b/dev-python/pypandoc/pypandoc-1.5.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{6,7} )
+PYTHON_COMPAT=( python3_{6,7,8} )
 
 inherit distutils-r1
 



[gentoo-commits] proj/sci:master commit in: app-benchmarks/numbench/

2020-09-21 Thread Aisha Tammy
commit: 86e29a50b754ab8d6b59c787be1562bbe98db0f3
Author: Aisha Tammy  aisha  cc>
AuthorDate: Tue Sep 22 01:42:16 2020 +
Commit: Aisha Tammy  aisha  cc>
CommitDate: Tue Sep 22 01:42:31 2020 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=86e29a50

app-benchmarks/numbench: drop package

upstream is non existent
alternative repository hasn't been updated
for 8 years

Package-Manager: Portage-3.0.7, Repoman-3.0.1
Signed-off-by: Aisha Tammy  aisha.cc>

 app-benchmarks/numbench/metadata.xml | 17 -
 app-benchmarks/numbench/numbench-0.2.ebuild  | 37 
 app-benchmarks/numbench/numbench-.ebuild | 37 
 3 files changed, 91 deletions(-)

diff --git a/app-benchmarks/numbench/metadata.xml 
b/app-benchmarks/numbench/metadata.xml
deleted file mode 100644
index 9851d9f74..0
--- a/app-benchmarks/numbench/metadata.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   andyspi...@gmail.com
-   Andrea Arteaga
-   Google Summer of Code 2011 student
-   
-   
-   s...@gentoo.org
-   Gentoo Science Project
-   
-   This package contains a set of scripts developed 
during the Google Summer of Code 2011 project. It aims to benchmark numerical 
libraries, and more precisely implementations of the standard BLAS, CBLAS, 
LAPACK, PBLAS, ScaLAPACK and the library FFTW.
-   
-   andyspiros/numbench
-   
-

diff --git a/app-benchmarks/numbench/numbench-0.2.ebuild 
b/app-benchmarks/numbench/numbench-0.2.ebuild
deleted file mode 100644
index f9b79e174..0
--- a/app-benchmarks/numbench/numbench-0.2.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1 vcs-snapshot
-
-DESCRIPTION="Automated benchmarks suite"
-HOMEPAGE="http://soc.dev.gentoo.org/~spiros;
-SRC_URI="http://github.com/andyspiros/numbench/tarball/${PV} -> ${P}.tar.gz"
-CID="127a61c"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-IUSE=""
-
-RDEPEND="
-   !app-eselect/eselect-blas
-   !app-eselect/eselect-cblas
-   !app-eselect/eselect-lapack
-   >=dev-python/matplotlib-1.0.0
-   >=app-admin/eselect-1.3.2-r100"
-
-python_install_all() {
-   distutils-r1_python_install_all
-
-   python_foreach_impl python_newscript exec.py numbench
-
-   insinto /usr/share/numbench/samples
-   doins samples/*.xml
-
-   doman doc/numbench.1
-}

diff --git a/app-benchmarks/numbench/numbench-.ebuild 
b/app-benchmarks/numbench/numbench-.ebuild
deleted file mode 100644
index 831a41d6a..0
--- a/app-benchmarks/numbench/numbench-.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1 git-r3
-
-DESCRIPTION="Automated benchmarks suite"
-HOMEPAGE="http://soc.dev.gentoo.org/~spiros;
-#EGIT_REPO_URI="git://git.overlays.gentoo.org/proj/auto-numerical-bench.git"
-EGIT_REPO_URI="git://github.com/andyspiros/numbench.git"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS=""
-
-IUSE=""
-
-RDEPEND="
-   !app-eselect/eselect-blas
-   !app-eselect/eselect-cblas
-   !app-eselect/eselect-lapack
-   >=dev-python/matplotlib-1.0.0
-   >=app-admin/eselect-1.3.2-r100"
-
-python_install_all() {
-   distutils-r1_python_install_all
-
-   python_foreach_impl python_newscript exec.py numbench
-
-   insinto /usr/share/numbench/samples
-   doins samples/*.xml
-
-   doman doc/numbench.1
-}



[gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-lua/

2020-09-21 Thread Vadim Misbakh-Soloviov
commit: b5958725ab0f40a86af5cb22056e42f176c61ed5
Author: Vadim Misbakh-Soloviov  gentoo  org>
AuthorDate: Tue Sep 22 05:41:40 2020 +
Commit: Vadim Misbakh-Soloviov  gentoo  org>
CommitDate: Tue Sep 22 05:41:40 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5958725

app-eselect/eselect-lua: fix depends

Package-Manager: Portage-3.0.6, Repoman-3.0.1
Signed-off-by: Vadim Misbakh-Soloviov  gentoo.org>

 app-eselect/eselect-lua/eselect-lua-2.ebuild | 7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/app-eselect/eselect-lua/eselect-lua-2.ebuild 
b/app-eselect/eselect-lua/eselect-lua-2.ebuild
index f9013c396ac..82abd3207ea 100644
--- a/app-eselect/eselect-lua/eselect-lua-2.ebuild
+++ b/app-eselect/eselect-lua/eselect-lua-2.ebuild
@@ -13,6 +13,10 @@ IUSE=""
 
 DEPEND="
!dev-lang/lua:0
+   >=app-admin/eselect-1.2.4
+"
+RDEPEND="${DEPEND}"
+PDEPEND="
|| (
dev-lang/lua:5.1
dev-lang/lua:5.2
@@ -22,12 +26,9 @@ DEPEND="
app-eselect/eselect-luajit
)
)
-   >=app-admin/eselect-1.2.4
 "
 #  dev-lang/lua:5.4
 # TODO: ^
-RDEPEND="${DEPEND}"
-
 S="${WORKDIR}"
 
 src_install() {



[gentoo-commits] proj/sci:master commit in: app-benchmarks/btl/

2020-09-21 Thread Aisha Tammy
commit: 0b412e1b5b138788bcb7e146efa4b3c2ccf88ae7
Author: Aisha Tammy  aisha  cc>
AuthorDate: Tue Sep 22 01:38:13 2020 +
Commit: Aisha Tammy  aisha  cc>
CommitDate: Tue Sep 22 01:38:47 2020 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=0b412e1b

app-benchmarks/btl: drop package

non existent upstream

Package-Manager: Portage-3.0.7, Repoman-3.0.1
Signed-off-by: Aisha Tammy  aisha.cc>

 app-benchmarks/btl/btl-.ebuild | 20 
 app-benchmarks/btl/metadata.xml| 17 -
 2 files changed, 37 deletions(-)

diff --git a/app-benchmarks/btl/btl-.ebuild 
b/app-benchmarks/btl/btl-.ebuild
deleted file mode 100644
index 74bbb1c39..0
--- a/app-benchmarks/btl/btl-.ebuild
+++ /dev/null
@@ -1,20 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit mercurial
-
-DESCRIPTION="Bench Template Library"
-HOMEPAGE="https://bitbucket.org/spiros/btl;
-EHG_REPO_URI="https://bitbucket.org/spiros/btl;
-
-LICENSE="LGPL-3"
-SLOT="0"
-KEYWORDS=""
-IUSE=""
-
-src_install() {
-   insinto /usr/include/btl
-   doins -r *
-}

diff --git a/app-benchmarks/btl/metadata.xml b/app-benchmarks/btl/metadata.xml
deleted file mode 100644
index 8ebdfe5fd..0
--- a/app-benchmarks/btl/metadata.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   andyspi...@gmail.com
-   Andrea Arteaga
-   Bench Template Library
-   
-   
-   s...@gentoo.org
-   Gentoo Science Project
-   
-   This package contains a modified copy of the 
BTL.
-   
-   spiros/btl
-   
-



[gentoo-commits] proj/sci:master commit in: app-arch/libdeflate/

2020-09-21 Thread Aisha Tammy
commit: 539c4125af8dbd1e363867b8043d7019f49693c0
Author: Aisha Tammy  aisha  cc>
AuthorDate: Tue Sep 22 01:33:04 2020 +
Commit: Aisha Tammy  aisha  cc>
CommitDate: Tue Sep 22 01:33:04 2020 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=539c4125

app-arch/libdeflate: version bump

Package-Manager: Portage-3.0.7, Repoman-3.0.1
Signed-off-by: Aisha Tammy  aisha.cc>

 app-arch/libdeflate/libdeflate-1.6.ebuild | 23 +++
 1 file changed, 23 insertions(+)

diff --git a/app-arch/libdeflate/libdeflate-1.6.ebuild 
b/app-arch/libdeflate/libdeflate-1.6.ebuild
new file mode 100644
index 0..5485ad25f
--- /dev/null
+++ b/app-arch/libdeflate/libdeflate-1.6.ebuild
@@ -0,0 +1,23 @@
+# Copyright 2019-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit multilib
+
+DESCRIPTION="Heavily optimized DEFLATE/zlib/gzip (de)compression"
+HOMEPAGE="https://github.com/ebiggers/libdeflate;
+SRC_URI="https://github.com/ebiggers/libdeflate/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="static-libs"
+
+src_install() {
+   if ! use static-libs; then
+   find "${ED}" -name '*.a' -delete || die
+   fi
+   emake install DESTDIR="${ED}" PREFIX=/usr LIBDIR=/usr/"$(get_libdir)"
+   dodoc NEWS README.md
+}



[gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-lua/files/, app-eselect/eselect-lua/

2020-09-21 Thread Vadim Misbakh-Soloviov
commit: aea12f354eecdb2685bfbc4448cc8755b18fe06f
Author: Vadim Misbakh-Soloviov  gentoo  org>
AuthorDate: Tue Sep 22 05:32:05 2020 +
Commit: Vadim Misbakh-Soloviov  gentoo  org>
CommitDate: Tue Sep 22 05:32:05 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aea12f35

app-eselect/eselect-lua: update to new version

Package-Manager: Portage-3.0.6, Repoman-3.0.1
Signed-off-by: Vadim Misbakh-Soloviov  gentoo.org>

 app-eselect/eselect-lua/eselect-lua-2.ebuild |  36 ++
 app-eselect/eselect-lua/files/lua.eselect-2  | 172 +++
 app-eselect/eselect-lua/metadata.xml |   4 +
 3 files changed, 212 insertions(+)

diff --git a/app-eselect/eselect-lua/eselect-lua-2.ebuild 
b/app-eselect/eselect-lua/eselect-lua-2.ebuild
new file mode 100644
index 000..f9013c396ac
--- /dev/null
+++ b/app-eselect/eselect-lua/eselect-lua-2.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Lua eselect module"
+HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE=""
+
+DEPEND="
+   !dev-lang/lua:0
+   || (
+   dev-lang/lua:5.1
+   dev-lang/lua:5.2
+   dev-lang/lua:5.3
+   (
+   dev-lang/luajit:2
+   app-eselect/eselect-luajit
+   )
+   )
+   >=app-admin/eselect-1.2.4
+"
+#  dev-lang/lua:5.4
+# TODO: ^
+RDEPEND="${DEPEND}"
+
+S="${WORKDIR}"
+
+src_install() {
+   insinto /usr/share/eselect/modules/
+   newins "${FILESDIR}"/lua.eselect-${PV} lua.eselect
+}

diff --git a/app-eselect/eselect-lua/files/lua.eselect-2 
b/app-eselect/eselect-lua/files/lua.eselect-2
new file mode 100644
index 000..02a942788b9
--- /dev/null
+++ b/app-eselect/eselect-lua/files/lua.eselect-2
@@ -0,0 +1,172 @@
+# -*-eselect-*-  vim: ft=eselect
+# Copyright 2014-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+inherit config multilib
+
+DESCRIPTION="Manage lua symlinks"
+MAINTAINER="m...@gentoo.org"
+
+HEADER_FILES="lauxlib.h luaconf.h lua.h lua.hpp lualib.h"
+
+remove_symlinks() {
+   rm -f "${EROOT}"/usr/bin/{lua,luac} &>/dev/null 
+   for dir in $(get_libdirs) ; do
+   rm -f "${EROOT}"${dir}/liblua.so &>/dev/null && \
+   rm -f "${EROOT}"${dir}/pkgconfig/lua.pc &>/dev/null
+   done
+   for f in $HEADER_FILES ; do
+   rm -f "${EROOT}"/usr/include/${f}
+   done
+   rm -f "${EROOT}"/usr/share/man/man1/{lua,luac}.1{,.gz,.bz2,.lzma} 
&>/dev/null
+}
+
+_dup() {
+   dirname ${1}/.
+}
+
+set_symlinks() {
+   local ver=$1
+   ln -s lua${ver} $(_dup "${EROOT}"/usr/bin/lua)
+   ln -s luac${ver} $(_dup "${EROOT}"/usr/bin/luac)
+   for dir in $(get_libdirs) ; do
+   if has 'jit*' ${ver}; then
+   type -p lua${ver} &>/dev/null || die -q "It's something 
wrong with your lua${ver} installation: it's binary leads to broken symlink"
+   local abi=$(lua${ver} -e 
'print(_VERSION:match("%d.%d"))')
+   local libname=libluajit-${abi}.so.${ver##jit-}
+   test -f "${EROOT}/${dir}/${libname}" || die -q "Can't 
find libluajit for lua${ver} (lua abi: ${abi})"
+   ln -s ${libname} $(_dup "${EROOT}/${dir}"/liblua.so)
+   else
+   ln -s liblua${ver}.so $(_dup 
"${EROOT}/${dir}"/liblua.so)
+   fi
+   ln -s lua${ver}.pc $(_dup "${EROOT}/${dir}"/pkgconfig/lua.pc)
+   done
+   for manpage in "${EROOT}"/usr/share/man/man1/lua*${ver}.1* ; do
+   test -f ${manpage} &&
+   ln -s $(basename "${manpage}") $(_dup "${manpage//${ver}}")
+   done
+   for header in $HEADER_FILES ; do
+   local hdr;
+   if has 'jit*' ${ver}; then
+   type -p lua${ver} &>/dev/null || die -q "lua${ver} 
binary is missing (or leads to broken symlink)"
+   local jit_v=$(lua${ver} -e 
'print(jit.version:match("%d.%d"))')
+   hdr=luajit-${jit_v}/${header};
+   else
+   hdr=lua${ver}/${header};
+   fi
+   test -f "${EROOT}/usr/include/${hdr}" || die -q "Missing 
header: ${header}"
+   ln -s "${hdr}" $(_dup "${EROOT}"/usr/include/${header})
+   done
+}
+
+get_libdirs() {
+   local dir libdirs
+   for dir in $(list_libdirs); do
+   [[ -L ${EROOT}/usr/${dir} ]] && continue
+   ls "${EROOT}"/usr/${dir}/liblua*.* > /dev/null 2>&1 || continue
+
+   libdirs+=' 

[gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-lua/

2020-09-21 Thread Vadim Misbakh-Soloviov
commit: fcf46d9d67c70d4bd2b7ff45a30fd76ed862c626
Author: Vadim Misbakh-Soloviov  gentoo  org>
AuthorDate: Tue Sep 22 05:33:07 2020 +
Commit: Vadim Misbakh-Soloviov  gentoo  org>
CommitDate: Tue Sep 22 05:33:07 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fcf46d9d

app-eselect/eselect-lua: drop old version

Package-Manager: Portage-3.0.6, Repoman-3.0.1
Signed-off-by: Vadim Misbakh-Soloviov  gentoo.org>

 app-eselect/eselect-lua/eselect-lua-1.ebuild | 22 --
 1 file changed, 22 deletions(-)

diff --git a/app-eselect/eselect-lua/eselect-lua-1.ebuild 
b/app-eselect/eselect-lua/eselect-lua-1.ebuild
deleted file mode 100644
index 321aa912069..000
--- a/app-eselect/eselect-lua/eselect-lua-1.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-DESCRIPTION="Lua eselect module"
-HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE=""
-
-DEPEND=">=app-admin/eselect-1.2.4"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}"
-
-src_install() {
-   insinto /usr/share/eselect/modules/
-   newins "${FILESDIR}"/lua.eselect-${PV} lua.eselect
-}



[gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-luajit/files/, app-eselect/eselect-luajit/

2020-09-21 Thread Vadim Misbakh-Soloviov
commit: 4d471072dfa9d8717f99e685ff88470930ae1e94
Author: Vadim Misbakh-Soloviov  gentoo  org>
AuthorDate: Tue Sep 22 05:29:57 2020 +
Commit: Vadim Misbakh-Soloviov  gentoo  org>
CommitDate: Tue Sep 22 05:29:57 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d471072

app-eselect/eselect-luajit: added

Package-Manager: Portage-3.0.6, Repoman-3.0.1
Signed-off-by: Vadim Misbakh-Soloviov  gentoo.org>

 app-eselect/eselect-luajit/eselect-luajit-1.ebuild |  24 
 app-eselect/eselect-luajit/files/luajit-1.eselect  | 141 +
 app-eselect/eselect-luajit/metadata.xml|  10 ++
 3 files changed, 175 insertions(+)

diff --git a/app-eselect/eselect-luajit/eselect-luajit-1.ebuild 
b/app-eselect/eselect-luajit/eselect-luajit-1.ebuild
new file mode 100644
index 000..a68f42f7e2e
--- /dev/null
+++ b/app-eselect/eselect-luajit/eselect-luajit-1.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Manages LuaJIT symlinks"
+HOMEPAGE="https://www.gentoo.org/;
+SRC_URI=""
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+IUSE=""
+
+RDEPEND="
+   >=app-admin/eselect-1.2.4
+"
+
+S="${WORKDIR}"
+
+src_install() {
+   insinto /usr/share/eselect/modules
+   newins "${FILESDIR}/luajit-${PV}.eselect" luajit.eselect || die "newins 
failed"
+}

diff --git a/app-eselect/eselect-luajit/files/luajit-1.eselect 
b/app-eselect/eselect-luajit/files/luajit-1.eselect
new file mode 100644
index 000..327e3d73a9e
--- /dev/null
+++ b/app-eselect/eselect-luajit/files/luajit-1.eselect
@@ -0,0 +1,141 @@
+# -*-eselect-*-  vim: ft=eselect
+# Copyright 2005-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2 or later
+# $Id: luajit.eselect mva $
+
+inherit config multilib
+
+DESCRIPTION="Manage the LuaJIT symlink"
+MAINTAINER="m...@gentoo.org"
+VERSION="1"
+
+# sort function for luajit versions, to be used in a pipe
+sort_luajit_versions() {
+   local vsort="sort --version-sort"
+   ${vsort} /dev/null || vsort=sort
+   sed -e 's/^\(luajit-\)\?\([[:digit:].]\+\)[-_]beta/\2 0 &/' \
+   -e 't;s/^\(luajit-\)\?\([[:digit:].]\+\)/\2 1 &/' \
+   | LC_ALL=C ${vsort} | sed 's/.* //'
+}
+
+# find a list of luajit symlink targets
+find_targets() {
+   local f
+   for f in $(find "${EROOT}"/usr/bin/ -type f -iname 
'luajit-[[:digit:]]*'); do
+   basename "${f}"
+   done | sort_luajit_versions
+}
+
+get_libdirs() {
+   local dir libdirs
+   for dir in $(list_libdirs); do
+   [[ -L ${EROOT}/usr/${dir} ]] && continue
+   ls "${EROOT}"/usr/${dir}/libluajit*.* > /dev/null 2>&1 || 
continue
+
+   libdirs+=' '/usr/${dir}
+   done
+   echo ${libdirs:-/usr/lib}
+}
+
+
+# remove the luajit symlink
+remove_symlinks() {
+   for dir in $(get_libdirs) ; do
+   [[ -L "${dir}/libluajit-5.1.so" ]] && rm 
"${dir}/libluajit-5.1.so"
+   [[ -L "${dir}/libluajit-5.1.a" ]] && rm "${dir}/libluajit-5.1.a"
+   [[ -L "${dir}/pkgconfig/luajit.pc" ]] && rm 
"${dir}/pkgconfig/luajit.pc"
+   done
+   [[ -L "${EROOT}/usr/bin/luajit" ]] && rm "${EROOT}/usr/bin/luajit"
+   rm -f "${EROOT}"/usr/share/man/man1/luajit.1{,.gz,.bz2,.lzma} 
&>/dev/null
+}
+
+# set the luajit symlink
+set_symlinks() {
+   local target=$1
+
+   if is_number "${target}"; then
+   local targets=( $(find_targets) )
+   target=${targets[target-1]}
+   fi
+
+   if [[ -z ${target} ]]; then
+   die -q "Target \"$1\" doesn't appear to be valid!"
+   elif [[ -f ${EROOT}/usr/bin/${target} ]]; then
+   ln -s "${target}" "${EROOT}/usr/bin/luajit"
+   for dir in $(get_libdirs) ; do
+   [[ -e "${dir}/lib${target}.so" ]] && ln -s 
"lib${target}.so" "${dir}/libluajit-5.1.so"
+   [[ -e "${dir}/lib${target}.a" ]] && ln -s 
"lib${target}.a" "${dir}/libluajit-5.1.a"
+   [[ -e "${dir}/pkgconfig/${target}.pc" ]] && ln -s 
"${target}.pc" "${dir}/pkgconfig/luajit.pc"
+   done
+   for orig in "${EROOT}"/usr/share/man/man1/$target.1* ; do
+   ln -s "$(basename ${orig})" "${orig/$target/luajit}"
+   done
+   else
+   die -q "Target \"$1\" doesn't appear to be valid!"
+   fi
+}
+
+### show action ###
+
+describe_show() {
+   echo "Show the current luajit symlink"
+}
+
+do_show() {
+   write_list_start "Current luajit symlink:"
+   if [[ -L ${EROOT}/usr/bin/luajit ]]; then
+   local SV=$(readlink "${EROOT}/usr/bin/luajit")
+   write_kv_list_entry "${SV%/}"
+   else
+   write_kv_list_entry "(unset)"
+   fi
+}
+
+### list action ###
+

[gentoo-commits] proj/sci:master commit in: dev-cpp/icnc/

2020-09-21 Thread Aisha Tammy
commit: dea67cca44bed8e28aeccb4d4ccbc25de47c5e95
Author: Aisha Tammy  aisha  cc>
AuthorDate: Tue Sep 22 01:21:13 2020 +
Commit: Aisha Tammy  aisha  cc>
CommitDate: Tue Sep 22 01:21:25 2020 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=dea67cca

dev-cpp/icnc: drop package

present in ::gentoo

Package-Manager: Portage-3.0.7, Repoman-3.0.1
Signed-off-by: Aisha Tammy  aisha.cc>

 dev-cpp/icnc/icnc-.ebuild | 50 ---
 dev-cpp/icnc/metadata.xml |  8 ---
 2 files changed, 58 deletions(-)

diff --git a/dev-cpp/icnc/icnc-.ebuild b/dev-cpp/icnc/icnc-.ebuild
deleted file mode 100644
index 180840e95..0
--- a/dev-cpp/icnc/icnc-.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit cmake-utils git-r3 multilib python-any-r1
-
-DESCRIPTION="Intel Concurrent Collections for C++ - Parallelism without the 
Pain"
-HOMEPAGE="https://software.intel.com/en-us/articles/intel-concurrent-collections-for-cc;
-EGIT_REPO_URI="https://github.com/icnc/icnc.git;
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS=
-IUSE="doc examples mpi test"
-
-RDEPEND="
-   >=dev-cpp/tbb-4.2
-   sys-libs/glibc
-   mpi? ( virtual/mpi )
-   "
-DEPEND="
-   ${RDEPEND}
-   doc? ( app-doc/doxygen )
-   test? ( ${PYTHON_DEPS} )
-   "
-
-src_configure() {
-   local mycmakeargs=(
-   $(cmake-utils_use mpi BUILD_LIBS_FOR_MPI)
-   -DLIB=$(get_libdir)
-   $(cmake-utils_use_find_package doc Doxygen)
-   $(cmake-utils_use test ENABLE_TESTING)
-   -DRUN_DIST=OFF
-   )
-   cmake-utils_src_configure
-}
-
-src_install() {
-   cmake-utils_src_install
-   if use doc; then
-   mv "${ED}"/usr/share/{icnc/doc/api,doc/${PF}/html} || die
-   rmdir "${ED}"/usr/share/icnc/doc || die
-   fi
-   if ! use examples; then
-   rm -r "${ED}"/usr/share/icnc/samples || die
-   fi
-}

diff --git a/dev-cpp/icnc/metadata.xml b/dev-cpp/icnc/metadata.xml
deleted file mode 100644
index 9dee8db11..0
--- a/dev-cpp/icnc/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   ott...@gentoo.org
-   Christoph Junghans
-   
-



[gentoo-commits] proj/sci:master commit in: sci-visualization/nodemon/

2020-09-21 Thread Aisha Tammy
commit: 5a3dbc1887ccf916392bc567af2dd36e753771d5
Author: Aisha Tammy  aisha  cc>
AuthorDate: Tue Sep 22 01:17:51 2020 +
Commit: Aisha Tammy  aisha  cc>
CommitDate: Tue Sep 22 01:18:01 2020 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=5a3dbc18

sci-visualization/nodemon: drop package

really old and upstream is dead since 2007

Package-Manager: Portage-3.0.7, Repoman-3.0.1
Signed-off-by: Aisha Tammy  aisha.cc>

 sci-visualization/nodemon/metadata.xml | 23 
 sci-visualization/nodemon/nodemon-0.3.5.ebuild | 29 --
 2 files changed, 52 deletions(-)

diff --git a/sci-visualization/nodemon/metadata.xml 
b/sci-visualization/nodemon/metadata.xml
deleted file mode 100644
index 3bbffb9b5..0
--- a/sci-visualization/nodemon/metadata.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   bryan.d.gr...@nasa.gov
-   Bryan Green
-   
-   
-   s...@gentoo.org
-   Gentoo Science Project
-   
-   
-NodeMon is a distributed visualization tool for monitoring system resource
-utilization.  It is primarily intended for clusters and large-scale NUMA
-systems.
-
-   
-   Enable support for the Portable Batch 
System.
-   
-   
-   downloads
-   
-

diff --git a/sci-visualization/nodemon/nodemon-0.3.5.ebuild 
b/sci-visualization/nodemon/nodemon-0.3.5.ebuild
deleted file mode 100644
index 60496ec7c..0
--- a/sci-visualization/nodemon/nodemon-0.3.5.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-DESCRIPTION="Distributed visualization tool for monitoring system resource 
utilization"
-HOMEPAGE="http://nodemon.sourceforge.net/;
-SRC_URI="http://downloads.sourceforge.net/nodemon/nodemon-${PV}.tar.gz;
-
-LICENSE="NOSA"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="gtk pbs"
-
-RDEPEND="
-   >=dev-cpp/growler-arch-0.3.7.1
-   gtk? (
-   >=x11-libs/gtkglext-1.0
-   x11-libs/gtk+:2
-   )"
-DEPEND="${RDEPEND}"
-
-DOCS="README NEWS AUTHORS NOSA ChangeLog"
-
-src_configure() {
-   econf \
-   $(use_enable gtk) \
-   $(use_with pbs)
-}



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

2020-09-21 Thread Hans de Graaff
commit: 9a05d88adbd489e948a576a7f099392960a91dea
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Sep 22 04:31:30 2020 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Sep 22 04:31:30 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a05d88a

dev-ruby/image_processing: add 1.12.0

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

 dev-ruby/image_processing/Manifest |  1 +
 .../image_processing-1.12.0.ebuild | 45 ++
 2 files changed, 46 insertions(+)

diff --git a/dev-ruby/image_processing/Manifest 
b/dev-ruby/image_processing/Manifest
index 7e696c9fd51..861c864c4c9 100644
--- a/dev-ruby/image_processing/Manifest
+++ b/dev-ruby/image_processing/Manifest
@@ -1,2 +1,3 @@
 DIST image_processing-1.10.3.tar.gz 985090 BLAKE2B 
9626dd41ae97cd0c68b857ccce2dd2b5eebbc04a5a3fc145cfde681b8ba9cc78806ddf1e7542afa2799ad707ced592149304216875297fc1bac112501dfcdbbb
 SHA512 
7883199b2ccd693ae91a5d028a7c7bf5834cb36c7a48b4d02d1d92d7681e382a4e6605ca80cb0ca2f9949bfa95d8dafac3057e2508bb2932c5c3c0c3dee99b12
 DIST image_processing-1.11.0.tar.gz 985565 BLAKE2B 
2ab1cfcdb0637dfbba50558cdb0b778cbb2f7bccf2a12aff5515171e252b0f41624d1867a2cb825d7200b5c09eb57d4f002cd086fdb987a9513a2ef3401a2db3
 SHA512 
2978ab351f6afaa9bb4ff08be6f89a27a634ac49a239a88c59cd40c877ffe4da57bdfe0d02af31577be113f04d7dc736e891b1edebc09fd4829bbe89085c4282
+DIST image_processing-1.12.0.tar.gz 986331 BLAKE2B 
765906d2cfcb63ef8257144bc54744d9a43f4673fb5d1f99d7230bee52534ebae1e6d39009203a1fa080e42889c55885e8e828be1d282d8d2de7358cf69ad2ca
 SHA512 
b1bd8b8da8aedc348591c900dfc0f6a862acfb7f12f10640ce4db181b738a145efc8c1ce8d6f0863930fdd7989670e1114dc8d91581a22e7f9093cf6ae9ad61c

diff --git a/dev-ruby/image_processing/image_processing-1.12.0.ebuild 
b/dev-ruby/image_processing/image_processing-1.12.0.ebuild
new file mode 100644
index 000..b5cac1d4884
--- /dev/null
+++ b/dev-ruby/image_processing/image_processing-1.12.0.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+USE_RUBY="ruby25 ruby26"
+
+RUBY_FAKEGEM_RECIPE_DOC="none"
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md doc/*.md"
+
+RUBY_FAKEGEM_GEMSPEC="image_processing.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="High-level image processing helper methods with libvips and 
ImageMagick"
+HOMEPAGE="https://github.com/janko/image_processing;
+SRC_URI="https://github.com/janko/image_processing/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND+=" test? ( media-gfx/imagemagick[jpeg,png,tiff] )"
+
+ruby_add_rdepend "
+   >=dev-ruby/mini_magick-4.9.5:0
+"
+
+ruby_add_bdepend "test? (
+   >=dev-ruby/minitest-5.8:5
+   >=dev-ruby/minitest-hooks-1.4.2
+   dev-ruby/minispec-metadata
+)"
+
+all_ruby_prepare() {
+   # Only support imagemagick for now since vips is not packaged
+   sed -i -e '/ruby-vips/ s:^:#:' ${RUBY_FAKEGEM_GEMSPEC} || die
+   rm -f test/{builder,pipeline,vips}_test.rb || die
+   sed -i -e '/assert_dimensions/ s:^:#:' test/*_test.rb || die
+
+   # phash is not packaged
+   sed -i -e '/\(assert\|refute\)_similar/ s:^:#:' test/*_test.rb || die
+
+   sed -i -e '/\(bundler\|phashion\|vips\)/ s:^:#:' Rakefile 
test/test_helper.rb || die
+}



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

2020-09-21 Thread Hans de Graaff
commit: 81fb6b6e90ba8eb0969ce356854766447480489b
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Sep 22 04:35:55 2020 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Sep 22 04:35:55 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81fb6b6e

dev-ruby/faker: add 2.14.0

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

 dev-ruby/faker/Manifest|  1 +
 dev-ruby/faker/faker-2.14.0.ebuild | 30 ++
 2 files changed, 31 insertions(+)

diff --git a/dev-ruby/faker/Manifest b/dev-ruby/faker/Manifest
index 42ef17b5abf..bfe3819ac96 100644
--- a/dev-ruby/faker/Manifest
+++ b/dev-ruby/faker/Manifest
@@ -2,3 +2,4 @@ DIST faker-1.9.6.tar.gz 1833392 BLAKE2B 
826ee480515873d1e250147e5c3749e222b1273a
 DIST faker-2.11.0.tar.gz 1033369 BLAKE2B 
51677346980bd5070a145b1d8dd11a6426cf9da5c407e030d9722ed8ccc4ed1a0a8b2d5534c96b50fbe79e84fe71e4268f3228c223dc61fe4c74cda0de18a790
 SHA512 
9adc03cdef0714656738d354d787a99cb9fcc85718847db7b183b02f38d550ff86d65c8e6ed13be3c839cc64f36f3e95ff25dd5d2f8f45c7207dbe5735238e0a
 DIST faker-2.12.0.tar.gz 1100460 BLAKE2B 
8be31911c9612d7433433121344a1fbfc735740898cb4fa7115a9ec33d22f610e5eca9ace3369da7f6e107478493e7b732a74650a233171ebb8b306f3e2d872e
 SHA512 
7adc89cc3ba7e4d802d5f96199e21a6ed1dc9f0144d2da5a9a5adb705097d1acf4830c7ff0ce733fb9b0ddc11fba0290cade9f791824db5ab737b3facd93f93d
 DIST faker-2.13.0.tar.gz 1129212 BLAKE2B 
358a959a600d5638681bbad20b05618cd2d67857de120a4ff6d8d6c3c723d1efd24ebfa617e3d2090862e111271bd3c12ac3f3f340e8eda6811760c1de31f642
 SHA512 
700a3d4d6f9019bd7c7e61ed770c6eb2e9dede6e4af9e3a06ca1858a2eebdd67491b94a41396ba1ab4940f0f7fd00f2203db78f5267adb08360b95823c633131
+DIST faker-2.14.0.tar.gz 1150487 BLAKE2B 
51343e8d45d2615d180fac4845d2cc8a6509b3710528c2770e52f2e4203e458ba07e3fa4f8f7559704598379b54fe38d8d557fc6cc0b614f3695cee8265adc49
 SHA512 
3a65a65c587f9e2a12c0d7a1e5ecbb12d059146cfda944d5bca950dd2b8cbdb509722b7b181fc619f395ebb526c3f99461ed74803a79cda1b74df83c203db518

diff --git a/dev-ruby/faker/faker-2.14.0.ebuild 
b/dev-ruby/faker/faker-2.14.0.ebuild
new file mode 100644
index 000..e02e94be804
--- /dev/null
+++ b/dev-ruby/faker/faker-2.14.0.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+USE_RUBY="ruby25 ruby26 ruby27"
+
+RUBY_FAKEGEM_RECIPE_DOC="none"
+
+RUBY_FAKEGEM_GEMSPEC="faker.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A library for generating fake data such as names, addresses, and 
phone numbers"
+HOMEPAGE="https://github.com/stympy/faker;
+SRC_URI="https://github.com/stympy/faker/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="$(ver_cut 1)"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE="test"
+
+ruby_add_rdepend ">=dev-ruby/i18n-1.6:1 !!

[gentoo-commits] proj/sci:master commit in: dev-perl/go-perl/

2020-09-21 Thread Aisha Tammy
commit: 527d72450787b857d8cf9f3fdf9e4a4e50c0baba
Author: Aisha Tammy  aisha  cc>
AuthorDate: Mon Sep 21 23:57:20 2020 +
Commit: Aisha Tammy  aisha  cc>
CommitDate: Mon Sep 21 23:57:34 2020 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=527d7245

dev-perl/go-perl: drop package

present in ::gentoo

Package-Manager: Portage-3.0.7, Repoman-3.0.1
Signed-off-by: Aisha Tammy  aisha.cc>

 dev-perl/go-perl/go-perl-0.13.ebuild | 20 
 dev-perl/go-perl/metadata.xml| 12 
 2 files changed, 32 deletions(-)

diff --git a/dev-perl/go-perl/go-perl-0.13.ebuild 
b/dev-perl/go-perl/go-perl-0.13.ebuild
deleted file mode 100644
index 480e9563b..0
--- a/dev-perl/go-perl/go-perl-0.13.ebuild
+++ /dev/null
@@ -1,20 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-MODULE_AUTHOR="CMUNGALL"
-
-inherit perl-module
-
-DESCRIPTION="GO::Parser parses all GO files formats and types"
-
-LICENSE="|| ( Artistic GPL-1 GPL-2 GPL-3 )"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="
-   >=dev-perl/Data-Stag-0.11
-   dev-lang/perl"
-RDEPEND="${DEPEND}"

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



[gentoo-commits] proj/sci:master commit in: dev-perl/Bio-DB-HTS/

2020-09-21 Thread Aisha Tammy
commit: 6e9bf8f7648c9df1f8b59e8c1631148b490f3aac
Author: Aisha Tammy  aisha  cc>
AuthorDate: Tue Sep 22 00:00:58 2020 +
Commit: Aisha Tammy  aisha  cc>
CommitDate: Tue Sep 22 00:01:17 2020 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=6e9bf8f7

dev-perl/Bio-DB-HTS: drop package

present in ::gentoo

Package-Manager: Portage-3.0.7, Repoman-3.0.1
Signed-off-by: Aisha Tammy  aisha.cc>

 dev-perl/Bio-DB-HTS/Bio-DB-HTS-2.3.ebuild | 35 ---
 dev-perl/Bio-DB-HTS/metadata.xml  | 12 ---
 2 files changed, 47 deletions(-)

diff --git a/dev-perl/Bio-DB-HTS/Bio-DB-HTS-2.3.ebuild 
b/dev-perl/Bio-DB-HTS/Bio-DB-HTS-2.3.ebuild
deleted file mode 100644
index 1e7e6ceca..0
--- a/dev-perl/Bio-DB-HTS/Bio-DB-HTS-2.3.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-# this is https://metacpan.org/pod/Bio::DB::HTS and 
https://github.com/Ensembl/Bio-DB-HTS
-# this is not https://metacpan.org/pod/Bio::HTS
-MODULE_AUTHOR="RISHIDEV"
-inherit perl-module multilib toolchain-funcs
-
-DESCRIPTION="Enable rapid access to bgzipped FASTA files"
-
-#LICENSE="|| ( Artistic GPL-1 GPL-2 GPL-3 )"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND=""
-DEPEND="${RDEPEND}
-   dev-perl/Module-Build
-   sci-libs/htslib[static-libs]"
-
-SRC_TEST="do"
-
-src_prepare(){
-   # https://github.com/Ensembl/Bio-HTS/issues/30
-   export HTSLIB_LIBDIR="${EPREFIX}"/"$(get_libdir)" # currently ignored
-   export HTSLIB_INCDIR="${EPREFIX}"/usr/include/htslib # currently ignored
-   export HTSLIB_DIR="${EPREFIX}"/usr # useless, Build.PL will not invent 
/usr/lib64/ is the correct answer
-   perl-module_src_prepare
-}
-
-# is the below -rpath acceptable?
-# x86_64-pc-linux-gnu-gcc -shared -O2 -pipe -maes -mpclmul -mpopcnt -mavx 
-march=native -Wl,-O1 -Wl,--as-needed -o blib/arch/auto/Bio/DB/HTS/HTS.so 
lib/Bio/DB/HTS.o -L/usr/lib -Wl,-rpath,/usr/lib -lhts -lpthread -lz
-# x86_64-pc-linux-gnu-gcc -shared -O2 -pipe -maes -mpclmul -mpopcnt -mavx 
-march=native -Wl,-O1 -Wl,--as-needed -o 
blib/arch/auto/Bio/DB/HTS/Faidx/Faidx.so lib/Bio/DB/HTS/Faidx.o -L/usr/lib 
-Wl,-rpath,/usr/lib -lhts -lpthread -lz

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



[gentoo-commits] proj/sci:master commit in: dev-perl/Data-Types/

2020-09-21 Thread Aisha Tammy
commit: c6eb4d5b6cd6ddbf153a1a3d78cdedd5f9b151a8
Author: Aisha Tammy  aisha  cc>
AuthorDate: Mon Sep 21 23:59:06 2020 +
Commit: Aisha Tammy  aisha  cc>
CommitDate: Mon Sep 21 23:59:26 2020 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=c6eb4d5b

dev-perl/Data-Types: drop package

present in ::gentoo

Package-Manager: Portage-3.0.7, Repoman-3.0.1
Signed-off-by: Aisha Tammy  aisha.cc>

 dev-perl/Data-Types/Data-Types-0.09.ebuild | 23 ---
 dev-perl/Data-Types/metadata.xml   | 12 
 2 files changed, 35 deletions(-)

diff --git a/dev-perl/Data-Types/Data-Types-0.09.ebuild 
b/dev-perl/Data-Types/Data-Types-0.09.ebuild
deleted file mode 100644
index baccfdb2f..0
--- a/dev-perl/Data-Types/Data-Types-0.09.ebuild
+++ /dev/null
@@ -1,23 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-MODULE_AUTHOR="DWHEELER"
-inherit perl-module
-
-DESCRIPTION="Validate and convert data types"
-
-#LICENSE="|| ( Artistic GPL-1+ )"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-
-RDEPEND=""
-DEPEND="${RDEPEND}
-   dev-perl/Module-Build
-   test? (
-   virtual/perl-Test-Simple
-   dev-perl/Test-Distribution
-   dev-perl/Test-Pod
-   )"

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



[gentoo-commits] proj/sci:master commit in: dev-python/testpath/files/, dev-python/testpath/

2020-09-21 Thread Aisha Tammy
commit: 1146b55825d97aaae9c71c58ff6cd648479c4fec
Author: Aisha Tammy  aisha  cc>
AuthorDate: Mon Sep 21 23:47:35 2020 +
Commit: Aisha Tammy  aisha  cc>
CommitDate: Mon Sep 21 23:47:47 2020 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=1146b558

dev-python/testpath: drop package

present in ::gentoo

Package-Manager: Portage-3.0.7, Repoman-3.0.1
Signed-off-by: Aisha Tammy  aisha.cc>

 .../testpath/files/testpath-0.2-setup.py.patch | 28 
 dev-python/testpath/metadata.xml   | 14 --
 dev-python/testpath/testpath-.ebuild   | 53 --
 3 files changed, 95 deletions(-)

diff --git a/dev-python/testpath/files/testpath-0.2-setup.py.patch 
b/dev-python/testpath/files/testpath-0.2-setup.py.patch
deleted file mode 100644
index 1dc73e77a..0
--- a/dev-python/testpath/files/testpath-0.2-setup.py.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-Patch to bring back setup.py from
-https://github.com/jupyter/testpath/blob/086bd1bd1ec7da1b3dacfed1705c0c99fae231b3/setup.py
 /dev/null
-+++ b/setup.py
-@@ -0,0 +1,22 @@
-+from distutils.core import setup
-+
-+with open("README.rst", "r") as f:
-+readme = f.read()
-+
-+setup(name='testpath',
-+  version='0.3',
-+  description='Test utilities for code working with files and commands',
-+  long_description = readme,
-+  author='Thomas Kluyver',
-+  author_email='tho...@kluyver.me.uk',
-+  url='https://github.com/takluyver/testpath',
-+  packages=['testpath'],
-+  classifiers=[
-+  'Intended Audience :: Developers',
-+  'License :: OSI Approved :: MIT License',
-+  'Programming Language :: Python',
-+  'Programming Language :: Python :: 2',
-+  'Programming Language :: Python :: 3',
-+  'Topic :: Software Development :: Testing',
-+  ]
-+)
-\ No newline at end of file

diff --git a/dev-python/testpath/metadata.xml b/dev-python/testpath/metadata.xml
deleted file mode 100644
index 8129b08bc..0
--- a/dev-python/testpath/metadata.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   s...@gentoo.org
-   Gentoo Science Project
-   
-   
-Testpath is a collection of utilities for Python code working with
-files and commands. It contains functions to check things on the
-filesystem, and tools for mocking system commands and recording
-calls to those.
-
-

diff --git a/dev-python/testpath/testpath-.ebuild 
b/dev-python/testpath/testpath-.ebuild
deleted file mode 100644
index 70fcabfd1..0
--- a/dev-python/testpath/testpath-.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 python3_{4,5} )
-
-inherit distutils-r1 git-r3
-
-DESCRIPTION="Test utilities for code working with files and commands"
-HOMEPAGE="http://jupyter.org;
-EGIT_REPO_URI="https://github.com/jupyter/${PN}.git 
git://github.com/jupyter/${PN}.git"
-
-LICENSE="BSD"
-SLOT="0"
-IUSE="doc test"
-
-DEPEND="
-   test? (
-   dev-python/pytest[${PYTHON_USEDEP}]
-   virtual/python-pathlib[${PYTHON_USEDEP}]
-   )
-   doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
-   "
-
-PATCHES=(
-   "${FILESDIR}/${PN}"-0.2-setup.py.patch
-   )
-
-python_prepare_all() {
-   # Prevent un-needed download during build
-   if use doc; then
-   sed -e "/^'sphinx.ext.intersphinx',/d" -i doc/conf.py || die
-   fi
-
-distutils-r1_python_prepare_all
-}
-
-python_compile_all() {
-   use doc && emake -C doc html
-}
-
-python_install_all() {
-   use doc && HTML_DOCS=( doc/_build/html/. )
-   distutils-r1_python_install_all
-   }
-
-python_test() {
-   distutils_install_for_testing
-   cd "${TEST_DIR}"/lib || die
-   cp -r "${S}"/tests "${TEST_DIR}"/lib/ || die
-   py.test || die
-}



[gentoo-commits] proj/sci:master commit in: dev-python/widgetsnbextension/

2020-09-21 Thread Aisha Tammy
commit: 081b8a1947f1e24f53ad9eaebf262cb5f1f8c6c0
Author: Aisha Tammy  aisha  cc>
AuthorDate: Mon Sep 21 23:52:07 2020 +
Commit: Aisha Tammy  aisha  cc>
CommitDate: Mon Sep 21 23:52:17 2020 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=081b8a19

dev-python/widgetsnbextension: drop package

present in ::gentoo

Package-Manager: Portage-3.0.7, Repoman-3.0.1
Signed-off-by: Aisha Tammy  aisha.cc>

 dev-python/widgetsnbextension/metadata.xml | 14 -
 .../widgetsnbextension-1.2.2.ebuild| 23 --
 2 files changed, 37 deletions(-)

diff --git a/dev-python/widgetsnbextension/metadata.xml 
b/dev-python/widgetsnbextension/metadata.xml
deleted file mode 100644
index 3df0fc455..0
--- a/dev-python/widgetsnbextension/metadata.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   s...@gentoo.org
-   Gentoo Science Project
-   
-   
-Interactive HTML widgets for Jupyter notebooks.
-
-   
-   widgetsnbextension
-   
-

diff --git a/dev-python/widgetsnbextension/widgetsnbextension-1.2.2.ebuild 
b/dev-python/widgetsnbextension/widgetsnbextension-1.2.2.ebuild
deleted file mode 100644
index 637a642a4..0
--- a/dev-python/widgetsnbextension/widgetsnbextension-1.2.2.ebuild
+++ /dev/null
@@ -1,23 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 python3_{4,5} )
-PYTHON_REQ_USE="threads(+)"
-
-inherit distutils-r1
-
-DESCRIPTION="IPython HTML widgets for Jupyter"
-HOMEPAGE="http://ipython.org/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="
-   >=dev-python/notebook-4.2.0[${PYTHON_USEDEP}]
-   "
-DEPEND="${RDEPEND}"



[gentoo-commits] proj/sci:master commit in: dev-python/traitlets/

2020-09-21 Thread Aisha Tammy
commit: ec4b73d5a6c281791ea1135e41229533e007c28c
Author: Aisha Tammy  aisha  cc>
AuthorDate: Mon Sep 21 23:49:16 2020 +
Commit: Aisha Tammy  aisha  cc>
CommitDate: Mon Sep 21 23:49:28 2020 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=ec4b73d5

dev-python/traitlets: drop package

present in ::gentoo

Package-Manager: Portage-3.0.7, Repoman-3.0.1
Signed-off-by: Aisha Tammy  aisha.cc>

 dev-python/traitlets/metadata.xml  | 16 -
 dev-python/traitlets/traitlets-.ebuild | 53 --
 2 files changed, 69 deletions(-)

diff --git a/dev-python/traitlets/metadata.xml 
b/dev-python/traitlets/metadata.xml
deleted file mode 100644
index 3f68d9cc7..0
--- a/dev-python/traitlets/metadata.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   s...@gentoo.org
-   Gentoo Science Project
-   
-   
-A lightweight pure-Python derivative of Enthought Traits,
-used for configuring Python objects. This package powers
-the config system of IPython and Jupyter.
-
-   
-   ipython/traitlets
-   
-

diff --git a/dev-python/traitlets/traitlets-.ebuild 
b/dev-python/traitlets/traitlets-.ebuild
deleted file mode 100644
index 889a831f4..0
--- a/dev-python/traitlets/traitlets-.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 python3_{4,5} )
-
-inherit distutils-r1 git-r3
-
-DESCRIPTION="A configuration system for Python applications"
-HOMEPAGE="https://github.com/ipython/traitlets;
-EGIT_REPO_URI="https://github.com/ipython/${PN}.git 
git://github.com/ipython/${PN}.git"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS=""
-IUSE="doc test"
-
-RDEPEND="
-   dev-python/decorator[${PYTHON_USEDEP}]
-   dev-python/ipython_genutils[${PYTHON_USEDEP}]
-   "
-DEPEND="
-   doc? (
-   dev-python/ipython_genutils[${PYTHON_USEDEP}]
-   dev-python/sphinx[${PYTHON_USEDEP}]
-   )
-   test? (
-   dev-python/nose[${PYTHON_USEDEP}]
-   dev-python/coverage[${PYTHON_USEDEP}]
-   )"
-
-python_prepare_all() {
-   # Prevent un-needed download during build
-   if use doc; then
-   sed -e "/^'sphinx.ext.intersphinx',/d" -i 
docs/source/conf.py || die
-   fi
-
-   distutils-r1_python_prepare_all
-}
-
-python_compile_all() {
-   use doc && emake -C docs html
-}
-
-python_test() {
-   nosetests --with-coverage --cover-package traitlets traitlets || die
-}
-
-python_install_all() {
-   use doc && HTML_DOCS=( docs/build/html/. )
-   distutils-r1_python_install_all
-}



[gentoo-commits] proj/sci:master commit in: dev-python/symengine/

2020-09-21 Thread Aisha Tammy
commit: b7c615affa59620ec423dd141308a18cd3ef47e5
Author: Aisha Tammy  aisha  cc>
AuthorDate: Mon Sep 21 23:46:25 2020 +
Commit: Aisha Tammy  aisha  cc>
CommitDate: Mon Sep 21 23:46:38 2020 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=b7c615af

dev-python/symengine: drop package

present in ::gentoo

Package-Manager: Portage-3.0.7, Repoman-3.0.1
Signed-off-by: Aisha Tammy  aisha.cc>

 dev-python/symengine/metadata.xml  | 15 ---
 dev-python/symengine/symengine-.ebuild | 31 --
 2 files changed, 46 deletions(-)

diff --git a/dev-python/symengine/metadata.xml 
b/dev-python/symengine/metadata.xml
deleted file mode 100644
index e8f764b63..0
--- a/dev-python/symengine/metadata.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   mschu@gmail.com
-   Michael Schubert
-   
-   
-   sci-mathemat...@gentoo.org
-   Gentoo Mathematics Project
-   
-   
-   sympy/symengine.py
-   
-

diff --git a/dev-python/symengine/symengine-.ebuild 
b/dev-python/symengine/symengine-.ebuild
deleted file mode 100644
index 3d2a11f2c..0
--- a/dev-python/symengine/symengine-.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python{2_7,3_4,3_5} )
-
-inherit distutils-r1 git-r3
-
-DESCRIPTION="Python wrappers to the symengine C++ library"
-HOMEPAGE="https://github.com/sympy/symengine.py;
-SRC_URI=""
-EGIT_REPO_URI="https://github.com/symengine/symengine.py.git;
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-
-RDEPEND="
-   dev-python/numpy[${PYTHON_USEDEP}]
-   =sci-libs/symengine-"
-DEPEND="${RDEPEND}
-   dev-python/cython[${PYTHON_USEDEP}]
-   dev-python/setuptools[${PYTHON_USEDEP}]"
-
-# if this is not set python2 .so is linked to python3
-DISTUTILS_IN_SOURCE_BUILD=1
-
-python_install_all() {
-   newdoc README.md ${PN}_py.md
-}



[gentoo-commits] proj/sci:master commit in: dev-python/qtconsole/

2020-09-21 Thread Aisha Tammy
commit: 0625004437556e5da77f1ef9ef032ddf3b33dd35
Author: Aisha Tammy  aisha  cc>
AuthorDate: Mon Sep 21 23:44:51 2020 +
Commit: Aisha Tammy  aisha  cc>
CommitDate: Mon Sep 21 23:45:05 2020 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=06250044

dev-python/qtconsole: drop package

present in ::gentoo

Package-Manager: Portage-3.0.7, Repoman-3.0.1
Signed-off-by: Aisha Tammy  aisha.cc>

 dev-python/qtconsole/metadata.xml  | 12 --
 dev-python/qtconsole/qtconsole-.ebuild | 67 --
 2 files changed, 79 deletions(-)

diff --git a/dev-python/qtconsole/metadata.xml 
b/dev-python/qtconsole/metadata.xml
deleted file mode 100644
index d90e4df14..0
--- a/dev-python/qtconsole/metadata.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   s...@gentoo.org
-   Gentoo Science Project
-   
-   
-A rich Qt-based console for working with Jupyter kernels,
-supporting rich media output, session export, and more.
-
-

diff --git a/dev-python/qtconsole/qtconsole-.ebuild 
b/dev-python/qtconsole/qtconsole-.ebuild
deleted file mode 100644
index 6d023675b..0
--- a/dev-python/qtconsole/qtconsole-.ebuild
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 python3_{4,5} )
-PYTHON_REQ_USE="threads(+)"
-
-inherit distutils-r1 git-r3
-
-DESCRIPTION="Qt-based console for Jupyter with support for rich media output"
-HOMEPAGE="http://jupyter.org;
-EGIT_REPO_URI="https://github.com/jupyter/${PN}.git 
git://github.com/jupyter/${PN}.git"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS=""
-IUSE="doc test"
-
-RDEPEND="
-   dev-python/ipykernel[${PYTHON_USEDEP}]
-   >=dev-python/jupyter_client-4.1.1[${PYTHON_USEDEP}]
-   "
-DEPEND="${RDEPEND}
-   doc? (
-   >=dev-python/ipython-4.0.0-r2[${PYTHON_USEDEP}]
-   >=dev-python/sphinx-1.3.1-r1[${PYTHON_USEDEP}]
-   )
-   test? (
-   >=dev-python/nose-0.10.1[${PYTHON_USEDEP}]
-   )
-   || (
-   dev-python/pyside[${PYTHON_USEDEP},svg]
-   dev-python/PyQt4[${PYTHON_USEDEP},svg]
-   dev-python/PyQt5[${PYTHON_USEDEP},svg]
-   )
-   dev-python/pygments[${PYTHON_USEDEP}]
-   >=dev-python/pyzmq-13[${PYTHON_USEDEP}]
-   "
-PDEPEND="dev-python/ipython[${PYTHON_USEDEP}]"
-
-python_prepare_all() {
-   # Prevent un-needed download during build
-   if use doc; then
-   sed -e "/^'sphinx.ext.intersphinx',/d" -i 
docs/source/conf.py || die
-   fi
-
-   distutils-r1_python_prepare_all
-}
-
-python_compile_all() {
-   use doc && emake -C docs html
-}
-
-python_test() {
-   # jupyter qtconsole --generate-config ... jupyter-qtconsole: cannot 
connect to X server
-   # ERROR
-   sed \
-   -e 's:test_generate_config:_&:g' \
-   -i qtconsole/tests/test_app.py || die
-   virtx nosetests --verbosity=2 qtconsole
-}
-
-python_install_all() {
-   use doc && HTML_DOCS=( docs/build/html/. )
-   distutils-r1_python_install_all
-}



[gentoo-commits] proj/sci:master commit in: dev-python/ptyprocess/

2020-09-21 Thread Aisha Tammy
commit: 859b567d79daf1f1132ddfe5cd5931ffa24e2d7b
Author: Aisha Tammy  aisha  cc>
AuthorDate: Mon Sep 21 23:42:30 2020 +
Commit: Aisha Tammy  aisha  cc>
CommitDate: Mon Sep 21 23:42:51 2020 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=859b567d

dev-python/ptyprocess: drop old package

present in ::gentoo

Package-Manager: Portage-3.0.7, Repoman-3.0.1
Signed-off-by: Aisha Tammy  aisha.cc>

 dev-python/ptyprocess/metadata.xml   | 11 ---
 dev-python/ptyprocess/ptyprocess-.ebuild | 24 
 2 files changed, 35 deletions(-)

diff --git a/dev-python/ptyprocess/metadata.xml 
b/dev-python/ptyprocess/metadata.xml
deleted file mode 100644
index 33094cdb7..0
--- a/dev-python/ptyprocess/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   s...@gentoo.org
-   Gentoo Science Project
-   
-   
-   pexpect/ptyprocess
-   
-

diff --git a/dev-python/ptyprocess/ptyprocess-.ebuild 
b/dev-python/ptyprocess/ptyprocess-.ebuild
deleted file mode 100644
index 73da68ab7..0
--- a/dev-python/ptyprocess/ptyprocess-.ebuild
+++ /dev/null
@@ -1,24 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 python3_{4,5} )
-
-inherit distutils-r1 git-r3
-
-DESCRIPTION="Run a subprocess in a pseudo terminal"
-HOMEPAGE="https://github.com/pexpect/ptyprocess;
-SRC_URI=""
-EGIT_REPO_URI="https://github.com/pexpect/${PN}.git 
git://github.com/pexpect/${PN}.git"
-
-LICENSE="ISC"
-SLOT="0"
-KEYWORDS=""
-IUSE="test"
-
-DEPEND="test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
-
-python_test() {
-   py.test --verbose --verbose || die
-}



[gentoo-commits] proj/sci:master commit in: dev-python/pickleshare/

2020-09-21 Thread Aisha Tammy
commit: 7ade6038cc6267b433f9b5ce9c419e7fbd9aa445
Author: Aisha Tammy  aisha  cc>
AuthorDate: Mon Sep 21 23:41:21 2020 +
Commit: Aisha Tammy  aisha  cc>
CommitDate: Mon Sep 21 23:41:33 2020 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=7ade6038

dev-python/pickleshare: drop package

present in ::gentoo

Package-Manager: Portage-3.0.7, Repoman-3.0.1
Signed-off-by: Aisha Tammy  aisha.cc>

 dev-python/pickleshare/metadata.xml| 20 --
 dev-python/pickleshare/pickleshare-.ebuild | 29 --
 2 files changed, 49 deletions(-)

diff --git a/dev-python/pickleshare/metadata.xml 
b/dev-python/pickleshare/metadata.xml
deleted file mode 100644
index 4898921bd..0
--- a/dev-python/pickleshare/metadata.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   s...@gentoo.org
-   Gentoo Science Project
-   
-   
-Like shelve, a PickleShareDB object acts like a normal dictionary.
-Unlike shelve, many processes can access the database
-simultaneously. Changing a value in database is immediately visible
-to other processes accessing the same database.
-Concurrency is possible because the values are stored in separate
-files. Hence the "database" is a directory where all files are
-governed by PickleShare.
-
-   
-   pickleshare/pickleshare
-   
-

diff --git a/dev-python/pickleshare/pickleshare-.ebuild 
b/dev-python/pickleshare/pickleshare-.ebuild
deleted file mode 100644
index 95306c174..0
--- a/dev-python/pickleshare/pickleshare-.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 python3_{4,5} )
-
-inherit distutils-r1 git-r3
-
-DESCRIPTION="A small 'shelve' like datastore with concurrency support"
-HOMEPAGE="https://github.com/pickleshare/pickleshare;
-EGIT_REPO_URI="https://github.com/${PN}/${PN}.git 
git://github.com/${PN}/${PN}.git"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS=""
-IUSE="test"
-
-RDEPEND="
-   dev-python/path-py[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
-   test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
-
-python_test() {
-   distutils_install_for_testing
-   cd "${TEST_DIR}"/lib || die
-   cp "${S}"/test_pickleshare.py "${TEST_DIR}"/lib/ || die
-   py.test || die
-}



[gentoo-commits] proj/sci:master commit in: dev-python/nbformat/

2020-09-21 Thread Aisha Tammy
commit: cff5710de6fd6df9a8300da5e12c9ead2e216f10
Author: Aisha Tammy  aisha  cc>
AuthorDate: Mon Sep 21 23:39:58 2020 +
Commit: Aisha Tammy  aisha  cc>
CommitDate: Mon Sep 21 23:40:10 2020 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=cff5710d

dev-python/nbformat: drop package

present in ::gentoo

Package-Manager: Portage-3.0.7, Repoman-3.0.1
Signed-off-by: Aisha Tammy  aisha.cc>

 dev-python/nbformat/metadata.xml | 14 
 dev-python/nbformat/nbformat-.ebuild | 59 
 2 files changed, 73 deletions(-)

diff --git a/dev-python/nbformat/metadata.xml b/dev-python/nbformat/metadata.xml
deleted file mode 100644
index 0bd1894f0..0
--- a/dev-python/nbformat/metadata.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   s...@gentoo.org
-   Gentoo Science Project
-   
-   
-Jupyther nbformat contains the reference implementation of the
-Jupyter Notebook format, and Python APIs for working with
-notebooks. There is also a JSON schema for notebook format
-versions = 3.
-
-

diff --git a/dev-python/nbformat/nbformat-.ebuild 
b/dev-python/nbformat/nbformat-.ebuild
deleted file mode 100644
index 9549f6909..0
--- a/dev-python/nbformat/nbformat-.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 python3_{4,5} )
-PYTHON_REQ_USE='sqlite'
-
-inherit distutils-r1 git-r3
-
-DESCRIPTION="Reference implementation of the Jupyter Notebook format"
-HOMEPAGE="http://jupyter.org;
-EGIT_REPO_URI="https://github.com/jupyter/${PN}.git 
git://github.com/jupyter/${PN}.git"
-
-LICENSE="BSD"
-SLOT="0"
-IUSE="doc test"
-
-RDEPEND="
-   >=dev-python/jsonschema-2.4.0[${PYTHON_USEDEP}]
-   dev-python/ipython_genutils[${PYTHON_USEDEP}]
-   >=dev-python/traitlets-4.1[${PYTHON_USEDEP}]
-   dev-python/jupyter_core[${PYTHON_USEDEP}]
-   "
-DEPEND="${RDEPEND}
-   doc? (
-   dev-python/sphinx[${PYTHON_USEDEP}]
-   dev-python/numpydoc[${PYTHON_USEDEP}]
-   )
-   test? (
-   dev-python/testpath[${PYTHON_USEDEP}]
-   dev-python/pytest[${PYTHON_USEDEP}]
-   dev-python/pytest-cov[${PYTHON_USEDEP}]
-   )
-   "
-
-python_prepare_all() {
-   # Prevent un-needed download during build
-   if use doc; then
-   sed -e "/^'sphinx.ext.intersphinx',/d" -i docs/conf.py || 
die
-   fi
-
-   distutils-r1_python_prepare_all
-}
-
-python_compile_all() {
-   use doc && emake -C docs html
-}
-
-python_test() {
-   distutils_install_for_testing
-   cd "${TEST_DIR}"/lib || die
-   py.test -v --cov nbformat nbformat || die
-}
-
-python_install_all() {
-   use doc && HTML_DOCS=( docs/_build/html/. )
-   distutils-r1_python_install_all
-}



[gentoo-commits] proj/sci:master commit in: dev-python/nbdime/

2020-09-21 Thread Aisha Tammy
commit: 797f08a283304cc8eea78ca3acdd1026f9f03078
Author: Aisha Tammy  aisha  cc>
AuthorDate: Mon Sep 21 23:37:52 2020 +
Commit: Aisha Tammy  aisha  cc>
CommitDate: Mon Sep 21 23:39:01 2020 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=797f08a2

dev-python/nbdime: drop package

present in ::gentoo

Package-Manager: Portage-3.0.7, Repoman-3.0.1
Signed-off-by: Aisha Tammy  aisha.cc>

 dev-python/nbdime/metadata.xml   | 20 --
 dev-python/nbdime/nbdime-.ebuild | 53 
 2 files changed, 73 deletions(-)

diff --git a/dev-python/nbdime/metadata.xml b/dev-python/nbdime/metadata.xml
deleted file mode 100644
index b3a30b1ae..0
--- a/dev-python/nbdime/metadata.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   mar...@linux.sungazer.de
-   Marius Brehler
-   
-   
-   s...@gentoo.org
-   Gentoo Science Project
-   
-   
-nbdime provides tools for diffing and merging of Jupyter Notebooks.
-
-   
-   
-Install web-based diff and merge tools.
-
-   
-

diff --git a/dev-python/nbdime/nbdime-.ebuild 
b/dev-python/nbdime/nbdime-.ebuild
deleted file mode 100644
index 65e00672d..0
--- a/dev-python/nbdime/nbdime-.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python3_6 )
-
-inherit distutils-r1 git-r3
-
-DESCRIPTION="Diff and merge of Jupyter Notebooks"
-HOMEPAGE="http://jupyter.org;
-EGIT_REPO_URI="https://github.com/jupyter/${PN}.git;
-
-LICENSE="BSD"
-SLOT="0"
-IUSE="test webtools"
-
-RDEPEND="
-   dev-python/nbformat[${PYTHON_USEDEP}]
-   dev-python/six[${PYTHON_USEDEP}]
-   dev-python/colorama[${PYTHON_USEDEP}]
-   dev-python/requests[${PYTHON_USEDEP}]
-   www-servers/tornado[${PYTHON_USEDEP}]
-   webtools? ( net-libs/nodejs[npm] )
-   "
-DEPEND="${RDEPEND}
-   test? (
-   dev-python/pytest[${PYTHON_USEDEP}]
-   dev-python/pytest-cov[${PYTHON_USEDEP}]
-   dev-python/pytest-timeout[${PYTHON_USEDEP}]
-   dev-python/jsonschema[${PYTHON_USEDEP}]
-   dev-python/mock[${PYTHON_USEDEP}]
-   dev-python/requests[${PYTHON_USEDEP}]
-   )
-   "
-# The package recommonmark is required to build the docs, not in portage yet.
-# Furthermore, backports.shutil_which is required for python2_7.
-
-python_configure_all() {
-   if ! use webtools; then
-   mydistutilsargs=( --skip-npm )
-   fi
-}
-
-python_test() {
-   # user.email and user.name are not configured in the sandbox.
-   git config --global user.email "y...@example.com" || die
-   git config --global user.name "Your Name" || die
-
-   distutils_install_for_testing
-
-   py.test -l || die
-}



[gentoo-commits] proj/sci:master commit in: dev-python/nbconvert/

2020-09-21 Thread Aisha Tammy
commit: 4ccb601efe1c0350ca7507cf4291011ab21d99e3
Author: Aisha Tammy  aisha  cc>
AuthorDate: Mon Sep 21 23:36:51 2020 +
Commit: Aisha Tammy  aisha  cc>
CommitDate: Mon Sep 21 23:37:03 2020 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=4ccb601e

dev-python/nbconvert: drop package

present in ::gentoo

Package-Manager: Portage-3.0.7, Repoman-3.0.1
Signed-off-by: Aisha Tammy  aisha.cc>

 dev-python/nbconvert/metadata.xml  | 12 -
 dev-python/nbconvert/nbconvert-.ebuild | 71 --
 2 files changed, 83 deletions(-)

diff --git a/dev-python/nbconvert/metadata.xml 
b/dev-python/nbconvert/metadata.xml
deleted file mode 100644
index 5e646a7e0..0
--- a/dev-python/nbconvert/metadata.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   s...@gentoo.org
-   Gentoo Science Project
-   
-   
-Jupyter NBConvert converts Jupyter notebooks to various other
-formats via Jinja templates.
-
-

diff --git a/dev-python/nbconvert/nbconvert-.ebuild 
b/dev-python/nbconvert/nbconvert-.ebuild
deleted file mode 100644
index f2c7c93bd..0
--- a/dev-python/nbconvert/nbconvert-.ebuild
+++ /dev/null
@@ -1,71 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 python3_{4,5} )
-
-inherit distutils-r1 git-r3
-
-DESCRIPTION="Converting Jupyter Notebooks"
-HOMEPAGE="http://jupyter.org;
-EGIT_REPO_URI="https://github.com/jupyter/${PN}.git 
git://github.com/jupyter/${PN}.git"
-
-LICENSE="BSD"
-SLOT="0"
-IUSE="doc test"
-
-RDEPEND="
-   dev-python/jupyter_core[${PYTHON_USEDEP}]
-   dev-python/nbformat[${PYTHON_USEDEP}]
-   dev-python/mistune[${PYTHON_USEDEP}]
-   dev-python/jinja[${PYTHON_USEDEP}]
-   dev-python/pygments[${PYTHON_USEDEP}]
-   dev-python/traitlets[${PYTHON_USEDEP}]
-   dev-python/entrypoints[${PYTHON_USEDEP}]
-   "
-DEPEND="${RDEPEND}
-   doc? (
-   dev-python/ipython[${PYTHON_USEDEP}]
-   dev-python/jupyter_client[${PYTHON_USEDEP}]
-   dev-python/sphinx[${PYTHON_USEDEP}]
-   app-text/pandoc
-   )
-   test? (
-   dev-python/nose[${PYTHON_USEDEP}]
-   dev-python/coverage[${PYTHON_USEDEP}]
-   dev-python/ipykernel[${PYTHON_USEDEP}]
-   )
-   "
-
-python_prepare_all() {
-   # Prevent un-needed download during build
-   if use doc; then
-   sed -e "/^'sphinx.ext.intersphinx',/d" -i 
docs/source/conf.py || die
-   fi
-
-   distutils-r1_python_prepare_all
-}
-
-python_compile_all() {
-   use doc && emake -C docs html
-}
-
-python_test() {
-   distutils_install_for_testing
-   cd "${TEST_DIR}"/lib || die
-   nosetests --with-coverage --cover-package=nbconvert nbconvert || die
-}
-
-python_install_all() {
-   use doc && HTML_DOCS=( docs/build/html/. )
-   distutils-r1_python_install_all
-}
-
-pkg_postinst() {
-   if ! has_version app-text/pandoc ; then
-   einfo "Pandoc is required for converting to formats other than 
Python,"
-   einfo "HTML, and Markdown. If you need this functionality, 
install"
-   einfo "app-text/pandoc."
-   fi
-}



[gentoo-commits] proj/sci:master commit in: dev-python/metakernel/

2020-09-21 Thread Aisha Tammy
commit: a3121e9e9dde924e77bb7d9dcc5ccd760651d8a2
Author: Aisha Tammy  aisha  cc>
AuthorDate: Mon Sep 21 23:35:33 2020 +
Commit: Aisha Tammy  aisha  cc>
CommitDate: Mon Sep 21 23:35:48 2020 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=a3121e9e

dev-python/metakernel: drop package

present in ::gentoo

Package-Manager: Portage-3.0.7, Repoman-3.0.1
Signed-off-by: Aisha Tammy  aisha.cc>

 dev-python/metakernel/metadata.xml | 17 
 dev-python/metakernel/metakernel-0.12.2.ebuild | 37 --
 dev-python/metakernel/metakernel-0.12.6.ebuild | 37 --
 dev-python/metakernel/metakernel-0.18.4.ebuild | 37 --
 4 files changed, 128 deletions(-)

diff --git a/dev-python/metakernel/metadata.xml 
b/dev-python/metakernel/metadata.xml
deleted file mode 100644
index 1a16e93ec..0
--- a/dev-python/metakernel/metadata.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   s...@gentoo.org
-   Gentoo Science Project
-   
-   
-A Jupyter/IPython kernel template which includes core magic
-functions (including help, command and file path completion,
-parallel and distributed processing, downloads, and much more).
-
-   
-   Calysto/metakernel
-   metakernel
-   
-

diff --git a/dev-python/metakernel/metakernel-0.12.2.ebuild 
b/dev-python/metakernel/metakernel-0.12.2.ebuild
deleted file mode 100644
index c89a49abb..0
--- a/dev-python/metakernel/metakernel-0.12.2.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python{2_7,3_{4,5}} )
-
-inherit distutils-r1
-
-DESCRIPTION="Metakernel for Jupyter"
-HOMEPAGE="https://github.com/Calysto/metakernel;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-IUSE="test"
-KEYWORDS="~amd64"
-
-RDEPEND="
-   >=dev-python/ipython-3.0[${PYTHON_USEDEP}]
-   "
-DEPEND="${RDEPEND}
-   test? (
-   dev-python/nose[${PYTHON_USEDEP}]
-   dev-python/coverage[${PYTHON_USEDEP}]
-   >=dev-python/metakernel_python-0.11.3[${PYTHON_USEDEP}]
-   )
-"
-
-# tests currently fail and the dying/stopping of ipcluster needs to be fixed
-RESTRICT="test"
-
-python_test() {
-   ipcluster start -n=3 &
-   nosetests --with-doctest --with-coverage --cover-package metakernel || 
die
-   ipcluster stop
-}

diff --git a/dev-python/metakernel/metakernel-0.12.6.ebuild 
b/dev-python/metakernel/metakernel-0.12.6.ebuild
deleted file mode 100644
index c89a49abb..0
--- a/dev-python/metakernel/metakernel-0.12.6.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python{2_7,3_{4,5}} )
-
-inherit distutils-r1
-
-DESCRIPTION="Metakernel for Jupyter"
-HOMEPAGE="https://github.com/Calysto/metakernel;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-IUSE="test"
-KEYWORDS="~amd64"
-
-RDEPEND="
-   >=dev-python/ipython-3.0[${PYTHON_USEDEP}]
-   "
-DEPEND="${RDEPEND}
-   test? (
-   dev-python/nose[${PYTHON_USEDEP}]
-   dev-python/coverage[${PYTHON_USEDEP}]
-   >=dev-python/metakernel_python-0.11.3[${PYTHON_USEDEP}]
-   )
-"
-
-# tests currently fail and the dying/stopping of ipcluster needs to be fixed
-RESTRICT="test"
-
-python_test() {
-   ipcluster start -n=3 &
-   nosetests --with-doctest --with-coverage --cover-package metakernel || 
die
-   ipcluster stop
-}

diff --git a/dev-python/metakernel/metakernel-0.18.4.ebuild 
b/dev-python/metakernel/metakernel-0.18.4.ebuild
deleted file mode 100644
index c89a49abb..0
--- a/dev-python/metakernel/metakernel-0.18.4.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python{2_7,3_{4,5}} )
-
-inherit distutils-r1
-
-DESCRIPTION="Metakernel for Jupyter"
-HOMEPAGE="https://github.com/Calysto/metakernel;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-IUSE="test"
-KEYWORDS="~amd64"
-
-RDEPEND="
-   >=dev-python/ipython-3.0[${PYTHON_USEDEP}]
-   "
-DEPEND="${RDEPEND}
-   test? (
-   dev-python/nose[${PYTHON_USEDEP}]
-   dev-python/coverage[${PYTHON_USEDEP}]
-   >=dev-python/metakernel_python-0.11.3[${PYTHON_USEDEP}]
-   )
-"
-
-# tests currently fail and the dying/stopping of ipcluster needs to be fixed
-RESTRICT="test"
-
-python_test() {
-   ipcluster start -n=3 &
-   nosetests --with-doctest --with-coverage --cover-package metakernel || 
die
-   ipcluster stop
-}



[gentoo-commits] proj/sci:master commit in: dev-python/ipywidgets/

2020-09-21 Thread Aisha Tammy
commit: 6e17b41f7cf516b4228a51a868a3221ce3adb9e8
Author: Aisha Tammy  aisha  cc>
AuthorDate: Mon Sep 21 23:27:45 2020 +
Commit: Aisha Tammy  aisha  cc>
CommitDate: Mon Sep 21 23:27:59 2020 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=6e17b41f

dev-python/ipywidgets: drop old package

present in ::gentoo

Package-Manager: Portage-3.0.7, Repoman-3.0.1
Signed-off-by: Aisha Tammy  aisha.cc>

 dev-python/ipywidgets/ipywidgets-4.1.1.ebuild | 36 --
 dev-python/ipywidgets/ipywidgets-.ebuild  | 37 ---
 dev-python/ipywidgets/metadata.xml| 15 ---
 3 files changed, 88 deletions(-)

diff --git a/dev-python/ipywidgets/ipywidgets-4.1.1.ebuild 
b/dev-python/ipywidgets/ipywidgets-4.1.1.ebuild
deleted file mode 100644
index 5497fcc79..0
--- a/dev-python/ipywidgets/ipywidgets-4.1.1.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 python3_{4,5} )
-PYTHON_REQ_USE="threads(+)"
-
-inherit distutils-r1
-
-DESCRIPTION="IPython HTML widgets for Jupyter"
-HOMEPAGE="http://ipython.org/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-
-RDEPEND="
-   dev-python/traitlets[${PYTHON_USEDEP}]
-   dev-python/ipykernel[${PYTHON_USEDEP}]
-   "
-DEPEND="${RDEPEND}
-   test? (
-   $(python_gen_cond_dep 'dev-python/mock[${PYTHON_USEDEP}]' 
python2_7)
-   dev-python/nose[${PYTHON_USEDEP}]
-   dev-python/coverage[${PYTHON_USEDEP}]
-   )
-   "
-
-python_test() {
-   nosetests --with-coverage --cover-package=ipywidgets ipywidgets || die
-
-   "${PYTHON}" -m ipywidgets.jstest || die
-}

diff --git a/dev-python/ipywidgets/ipywidgets-.ebuild 
b/dev-python/ipywidgets/ipywidgets-.ebuild
deleted file mode 100644
index c32dbb3e1..0
--- a/dev-python/ipywidgets/ipywidgets-.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 python3_{4,5} )
-PYTHON_REQ_USE="threads(+)"
-
-inherit distutils-r1 git-r3
-
-DESCRIPTION="IPython HTML widgets for Jupyter"
-HOMEPAGE="http://ipython.org/;
-EGIT_REPO_URI="https://github.com/ipython/${PN}.git 
git://github.com/ipython/${PN}.git"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS=""
-IUSE="test"
-
-RDEPEND="
-   >=dev-python/traitlets-4.2.0[${PYTHON_USEDEP}]
-   >=dev-python/ipykernel-4.2.2[${PYTHON_USEDEP}]
-   >=dev-python/widgetsnbextension-1.2.3[${PYTHON_USEDEP}]
-   "
-DEPEND="${RDEPEND}
-   test? (
-   $(python_gen_cond_dep 'dev-python/mock[${PYTHON_USEDEP}]' 
python2_7)
-   dev-python/nose[${PYTHON_USEDEP}]
-   dev-python/coverage[${PYTHON_USEDEP}]
-   )
-   "
-
-python_test() {
-   nosetests --with-coverage --cover-package=ipywidgets ipywidgets || die
-
-   "${PYTHON}" -m ipywidgets.jstest || die
-}

diff --git a/dev-python/ipywidgets/metadata.xml 
b/dev-python/ipywidgets/metadata.xml
deleted file mode 100644
index 0349df8c5..0
--- a/dev-python/ipywidgets/metadata.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   s...@gentoo.org
-   Gentoo Science Project
-   
-   
-Interactive HTML widgets for Jupyter notebooks and the IPython
-kernel.
-
-   
-   ipywidgets
-   
-



[gentoo-commits] proj/sci:master commit in: dev-python/ipython_genutils/

2020-09-21 Thread Aisha Tammy
commit: ef5a895d4e55fcb11b0acb472ab0b8f9d6ba5b02
Author: Aisha Tammy  aisha  cc>
AuthorDate: Mon Sep 21 23:25:47 2020 +
Commit: Aisha Tammy  aisha  cc>
CommitDate: Mon Sep 21 23:26:00 2020 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=ef5a895d

dev-python/ipython_genutils: drop old package

present in ::gentoo

Package-Manager: Portage-3.0.7, Repoman-3.0.1
Signed-off-by: Aisha Tammy  aisha.cc>

 .../ipython_genutils/ipython_genutils-.ebuild  | 28 --
 dev-python/ipython_genutils/metadata.xml   | 17 -
 2 files changed, 45 deletions(-)

diff --git a/dev-python/ipython_genutils/ipython_genutils-.ebuild 
b/dev-python/ipython_genutils/ipython_genutils-.ebuild
deleted file mode 100644
index 807e4588a..0
--- a/dev-python/ipython_genutils/ipython_genutils-.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 python3_{4,5} )
-
-inherit distutils-r1 git-r3
-
-DESCRIPTION="Vestigial utilities from IPython"
-HOMEPAGE="https://github.com/ipython/ipython_genutils;
-EGIT_REPO_URI="https://github.com/ipython/${PN}.git 
git://github.com/ipython/${PN}.git"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS=""
-IUSE="test"
-
-DEPEND="
-   test? (
-   dev-python/nose[${PYTHON_USEDEP}]
-   dev-python/coverage[${PYTHON_USEDEP}]
-   )
-   "
-
-python_test() {
-   nosetests --with-coverage --cover-package=ipython_genutils 
ipython_genutils || die
-}

diff --git a/dev-python/ipython_genutils/metadata.xml 
b/dev-python/ipython_genutils/metadata.xml
deleted file mode 100644
index 05e43b726..0
--- a/dev-python/ipython_genutils/metadata.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   s...@gentoo.org
-   Gentoo Science Project
-   
-   
-This package contains some common utilities shared by Jupyter and
-IPython projects during The Big Split. As soon as possible, those
-packages will remove their dependency on this, and this repo will
-go away. No packages outside IPython/Jupyter should depend on it.
-
-   
-   ipython/ipython_genutils
-   
-



[gentoo-commits] proj/sci:master commit in: dev-python/ipyparallel/

2020-09-21 Thread Aisha Tammy
commit: 827ea18c4af596bfe36d26412fb59b766d4c5298
Author: Aisha Tammy  aisha  cc>
AuthorDate: Mon Sep 21 23:22:17 2020 +
Commit: Aisha Tammy  aisha  cc>
CommitDate: Mon Sep 21 23:22:28 2020 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=827ea18c

dev-python/ipyparallel: drop package

present in ::gentoo

Package-Manager: Portage-3.0.7, Repoman-3.0.1
Signed-off-by: Aisha Tammy  aisha.cc>

 dev-python/ipyparallel/ipyparallel-.ebuild | 60 --
 dev-python/ipyparallel/metadata.xml| 12 --
 2 files changed, 72 deletions(-)

diff --git a/dev-python/ipyparallel/ipyparallel-.ebuild 
b/dev-python/ipyparallel/ipyparallel-.ebuild
deleted file mode 100644
index 90da1d810..0
--- a/dev-python/ipyparallel/ipyparallel-.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 python3_{4,5} )
-PYTHON_REQ_USE="threads(+)"
-
-inherit distutils-r1 git-r3
-
-DESCRIPTION="Interactive Parallel Computing with IPython"
-HOMEPAGE="http://ipython.org/;
-EGIT_REPO_URI="https://github.com/ipython/${PN}.git 
git://github.com/ipython/${PN}.git"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS=""
-IUSE="doc test"
-
-RDEPEND="
-   dev-python/ipython_genutils[${PYTHON_USEDEP}]
-   dev-python/decorator[${PYTHON_USEDEP}]
-   >=dev-python/pyzmq-14.4.0[${PYTHON_USEDEP}]
-   dev-python/ipykernel[${PYTHON_USEDEP}]
-   !=dev-python/ipython-4.0.0[${PYTHON_USEDEP}]
-   dev-python/notebook[${PYTHON_USEDEP}]
-   dev-python/jupyter_client[${PYTHON_USEDEP}]
-   www-servers/tornado[${PYTHON_USEDEP}]
-   "
-DEPEND="${RDEPEND}
-   doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
-   test? (
-   dev-python/mock[${PYTHON_USEDEP}]
-   dev-python/nose[${PYTHON_USEDEP}]
-   dev-python/requests[${PYTHON_USEDEP}]
-   )
-   "
-
-python_prepare_all() {
-   # Prevent un-needed download during build
-   if use doc; then
-   sed -e "/^'sphinx.ext.intersphinx',/d" -i 
docs/source/conf.py || die
-   fi
-
-   distutils-r1_python_prepare_all
-}
-
-python_compile_all() {
-   use doc && emake -C docs html
-}
-
-python_test() {
-   iptest ipyparallel.tests -- -vsx || die
-}
-
-python_install_all() {
-   use doc && HTML_DOCS=( docs/build/html/. )
-   distutils-r1_python_install_all
-}

diff --git a/dev-python/ipyparallel/metadata.xml 
b/dev-python/ipyparallel/metadata.xml
deleted file mode 100644
index 1d9e7c2d3..0
--- a/dev-python/ipyparallel/metadata.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   s...@gentoo.org
-   Gentoo Science Project
-   
-   
-Interactive Parallel Computing with IPython.
-ipyparallel is the new home of IPython.parallel.
-
-



[gentoo-commits] proj/sci:master commit in: dev-python/notebook/

2020-09-21 Thread Aisha Tammy
commit: 71dec575da742097d317d96b8b000cc74a3f6e4f
Author: Aisha Tammy  aisha  cc>
AuthorDate: Mon Sep 21 23:08:59 2020 +
Commit: Aisha Tammy  aisha  cc>
CommitDate: Mon Sep 21 23:09:08 2020 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=71dec575

dev-python/notebook: drop package

present in ::gentoo

Package-Manager: Portage-3.0.7, Repoman-3.0.1
Signed-off-by: Aisha Tammy  aisha.cc>

 dev-python/notebook/metadata.xml  | 15 -
 dev-python/notebook/notebook-4.0.6.ebuild | 91 ---
 dev-python/notebook/notebook-.ebuild  | 90 --
 3 files changed, 196 deletions(-)

diff --git a/dev-python/notebook/metadata.xml b/dev-python/notebook/metadata.xml
deleted file mode 100644
index 9b08c7c0f..0
--- a/dev-python/notebook/metadata.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   s...@gentoo.org
-   Gentoo Science Project
-   
-   
-The Jupyter HTML notebook is a web-based notebook environment
-for interactive computing.
-
-   
-   notebook
-   
-

diff --git a/dev-python/notebook/notebook-4.0.6.ebuild 
b/dev-python/notebook/notebook-4.0.6.ebuild
deleted file mode 100644
index c704eaf44..0
--- a/dev-python/notebook/notebook-4.0.6.ebuild
+++ /dev/null
@@ -1,91 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 python3_{4,5} )
-PYTHON_REQ_USE="threads(+)"
-
-inherit distutils-r1
-
-DESCRIPTION="Jupyter Interactive Notebook"
-HOMEPAGE="http://jupyter.org;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-KEYWORDS="~amd64 ~x86"
-
-LICENSE="BSD"
-SLOT="0"
-IUSE="doc test"
-RDEPEND="
-   >=dev-libs/mathjax-2.4
-   dev-python/jinja[${PYTHON_USEDEP}]
-   >=dev-python/terminado-0.3.3[${PYTHON_USEDEP}]
-   >=www-servers/tornado-4.0[${PYTHON_USEDEP}]
-   dev-python/ipython_genutils[${PYTHON_USEDEP}]
-   dev-python/traitlets[${PYTHON_USEDEP}]
-   dev-python/jupyter_core[${PYTHON_USEDEP}]
-   dev-python/jupyter_client[${PYTHON_USEDEP}]
-   dev-python/nbformat[${PYTHON_USEDEP}]
-   dev-python/nbconvert[${PYTHON_USEDEP}]
-   dev-python/ipykernel[${PYTHON_USEDEP}]
-   "
-DEPEND="${RDEPEND}
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   test? (
-   $(python_gen_cond_dep 'dev-python/mock[${PYTHON_USEDEP}]' 
python2_7)
-   >=dev-python/nose-0.10.1[${PYTHON_USEDEP}]
-   dev-python/requests[${PYTHON_USEDEP}]
-   dev-python/coverage[${PYTHON_USEDEP}]
-   )
-   doc? (
-   app-text/pandoc
-   >=dev-python/ipython-4.0.0[${PYTHON_USEDEP}]
-   >=dev-python/sphinx-1.1[${PYTHON_USEDEP}]
-   )
-   "
-
-python_prepare_all() {
-   sed \
-   -e "/import setup/s:$:\nimport setuptools:g" \
-   -i setup.py || die
-
-   # disable bundled mathjax
-   sed -i 's/^.*MathJax.*$//' bower.json || die
-   sed -i 's/mj(/#mj(/' setupbase.py || die
-
-   # Prevent un-needed download during build
-   if use doc; then
-   sed -e "/^'sphinx.ext.intersphinx',/d" -i 
docs/source/conf.py || die
-   fi
-
-   distutils-r1_python_prepare_all
-}
-
-python_compile_all() {
-   use doc && emake -C docs html
-}
-
-python_test() {
-   nosetests --with-coverage --cover-package=notebook notebook || die
-
-   "${PYTHON}" -m notebook.jstest base || die
-   "${PYTHON}" -m notebook.jstest notebook || die
-   "${PYTHON}" -m notebook.jstest services || die
-   "${PYTHON}" -m notebook.jstest tree || die
-}
-
-python_install() {
-   distutils-r1_python_install
-
-   ln -sf "${EPREFIX}/usr/share/mathjax" 
"${D}$(python_get_sitedir)/notebook/static/components/MathJax" || die
-}
-
-python_install_all() {
-   use doc && HTML_DOCS=( docs/build/html/. )
-   distutils-r1_python_install_all
-}
-
-pkg_preinst() {
-   # remove old mathjax folder if present
-   rm -rf 
"${EROOT}"/usr/lib*/python*/site-packages/notebook/static/components/MathJax
-}

diff --git a/dev-python/notebook/notebook-.ebuild 
b/dev-python/notebook/notebook-.ebuild
deleted file mode 100644
index e54ee851c..0
--- a/dev-python/notebook/notebook-.ebuild
+++ /dev/null
@@ -1,90 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 python3_{4,5} )
-PYTHON_REQ_USE="threads(+)"
-
-inherit distutils-r1 git-r3
-
-DESCRIPTION="Jupyter Interactive Notebook"
-HOMEPAGE="http://jupyter.org;
-EGIT_REPO_URI="https://github.com/jupyter/${PN}.git 
git://github.com/jupyter/${PN}.git"
-
-LICENSE="BSD"
-SLOT="0"
-IUSE="doc test"
-RDEPEND="
-   >=dev-libs/mathjax-2.4
-   dev-python/jinja[${PYTHON_USEDEP}]
-   

[gentoo-commits] proj/sci:master commit in: dev-python/jupyter_client/, dev-python/jupyter_core/, ...

2020-09-21 Thread Aisha Tammy
commit: 69a1e4b0dce3087edd69578e08e9561b8d788a5b
Author: Aisha Tammy  aisha  cc>
AuthorDate: Mon Sep 21 21:40:42 2020 +
Commit: Aisha Tammy  aisha  cc>
CommitDate: Mon Sep 21 21:41:58 2020 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=69a1e4b0

dev-python/jupyter_{client,console,core}: remove

present in ::gentoo tree

Package-Manager: Portage-3.0.7, Repoman-3.0.1
Signed-off-by: Aisha Tammy  aisha.cc>

 .../jupyter_client/jupyter_client-.ebuild  | 35 --
 dev-python/jupyter_client/metadata.xml | 14 --
 .../jupyter_console/jupyter_console-.ebuild| 54 --
 dev-python/jupyter_console/metadata.xml| 12 -
 dev-python/jupyter_core/jupyter_core-.ebuild   | 52 -
 dev-python/jupyter_core/metadata.xml   | 13 --
 6 files changed, 180 deletions(-)

diff --git a/dev-python/jupyter_client/jupyter_client-.ebuild 
b/dev-python/jupyter_client/jupyter_client-.ebuild
deleted file mode 100644
index 272acefb7..0
--- a/dev-python/jupyter_client/jupyter_client-.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 python3_{4,5} )
-PYTHON_REQ_USE="threads(+)"
-
-inherit distutils-r1 git-r3
-
-DESCRIPTION="Jupyter protocol implementation and client libraries"
-HOMEPAGE="http://jupyter.org;
-EGIT_REPO_URI="https://github.com/jupyter/${PN}.git 
git://github.com/jupyter/${PN}.git"
-
-LICENSE="BSD"
-SLOT="0"
-IUSE="test"
-
-RDEPEND="
-   dev-python/traitlets[${PYTHON_USEDEP}]
-   dev-python/jupyter_core[${PYTHON_USEDEP}]
-   >=dev-python/pyzmq-14.4.0[${PYTHON_USEDEP}]
-   "
-DEPEND="${RDEPEND}
-   test? (
-   dev-python/nose[${PYTHON_USEDEP}]
-   dev-python/coverage[${PYTHON_USEDEP}]
-   $(python_gen_cond_dep 'dev-python/mock[${PYTHON_USEDEP}]' 
python2_7)
-   dev-python/ipykernel[${PYTHON_USEDEP}]
-   )
-   "
-
-python_test() {
-   nosetests --with-coverage --cover-package jupyter_client jupyter_client 
|| die
-}

diff --git a/dev-python/jupyter_client/metadata.xml 
b/dev-python/jupyter_client/metadata.xml
deleted file mode 100644
index c8a2d03e4..0
--- a/dev-python/jupyter_client/metadata.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   s...@gentoo.org
-   Gentoo Science Project
-   
-   
-Contains the reference implementation of the Jupyter protocol. It
-also provides client and kernel management APIs for working with
-kernels. It also provides the jupyter kernelspec entrypoint for
-installing kernelspecs for use with Jupyter frontends.
-
-

diff --git a/dev-python/jupyter_console/jupyter_console-.ebuild 
b/dev-python/jupyter_console/jupyter_console-.ebuild
deleted file mode 100644
index fc4eb50d0..0
--- a/dev-python/jupyter_console/jupyter_console-.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 python3_{4,5} )
-
-inherit distutils-r1 git-r3
-
-DESCRIPTION="A terminal-based console frontend for Jupyter kernels"
-HOMEPAGE="http://jupyter.org;
-EGIT_REPO_URI="https://github.com/jupyter/${PN}.git 
git://github.com/jupyter/${PN}.git"
-
-LICENSE="BSD"
-SLOT="0"
-IUSE="doc test"
-
-RDEPEND="
-   dev-python/ipython[${PYTHON_USEDEP}]
-   dev-python/ipykernel[${PYTHON_USEDEP}]
-   dev-python/jupyter_client[${PYTHON_USEDEP}]
-   >=dev-python/prompt_toolkit-1.0.0[${PYTHON_USEDEP}]
-   dev-python/pygments[${PYTHON_USEDEP}]
-   "
-DEPEND="${RDEPEND}
-   doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
-   test? (
-   $(python_gen_cond_dep 'dev-python/mock[${PYTHON_USEDEP}]' 
python2_7)
-   dev-python/pexpect[${PYTHON_USEDEP}]
-   >=dev-python/nose-0.10.1[${PYTHON_USEDEP}]
-   )
-   "
-
-python_prepare_all() {
-   # Prevent un-needed download during build
-   if use doc; then
-   sed -e "/^'sphinx.ext.intersphinx',/d" -i docs/conf.py || 
die
-   fi
-
-   distutils-r1_python_prepare_all
-}
-
-python_compile_all() {
-   use doc && emake -C docs html
-}
-
-python_test() {
-   nosetests --with-coverage --cover-package=jupyter_console 
jupyter_console || die
-}
-
-python_install_all() {
-   use doc && HTML_DOCS=( docs/_build/html/. )
-   distutils-r1_python_install_all
-}

diff --git a/dev-python/jupyter_console/metadata.xml 
b/dev-python/jupyter_console/metadata.xml
deleted file mode 100644
index d7078d3ee..0
--- a/dev-python/jupyter_console/metadata.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   s...@gentoo.org
-   Gentoo Science 

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

2020-09-21 Thread Matthew Thode
commit: e94ba47f475fb4a991689a818d6095734f3edbcb
Author: Matthew Thode  gentoo  org>
AuthorDate: Mon Sep 21 23:25:25 2020 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Mon Sep 21 23:25:41 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e94ba47f

dev-python/alembic: 1.4.2 fix tests

Closes: https://bugs.gentoo.org/743151
Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Matthew Thode  gentoo.org>

 dev-python/alembic/alembic-1.4.2.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/dev-python/alembic/alembic-1.4.2.ebuild 
b/dev-python/alembic/alembic-1.4.2.ebuild
index 581f8570687..e014e8a0527 100644
--- a/dev-python/alembic/alembic-1.4.2.ebuild
+++ b/dev-python/alembic/alembic-1.4.2.ebuild
@@ -22,6 +22,7 @@ RDEPEND=">=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
dev-python/python-dateutil[${PYTHON_USEDEP}]"
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
test? ( ${RDEPEND}
+   dev-python/pytest[${PYTHON_USEDEP}]
dev-python/nose[${PYTHON_USEDEP}]
dev-python/mock[${PYTHON_USEDEP}] )"
 # For test phase
@@ -35,7 +36,7 @@ python_prepare_all() {
 }
 
 python_test() {
-   ${EPYTHON} run_tests.py || die "Testing failed with ${EPYTHON}"
+   ${EPYTHON} -m pytest --dropfirst || die "Testing failed with ${EPYTHON}"
 }
 
 python_install_all() {



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

2020-09-21 Thread David Seifert
commit: 5d2387c8ea09ebf006221dfe62691df14d7deb0f
Author: David Seifert  gentoo  org>
AuthorDate: Mon Sep 21 23:16:01 2020 +
Commit: David Seifert  gentoo  org>
CommitDate: Mon Sep 21 23:16:01 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d2387c8

dev-python/graph-tool: Version bump to 2.35

Closes: https://bugs.gentoo.org/741990
Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: David Seifert  gentoo.org>

 dev-python/graph-tool/Manifest   |  1 +
 dev-python/graph-tool/graph-tool-2.35.ebuild | 84 
 2 files changed, 85 insertions(+)

diff --git a/dev-python/graph-tool/Manifest b/dev-python/graph-tool/Manifest
index 0b8f164706a..8e035770c3f 100644
--- a/dev-python/graph-tool/Manifest
+++ b/dev-python/graph-tool/Manifest
@@ -1 +1,2 @@
 DIST graph-tool-2.29.tar.bz2 15068583 BLAKE2B 
28eb191d0f9c049eb5e5cd70ff30508bc6347566e757f11dc21cc7775c40ee1a86490516f6616e0dc7086983e510785c695db4ace64aa2c83b67c3ca1f534ad6
 SHA512 
f7a40f0ff5cb5ce3fdf39cf38744a91f7936e8d1dc487f0428c9f29893ad9d5163d5b76d7c07e3651ecb7035bea4166ca8e169934be54247f3285f4e0fe7269a
+DIST graph-tool-2.35.tar.bz2 15153787 BLAKE2B 
31f815f564510bb9628f43e8afab1a561222d23aabc3417ce474f0db69625954fc46119f61e8d7764d49a291e16e3b32f2e4249304f934c08d17af3e47a39ce8
 SHA512 
eadb122b75ff95fde165bfe1be8387deb08b48d041236aff11a0b8414d1a5027931a5e4b3216348edb61c53187b191a5e78af4eabb1ce679dd8736651f142bec

diff --git a/dev-python/graph-tool/graph-tool-2.35.ebuild 
b/dev-python/graph-tool/graph-tool-2.35.ebuild
new file mode 100644
index 000..20fbfe4e557
--- /dev/null
+++ b/dev-python/graph-tool/graph-tool-2.35.ebuild
@@ -0,0 +1,84 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6..9} )
+
+inherit check-reqs python-r1 toolchain-funcs
+
+if [[ ${PV} == * ]]; then
+   EGIT_REPO_URI="https://git.skewed.de/count0/graph-tool.git;
+   inherit autotools git-r3
+else
+   SRC_URI="https://downloads.skewed.de/${PN}/${P}.tar.bz2;
+   KEYWORDS="~amd64"
+fi
+
+DESCRIPTION="An efficient python module for manipulation and statistical 
analysis of graphs"
+HOMEPAGE="https://graph-tool.skewed.de/;
+
+LICENSE="GPL-3"
+SLOT="0"
+IUSE="+cairo openmp"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+RDEPEND="
+   ${PYTHON_DEPS}
+   >=dev-libs/boost-1.70:=[context,python,${PYTHON_USEDEP}]
+   dev-libs/expat:=
+   dev-python/numpy[${PYTHON_USEDEP}]
+   dev-python/scipy[${PYTHON_USEDEP}]
+   sci-mathematics/cgal:=
+   cairo? (
+   dev-cpp/cairomm
+   dev-python/pycairo[${PYTHON_USEDEP}]
+   )
+   dev-python/matplotlib[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+   dev-cpp/sparsehash"
+BDEPEND="virtual/pkgconfig"
+
+# bug 453544
+CHECKREQS_DISK_BUILD="6G"
+
+pkg_pretend() {
+   [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp
+   check-reqs_pkg_pretend
+}
+
+pkg_setup() {
+   [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp
+}
+
+src_prepare() {
+   default
+   [[ ${PV} == * ]] && eautoreconf
+   python_copy_sources
+}
+
+src_configure() {
+   configure() {
+   econf \
+   --disable-static \
+   $(use_enable openmp) \
+   $(use_enable cairo) \
+   --with-boost-python="boost_${EPYTHON/./}"
+   }
+   python_foreach_impl run_in_build_dir configure
+}
+
+src_compile() {
+   # most machines don't have enough ram for parallel builds
+   python_foreach_impl run_in_build_dir emake -j1
+}
+
+src_install() {
+   python_install() {
+   default
+   python_optimize
+   }
+   python_foreach_impl run_in_build_dir python_install
+
+   find "${ED}" -name '*.la' -delete || die
+}



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

2020-09-21 Thread David Seifert
commit: 7180c63093c03ee0bba246ac657d13fbe4763a14
Author: David Seifert  gentoo  org>
AuthorDate: Mon Sep 21 23:16:04 2020 +
Commit: David Seifert  gentoo  org>
CommitDate: Mon Sep 21 23:16:04 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7180c630

dev-python/graph-tool: Sync live ebuild

Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: David Seifert  gentoo.org>

 dev-python/graph-tool/graph-tool-.ebuild | 11 ---
 1 file changed, 8 insertions(+), 3 deletions(-)

diff --git a/dev-python/graph-tool/graph-tool-.ebuild 
b/dev-python/graph-tool/graph-tool-.ebuild
index 0b9a248e370..20fbfe4e557 100644
--- a/dev-python/graph-tool/graph-tool-.ebuild
+++ b/dev-python/graph-tool/graph-tool-.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{6,7} )
+PYTHON_COMPAT=( python3_{6..9} )
 
 inherit check-reqs python-r1 toolchain-funcs
 
@@ -74,6 +74,11 @@ src_compile() {
 }
 
 src_install() {
-   python_foreach_impl run_in_build_dir default
-   find "${D}" -name '*.la' -delete || die
+   python_install() {
+   default
+   python_optimize
+   }
+   python_foreach_impl run_in_build_dir python_install
+
+   find "${ED}" -name '*.la' -delete || die
 }



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

2020-09-21 Thread David Seifert
commit: cba2fc1413f15bbf80504ba232bafcfcefa766b0
Author: David Seifert  gentoo  org>
AuthorDate: Mon Sep 21 23:16:07 2020 +
Commit: David Seifert  gentoo  org>
CommitDate: Mon Sep 21 23:16:07 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cba2fc14

dev-python/graph-tool: Remove old 2.29

Closes: https://bugs.gentoo.org/737974
Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: David Seifert  gentoo.org>

 dev-python/graph-tool/Manifest   |  1 -
 dev-python/graph-tool/graph-tool-2.29.ebuild | 79 
 2 files changed, 80 deletions(-)

diff --git a/dev-python/graph-tool/Manifest b/dev-python/graph-tool/Manifest
index 8e035770c3f..be2792d394a 100644
--- a/dev-python/graph-tool/Manifest
+++ b/dev-python/graph-tool/Manifest
@@ -1,2 +1 @@
-DIST graph-tool-2.29.tar.bz2 15068583 BLAKE2B 
28eb191d0f9c049eb5e5cd70ff30508bc6347566e757f11dc21cc7775c40ee1a86490516f6616e0dc7086983e510785c695db4ace64aa2c83b67c3ca1f534ad6
 SHA512 
f7a40f0ff5cb5ce3fdf39cf38744a91f7936e8d1dc487f0428c9f29893ad9d5163d5b76d7c07e3651ecb7035bea4166ca8e169934be54247f3285f4e0fe7269a
 DIST graph-tool-2.35.tar.bz2 15153787 BLAKE2B 
31f815f564510bb9628f43e8afab1a561222d23aabc3417ce474f0db69625954fc46119f61e8d7764d49a291e16e3b32f2e4249304f934c08d17af3e47a39ce8
 SHA512 
eadb122b75ff95fde165bfe1be8387deb08b48d041236aff11a0b8414d1a5027931a5e4b3216348edb61c53187b191a5e78af4eabb1ce679dd8736651f142bec

diff --git a/dev-python/graph-tool/graph-tool-2.29.ebuild 
b/dev-python/graph-tool/graph-tool-2.29.ebuild
deleted file mode 100644
index 0b9a248e370..000
--- a/dev-python/graph-tool/graph-tool-2.29.ebuild
+++ /dev/null
@@ -1,79 +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 check-reqs python-r1 toolchain-funcs
-
-if [[ ${PV} == * ]]; then
-   EGIT_REPO_URI="https://git.skewed.de/count0/graph-tool.git;
-   inherit autotools git-r3
-else
-   SRC_URI="https://downloads.skewed.de/${PN}/${P}.tar.bz2;
-   KEYWORDS="~amd64"
-fi
-
-DESCRIPTION="An efficient python module for manipulation and statistical 
analysis of graphs"
-HOMEPAGE="https://graph-tool.skewed.de/;
-
-LICENSE="GPL-3"
-SLOT="0"
-IUSE="+cairo openmp"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-RDEPEND="
-   ${PYTHON_DEPS}
-   >=dev-libs/boost-1.70:=[context,python,${PYTHON_USEDEP}]
-   dev-libs/expat:=
-   dev-python/numpy[${PYTHON_USEDEP}]
-   dev-python/scipy[${PYTHON_USEDEP}]
-   sci-mathematics/cgal:=
-   cairo? (
-   dev-cpp/cairomm
-   dev-python/pycairo[${PYTHON_USEDEP}]
-   )
-   dev-python/matplotlib[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
-   dev-cpp/sparsehash"
-BDEPEND="virtual/pkgconfig"
-
-# bug 453544
-CHECKREQS_DISK_BUILD="6G"
-
-pkg_pretend() {
-   [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp
-   check-reqs_pkg_pretend
-}
-
-pkg_setup() {
-   [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp
-}
-
-src_prepare() {
-   default
-   [[ ${PV} == * ]] && eautoreconf
-   python_copy_sources
-}
-
-src_configure() {
-   configure() {
-   econf \
-   --disable-static \
-   $(use_enable openmp) \
-   $(use_enable cairo) \
-   --with-boost-python="boost_${EPYTHON/./}"
-   }
-   python_foreach_impl run_in_build_dir configure
-}
-
-src_compile() {
-   # most machines don't have enough ram for parallel builds
-   python_foreach_impl run_in_build_dir emake -j1
-}
-
-src_install() {
-   python_foreach_impl run_in_build_dir default
-   find "${D}" -name '*.la' -delete || die
-}



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

2020-09-21 Thread Thomas Deutschmann
commit: 3acb85b5fba5185ec2f9baa1f72323a6b8e065fb
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Sep 21 23:08:09 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Sep 21 23:08:09 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3acb85b5

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

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

 sys-kernel/gentoo-sources/gentoo-sources-4.14.198.ebuild | 2 +-
 sys-kernel/gentoo-sources/gentoo-sources-4.19.146.ebuild | 2 +-
 sys-kernel/gentoo-sources/gentoo-sources-4.4.236.ebuild  | 2 +-
 sys-kernel/gentoo-sources/gentoo-sources-4.9.236.ebuild  | 2 +-
 sys-kernel/gentoo-sources/gentoo-sources-5.4.66.ebuild   | 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

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

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

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

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

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



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

2020-09-21 Thread Thomas Deutschmann
commit: 2eb72931e86b133922553219c5db20698ca3923f
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Sep 21 23:15:23 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Sep 21 23:15:23 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2eb72931

sys-kernel/gentoo-sources: amd64 stable (bug #743859)

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

 sys-kernel/gentoo-sources/gentoo-sources-4.14.198.ebuild | 2 +-
 sys-kernel/gentoo-sources/gentoo-sources-4.19.146.ebuild | 2 +-
 sys-kernel/gentoo-sources/gentoo-sources-4.4.236.ebuild  | 2 +-
 sys-kernel/gentoo-sources/gentoo-sources-4.9.236.ebuild  | 2 +-
 sys-kernel/gentoo-sources/gentoo-sources-5.4.66.ebuild   | 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

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

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

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

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

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



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

2020-09-21 Thread Georgy Yakovlev
commit: c33b90aebdd67e923fcc984d3708b4bbc9b110b9
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Mon Sep 21 23:02:48 2020 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Mon Sep 21 23:02:48 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c33b90ae

sys-fs/zfs: drop 2.0.0_rc1

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

 sys-fs/zfs/Manifest|   1 -
 sys-fs/zfs/zfs-2.0.0_rc1-r1.ebuild | 228 -
 2 files changed, 229 deletions(-)

diff --git a/sys-fs/zfs/Manifest b/sys-fs/zfs/Manifest
index 7165523a32c..fcbe351955d 100644
--- a/sys-fs/zfs/Manifest
+++ b/sys-fs/zfs/Manifest
@@ -1,3 +1,2 @@
 DIST zfs-0.8.4.tar.gz 9285838 BLAKE2B 
776bcd6dfab8825c07d315085e288b29bf543d6957325d5d566b7b78c04505dde9bd25eb6684cb4a1b6a657de8a4e1290d04d2b9079d26d6b834a70f1ec3b569
 SHA512 
9086dc6a6262dd93ca6ec43f1b4c2e5c804deba708c8a7460b8531aa4802b0bf8cac0917a1a00e6af2e96d4a21cd68b85e226bf571bd94041d0325c457106eb1
-DIST zfs-2.0.0-rc1.tar.gz 12820598 BLAKE2B 
6ea935447e4f95eb4040533843677f0091c9620fc387c76818df69a6653467e10aecd07ece22b2a32f849dc52ab0160149147416af90d78c5284f403571f7962
 SHA512 
b70cd10672d4424a6ffaaa58b4fa14b7d1b6481413463abd9b6d75698e80d94301fd54c7e091d63ebad9c8838eaaef6449223a55f041a62ae8292882feb195b5
 DIST zfs-2.0.0-rc2.tar.gz 12854085 BLAKE2B 
73cabd565c11eef1bebbc391f8c4ba18acd1610f98f1b8afb507bc844f4b6a64ba32d9727e634c7f26c48fe365a841bf071513df234b9b7a87e954610a6d7f3b
 SHA512 
14b17d06124890efef15b3b073e103c9faeecaea761779fff9a8420e3ab72fa611df9875fa766a323d69646e9025f8b19f918ded4c6705af116cf9f14eea4f40

diff --git a/sys-fs/zfs/zfs-2.0.0_rc1-r1.ebuild 
b/sys-fs/zfs/zfs-2.0.0_rc1-r1.ebuild
deleted file mode 100644
index ad7088f0af3..000
--- a/sys-fs/zfs/zfs-2.0.0_rc1-r1.ebuild
+++ /dev/null
@@ -1,228 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DISTUTILS_OPTIONAL=1
-PYTHON_COMPAT=( python3_{6,7,8} )
-
-inherit autotools bash-completion-r1 distutils-r1 flag-o-matic linux-info pam 
systemd toolchain-funcs udev usr-ldscript
-
-DESCRIPTION="Userland utilities for ZFS Linux kernel module"
-HOMEPAGE="https://github.com/openzfs/zfs;
-
-if [[ ${PV} == "" ]] ; then
-   inherit git-r3 linux-mod
-   EGIT_REPO_URI="https://github.com/openzfs/zfs.git;
-else
-   MY_P="${P/_rc/-rc}"
-   
SRC_URI="https://github.com/openzfs/${PN}/releases/download/${MY_P}/${MY_P}.tar.gz;
-   KEYWORDS="~amd64 ~arm64 ~ppc64"
-   S="${WORKDIR}/${P%_rc?}"
-fi
-
-LICENSE="BSD-2 CDDL MIT"
-SLOT="0"
-IUSE="custom-cflags debug kernel-builtin libressl minimal nls pam python 
+rootfs test-suite static-libs"
-
-DEPEND="
-   net-libs/libtirpc[static-libs?]
-   sys-apps/util-linux[static-libs?]
-   sys-libs/zlib[static-libs(+)?]
-   virtual/awk
-   virtual/libudev[static-libs(-)?]
-   libressl? ( dev-libs/libressl:0=[static-libs?] )
-   !libressl? ( dev-libs/openssl:0=[static-libs?] )
-   !minimal? ( ${PYTHON_DEPS} )
-   pam? ( sys-libs/pam )
-   python? (
-   virtual/python-cffi[${PYTHON_USEDEP}]
-   )
-"
-
-BDEPEND="virtual/awk
-   virtual/pkgconfig
-   nls? ( sys-devel/gettext )
-   python? (
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   )
-"
-
-RDEPEND="${DEPEND}
-   !kernel-builtin? ( ~sys-fs/zfs-kmod-${PV} )
-   !prefix? ( virtual/udev )
-   sys-fs/udev-init-scripts
-   rootfs? (
-   app-arch/cpio
-   app-misc/pax-utils
-   !"
-   eerror "Block devices --->"
-   eerror "[X] Loopback device 
support"
-   fi
-   fi
-   fi
-   fi
-}
-
-src_prepare() {
-   default
-
-   if [[ ${PV} == "" ]]; then
-   eautoreconf
-   else
-   # Set revision number
-   sed -i "s/\(Release:\)\(.*\)1/\1\2${PR}-gentoo/" META || die 
"Could not set Gentoo release"
-   fi
-
-   if use python; then
-   pushd contrib/pyzfs >/dev/null || die
-   distutils-r1_src_prepare
-   popd >/dev/null || die
-   fi
-
-   # prevent errors showing up on zfs-mount stop, #647688
-   # openrc will unmount all filesystems anyway.
-   sed -i "/^ZFS_UNMOUNT=/ s/yes/no/" "etc/default/zfs.in" || die
-}
-
-src_configure() {
-   use custom-cflags || strip-flags
-   use minimal || python_setup
-
-   local myconf=(
-   --bindir="${EPREFIX}/bin"
-   --enable-shared
-   --enable-systemd
-   --enable-sysvinit
-   --localstatedir="${EPREFIX}/var"
-   --sbindir="${EPREFIX}/sbin"
-   --with-config=user
-   --with-dracutdir="${EPREFIX}/usr/lib/dracut"

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

2020-09-21 Thread Georgy Yakovlev
commit: 471655edb905e6acf88c27d7ed1ebb22e8d7d7fc
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Mon Sep 21 23:03:29 2020 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Mon Sep 21 23:03:29 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=471655ed

sys-fs/zfs: drop unused completion file

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

 sys-fs/zfs/files/bash-completion-r1 | 391 
 1 file changed, 391 deletions(-)

diff --git a/sys-fs/zfs/files/bash-completion-r1 
b/sys-fs/zfs/files/bash-completion-r1
deleted file mode 100644
index b1aded368e8..000
--- a/sys-fs/zfs/files/bash-completion-r1
+++ /dev/null
@@ -1,391 +0,0 @@
-# Copyright (c) 2013, Aneurin Price 
-
-# Permission is hereby granted, free of charge, to any person
-# obtaining a copy of this software and associated documentation
-# files (the "Software"), to deal in the Software without
-# restriction, including without limitation the rights to use,
-# copy, modify, merge, publish, distribute, sublicense, and/or sell
-# copies of the Software, and to permit persons to whom the
-# Software is furnished to do so, subject to the following
-# conditions:
-
-# The above copyright notice and this permission notice shall be
-# included in all copies or substantial portions of the Software.
-
-# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
-# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
-# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
-# HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
-# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
-# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
-# OTHER DEALINGS IN THE SOFTWARE.
-
-#if [[ -w /dev/zfs ]]; then
-__ZFS_CMD="zfs"
-__ZPOOL_CMD="zpool"
-#else
-#__ZFS_CMD="sudo zfs"
-#__ZPOOL_CMD="sudo zpool"
-#fi
-
-__zfs_get_commands()
-{
-$__ZFS_CMD 2>&1 | awk '/^\t[a-z]/ {print $1}' | cut -f1 -d '|' | uniq
-}
-
-__zfs_get_properties()
-{
-$__ZFS_CMD get 2>&1 | awk '$2 == "YES" || $2 == "NO" {print $1}'; echo all 
name space
-}
-
-__zfs_get_editable_properties()
-{
-$__ZFS_CMD get 2>&1 | awk '$2 == "YES" {print $1"="}'
-}
-
-__zfs_get_inheritable_properties()
-{
-$__ZFS_CMD get 2>&1 | awk '$3 == "YES" {print $1}'
-}
-
-__zfs_list_datasets()
-{
-$__ZFS_CMD list -H -o name -t filesystem,volume
-}
-
-__zfs_list_filesystems()
-{
-$__ZFS_CMD list -H -o name -t filesystem
-}
-
-__zfs_match_snapshot()
-{
-local base_dataset=${cur%@*}
-if [[ $base_dataset != $cur ]]
-then
-$__ZFS_CMD list -H -o name -t snapshot -d 1 $base_dataset
-else
-$__ZFS_CMD list -H -o name -t filesystem,volume | awk '{print $1"@"}'
-fi
-}
-
-__zfs_match_explicit_snapshot()
-{
-local base_dataset=${cur%@*}
-if [[ $base_dataset != $cur ]]
-then
-$__ZFS_CMD list -H -o name -t snapshot -d 1 $base_dataset
-fi
-}
-
-__zfs_match_multiple_snapshots()
-{
-local existing_opts=$(expr "$cur" : '\(.*\)[%,]')
-if [[ $existing_opts ]]
-then
-local base_dataset=${cur%@*}
-if [[ $base_dataset != $cur ]]
-then
-local cur=${cur##*,}
-if [[ $cur =~ ^%|%.*% ]]
-then
-# correct range syntax is start%end
-return 1
-fi
-local range_start=$(expr "$cur" : '\(.*%\)')
-$__ZFS_CMD list -H -o name -t snapshot -d 1 $base_dataset | sed 
's$.*@$'$range_start'$g'
-fi
-else
-__zfs_match_explicit_snapshot; __zfs_list_datasets
-fi
-}
-
-__zfs_list_volumes()
-{
-$__ZFS_CMD list -H -o name -t volume
-}
-
-__zfs_argument_chosen()
-{
-local word property
-for word in $(seq $((COMP_CWORD-1)) -1 2)
-do
-local prev="${COMP_WORDS[$word]}"
-if [[ ${COMP_WORDS[$word-1]} != -[tos] ]]
-then
-if [[ "$prev" == [^,]*,* ]] || [[ "$prev" == *[@:]* ]]
-then
-return 0
-fi
-for property in $@
-do
-if [[ $prev == "$property" ]]
-then
-return 0
-fi
-done
-fi
-done
-return 1
-}
-
-__zfs_complete_ordered_arguments()
-{
-local list1=$1
-local list2=$2
-local cur=$3
-local extra=$4
-if __zfs_argument_chosen $list1
-then
-COMPREPLY=($(compgen -W "$list2 $extra" -- "$cur"))
-else
-COMPREPLY=($(compgen -W "$list1 $extra" -- "$cur"))
-fi
-}
-
-__zfs_complete_multiple_options()
-{
-local options=$1
-local cur=$2
-
-COMPREPLY=($(compgen -W "$options" -- "${cur##*,}"))
-local existing_opts=$(expr "$cur" : '\(.*,\)')
-if [[ $existing_opts ]] 
-then
-COMPREPLY=( "${COMPREPLY[@]/#/${existing_opts}}" 

[gentoo-commits] repo/gentoo:master commit in: sys-fs/zfs-kmod/, sys-fs/zfs-kmod/files/

2020-09-21 Thread Georgy Yakovlev
commit: 95ea0372437186b62ad95fce2f314eed8d43fe66
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Mon Sep 21 23:04:09 2020 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Mon Sep 21 23:04:09 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95ea0372

sys-fs/zfs-kmod: drop 2.0.0_rc1

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

 sys-fs/zfs-kmod/Manifest   |   1 -
 sys-fs/zfs-kmod/files/2.0.0_rc1-U__BMI__.patch |  29 
 sys-fs/zfs-kmod/zfs-kmod-2.0.0_rc1.ebuild  | 178 -
 3 files changed, 208 deletions(-)

diff --git a/sys-fs/zfs-kmod/Manifest b/sys-fs/zfs-kmod/Manifest
index 7165523a32c..fcbe351955d 100644
--- a/sys-fs/zfs-kmod/Manifest
+++ b/sys-fs/zfs-kmod/Manifest
@@ -1,3 +1,2 @@
 DIST zfs-0.8.4.tar.gz 9285838 BLAKE2B 
776bcd6dfab8825c07d315085e288b29bf543d6957325d5d566b7b78c04505dde9bd25eb6684cb4a1b6a657de8a4e1290d04d2b9079d26d6b834a70f1ec3b569
 SHA512 
9086dc6a6262dd93ca6ec43f1b4c2e5c804deba708c8a7460b8531aa4802b0bf8cac0917a1a00e6af2e96d4a21cd68b85e226bf571bd94041d0325c457106eb1
-DIST zfs-2.0.0-rc1.tar.gz 12820598 BLAKE2B 
6ea935447e4f95eb4040533843677f0091c9620fc387c76818df69a6653467e10aecd07ece22b2a32f849dc52ab0160149147416af90d78c5284f403571f7962
 SHA512 
b70cd10672d4424a6ffaaa58b4fa14b7d1b6481413463abd9b6d75698e80d94301fd54c7e091d63ebad9c8838eaaef6449223a55f041a62ae8292882feb195b5
 DIST zfs-2.0.0-rc2.tar.gz 12854085 BLAKE2B 
73cabd565c11eef1bebbc391f8c4ba18acd1610f98f1b8afb507bc844f4b6a64ba32d9727e634c7f26c48fe365a841bf071513df234b9b7a87e954610a6d7f3b
 SHA512 
14b17d06124890efef15b3b073e103c9faeecaea761779fff9a8420e3ab72fa611df9875fa766a323d69646e9025f8b19f918ded4c6705af116cf9f14eea4f40

diff --git a/sys-fs/zfs-kmod/files/2.0.0_rc1-U__BMI__.patch 
b/sys-fs/zfs-kmod/files/2.0.0_rc1-U__BMI__.patch
deleted file mode 100644
index 9e9a007c300..000
--- a/sys-fs/zfs-kmod/files/2.0.0_rc1-U__BMI__.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-From 81a3970fca5759499effc3131e59c9bd8f446cc9 Mon Sep 17 00:00:00 2001
-From: Georgy Yakovlev 
-Date: Wed, 26 Aug 2020 16:02:48 -0700
-Subject: [PATCH] module/zstd: pass -U__BMI__
-
-Closes: https://github.com/openzfs/zfs/issues/10758
-Signed-off-by: Georgy Yakovlev 

- module/zstd/Makefile.in | 4 
- 1 file changed, 4 insertions(+)
-
-diff --git a/module/zstd/Makefile.in b/module/zstd/Makefile.in
-index eea749ea8..bfceca920 100644
 a/module/zstd/Makefile.in
-+++ b/module/zstd/Makefile.in
-@@ -20,6 +20,10 @@ ccflags-y += -O3
- # Set it for other compilers, too.
- $(obj)/lib/zstd.o: c_flags += -fno-tree-vectorize
- 
-+# SSE register return with SSE disabled if -march=znverX is passed
-+# https://github.com/openzfs/zfs/issues/10758
-+$(obj)/lib/zstd.o: c_flags += -U__BMI__
-+
- # Quiet warnings about frame size due to unused code in unmodified zstd lib
- $(obj)/lib/zstd.o: c_flags += -Wframe-larger-than=20480
- 
--- 
-2.28.0
-

diff --git a/sys-fs/zfs-kmod/zfs-kmod-2.0.0_rc1.ebuild 
b/sys-fs/zfs-kmod/zfs-kmod-2.0.0_rc1.ebuild
deleted file mode 100644
index 73b00ca17e0..000
--- a/sys-fs/zfs-kmod/zfs-kmod-2.0.0_rc1.ebuild
+++ /dev/null
@@ -1,178 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-MY_PV="${PV/_rc/-rc}"
-
-inherit autotools flag-o-matic linux-mod toolchain-funcs
-
-DESCRIPTION="Linux ZFS kernel module for sys-fs/zfs"
-HOMEPAGE="https://github.com/openzfs/zfs;
-
-if [[ ${PV} == "" ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/openzfs/zfs.git;
-else
-   
SRC_URI="https://github.com/openzfs/zfs/releases/download/zfs-${MY_PV}/zfs-${MY_PV}.tar.gz;
-   KEYWORDS="~amd64 ~arm64 ~ppc64"
-   S="${WORKDIR}/zfs-${PV%_rc?}"
-   ZFS_KERNEL_COMPAT="5.8"
-fi
-
-LICENSE="CDDL debug? ( GPL-2+ )"
-SLOT="0"
-IUSE="custom-cflags debug +rootfs"
-
-DEPEND=""
-
-RDEPEND="${DEPEND}
-   !sys-kernel/spl
-"
-
-BDEPEND="
-   dev-lang/perl
-   virtual/awk
-"
-
-RESTRICT="debug? ( strip ) test"
-
-DOCS=( AUTHORS COPYRIGHT META README.md )
-
-PATCHES=( "${FILESDIR}/${PV}-U__BMI__.patch" )
-
-pkg_setup() {
-   CONFIG_CHECK="
-   !DEBUG_LOCK_ALLOC
-   EFI_PARTITION
-   MODULES
-   !PAX_KERNEXEC_PLUGIN_METHOD_OR
-   !TRIM_UNUSED_KSYMS
-   ZLIB_DEFLATE
-   ZLIB_INFLATE
-   "
-
-   use debug && CONFIG_CHECK="${CONFIG_CHECK}
-   FRAME_POINTER
-   DEBUG_INFO
-   !DEBUG_INFO_REDUCED
-   "
-
-   use rootfs && \
-   CONFIG_CHECK="${CONFIG_CHECK}
-   BLK_DEV_INITRD
-   DEVTMPFS
-   "
-
-   kernel_is -lt 5 && CONFIG_CHECK="${CONFIG_CHECK} IOSCHED_NOOP"
-
-   if [[ ${PV} != "" ]]; then
-   local kv_major_max kv_minor_max zcompat
-   

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

2020-09-21 Thread Georgy Yakovlev
commit: a0addbfd6902fe7454a16722c17e3d63ed8dd914
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Mon Sep 21 22:43:33 2020 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Mon Sep 21 22:51:06 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0addbfd

sys-fs/zfs: use bash as config shell explicitly

dash as /bin/sh users get build failures for 0.8.x
but it seems to be ok in 2.0.x

Bug: https://bugs.gentoo.org/724452
Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Georgy Yakovlev  gentoo.org>

 sys-fs/zfs/zfs-0.8.4-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/zfs/zfs-0.8.4-r2.ebuild b/sys-fs/zfs/zfs-0.8.4-r2.ebuild
index 71e06c34f7c..3bcbb4af433 100644
--- a/sys-fs/zfs/zfs-0.8.4-r2.ebuild
+++ b/sys-fs/zfs/zfs-0.8.4-r2.ebuild
@@ -146,7 +146,7 @@ src_configure() {
$(usex minimal --without-python --with-python="${EPYTHON}")
)
 
-   econf "${myconf[@]}"
+   CONFIG_SHELL="${EPREFIX}/bin/bash" econf "${myconf[@]}"
 }
 
 src_compile() {



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

2020-09-21 Thread Georgy Yakovlev
commit: 72ca90fa2e9e5028983cce06f3726fcd622af825
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Mon Sep 21 22:40:52 2020 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Mon Sep 21 22:50:21 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72ca90fa

sys-fs/zfs-kmod: use bash as config shell explicitly

dash as /bin/sh users get build failures for 0.8.x
but it seems to be ok in 2.0.x

Bug: https://bugs.gentoo.org/724452
Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Georgy Yakovlev  gentoo.org>

 sys-fs/zfs-kmod/zfs-kmod-0.8.4-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/zfs-kmod/zfs-kmod-0.8.4-r1.ebuild 
b/sys-fs/zfs-kmod/zfs-kmod-0.8.4-r1.ebuild
index 2276604b161..18afe59c4a9 100644
--- a/sys-fs/zfs-kmod/zfs-kmod-0.8.4-r1.ebuild
+++ b/sys-fs/zfs-kmod/zfs-kmod-0.8.4-r1.ebuild
@@ -116,7 +116,7 @@ src_configure() {
$(use_enable debug)
)
 
-   econf "${myconf[@]}"
+   CONFIG_SHELL="${EPREFIX}/bin/bash" econf "${myconf[@]}"
 }
 
 src_compile() {



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

2020-09-21 Thread Georgy Yakovlev
commit: 8650884e9f997dd61bce76ac0b919a91a95c4f0a
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Mon Sep 21 22:41:33 2020 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Mon Sep 21 22:50:20 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8650884e

dev-python/loguru: bump to 0.5.3

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

 dev-python/loguru/Manifest|  1 +
 dev-python/loguru/loguru-0.5.3.ebuild | 22 ++
 2 files changed, 23 insertions(+)

diff --git a/dev-python/loguru/Manifest b/dev-python/loguru/Manifest
index ddf378a7b1d..a606998b289 100644
--- a/dev-python/loguru/Manifest
+++ b/dev-python/loguru/Manifest
@@ -1 +1,2 @@
 DIST loguru-0.5.2.tar.gz 413504 BLAKE2B 
5ded9ade8998bec5a3074cd39b1501a764f141eeb9f389aef50f337f69934ed7902636c4f3d82b5396953750960bb97bf9919ee0361fb77a77c4dbb5607bc8ec
 SHA512 
8a2032a5fbff3c3e2f076eb879462eaca5c8bf12356658583a9877b14a9ce28bce88c7eb8d99fb3224745d59d90dc82e967bda699b95a3c95d748f08613a8fbc
+DIST loguru-0.5.3.tar.gz 413858 BLAKE2B 
995df880138e09ae80c33c1c96aea36acc635c8915687ca708b708eb4a92722908da4c5c4b03e8dd01ef1a3be560c072821405010f03e131781c4f3dbb7bd9cf
 SHA512 
d26e9fcc79b6eb3437b53a03b8200679bdda8de2bced7710fb252ff3c19622fea48c20c8258a62bcd625bd18bfee080ed0a182876d91f34e1f2ef3524ac9bb46

diff --git a/dev-python/loguru/loguru-0.5.3.ebuild 
b/dev-python/loguru/loguru-0.5.3.ebuild
new file mode 100644
index 000..0f7fde343c2
--- /dev/null
+++ b/dev-python/loguru/loguru-0.5.3.ebuild
@@ -0,0 +1,22 @@
+# Copyright 2019-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="Python logging made (stupidly) simple"
+HOMEPAGE="https://github.com/Delgan/loguru;
+SRC_URI="https://github.com/Delgan/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc64 ~x86"
+
+RDEPEND="$(python_gen_cond_dep 'dev-python/aiocontextvars[${PYTHON_USEDEP}]' 
'python3_6')"
+BDEPEND="test? ( >=dev-python/colorama-0.3.4[${PYTHON_USEDEP}] )"
+# filesystem buffering tests may fail
+# on tmpfs with 64k PAGESZ, but pass fine on ext4
+distutils_enable_tests pytest



[gentoo-commits] repo/proj/guru:dev commit in: net-misc/gallery-dl/

2020-09-21 Thread Maciej Barć
commit: 512de45fd71f78d7fd81c382449faf2033a87d85
Author: Maciej Barć  protonmail  com>
AuthorDate: Mon Sep 21 18:49:38 2020 +
Commit: Maciej Barć  protonmail  com>
CommitDate: Mon Sep 21 18:49:38 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=512de45f

net-misc/gallery-dl: proper dist name; add missing inherit

Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Maciej Barć  protonmail.com>

 net-misc/gallery-dl/Manifest | 2 +-
 net-misc/gallery-dl/gallery-dl-1.15.0.ebuild | 4 ++--
 net-misc/gallery-dl/gallery-dl-.ebuild   | 4 ++--
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/net-misc/gallery-dl/Manifest b/net-misc/gallery-dl/Manifest
index c99382cf..602da0ea 100644
--- a/net-misc/gallery-dl/Manifest
+++ b/net-misc/gallery-dl/Manifest
@@ -1 +1 @@
-DIST v1.15.0.tar.gz 323180 BLAKE2B 
2b0bac0e0a3a3c1c3cab1860f1f584fd09e5f6163a69a94419f2924bd62e1fb9464f8139f6cdce4a7020accaaa44cf1e60c03dab2db7d9568d35693a8f935c4e
 SHA512 
3d15ebeaa088130efb4c33ad2bc2d7ed2af78eafc68ef00b451d65db7f6b589cf10e248c309677dbbfe7202885d602afdbcab330dae0ebce190bd1f5dce25834
+DIST gallery-dl-1.15.0.tar.gz 323180 BLAKE2B 
2b0bac0e0a3a3c1c3cab1860f1f584fd09e5f6163a69a94419f2924bd62e1fb9464f8139f6cdce4a7020accaaa44cf1e60c03dab2db7d9568d35693a8f935c4e
 SHA512 
3d15ebeaa088130efb4c33ad2bc2d7ed2af78eafc68ef00b451d65db7f6b589cf10e248c309677dbbfe7202885d602afdbcab330dae0ebce190bd1f5dce25834

diff --git a/net-misc/gallery-dl/gallery-dl-1.15.0.ebuild 
b/net-misc/gallery-dl/gallery-dl-1.15.0.ebuild
index edcab4bd..da864b88 100644
--- a/net-misc/gallery-dl/gallery-dl-1.15.0.ebuild
+++ b/net-misc/gallery-dl/gallery-dl-1.15.0.ebuild
@@ -6,7 +6,7 @@ EAPI=7
 PYTHON_COMPAT=(python3_{6,7,8})
 DISTUTILS_USE_SETUPTOOLS=rdepend
 
-inherit eutils distutils-r1
+inherit eutils distutils-r1 optfeature
 
 DESCRIPTION="Download image galleries and collections from several image 
hosting sites"
 HOMEPAGE="https://github.com/mikf/gallery-dl;
@@ -16,7 +16,7 @@ if [[ "${PV}" == ** ]]; then
EGIT_REPO_URI="https://github.com/mikf/${PN}.git;
KEYWORDS=""
 else
-   SRC_URI="https://github.com/mikf/${PN}/archive/v${PV}.tar.gz;
+   SRC_URI="https://github.com/mikf/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
KEYWORDS="~amd64"
 fi
 

diff --git a/net-misc/gallery-dl/gallery-dl-.ebuild 
b/net-misc/gallery-dl/gallery-dl-.ebuild
index edcab4bd..da864b88 100644
--- a/net-misc/gallery-dl/gallery-dl-.ebuild
+++ b/net-misc/gallery-dl/gallery-dl-.ebuild
@@ -6,7 +6,7 @@ EAPI=7
 PYTHON_COMPAT=(python3_{6,7,8})
 DISTUTILS_USE_SETUPTOOLS=rdepend
 
-inherit eutils distutils-r1
+inherit eutils distutils-r1 optfeature
 
 DESCRIPTION="Download image galleries and collections from several image 
hosting sites"
 HOMEPAGE="https://github.com/mikf/gallery-dl;
@@ -16,7 +16,7 @@ if [[ "${PV}" == ** ]]; then
EGIT_REPO_URI="https://github.com/mikf/${PN}.git;
KEYWORDS=""
 else
-   SRC_URI="https://github.com/mikf/${PN}/archive/v${PV}.tar.gz;
+   SRC_URI="https://github.com/mikf/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
KEYWORDS="~amd64"
 fi
 



[gentoo-commits] repo/proj/guru:dev commit in: net-misc/gallery-dl/

2020-09-21 Thread Maciej Barć
commit: e41360b410f3e8f40a720e326895e5dd67ec0026
Author: Maciej Barć  protonmail  com>
AuthorDate: Mon Sep 21 18:43:57 2020 +
Commit: Maciej Barć  protonmail  com>
CommitDate: Mon Sep 21 18:43:57 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e41360b4

net-misc/gallery-dl: drop old

Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Maciej Barć  protonmail.com>

 net-misc/gallery-dl/Manifest |  2 --
 net-misc/gallery-dl/gallery-dl-1.14.3.ebuild | 53 
 net-misc/gallery-dl/gallery-dl-1.14.4.ebuild | 53 
 3 files changed, 108 deletions(-)

diff --git a/net-misc/gallery-dl/Manifest b/net-misc/gallery-dl/Manifest
index f13e8d03..c99382cf 100644
--- a/net-misc/gallery-dl/Manifest
+++ b/net-misc/gallery-dl/Manifest
@@ -1,3 +1 @@
-DIST v1.14.3.tar.gz 317004 BLAKE2B 
9ff327dde9e4fb361e87e40b835cf5324f639b0f2d61ff762854d685a381c0f2b098545c295eae0b92fdb67aea23cd03379af3bae22a9a928e4dcb3d5b40f689
 SHA512 
66971ed49c7d90bf249fe5b48848c05f2e085cca04a448fd818b69a0fcd27b8739414ec506f429ef4ca9ae45f7a8919fdfefbd9206bb5bb475ca3e783f5ef494
-DIST v1.14.4.tar.gz 319657 BLAKE2B 
dfcd0b02bf50f232f00e13b1ff762820d4e89d95933bd4ad6635018231de49c98a1097381c1ee5d22e9b9aec9ecd4c6e49a6078b2e26f0291fc216cf8546e1ee
 SHA512 
617c5f938495143388a32583ae712d93b34ffcf1523f04b2fea1ada06c628d49f83eb88527d7c8a67049005961a3eadac5090de418da0e9503904d2ba8a453ff
 DIST v1.15.0.tar.gz 323180 BLAKE2B 
2b0bac0e0a3a3c1c3cab1860f1f584fd09e5f6163a69a94419f2924bd62e1fb9464f8139f6cdce4a7020accaaa44cf1e60c03dab2db7d9568d35693a8f935c4e
 SHA512 
3d15ebeaa088130efb4c33ad2bc2d7ed2af78eafc68ef00b451d65db7f6b589cf10e248c309677dbbfe7202885d602afdbcab330dae0ebce190bd1f5dce25834

diff --git a/net-misc/gallery-dl/gallery-dl-1.14.3.ebuild 
b/net-misc/gallery-dl/gallery-dl-1.14.3.ebuild
deleted file mode 100644
index edcab4bd..
--- a/net-misc/gallery-dl/gallery-dl-1.14.3.ebuild
+++ /dev/null
@@ -1,53 +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})
-DISTUTILS_USE_SETUPTOOLS=rdepend
-
-inherit eutils distutils-r1
-
-DESCRIPTION="Download image galleries and collections from several image 
hosting sites"
-HOMEPAGE="https://github.com/mikf/gallery-dl;
-
-if [[ "${PV}" == ** ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/mikf/${PN}.git;
-   KEYWORDS=""
-else
-   SRC_URI="https://github.com/mikf/${PN}/archive/v${PV}.tar.gz;
-   KEYWORDS="~amd64"
-fi
-
-RESTRICT="test"
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="bash-completion zsh-completion"
-
-RDEPEND="
-   >=dev-python/requests-2.11.0[${PYTHON_USEDEP}]
-"
-
-# tests require network access
-distutils_enable_tests setup.py
-
-src_compile() {
-   if use bash-completion || use zsh-completion
-   then
-   emake completion
-   fi
-
-   emake man
-
-   # this will install shell completion and man pages generated above (if 
any)
-   distutils-r1_src_compile
-}
-
-pkg_postinst() {
-   elog "To get additional features, some optional runtime dependencies"
-   elog "may be installed:"
-   elog ""
-   optfeature "Pixiv Ugoira to WebM conversion" media-video/ffmpeg
-   optfeature "video downloads" net-misc/youtube-dl
-}

diff --git a/net-misc/gallery-dl/gallery-dl-1.14.4.ebuild 
b/net-misc/gallery-dl/gallery-dl-1.14.4.ebuild
deleted file mode 100644
index edcab4bd..
--- a/net-misc/gallery-dl/gallery-dl-1.14.4.ebuild
+++ /dev/null
@@ -1,53 +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})
-DISTUTILS_USE_SETUPTOOLS=rdepend
-
-inherit eutils distutils-r1
-
-DESCRIPTION="Download image galleries and collections from several image 
hosting sites"
-HOMEPAGE="https://github.com/mikf/gallery-dl;
-
-if [[ "${PV}" == ** ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/mikf/${PN}.git;
-   KEYWORDS=""
-else
-   SRC_URI="https://github.com/mikf/${PN}/archive/v${PV}.tar.gz;
-   KEYWORDS="~amd64"
-fi
-
-RESTRICT="test"
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="bash-completion zsh-completion"
-
-RDEPEND="
-   >=dev-python/requests-2.11.0[${PYTHON_USEDEP}]
-"
-
-# tests require network access
-distutils_enable_tests setup.py
-
-src_compile() {
-   if use bash-completion || use zsh-completion
-   then
-   emake completion
-   fi
-
-   emake man
-
-   # this will install shell completion and man pages generated above (if 
any)
-   distutils-r1_src_compile
-}
-
-pkg_postinst() {
-   elog "To get additional features, some optional runtime dependencies"
-   elog "may be installed:"
-   elog ""
-   optfeature "Pixiv Ugoira to WebM conversion" media-video/ffmpeg
-   optfeature "video downloads" net-misc/youtube-dl
-}



[gentoo-commits] repo/proj/guru:dev commit in: net-misc/gallery-dl/

2020-09-21 Thread Maciej Barć
commit: 59aa9d95251fc8e9c508a47a80dcf8342bd2394e
Author: Maciej Barć  protonmail  com>
AuthorDate: Mon Sep 21 18:41:30 2020 +
Commit: Maciej Barć  protonmail  com>
CommitDate: Mon Sep 21 18:41:38 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=59aa9d95

net-misc/gallery-dl: bump to 1.15.0

Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Maciej Barć  protonmail.com>

 net-misc/gallery-dl/Manifest |  1 +
 net-misc/gallery-dl/gallery-dl-1.15.0.ebuild | 53 
 2 files changed, 54 insertions(+)

diff --git a/net-misc/gallery-dl/Manifest b/net-misc/gallery-dl/Manifest
index 077bc6e1..f13e8d03 100644
--- a/net-misc/gallery-dl/Manifest
+++ b/net-misc/gallery-dl/Manifest
@@ -1,2 +1,3 @@
 DIST v1.14.3.tar.gz 317004 BLAKE2B 
9ff327dde9e4fb361e87e40b835cf5324f639b0f2d61ff762854d685a381c0f2b098545c295eae0b92fdb67aea23cd03379af3bae22a9a928e4dcb3d5b40f689
 SHA512 
66971ed49c7d90bf249fe5b48848c05f2e085cca04a448fd818b69a0fcd27b8739414ec506f429ef4ca9ae45f7a8919fdfefbd9206bb5bb475ca3e783f5ef494
 DIST v1.14.4.tar.gz 319657 BLAKE2B 
dfcd0b02bf50f232f00e13b1ff762820d4e89d95933bd4ad6635018231de49c98a1097381c1ee5d22e9b9aec9ecd4c6e49a6078b2e26f0291fc216cf8546e1ee
 SHA512 
617c5f938495143388a32583ae712d93b34ffcf1523f04b2fea1ada06c628d49f83eb88527d7c8a67049005961a3eadac5090de418da0e9503904d2ba8a453ff
+DIST v1.15.0.tar.gz 323180 BLAKE2B 
2b0bac0e0a3a3c1c3cab1860f1f584fd09e5f6163a69a94419f2924bd62e1fb9464f8139f6cdce4a7020accaaa44cf1e60c03dab2db7d9568d35693a8f935c4e
 SHA512 
3d15ebeaa088130efb4c33ad2bc2d7ed2af78eafc68ef00b451d65db7f6b589cf10e248c309677dbbfe7202885d602afdbcab330dae0ebce190bd1f5dce25834

diff --git a/net-misc/gallery-dl/gallery-dl-1.15.0.ebuild 
b/net-misc/gallery-dl/gallery-dl-1.15.0.ebuild
new file mode 100644
index ..edcab4bd
--- /dev/null
+++ b/net-misc/gallery-dl/gallery-dl-1.15.0.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=(python3_{6,7,8})
+DISTUTILS_USE_SETUPTOOLS=rdepend
+
+inherit eutils distutils-r1
+
+DESCRIPTION="Download image galleries and collections from several image 
hosting sites"
+HOMEPAGE="https://github.com/mikf/gallery-dl;
+
+if [[ "${PV}" == ** ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/mikf/${PN}.git;
+   KEYWORDS=""
+else
+   SRC_URI="https://github.com/mikf/${PN}/archive/v${PV}.tar.gz;
+   KEYWORDS="~amd64"
+fi
+
+RESTRICT="test"
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="bash-completion zsh-completion"
+
+RDEPEND="
+   >=dev-python/requests-2.11.0[${PYTHON_USEDEP}]
+"
+
+# tests require network access
+distutils_enable_tests setup.py
+
+src_compile() {
+   if use bash-completion || use zsh-completion
+   then
+   emake completion
+   fi
+
+   emake man
+
+   # this will install shell completion and man pages generated above (if 
any)
+   distutils-r1_src_compile
+}
+
+pkg_postinst() {
+   elog "To get additional features, some optional runtime dependencies"
+   elog "may be installed:"
+   elog ""
+   optfeature "Pixiv Ugoira to WebM conversion" media-video/ffmpeg
+   optfeature "video downloads" net-misc/youtube-dl
+}



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

2020-09-21 Thread Jory Pratt
commit: 3e36126cb0cc8e7bc0bc26fa7d1939691e99351e
Author: Jory Pratt  gentoo  org>
AuthorDate: Mon Sep 21 22:34:06 2020 +
Commit: Jory Pratt  gentoo  org>
CommitDate: Mon Sep 21 22:34:06 2020 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=3e36126c

dev-libs/glib: adjust keywords for supported archs only

Package-Manager: Portage-3.0.7, Repoman-3.0.1
Signed-off-by: Jory Pratt  gentoo.org>

 dev-libs/glib/glib-2.64.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/glib/glib-2.64.5.ebuild b/dev-libs/glib/glib-2.64.5.ebuild
index 602bf38..90ce24b 100644
--- a/dev-libs/glib/glib-2.64.5.ebuild
+++ b/dev-libs/glib/glib-2.64.5.ebuild
@@ -14,7 +14,7 @@ SLOT="2"
 IUSE="dbus debug elibc_glibc fam gtk-doc kernel_linux +mime selinux 
static-libs systemtap test utils xattr"
 RESTRICT="!test? ( test )"
 
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 arm arm64 ~mips ~ppc ~ppc64 x86"
 
 # * libelf isn't strictly necessary, but makes gresource tool more useful, and
 # the check is automagic in gio/meson.build. gresource is not a multilib tool



[gentoo-commits] proj/musl:master commit in: dev-libs/glib/files/, dev-libs/glib/

2020-09-21 Thread Jory Pratt
commit: 65a69894a656ecde80555e07d13b339d3318c29e
Author: Dave Flogeras  gmail  com>
AuthorDate: Mon Sep 14 16:03:05 2020 +
Commit: Jory Pratt  gentoo  org>
CommitDate: Mon Sep 21 22:31:55 2020 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=65a69894

dev-libs/glib-2.64.5: sync with tree

Signed-off-by: Jory Pratt  gentoo.org>

 dev-libs/glib/Manifest |   1 +
 ...-2.64.1-mark-gdbus-server-auth-test-flaky.patch |  32 +++
 dev-libs/glib/glib-2.64.5.ebuild   | 290 +
 3 files changed, 323 insertions(+)

diff --git a/dev-libs/glib/Manifest b/dev-libs/glib/Manifest
index f4bcefc..ea11016 100644
--- a/dev-libs/glib/Manifest
+++ b/dev-libs/glib/Manifest
@@ -1 +1,2 @@
 DIST glib-2.62.6.tar.xz 4703424 BLAKE2B 
0a27245be2575c574dcc730dd051a8c284f421dbc46579aadc5fbbacb8f934af4374b61bb26085e5c9ab78a868c567818f3fb9d67adddce37f5c4fec00e0d276
 SHA512 
8e3972a371f3c1a50b7d245b30e4f740583ad72ba4ab325e0e15e0732be44dfb69b603fb39dcf4989255a23a181e9ea5dd25982dd94c386cd9f21952243ad6f5
+DIST glib-2.64.5.tar.xz 4778456 BLAKE2B 
7fdee0e16a7ac820f4c4f7dc66d37add464d3005e89e6013302d3ef103319331811d68e9b42db072b82242c3d7badfbd085b69333e770012def89dc8aae7a2eb
 SHA512 
a87537274619b6de88a0e68555059036ac18c748b5005c8d84728646b0db342fde0b8c5b303b9ad79f64d71ea4ed990d52a4fbd68cda3ca74aed5fe4d497e060

diff --git 
a/dev-libs/glib/files/glib-2.64.1-mark-gdbus-server-auth-test-flaky.patch 
b/dev-libs/glib/files/glib-2.64.1-mark-gdbus-server-auth-test-flaky.patch
new file mode 100644
index 000..d1a41ec
--- /dev/null
+++ b/dev-libs/glib/files/glib-2.64.1-mark-gdbus-server-auth-test-flaky.patch
@@ -0,0 +1,32 @@
+From 95b22035f6151ab465c37fe5e3e340713cb74e23 Mon Sep 17 00:00:00 2001
+From: Matt Turner 
+Date: Tue, 24 Mar 2020 18:44:54 -0700
+Subject: [PATCH] Mark gdbus-server-auth test flaky
+
+See https://gitlab.gnome.org/GNOME/glib/-/issues/1954
+---
+ gio/tests/meson.build | 3 ++-
+ 1 file changed, 2 insertions(+), 1 deletion(-)
+
+diff --git a/gio/tests/meson.build b/gio/tests/meson.build
+index 788cf978b..7f45d0191 100644
+--- a/gio/tests/meson.build
 b/gio/tests/meson.build
+@@ -122,12 +122,13 @@ if dbus1_dep.found()
+ },
+ 'gdbus-server-auth' : {
+   'dependencies' : [dbus1_dep],
++  'suite' : ['flaky'],
+ },
+   }
+ else
+   # We can build a cut-down version of this test without libdbus
+   gio_tests += {
+-'gdbus-server-auth' : {},
++'gdbus-server-auth' : {'suite' : ['flaky']},
+   }
+ endif
+ 
+-- 
+2.24.1
+

diff --git a/dev-libs/glib/glib-2.64.5.ebuild b/dev-libs/glib/glib-2.64.5.ebuild
new file mode 100644
index 000..602bf38
--- /dev/null
+++ b/dev-libs/glib/glib-2.64.5.ebuild
@@ -0,0 +1,290 @@
+# 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 flag-o-matic gnome.org gnome2-utils linux-info meson multilib 
multilib-minimal python-any-r1 toolchain-funcs xdg
+
+DESCRIPTION="The GLib library of C routines"
+HOMEPAGE="https://www.gtk.org/;
+
+LICENSE="LGPL-2.1+"
+SLOT="2"
+IUSE="dbus debug elibc_glibc fam gtk-doc kernel_linux +mime selinux 
static-libs systemtap test utils xattr"
+RESTRICT="!test? ( test )"
+
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc x86 ~amd64-linux ~x86-linux"
+
+# * libelf isn't strictly necessary, but makes gresource tool more useful, and
+# the check is automagic in gio/meson.build. gresource is not a multilib tool
+# right now, thus it doesn't matter if non-native ABI libelf exists or not
+# (non-native binary is overwritten, it doesn't matter if libelf was linked 
to).
+# * elfutils (via libelf) does not build on Windows. gresources are not 
embedded
+# within ELF binaries on that platform anyway and inspecting ELF binaries from
+# other platforms is not that useful so exclude the dependency in this case.
+# * Technically static-libs is needed on zlib, util-linux and perhaps more, but
+# these are used by GIO, which glib[static-libs] consumers don't really seem
+# to need at all, thus not imposing the deps for now and once some consumers
+# are actually found to static link libgio-2.0.a, we can revisit and either add
+# them or just put the (build) deps in that rare consumer instead of recursive
+# RDEPEND here (due to lack of recursive DEPEND).
+RDEPEND="
+   !=virtual/libiconv-0-r1[${MULTILIB_USEDEP}]
+   >=dev-libs/libpcre-8.31:3[${MULTILIB_USEDEP},static-libs?]
+   >=dev-libs/libffi-3.0.13-r1:=[${MULTILIB_USEDEP}]
+   >=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}]
+   >=virtual/libintl-0-r2[${MULTILIB_USEDEP}]
+   kernel_linux? ( >=sys-apps/util-linux-2.23[${MULTILIB_USEDEP}] )
+   selinux? ( >=sys-libs/libselinux-2.2.2-r5[${MULTILIB_USEDEP}] )
+   xattr? ( !elibc_glibc? ( >=sys-apps/attr-2.4.47-r1[${MULTILIB_USEDEP}] 
) )
+   !kernel_Winnt? ( virtual/libelf:0= )
+   fam? ( 

[gentoo-commits] proj/kde:master commit in: kde-plasma/user-manager/

2020-09-21 Thread Andreas Sturmlechner
commit: 07aa60f3d31ee2fae0cffc46ac35eaad43175837
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Sep 21 13:46:54 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Sep 21 13:46:54 2020 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=07aa60f3

kde-plasma/user-manager: Drop leftover directory

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 kde-plasma/user-manager/metadata.xml | 8 
 1 file changed, 8 deletions(-)

diff --git a/kde-plasma/user-manager/metadata.xml 
b/kde-plasma/user-manager/metadata.xml
deleted file mode 100644
index 2fdbf33d96..00
--- a/kde-plasma/user-manager/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   k...@gentoo.org
-   Gentoo KDE Project
-   
-



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

2020-09-21 Thread Andreas Sturmlechner
commit: 3dec9e54e4beafa239e620865096f12785d14710
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Sep 21 21:56:15 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Sep 21 22:07:51 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3dec9e54

kde-misc/markdownpart: 0.1.1 version bump

See also:
https://mail.kde.org/pipermail/kde-announce-apps/2020-September/005607.html

Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 kde-misc/markdownpart/Manifest  |  1 +
 kde-misc/markdownpart/markdownpart-0.1.1.ebuild | 32 +
 2 files changed, 33 insertions(+)

diff --git a/kde-misc/markdownpart/Manifest b/kde-misc/markdownpart/Manifest
index 3e5b518edc1..f14b22318ff 100644
--- a/kde-misc/markdownpart/Manifest
+++ b/kde-misc/markdownpart/Manifest
@@ -1 +1,2 @@
 DIST markdownpart-0.1.0.tar.xz 17232 BLAKE2B 
f4f9358e659370b6c7bca50ba314a8aea2deb29b83c3d382ee6585aa250aa4ac8b5b0bd9bbedd304bd2c20ac96c620fc32cfc86af000b92e8cd95ad11bc8521c
 SHA512 
0c8c916090151b1dd048bb00d1b9bf6ec9945753863fac62497c843a61d1706856ff83bf601eb82a1a6d2418ad0c0769cce78d27d42d38cb57e91d40a8ad8940
+DIST markdownpart-0.1.1.tar.xz 25200 BLAKE2B 
cb437fc82b1ad88b95761240dc35cfa2f092f10ce4db0e75550caeaba839a009dd722bdbcacadd49e9c7c4fc4d64dad4c8907e0bbbf0b02f67bd67f5d9caea72
 SHA512 
9d02ec9e2d6099abe5b19674abcfb7f63af2c923eb2ed881ca0bd0dee52097a82e222962043a94ab55353f49ba33b50cc200753d8e06a36166f1f48d0baf7ec7

diff --git a/kde-misc/markdownpart/markdownpart-0.1.1.ebuild 
b/kde-misc/markdownpart/markdownpart-0.1.1.ebuild
new file mode 100644
index 000..942b94c616e
--- /dev/null
+++ b/kde-misc/markdownpart/markdownpart-0.1.1.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+KFMIN=5.70.0
+QTMIN=5.14.2
+inherit ecm kde.org
+
+if [[ ${KDE_BUILD_TYPE} = release ]]; then
+   SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.xz"
+   KEYWORDS="~amd64"
+fi
+
+DESCRIPTION="Markdown viewer KParts plugin based on QTextDocument"
+HOMEPAGE="https://invent.kde.org/utilities/markdownpart;
+
+LICENSE="LGPL-2.1+"
+SLOT="5"
+IUSE=""
+
+DEPEND="
+   >=dev-qt/qtgui-${QTMIN}:5
+   >=dev-qt/qtwidgets-${QTMIN}:5
+   >=kde-frameworks/kconfigwidgets-${KFMIN}:5
+   >=kde-frameworks/kcoreaddons-${KFMIN}:5
+   >=kde-frameworks/ki18n-${KFMIN}:5
+   >=kde-frameworks/kio-${KFMIN}:5
+   >=kde-frameworks/kparts-${KFMIN}:5
+   >=kde-frameworks/kxmlgui-${KFMIN}:5
+"
+RDEPEND="${DEPEND}"



[gentoo-commits] repo/gentoo:master commit in: dev-haskell/regex-pcre-builtin/

2020-09-21 Thread Sergei Trofimovich
commit: 07d3fa8c59b769389368d05c13b028c75b61d410
Author: Jack Todaro  posteo  org>
AuthorDate: Mon Sep 21 08:20:24 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Sep 21 22:07:34 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07d3fa8c

dev-haskell/regex-pcre-builtin: bump up to 0.95.1.2.8.43

Package-Manager: Portage-3.0.7, Repoman-3.0.1
Signed-off-by: Jack Todaro  posteo.org>
Closes: https://github.com/gentoo/gentoo/pull/17622
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-haskell/regex-pcre-builtin/Manifest|  1 +
 .../regex-pcre-builtin-0.95.1.2.8.43.ebuild| 34 ++
 2 files changed, 35 insertions(+)

diff --git a/dev-haskell/regex-pcre-builtin/Manifest 
b/dev-haskell/regex-pcre-builtin/Manifest
index a32c1f9cf7e..19a04920b5c 100644
--- a/dev-haskell/regex-pcre-builtin/Manifest
+++ b/dev-haskell/regex-pcre-builtin/Manifest
@@ -1 +1,2 @@
 DIST regex-pcre-builtin-0.95.1.1.8.43.tar.gz 564650 BLAKE2B 
b8d2c39fde61b202eedbd8eead11685bbb1a1ebf1f4c8d6c59a2b9f87810e87df1a07356445582685778457570ff51db2d55786736e8302f7d9adf8144153dcd
 SHA512 
229c863a32dd36707d130aac5dbda8bfbcfc33062232668f32c5ec7c2622257e8d07f1424727242a531ebaeff2b9fb6b40ed5ceab18b61feb6ec41fb8298d008
+DIST regex-pcre-builtin-0.95.1.2.8.43.tar.gz 330306 BLAKE2B 
bbfc3c509b6d2d5d5dc1affd0519507f90946da4be69b75f12cf687eaf234f98d394d778955507120ed6529d81f199c4ba9b7c8f278706d648e2bc609bdcc51c
 SHA512 
6d11d68636ced3bc443b4f4ff20bee8d431df02eb91a099e31a6a66493a1f7f6674571a45d7d47efc50f8ad8d79f518f28c157cdf97cf3773af590a5a385ddeb

diff --git 
a/dev-haskell/regex-pcre-builtin/regex-pcre-builtin-0.95.1.2.8.43.ebuild 
b/dev-haskell/regex-pcre-builtin/regex-pcre-builtin-0.95.1.2.8.43.ebuild
new file mode 100644
index 000..b8e52983ce9
--- /dev/null
+++ b/dev-haskell/regex-pcre-builtin/regex-pcre-builtin-0.95.1.2.8.43.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+# ebuild generated by hackport 0.6.6.
+#hackport: flags: +newbase,+splitbase
+
+CABAL_FEATURES="lib profile haddock hoogle hscolour"
+inherit haskell-cabal
+
+DESCRIPTION="PCRE Backend for \"Text.Regex\" (regex-base)"
+HOMEPAGE="https://hackage.haskell.org/package/regex-pcre-builtin;
+SRC_URI="https://hackage.haskell.org/package/${P}/${P}.tar.gz;
+
+LICENSE="BSD"
+SLOT="0/${PV}"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND=">=dev-haskell/fail-4.9:=[profile?] =dev-haskell/regex-base-0.94:=[profile?] 
=dev-haskell/text-1.2.3:=[profile?] =dev-lang/ghc-7.4.1:=
+"
+DEPEND="${RDEPEND}
+   >=dev-haskell/cabal-1.10
+"
+
+src_configure() {
+   haskell-cabal_src_configure \
+   --flag=newbase \
+   --flag=splitbase
+}



[gentoo-commits] repo/gentoo:master commit in: dev-haskell/regex-pcre-builtin/

2020-09-21 Thread Sergei Trofimovich
commit: 221ec497389a71b70f302570074e208407202c41
Author: Jack Todaro  posteo  org>
AuthorDate: Mon Sep 21 08:21:50 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Sep 21 22:07:34 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=221ec497

dev-haskell/regex-pcre-builtin: drop old

Package-Manager: Portage-3.0.7, Repoman-3.0.1
Signed-off-by: Jack Todaro  posteo.org>
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-haskell/regex-pcre-builtin/Manifest|  1 -
 .../regex-pcre-builtin-0.95.1.1.8.43.ebuild| 41 --
 2 files changed, 42 deletions(-)

diff --git a/dev-haskell/regex-pcre-builtin/Manifest 
b/dev-haskell/regex-pcre-builtin/Manifest
index 19a04920b5c..4da2ac98603 100644
--- a/dev-haskell/regex-pcre-builtin/Manifest
+++ b/dev-haskell/regex-pcre-builtin/Manifest
@@ -1,2 +1 @@
-DIST regex-pcre-builtin-0.95.1.1.8.43.tar.gz 564650 BLAKE2B 
b8d2c39fde61b202eedbd8eead11685bbb1a1ebf1f4c8d6c59a2b9f87810e87df1a07356445582685778457570ff51db2d55786736e8302f7d9adf8144153dcd
 SHA512 
229c863a32dd36707d130aac5dbda8bfbcfc33062232668f32c5ec7c2622257e8d07f1424727242a531ebaeff2b9fb6b40ed5ceab18b61feb6ec41fb8298d008
 DIST regex-pcre-builtin-0.95.1.2.8.43.tar.gz 330306 BLAKE2B 
bbfc3c509b6d2d5d5dc1affd0519507f90946da4be69b75f12cf687eaf234f98d394d778955507120ed6529d81f199c4ba9b7c8f278706d648e2bc609bdcc51c
 SHA512 
6d11d68636ced3bc443b4f4ff20bee8d431df02eb91a099e31a6a66493a1f7f6674571a45d7d47efc50f8ad8d79f518f28c157cdf97cf3773af590a5a385ddeb

diff --git 
a/dev-haskell/regex-pcre-builtin/regex-pcre-builtin-0.95.1.1.8.43.ebuild 
b/dev-haskell/regex-pcre-builtin/regex-pcre-builtin-0.95.1.1.8.43.ebuild
deleted file mode 100644
index 5b5d05e16aa..000
--- a/dev-haskell/regex-pcre-builtin/regex-pcre-builtin-0.95.1.1.8.43.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-# ebuild generated by hackport 0.6.1.
-#hackport: flags: +newbase,+splitbase
-
-CABAL_FEATURES="lib profile haddock hoogle hscolour"
-inherit haskell-cabal
-
-DESCRIPTION="Replaces/Enhances Text.Regex"
-HOMEPAGE="https://hackage.haskell.org/package/regex-pcre-builtin;
-SRC_URI="https://hackage.haskell.org/package/${P}/${P}.tar.gz;
-
-LICENSE="BSD"
-SLOT="0/${PV}"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND=">=dev-haskell/fail-4.9:=[profile?] =dev-haskell/regex-base-0.94:=[profile?] 
=dev-haskell/text-1.2.3:=[profile?] =dev-lang/ghc-7.4.1:=
-"
-DEPEND="${RDEPEND}
-   >=dev-haskell/cabal-1.10
-"
-
-src_prepare() {
-   default
-
-   cabal_chdeps \
-   'base   >= 4.3 && < 4.14' 'base   >= 4.3'
-}
-
-src_configure() {
-   haskell-cabal_src_configure \
-   --flag=newbase \
-   --flag=splitbase
-}



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

2020-09-21 Thread Andreas Sturmlechner
commit: 95ad580786dcca9ab9488ba68cd84b3e73b3c4e3
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Sep 21 22:02:57 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Sep 21 22:07:52 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95ad5807

kde-misc/kmarkdownwebview: 0.5.6 version bump

See also:
https://mail.kde.org/pipermail/kde-announce-apps/2020-September/005608.html

Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 kde-misc/kmarkdownwebview/Manifest |  1 +
 .../kmarkdownwebview/kmarkdownwebview-0.5.6.ebuild | 36 ++
 2 files changed, 37 insertions(+)

diff --git a/kde-misc/kmarkdownwebview/Manifest 
b/kde-misc/kmarkdownwebview/Manifest
index 579aa46d6fd..18c160197d2 100644
--- a/kde-misc/kmarkdownwebview/Manifest
+++ b/kde-misc/kmarkdownwebview/Manifest
@@ -1 +1,2 @@
 DIST kmarkdownwebview-0.5.5.tar.xz 64468 BLAKE2B 
7116173ace51c3b4189c5af433114e6a7156ad6ce8381078d61aa20e17c4e067b2affa0f816fed27b02c4ddc0f4c15263220384a9afc6ae592b287dac2d93938
 SHA512 
c10bb4da4ff2b3a05dc82887ddbc45447387a4cd4bee64cefb5f21e42dbbb777b3b00118867e78af684c579e4f3c604be1973b1ee4e18692fc6bfd6b24bffeee
+DIST kmarkdownwebview-0.5.6.tar.xz 68992 BLAKE2B 
cf2dd0718c6517b7ff3cebd032410b695a4ec40e6c51c93ac3f8f85cd3ffdb9a23c1922ac7f7e097412f0ea76891ea067ca2633d036dba8e45ff3fd6cc468f9b
 SHA512 
51c99da9cb2fd0868bf0bc18e89efad75d70758343cf2b4d05e4eec00d328cc041ee9c8b90c402dc137afab5266e9dfb8877832064305de5a836c4aa94af4e4e

diff --git a/kde-misc/kmarkdownwebview/kmarkdownwebview-0.5.6.ebuild 
b/kde-misc/kmarkdownwebview/kmarkdownwebview-0.5.6.ebuild
new file mode 100644
index 000..a39961d2e0a
--- /dev/null
+++ b/kde-misc/kmarkdownwebview/kmarkdownwebview-0.5.6.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit ecm kde.org
+
+DESCRIPTION="KPart for rendering Markdown content"
+HOMEPAGE="https://frinring.wordpress.com/2017/09/14/kmarkdownwebview-0-1-0/;
+SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.xz"
+
+LICENSE="BSD LGPL-2.1+"
+SLOT="5"
+KEYWORDS="~amd64"
+IUSE=""
+
+DEPEND="
+   dev-qt/qtgui:5
+   dev-qt/qtwebchannel:5
+   dev-qt/qtwebengine:5[widgets]
+   dev-qt/qtwidgets:5
+   kde-frameworks/kconfigwidgets:5
+   kde-frameworks/kcoreaddons:5
+   kde-frameworks/ki18n:5
+   kde-frameworks/kio:5
+   kde-frameworks/kparts:5
+   kde-frameworks/kxmlgui:5
+"
+RDEPEND="${DEPEND}"
+
+src_configure() {
+   local mycmakeargs=(
+   -DUSE_QTWEBKIT=OFF
+   )
+   ecm_src_configure
+}



[gentoo-commits] repo/gentoo:master commit in: dev-haskell/texmath/

2020-09-21 Thread Sergei Trofimovich
commit: 5c8c1cf2fefafd048425f0f9b1124cff1323d7e8
Author: Jack Todaro  posteo  org>
AuthorDate: Mon Sep 21 08:23:11 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Sep 21 22:07:35 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c8c1cf2

dev-haskell/texmath: bump up to 0.12.0.3

Package-Manager: Portage-3.0.7, Repoman-3.0.1
Signed-off-by: Jack Todaro  posteo.org>
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-haskell/texmath/Manifest|  1 +
 dev-haskell/texmath/texmath-0.12.0.3.ebuild | 41 +
 2 files changed, 42 insertions(+)

diff --git a/dev-haskell/texmath/Manifest b/dev-haskell/texmath/Manifest
index 0d757969b42..cd18604c0a1 100644
--- a/dev-haskell/texmath/Manifest
+++ b/dev-haskell/texmath/Manifest
@@ -1 +1,2 @@
 DIST texmath-0.12.0.2.tar.gz 1792597 BLAKE2B 
17981e435d870a4640f6a773be02e99dbaee295a420b11f90f357b9b483e9b8f5ff3b0363178b9fc57afbf7ff99328454af9c6ae8606a194a57d72ddbef968e0
 SHA512 
d5b3418492495f59b493bc418e68f4e66f7d2b4eb1293b540b1eb00312a7cded7eb4dba9b178224d311a1999fefac49b5cbb5caa50a85296292cb35d5806dfc6
+DIST texmath-0.12.0.3.tar.gz 1792577 BLAKE2B 
0c5ecb7cc49a53ad0ce54755a2a8518066223733b51287013d6e649fdb94b022a9ab81ceb3bb42b80b84bf75e9aa0088adbafe76e147d5314907d8aeb6be9a8e
 SHA512 
54b4789559dc7c6973854c290b018e7c00dd0ff1c06d8045b5d0a2304436bb59a951e93ab2c9d1d133a9d7c5197cc456334d40dc112c6c6a8f8e9370ab8aa190

diff --git a/dev-haskell/texmath/texmath-0.12.0.3.ebuild 
b/dev-haskell/texmath/texmath-0.12.0.3.ebuild
new file mode 100644
index 000..9ac897e1ba4
--- /dev/null
+++ b/dev-haskell/texmath/texmath-0.12.0.3.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+# ebuild generated by hackport 0.6.6.
+
+CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite"
+inherit haskell-cabal
+
+DESCRIPTION="Conversion between formats used to represent mathematics"
+HOMEPAGE="https://github.com/jgm/texmath;
+SRC_URI="https://hackage.haskell.org/package/${P}/${P}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0/${PV}"
+KEYWORDS="~amd64 ~x86"
+IUSE="executable +network-uri"
+
+RDEPEND="dev-haskell/mtl:=[profile?]
+   >=dev-haskell/pandoc-types-1.20:=[profile?] 
=dev-haskell/parsec-3:=[profile?]
+   >=dev-haskell/syb-0.4.2:=[profile?] =dev-lang/ghc-7.10.1:=
+   executable? ( dev-haskell/aeson:=[profile?]
+   network-uri? ( 
>=dev-haskell/network-uri-2.6:=[profile?] )
+   !network-uri? ( 

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

2020-09-21 Thread Andreas Sturmlechner
commit: 690e1bfe48b41c743bda88e59098cea216c49aeb
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Sep 21 22:03:27 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Sep 21 22:07:52 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=690e1bfe

kde-misc/markdownpart: Drop 0.1.0

Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 kde-misc/markdownpart/Manifest  |  1 -
 kde-misc/markdownpart/markdownpart-0.1.0.ebuild | 32 -
 2 files changed, 33 deletions(-)

diff --git a/kde-misc/markdownpart/Manifest b/kde-misc/markdownpart/Manifest
index f14b22318ff..c60d5c7176e 100644
--- a/kde-misc/markdownpart/Manifest
+++ b/kde-misc/markdownpart/Manifest
@@ -1,2 +1 @@
-DIST markdownpart-0.1.0.tar.xz 17232 BLAKE2B 
f4f9358e659370b6c7bca50ba314a8aea2deb29b83c3d382ee6585aa250aa4ac8b5b0bd9bbedd304bd2c20ac96c620fc32cfc86af000b92e8cd95ad11bc8521c
 SHA512 
0c8c916090151b1dd048bb00d1b9bf6ec9945753863fac62497c843a61d1706856ff83bf601eb82a1a6d2418ad0c0769cce78d27d42d38cb57e91d40a8ad8940
 DIST markdownpart-0.1.1.tar.xz 25200 BLAKE2B 
cb437fc82b1ad88b95761240dc35cfa2f092f10ce4db0e75550caeaba839a009dd722bdbcacadd49e9c7c4fc4d64dad4c8907e0bbbf0b02f67bd67f5d9caea72
 SHA512 
9d02ec9e2d6099abe5b19674abcfb7f63af2c923eb2ed881ca0bd0dee52097a82e222962043a94ab55353f49ba33b50cc200753d8e06a36166f1f48d0baf7ec7

diff --git a/kde-misc/markdownpart/markdownpart-0.1.0.ebuild 
b/kde-misc/markdownpart/markdownpart-0.1.0.ebuild
deleted file mode 100644
index 08b5653d4c8..000
--- a/kde-misc/markdownpart/markdownpart-0.1.0.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-KFMIN=5.70.0
-QTMIN=5.15.0
-inherit ecm kde.org
-
-if [[ ${KDE_BUILD_TYPE} = release ]]; then
-   SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.xz"
-   KEYWORDS="~amd64"
-fi
-
-DESCRIPTION="Markdown viewer KParts plugin based on QTextDocument"
-HOMEPAGE="https://invent.kde.org/utilities/markdownpart;
-
-LICENSE="LGPL-2.1+"
-SLOT="5"
-IUSE=""
-
-DEPEND="
-   >=dev-qt/qtgui-${QTMIN}:5
-   >=dev-qt/qtwidgets-${QTMIN}:5
-   >=kde-frameworks/kconfigwidgets-${KFMIN}:5
-   >=kde-frameworks/kcoreaddons-${KFMIN}:5
-   >=kde-frameworks/ki18n-${KFMIN}:5
-   >=kde-frameworks/kio-${KFMIN}:5
-   >=kde-frameworks/kparts-${KFMIN}:5
-   >=kde-frameworks/kxmlgui-${KFMIN}:5
-"
-RDEPEND="${DEPEND}"



[gentoo-commits] repo/gentoo:master commit in: dev-haskell/texmath/

2020-09-21 Thread Sergei Trofimovich
commit: 58a877d28e9a282d7054e43a217b154003f6e27c
Author: Jack Todaro  posteo  org>
AuthorDate: Mon Sep 21 08:24:31 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Sep 21 22:07:38 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58a877d2

dev-haskell/texmath: drop old

Package-Manager: Portage-3.0.7, Repoman-3.0.1
Signed-off-by: Jack Todaro  posteo.org>
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-haskell/texmath/Manifest|  1 -
 dev-haskell/texmath/texmath-0.12.0.2.ebuild | 41 -
 2 files changed, 42 deletions(-)

diff --git a/dev-haskell/texmath/Manifest b/dev-haskell/texmath/Manifest
index cd18604c0a1..7fae6e90550 100644
--- a/dev-haskell/texmath/Manifest
+++ b/dev-haskell/texmath/Manifest
@@ -1,2 +1 @@
-DIST texmath-0.12.0.2.tar.gz 1792597 BLAKE2B 
17981e435d870a4640f6a773be02e99dbaee295a420b11f90f357b9b483e9b8f5ff3b0363178b9fc57afbf7ff99328454af9c6ae8606a194a57d72ddbef968e0
 SHA512 
d5b3418492495f59b493bc418e68f4e66f7d2b4eb1293b540b1eb00312a7cded7eb4dba9b178224d311a1999fefac49b5cbb5caa50a85296292cb35d5806dfc6
 DIST texmath-0.12.0.3.tar.gz 1792577 BLAKE2B 
0c5ecb7cc49a53ad0ce54755a2a8518066223733b51287013d6e649fdb94b022a9ab81ceb3bb42b80b84bf75e9aa0088adbafe76e147d5314907d8aeb6be9a8e
 SHA512 
54b4789559dc7c6973854c290b018e7c00dd0ff1c06d8045b5d0a2304436bb59a951e93ab2c9d1d133a9d7c5197cc456334d40dc112c6c6a8f8e9370ab8aa190

diff --git a/dev-haskell/texmath/texmath-0.12.0.2.ebuild 
b/dev-haskell/texmath/texmath-0.12.0.2.ebuild
deleted file mode 100644
index c116e53f3dc..000
--- a/dev-haskell/texmath/texmath-0.12.0.2.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-# ebuild generated by hackport 0.6.4.
-
-CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite"
-inherit haskell-cabal
-
-DESCRIPTION="Conversion between formats used to represent mathematics"
-HOMEPAGE="https://github.com/jgm/texmath;
-SRC_URI="https://hackage.haskell.org/package/${P}/${P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0/${PV}"
-KEYWORDS="~amd64 ~x86"
-IUSE="executable +network-uri"
-
-RDEPEND="dev-haskell/mtl:=[profile?]
-   >=dev-haskell/pandoc-types-1.20:=[profile?] 
=dev-haskell/parsec-3:=[profile?]
-   >=dev-haskell/syb-0.4.2:=[profile?] =dev-lang/ghc-8.8.1:=
-   executable? ( dev-haskell/aeson:=[profile?]
-   network-uri? ( 
>=dev-haskell/network-uri-2.6:=[profile?] )
-   !network-uri? ( 

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

2020-09-21 Thread Conrad Kostecki
commit: 1da81d975921e53f6944a19bfe694bedb2151756
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Mon Sep 14 17:11:04 2020 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Mon Sep 21 21:48:27 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1da81d97

app-emulation/virtualbox: remove unused file

Closes: https://github.com/gentoo/gentoo/pull/17537
Package-Manager: Portage-3.0.6, Repoman-3.0.1
Signed-off-by: Michael Mair-Keimberger  gmail.com>
Signed-off-by: Conrad Kostecki  gentoo.org>

 app-emulation/virtualbox/files/virtualbox-ose.desktop-2 | 8 
 1 file changed, 8 deletions(-)

diff --git a/app-emulation/virtualbox/files/virtualbox-ose.desktop-2 
b/app-emulation/virtualbox/files/virtualbox-ose.desktop-2
deleted file mode 100644
index ce798dacbdf..000
--- a/app-emulation/virtualbox/files/virtualbox-ose.desktop-2
+++ /dev/null
@@ -1,8 +0,0 @@
-[Desktop Entry]
-Name=Oracle xVM VirtualBox
-Type=Application
-Comment=Run several virtual systems on a single host computer
-Exec=VirtualBox
-TryExec=VirtualBox
-Icon=virtualbox
-Categories=System;Emulator;



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

2020-09-21 Thread Conrad Kostecki
commit: a203aaed618ee2eec381ce53fb08e2e8fbfadd89
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Tue Sep 15 18:08:47 2020 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Mon Sep 21 21:48:30 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a203aaed

dev-python/lz4: remove unused file

Closes: https://github.com/gentoo/gentoo/pull/17554
Package-Manager: Portage-3.0.6, Repoman-3.0.1
Signed-off-by: Michael Mair-Keimberger  gmail.com>
Signed-off-by: Conrad Kostecki  gentoo.org>

 dev-python/lz4/files/test.py | 16 
 1 file changed, 16 deletions(-)

diff --git a/dev-python/lz4/files/test.py b/dev-python/lz4/files/test.py
deleted file mode 100644
index 9469a03da32..000
--- a/dev-python/lz4/files/test.py
+++ /dev/null
@@ -1,16 +0,0 @@
-import lz4
-import sys
-
-
-import unittest
-import os
-
-class TestLZ4(unittest.TestCase):
-
-def test_random(self):
-  DATA = os.urandom(128 * 1024)  # Read 128kb
-  self.assertEqual(DATA, lz4.loads(lz4.dumps(DATA)))
-
-if __name__ == '__main__':
-unittest.main()
-



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

2020-09-21 Thread Conrad Kostecki
commit: 54c13e03a393591bd5396e7de7fb97ebd8d78f9a
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Mon Sep 21 18:43:04 2020 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Mon Sep 21 21:48:32 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54c13e03

dev-lang/spidermonkey: remove unused patch

Closes: https://github.com/gentoo/gentoo/pull/17630
Package-Manager: Portage-3.0.7, Repoman-3.0.1
Signed-off-by: Michael Mair-Keimberger  gmail.com>
Signed-off-by: Conrad Kostecki  gentoo.org>

 .../files/spidermonkey-17.0.0-unbreak-clang.patch  | 32 --
 1 file changed, 32 deletions(-)

diff --git 
a/dev-lang/spidermonkey/files/spidermonkey-17.0.0-unbreak-clang.patch 
b/dev-lang/spidermonkey/files/spidermonkey-17.0.0-unbreak-clang.patch
deleted file mode 100644
index ef428e70b52..000
--- a/dev-lang/spidermonkey/files/spidermonkey-17.0.0-unbreak-clang.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-commit ad6d8397a05a
-Author: Dan Gohman 
-Date:   Thu May 22 11:15:06 2014 -0700
-
-Bug 1012971 - SpiderMonkey: Fix various warnings. r=nbp

- js/public/RootingAPI.h |  4 +++-
- js/src/configure.in|  1 +
- js/src/jit/IonFrames.h | 17 -
- js/src/jit/MIR.h   | 12 +---
- js/src/jit/PerfSpewer.cpp  | 12 ++--
- js/src/jit/RegisterSets.h  |  2 +-
- js/src/jscntxt.h   |  2 +-
- js/src/jsgcinlines.h   |  4 ++--
- js/src/jsopcode.cpp|  2 +-
- js/src/jsscript.cpp|  6 +++---
- js/src/shell/js.cpp|  2 +-
- js/src/vm/ArrayBufferObject.h  | 16 
- js/src/vm/TypedArrayObject.cpp | 26 +-
- 13 files changed, 53 insertions(+), 53 deletions(-)
-
 old/js/src/jsopcode.cpp.orig   2013-02-11 22:33:23 UTC
-+++ new/js/src/jsopcode.cpp
-@@ -6067,7 +6067,7 @@ ExpressionDecompiler::write(JSString *s)
- bool
- ExpressionDecompiler::quote(JSString *s, uint32_t quote)
- {
--return QuoteString(, s, quote) >= 0;
-+return QuoteString(, s, quote) != NULL;
- }
- 
- JSAtom *



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

2020-09-21 Thread Conrad Kostecki
commit: d2afa8d604469e37fa3298a54ddbaab18df5b02f
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sat Sep 19 16:32:32 2020 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Mon Sep 21 21:48:31 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2afa8d6

net-analyzer/chaosreader: remove myself as maintainer

Closes: https://github.com/gentoo/gentoo/pull/17604
Package-Manager: Portage-3.0.7, Repoman-3.0.1
Signed-off-by: Michael Mair-Keimberger  gmail.com>
Signed-off-by: Conrad Kostecki  gentoo.org>

 net-analyzer/chaosreader/metadata.xml | 9 +
 1 file changed, 1 insertion(+), 8 deletions(-)

diff --git a/net-analyzer/chaosreader/metadata.xml 
b/net-analyzer/chaosreader/metadata.xml
index 27213b54134..c0d14fba4c8 100644
--- a/net-analyzer/chaosreader/metadata.xml
+++ b/net-analyzer/chaosreader/metadata.xml
@@ -1,14 +1,7 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   m...@levelnine.at
-   Michael Mair-Keimberger
-   
-   
-   proxy-ma...@gentoo.org
-   Proxy Maintainers
-   
+

chaosreader
brendangregg/chaosreader



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

2020-09-21 Thread Conrad Kostecki
commit: 422ce95c3e8ada2de0bb9f04e161e609bf567fef
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Mon Sep 14 17:36:01 2020 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Mon Sep 21 21:48:28 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=422ce95c

mail-client/roundcube: remove unused file

Closes: https://github.com/gentoo/gentoo/pull/17539
Package-Manager: Portage-3.0.6, Repoman-3.0.1
Signed-off-by: Michael Mair-Keimberger  gmail.com>
Signed-off-by: Conrad Kostecki  gentoo.org>

 mail-client/roundcube/files/POST-UPGRADE.txt | 23 ---
 1 file changed, 23 deletions(-)

diff --git a/mail-client/roundcube/files/POST-UPGRADE.txt 
b/mail-client/roundcube/files/POST-UPGRADE.txt
deleted file mode 100644
index aef86f2217f..000
--- a/mail-client/roundcube/files/POST-UPGRADE.txt
+++ /dev/null
@@ -1,23 +0,0 @@
-Post-Upgrade Activities

-1. Check .htaccess settings (some php settings could become required)
-2. If you're using the built-in addressbook, run indexing script:
-   ./bin/indexcontacts.sh.
-3. When upgrading from version older than 0.6-beta you should make sure your
-   folder settings contain a namespace prefix if necessary. For example Courier
-   users should add "INBOX." prefix to folder names in main configuration file.
-4. Check system requirements in INSTALL file.
-5. If you previously installed plugins through composer, update dependencies by
-   running:
-   php composer.phar self-update
-   php composer.phar update --no-dev
-6. Update your database and configurations by running:
-   ./bin/update.sh
-
-SQLite database upgrade

-Versions older than 0.9 were supporting SQLite v2 only. Newer versions require
-database in v3 format. The best what you can do is to convert database file
-to the new format using command line tools:
-
-sqlite OLD.DB .dump | sqlite3 NEW.DB



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

2020-09-21 Thread Conrad Kostecki
commit: e420584490f83413b7de14f8f9547cce9357d0bd
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Tue Sep 15 18:07:25 2020 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Mon Sep 21 21:48:29 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4205844

dev-lang/mozart: remove unused file

Closes: https://github.com/gentoo/gentoo/pull/17552
Package-Manager: Portage-3.0.6, Repoman-3.0.1
Signed-off-by: Michael Mair-Keimberger  gmail.com>
Signed-off-by: Conrad Kostecki  gentoo.org>

 dev-lang/mozart/files/50mozart-gentoo.el | 11 ---
 1 file changed, 11 deletions(-)

diff --git a/dev-lang/mozart/files/50mozart-gentoo.el 
b/dev-lang/mozart/files/50mozart-gentoo.el
deleted file mode 100644
index 64f65c54a68..000
--- a/dev-lang/mozart/files/50mozart-gentoo.el
+++ /dev/null
@@ -1,11 +0,0 @@
-
-;;; mozart site-lisp configuration
-
-(add-to-list 'load-path "@SITELISP@")
-(autoload 'oz-mode "oz" "Major mode for editing Oz code." t)
-(autoload 'oz-gump-mode "oz"
-  "Major mode for editing Oz code with embedded Gump specifications." t)
-(autoload 'ozm-mode "mozart" "Major mode for displaying Oz machine code." t)
-(add-to-list 'auto-mode-alist '("\\.oz$" . oz-mode))
-(add-to-list 'auto-mode-alist '("\\.ozg$" . oz-gump-mode))
-(add-to-list 'auto-mode-alist '("\\.ozm$" . ozm-mode))



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

2020-09-21 Thread Conrad Kostecki
commit: 5015b08faf87a9906d4bcf8ac8a92804fe95cc7c
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Mon Sep 21 18:41:00 2020 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Mon Sep 21 21:48:32 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5015b08f

app-emulation/qemu: remove unused patches

Closes: https://github.com/gentoo/gentoo/pull/17629
Package-Manager: Portage-3.0.7, Repoman-3.0.1
Signed-off-by: Michael Mair-Keimberger  gmail.com>
Signed-off-by: Conrad Kostecki  gentoo.org>

 .../qemu/files/qemu-5.0.0-epoll-strace.patch   | 50 --
 .../qemu-5.0.0-ipv6-slirp-CVE-2020-10756.patch | 35 ---
 2 files changed, 85 deletions(-)

diff --git a/app-emulation/qemu/files/qemu-5.0.0-epoll-strace.patch 
b/app-emulation/qemu/files/qemu-5.0.0-epoll-strace.patch
deleted file mode 100644
index c0f9a2e008d..000
--- a/app-emulation/qemu/files/qemu-5.0.0-epoll-strace.patch
+++ /dev/null
@@ -1,50 +0,0 @@
-https://lists.nongnu.org/archive/html/qemu-devel/2020-04/msg02643.html
-
-From 6bce23d8daf96a7faa9288e7414948cda31ddaa2 Mon Sep 17 00:00:00 2001
-From: Sergei Trofimovich 
-Date: Thu, 16 Apr 2020 18:55:49 +0100
-Subject: [PATCH] linux-user/strace.list: fix epoll_create{,1} -strace output
-
-Fix syscall name and parameters priinter.
-
-Before the change:
-
-```
-$ alpha-linux-user/qemu-alpha -strace -L /usr/alpha-unknown-linux-gnu/ /tmp/a
-...
-1274697 
%s(%d)(2097152,274903156744,274903156760,274905840712,274877908880,274903235616)
 = 3
-1274697 exit_group(0)
-```
-
-After the change:
-
-```
-$ alpha-linux-user/qemu-alpha -strace -L /usr/alpha-unknown-linux-gnu/ /tmp/a
-...
-1273719 epoll_create1(2097152) = 3
-1273719 exit_group(0)
-```
-
-Signed-off-by: Sergei Trofimovich 

- linux-user/strace.list | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
 a/linux-user/strace.list
-+++ b/linux-user/strace.list
-@@ -125,10 +125,10 @@
- { TARGET_NR_dup3, "dup3" , "%s(%d,%d,%d)", NULL, NULL },
- #endif
- #ifdef TARGET_NR_epoll_create
--{ TARGET_NR_epoll_create, "%s(%d)", NULL, NULL, NULL },
-+{ TARGET_NR_epoll_create, "epoll_create", "%s(%d)", NULL, NULL },
- #endif
- #ifdef TARGET_NR_epoll_create1
--{ TARGET_NR_epoll_create1, "%s(%d)", NULL, NULL, NULL },
-+{ TARGET_NR_epoll_create1, "epoll_create1", "%s(%d)", NULL, NULL },
- #endif
- #ifdef TARGET_NR_epoll_ctl
- { TARGET_NR_epoll_ctl, "epoll_ctl" , NULL, NULL, NULL },
--- 
-2.26.2
-

diff --git 
a/app-emulation/qemu/files/qemu-5.0.0-ipv6-slirp-CVE-2020-10756.patch 
b/app-emulation/qemu/files/qemu-5.0.0-ipv6-slirp-CVE-2020-10756.patch
deleted file mode 100644
index d1d3c49a58f..000
--- a/app-emulation/qemu/files/qemu-5.0.0-ipv6-slirp-CVE-2020-10756.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-https://gitlab.freedesktop.org/slirp/libslirp/-/commit/c7ede54cbd2e2b25385325600958ba0124e31cc0
-https://bugzilla.redhat.com/show_bug.cgi?id=1835986
-https://bugs.gentoo.org/731992
-
-From c7ede54cbd2e2b25385325600958ba0124e31cc0 Mon Sep 17 00:00:00 2001
-From: Ralf Haferkamp 
-Date: Fri, 3 Jul 2020 14:51:16 +0200
-Subject: [PATCH] Drop bogus IPv6 messages
-
-Drop IPv6 message shorter than what's mentioned in the payload
-length header (+ the size of the IPv6 header). They're invalid an could
-lead to data leakage in icmp6_send_echoreply().

- src/ip6_input.c | 7 +++
- 1 file changed, 7 insertions(+)
-
 a/slirp/src/ip6_input.c
-+++ b/slirp/src/ip6_input.c
-@@ -49,6 +49,13 @@ void ip6_input(struct mbuf *m)
- goto bad;
- }
- 
-+// Check if the message size is big enough to hold what's
-+// set in the payload length header. If not this is an invalid
-+// packet
-+if (m->m_len < ntohs(ip6->ip_pl) + sizeof(struct ip6)) {
-+goto bad;
-+}
-+
- /* check ip_ttl for a correct ICMP reply */
- if (ip6->ip_hl == 0) {
- icmp6_send_error(m, ICMP6_TIMXCEED, ICMP6_TIMXCEED_INTRANS);
--- 
-GitLab
-



[gentoo-commits] repo/gentoo:master commit in: dev-java/ant-eclipse-ecj/files/

2020-09-21 Thread Conrad Kostecki
commit: c39a542522b2adc0c20eee5a56229e238e365992
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Mon Sep 21 18:46:30 2020 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Mon Sep 21 21:48:33 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c39a5425

dev-java/ant-eclipse-ecj: remove unused patch

Closes: https://github.com/gentoo/gentoo/pull/17631
Package-Manager: Portage-3.0.7, Repoman-3.0.1
Signed-off-by: Michael Mair-Keimberger  gmail.com>
Signed-off-by: Conrad Kostecki  gentoo.org>

 dev-java/ant-eclipse-ecj/files/ecj-4.2 | 7 ---
 1 file changed, 7 deletions(-)

diff --git a/dev-java/ant-eclipse-ecj/files/ecj-4.2 
b/dev-java/ant-eclipse-ecj/files/ecj-4.2
deleted file mode 100644
index 5100ad03962..000
--- a/dev-java/ant-eclipse-ecj/files/ecj-4.2
+++ /dev/null
@@ -1,7 +0,0 @@
-JAVAC="/usr/bin/ecj-4.2"
-PACKAGE="=dev-java/ant-eclipse-ecj-4.2*"
-SUPPORTED_TARGET="1.1 1.2 1.3 1.4 1.5 1.6 1.7"
-SUPPORTED_SOURCE="1.3 1.4 1.5 1.6 1.7"
-ANT_BUILD_COMPILER="org.eclipse.jdt.core.JDTCompilerAdapter"
-ANT_BUILD_COMPILER_DEPS="eclipse-ecj-4.2,ant-eclipse-ecj-4.2"
-GENERATION="2"



[gentoo-commits] repo/gentoo:master commit in: dev-games/openscenegraph/, dev-games/openscenegraph-qt/

2020-09-21 Thread Maciej Mrozowski
commit: 4e7435a098deb9e2d3a87c939e6a549ab06c5872
Author: Maciej Mrozowski  gentoo  org>
AuthorDate: Mon Sep 21 21:40:26 2020 +
Commit: Maciej Mrozowski  gentoo  org>
CommitDate: Mon Sep 21 21:42:44 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e7435a0

dev-games/openscenegraph: update metadata.xml

Signed-off-by: Maciej Mrozowski  gentoo.org>

 dev-games/openscenegraph-qt/metadata.xml | 3 +++
 dev-games/openscenegraph/metadata.xml| 3 +++
 2 files changed, 6 insertions(+)

diff --git a/dev-games/openscenegraph-qt/metadata.xml 
b/dev-games/openscenegraph-qt/metadata.xml
index 53e9ef1d7ed..8357d9c234b 100644
--- a/dev-games/openscenegraph-qt/metadata.xml
+++ b/dev-games/openscenegraph-qt/metadata.xml
@@ -12,4 +12,7 @@

The OpenSceneGraph is an open source high performance 3D 
graphics toolkit, used by application developers in fields such as visual 
simulation, games, virtual reality, scientific visualization and modelling. 
Written entirely in Standard C++ and OpenGL it runs on all Windows platforms, 
OSX, GNU/Linux, IRIX, Solaris, HP-Ux, AIX and FreeBSD operating systems. The 
OpenSceneGraph is now well established as the world leading scene graph 
technology, used widely in the vis-sim, space, scientific, oil-gas, games and 
virtual reality industries. This package is a module for Qt support.

+   
+   openscenegraph/osgQt
+   
 

diff --git a/dev-games/openscenegraph/metadata.xml 
b/dev-games/openscenegraph/metadata.xml
index fca914ad559..9345e47b827 100644
--- a/dev-games/openscenegraph/metadata.xml
+++ b/dev-games/openscenegraph/metadata.xml
@@ -24,4 +24,7 @@
Use media-libs/libsdl2 
additionally to media-libs/libsdl
Enable support for the X xrandr 
extension

+   
+   openscenegraph/OpenSceneGraph
+   
 



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

2020-09-21 Thread Conrad Kostecki
commit: 30cf4244abf180773db116828652a4e9f4e45823
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sun Sep 13 13:57:05 2020 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Mon Sep 21 21:31:08 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30cf4244

media-libs/audiofile: update HOMEPAGE, use https

Closes: https://github.com/gentoo/gentoo/pull/17527
Package-Manager: Portage-3.0.6, Repoman-3.0.1
Signed-off-by: Michael Mair-Keimberger  gmail.com>
Signed-off-by: Conrad Kostecki  gentoo.org>

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

diff --git a/media-libs/audiofile/audiofile-0.3.6-r4.ebuild 
b/media-libs/audiofile/audiofile-0.3.6-r4.ebuild
index 99fb3b6f6e8..38fab4a9ed8 100644
--- a/media-libs/audiofile/audiofile-0.3.6-r4.ebuild
+++ b/media-libs/audiofile/audiofile-0.3.6-r4.ebuild
@@ -6,7 +6,7 @@ EAPI=6
 inherit autotools gnome.org multilib-minimal
 
 DESCRIPTION="An elegant API for accessing audio files"
-HOMEPAGE="http://www.68k.org/~michael/audiofile/;
+HOMEPAGE="https://audiofile.68k.org/;
 
 LICENSE="GPL-2 LGPL-2.1"
 SLOT="0/1" # subslot = soname major version



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

2020-09-21 Thread Conrad Kostecki
commit: c13f7b13586564565118dc55d22968dcd38eb65b
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sat Sep 12 16:36:00 2020 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Mon Sep 21 21:31:06 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c13f7b13

media-gfx/duhdraw: use HTTPS

Closes: https://github.com/gentoo/gentoo/pull/17509
Package-Manager: Portage-3.0.6, Repoman-3.0.1
Signed-off-by: Michael Mair-Keimberger  gmail.com>
Signed-off-by: Conrad Kostecki  gentoo.org>

 media-gfx/duhdraw/duhdraw-2.8.13-r1.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/media-gfx/duhdraw/duhdraw-2.8.13-r1.ebuild 
b/media-gfx/duhdraw/duhdraw-2.8.13-r1.ebuild
index ead35424858..f3e80b91a9f 100644
--- a/media-gfx/duhdraw/duhdraw-2.8.13-r1.ebuild
+++ b/media-gfx/duhdraw/duhdraw-2.8.13-r1.ebuild
@@ -1,12 +1,12 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 inherit toolchain-funcs
 
 DESCRIPTION="ASCII art editor"
-HOMEPAGE="http://www.cs.helsinki.fi/u/penberg/duhdraw;
-SRC_URI="http://www.cs.helsinki.fi/u/penberg/duhdraw/${P}.tar.gz;
+HOMEPAGE="https://www.cs.helsinki.fi/u/penberg/duhdraw;
+SRC_URI="https://www.cs.helsinki.fi/u/penberg/duhdraw/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"



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

2020-09-21 Thread Conrad Kostecki
commit: 228c2c6353976f1212cdc3f776619e4c795880da
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sat Sep 12 16:34:18 2020 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Mon Sep 21 21:31:04 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=228c2c63

x11-themes/fvwm_icons: use HTTPS

Closes: https://github.com/gentoo/gentoo/pull/17509
Package-Manager: Portage-3.0.6, Repoman-3.0.1
Signed-off-by: Michael Mair-Keimberger  gmail.com>
Signed-off-by: Conrad Kostecki  gentoo.org>

 x11-themes/fvwm_icons/fvwm_icons-1.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/x11-themes/fvwm_icons/fvwm_icons-1.0.ebuild 
b/x11-themes/fvwm_icons/fvwm_icons-1.0.ebuild
index f11de7cbe6e..034c33fdde6 100644
--- a/x11-themes/fvwm_icons/fvwm_icons-1.0.ebuild
+++ b/x11-themes/fvwm_icons/fvwm_icons-1.0.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
 
 DESCRIPTION="Icons for use with FVWM"
-HOMEPAGE="http://www.fvwm.org/;
+HOMEPAGE="https://www.fvwm.org/;
 SRC_URI="mirror://gentoo/${P}.tar.bz2"
 
 LICENSE="GPL-2 FVWM"



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

2020-09-21 Thread Conrad Kostecki
commit: 5451fd7e3e23e288fa5e1f96ec36c2accdd8990f
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sun Sep 13 13:38:13 2020 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Mon Sep 21 21:31:08 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5451fd7e

dev-libs/libsigc++: fix HOMEPAGE

Closes: https://github.com/gentoo/gentoo/pull/17525
Package-Manager: Portage-3.0.6, Repoman-3.0.1
Signed-off-by: Michael Mair-Keimberger  gmail.com>
Signed-off-by: Conrad Kostecki  gentoo.org>

 dev-libs/libsigc++/libsigc++-1.2.7.ebuild  | 3 ++-
 dev-libs/libsigc++/libsigc++-2.10.1.ebuild | 3 ++-
 dev-libs/libsigc++/libsigc++-2.10.3.ebuild | 3 ++-
 3 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/dev-libs/libsigc++/libsigc++-1.2.7.ebuild 
b/dev-libs/libsigc++/libsigc++-1.2.7.ebuild
index 5072a37204b..343cc0cc067 100644
--- a/dev-libs/libsigc++/libsigc++-1.2.7.ebuild
+++ b/dev-libs/libsigc++/libsigc++-1.2.7.ebuild
@@ -8,7 +8,8 @@ GNOME_TARBALL_SUFFIX="bz2"
 inherit autotools gnome2 eutils
 
 DESCRIPTION="Typesafe callback system for standard C++"
-HOMEPAGE="http://libsigc.sourceforge.net/;
+HOMEPAGE="https://libsigcplusplus.github.io/libsigcplusplus/
+   https://github.com/libsigcplusplus/libsigcplusplus;
 
 LICENSE="GPL-2 LGPL-2.1+"
 SLOT="1.2"

diff --git a/dev-libs/libsigc++/libsigc++-2.10.1.ebuild 
b/dev-libs/libsigc++/libsigc++-2.10.1.ebuild
index 21fef39f8be..ae83beb1b89 100644
--- a/dev-libs/libsigc++/libsigc++-2.10.1.ebuild
+++ b/dev-libs/libsigc++/libsigc++-2.10.1.ebuild
@@ -5,7 +5,8 @@ EAPI=6
 inherit gnome2 flag-o-matic multilib-minimal
 
 DESCRIPTION="Typesafe callback system for standard C++"
-HOMEPAGE="http://libsigc.sourceforge.net/;
+HOMEPAGE="https://libsigcplusplus.github.io/libsigcplusplus/
+   https://github.com/libsigcplusplus/libsigcplusplus;
 
 LICENSE="LGPL-2.1+"
 SLOT="2"

diff --git a/dev-libs/libsigc++/libsigc++-2.10.3.ebuild 
b/dev-libs/libsigc++/libsigc++-2.10.3.ebuild
index c1434665cb5..f9366ae1ce0 100644
--- a/dev-libs/libsigc++/libsigc++-2.10.3.ebuild
+++ b/dev-libs/libsigc++/libsigc++-2.10.3.ebuild
@@ -5,7 +5,8 @@ EAPI=6
 inherit gnome2 flag-o-matic multilib-minimal
 
 DESCRIPTION="Typesafe callback system for standard C++"
-HOMEPAGE="http://libsigc.sourceforge.net/;
+HOMEPAGE="https://libsigcplusplus.github.io/libsigcplusplus/
+   https://github.com/libsigcplusplus/libsigcplusplus;
 
 LICENSE="LGPL-2.1+"
 SLOT="2"



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

2020-09-21 Thread Conrad Kostecki
commit: c53b47b8df95b3df538f49452c41bd4ddcf1226d
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sat Sep 12 16:34:47 2020 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Mon Sep 21 21:31:05 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c53b47b8

x11-themes/fvwm_sounds: use HTTPS

Closes: https://github.com/gentoo/gentoo/pull/17509
Package-Manager: Portage-3.0.6, Repoman-3.0.1
Signed-off-by: Michael Mair-Keimberger  gmail.com>
Signed-off-by: Conrad Kostecki  gentoo.org>

 x11-themes/fvwm_sounds/fvwm_sounds-1.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/x11-themes/fvwm_sounds/fvwm_sounds-1.0.ebuild 
b/x11-themes/fvwm_sounds/fvwm_sounds-1.0.ebuild
index dd22094bdee..d541b60c197 100644
--- a/x11-themes/fvwm_sounds/fvwm_sounds-1.0.ebuild
+++ b/x11-themes/fvwm_sounds/fvwm_sounds-1.0.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
 
 DESCRIPTION="Sounds for use with FVWM"
-HOMEPAGE="http://www.fvwm.org/;
+HOMEPAGE="https://www.fvwm.org/;
 SRC_URI="mirror://gentoo/${P}.tgz"
 
 LICENSE="GPL-2 FVWM"



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

2020-09-21 Thread Conrad Kostecki
commit: d37a79b749a7d9421347903515d0494ec9567476
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sat Sep 12 16:37:47 2020 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Mon Sep 21 21:31:07 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d37a79b7

app-crypt/quickcrypt: use HTTPS

Closes: https://github.com/gentoo/gentoo/pull/17509
Package-Manager: Portage-3.0.6, Repoman-3.0.1
Signed-off-by: Michael Mair-Keimberger  gmail.com>
Signed-off-by: Conrad Kostecki  gentoo.org>

 app-crypt/quickcrypt/quickcrypt-0.9.2b-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-crypt/quickcrypt/quickcrypt-0.9.2b-r1.ebuild 
b/app-crypt/quickcrypt/quickcrypt-0.9.2b-r1.ebuild
index 75d58b831d0..7ae632b049a 100644
--- a/app-crypt/quickcrypt/quickcrypt-0.9.2b-r1.ebuild
+++ b/app-crypt/quickcrypt/quickcrypt-0.9.2b-r1.ebuild
@@ -6,8 +6,8 @@ EAPI=7
 MY_P=${P/-/_}
 S=${WORKDIR}/${MY_P}
 DESCRIPTION="gives you a quick MD5 Password from any string"
-HOMEPAGE="http://linux.netpimpz.com/quickcrypt/;
-SRC_URI="http://linux.netpimpz.com/quickcrypt/download/${MY_P}.tar.gz;
+HOMEPAGE="https://linux.netpimpz.com/quickcrypt/;
+SRC_URI="https://linux.netpimpz.com/quickcrypt/download/${MY_P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"



[gentoo-commits] repo/gentoo:master commit in: media-libs/SoXt/files/, media-libs/SoXt/

2020-09-21 Thread Maciej Mrozowski
commit: f9f64633a057f7786333baeda436b0b37d81c055
Author: Maciej Mrozowski  gentoo  org>
AuthorDate: Mon Sep 21 21:22:51 2020 +
Commit: Maciej Mrozowski  gentoo  org>
CommitDate: Mon Sep 21 21:29:54 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9f64633

media-libs/SoXt: Version bump, remove old.

Closes: https://bugs.gentoo.org/738750
Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Maciej Mrozowski  gentoo.org>

 media-libs/SoXt/Manifest   |  2 +-
 media-libs/SoXt/SoXt-1.3.0-r1.ebuild   | 47 --
 media-libs/SoXt/SoXt-1.4.0.ebuild  | 42 +++
 .../SoXt/files/SoXt-1.3.0-pkgconfig-partial.patch  | 12 --
 media-libs/SoXt/metadata.xml   |  2 +-
 5 files changed, 44 insertions(+), 61 deletions(-)

diff --git a/media-libs/SoXt/Manifest b/media-libs/SoXt/Manifest
index ec83bff7d09..3071e910b50 100644
--- a/media-libs/SoXt/Manifest
+++ b/media-libs/SoXt/Manifest
@@ -1 +1 @@
-DIST SoXt-1.3.0.tar.gz 1203903 BLAKE2B 
da64285656b57c7b90bb3dfba089dbea79ce6755aa36cee2fca1e64ad4945099e68474263a16ac97b34187207266b025734c352656c972fe66402717b94c9340
 SHA512 
1aae8c6d0b5e8de52734dac0326f9bcbae343a1819d18bb915f8f6fa223782e3512286819af62f494ce5238b8e1d981af5322186b2c07a94be20b7c9d32db208
+DIST SoXt-1.4.0-src.tar.gz 1369725 BLAKE2B 
727c56644878e9d52441ca905558524ccd369de123e8018d7fef4d949aa4e96007fa3a1e9782490b4dc9d50a916686a118d37ec7094dc6a3522ede032b30b6ea
 SHA512 
9c661396ec18c2cba8984be8c0875f51554c8845e1a85d9b202f9a0f4de8203566a46d9b276e20039861dbf7ff3a0ffa474d098866f8a7692b53a01e3f62977d

diff --git a/media-libs/SoXt/SoXt-1.3.0-r1.ebuild 
b/media-libs/SoXt/SoXt-1.3.0-r1.ebuild
deleted file mode 100644
index 9a19d767294..000
--- a/media-libs/SoXt/SoXt-1.3.0-r1.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-HOMEPAGE="http://www.coin3d.org/;
-DESCRIPTION="GUI binding for using Coin/Open Inventor with Xt/Motif"
-SRC_URI="https://bitbucket.org/Coin3D/coin/downloads/${P}.tar.gz;
-
-LICENSE="GPL-2"
-KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
-SLOT="0"
-IUSE="debug doc static-libs"
-
-RDEPEND="
-   https://github.com/coin3d/coin/wiki;
+DESCRIPTION="GUI binding for using Coin/Open Inventor with Xt/Motif"
+SRC_URI="https://github.com/coin3d/soxt/releases/download/${MY_P}/${P}-src.tar.gz;
+
+LICENSE="GPL-2"
+KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
+SLOT="0"
+IUSE="debug doc"
+
+RDEPEND="
+   media-libs/coin
+   x11-libs/motif:0
+   virtual/opengl
+"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig
+   doc? ( app-doc/doxygen )
+"
+
+S="${WORKDIR}/soxt"
+
+DOCS=(AUTHORS ChangeLog HACKING NEWS README TODO BUGS.txt)
+
+src_configure() {
+   use debug && append-cppflags -DSOXT_DEBUG=1
+   local mycmakeargs=(
+   -DCMAKE_INSTALL_DOCDIR="${EPREFIX}/usr/share/doc/${PF}"
+   -DSOXT_BUILD_DOCUMENTATION=$(usex doc)
+   -DSOXT_BUILD_INTERNAL_DOCUMENTATION=OFF
+   -DSOXT_VERBOSE=$(usex debug)
+   )
+   cmake_src_configure
+}

diff --git a/media-libs/SoXt/files/SoXt-1.3.0-pkgconfig-partial.patch 
b/media-libs/SoXt/files/SoXt-1.3.0-pkgconfig-partial.patch
deleted file mode 100644
index d9f1ad25eef..000
--- a/media-libs/SoXt/files/SoXt-1.3.0-pkgconfig-partial.patch
+++ /dev/null
@@ -1,12 +0,0 @@
 a/SoXt.pc.in   2013-06-17 11:26:59.998321839 -0700
-+++ b/SoXt.pc.in   2013-06-17 11:28:01.603654611 -0700
-@@ -10,7 +10,8 @@
- Version: @SOXT_VERSION@
- Requires: Coin
- Conflicts:
--Libs: -L${libdir} @SOGUI_EXTRA_LDFLAGS@ @SOGUI_EXTRA_LIBS@
-+Libs: -L${libdir} -lSoXt
-+Libs.private:  -L${libdir} @SOGUI_EXTRA_LIBS@
- Cflags: -I${includedir} @SOGUI_EXTRA_CFLAGS@ @SOGUI_EXTRA_CPPFLAGS@
- 
- soxt_host=@host@

diff --git a/media-libs/SoXt/metadata.xml b/media-libs/SoXt/metadata.xml
index 418672b1b7b..a49ad79eefb 100644
--- a/media-libs/SoXt/metadata.xml
+++ b/media-libs/SoXt/metadata.xml
@@ -12,6 +12,6 @@
   from SGI or TGS.
   
   
-Coin3D/coin
+coin3d/soxt
   
 



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

2020-09-21 Thread Michał Górny
commit: 334d47b15e237a864bae536508e86c86984f4640
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Sep 21 21:26:55 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Sep 21 21:28:36 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=334d47b1

dev-python/cached-property: Bump to 1.5.2

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

 dev-python/cached-property/Manifest|  1 +
 .../cached-property/cached-property-1.5.2.ebuild   | 32 ++
 2 files changed, 33 insertions(+)

diff --git a/dev-python/cached-property/Manifest 
b/dev-python/cached-property/Manifest
index 747064ce7f8..a0361f4b046 100644
--- a/dev-python/cached-property/Manifest
+++ b/dev-python/cached-property/Manifest
@@ -1 +1,2 @@
 DIST cached-property-1.5.1.tar.gz 12791 BLAKE2B 
dcc75564d3b1dbb2f34ea433f4a477b2fe0454047f1fb4825cc6350458bf09509cf970b308744d79eb3b17f96c04c606ad36327c7e24f0b13f412880d9ad2ab7
 SHA512 
61bbedb48336af7c0b465421eb4d3b6b48155cfe4fd6270ff49caefe0d80e40b50c4801a68a5564931d316e374b69112ad14f72687a015ce81aaeade6fcf9ce3
+DIST cached-property-1.5.2.tar.gz 12244 BLAKE2B 
26981dcfa51925741962c60ad8659a165af6d7f242f4abd392932aac20e966ad6c1763a25184bbabdeb5bd75f8063a430c41f0241afdee8013ffcb437b3ff7da
 SHA512 
626d98a8891a70d858269859cf4e49416464c836d073c1331c21033a4cd9e0e47dc89b53bf393375439992f4993972517dc3cdcbb2cc6f8286f282d3c973e600

diff --git a/dev-python/cached-property/cached-property-1.5.2.ebuild 
b/dev-python/cached-property/cached-property-1.5.2.ebuild
new file mode 100644
index 000..819cd6b14eb
--- /dev/null
+++ b/dev-python/cached-property/cached-property-1.5.2.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6..9} )
+
+inherit distutils-r1
+
+DESCRIPTION="A cached-property for decorating methods in classes"
+HOMEPAGE="https://github.com/pydanny/cached-property;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
+
+DEPEND="test? ( dev-python/freezegun[${PYTHON_USEDEP}] )"
+
+distutils_enable_tests pytest
+
+python_prepare_all() {
+   # bug 638250
+   eapply "${FILESDIR}"/${PN}-1.5.1-test-failure.patch
+
+   distutils-r1_python_prepare_all
+}
+
+python_install_all() {
+   dodoc README.rst HISTORY.rst CONTRIBUTING.rst AUTHORS.rst
+   distutils-r1_python_install_all
+}



[gentoo-commits] repo/gentoo:master commit in: games-board/gnome-hearts/

2020-09-21 Thread James Le Cuirot
commit: 275260fbabed6a1c87cbbbc79ddd90c240152e5e
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sun Sep 13 13:48:46 2020 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Mon Sep 21 21:21:21 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=275260fb

games-board/gnome-hearts: fix HOMEPAGE

Package-Manager: Portage-3.0.6, Repoman-3.0.1
Signed-off-by: Michael Mair-Keimberger  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/17526
Signed-off-by: James Le Cuirot  gentoo.org>

 games-board/gnome-hearts/gnome-hearts-0.3.1-r2.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/games-board/gnome-hearts/gnome-hearts-0.3.1-r2.ebuild 
b/games-board/gnome-hearts/gnome-hearts-0.3.1-r2.ebuild
index c325614f353..3152898e365 100644
--- a/games-board/gnome-hearts/gnome-hearts-0.3.1-r2.ebuild
+++ b/games-board/gnome-hearts/gnome-hearts-0.3.1-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -8,8 +8,8 @@ PYTHON_COMPAT=( python2_7 )
 inherit gnome2 python-single-r1
 
 DESCRIPTION="A clone of classic hearts card game"
-HOMEPAGE="http://www.gnome-hearts.org;
-SRC_URI="http://www.jejik.com/files/${PN}/${P}.tar.gz;
+HOMEPAGE="https://www.jejik.com/gnome-hearts/;
+SRC_URI="https://www.jejik.com/files/${PN}/${P}.tar.gz;
 
 LICENSE="GPL-2+ FDL-1.2"
 SLOT="0"



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

2020-09-21 Thread Michał Górny
commit: 478129cc98cf5d7002a7b6fc2472027950e1989a
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Sep 21 21:16:19 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Sep 21 21:17:23 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=478129cc

dev-python/pyproject2setuppy: Bump to v8

Closes: https://bugs.gentoo.org/743965
Signed-off-by: Michał Górny  gentoo.org>

 dev-python/pyproject2setuppy/Manifest  |  1 +
 .../pyproject2setuppy/pyproject2setuppy-8.ebuild   | 26 ++
 2 files changed, 27 insertions(+)

diff --git a/dev-python/pyproject2setuppy/Manifest 
b/dev-python/pyproject2setuppy/Manifest
index a30c73be929..7032f310f5b 100644
--- a/dev-python/pyproject2setuppy/Manifest
+++ b/dev-python/pyproject2setuppy/Manifest
@@ -1 +1,2 @@
 DIST pyproject2setuppy-7.tar.gz 9274 BLAKE2B 
5394543aeb7b615cfef5548b530d136887d81bff8c40dc343529d3e316e2f8851b82747d59dc9bceafdd7f2017695f523c75a8b376e033936708f76c64ebdd7d
 SHA512 
4a63acb0af5558b63e90aa2e96243c1ffc2ef9c114b2e20b8dbc5b84abc468879822d8d20f8dd2f7fdc2ce4a508b5f84e661831cf9e99e383d89fe2b63fa
+DIST pyproject2setuppy-8.tar.gz 9501 BLAKE2B 
d0c168efa2742732710a7d967ce0783a942d4718ae2be75e6263bb560500527ee11260c9b7362d10cb059171475dc647c0bc97e284554f2e159f470e3eb7f569
 SHA512 
527e2de790fb02373150db834d1a007a63b71f87ae01fef1dd9fc86a51ac6cafeac28fa3f39a2d484e7a9f84549d0ba285894cf9201f3b2b2a47965be29913cc

diff --git a/dev-python/pyproject2setuppy/pyproject2setuppy-8.ebuild 
b/dev-python/pyproject2setuppy/pyproject2setuppy-8.ebuild
new file mode 100644
index 000..516b3db0af3
--- /dev/null
+++ b/dev-python/pyproject2setuppy/pyproject2setuppy-8.ebuild
@@ -0,0 +1,26 @@
+# Copyright 2019-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DISTUTILS_USE_SETUPTOOLS=manual
+PYTHON_COMPAT=( python3_{6,7,8,9} pypy3 )
+
+inherit distutils-r1
+
+DESCRIPTION="Cheap setup.py hack to install flit & poetry-based projects"
+HOMEPAGE="https://github.com/mgorny/pyproject2setuppy;
+SRC_URI="
+   https://github.com/mgorny/pyproject2setuppy/archive/v${PV}.tar.gz
+   -> ${P}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86"
+
+RDEPEND="
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   dev-python/toml[${PYTHON_USEDEP}]"
+BDEPEND="${RDEPEND}"
+
+distutils_enable_tests pytest



[gentoo-commits] repo/gentoo:master commit in: games-emulation/gngeo/, games-emulation/gngeo/files/

2020-09-21 Thread James Le Cuirot
commit: 6c8fbcf2f15b94c6fd846688677e69ee9cdae554
Author: Alexey Sokolov  google  com>
AuthorDate: Wed Sep 16 00:20:10 2020 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Mon Sep 21 21:12:02 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c8fbcf2

games-emulation/gngeo: fix build with gcc 10

Closes: https://bugs.gentoo.org/708062
Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Alexey Sokolov  asokolov.org>
Signed-off-by: James Le Cuirot  gentoo.org>

 .../gngeo/files/gngeo-0.8-fcommon.patch| 289 +
 games-emulation/gngeo/gngeo-0.8-r2.ebuild  |  48 
 2 files changed, 337 insertions(+)

diff --git a/games-emulation/gngeo/files/gngeo-0.8-fcommon.patch 
b/games-emulation/gngeo/files/gngeo-0.8-fcommon.patch
new file mode 100644
index 000..63e1ff097bb
--- /dev/null
+++ b/games-emulation/gngeo/files/gngeo-0.8-fcommon.patch
@@ -0,0 +1,289 @@
+--- a/src/memory.h 2011-10-25 18:04:13.0 -
 b/src/memory.h 2020-09-15 23:02:48.114069895 -
+@@ -114,30 +114,30 @@ typedef struct neo_mem {
+   Uint32 watchdog;
+ } neo_mem;
+ 
+-neo_mem memory;
++extern neo_mem memory;
+ 
+ /* video related */
+ //extern int irq2start, irq2control;
+-Uint8 *current_pal;
+-Uint32 *current_pc_pal;
+-Uint8 *current_fix;
+-Uint8 *fix_usage;
++extern Uint8 *current_pal;
++extern Uint32 *current_pc_pal;
++extern Uint8 *current_fix;
++extern Uint8 *fix_usage;
+ 
+ /* sram */
+-Uint8 sram_lock;
++extern Uint8 sram_lock;
+ //Uint32 sram_protection_hack;
+ //int sram_protection_hack;
+ 
+ /* Sound control */
+-Uint8 sound_code;
+-Uint8 pending_command;
+-Uint8 result_code;
++extern Uint8 sound_code;
++extern Uint8 pending_command;
++extern Uint8 result_code;
+ 
+ 
+ /* 68k cpu Banking control */
+ extern Uint32 bankaddress;/* current bank */
+ //Uint8 current_cpu_bank;
+-Uint16 z80_bank[4];
++extern Uint16 z80_bank[4];
+ 
+ /* misc utility func */
+ void update_all_pal(void);
+@@ -263,10 +263,10 @@ void mem68k_store_bk_kof2003_byte(Uint32
+ void mem68k_store_bk_kof2003_word(Uint32 addr, Uint16 data);
+ void mem68k_store_bk_kof2003_long(Uint32 addr, Uint32 data);
+ 
+-Uint8 (*mem68k_fetch_bksw_byte)(Uint32);
+-Uint16 (*mem68k_fetch_bksw_word)(Uint32);
+-Uint32 (*mem68k_fetch_bksw_long)(Uint32);
+-void (*mem68k_store_bksw_byte)(Uint32,Uint8);
+-void (*mem68k_store_bksw_word)(Uint32,Uint16);
+-void (*mem68k_store_bksw_long)(Uint32,Uint32);
++extern Uint8 (*mem68k_fetch_bksw_byte)(Uint32);
++extern Uint16 (*mem68k_fetch_bksw_word)(Uint32);
++extern Uint32 (*mem68k_fetch_bksw_long)(Uint32);
++extern void (*mem68k_store_bksw_byte)(Uint32,Uint8);
++extern void (*mem68k_store_bksw_word)(Uint32,Uint16);
++extern void (*mem68k_store_bksw_long)(Uint32,Uint32);
+ #endif
+--- a/src/video.h  2011-10-25 18:04:13.0 -
 b/src/video.h  2020-09-15 23:01:55.756521216 -
+@@ -67,7 +67,7 @@ typedef struct VIDEO {
+ 
+ #define RASTER_LINES 261
+ 
+-unsigned int neogeo_frame_counter;
++extern unsigned int neogeo_frame_counter;
+ extern unsigned int neogeo_frame_counter_speed;
+ 
+ void init_video(void);
+--- a/src/memory.c 2011-10-25 18:04:13.0 -
 b/src/memory.c 2020-09-15 23:08:31.083181700 -
+@@ -896,3 +896,19 @@ void mem68k_store_bk_normal_word(Uint32
+ 
+ LONG_STORE(mem68k_store_bk_normal)
+ ;
++Uint8* current_pal;
++Uint32 *current_pc_pal;
++Uint8 *current_fix;
++Uint8 *fix_usage;
++Uint8 sram_lock;
++Uint8 sound_code;
++Uint8 pending_command;
++Uint8 result_code;
++Uint16 z80_bank[4];
++Uint8 (*mem68k_fetch_bksw_byte)(Uint32);
++Uint16 (*mem68k_fetch_bksw_word)(Uint32);
++Uint32 (*mem68k_fetch_bksw_long)(Uint32);
++void (*mem68k_store_bksw_byte)(Uint32,Uint8);
++void (*mem68k_store_bksw_word)(Uint32,Uint16);
++void (*mem68k_store_bksw_long)(Uint32,Uint32);
++neo_mem memory;
+--- b/src/video.c  2011-10-25 18:04:13.0 -
 b/src/video.c  2020-09-15 23:09:15.113923583 -
+@@ -32,6 +32,7 @@
+ #include "transpack.h"
+ 
+ extern int neogeo_fix_bank_type;
++unsigned int neogeo_frame_counter;
+ 
+ 
+ #ifdef PROCESSOR_ARM
+--- a/src/screen.c 2011-10-25 18:04:13.0 -
 b/src2/screen.c2020-09-15 23:14:14.508969030 -
+@@ -401,3 +401,14 @@ void screen_fullscreen() {
+   fullscreen ^= 1;
+   blitter[nblitter].fullscreen();
+ }
++SDL_Surface *screen;
++SDL_Surface *buffer, *sprbuf, *fps_buf, *scan, *fontbuf;
++SDL_Rect visible_area;
++int yscreenpadding;
++Uint8 interpolation;
++Uint8 nblitter;
++Uint8 neffect;
++Uint8 scale;
++Uint8 fullscreen;
++
++
+--- a/src/screen.h 2011-10-25 18:04:13.0 -
 b/src/screen.h 2020-09-15 23:14:14.085628561 -
+@@ -17,19 +17,19 @@ extern RGB2YUV rgb2yuv[65536];
+ 
+ void init_rgb2yuv_table(void);
+ 
+-SDL_Surface *screen;
+-SDL_Surface *buffer, *sprbuf, *fps_buf, *scan, *fontbuf;
++extern SDL_Surface *screen;
++extern SDL_Surface *buffer, *sprbuf, *fps_buf, 

[gentoo-commits] repo/gentoo:master commit in: games-arcade/pacmanarena/files/, games-arcade/pacmanarena/

2020-09-21 Thread James Le Cuirot
commit: a229976dffa2a8ae85c872761b15918a04280ddc
Author: Alexey Sokolov  google  com>
AuthorDate: Sun Sep 13 22:42:01 2020 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Mon Sep 21 21:14:13 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a229976d

games-arcade/pacmanarena: fix build on gcc 10

Fix removing of -g from CFLAGS

Closes: https://bugs.gentoo.org/708066
Package-Manager: Portage-3.0.4, Repoman-2.3.23
Signed-off-by: Alexey Sokolov  asokolov.org>
Signed-off-by: James Le Cuirot  gentoo.org>

 .../files/pacmanarena-0.15-fnocommon.patch | 15 ++
 .../pacmanarena/pacmanarena-0.15-r2.ebuild | 59 ++
 2 files changed, 74 insertions(+)

diff --git a/games-arcade/pacmanarena/files/pacmanarena-0.15-fnocommon.patch 
b/games-arcade/pacmanarena/files/pacmanarena-0.15-fnocommon.patch
new file mode 100644
index 000..103976f4c48
--- /dev/null
+++ b/games-arcade/pacmanarena/files/pacmanarena-0.15-fnocommon.patch
@@ -0,0 +1,15 @@
+Fix build. https://bugs.gentoo.org/708066#c8
+
+diff --git a/include/input.h b/include/input.h
+index 08a4aee..491c01d 100644
+--- a/include/input.h
 b/include/input.h
+@@ -22,8 +22,6 @@
+ #ifndef _INPUT_H
+ #define _INPUT_H
+ 
+-char *keyboard_map;
+-
+ void input_reset(void);
+ void input_update(void);
+ int input_kstate(int ksym);

diff --git a/games-arcade/pacmanarena/pacmanarena-0.15-r2.ebuild 
b/games-arcade/pacmanarena/pacmanarena-0.15-r2.ebuild
new file mode 100644
index 000..4b16585222e
--- /dev/null
+++ b/games-arcade/pacmanarena/pacmanarena-0.15-r2.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools desktop
+
+DESCRIPTION="3D Pacman clone with a few surprises. Rockets, bombs and 
explosions abound"
+HOMEPAGE="http://pacmanarena.sourceforge.net/;
+SRC_URI="mirror://sourceforge/${PN}/pacman-arena-${PV}.tar.bz2
+   mirror://sourceforge/${PN}/pacman-data-0.0.zip"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~x86"
+
+RDEPEND="
+   media-libs/libsdl[sound]
+   media-libs/sdl-mixer[vorbis]
+   media-libs/sdl-net
+   virtual/glu
+   virtual/opengl
+"
+DEPEND="${RDEPEND}"
+BDEPEND="app-arch/unzip"
+
+S="${WORKDIR}/pacman"
+
+PATCHES=(
+   "${FILESDIR}"/${P}-underlink.patch
+   "${FILESDIR}"/${P}-fnocommon.patch
+)
+
+src_unpack() {
+   unpack pacman-arena-${PV}.tar.bz2
+   cd "${S}"
+   unpack pacman-data-0.0.zip
+}
+
+src_prepare() {
+   default
+   sed -i \
+   -e "/^CFLAGS/ s:pacman:${PN}:" \
+   -e '1i CC=@CC@' \
+   Makefile.in || die
+   sed -i \
+   -e '/CFLAGS/s:-g::' \
+   configure.ac || die
+   eautoreconf
+}
+
+src_install() {
+   newbin pacman ${PN}
+   insinto /usr/share/${PN}
+   doins -r gfx sfx
+   newicon gfx/pacman_arena1.tga ${PN}.tga
+   make_desktop_entry ${PN} "Pacman Arena" /usr/share/pixmaps/${PN}.tga
+   einstalldocs
+}



[gentoo-commits] repo/gentoo:master commit in: games-arcade/pacmanarena/

2020-09-21 Thread James Le Cuirot
commit: efead96e62e48296ba4941834aa29d7aca279ce5
Author: Alexey Sokolov  google  com>
AuthorDate: Sun Sep 20 21:33:52 2020 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Mon Sep 21 21:14:16 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=efead96e

games-arcade/pacmanarena: drop old 0.15-r1

Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Alexey Sokolov  asokolov.org>
Closes: https://github.com/gentoo/gentoo/pull/17532
Signed-off-by: James Le Cuirot  gentoo.org>

 .../pacmanarena/pacmanarena-0.15-r1.ebuild | 56 --
 1 file changed, 56 deletions(-)

diff --git a/games-arcade/pacmanarena/pacmanarena-0.15-r1.ebuild 
b/games-arcade/pacmanarena/pacmanarena-0.15-r1.ebuild
deleted file mode 100644
index e803d774835..000
--- a/games-arcade/pacmanarena/pacmanarena-0.15-r1.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit autotools desktop
-
-DESCRIPTION="3D Pacman clone with a few surprises. Rockets, bombs and 
explosions abound"
-HOMEPAGE="http://pacmanarena.sourceforge.net/;
-SRC_URI="mirror://sourceforge/${PN}/pacman-arena-${PV}.tar.bz2
-   mirror://sourceforge/${PN}/pacman-data-0.0.zip"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~x86"
-IUSE=""
-
-RDEPEND="
-   virtual/opengl
-   virtual/glu
-   media-libs/libsdl[sound]
-   media-libs/sdl-mixer[vorbis]
-   media-libs/sdl-net
-"
-DEPEND="${RDEPEND}
-   app-arch/unzip
-"
-
-S="${WORKDIR}/pacman"
-
-src_unpack() {
-   unpack pacman-arena-${PV}.tar.bz2
-   cd "${S}"
-   unpack pacman-data-0.0.zip
-}
-
-src_prepare() {
-   default
-   sed -i \
-   -e "/^CFLAGS/ s:pacman:${PN}:" \
-   -e '1i CC=@CC@' \
-   Makefile.in || die
-   sed -i \
-   -e '/CFLAGS/s:-g::' \
-   configure || die
-   eapply "${FILESDIR}"/${P}-underlink.patch
-   eautoreconf
-}
-
-src_install() {
-   newbin pacman ${PN}
-   insinto /usr/share/${PN}
-   doins -r gfx sfx
-   newicon gfx/pacman_arena1.tga ${PN}.tga
-   make_desktop_entry ${PN} "Pacman Arena" /usr/share/pixmaps/${PN}.tga
-   einstalldocs
-}



[gentoo-commits] repo/gentoo:master commit in: games-emulation/gngeo/

2020-09-21 Thread James Le Cuirot
commit: 976da2b3b2c40ebfb33e135293548d7d1cb26dc6
Author: Alexey Sokolov  google  com>
AuthorDate: Wed Sep 16 00:22:17 2020 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Mon Sep 21 21:12:05 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=976da2b3

games-emulation/gngeo: drop 0.8-r1

Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Alexey Sokolov  asokolov.org>
Closes: https://github.com/gentoo/gentoo/pull/17561
Signed-off-by: James Le Cuirot  gentoo.org>

 games-emulation/gngeo/gngeo-0.8-r1.ebuild | 43 ---
 1 file changed, 43 deletions(-)

diff --git a/games-emulation/gngeo/gngeo-0.8-r1.ebuild 
b/games-emulation/gngeo/gngeo-0.8-r1.ebuild
deleted file mode 100644
index 3e7f2be86fc..000
--- a/games-emulation/gngeo/gngeo-0.8-r1.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit autotools desktop flag-o-matic
-
-DESCRIPTION="A NeoGeo emulator"
-HOMEPAGE="https://code.google.com/p/gngeo/;
-SRC_URI="https://gngeo.googlecode.com/files/${P}.tar.gz
-   
https://storage.googleapis.com/google-code-archive/v2/code.google.com/gngeo/logo.png
 -> ${PN}.png"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="virtual/opengl
-   media-libs/libsdl[joystick,opengl,sound,video]
-   sys-libs/zlib[minizip]"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
-   default
-   eapply \
-   "${FILESDIR}"/${P}-execstacks.patch \
-   "${FILESDIR}"/${P}-zlib.patch \
-   "${FILESDIR}"/${P}-concurrentMake.patch \
-   "${FILESDIR}"/${P}-cflags.patch
-   mv configure.in configure.ac || die
-   eautoreconf
-   append-cflags -std=gnu89 # build with gcc5 (bug #571056)
-}
-
-src_configure() {
-   econf --disable-i386asm
-}
-
-src_install() {
-   DOCS=( AUTHORS FAQ NEWS README* TODO sample_gngeorc )
-   default
-   doicon "${DISTDIR}"/${PN}.png
-   make_desktop_entry ${PN}
-}



[gentoo-commits] repo/gentoo:master commit in: dev-games/ogre/files/, dev-games/ogre/

2020-09-21 Thread James Le Cuirot
commit: 099e98fe1e981a2eb44477e53933fa768f2b3834
Author: Sven Eden  prydeworx  com>
AuthorDate: Sun Sep 20 14:39:00 2020 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Mon Sep 21 21:08:36 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=099e98fe

dev-games/ogre: Version bump to 1.12.9

This bump includes the following upgrades

* IMGUI version bumped to 1.77 ; That's what upstream bumped to
* Added USE flag "assimp" to pull in media-libs/assimp
  This also enables building of the AssimpConverter if the USE flag
  "assimp" is enabled.

Bug: https://bugs.gentoo.org/743742
Closes: https://bugs.gentoo.org/743742
Package-Manager: Portage-3.0.7, Repoman-3.0.1
Signed-off-by: Sven Eden  prydeworx.com>
Closes: https://github.com/gentoo/gentoo/pull/17619
Signed-off-by: James Le Cuirot  gentoo.org>

 dev-games/ogre/Manifest|  4 ++--
 ...Simple_demo.patch => ogre-1.12.9-fix_Simple_demo.patch} |  0
 .../ogre/files/ogre-1.12.9-fix_config_window_height.patch  | 11 +++
 patch => ogre-1.12.9-gentoolize_imgui_inclusion.patch} | 13 ++---
 12.8-media_path.patch => ogre-1.12.9-media_path.patch} |  0
 ...resource_path.patch => ogre-1.12.9-resource_path.patch} |  0
 dev-games/ogre/metadata.xml|  7 +--
 dev-games/ogre/{ogre-1.12.8.ebuild => ogre-1.12.9.ebuild}  | 14 +++---
 8 files changed, 31 insertions(+), 18 deletions(-)

diff --git a/dev-games/ogre/Manifest b/dev-games/ogre/Manifest
index 851d395c412..abe2b0d7994 100644
--- a/dev-games/ogre/Manifest
+++ b/dev-games/ogre/Manifest
@@ -1,4 +1,4 @@
-DIST imgui-1.76.tar.gz 1256126 BLAKE2B 
801e94e1007e41c5b7281bb30fc7da76ddf0e755bf3ec2c4eb90d730dd9c68685f3e4819f32acc2154fbcd4e32da9d1de6dac36b0cd8885a93457475576b4336
 SHA512 
7f7d7220c6c2805902665747f32ed094e0558d42cafb25a25bd16fed88da3bf8822c55ed92a552f0599f5563909d471aa5763e53c8dd5bf39367c61e39d015aa
-DIST ogre-1.12.8.tar.gz 125932831 BLAKE2B 
ffd4a443e374ad3f209b4f8a5e18a41b3dbfbb528d20581f48a4d31447e1e20a3b1cdde588b6345bd07d864c9b72ce1e51374de52523e7c4477408c01778af69
 SHA512 
c446c58b57874d3e2522f7e0315771b7a9f5ac449493a1dad6fc4d30454c57f4f145c2554de110607f3e5d586d6ec91859b8024e7d8bdb821fa6c6c3f2e2
+DIST imgui-1.77.tar.gz 1269147 BLAKE2B 
be0db9b77903664db0fadf1672ec23983dc89292fd261a1e89c1eab88b82e95de7c2af37eb7ef43cc994b889fdf7d7fb2dd1282b93c1f3b1166c7fe0d2dccaf5
 SHA512 
d5ebf4bb5e1ce83b226f2e68b3afe0f0abaeb55245fedf754e5453afd8d1df4dac8b5c47fc284c2588b40d05a55fc191b5e55c7be279c5e5e23f7c5b70150546
+DIST ogre-1.12.9.tar.gz 125955067 BLAKE2B 
5676690d2d9db8c4c903b7bf3e7660ddf5c0675eb11e1b34f08a5a50739d6212e986c7b500173ad5edab4835d96c705f86cc0fd37e1ff1e64a161ab1ce8968df
 SHA512 
a80525a4924a430ccac3f01f93a5f36b4b9d2f7671ef0629d7dd21d3651ea7a698d5cc520eb814c6ee4c0ee7efcd3f6a8f16688773300a25537636bb61eba286
 DIST ogre-1.9.0.tar.bz2 128098305 BLAKE2B 
6e67a5b60a6606a910e099f1c7ba736eb525f079f3aba5cfb362329b9130059d303fc9df6f7b8611c0ba75e1e207fa018e543e93c9f5ce39a6621e4c72ed4a83
 SHA512 
b1ea93d80ac0978a7c228460a6714f8d17797450efd5af6765c9fa4402e9060a8ef3a700d2757593a3016fdc32276722c8f4a5d9889a3e2eb424f16162a52bde
 DIST ogre-2.1.tar.gz 157457252 BLAKE2B 
97e83cb93a07de5bd5f4fd778604e6146105e70045a6019f0fcdd7f96fe20f6ad495e19988dcd5e4c4073a0bcdeb5ce2afb06fae6945363c397a882672c80520
 SHA512 
9802e3bf20ddb09453524d1ddafa7a2083dfd0e609563f478fe31b087dd06d463f69800b9c6485cb3db92d98f282ef67ace3e272c1ef531e982ea9f719617fb5

diff --git a/dev-games/ogre/files/ogre-1.12.8-fix_Simple_demo.patch 
b/dev-games/ogre/files/ogre-1.12.9-fix_Simple_demo.patch
similarity index 100%
rename from dev-games/ogre/files/ogre-1.12.8-fix_Simple_demo.patch
rename to dev-games/ogre/files/ogre-1.12.9-fix_Simple_demo.patch

diff --git a/dev-games/ogre/files/ogre-1.12.9-fix_config_window_height.patch 
b/dev-games/ogre/files/ogre-1.12.9-fix_config_window_height.patch
new file mode 100644
index 000..12b4ce86a86
--- /dev/null
+++ b/dev-games/ogre/files/ogre-1.12.9-fix_config_window_height.patch
@@ -0,0 +1,11 @@
+--- a/Components/Bites/src/OgreGLXConfigDialog.cpp 2020-09-21 
15:17:33.783741691 +0200
 b/Components/Bites/src/OgreGLXConfigDialog.cpp 2020-09-21 
15:17:35.948741768 +0200
+@@ -74,7 +74,7 @@
+ class GLXConfigurator {
+ /* GUI constants */
+ static const int wWidth = 500;  // Width of window
+-static const int wHeight = 380; // Height of window
++static const int wHeight = 340; // Height of window
+ static const int col1x = 20;// Starting x of column 1 (labels)
+ static const int col2x = 230;   // Starting x of column 2 (options)
+ static const int col1w = 200;   // Width of column 1 (labels)

diff --git a/dev-games/ogre/files/ogre-1.12.8-upgrade_imgui.patch 
b/dev-games/ogre/files/ogre-1.12.9-gentoolize_imgui_inclusion.patch
similarity index 63%
rename from dev-games/ogre/files/ogre-1.12.8-upgrade_imgui.patch
rename to 

[gentoo-commits] repo/proj/guru:dev commit in: app-office/openoffice-bin/files/, app-office/openoffice-bin/

2020-09-21 Thread Sergey Torokhov
commit: bc9b58fff6a3174762e86e07376a68ac3e4fa813
Author: Sergey Torokhov  yandex  ru>
AuthorDate: Mon Sep 21 20:31:01 2020 +
Commit: Sergey Torokhov  yandex  ru>
CommitDate: Mon Sep 21 20:31:01 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=bc9b58ff

app-office/openoffice-bin: new package, 4.1.7-r1 revision bump

The Apache OpenOffice (app-office/openoffice-bin-4.1.7-r0)
was removed from gentoo main portage tree.

In this new revision for guru:
Remove python2 dependency and thus drop python2 script support.
Remove obsolete gstreamer-0.10 plugin.

Update to EAPI-7.
Update PDEPEND="java? ..." ( >=virtual/jre-1.5 ) --> ( >=virtual/jre-1.8.0 ).

Signed-off-by: Sergey Torokhov  yandex.ru>

 app-office/openoffice-bin/Manifest |  80 +
 app-office/openoffice-bin/files/50-openoffice-bin  |   3 +
 app-office/openoffice-bin/files/wrapper.in |   4 +
 app-office/openoffice-bin/metadata.xml |  16 ++
 .../openoffice-bin/openoffice-bin-4.1.7-r1.ebuild  | 196 +
 5 files changed, 299 insertions(+)

diff --git a/app-office/openoffice-bin/Manifest 
b/app-office/openoffice-bin/Manifest
new file mode 100644
index ..e6b800d5
--- /dev/null
+++ b/app-office/openoffice-bin/Manifest
@@ -0,0 +1,80 @@
+DIST Apache_OpenOffice_4.1.7_Linux_x86-64_install-rpm_en-US.tar.gz 163657250 
BLAKE2B 
a73add3ca65461d9ad058f8a828e3c04e9826dc82a01af9174b3fa9f62211e6db2965959260928d6d40cff98fc1b6237143206a3a84e7458f784779d61999e1d
 SHA512 
9e1c692dcf19625da40de30ed16625eaa5d16c8bcd1917af3ee3010b535292f3cba832c11419a88e524d64ca2e3d21e4442e00b26028b7d024bf0498ef398b75
+DIST Apache_OpenOffice_4.1.7_Linux_x86-64_langpack-rpm_ast.tar.gz 18753908 
BLAKE2B 
cccde7d2a9706dc57ca6ee734326b2a2ec8e9c58ff123f5d80eca090ee7d9da45c36ac94bc20985aec8331139580da9b91cdebcb6f4df84a05c94fcdc73abd4f
 SHA512 
b4dd1e0db302cd4ff5c01b47f1458e2421a24b983692aa335ad76a4fc5486eae3b104b65364aa5863786e78bbdac4ab383bd401a8109cb82344daa92a79bce69
+DIST Apache_OpenOffice_4.1.7_Linux_x86-64_langpack-rpm_bg.tar.gz 13609334 
BLAKE2B 
bc90a777df390bcfc1596c47f93f8c40b5eecb5edad5c711bd944c4b6fc59a0f3ce81ed352f27e59f5fe0b85eab3b2c9c8b453ed9cfb2e32fa133d650aaad27f
 SHA512 
e5e014a6380243ea4e0e4259faab14ca9e8dc5f7e6b47f81cde8e88c4910a27c97443fa50bc661fc42e1a849505a0ce3192c4a219a82a24be472cda2476a140c
+DIST Apache_OpenOffice_4.1.7_Linux_x86-64_langpack-rpm_ca-XV.tar.gz 20189969 
BLAKE2B 
55ed4a7f1a6926c0dfbe732997762bffb93364500bf0fb53b72d54c5a70f3d71617b152527bbc40e7bfecc8f266610bebacfe3273862c2fd723e3a5ee224e993
 SHA512 
f311b8c67af8ebfa01bb79b46930692367a2b4bf70c5b6193e9e75aec85dc2f4bb565a40eb0ab585b12c63863a5ed02d2e5783fd4ff176b8bd253aeb8d3608a9
+DIST Apache_OpenOffice_4.1.7_Linux_x86-64_langpack-rpm_ca.tar.gz 20185622 
BLAKE2B 
eb58e01794c1ab0a3cee67b693eecef45d2face184e48e6cd03b0d0bb3020f8522e043604ae7832c3bc30208e1911a7d8cf71b497b279aa57374ea68bd53933e
 SHA512 
78d218703e30d3007752012d02c0e9abebddc38900a9fb12e9203282bec8a97fcb67d61bcf31c5c429a9a97835a49cfa4af01533e6b5170e4a0c1e155422b034
+DIST Apache_OpenOffice_4.1.7_Linux_x86-64_langpack-rpm_cs.tar.gz 12651417 
BLAKE2B 
794cdbf82349409d60debb0e3dc1303363976798b49f43783fda8dc437c5624d5535ea73b7840656192818fd08e00969c35db8ac6285104e1319dae7a41d6530
 SHA512 
81b18843ea52d7b23c5a0910e0b354cd73d87b60a1d0deeb9eebc4a994c83f895810508bac6824776f50d4fd973ae50bfc63c9cde635139cc9da6aebf42ab485
+DIST Apache_OpenOffice_4.1.7_Linux_x86-64_langpack-rpm_da.tar.gz 12440854 
BLAKE2B 
a80be6e25a22805dd9bb7eabfec84ffc0085cd2a02864361f2309e1b4399b5b540400a2f924e22b19fc0a421b0bf6421e4e6b1a6f637c8dcfdb7d29aec5eabc2
 SHA512 
95e7b1babd4ff98b53ad127f85e4d12b9fa7ffcaa651e2b7f4b1f3d7dc569ada54fc6adeaf096d6b5d1a91790408397b6693d2fbf20bc84ba3e0b05633d0d299
+DIST Apache_OpenOffice_4.1.7_Linux_x86-64_langpack-rpm_de.tar.gz 20371888 
BLAKE2B 
cb5bd61733f9751e46763ad86cb8afa39b0cba9c49f782e5bf19a29702fd12e4d37fb2ac40af9194919fb11ccd8ee9fc6996cc9fd779fd4a2a9e261704085938
 SHA512 
41483c36e11f63d462d660be83cdd58af1dd7f6d49bb18c957f18719303455303f48aa10cc0b733827002574330a5c82ac67946cec07e0df468c53f1181d1460
+DIST Apache_OpenOffice_4.1.7_Linux_x86-64_langpack-rpm_el.tar.gz 21713556 
BLAKE2B 
b83f4f6473127d977d54e9bcf051e28519d56d9c08438e476db6f5c95649b35c00d44aab02841a092810f7e1876d1e8bd976af851ba953cd1b80606ec30c581e
 SHA512 
54226b34777ff4aa4c0870258636f11657253da8811f74599af40d3677d5976985c798845646446c3e35b4223ebb65de72a8e911c12e184dee3374e42521d2af
+DIST Apache_OpenOffice_4.1.7_Linux_x86-64_langpack-rpm_en-GB.tar.gz 11402093 
BLAKE2B 
e4bfcaed64e877138011b27161057fe8014624a4372432cc41caa6dfab0e1532323a11b287e47b56381f89566471e29b73a0d7f44d0ccb8ebb1ee7ad757c76cc
 SHA512 
41a2b46668ae2d9ab36a0e224eb7480a30d257adf911b1cbc3090e9e8319a011874a431ca4f0333ad460df66f27d68eb72fa3d1d947e717f8486c8c0149843ac
+DIST Apache_OpenOffice_4.1.7_Linux_x86-64_langpack-rpm_es.tar.gz 12840878 
BLAKE2B 

[gentoo-commits] repo/gentoo:master commit in: dev-perl/Crypt-Random-TESHA2/

2020-09-21 Thread Kent Fredric
commit: d4f9f9185f73ac07ad86e656968a671071e1d660
Author: Kent Fredric  gentoo  org>
AuthorDate: Mon Sep 21 18:29:12 2020 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Mon Sep 21 20:28:27 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4f9f918

dev-perl/Crypt-Random-TESHA2: Add w/ version=0.10.0

Required by:
- dev-perl/Crypt-Random-Seed
- via dev-perl/Bytes-Random-Secure
- optional via dev-perl/Crypt-PWSafe3

And Crypt-PWSafe3 requested by juippis as an optional dependency
of app-admin/kpcli

Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Kent Fredric  gentoo.org>

 .../Crypt-Random-TESHA2-0.10.0.ebuild  | 35 ++
 dev-perl/Crypt-Random-TESHA2/Manifest  |  1 +
 dev-perl/Crypt-Random-TESHA2/metadata.xml  | 13 
 3 files changed, 49 insertions(+)

diff --git a/dev-perl/Crypt-Random-TESHA2/Crypt-Random-TESHA2-0.10.0.ebuild 
b/dev-perl/Crypt-Random-TESHA2/Crypt-Random-TESHA2-0.10.0.ebuild
new file mode 100644
index 000..1355e9d4331
--- /dev/null
+++ b/dev-perl/Crypt-Random-TESHA2/Crypt-Random-TESHA2-0.10.0.ebuild
@@ -0,0 +1,35 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DIST_AUTHOR=DANAJ
+DIST_VERSION=0.01
+DIST_EXAMPLES=("examples/*")
+inherit perl-module
+
+DESCRIPTION="Random numbers using timer/schedule entropy"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   virtual/perl-Carp
+   >=virtual/perl-Digest-SHA-5.220.0
+   >=virtual/perl-Exporter-5.562.0
+   >=virtual/perl-Time-HiRes-1.971.100
+"
+BDEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-MakeMaker
+   test? (
+   >=virtual/perl-Test-Simple-0.450.0
+   )
+"
+PERL_RM_FILES=(
+   t/12-dispersion.t # internally skipped
+   t/90-release-perlcritic.t
+   t/91-release-pod-syntax.t
+   t/92-release-pod-coverage.t
+   t/93-release-kwalitee.t
+)

diff --git a/dev-perl/Crypt-Random-TESHA2/Manifest 
b/dev-perl/Crypt-Random-TESHA2/Manifest
new file mode 100644
index 000..502b6034680
--- /dev/null
+++ b/dev-perl/Crypt-Random-TESHA2/Manifest
@@ -0,0 +1 @@
+DIST Crypt-Random-TESHA2-0.01.tar.gz 22255 BLAKE2B 
f05da754d1b2abf2f7c102f1d754ea3cb0969b2202ab248f5f2badbe6046f642fc80d16e8239688e4366e7d56ce1b842458d2924d6769ad708b05ca81036fcc7
 SHA512 
afc95d73481cb6aa06b939ef51b5ddc14e7aaee296d08779f79313000188d7c2e5e88ddf2048dd45b9dd96420cdd7f65f0a98c8bcb4c5be77709043d558ec4ba

diff --git a/dev-perl/Crypt-Random-TESHA2/metadata.xml 
b/dev-perl/Crypt-Random-TESHA2/metadata.xml
new file mode 100644
index 000..8ed79f88d1a
--- /dev/null
+++ b/dev-perl/Crypt-Random-TESHA2/metadata.xml
@@ -0,0 +1,13 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  
+p...@gentoo.org
+Gentoo Perl Project
+  
+  
+Crypt-Random-TESHA2
+Crypt::Random::TESHA2
+Crypt::Random::TESHA2::Config
+  
+



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Crypt-Random-Seed/

2020-09-21 Thread Kent Fredric
commit: a2a0b319be19df71e04b64a5bf18359bbc9d0650
Author: Kent Fredric  gentoo  org>
AuthorDate: Mon Sep 21 18:34:11 2020 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Mon Sep 21 20:28:30 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2a0b319

dev-perl/Crypt-Random-Seed: Add w/ version=0.30.0

Required by:
- dev-perl/Bytes-Random-Secure
- optional via dev-perl/Crypt-PWSafe3

And Crypt-PWSafe3 requested by juippis as an optional dependency
of app-admin/kpcli

Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Kent Fredric  gentoo.org>

 .../Crypt-Random-Seed-0.30.0.ebuild| 34 ++
 dev-perl/Crypt-Random-Seed/Manifest|  1 +
 dev-perl/Crypt-Random-Seed/metadata.xml| 12 
 3 files changed, 47 insertions(+)

diff --git a/dev-perl/Crypt-Random-Seed/Crypt-Random-Seed-0.30.0.ebuild 
b/dev-perl/Crypt-Random-Seed/Crypt-Random-Seed-0.30.0.ebuild
new file mode 100644
index 000..110e308ae57
--- /dev/null
+++ b/dev-perl/Crypt-Random-Seed/Crypt-Random-Seed-0.30.0.ebuild
@@ -0,0 +1,34 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DIST_AUTHOR=DANAJ
+DIST_VERSION=0.03
+DIST_EXAMPLES=("examples/*")
+inherit perl-module
+
+DESCRIPTION="Simple method to get strong randomness"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   virtual/perl-Carp
+   dev-perl/Crypt-Random-TESHA2
+   >=virtual/perl-Exporter-5.562.0
+"
+BDEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-MakeMaker
+   test? (
+   >=virtual/perl-Test-Simple-0.450.0
+   )
+"
+PERL_RM_FILES=(
+   t/90-release-perlcritic.t
+   t/91-release-pod-syntax.t
+   t/92-release-pod-coverage.t
+   t/93-release-kwalitee.t
+   t/94-release-manifest.t
+)

diff --git a/dev-perl/Crypt-Random-Seed/Manifest 
b/dev-perl/Crypt-Random-Seed/Manifest
new file mode 100644
index 000..8018c9ab90c
--- /dev/null
+++ b/dev-perl/Crypt-Random-Seed/Manifest
@@ -0,0 +1 @@
+DIST Crypt-Random-Seed-0.03.tar.gz 22175 BLAKE2B 
4e789c1bc58258bf2eac294e277616f67a976be1cccef842afce1a2c91d4721133d6f70c3a3396c0c69b88ae75d4dd6645f923795ec6a116211f988d2cf9b4bd
 SHA512 
5ee6ea67c325aa9693c96ef650e3888a599d3d7e25316f869808dc6e06b9dd86f1c200c9097939f74511e2ed59e48df1b28cc96e5f7988076d9f7f5d840a894e

diff --git a/dev-perl/Crypt-Random-Seed/metadata.xml 
b/dev-perl/Crypt-Random-Seed/metadata.xml
new file mode 100644
index 000..a7a16166271
--- /dev/null
+++ b/dev-perl/Crypt-Random-Seed/metadata.xml
@@ -0,0 +1,12 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  
+p...@gentoo.org
+Gentoo Perl Project
+  
+  
+Crypt-Random-Seed
+Crypt::Random::Seed
+  
+



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

2020-09-21 Thread Kent Fredric
commit: a43946828a6fbab81bb7401086b69d56c0a905c1
Author: Kent Fredric  gentoo  org>
AuthorDate: Mon Sep 21 17:45:07 2020 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Mon Sep 21 20:28:23 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4394682

dev-perl/Crypt-ECB: Add w/ version=2.220.0

Required by: dev-perl/Crypt-PWSafe3
Which was requiested by juippis as an optional dep for
  app-admin/kpcli

Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Kent Fredric  gentoo.org>

 dev-perl/Crypt-ECB/Crypt-ECB-2.220.0.ebuild | 22 ++
 dev-perl/Crypt-ECB/Manifest |  1 +
 dev-perl/Crypt-ECB/metadata.xml | 12 
 3 files changed, 35 insertions(+)

diff --git a/dev-perl/Crypt-ECB/Crypt-ECB-2.220.0.ebuild 
b/dev-perl/Crypt-ECB/Crypt-ECB-2.220.0.ebuild
new file mode 100644
index 000..e752b54cfdd
--- /dev/null
+++ b/dev-perl/Crypt-ECB/Crypt-ECB-2.220.0.ebuild
@@ -0,0 +1,22 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DIST_AUTHOR=APPEL
+DIST_VERSION=2.22
+DIST_EXAMPLES=("eg/*")
+inherit perl-module
+
+DESCRIPTION="Use block ciphers using ECB mode"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+BDEPEND="
+   virtual/perl-ExtUtils-MakeMaker
+   test? (
+   virtual/perl-Test-Simple
+   )
+"

diff --git a/dev-perl/Crypt-ECB/Manifest b/dev-perl/Crypt-ECB/Manifest
new file mode 100644
index 000..d3df66f231c
--- /dev/null
+++ b/dev-perl/Crypt-ECB/Manifest
@@ -0,0 +1 @@
+DIST Crypt-ECB-2.22.tar.gz 25987 BLAKE2B 
13f1873a0391a460d2abe4bda35b532422784254313d6170cf37c6bdc2693fc1990e3dc1ea5aa43a4eb87798eeab0dd8c9a29185140c45a1527e01d3df741199
 SHA512 
1d186001674ed4a0ee6933e441cd20e177e63a5809abcf865d48041712f31db312f0206883601369f031451ab702f6f9ef8be5c3f1cec6088ad200f541c04459

diff --git a/dev-perl/Crypt-ECB/metadata.xml b/dev-perl/Crypt-ECB/metadata.xml
new file mode 100644
index 000..6e888cf011c
--- /dev/null
+++ b/dev-perl/Crypt-ECB/metadata.xml
@@ -0,0 +1,12 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  
+p...@gentoo.org
+Gentoo Perl Project
+  
+  
+Crypt-ECB
+Crypt::ECB
+  
+



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

2020-09-21 Thread Kent Fredric
commit: 796bb2cbbcb09ef1b545e784cee244962c0bf618
Author: Kent Fredric  gentoo  org>
AuthorDate: Mon Sep 21 20:28:04 2020 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Mon Sep 21 20:28:41 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=796bb2cb

dev-perl/Crypt-PWSafe3: Add w/ version=1.220.0

Requested by juippis as an optional dependency of app-admin/kpcli

Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Kent Fredric  gentoo.org>

 .../Crypt-PWSafe3/Crypt-PWSafe3-1.220.0.ebuild | 37 ++
 dev-perl/Crypt-PWSafe3/Manifest|  1 +
 dev-perl/Crypt-PWSafe3/metadata.xml| 17 ++
 3 files changed, 55 insertions(+)

diff --git a/dev-perl/Crypt-PWSafe3/Crypt-PWSafe3-1.220.0.ebuild 
b/dev-perl/Crypt-PWSafe3/Crypt-PWSafe3-1.220.0.ebuild
new file mode 100644
index 000..a3ea999c8cd
--- /dev/null
+++ b/dev-perl/Crypt-PWSafe3/Crypt-PWSafe3-1.220.0.ebuild
@@ -0,0 +1,37 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DIST_AUTHOR=TLINDEN
+DIST_VERSION=1.22
+DIST_EXAMPLES=("sample/test.pl")
+inherit perl-module
+
+DESCRIPTION="Read and write Passwordsafe v3 files"
+LICENSE="Artistic-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="minimal test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   !minimal? (
+   >=dev-perl/Bytes-Random-Secure-0.90.0
+   )
+   >=dev-perl/Crypt-CBC-2.300.0
+   >=dev-perl/Crypt-ECB-1.450.0
+   >=dev-perl/Crypt-Random-1.250.0
+   >=dev-perl/Crypt-Twofish-2.140.0
+   >=dev-perl/Data-UUID-1.217.0
+   >=dev-perl/Digest-HMAC-1.0.0
+   >=virtual/perl-Digest-SHA-1.0.0
+   virtual/perl-File-Temp
+   >=dev-perl/Shell-0.500.0
+"
+BDEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-MakeMaker
+   test? (
+   virtual/perl-Test-Simple
+   )
+"

diff --git a/dev-perl/Crypt-PWSafe3/Manifest b/dev-perl/Crypt-PWSafe3/Manifest
new file mode 100644
index 000..78b9692c0f0
--- /dev/null
+++ b/dev-perl/Crypt-PWSafe3/Manifest
@@ -0,0 +1 @@
+DIST Crypt-PWSafe3-1.22.tar.gz 26426 BLAKE2B 
d1ec19825616c438baf6faad7940e836faa7f1385a6990b255d92d9d4e4c569d643b81614e8d90718a00c0fc172125ad96226a201ad1e6cead103d9649842326
 SHA512 
a02d9d427f30a1925d5fceefe7f677b28c755a7eb6364e336d24961d901a846948c18efa077c26a0f261a4d6ddeeeb615e4d35fbe759dda2c89bb33ff99bed26

diff --git a/dev-perl/Crypt-PWSafe3/metadata.xml 
b/dev-perl/Crypt-PWSafe3/metadata.xml
new file mode 100644
index 000..dd44809acc0
--- /dev/null
+++ b/dev-perl/Crypt-PWSafe3/metadata.xml
@@ -0,0 +1,17 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  
+p...@gentoo.org
+Gentoo Perl Project
+  
+  
+Crypt-PWSafe3
+Crypt::PWSafe3
+Crypt::PWSafe3::Field
+Crypt::PWSafe3::HeaderField
+Crypt::PWSafe3::PasswordPolicy
+Crypt::PWSafe3::Record
+Crypt::PWSafe3::SHA256
+  
+



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Bytes-Random-Secure/

2020-09-21 Thread Kent Fredric
commit: 89c722cafb7b7cf9a83c34774bb04f20371b8f2c
Author: Kent Fredric  gentoo  org>
AuthorDate: Mon Sep 21 20:18:18 2020 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Mon Sep 21 20:28:38 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89c722ca

dev-perl/Bytes-Random-Secure: Add w/ version=0.290.0

Required optionally by dev-perl/Crypt-PWSafe3

And Crypt-PWSafe3 requested by juippis as an optional dependency
of app-admin/kpcli

Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Kent Fredric  gentoo.org>

 .../Bytes-Random-Secure-0.290.0.ebuild | 46 ++
 dev-perl/Bytes-Random-Secure/Manifest  |  1 +
 dev-perl/Bytes-Random-Secure/metadata.xml  | 12 ++
 3 files changed, 59 insertions(+)

diff --git a/dev-perl/Bytes-Random-Secure/Bytes-Random-Secure-0.290.0.ebuild 
b/dev-perl/Bytes-Random-Secure/Bytes-Random-Secure-0.290.0.ebuild
new file mode 100644
index 000..8eb310b499e
--- /dev/null
+++ b/dev-perl/Bytes-Random-Secure/Bytes-Random-Secure-0.290.0.ebuild
@@ -0,0 +1,46 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DIST_AUTHOR=DAVIDO
+DIST_VERSION=0.29
+DIST_EXAMPLES=("examples/*")
+inherit perl-module
+
+DESCRIPTION="extension to generate cryptographically-secure random bytes"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="minimal test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   virtual/perl-Carp
+   dev-perl/Crypt-Random-Seed
+   virtual/perl-Exporter
+   >=virtual/perl-MIME-Base64-3.30.0
+   dev-perl/Math-Random-ISAAC
+   >=virtual/perl-Scalar-List-Utils-1.210.0
+"
+BDEPEND="${RDEPEND}
+   >=virtual/perl-ExtUtils-MakeMaker-6.560.0
+   test? (
+   virtual/perl-Data-Dumper
+   >=virtual/perl-Test-Simple-0.980.0
+   virtual/perl-Time-HiRes
+   !minimal? (
+   dev-perl/Statistics-Basic
+   )
+   )
+"
+PERL_RM_FILES=(
+   t/00-boilerplate.t
+   t/01-manifest.t
+   t/02-pod.t
+   t/03-pod-coverage.t
+   t/04-perlcritic.t
+   t/05-kwalitee.t
+   t/06-meta-yaml.t
+   t/07-meta-json.t
+   t/09-changes.t
+)

diff --git a/dev-perl/Bytes-Random-Secure/Manifest 
b/dev-perl/Bytes-Random-Secure/Manifest
new file mode 100644
index 000..ecd53309804
--- /dev/null
+++ b/dev-perl/Bytes-Random-Secure/Manifest
@@ -0,0 +1 @@
+DIST Bytes-Random-Secure-0.29.tar.gz 28007 BLAKE2B 
91b4b7533466c627033a88d350e4c75cdf64cee559a5e57b193ec5186a04ba87b2ae941fbd164dab09e46ed4c767502ee8c65c49fe90e67daa5baa07032da8d6
 SHA512 
72faf9e9fff1cc9641845d47b8dd1efb39861b4015246b169167d4f6050998e91d30b53d6a3e08daf91a838fcf29a05042073064204270de05b2f2ca9990fe64

diff --git a/dev-perl/Bytes-Random-Secure/metadata.xml 
b/dev-perl/Bytes-Random-Secure/metadata.xml
new file mode 100644
index 000..a3ec899895d
--- /dev/null
+++ b/dev-perl/Bytes-Random-Secure/metadata.xml
@@ -0,0 +1,12 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  
+p...@gentoo.org
+Gentoo Perl Project
+  
+  
+Bytes-Random-Secure
+Bytes::Random::Secure
+  
+



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Math-Random-ISAAC-XS/

2020-09-21 Thread Kent Fredric
commit: 06a60bb388494e02450546b95e976375ad6a11e9
Author: Kent Fredric  gentoo  org>
AuthorDate: Mon Sep 21 19:04:39 2020 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Mon Sep 21 20:28:34 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06a60bb3

dev-perl/Math-Random-ISAAC-XS: -r bump for EAPI7 + Toolchain love

- EAPI7
- Add USE="examples"
- Fix LICENSE
- USE=minimal -ize the RDEP on Math-Random-ISAAC as no code seems to
  directly use it, but some weak dependency is there only as a
  precaution.
- Fix dependencies somewhat
- Parallel tests
- Strip bad tests
- Guard against LD breaking Perl by not being a CCLD ( Set CCLD if
  you know what you're doing )
- Ensure CFLAGS passed to make/compiler

Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Kent Fredric  gentoo.org>

 .../Math-Random-ISAAC-XS-1.4.0-r2.ebuild   | 53 ++
 1 file changed, 53 insertions(+)

diff --git a/dev-perl/Math-Random-ISAAC-XS/Math-Random-ISAAC-XS-1.4.0-r2.ebuild 
b/dev-perl/Math-Random-ISAAC-XS/Math-Random-ISAAC-XS-1.4.0-r2.ebuild
new file mode 100644
index 000..078626b748d
--- /dev/null
+++ b/dev-perl/Math-Random-ISAAC-XS/Math-Random-ISAAC-XS-1.4.0-r2.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DIST_AUTHOR=JAWNSY
+DIST_VERSION=1.004
+DIST_EXAMPLES=("examples/*")
+inherit perl-module
+
+DESCRIPTION="C implementation of the ISAAC PRNG algorithm"
+
+LICENSE="public-domain || ( Artistic GPL-1+ )"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="minimal test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   !minimal? (
+   dev-perl/Math-Random-ISAAC
+   )
+"
+DEPEND="dev-perl/Module-Build"
+BDEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-CBuilder
+   virtual/perl-ExtUtils-ParseXS
+   >=dev-perl/Module-Build-0.280.801_rc
+   test? (
+   >=dev-perl/Test-NoWarnings-0.84.0
+   >=virtual/perl-Test-Simple-0.620.0
+   )
+"
+PERL_RM_FILES=(
+   # dubious use for gentoo, maybe one day?
+   t/03memory.t
+   t/05valgrind.t
+   # release only
+   t/04uniform.t
+   t/release-dist-manifest.t
+   t/release-kwalitee.t
+   t/release-pod-coverage.t
+   t/release-pod-syntax.t
+   t/release-portability.t
+)
+src_configure() {
+   unset LD
+   [[ -n "${CCLD}" ]] && export LD="${CCLD}"
+   perl-module_src_configure
+}
+src_compile() {
+   ./Build --config "optimize=${CFLAGS}" build || die
+}



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

2020-09-21 Thread Marek Szuba
commit: 2a88d17c3f2302c2be0ed0ae7f6f05f6214fce15
Author: Marek Szuba  gentoo  org>
AuthorDate: Mon Sep 21 18:52:02 2020 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Mon Sep 21 20:09:08 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a88d17c

media-libs/gmmlib: bump to 20.3.2

Closes: https://github.com/gentoo/gentoo/pull/17535
Signed-off-by: Marek Szuba  gentoo.org>

 media-libs/gmmlib/Manifest |  1 +
 media-libs/gmmlib/gmmlib-20.3.2.ebuild | 46 ++
 2 files changed, 47 insertions(+)

diff --git a/media-libs/gmmlib/Manifest b/media-libs/gmmlib/Manifest
index 0db59098fe7..bdeb1f1f0db 100644
--- a/media-libs/gmmlib/Manifest
+++ b/media-libs/gmmlib/Manifest
@@ -1,2 +1,3 @@
 DIST intel-gmmlib-20.2.2.tar.gz 728309 BLAKE2B 
1c26661c5317d66797ca8a72fe910ae73a97c7bc3b5730b6c270daa3eac753287cd83334085c90ce081ff4a8a4d1f79b46e832059b08c36602c5c39f3b3a1af5
 SHA512 
ebd23658aec78ebdf7cd13577f5ca408e2995c4df6135c951d3bea4a59a84461690d71f6e7ebc2014daa5508e07d32ff20c25019d90255150e7c93e241d403fc
 DIST intel-gmmlib-20.2.5.tar.gz 728792 BLAKE2B 
c78cebcfad9f314e3ee298deaa78586cb5c1c8e2e5bba9051a8b17c26001b72aaa675443fcdc9757031977c548a0360e2511bd29873fc7302922b33a2c1a0324
 SHA512 
354363b0944e4f0e08065fa7a0cb85d477f522858a55f4998a2374ef8e115e331961cc269db886dac3b1e5825d11e036ebc0b4ab65b1618653810e4bfc4751ec
+DIST intel-gmmlib-20.3.2.tar.gz 729059 BLAKE2B 
3cc07d9dc07fecd483c35bde41802c8a433a751310fe4d0273625f3a6e245a2dd6e5546b4e5bed40b04b22c4e00a648cce66b221c25da8c6f3f3637a890508bd
 SHA512 
1d8ea369b5b22ca747f8bdaee0be24584b79ccdecaad6c85e5f0a41ac171459261c8c5b220797ffc525e7e29cfa1664f9eaca07f5e72d4a260f327d8980fb2dd

diff --git a/media-libs/gmmlib/gmmlib-20.3.2.ebuild 
b/media-libs/gmmlib/gmmlib-20.3.2.ebuild
new file mode 100644
index 000..2cb36edcb25
--- /dev/null
+++ b/media-libs/gmmlib/gmmlib-20.3.2.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+CMAKE_ECLASS=cmake
+
+inherit cmake-multilib
+
+if [[ ${PV} == * ]] ; then
+   : ${EGIT_REPO_URI:="https://github.com/intel/gmmlib"}
+   if [[ ${PV%} != "" ]] ; then
+   : ${EGIT_BRANCH:="release/${PV%.}"}
+   fi
+   inherit git-r3
+fi
+
+DESCRIPTION="Intel Graphics Memory Management Library"
+HOMEPAGE="https://github.com/intel/gmmlib;
+if [[ ${PV} == * ]] ; then
+   SRC_URI=""
+   KEYWORDS=""
+else
+   SRC_URI="https://github.com/intel/gmmlib/archive/intel-${P}.tar.gz;
+   S="${WORKDIR}/${PN}-intel-${P}"
+   KEYWORDS="~amd64"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="test"
+
+RESTRICT="!test? ( test )"
+
+RDEPEND="${DEPEND}"
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-20.2.2_conditional_testing.patch
+)
+
+multilib_src_configure() {
+   local mycmakeargs=(
+   -DBUILD_TESTING=$(usex test)
+   )
+   cmake_src_configure
+}



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

2020-09-21 Thread Marek Szuba
commit: 2080a4c05f9ab374d8f2303ecdff293ac666f1ab
Author: Marek Szuba  gentoo  org>
AuthorDate: Mon Sep 21 19:00:37 2020 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Mon Sep 21 20:09:11 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2080a4c0

net-libs/libhtp: bump to 0.5.34

Signed-off-by: Marek Szuba  gentoo.org>

 net-libs/libhtp/Manifest |  1 +
 net-libs/libhtp/libhtp-0.5.34.ebuild | 37 
 2 files changed, 38 insertions(+)

diff --git a/net-libs/libhtp/Manifest b/net-libs/libhtp/Manifest
index dc1cec7db0f..0d99c9aa51b 100644
--- a/net-libs/libhtp/Manifest
+++ b/net-libs/libhtp/Manifest
@@ -1 +1,2 @@
 DIST libhtp-0.5.33.tar.gz 496010 BLAKE2B 
9648632e9f37c20a3efa5edf9b5ee5ed97b5ba767faf6b276c4d38760422b601f9443cfaf30e60c6e6dd555d259a3b5613f0370040753d7336f6ef5e94b32d55
 SHA512 
52bbb72710fd0f5fc917d62f5a2b659092669eda0553586e75c17c558e3f6559dcf8eb7707db931045af532592cbad691461af2dd5362f95e2a4884e7475bf94
+DIST libhtp-0.5.34.tar.gz 496765 BLAKE2B 
8f4eb6b074d9a84fa872ff963f20b4a52f86d171a03fe2347affa9b9383d0d4ba4633b03ec5ca2a9a923c28d16e3f2304f0b4e32c8c4385c0333ba2f280ad21a
 SHA512 
dc86c6b3a90439e9e2d5375b64119d80771e2dc076670f49b9d5f252d7b16fe5b643a16577ce50189c289e7baf16fcb84d86254d965a11ab1d148ad59455c20f

diff --git a/net-libs/libhtp/libhtp-0.5.34.ebuild 
b/net-libs/libhtp/libhtp-0.5.34.ebuild
new file mode 100644
index 000..4c0e8229142
--- /dev/null
+++ b/net-libs/libhtp/libhtp-0.5.34.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools multilib-minimal
+
+DESCRIPTION="security-aware parser for the HTTP protocol and the related bits 
and pieces"
+HOMEPAGE="https://github.com/OISF/libhtp;
+SRC_URI="https://github.com/OISF/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
+IUSE="debug static-libs"
+
+RDEPEND="sys-libs/zlib[static-libs?]"
+DEPEND="${RDEPEND}"
+
+src_prepare() {
+   default
+   eautoreconf
+}
+
+multilib_src_configure() {
+   # The debug configure logic is broken.
+   ECONF_SOURCE=${S} \
+   econf \
+   $(usex debug '--enable-debug' '') \
+   $(use_enable static-libs static)
+}
+
+multilib_src_install_all() {
+   if ! use static-libs; then
+   find "${ED}" -name '*.la' -delete || die "Failed to remove .la 
files"
+   fi
+}



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

2020-09-21 Thread Marek Szuba
commit: bd79357617bc3f0b9d3f96fa23aa759e3aea24cf
Author: Marek Szuba  gentoo  org>
AuthorDate: Mon Sep 21 19:02:32 2020 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Mon Sep 21 20:09:15 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd793576

app-emulation/protontricks: bump to 1.4.2

Signed-off-by: Marek Szuba  gentoo.org>

 app-emulation/protontricks/Manifest | 2 +-
 .../{protontricks-1.4.1-r1.ebuild => protontricks-1.4.2.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-emulation/protontricks/Manifest 
b/app-emulation/protontricks/Manifest
index 07a1ca660a7..afc7360b503 100644
--- a/app-emulation/protontricks/Manifest
+++ b/app-emulation/protontricks/Manifest
@@ -1,2 +1,2 @@
-DIST protontricks-1.4.1.gh.tar.gz 40029 BLAKE2B 
3937f69ad1113c0a368117db38cf8bf1b66feea5cc7c509eaee2f7adabdeea724368baa15f51134a5a9749171a34f439878bfda3fc6b813caba11faf7be76373
 SHA512 
96d4b3aa5b1ca8f7f9bad0859f5984eb29a0bed01f420d108e537deef0436af314e73fcfaccfd58b5b1dc912698404bd4b0157e69ab6a055d65eb3701a60d00b
 DIST protontricks-1.4.1.tar.gz 31838 BLAKE2B 
b8c94a1b96fa7df14eaf1cc6d11cb96e43ae4e8c7bd232687a50cae9c79cf2d0e7864b1af0e1dc4cc20086952e1fcefeb16cb71a9c3a977f6feafad1b17d6857
 SHA512 
7635c9830afa3c64617514cd86edc7d7f9f33e6e81a1da995ec8bee70adc1cf8b5d9de92036c372134e408d735615b267b46a9afc9246f14ff161cb2ee1fc8f9
+DIST protontricks-1.4.2.gh.tar.gz 41381 BLAKE2B 
9030c5cc0781303834af3b478e78f9ba43f01c68c5e203df20a9db80492dd5e641134b796158011a15e65f6907f27a67c542323ea8f9e10c49dca3f5c663458a
 SHA512 
8b60233723130e5f7cd1a7ce7b9563ba1cc8595352b6d942d9ce66a6906f18d86cf97e2b49cbdb8e276fad6cd038eaf1de8a704a8b900b29de5dfb7327b045d0

diff --git a/app-emulation/protontricks/protontricks-1.4.1-r1.ebuild 
b/app-emulation/protontricks/protontricks-1.4.2.ebuild
similarity index 100%
rename from app-emulation/protontricks/protontricks-1.4.1-r1.ebuild
rename to app-emulation/protontricks/protontricks-1.4.2.ebuild



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

2020-09-21 Thread Marek Szuba
commit: 2641d9c3ede0d13053b230d1a5eb436a9133cb4e
Author: Marek Szuba  gentoo  org>
AuthorDate: Mon Sep 21 19:33:20 2020 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Mon Sep 21 20:09:18 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2641d9c3

dev-python/pyopencl: bump to 2020.2.2

Signed-off-by: Marek Szuba  gentoo.org>

 dev-python/pyopencl/Manifest| 2 +-
 .../pyopencl/{pyopencl-2020.2.1.ebuild => pyopencl-2020.2.2.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pyopencl/Manifest b/dev-python/pyopencl/Manifest
index 96d717e5f9c..7d6ae05491b 100644
--- a/dev-python/pyopencl/Manifest
+++ b/dev-python/pyopencl/Manifest
@@ -1,2 +1,2 @@
-DIST pyopencl-2020.2.1.tar.gz 352160 BLAKE2B 
2258c050bb8b279e3bcf563d805e36032d2f74c6b960e1453608ba1bbcf9b677c056eca5f5dde73ab2a45c13dd4653715682d83251954ee0aa841f4b65461d92
 SHA512 
5d74c61ec56c9893f8419e386e4ea16f3e1d20a922e0d7de6bf167fcd54cfac1715289bbf41af793f73c66e9738f63cd2f4a705d5addfd2e3ae2373ff3ed4866
+DIST pyopencl-2020.2.2.tar.gz 352110 BLAKE2B 
a3bb5f74abbb5d9600651dc0659f2472f7bf91d67cf3474f7306a29ccd3a8249dc952fc1e5b81f0514990e49246d106325a6697559b260a490981541666cb3a7
 SHA512 
2c4f21d9c0a5d3d53f2a0e4aaa8f85f42fc6fbedc5282cfc107ff047936aa731a973605f5500b56b62d5b580a00e9f2be2aa9a259287291641ca4b4d60c51ca9
 DIST pyopencl-2020.2.tar.gz 351600 BLAKE2B 
47a733d7a552f5d1f69a1a9710c3262d50c26651ed9f46146829babe28962e236e2c1b9ba3d3d14207f28bdc562323a94ab4c51dbf5fcf1a0b12282b3c6aff50
 SHA512 
233bbf2e99507d3a83cc8149bf7ac17332a550e4867f843fcc2b31104d961a3f0d972b0a1878d4716b2da4548f1390560141cd09cb1ba13300c541b058b9

diff --git a/dev-python/pyopencl/pyopencl-2020.2.1.ebuild 
b/dev-python/pyopencl/pyopencl-2020.2.2.ebuild
similarity index 100%
rename from dev-python/pyopencl/pyopencl-2020.2.1.ebuild
rename to dev-python/pyopencl/pyopencl-2020.2.2.ebuild



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

2020-09-21 Thread Marek Szuba
commit: 915750670aaa9a4fa4d868057e2232b958b8642f
Author: Marek Szuba  gentoo  org>
AuthorDate: Mon Sep 21 19:49:35 2020 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Mon Sep 21 20:09:22 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91575067

sys-cluster/singularity: bump to 3.6.3

Signed-off-by: Marek Szuba  gentoo.org>

 sys-cluster/singularity/Manifest |  1 +
 sys-cluster/singularity/singularity-3.6.3.ebuild | 73 
 2 files changed, 74 insertions(+)

diff --git a/sys-cluster/singularity/Manifest b/sys-cluster/singularity/Manifest
index f7800e563b4..a7981fc7923 100644
--- a/sys-cluster/singularity/Manifest
+++ b/sys-cluster/singularity/Manifest
@@ -1 +1,2 @@
 DIST singularity-3.6.2.tar.gz 5933938 BLAKE2B 
86b79687ef7591a255d01b83e857d87b7ab45aa9a84c40a7c90b493c0fc04cb33ff4f1616f38c5178e22ff1b19d390ab3b96f0fb05d6c66534e60d9ef2d7ea33
 SHA512 
fed2ebd286a3f250d8f4a7677e4bc0b13ec9b2e2eacff91c9a7f6efe6abc766a2d1b713bc291f0239585d5dacd5d4657309ef81eceb77f849f01be934a76499f
+DIST singularity-3.6.3.tar.gz 5935146 BLAKE2B 
ff5c572c016fac36032e595765319dcdff65975f2036da1222b7b74911def0bc85a2cc86ad50cb0994397251e35d629b52b59f9d6894608448d23ceba808db5c
 SHA512 
2c3342197a5075b89eb37bdf9127f9abaf3676f67dae0d164813f94e84f12b9f51f22eafd2e81a82e686622d93f90bcdf6f62c051903a2f122f960d0c116d5b1

diff --git a/sys-cluster/singularity/singularity-3.6.3.ebuild 
b/sys-cluster/singularity/singularity-3.6.3.ebuild
new file mode 100644
index 000..23232305c17
--- /dev/null
+++ b/sys-cluster/singularity/singularity-3.6.3.ebuild
@@ -0,0 +1,73 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit linux-info toolchain-funcs
+
+DESCRIPTION="Application containers for Linux"
+HOMEPAGE="https://sylabs.io;
+SRC_URI="https://github.com/hpcng/${PN}/releases/download/v${PV}/${P}.tar.gz;
+
+SLOT="0"
+LICENSE="BSD"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="examples +network +suid"
+
+# Do not complain about CFLAGS etc since go projects do not use them.
+QA_FLAGS_IGNORED='.*'
+
+COMMON="sys-libs/libseccomp"
+BDEPEND="virtual/pkgconfig"
+DEPEND="${COMMON}
+   >=dev-lang/go-1.13.0
+   app-crypt/gpgme
+   dev-libs/openssl
+   sys-apps/util-linux
+   sys-fs/cryptsetup"
+RDEPEND="${COMMON}
+   sys-fs/squashfs-tools"
+
+CONFIG_CHECK="~SQUASHFS"
+
+S=${WORKDIR}/${PN}
+
+src_configure() {
+   local myconfargs=(
+   -c "$(tc-getBUILD_CC)" \
+   -x "$(tc-getBUILD_CXX)" \
+   -C "$(tc-getCC)" \
+   -X "$(tc-getCXX)" \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --runstatedir=/run \
+   --localstatedir=/var \
+   $(usex network "" "--without-network") \
+   $(usex suid "" "--without-suid")
+   )
+   ./mconfig -v ${myconfargs[@]} || die "Error invoking mconfig"
+}
+
+src_compile() {
+   emake -C builddir
+}
+
+src_install() {
+   emake DESTDIR="${ED}" -C builddir install
+   keepdir /var/singularity/mnt/session
+
+   # As of version 3.5.3 this seems to be very much broken, affecting
+   # commands which have got nothing to do with singularity (example:
+   # completion on 'udisks mount -b /dev/' rejects all files from that
+   # directory other than 'autofs'). Moreover, this should go into
+   # $(get_bashcompdir) (from bash-completion-r1.eclass) rather than /etc.
+   # Hopefully temporary, which is why we delete this at install time
+   # instead of patching build scripts not to generate bash-completion
+   # data in the first place.
+   rm -rf "${ED}"/etc/bash_completion.d || die
+
+   dodoc README.md CONTRIBUTORS.md CONTRIBUTING.md
+   if use examples; then
+   dodoc -r examples
+   fi
+}



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

2020-09-21 Thread Rick Farina
commit: 75eda9447e65c8716949b4631b1da853a39b7a31
Author: Rick Farina  gentoo  org>
AuthorDate: Mon Sep 21 19:34:52 2020 +
Commit: Rick Farina  gentoo  org>
CommitDate: Mon Sep 21 19:34:58 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75eda944

net-wireless/iw: cleanup old

please repoman and pkgcheck

Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Rick Farina  gentoo.org>

 net-wireless/iw/Manifest|  4 
 net-wireless/iw/iw-4.14.ebuild  | 34 --
 net-wireless/iw/iw-4.9.ebuild   | 34 --
 net-wireless/iw/iw-5.0.1.ebuild | 37 -
 net-wireless/iw/iw-5.3.ebuild   | 37 -
 net-wireless/iw/iw-5.4.ebuild   |  2 +-
 6 files changed, 1 insertion(+), 147 deletions(-)

diff --git a/net-wireless/iw/Manifest b/net-wireless/iw/Manifest
index cd9fcf675c0..5afc487f791 100644
--- a/net-wireless/iw/Manifest
+++ b/net-wireless/iw/Manifest
@@ -1,5 +1 @@
-DIST iw-4.14.tar.xz 114096 BLAKE2B 
2b2e4667e37864b9f9e490a47546f9a1f458da7b230e0e6448216d68525a23e47425220132896b9b2bd424c9ecf32e35e2207a9004efa23152628ce3aa9c20ad
 SHA512 
1ce6335628641eb14ed71d39b96a9907fe36e597e6413fdce7f98f7007939bbdc3fac5af69eb1c857259706937e1a7495cf8cbd4e4ba8528c2a471ef6e4bf809
-DIST iw-4.9.tar.xz 105764 BLAKE2B 
ad8105df91c4717293d5595b5ed9b4d022e455c608d70d1aeefc3d5516dcf92e507f38f424eca60f9d819e998286a4094a83002a1b9aaf4e204ca7a02fded67e
 SHA512 
3c99d8fc07d6d85b8304ff34b96573e22af65aea688a8cb08051ce4857d7ce9ac32a5acd3b30157c6c78e942f84a18f9229c17e353b7a6d01c80324729af18b3
-DIST iw-5.0.1.tar.xz 132664 BLAKE2B 
a3b48f379f927440e08cf9794c6fca3a888a753b391188900a0975eb997b0f904075b3f22f6882d1b44d0bcd7484fdd639484d5901b6d02cc4d5d8158d545f93
 SHA512 
98764c1be7c63f86cc10193319e18c216a3f9a323444723b2949db0738ff8fcff04e6d78c035b5448c083d825a4b4cde27ec607539ec79b1898af73a7969c544
-DIST iw-5.3.tar.xz 136912 BLAKE2B 
94355d946987be62e7cf7a3515b7e78d19995bc9a2689fc107fef4b2ff81d304d330a6e779adb03385feb92320c29e8bc6f1ec06b2c2dae115fe728213e32c76
 SHA512 
986fb7cf37cc3cab7b4058b5b73fadf1dc101fa764a144c9e4fc400d2327429df53fefbd4ea9ee63821e793a4118d468012a857800521ecf9973a7b9428229c9
 DIST iw-5.4.tar.xz 136252 BLAKE2B 
0e69d1520a1a41f135207affd610e84f693e744d3c7891c7efd75451df0d7aac84be71d02a72b5c08d0b8d850b29b8ed7afb4c3481ef0bd1bef98f14c3f3aaeb
 SHA512 
84408194e5b3a2f119ae9711d856ecb4343734ebb91150e0441b2410af8f75f460ce9ab1ce7151b0dda3926270bcb80fa684058945b7549c98964a0379e39ba2

diff --git a/net-wireless/iw/iw-4.14.ebuild b/net-wireless/iw/iw-4.14.ebuild
deleted file mode 100644
index 7a5b9ac76f0..000
--- a/net-wireless/iw/iw-4.14.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit toolchain-funcs
-
-DESCRIPTION="nl80211-based configuration utility for wireless devices using 
the mac80211 kernel stack"
-HOMEPAGE="https://wireless.wiki.kernel.org/en/users/Documentation/iw;
-SRC_URI="https://www.kernel.org/pub/software/network/${PN}/${P}.tar.xz;
-
-LICENSE="ISC"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86 ~amd64-linux ~x86-linux"
-IUSE=""
-
-RDEPEND="dev-libs/libnl:="
-DEPEND="${RDEPEND}
-   virtual/pkgconfig"
-
-src_prepare() {
-   default
-   tc-export CC LD PKG_CONFIG
-}
-
-src_compile() {
-   CFLAGS="${CFLAGS} ${CPPFLAGS}" \
-   LDFLAGS="${CFLAGS} ${LDFLAGS}" \
-   emake V=1
-}
-
-src_install() {
-   emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install
-}

diff --git a/net-wireless/iw/iw-4.9.ebuild b/net-wireless/iw/iw-4.9.ebuild
deleted file mode 100644
index 5ababca4760..000
--- a/net-wireless/iw/iw-4.9.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit toolchain-funcs
-
-DESCRIPTION="nl80211-based configuration utility for wireless devices using 
the mac80211 kernel stack"
-HOMEPAGE="https://wireless.wiki.kernel.org/en/users/Documentation/iw;
-SRC_URI="https://www.kernel.org/pub/software/network/${PN}/${P}.tar.xz;
-
-LICENSE="ISC"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 ppc x86 ~amd64-linux ~x86-linux"
-IUSE=""
-
-RDEPEND="dev-libs/libnl"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig"
-
-src_prepare() {
-   default
-   tc-export CC LD PKG_CONFIG
-}
-
-src_compile() {
-   CFLAGS="${CFLAGS} ${CPPFLAGS}" \
-   LDFLAGS="${CFLAGS} ${LDFLAGS}" \
-   emake V=1
-}
-
-src_install() {
-   emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install
-}

diff --git a/net-wireless/iw/iw-5.0.1.ebuild b/net-wireless/iw/iw-5.0.1.ebuild
deleted file mode 100644
index 5f8ba4f5d30..000
--- a/net-wireless/iw/iw-5.0.1.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit 

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

2020-09-21 Thread Rick Farina
commit: f37c80737da2fc1399fa8e1552a598b733b23359
Author: Rick Farina  gentoo  org>
AuthorDate: Mon Sep 21 19:31:55 2020 +
Commit: Rick Farina  gentoo  org>
CommitDate: Mon Sep 21 19:34:58 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f37c8073

net-libs/libosmo-dsp: please pkgcheck

Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Rick Farina  gentoo.org>

 net-libs/libosmo-dsp/libosmo-dsp-0.3.ebuild  | 8 
 net-libs/libosmo-dsp/libosmo-dsp-.ebuild | 8 
 2 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/net-libs/libosmo-dsp/libosmo-dsp-0.3.ebuild 
b/net-libs/libosmo-dsp/libosmo-dsp-0.3.ebuild
index b49e28335ba..6d74de097a2 100644
--- a/net-libs/libosmo-dsp/libosmo-dsp-0.3.ebuild
+++ b/net-libs/libosmo-dsp/libosmo-dsp-0.3.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=7
 inherit autotools multilib
 
 DESCRIPTION="A library with SDR DSP primitives"
@@ -10,7 +10,6 @@ HOMEPAGE="http://git.osmocom.org/libosmo-dsp/;
 if [[ ${PV} == * ]]; then
inherit git-r3
EGIT_REPO_URI="git://git.osmocom.org/${PN}"
-   KEYWORDS=""
 else
SRC_URI="https://dev.gentoo.org/~zerochaos/distfiles/${P}.tar.xz;
KEYWORDS="~amd64 ~arm ~x86"
@@ -20,12 +19,13 @@ LICENSE="GPL-2"
 SLOT="0/${PV}"
 IUSE="doc static-libs"
 
-RDEPEND="sci-libs/fftw"
+RDEPEND="sci-libs/fftw:3.0"
 DEPEND="${RDEPEND}
doc? ( app-doc/doxygen )
virtual/pkgconfig"
 
 src_prepare() {
+   default
eautoreconf
 }
 

diff --git a/net-libs/libosmo-dsp/libosmo-dsp-.ebuild 
b/net-libs/libosmo-dsp/libosmo-dsp-.ebuild
index b49e28335ba..6d74de097a2 100644
--- a/net-libs/libosmo-dsp/libosmo-dsp-.ebuild
+++ b/net-libs/libosmo-dsp/libosmo-dsp-.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=7
 inherit autotools multilib
 
 DESCRIPTION="A library with SDR DSP primitives"
@@ -10,7 +10,6 @@ HOMEPAGE="http://git.osmocom.org/libosmo-dsp/;
 if [[ ${PV} == * ]]; then
inherit git-r3
EGIT_REPO_URI="git://git.osmocom.org/${PN}"
-   KEYWORDS=""
 else
SRC_URI="https://dev.gentoo.org/~zerochaos/distfiles/${P}.tar.xz;
KEYWORDS="~amd64 ~arm ~x86"
@@ -20,12 +19,13 @@ LICENSE="GPL-2"
 SLOT="0/${PV}"
 IUSE="doc static-libs"
 
-RDEPEND="sci-libs/fftw"
+RDEPEND="sci-libs/fftw:3.0"
 DEPEND="${RDEPEND}
doc? ( app-doc/doxygen )
virtual/pkgconfig"
 
 src_prepare() {
+   default
eautoreconf
 }
 



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

2020-09-21 Thread Stephan Hartmann
commit: bf8b2da29338f45eca6462083a6c11aac9b1b721
Author: Stephan Hartmann  gentoo  org>
AuthorDate: Mon Sep 21 19:32:44 2020 +
Commit: Stephan Hartmann  gentoo  org>
CommitDate: Mon Sep 21 19:32:44 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf8b2da2

www-client/google-chrome: automated update (85.0.4183.121)

Signed-off-by: Stephan Hartmann  gentoo.org>

 www-client/google-chrome/Manifest   | 2 +-
 ...e-chrome-85.0.4183.102.ebuild => google-chrome-85.0.4183.121.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/google-chrome/Manifest 
b/www-client/google-chrome/Manifest
index f27605446c5..f01f7a0ab0e 100644
--- a/www-client/google-chrome/Manifest
+++ b/www-client/google-chrome/Manifest
@@ -1 +1 @@
-DIST google-chrome-stable_85.0.4183.102-1_amd64.deb 70242092 BLAKE2B 
e78a0c36fdaede944be9d761f906addeb71f69ff85b9bd68e10a573026209d5536eecb39ce2a44091590b24aacbbcebe818a12b6942d69419ddaa654aa7631cd
 SHA512 
99398fed5c0e117614dc507b317a774460a3c35084d7fa4c1409a2e978110d9196eaf661ea8fc9b473d0e08a9693998873bb4d0d8d5932bf0c4102fa68b9c5cb
+DIST google-chrome-stable_85.0.4183.121-1_amd64.deb 70233788 BLAKE2B 
d713968d7ae6ff1715c9b44cf045fa9ec679ec4ced84b10527db3a1d6d2d979fa453bbe4372fbef684084e8c03d0712fbcf3339b0007e4de2631366cb56c2e85
 SHA512 
343610f549e6e73fddcd334b343d375b2543b75e59d75ed5da391281e7e5d56e64e5bab1b19002f20576186185b88a2306c33a6200528d3cc2d5e7d32b254ef1

diff --git a/www-client/google-chrome/google-chrome-85.0.4183.102.ebuild 
b/www-client/google-chrome/google-chrome-85.0.4183.121.ebuild
similarity index 100%
rename from www-client/google-chrome/google-chrome-85.0.4183.102.ebuild
rename to www-client/google-chrome/google-chrome-85.0.4183.121.ebuild



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

2020-09-21 Thread Stephan Hartmann
commit: 94b92c8cd1587d8664177a3dcb4228ed22e82610
Author: Stephan Hartmann  gentoo  org>
AuthorDate: Mon Sep 21 19:32:51 2020 +
Commit: Stephan Hartmann  gentoo  org>
CommitDate: Mon Sep 21 19:32:51 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94b92c8c

www-plugins/chrome-binary-plugins: automated update (85.0.4183.121)

Signed-off-by: Stephan Hartmann  gentoo.org>

 www-plugins/chrome-binary-plugins/Manifest  | 2 +-
 ...-85.0.4183.102.ebuild => chrome-binary-plugins-85.0.4183.121.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 313aec44356..c2e47bd75af 100644
--- a/www-plugins/chrome-binary-plugins/Manifest
+++ b/www-plugins/chrome-binary-plugins/Manifest
@@ -1,3 +1,3 @@
 DIST google-chrome-beta_86.0.4240.42-1_amd64.deb 71151328 BLAKE2B 
3f67739d31ab8dd5915c660e4c242a944291da89aac64ff60a846b9c3a8517251974ba6cd755b58625595df48a8d1816be7ec2fedb6f5c1822a4baa5f1e720b1
 SHA512 
61ab6deaa2dc01e55ac341af129f70b40916d24a5a5285a3f7e6640f1bccb56ea1b0d811feb5886a1846fe182958030f6c5808ad7bef3a11882d430c54b2e870
-DIST google-chrome-stable_85.0.4183.102-1_amd64.deb 70242092 BLAKE2B 
e78a0c36fdaede944be9d761f906addeb71f69ff85b9bd68e10a573026209d5536eecb39ce2a44091590b24aacbbcebe818a12b6942d69419ddaa654aa7631cd
 SHA512 
99398fed5c0e117614dc507b317a774460a3c35084d7fa4c1409a2e978110d9196eaf661ea8fc9b473d0e08a9693998873bb4d0d8d5932bf0c4102fa68b9c5cb
+DIST google-chrome-stable_85.0.4183.121-1_amd64.deb 70233788 BLAKE2B 
d713968d7ae6ff1715c9b44cf045fa9ec679ec4ced84b10527db3a1d6d2d979fa453bbe4372fbef684084e8c03d0712fbcf3339b0007e4de2631366cb56c2e85
 SHA512 
343610f549e6e73fddcd334b343d375b2543b75e59d75ed5da391281e7e5d56e64e5bab1b19002f20576186185b88a2306c33a6200528d3cc2d5e7d32b254ef1
 DIST google-chrome-unstable_87.0.4263.3-1_amd64.deb 71765300 BLAKE2B 
6ab221432cd02831d380b2c49b4a886b36d457d7782dc5d18d9b8468ffaa49154651464897a052b79078952df59826bbb349e8e1c8306a737c0afda2bd4bc415
 SHA512 
839baad9d28f6a2d1c600ae3f7fef07ec41a4e24a2f7e5265b11f19f1b7eb14d57d05dc64f28003183659463f441d16e511acb1f7ed8ac7b3dad07261e687f41

diff --git 
a/www-plugins/chrome-binary-plugins/chrome-binary-plugins-85.0.4183.102.ebuild 
b/www-plugins/chrome-binary-plugins/chrome-binary-plugins-85.0.4183.121.ebuild
similarity index 100%
rename from 
www-plugins/chrome-binary-plugins/chrome-binary-plugins-85.0.4183.102.ebuild
rename to 
www-plugins/chrome-binary-plugins/chrome-binary-plugins-85.0.4183.121.ebuild



  1   2   3   4   >