[gentoo-commits] proj/sci:master commit in: sci-libs/simpleitk/files/, sci-libs/simpleitk/

2021-01-02 Thread Horea Christian
commit: a60da02d4be89f4e8dc338ffd488ef88dbe388a4
Author: Horea Christian  chymera  eu>
AuthorDate: Sun Jan  3 07:04:02 2021 +
Commit: Horea Christian  gmail  com>
CommitDate: Sun Jan  3 07:06:20 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=a60da02d

sci-libs/simpleitk: new package

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Horea Christian  chymera.eu>

 sci-libs/simpleitk/ChangeLog   | 10 
 .../simpleitk/files/simpleitk-1.2.4-int-cast.patch | 64 +
 .../simpleitk/files/simpleitk-1.2.4-module.patch   | 22 
 sci-libs/simpleitk/metadata.xml| 19 +++
 sci-libs/simpleitk/simpleitk-1.2.4.ebuild  | 65 ++
 5 files changed, 180 insertions(+)

diff --git a/sci-libs/simpleitk/ChangeLog b/sci-libs/simpleitk/ChangeLog
new file mode 100644
index 0..308cd02b7
--- /dev/null
+++ b/sci-libs/simpleitk/ChangeLog
@@ -0,0 +1,10 @@
+  27 Nov 2020;   +files/0dfae3e_reversed.patch,
+  +files/77a3d89_reversed.patch, +files/simpleitk-1.2.4-int-cast.patch,
+  +files/simpleitk-1.2.4-module.patch, -simpleitk-1.2.3.ebuild,
+  simpleitk-1.2.4.ebuild, simpleitk-2.0.0.ebuild:
+  sci-libs/simpleitk: new package ahead of Gentoo Science
+
+*simpleitk-2.0.0 (25 Sep 2020)
+
+  25 Sep 2020;   +metadata.xml, +simpleitk-2.0.0.ebuild:
+  sci-libs/simpleitk: new package ahead of Gentoo Science

diff --git a/sci-libs/simpleitk/files/simpleitk-1.2.4-int-cast.patch 
b/sci-libs/simpleitk/files/simpleitk-1.2.4-int-cast.patch
new file mode 100644
index 0..9477194c4
--- /dev/null
+++ b/sci-libs/simpleitk/files/simpleitk-1.2.4-int-cast.patch
@@ -0,0 +1,64 @@
+From 73caeaa545859cffd68f9aebe1e8b66de5ab812d Mon Sep 17 00:00:00 2001
+From: Bradley Lowekamp 
+Date: Fri, 14 Feb 2020 09:35:29 -0500
+Subject: [PATCH] Explicitly cast int to ITK strongly typed enums
+
+---
+ Code/IO/src/sitkImageReaderBase.cxx | 12 ++--
+ 1 file changed, 6 insertions(+), 6 deletions(-)
+
+diff --git a/Code/IO/src/sitkImageReaderBase.cxx 
b/Code/IO/src/sitkImageReaderBase.cxx
+index b8c93a2ac..a5e6d9cd9 100644
+--- a/Code/IO/src/sitkImageReaderBase.cxx
 b/Code/IO/src/sitkImageReaderBase.cxx
+@@ -214,7 +214,7 @@ ::GetPixelIDFromImageIO( const ImageIOBase *iobase,
+   if (numberOfComponents == 1 &&
+   ( pixelType == itk::ImageIOBase::SCALAR || pixelType == 
itk::ImageIOBase::COMPLEX ) )
+ {
+-outPixelType = this->ExecuteInternalReadScalar( componentType );
++outPixelType = this->ExecuteInternalReadScalar( 
static_cast(componentType) );
+ return;
+ }
+   // we try to load anything else into a VectorImage
+@@ -226,12 +226,12 @@ ::GetPixelIDFromImageIO( const ImageIOBase *iobase,
+ pixelType == itk::ImageIOBase::POINT ||
+ pixelType == itk::ImageIOBase::OFFSET )
+ {
+-outPixelType = this->ExecuteInternalReadVector( componentType );
++outPixelType = this->ExecuteInternalReadVector( 
static_cast(componentType) );
+ return;
+ }
+   else if ( pixelType == itk::ImageIOBase::COMPLEX )
+ {
+-outPixelType = this->ExecuteInternalReadComplex( componentType );
++outPixelType = this->ExecuteInternalReadComplex( 
static_cast(componentType) );
+ return;
+ }
+   else
+@@ -268,7 +268,7 @@ ::ExecuteInternalReadScalar( int componentType )
+ {
+   const unsigned int UnusedDimension = 2;
+ 
+-  switch(componentType)
++  switch(static_cast(componentType))
+ {
+ case itk::ImageIOBase::CHAR:
+   return ImageTypeToPixelIDValue< itk::Image 
>::Result;
+@@ -326,7 +326,7 @@ ::ExecuteInternalReadComplex( int componentType )
+ {
+   const unsigned int UnusedDimension = 2;
+ 
+-  switch(componentType)
++  switch(static_cast(componentType))
+ {
+ case itk::ImageIOBase::FLOAT:
+   return ImageTypeToPixelIDValue< itk::Image, 
UnusedDimension> >::Result;
+@@ -346,7 +346,7 @@ ::ExecuteInternalReadVector( int componentType )
+ {
+   const unsigned int UnusedDimension = 2;
+ 
+-  switch(componentType)
++  switch(static_cast(componentType))
+ {
+ case itk::ImageIOBase::CHAR:
+   return ImageTypeToPixelIDValue< itk::VectorImage >::Result;

diff --git a/sci-libs/simpleitk/files/simpleitk-1.2.4-module.patch 
b/sci-libs/simpleitk/files/simpleitk-1.2.4-module.patch
new file mode 100644
index 0..9b40d5e02
--- /dev/null
+++ b/sci-libs/simpleitk/files/simpleitk-1.2.4-module.patch
@@ -0,0 +1,22 @@
+From 9a9f67416683d69c1c8d2362ba6e50c4848803b2 Mon Sep 17 00:00:00 2001
+From: Bradley Lowekamp 
+Date: Wed, 20 Nov 2019 15:30:50 -0500
+Subject: [PATCH] Update SLICImageFilter's module
+
+---
+ Code/BasicFilters/json/SLICImageFilter.json | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/Code/BasicFilters/json/SLICImageFilter.json 
b/Code/BasicFilters/json/SLICImageFilter.json
+index 2ffba2f4c..0e9ced7d7 100644
+--- a/Code/BasicFilters/json/SLICImageFilter.json
 

[gentoo-commits] repo/gentoo:master commit in: dev-libs/raft/files/, dev-libs/raft/

2021-01-02 Thread Joonas Niilola
commit: e61d57fc23f8c6248a546e2d228923309d240c46
Author: Joonas Niilola  gentoo  org>
AuthorDate: Sun Jan  3 06:56:32 2021 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sun Jan  3 06:57:13 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e61d57fc

dev-libs/raft: skip faulty test

Closes: https://bugs.gentoo.org/760072
Signed-off-by: Joonas Niilola  gentoo.org>

 .../raft-0.9.25-Always-skip-init-oom-test.patch| 31 ++
 dev-libs/raft/raft-0.9.25.ebuild   |  4 ++-
 2 files changed, 34 insertions(+), 1 deletion(-)

diff --git a/dev-libs/raft/files/raft-0.9.25-Always-skip-init-oom-test.patch 
b/dev-libs/raft/files/raft-0.9.25-Always-skip-init-oom-test.patch
new file mode 100644
index 000..7a22682c2e0
--- /dev/null
+++ b/dev-libs/raft/files/raft-0.9.25-Always-skip-init-oom-test.patch
@@ -0,0 +1,31 @@
+commit e0948518f6eedad85c7705fb3963cfdda3627d8f
+Author: Reto Gantenbein 
+Date:   Thu Oct 22 00:19:31 2020 +0200
+
+Always skip init/oom test
+
+The RPM package build in COPR is being executed on a tmpfs which
+always results in a failure of this test:
+
+init/oom
+  heap-fault-delay=1, heap-fault-repeat=1   [ ERROR ]
+Error: test/integration/test_uv_init.c:156: assertion failed: _rv == 1 (0 
== 1)
+
+Instead only for certain architectures we always skip this test.
+For more informations see https://github.com/ganto/copr-lxc4/issues/8
+
+diff --git a/test/integration/test_uv_init.c b/test/integration/test_uv_init.c
+index 8c9b5f7..57db7f3 100644
+--- a/test/integration/test_uv_init.c
 b/test/integration/test_uv_init.c
+@@ -144,10 +144,8 @@ static MunitParameterEnum oomParams[] = {
+ TEST(init, oom, setUp, tearDown, 0, oomParams)
+ {
+ struct fixture *f = data;
+-#if defined(__i686__)
+ /* XXX: tmpfs seems to not support O_DIRECT */
+ return MUNIT_SKIP;
+-#endif
+ #if defined(__powerpc64__)
+ /* XXX: fails on ppc64el */
+ return MUNIT_SKIP;

diff --git a/dev-libs/raft/raft-0.9.25.ebuild b/dev-libs/raft/raft-0.9.25.ebuild
index b1d2d3822b2..b5f0f01804e 100644
--- a/dev-libs/raft/raft-0.9.25.ebuild
+++ b/dev-libs/raft/raft-0.9.25.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2020 Gentoo Authors
+# Copyright 2020-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -18,6 +18,8 @@ RESTRICT="!test? ( test )"
 DEPEND="dev-libs/libuv"
 RDEPEND="${DEPEND}"
 
+PATCHES=( "${FILESDIR}"/raft-0.9.25-Always-skip-init-oom-test.patch )
+
 src_prepare() {
default
 



[gentoo-commits] proj/sci:master commit in: sci-chemistry/pyquante/

2021-01-02 Thread Horea Christian
commit: b13ff5a8b53cb094cbe70b1639d8d4987aff3936
Author: Andrew Ammerlaan  riseup  net>
AuthorDate: Sat Jan  2 14:01:27 2021 +
Commit: Horea Christian  gmail  com>
CommitDate: Sun Jan  3 06:43:28 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=b13ff5a8

sci-chemistry/pyquante: version bump, enable sphinx, bump py targets

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan  riseup.net>
Signed-off-by: Horea Christian  chymera.eu>

 sci-chemistry/pyquante/pyquante-1.6.3-r1.ebuild| 22 -
 sci-chemistry/pyquante/pyquante-1.6.4.ebuild   | 22 -
 .../pyquante/pyquante-2.1_p20190721.ebuild | 37 ++
 3 files changed, 37 insertions(+), 44 deletions(-)

diff --git a/sci-chemistry/pyquante/pyquante-1.6.3-r1.ebuild 
b/sci-chemistry/pyquante/pyquante-1.6.3-r1.ebuild
deleted file mode 100644
index bf9928ef7..0
--- a/sci-chemistry/pyquante/pyquante-1.6.3-r1.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1
-
-MY_PN="PyQuante"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="Quantum chemistry package written in Python"
-HOMEPAGE="http://pyquante.sourceforge.net/;
-SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-S="${WORKDIR}/${MY_P}"

diff --git a/sci-chemistry/pyquante/pyquante-1.6.4.ebuild 
b/sci-chemistry/pyquante/pyquante-1.6.4.ebuild
deleted file mode 100644
index bf9928ef7..0
--- a/sci-chemistry/pyquante/pyquante-1.6.4.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1
-
-MY_PN="PyQuante"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="Quantum chemistry package written in Python"
-HOMEPAGE="http://pyquante.sourceforge.net/;
-SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-S="${WORKDIR}/${MY_P}"

diff --git a/sci-chemistry/pyquante/pyquante-2.1_p20190721.ebuild 
b/sci-chemistry/pyquante/pyquante-2.1_p20190721.ebuild
new file mode 100644
index 0..1eee1d60a
--- /dev/null
+++ b/sci-chemistry/pyquante/pyquante-2.1_p20190721.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7,8} ) # compile failure with py3.9
+
+inherit distutils-r1
+
+COMMIT="6e34cb4480ae7dbd8c5e44d221d8b27584890c83"
+
+DESCRIPTION="Quantum chemistry package written in Python"
+HOMEPAGE="https://github.com/rpmuller/pyquante2;
+SRC_URI="https://github.com/rpmuller/pyquante2/archive/${COMMIT}.tar.gz -> 
${P}.tar.gz"
+
+SLOT="0"
+LICENSE="BSD"
+KEYWORDS="~amd64 ~x86"
+
+# Fails to find self, even with --install
+RESTRICT="test"
+
+BDEPEND="dev-python/cython[${PYTHON_USEDEP}]"
+
+RDEPEND="dev-python/numpy[${PYTHON_USEDEP}]"
+
+S="${WORKDIR}/${PN}2-${COMMIT}"
+
+distutils_enable_sphinx docs --no-autodoc
+distutils_enable_tests --install pytest
+
+python_prepare_all() {
+   # this has been renamed in newer versions of sphinx
+   sed -i -e 's/sphinx.ext.pngmath/sphinx.ext.imgmath/g' docs/conf.py || 
die
+
+   distutils-r1_python_prepare_all
+}



[gentoo-commits] proj/sci:master commit in: sci-misc/pywordnet/

2021-01-02 Thread Horea Christian
commit: 666871ecf0e8075515189b0d31cbfb4e97f22606
Author: Andrew Ammerlaan  riseup  net>
AuthorDate: Sat Jan  2 14:20:35 2021 +
Commit: Horea Christian  gmail  com>
CommitDate: Sun Jan  3 06:43:36 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=666871ec

sci-misc/pywordnet: drop pack, py2 only, dead upstream since 2013

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan  riseup.net>
Signed-off-by: Horea Christian  chymera.eu>
Closes: https://github.com/gentoo/sci/pull/1029

 sci-misc/pywordnet/metadata.xml   | 13 -
 sci-misc/pywordnet/pywordnet-2.0.1.ebuild | 22 --
 2 files changed, 35 deletions(-)

diff --git a/sci-misc/pywordnet/metadata.xml b/sci-misc/pywordnet/metadata.xml
deleted file mode 100644
index bedc00164..0
--- a/sci-misc/pywordnet/metadata.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   flam...@gentoo.org
-   
-   
-Pywordnet contains python bindings to handle wordnet databases.
-
-   
-   pywordnet
-   
-

diff --git a/sci-misc/pywordnet/pywordnet-2.0.1.ebuild 
b/sci-misc/pywordnet/pywordnet-2.0.1.ebuild
deleted file mode 100644
index 51066d9d7..0
--- a/sci-misc/pywordnet/pywordnet-2.0.1.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1
-
-DESCRIPTION="Python bindings for wordnet"
-HOMEPAGE="http://pywordnet.sourceforge.net/;
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="Artistic"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND=">=app-dicts/wordnet-2.0"
-RDEPEND="${DEPEND}"
-
-DOCS=( docs/. )



[gentoo-commits] proj/sci:master commit in: sci-libs/msms/files/, sci-libs/msms/

2021-01-02 Thread Horea Christian
commit: b26e831d9490349f6291de0578ed1c2b67c77d95
Author: Andrew Ammerlaan  riseup  net>
AuthorDate: Sat Jan  2 14:15:06 2021 +
Commit: Horea Christian  gmail  com>
CommitDate: Sun Jan  3 06:43:28 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=b26e831d

sci-libs/msms: obsolete, py2 only, replaced by sci-chemistry/msms-bin::gentoo

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan  riseup.net>
Signed-off-by: Horea Christian  chymera.eu>

 sci-libs/msms/files/build-with-linux-3.0.patch | 11 ---
 sci-libs/msms/metadata.xml |  8 -
 sci-libs/msms/msms-1.5.6.ebuild| 43 --
 3 files changed, 62 deletions(-)

diff --git a/sci-libs/msms/files/build-with-linux-3.0.patch 
b/sci-libs/msms/files/build-with-linux-3.0.patch
deleted file mode 100644
index 849f80a9e..0
--- a/sci-libs/msms/files/build-with-linux-3.0.patch
+++ /dev/null
@@ -1,11 +0,0 @@
 mslib-1.5.4.orig/setup.py  2011-07-30 07:46:02.628300605 -0500
-+++ mslib-1.5.4/setup.py   2011-07-30 07:46:30.628188677 -0500
-@@ -18,7 +18,7 @@
- platform =  sys.platform
- 
- # amd64
--if (platform == "linux2"):
-+if platform in ["linux2", "linux3"]:
- lUname = os.uname()
- if lUname[-1] == 'x86_64':
- platform = lUname[-1] + lUname[0] + lUname[2][0]

diff --git a/sci-libs/msms/metadata.xml b/sci-libs/msms/metadata.xml
deleted file mode 100644
index da36ecbfc..0
--- a/sci-libs/msms/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   sci-chemis...@gentoo.org
-   Gentoo Chemistry Project
-   
-

diff --git a/sci-libs/msms/msms-1.5.6.ebuild b/sci-libs/msms/msms-1.5.6.ebuild
deleted file mode 100644
index 738e1c92a..0
--- a/sci-libs/msms/msms-1.5.6.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1
-
-MY_PN="mslib"
-MY_P="${MY_PN}-${PV/_rc2/}"
-
-DESCRIPTION="MSMS library python extension module"
-HOMEPAGE="http://mgltools.scripps.edu/downloads#msms;
-SRC_URI="http://mgltools.scripps.edu/downloads/tars/releases/REL${PV}/mgltools_source_${PV}.tar.gz;
-
-LICENSE="MGLTOOLS"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND=""
-DEPEND="${RDEPEND}
-   dev-lang/swig"
-
-S="${WORKDIR}"/${MY_P}
-
-PATCHES=( "${FILESDIR}"/build-with-linux-3.0.patch )
-
-src_unpack() {
-   tar xzpf "${DISTDIR}"/${A} 
mgltools_source_${PV/_/}/MGLPACKS/${MY_P}.tar.gz
-   tar xzpf mgltools_source_${PV/_/}/MGLPACKS/${MY_P}.tar.gz
-}
-
-python_prepare_all() {
-   distutils-r1_python_prepare_all
-   pushd "${S}"/lib >/dev/null
-   # Set up symlinks for 3.x kernels
-   for x in *inux2; do
-   ln -s ${x} ${x%2}3
-   done
-   popd >/dev/null
-}



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

2021-01-02 Thread Horea Christian
commit: 76926ef29fca81c7d72833654c27f9dccc09358c
Author: Andrew Ammerlaan  riseup  net>
AuthorDate: Sat Jan  2 13:35:22 2021 +
Commit: Horea Christian  gmail  com>
CommitDate: Sun Jan  3 06:25:30 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=76926ef2

sci-biology/deeptools: version bump, bump py targets, enable sphinx

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan  riseup.net>
Signed-off-by: Horea Christian  chymera.eu>

 sci-biology/deeptools/deeptools-2.5.0.ebuild | 30 ---
 sci-biology/deeptools/deeptools-3.5.0.ebuild | 36 
 sci-biology/deeptools/deeptools-.ebuild  | 29 --
 3 files changed, 36 insertions(+), 59 deletions(-)

diff --git a/sci-biology/deeptools/deeptools-2.5.0.ebuild 
b/sci-biology/deeptools/deeptools-2.5.0.ebuild
deleted file mode 100644
index e57fe3313..0
--- a/sci-biology/deeptools/deeptools-2.5.0.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python2_7 python3_5 )
-
-inherit distutils-r1
-
-[[ "$PV" == "" ]] && inherit git-r3
-
-DESCRIPTION="Extract reads from BAM files, normalize, draw figures, convert 
BAM to bigWig"
-HOMEPAGE="https://github.com/fidelram/deepTools;
-if [[ "$PV" == "" ]]; then
-   EGIT_REPO_URI="https://github.com/fidelram/deepTools;
-else
-   SRC_URI="https://github.com/fidelram/deepTools/archive/2.5.0.tar.gz -> 
${P}.tar.gz"
-fi
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64"
-
-DEPEND=">=dev-python/numpy-1.8.0
-   >=dev-python/scipy-0.17.0
-   >=dev-python/py2bit-0.1.0
-   >=dev-python/pyBigWig-0.2.1
-   >=sci-biology/pysam-0.8
-   >=dev-python/matplotlib-1.4.0"
-RDEPEND="${DEPEND}"

diff --git a/sci-biology/deeptools/deeptools-3.5.0.ebuild 
b/sci-biology/deeptools/deeptools-3.5.0.ebuild
new file mode 100644
index 0..f53a19bcb
--- /dev/null
+++ b/sci-biology/deeptools/deeptools-3.5.0.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7,8,9} )
+
+inherit distutils-r1
+
+DESCRIPTION="Extract reads from BAM files, normalize, draw figures, convert 
BAM to bigWig"
+HOMEPAGE="https://github.com/deeptools/deepTools;
+SRC_URI="https://github.com/deeptools/deepTools/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+# TODO: fix this
+RESTRICT="test"
+
+RDEPEND="
+   >=sci-biology/deeptools-intervals-0.1.8[${PYTHON_USEDEP}]
+   >=dev-python/numpy-1.9.0[${PYTHON_USEDEP}]
+   >=dev-python/numpydoc-0.5[${PYTHON_USEDEP}]
+   >=dev-python/scipy-0.17.0[${PYTHON_USEDEP}]
+   >=dev-python/plotly-2.0.0[${PYTHON_USEDEP}]
+   >=dev-python/py2bit-0.2.0[${PYTHON_USEDEP}]
+   >=dev-python/pyBigWig-0.2.1[${PYTHON_USEDEP}]
+   >=sci-biology/pysam-0.14.0[${PYTHON_USEDEP}]
+   >=dev-python/matplotlib-3.1.0[${PYTHON_USEDEP}]
+"
+
+S="${WORKDIR}/deepTools-${PV}"
+
+distutils_enable_sphinx docs dev-python/sphinx_rtd_theme 
dev-python/sphinx-argparse
+distutils_enable_tests nose

diff --git a/sci-biology/deeptools/deeptools-.ebuild 
b/sci-biology/deeptools/deeptools-.ebuild
deleted file mode 100644
index 89a8bf763..0
--- a/sci-biology/deeptools/deeptools-.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python2_7 python3_5 )
-
-inherit distutils-r1
-
-[[ "$PV" == "" ]] && inherit git-r3
-
-DESCRIPTION="Extract reads from BAM files, normalize, draw figures, convert 
BAM to bigWig"
-HOMEPAGE="https://github.com/fidelram/deepTools;
-if [[ "$PV" == "" ]]; then
-   EGIT_REPO_URI="https://github.com/fidelram/deepTools;
-else
-   SRC_URI="https://github.com/fidelram/deepTools/archive/2.5.0.tar.gz -> 
${P}.tar.gz"
-fi
-
-LICENSE="GPL-3"
-SLOT="0"
-
-DEPEND=">=dev-python/numpy-1.8.0
-   >=dev-python/scipy-0.17.0
-   >=dev-python/py2bit-0.1.0
-   >=dev-python/pyBigWig-0.2.1
-   >=sci-biology/pysam-0.8
-   >=dev-python/matplotlib-1.4.0"
-RDEPEND="${DEPEND}"



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

2021-01-02 Thread Horea Christian
commit: eeef69fea4f72eb2bd4400a11d80f3a5db0a3d92
Author: Andrew Ammerlaan  riseup  net>
AuthorDate: Sat Jan  2 13:09:32 2021 +
Commit: Horea Christian  gmail  com>
CommitDate: Sun Jan  3 06:25:30 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=eeef69fe

sci-biology/pysam: remove, package is in ::gentoo

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan  riseup.net>
Signed-off-by: Horea Christian  chymera.eu>

 sci-biology/pysam/metadata.xml| 12 -
 sci-biology/pysam/pysam-0.15.3.ebuild | 46 ---
 2 files changed, 58 deletions(-)

diff --git a/sci-biology/pysam/metadata.xml b/sci-biology/pysam/metadata.xml
deleted file mode 100644
index 6182254bd..0
--- a/sci-biology/pysam/metadata.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-  
-sci-biol...@gentoo.org
-Gentoo Biology Project
-  
-  
-pysam
-pysam-developers/pysam
-  
-

diff --git a/sci-biology/pysam/pysam-0.15.3.ebuild 
b/sci-biology/pysam/pysam-0.15.3.ebuild
deleted file mode 100644
index 4224df0be..0
--- a/sci-biology/pysam/pysam-0.15.3.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 python3_6 )
-
-inherit distutils-r1
-
-DESCRIPTION="Python interface for the SAM/BAM sequence alignment and mapping 
format"
-HOMEPAGE="
-   https://github.com/pysam-developers/pysam
-   https://pypi.org/project/pysam/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS=""
-
-# current code wraps 3rd-party code from htslib-1.9, samtools-1.9 and 
bcftools-1.9
-RDEPEND="=sci-libs/htslib-1.9*:="
-DEPEND="${RDEPEND}
-   dev-python/cython[${PYTHON_USEDEP}]
-   dev-python/setuptools[${PYTHON_USEDEP}]"
-
-python_prepare_all() {
-   # unbundle htslib
-   export HTSLIB_MODE="external"
-   export HTSLIB_INCLUDE_DIR="${EPREFIX}"/usr/include
-   export HTSLIB_LIBRARY_DIR="${EPREFIX}"/usr/$(get_libdir)
-   rm -r htslib || die
-
-   # prevent setup.py from adding RPATHs
-   sed -e "/ext\.extra_link_args += \['-Wl,-rpath,\$ORIGIN'\]/d" \
-   -i cy_build.py || die
-   sed -e '/runtime_library_dirs=htslib_library_dirs/d' \
-   -i setup.py || die
-
-   distutils-r1_python_prepare_all
-}
-
-src_compile() {
-   # TODO
-   # empty compile, as the build system runs the whole build again in 
install
-   :
-}



[gentoo-commits] proj/sci:master commit in: sci-biology/ncbi-genome-download/

2021-01-02 Thread Horea Christian
commit: 34829b30cff6c071347b5818f7530340168a4775
Author: Andrew Ammerlaan  riseup  net>
AuthorDate: Sat Jan  2 13:36:34 2021 +
Commit: Horea Christian  gmail  com>
CommitDate: Sun Jan  3 06:25:30 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=34829b30

sci-biology/ncbi-genome-download: version bump

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan  riseup.net>
Signed-off-by: Horea Christian  chymera.eu>

 ...-0.2.2.ebuild => ncbi-genome-download-0.3.0.ebuild} | 18 +++---
 1 file changed, 11 insertions(+), 7 deletions(-)

diff --git a/sci-biology/ncbi-genome-download/ncbi-genome-download-0.2.2.ebuild 
b/sci-biology/ncbi-genome-download/ncbi-genome-download-0.3.0.ebuild
similarity index 54%
rename from sci-biology/ncbi-genome-download/ncbi-genome-download-0.2.2.ebuild
rename to sci-biology/ncbi-genome-download/ncbi-genome-download-0.3.0.ebuild
index fe3d0f2d4..1afb771c5 100644
--- a/sci-biology/ncbi-genome-download/ncbi-genome-download-0.2.2.ebuild
+++ b/sci-biology/ncbi-genome-download/ncbi-genome-download-0.3.0.ebuild
@@ -1,11 +1,12 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
-PYTHON_COMPAT=( python2_7 python3_{4,5} )
+PYTHON_COMPAT=( python3_{7,8,9} )
+DISTUTILS_USE_SETUPTOOLS=rdepend
 
-inherit distutils-r1 python-r1
+inherit distutils-r1
 
 DESCRIPTION="Download genomes from the NCBI FTP servers"
 HOMEPAGE="https://github.com/kblin/ncbi-genome-download;
@@ -14,7 +15,10 @@ SRC_URI="https://github.com/kblin/${PN}/archive/${PV}.tar.gz 
 -> ${P}.tar.gz"
 LICENSE="Apache-2.0"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE=""
 
-DEPEND=""
-RDEPEND="${DEPEND}"
+BDEPEND="test? (
+   dev-python/requests-mock[${PYTHON_USEDEP}]
+   dev-python/pytest-mock[${PYTHON_USEDEP}]
+)"
+
+distutils_enable_tests pytest



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

2021-01-02 Thread Horea Christian
commit: 3cba6c804e2e0d0177c238f41556a8f2ede57251
Author: Andrew Ammerlaan  riseup  net>
AuthorDate: Sat Jan  2 13:44:32 2021 +
Commit: Horea Christian  gmail  com>
CommitDate: Sun Jan  3 06:25:30 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=3cba6c80

sci-biology/ruffus: version bump, bump py targets, enable sphinx

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan  riseup.net>
Signed-off-by: Horea Christian  chymera.eu>

 .../{ruffus-2.6.3.ebuild => ruffus-2.8.4.ebuild}   | 20 +++
 sci-biology/ruffus/ruffus-.ebuild  | 23 --
 2 files changed, 12 insertions(+), 31 deletions(-)

diff --git a/sci-biology/ruffus/ruffus-2.6.3.ebuild 
b/sci-biology/ruffus/ruffus-2.8.4.ebuild
similarity index 52%
rename from sci-biology/ruffus/ruffus-2.6.3.ebuild
rename to sci-biology/ruffus/ruffus-2.8.4.ebuild
index b4417d29c..beda7db9a 100644
--- a/sci-biology/ruffus/ruffus-2.6.3.ebuild
+++ b/sci-biology/ruffus/ruffus-2.8.4.ebuild
@@ -1,22 +1,26 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=7
 
-PYTHON_COMPAT=( python2_7 )
+PYTHON_COMPAT=( python3_{7,8,9} )
 
 inherit distutils-r1
 
 DESCRIPTION="Python module to support computational pipelines"
 HOMEPAGE="http://www.ruffus.org.uk;
 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-# g...@github.com:bunbun/ruffus.git
 
 LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE=""
 
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
-   media-gfx/graphviz"
-RDEPEND="${DEPEND}"
+# TODO: why does this not work: Duplicate pipeline
+RESTRICT="test"
+
+RDEPEND="
+   media-gfx/graphviz
+"
+
+distutils_enable_sphinx doc dev-python/sphinx_rtd_theme
+distutils_enable_tests pytest

diff --git a/sci-biology/ruffus/ruffus-.ebuild 
b/sci-biology/ruffus/ruffus-.ebuild
deleted file mode 100644
index 9c12d9170..0
--- a/sci-biology/ruffus/ruffus-.ebuild
+++ /dev/null
@@ -1,23 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1 git-r3
-
-DESCRIPTION="Python module to support computational pipelines"
-HOMEPAGE="http://www.ruffus.org.uk;
-# 
SRC_URI="http://code.google.com/p/ruffus/downloads/detail?name=ruffus-2.4beta3.tar.gz;
-EGIT_REPO_URI="https://code.google.com/archive/p/ruffus;
-# g...@github.com:bunbun/ruffus.git
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS=""
-IUSE=""
-
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
-   media-gfx/graphviz"
-RDEPEND="${DEPEND}"



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

2021-01-02 Thread Horea Christian
commit: e4dbbb39070f7a427379fbbc8bcab4bb24394df9
Author: Andrew Ammerlaan  riseup  net>
AuthorDate: Sat Jan  2 13:22:41 2021 +
Commit: Horea Christian  gmail  com>
CommitDate: Sun Jan  3 06:25:30 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=e4dbbb39

sci-biology/deeptools-intervals: new dep

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan  riseup.net>
Signed-off-by: Horea Christian  chymera.eu>

 .../deeptools-intervals-0.1.9.ebuild   | 18 ++
 sci-biology/deeptools-intervals/metadata.xml   | 11 +++
 2 files changed, 29 insertions(+)

diff --git a/sci-biology/deeptools-intervals/deeptools-intervals-0.1.9.ebuild 
b/sci-biology/deeptools-intervals/deeptools-intervals-0.1.9.ebuild
new file mode 100644
index 0..1eecdd1b9
--- /dev/null
+++ b/sci-biology/deeptools-intervals/deeptools-intervals-0.1.9.ebuild
@@ -0,0 +1,18 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7,8,9} )
+
+inherit distutils-r1
+
+DESCRIPTION="Constructing interval trees with associated exon/annotation 
information"
+HOMEPAGE="https://github.com/deeptools/deeptools_intervals;
+SRC_URI="https://github.com/deeptools/deeptools_intervals/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+S="${WORKDIR}/${PN//-/_}-${PV}"

diff --git a/sci-biology/deeptools-intervals/metadata.xml 
b/sci-biology/deeptools-intervals/metadata.xml
new file mode 100644
index 0..08881e6e4
--- /dev/null
+++ b/sci-biology/deeptools-intervals/metadata.xml
@@ -0,0 +1,11 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   sci-biol...@gentoo.org
+   Gentoo Biology Project
+   
+   
+   fidelram/deepTools_intervals
+   
+



[gentoo-commits] proj/sci:master commit in: sci-physics/genfit/

2021-01-02 Thread Horea Christian
commit: 2f3a77213220a280be83f64b651953699a76b1b5
Author: Oliver Freyermuth  googlemail  com>
AuthorDate: Sat Jan  2 22:46:13 2021 +
Commit: Horea Christian  gmail  com>
CommitDate: Sun Jan  3 06:16:59 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=2f3a7721

sci-physics/genfit: Version bump 02.00.00_p20201231 snapshot.

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Oliver Freyermuth  googlemail.com>
Signed-off-by: Horea Christian  chymera.eu>

 .../genfit/genfit-02.00.00_p20201231.ebuild| 59 ++
 1 file changed, 59 insertions(+)

diff --git a/sci-physics/genfit/genfit-02.00.00_p20201231.ebuild 
b/sci-physics/genfit/genfit-02.00.00_p20201231.ebuild
new file mode 100644
index 0..185ca5da2
--- /dev/null
+++ b/sci-physics/genfit/genfit-02.00.00_p20201231.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake
+
+if [[ ${PV} == ** ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/GenFit/GenFit.git;
+   KEYWORDS=""
+else
+   EGIT_COMMIT="c3546c073e732abc942a08430b6ca3cb36f5339e"
+   MY_PN="GenFit"
+   SRC_URI="https://github.com/GenFit/GenFit/archive/${EGIT_COMMIT}.tar.gz 
-> ${P}.tar.gz"
+   KEYWORDS="~amd64 ~x86"
+   S="${WORKDIR}/${MY_PN}-${EGIT_COMMIT}"
+fi
+
+DESCRIPTION="Generic toolkit for track reconstruction in physics experiments"
+HOMEPAGE="https://github.com/GenFit/GenFit;
+
+LICENSE="LGPL-3"
+SLOT="0"
+
+IUSE="doc examples"
+
+RDEPEND="
+   sci-physics/root:=
+   dev-libs/boost:=
+"
+DEPEND="${RDEPEND}"
+
+src_compile() {
+   cmake_src_compile
+   use doc && cmake_src_compile doc
+   use examples && cmake_src_compile tests
+}
+
+src_install() {
+   cmake_src_install
+   if use doc; then
+   docinto html
+   dodoc -r doc/html/.
+   fi
+   if use examples; then
+   insinto /usr/share/doc/${PF}/examples
+   doins -r "${BUILD_DIR}/bin"
+   doins test/makeGeom.C
+   doins test/README
+   fi
+   echo
+   elog "Note that there is no support in this ebuild for RAVE yet,"
+   elog "which is also not in portage."
+   elog "It should be possible to use a local installation of RAVE"
+   elog "and set:"
+   elog "  export RAVEPATH="
+   echo
+}



[gentoo-commits] proj/sci:master commit in: sci-physics/genfit/

2021-01-02 Thread Horea Christian
commit: 1f55f85dcb465ea7267a5362ac4ab3b5fc319c63
Author: Oliver Freyermuth  googlemail  com>
AuthorDate: Sat Jan  2 22:46:35 2021 +
Commit: Horea Christian  gmail  com>
CommitDate: Sun Jan  3 06:16:59 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=1f55f85d

sci-physics/genfit: Drop old tagged 02.00.00 version.

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Oliver Freyermuth  googlemail.com>
Signed-off-by: Horea Christian  chymera.eu>

 sci-physics/genfit/genfit-02.00.00.ebuild | 58 ---
 1 file changed, 58 deletions(-)

diff --git a/sci-physics/genfit/genfit-02.00.00.ebuild 
b/sci-physics/genfit/genfit-02.00.00.ebuild
deleted file mode 100644
index c2e29cc03..0
--- a/sci-physics/genfit/genfit-02.00.00.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake
-
-if [[ ${PV} == ** ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/GenFit/GenFit.git;
-   KEYWORDS=""
-else
-   TAG_VER=${PN}-code-1688-tags-v${PV//./-}
-   SRC_URI="http://dev.gentoo.org/~jlec/distfiles/${TAG_VER}.zip;
-   KEYWORDS="~amd64 ~x86"
-   S=${WORKDIR}/${TAG_VER}
-fi
-
-DESCRIPTION="Generic toolkit for track reconstruction in physics experiments"
-HOMEPAGE="https://github.com/GenFit/GenFit;
-
-LICENSE="LGPL-3"
-SLOT="0"
-
-IUSE="doc examples"
-
-RDEPEND="
-   sci-physics/root:=
-   dev-libs/boost:=
-"
-DEPEND="${RDEPEND}"
-
-src_compile() {
-   cmake_src_compile
-   use doc && cmake_src_compile doc
-   use examples && cmake_src_compile tests
-}
-
-src_install() {
-   cmake_src_install
-   if use doc; then
-   docinto html
-   dodoc -r doc/html/.
-   fi
-   if use examples; then
-   insinto /usr/share/doc/${PF}/examples
-   doins -r "${BUILD_DIR}/bin"
-   doins test/makeGeom.C
-   doins test/README
-   fi
-   echo
-   elog "Note that there is no support in this ebuild for RAVE yet,"
-   elog "which is also not in portage."
-   elog "It should be possible to use a local installation of RAVE"
-   elog "and set:"
-   elog "  export RAVEPATH="
-   echo
-}



[gentoo-commits] proj/sci:master commit in: sci-physics/genfit/

2021-01-02 Thread Horea Christian
commit: 5487949bc6e7b36df548068bb8e6de769a09dff7
Author: Oliver Freyermuth  googlemail  com>
AuthorDate: Sat Jan  2 20:51:43 2021 +
Commit: Horea Christian  gmail  com>
CommitDate: Sun Jan  3 06:16:59 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=5487949b

sci-physics/genfit: Add functional live ebuild.

This also fixes documentation generation
and installation, and adds myself as maintainer.

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Oliver Freyermuth  googlemail.com>
Signed-off-by: Horea Christian  chymera.eu>

 sci-physics/genfit/genfit-02.00.00.ebuild  | 34 -
 .../{genfit-02.00.00.ebuild => genfit-.ebuild} | 35 +-
 sci-physics/genfit/metadata.xml|  6 +++-
 3 files changed, 46 insertions(+), 29 deletions(-)

diff --git a/sci-physics/genfit/genfit-02.00.00.ebuild 
b/sci-physics/genfit/genfit-02.00.00.ebuild
index 9aa92b2ba..c2e29cc03 100644
--- a/sci-physics/genfit/genfit-02.00.00.ebuild
+++ b/sci-physics/genfit/genfit-02.00.00.ebuild
@@ -1,24 +1,28 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
-DOCS_BUILDER="doxygen"
-DOCS_DIR="doc"
+inherit cmake
 
-inherit cmake docs
-
-TAG_VER=${PN}-code-1688-tags-v${PV//./-}
+if [[ ${PV} == ** ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/GenFit/GenFit.git;
+   KEYWORDS=""
+else
+   TAG_VER=${PN}-code-1688-tags-v${PV//./-}
+   SRC_URI="http://dev.gentoo.org/~jlec/distfiles/${TAG_VER}.zip;
+   KEYWORDS="~amd64 ~x86"
+   S=${WORKDIR}/${TAG_VER}
+fi
 
 DESCRIPTION="Generic toolkit for track reconstruction in physics experiments"
-HOMEPAGE="http://genfit.sourceforge.net/Main.html; # no https
-SRC_URI="http://dev.gentoo.org/~jlec/distfiles/${TAG_VER}.zip;
+HOMEPAGE="https://github.com/GenFit/GenFit;
 
 LICENSE="LGPL-3"
-KEYWORDS="~amd64 ~x86"
 SLOT="0"
 
-IUSE="examples"
+IUSE="doc examples"
 
 RDEPEND="
sci-physics/root:=
@@ -26,18 +30,20 @@ RDEPEND="
 "
 DEPEND="${RDEPEND}"
 
-S=${WORKDIR}/${TAG_VER}
-
 src_compile() {
cmake_src_compile
-   docs_compile
+   use doc && cmake_src_compile doc
use examples && cmake_src_compile tests
 }
 
 src_install() {
cmake_src_install
+   if use doc; then
+   docinto html
+   dodoc -r doc/html/.
+   fi
if use examples; then
-   insinto /usr/share/doc/${PF}
+   insinto /usr/share/doc/${PF}/examples
doins -r "${BUILD_DIR}/bin"
doins test/makeGeom.C
doins test/README

diff --git a/sci-physics/genfit/genfit-02.00.00.ebuild 
b/sci-physics/genfit/genfit-.ebuild
similarity index 59%
copy from sci-physics/genfit/genfit-02.00.00.ebuild
copy to sci-physics/genfit/genfit-.ebuild
index 9aa92b2ba..1e4e75ae7 100644
--- a/sci-physics/genfit/genfit-02.00.00.ebuild
+++ b/sci-physics/genfit/genfit-.ebuild
@@ -3,22 +3,27 @@
 
 EAPI=7
 
-DOCS_BUILDER="doxygen"
-DOCS_DIR="doc"
-
-inherit cmake docs
-
-TAG_VER=${PN}-code-1688-tags-v${PV//./-}
+inherit cmake
+
+if [[ ${PV} == ** ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/GenFit/GenFit.git;
+   KEYWORDS=""
+else
+   EGIT_COMMIT=""
+   MY_PN="GenFit"
+   SRC_URI="https://github.com/GenFit/GenFit/archive/${EGIT_COMMIT}.tar.gz 
-> ${P}.tar.gz"
+   KEYWORDS="~amd64 ~x86"
+   S="${WORKDIR}/${MY_PN}-${EGIT_COMMIT}"
+fi
 
 DESCRIPTION="Generic toolkit for track reconstruction in physics experiments"
-HOMEPAGE="http://genfit.sourceforge.net/Main.html; # no https
-SRC_URI="http://dev.gentoo.org/~jlec/distfiles/${TAG_VER}.zip;
+HOMEPAGE="https://github.com/GenFit/GenFit;
 
 LICENSE="LGPL-3"
-KEYWORDS="~amd64 ~x86"
 SLOT="0"
 
-IUSE="examples"
+IUSE="doc examples"
 
 RDEPEND="
sci-physics/root:=
@@ -26,18 +31,20 @@ RDEPEND="
 "
 DEPEND="${RDEPEND}"
 
-S=${WORKDIR}/${TAG_VER}
-
 src_compile() {
cmake_src_compile
-   docs_compile
+   use doc && cmake_src_compile doc
use examples && cmake_src_compile tests
 }
 
 src_install() {
cmake_src_install
+   if use doc; then
+   docinto html
+   dodoc -r doc/html/.
+   fi
if use examples; then
-   insinto /usr/share/doc/${PF}
+   insinto /usr/share/doc/${PF}/examples
doins -r "${BUILD_DIR}/bin"
doins test/makeGeom.C
doins test/README

diff --git a/sci-physics/genfit/metadata.xml b/sci-physics/genfit/metadata.xml
index 90b22390e..2796af0dc 100644
--- a/sci-physics/genfit/metadata.xml
+++ b/sci-physics/genfit/metadata.xml
@@ -1,6 +1,10 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
+   
+   o.freyerm...@googlemail.com
+   Oliver Freyermuth
+   


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

2021-01-02 Thread Horea Christian
commit: 663642ba2433eb7748503f7f3eab2c0cd843a805
Author: Horea Christian  chymera  eu>
AuthorDate: Sun Jan  3 05:22:31 2021 +
Commit: Horea Christian  gmail  com>
CommitDate: Sun Jan  3 05:22:31 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=663642ba

sci-biology/samri: PYTHON_COMPAT update

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Horea Christian  chymera.eu>

 sci-biology/samri/samri-0.4.1.ebuild | 4 ++--
 sci-biology/samri/samri-0.5.ebuild   | 4 ++--
 sci-biology/samri/samri-.ebuild  | 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/sci-biology/samri/samri-0.4.1.ebuild 
b/sci-biology/samri/samri-0.4.1.ebuild
index 34d91def6..79c5949de 100644
--- a/sci-biology/samri/samri-0.4.1.ebuild
+++ b/sci-biology/samri/samri-0.4.1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_7 )
+PYTHON_COMPAT=( python3_{7..8} )
 
 inherit distutils-r1
 

diff --git a/sci-biology/samri/samri-0.5.ebuild 
b/sci-biology/samri/samri-0.5.ebuild
index d22909df2..8faa270ab 100644
--- a/sci-biology/samri/samri-0.5.ebuild
+++ b/sci-biology/samri/samri-0.5.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_7 )
+PYTHON_COMPAT=( python3_{7..8} )
 
 inherit distutils-r1
 

diff --git a/sci-biology/samri/samri-.ebuild 
b/sci-biology/samri/samri-.ebuild
index fb93fd9a0..507d6a53c 100644
--- a/sci-biology/samri/samri-.ebuild
+++ b/sci-biology/samri/samri-.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_7 )
+PYTHON_COMPAT=( python3_{7..8} )
 
 inherit distutils-r1 git-r3
 



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

2021-01-02 Thread Horea Christian
commit: f185600e2b554a2f6f9481b38ac84d5246cb902f
Author: Horea Christian  chymera  eu>
AuthorDate: Sun Jan  3 04:54:22 2021 +
Commit: Horea Christian  gmail  com>
CommitDate: Sun Jan  3 04:54:22 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=f185600e

dev-python/matrix2latex: dropped Python 3 incompatible version

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Horea Christian  chymera.eu>

 .../matrix2latex/matrix2latex-1.9_p20160719.ebuild | 30 --
 1 file changed, 30 deletions(-)

diff --git a/dev-python/matrix2latex/matrix2latex-1.9_p20160719.ebuild 
b/dev-python/matrix2latex/matrix2latex-1.9_p20160719.ebuild
deleted file mode 100644
index 14a2ecaa7..0
--- a/dev-python/matrix2latex/matrix2latex-1.9_p20160719.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7,8,9} )
-
-inherit distutils-r1
-
-COMMIT="78edec90115b855cb743ecc702d252514dedc6db"
-
-DESCRIPTION="A tool to create LaTeX tables from python lists and arrays"
-HOMEPAGE="https://github.com/TheChymera/matrix2latex;
-SRC_URI="https://github.com/TheChymera/${PN}/archive/${COMMIT}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-S="${WORKDIR}/${PN}-${COMMIT}"
-
-distutils_enable_sphinx doc_sphinx
-distutils_enable_tests pytest
-
-python_prepare_all() {
-   # this has been renamed in newer versions of sphinx
-   sed -i -e 's/sphinx.ext.pngmath/sphinx.ext.imgmath/g' doc_sphinx/conf.py
-
-   distutils-r1_python_prepare_all
-}



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

2021-01-02 Thread Horea Christian
commit: af6f8867c50b39b6857def4a3f528fe78cc350fd
Author: Horea Christian  chymera  eu>
AuthorDate: Sun Jan  3 04:53:37 2021 +
Commit: Horea Christian  gmail  com>
CommitDate: Sun Jan  3 04:53:37 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=af6f8867

dev-python/matrix2latex: version bump 1.10

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Horea Christian  chymera.eu>

 dev-python/matrix2latex/matrix2latex-1.10.ebuild | 28 
 1 file changed, 28 insertions(+)

diff --git a/dev-python/matrix2latex/matrix2latex-1.10.ebuild 
b/dev-python/matrix2latex/matrix2latex-1.10.ebuild
new file mode 100644
index 0..0d84ff9e9
--- /dev/null
+++ b/dev-python/matrix2latex/matrix2latex-1.10.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7,8,9} )
+
+inherit distutils-r1
+
+DESCRIPTION="A tool to create LaTeX tables from python lists and arrays"
+HOMEPAGE="https://github.com/TheChymera/matrix2latex;
+SRC_URI="https://github.com/TheChymera/matrix2latex/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+S="${WORKDIR}/${PN}-${COMMIT}"
+
+distutils_enable_sphinx doc_sphinx
+distutils_enable_tests pytest
+
+python_prepare_all() {
+   # this has been renamed in newer versions of sphinx
+   sed -i -e 's/sphinx.ext.pngmath/sphinx.ext.imgmath/g' doc_sphinx/conf.py
+
+   distutils-r1_python_prepare_all
+}



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

2021-01-02 Thread Horea Christian
commit: d6133943e08c64daf155af08523fd1221fedc6dd
Author: Andrew Ammerlaan  riseup  net>
AuthorDate: Sat Jan  2 13:00:32 2021 +
Commit: Horea Christian  gmail  com>
CommitDate: Sun Jan  3 04:30:37 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=d6133943

dev-python/delegator: drop py3.6, keyword x86

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan  riseup.net>
Signed-off-by: Horea Christian  chymera.eu>

 dev-python/delegator/delegator-0.1.1.ebuild | 21 ++---
 1 file changed, 6 insertions(+), 15 deletions(-)

diff --git a/dev-python/delegator/delegator-0.1.1.ebuild 
b/dev-python/delegator/delegator-0.1.1.ebuild
index 202272a97..f56de2340 100644
--- a/dev-python/delegator/delegator-0.1.1.ebuild
+++ b/dev-python/delegator/delegator-0.1.1.ebuild
@@ -1,29 +1,20 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{6..9} )
+PYTHON_COMPAT=( python3_{7..9} )
 
 inherit distutils-r1
 
 DESCRIPTION="Subprocesses for Humans 2.0."
 HOMEPAGE="https://github.com/amitt001/delegator.py;
-SRC_URI="https://github.com/amitt001/delegator.py/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}.py/${PN}.py-${PV}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64"
-IUSE="test"
-RESTRICT="test"
+KEYWORDS="~amd64 ~x86"
 
-DEPEND="
-   test? ( dev-python/pytest[${PYTHON_USEDEP}] )
-   "
-RDEPEND=""
+RDEPEND="dev-python/pexpect[${PYTHON_USEDEP}]"
 
-S="${WORKDIR}/delegator.py-${PV}"
-
-python_test() {
-   pytest -vv || die "Tests failed under ${EPYTHON}"
-}
+S="${WORKDIR}/${PN}.py-${PV}"



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

2021-01-02 Thread Horea Christian
commit: 674c417ea40b3976fa8e3621107c2ac2fac0a8c1
Author: Andrew Ammerlaan  riseup  net>
AuthorDate: Sat Jan  2 13:04:49 2021 +
Commit: Horea Christian  gmail  com>
CommitDate: Sun Jan  3 04:31:35 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=674c417e

dev-python/viper: remove package, py2 only, no longer in development

no reverse deps

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan  riseup.net>
Signed-off-by: Horea Christian  chymera.eu>
Closes: https://github.com/gentoo/sci/pull/1027

 dev-python/viper/metadata.xml   | 16 
 dev-python/viper/viper-1.0.1.ebuild | 17 -
 2 files changed, 33 deletions(-)

diff --git a/dev-python/viper/metadata.xml b/dev-python/viper/metadata.xml
deleted file mode 100644
index 6c82f77b4..0
--- a/dev-python/viper/metadata.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   s...@gentoo.org
-   Gentoo Science Project
-   
-   
-Viper is a minimalistic scientific plotter and run-time visualization
-module. Viper has support for visualizing meshes and solutions in
-DOLFIN.
-
-   
-   fenics-viper
-   
-

diff --git a/dev-python/viper/viper-1.0.1.ebuild 
b/dev-python/viper/viper-1.0.1.ebuild
deleted file mode 100644
index 0ba65e117..0
--- a/dev-python/viper/viper-1.0.1.ebuild
+++ /dev/null
@@ -1,17 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1
-
-DESCRIPTION="Minimalistic scientific plotter and run-time visualization module"
-HOMEPAGE="https://launchpad.net/fenics-viper;
-SRC_URI="https://launchpad.net/fenics-viper/1.0.x/${PV}/+download/${P}.tar.gz;
-
-LICENSE="LGPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""



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

2021-01-02 Thread Horea Christian
commit: 70f8a2925272cb3e252372debe35b6ef791535da
Author: Andrew Ammerlaan  riseup  net>
AuthorDate: Sat Jan  2 13:01:13 2021 +
Commit: Horea Christian  gmail  com>
CommitDate: Sun Jan  3 04:30:51 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=70f8a292

dev-python/num2words: version bump, fix tests

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan  riseup.net>
Signed-off-by: Horea Christian  chymera.eu>

 ...2words-0.5.9.ebuild => num2words-0.5.10.ebuild} | 20 -
 dev-python/num2words/num2words-0.5.6.ebuild| 26 --
 2 files changed, 9 insertions(+), 37 deletions(-)

diff --git a/dev-python/num2words/num2words-0.5.9.ebuild 
b/dev-python/num2words/num2words-0.5.10.ebuild
similarity index 51%
rename from dev-python/num2words/num2words-0.5.9.ebuild
rename to dev-python/num2words/num2words-0.5.10.ebuild
index 4ce161c21..7e62a328d 100644
--- a/dev-python/num2words/num2words-0.5.9.ebuild
+++ b/dev-python/num2words/num2words-0.5.10.ebuild
@@ -1,26 +1,24 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{6..9} )
+PYTHON_COMPAT=( python3_{7..9} )
 
 inherit distutils-r1
 
 DESCRIPTION="Modules to convert numbers to words."
 HOMEPAGE="https://github.com/savoirfairelinux/num2words;
-SRC_URI="https://github.com/savoirfairelinux/num2words/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64"
-IUSE="test"
+KEYWORDS="~amd64 ~x86"
 
-DEPEND="
+RDEPEND="dev-python/docopt[${PYTHON_USEDEP}]"
+
+BDEPEND="
test? ( dev-python/delegator[${PYTHON_USEDEP}] )
-   "
-RDEPEND=""
+"
 
-python_test() {
-   ${EPYTHON} setup.py test || die
-}
+distutils_enable_tests pytest

diff --git a/dev-python/num2words/num2words-0.5.6.ebuild 
b/dev-python/num2words/num2words-0.5.6.ebuild
deleted file mode 100644
index 1e541df7d..0
--- a/dev-python/num2words/num2words-0.5.6.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
-
-inherit distutils-r1
-
-DESCRIPTION="Modules to convert numbers to words."
-HOMEPAGE="https://github.com/savoirfairelinux/num2words;
-SRC_URI="https://github.com/savoirfairelinux/num2words/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE=""
-
-DEPEND="
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   "
-RDEPEND=""
-
-python_test() {
-   ${EPYTHON} setup.py test || die
-}



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

2021-01-02 Thread Horea Christian
commit: 574fc6b172a1c4afd0fc849e998283050e7f371d
Author: Andrew Ammerlaan  riseup  net>
AuthorDate: Sat Jan  2 12:26:59 2021 +
Commit: Horea Christian  gmail  com>
CommitDate: Sun Jan  3 04:30:12 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=574fc6b1

dev-python/dijitso: bump python targets, enbale tests

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan  riseup.net>
Signed-off-by: Horea Christian  chymera.eu>

 dev-python/dijitso/dijitso-2016.2.0.ebuild | 19 ---
 dev-python/dijitso/dijitso-2017.1.0.ebuild | 17 -
 2 files changed, 12 insertions(+), 24 deletions(-)

diff --git a/dev-python/dijitso/dijitso-2016.2.0.ebuild 
b/dev-python/dijitso/dijitso-2016.2.0.ebuild
deleted file mode 100644
index fb0bc43bd..0
--- a/dev-python/dijitso/dijitso-2016.2.0.ebuild
+++ /dev/null
@@ -1,19 +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 distutils-r1
-
-DESCRIPTION="Python module for distributed just-in-time shared library 
building"
-HOMEPAGE="https://bitbucket.org/fenics-project/dijitso/;
-SRC_URI="https://bitbucket.org/fenics-project/dijitso/downloads/${P}.tar.gz;
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="dev-python/mpi4py"

diff --git a/dev-python/dijitso/dijitso-2017.1.0.ebuild 
b/dev-python/dijitso/dijitso-2017.1.0.ebuild
index cea6e39ff..cef1e1eb7 100644
--- a/dev-python/dijitso/dijitso-2017.1.0.ebuild
+++ b/dev-python/dijitso/dijitso-2017.1.0.ebuild
@@ -1,9 +1,10 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
-PYTHON_COMPAT=( python3_4 python3_5 python3_6 )
+PYTHON_COMPAT=( python3_{7,8,9} )
+DISTUTILS_USE_SETUPTOOLS=rdepend
 
 inherit distutils-r1
 
@@ -14,6 +15,12 @@ 
SRC_URI="https://bitbucket.org/fenics-project/dijitso/downloads/${P}.tar.gz;
 LICENSE="GPL-3"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE=""
 
-RDEPEND="dev-python/mpi4py"
+RDEPEND="
+   dev-python/mpi4py[${PYTHON_USEDEP}]
+   dev-python/numpy[${PYTHON_USEDEP}]
+   dev-python/six[${PYTHON_USEDEP}]
+"
+# TODO: fix this, seems to require self
+#distutils_enable_sphinx doc/sphinx/source
+distutils_enable_tests --install pytest



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

2021-01-02 Thread Horea Christian
commit: 42f7255665aedfc21ca5bbbffcd6fa9c74842cc2
Author: Andrew Ammerlaan  riseup  net>
AuthorDate: Sat Jan  2 12:40:30 2021 +
Commit: Horea Christian  gmail  com>
CommitDate: Sun Jan  3 04:30:26 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=42f72556

dev-python/matrix2latex: bump python targets, enable tests and sphinx

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan  riseup.net>
Signed-off-by: Horea Christian  chymera.eu>

 dev-python/matrix2latex/matrix2latex-1.0.0.ebuild  | 19 --
 .../matrix2latex/matrix2latex-1.9_p20160719.ebuild | 30 ++
 2 files changed, 30 insertions(+), 19 deletions(-)

diff --git a/dev-python/matrix2latex/matrix2latex-1.0.0.ebuild 
b/dev-python/matrix2latex/matrix2latex-1.0.0.ebuild
deleted file mode 100644
index 502c649fc..0
--- a/dev-python/matrix2latex/matrix2latex-1.0.0.ebuild
+++ /dev/null
@@ -1,19 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python{2_7,3_{6..9}} )
-
-inherit distutils-r1 multilib
-
-DESCRIPTION="A tool to create LaTeX tables from python lists and arrays"
-HOMEPAGE="https://github.com/TheChymera/matrix2latex;
-SRC_URI="https://github.com/TheChymera/${PN}/blob/master/archive/${PN}Python-${PV}.tar.gz?raw=true
 -> ${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE=""
-
-S="${WORKDIR}/${PN}Python${PV}"

diff --git a/dev-python/matrix2latex/matrix2latex-1.9_p20160719.ebuild 
b/dev-python/matrix2latex/matrix2latex-1.9_p20160719.ebuild
new file mode 100644
index 0..14a2ecaa7
--- /dev/null
+++ b/dev-python/matrix2latex/matrix2latex-1.9_p20160719.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7,8,9} )
+
+inherit distutils-r1
+
+COMMIT="78edec90115b855cb743ecc702d252514dedc6db"
+
+DESCRIPTION="A tool to create LaTeX tables from python lists and arrays"
+HOMEPAGE="https://github.com/TheChymera/matrix2latex;
+SRC_URI="https://github.com/TheChymera/${PN}/archive/${COMMIT}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+S="${WORKDIR}/${PN}-${COMMIT}"
+
+distutils_enable_sphinx doc_sphinx
+distutils_enable_tests pytest
+
+python_prepare_all() {
+   # this has been renamed in newer versions of sphinx
+   sed -i -e 's/sphinx.ext.pngmath/sphinx.ext.imgmath/g' doc_sphinx/conf.py
+
+   distutils-r1_python_prepare_all
+}



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

2021-01-02 Thread Horea Christian
commit: 28ce7753b360f6857f1d373c3befab890c7a7811
Author: Andrew Ammerlaan  riseup  net>
AuthorDate: Sat Jan  2 12:20:35 2021 +
Commit: Horea Christian  gmail  com>
CommitDate: Sun Jan  3 04:29:58 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=28ce7753

dev-python/bcbio-gff: version bump, bump py targets

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan  riseup.net>
Signed-off-by: Horea Christian  chymera.eu>

 .../{bcbio-gff-0.6.4.ebuild => bcbio-gff-0.6.6.ebuild}  | 13 ++---
 1 file changed, 6 insertions(+), 7 deletions(-)

diff --git a/dev-python/bcbio-gff/bcbio-gff-0.6.4.ebuild 
b/dev-python/bcbio-gff/bcbio-gff-0.6.6.ebuild
similarity index 52%
rename from dev-python/bcbio-gff/bcbio-gff-0.6.4.ebuild
rename to dev-python/bcbio-gff/bcbio-gff-0.6.6.ebuild
index 8cebbe010..73f412971 100644
--- a/dev-python/bcbio-gff/bcbio-gff-0.6.4.ebuild
+++ b/dev-python/bcbio-gff/bcbio-gff-0.6.6.ebuild
@@ -1,19 +1,18 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7,8,9} )
 
-PYTHON_COMPAT=( python2_7 python3_5 )
 inherit distutils-r1
 
 DESCRIPTION="Read and write Generic Feature Format (GFF) with Biopython"
 HOMEPAGE="https://pypi.python.org/pypi/bcbio-gff;
-SRC_URI="https://pypi.python.org/packages/94/df/e2d75cc688ac6eb53f5fb4e2cffd240596bbcd5be28bab8d4f6404a6f86c/bcbio-gff-0.6.4.tar.gz;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="HPND" # same as biopython
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE=""
 
-DEPEND=""
-RDEPEND="${DEPEND}"
+RDEPEND="dev-python/six[${PYTHON_USEDEP}]"



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

2021-01-02 Thread Horea Christian
commit: 5c191a775d0dedfe49d26f2bc38342791f8750b7
Author: Horea Christian  chymera  eu>
AuthorDate: Sun Jan  3 03:46:05 2021 +
Commit: Horea Christian  gmail  com>
CommitDate: Sun Jan  3 03:46:05 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=5c191a77

sci-biology/afni: version bump 20.3.03

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Horea Christian  chymera.eu>

 sci-biology/afni/afni-20.3.03.ebuild | 77 
 1 file changed, 77 insertions(+)

diff --git a/sci-biology/afni/afni-20.3.03.ebuild 
b/sci-biology/afni/afni-20.3.03.ebuild
new file mode 100644
index 0..ed100cb3c
--- /dev/null
+++ b/sci-biology/afni/afni-20.3.03.ebuild
@@ -0,0 +1,77 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit eutils multilib pax-utils toolchain-funcs
+
+DESCRIPTION="An open-source environment for processing and displaying 
functional MRI data"
+HOMEPAGE="http://afni.nimh.nih.gov/;
+SRC_URI="https://github.com/afni/afni/archive/AFNI_${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="dev-libs/expat
+   media-libs/glu
+   media-libs/netpbm
+   media-libs/qhull
+   media-video/mpeg-tools
+   sci-libs/gsl
+   sys-devel/llvm:*
+   virtual/jpeg:0
+   x11-libs/libGLw
+   x11-libs/libXft
+   x11-libs/libXi
+   x11-libs/libXpm
+   x11-libs/motif[-static-libs]"
+
+# x11-libs/motif[static-libs] breaks the build.
+# See upstream discussion
+# 
http://afni.nimh.nih.gov/afni/community/board/read.php?1,85348,85348#msg-85348
+
+DEPEND="${RDEPEND}
+   app-shells/tcsh"
+
+S="${WORKDIR}/${PN}-AFNI_${PV}/src"
+BUILD="linux_fedora_19_64"
+BIN_CONFLICTS=(qdelaunay whirlgif djpeg cjpeg qhull rbox count mpeg_encode)
+
+#PATCHES=(
+#  "${FILESDIR}/${P}-python.patch"
+#)
+
+src_prepare() {
+   eapply "${FILESDIR}/${P}-python.patch" || die
+   find -type f -exec sed -i -e "s/-lXp //g" {} +
+   cp other_builds/Makefile.${BUILD} Makefile || die "Could not copy 
Makefile"
+   # Unbundle imcat
+   sed -e "s/ imcat / /g" \
+   -i Makefile.INCLUDE || die "Could not edit includes files."
+   sed -e "s~CC = /usr/bin/gcc -O2 -m64~CC = $(tc-getCC) 
\$(CFLAGS)~" \
+   -e "s~CCMIN  = /usr/bin/gcc -m64~CCMIN  = $(tc-getCC) 
\$(CFLAGS)~" \
+   -e "s~LD = /usr/bin/gcc~LD = $(tc-getCC)~" \
+   -e "s~AR = /usr/bin/ar~AR = $(tc-getAR)~" \
+   -e "s~RANLIB = /usr/bin/ranlib~RANLIB = $(tc-getRANLIB)~" \
+   -i Makefile || die "Could not edit Makefile"
+   # they provide somewhat problematic makefiles :(
+   sed -e "s~ifeq ($(CC),gcc)~ifeq (1,1)~"\
+   -i SUMA/SUMA_Makefile || die "Could not edit SUMA/SUMA_Makefile"
+   # upstream checks if $CC is EXACTLY gcc, else sets variables 
for Mac
+   find "${S}" -iname "*Makefile*" | xargs sed -e 
"s~/usr/~${EROOT}/usr/~g;" -i
+   default
+}
+
+src_compile() {
+   emake -j1 all plugins suma_exec
+}
+
+src_install() {
+   emake INSTALLDIR="${ED}/usr/bin" -j1 install install_plugins
+   emake INSTALLDIR="${ED}/usr/$(get_libdir)" install_lib
+   for CONFLICT in ${BIN_CONFLICTS[@]}; do
+   rm "${ED}/usr/bin/${CONFLICT}"
+   done
+}



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

2021-01-02 Thread Horea Christian
commit: f225be3cfea18d5fedcc3c7f77f402effa123dea
Author: Horea Christian  chymera  eu>
AuthorDate: Sun Jan  3 03:44:38 2021 +
Commit: Horea Christian  gmail  com>
CommitDate: Sun Jan  3 03:44:38 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=f225be3c

sci-biology/afni: applying patch at start of prepare phase

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Horea Christian  chymera.eu>

 sci-biology/afni/afni-20.1.16.ebuild | 7 ++-
 1 file changed, 2 insertions(+), 5 deletions(-)

diff --git a/sci-biology/afni/afni-20.1.16.ebuild 
b/sci-biology/afni/afni-20.1.16.ebuild
index 09e2b7def..da68d2d6d 100644
--- a/sci-biology/afni/afni-20.1.16.ebuild
+++ b/sci-biology/afni/afni-20.1.16.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -39,11 +39,8 @@ S="${WORKDIR}/${PN}-AFNI_${PV}/src"
 BUILD="linux_fedora_19_64"
 BIN_CONFLICTS=(qdelaunay whirlgif djpeg cjpeg qhull rbox count mpeg_encode)
 
-PATCHES=(
-   "${FILESDIR}/${P}-python.patch"
-)
-
 src_prepare() {
+   eapply "${FILESDIR}/${P}-python.patch" || die
find -type f -exec sed -i -e "s/-lXp //g" {} +
cp other_builds/Makefile.${BUILD} Makefile || die "Could not copy 
Makefile"
# Unbundle imcat



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

2021-01-02 Thread Horea Christian
commit: a46c4413e84ced35887a9c412473726b321df4e7
Author: Horea Christian  chymera  eu>
AuthorDate: Sun Jan  3 03:37:51 2021 +
Commit: Horea Christian  gmail  com>
CommitDate: Sun Jan  3 03:38:02 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=a46c4413

dev-python/traits: keeping second version 6.0.0

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Horea Christian  chymera.eu>

 dev-python/traits/traits-6.0.0.ebuild | 43 +++
 1 file changed, 43 insertions(+)

diff --git a/dev-python/traits/traits-6.0.0.ebuild 
b/dev-python/traits/traits-6.0.0.ebuild
new file mode 100644
index 0..ba9a4980b
--- /dev/null
+++ b/dev-python/traits/traits-6.0.0.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6,7,8,9} )
+
+inherit distutils-r1 virtualx
+
+DESCRIPTION="Enthought Tool Suite: Explicitly typed attributes for Python"
+HOMEPAGE="http://docs.enthought.com/traits/
+   https://github.com/enthought/traits
+   https://pypi.org/project/traits/;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="test"
+
+RDEPEND="dev-python/numpy[${PYTHON_USEDEP}]"
+
+DEPEND="
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   test? (
+   dev-python/nose[${PYTHON_USEDEP}]
+   ${RDEPEND}
+   )"
+
+python_prepare_all() {
+   sed -i -e "s/'-O3'//g" setup.py || die
+   distutils-r1_python_prepare_all
+}
+
+python_compile() {
+   python_is_python3 || local -x CFLAGS="${CFLAGS} -fno-strict-aliasing"
+   distutils-r1_python_compile
+}
+
+python_test() {
+   cd "${BUILD_DIR}"/lib || die
+   ${EPYTHON} -m unittest discover || die
+}



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

2021-01-02 Thread Horea Christian
commit: 022d5da8a7b0fa7d16141aa2f250b10f7962adea
Author: Andrew Ammerlaan  riseup  net>
AuthorDate: Wed Dec 30 16:45:55 2020 +
Commit: Horea Christian  gmail  com>
CommitDate: Sun Jan  3 03:31:15 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=022d5da8

dev-python/traits: version bump, cleanup ebuild

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan  riseup.net>
Signed-off-by: Horea Christian  chymera.eu>

 dev-python/traits/traits-5.1.0.ebuild  | 43 --
 .../{traits-6.0.0.ebuild => traits-6.1.1.ebuild}   | 20 +++---
 2 files changed, 6 insertions(+), 57 deletions(-)

diff --git a/dev-python/traits/traits-5.1.0.ebuild 
b/dev-python/traits/traits-5.1.0.ebuild
deleted file mode 100644
index e575e72a0..0
--- a/dev-python/traits/traits-5.1.0.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{6,7,8} )
-
-inherit distutils-r1 virtualx
-
-DESCRIPTION="Enthought Tool Suite: Explicitly typed attributes for Python"
-HOMEPAGE="http://docs.enthought.com/traits/
-   https://github.com/enthought/traits
-   https://pypi.org/project/traits/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="test"
-
-RDEPEND="dev-python/numpy[${PYTHON_USEDEP}]"
-
-DEPEND="
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   test? (
-   dev-python/nose[${PYTHON_USEDEP}]
-   ${RDEPEND}
-   )"
-
-python_prepare_all() {
-   sed -i -e "s/'-O3'//g" setup.py || die
-   distutils-r1_python_prepare_all
-}
-
-python_compile() {
-   python_is_python3 || local -x CFLAGS="${CFLAGS} -fno-strict-aliasing"
-   distutils-r1_python_compile
-}
-
-python_test() {
-   cd "${BUILD_DIR}"/lib || die
-   nosetests || die
-}

diff --git a/dev-python/traits/traits-6.0.0.ebuild 
b/dev-python/traits/traits-6.1.1.ebuild
similarity index 65%
rename from dev-python/traits/traits-6.0.0.ebuild
rename to dev-python/traits/traits-6.1.1.ebuild
index f109a0c09..a5258b8a5 100644
--- a/dev-python/traits/traits-6.0.0.ebuild
+++ b/dev-python/traits/traits-6.1.1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{6,7,8,9} )
+PYTHON_COMPAT=( python3_{7,8,9} )
 
 inherit distutils-r1 virtualx
 
@@ -15,28 +15,20 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="test"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
 
 RDEPEND="dev-python/numpy[${PYTHON_USEDEP}]"
 
-DEPEND="
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   test? (
-   dev-python/nose[${PYTHON_USEDEP}]
-   ${RDEPEND}
-   )"
+distutils_enable_tests nose
+# ToDo: Fix doc building:
+# AttributeError: 'NoDefaultSpecified' object has no attribute '__name__'
+#distutils_enable_sphinx docs/source --no-autodoc
 
 python_prepare_all() {
sed -i -e "s/'-O3'//g" setup.py || die
distutils-r1_python_prepare_all
 }
 
-python_compile() {
-   python_is_python3 || local -x CFLAGS="${CFLAGS} -fno-strict-aliasing"
-   distutils-r1_python_compile
-}
-
 python_test() {
cd "${BUILD_DIR}"/lib || die
${EPYTHON} -m unittest discover || die



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

2021-01-02 Thread Sam James
commit: 376267decf7196203b31c8fa4831a853063fd35f
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan  3 01:26:43 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan  3 01:26:43 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=376267de

media-libs/faac: Stabilize 1.30 amd64, #762493

Signed-off-by: Sam James  gentoo.org>

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

diff --git a/media-libs/faac/faac-1.30.ebuild b/media-libs/faac/faac-1.30.ebuild
index dad2ee474b1..27299556f6f 100644
--- a/media-libs/faac/faac-1.30.ebuild
+++ b/media-libs/faac/faac-1.30.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -14,7 +14,7 @@ SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
 
 LICENSE="LGPL-2.1 MPEG-4"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 sparc ~x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 sparc ~x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~x86-solaris"
 
 S="${WORKDIR}/${MY_P}"
 



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

2021-01-02 Thread Sam James
commit: 2b7fb90ca326e7242ed7bf3a4307bb9431b90216
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan  3 01:23:29 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan  3 01:23:29 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b7fb90c

media-gfx/asymptote: Stabilize 2.68 amd64, #762322

Signed-off-by: Sam James  gentoo.org>

 media-gfx/asymptote/asymptote-2.68.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-gfx/asymptote/asymptote-2.68.ebuild 
b/media-gfx/asymptote/asymptote-2.68.ebuild
index 1e7593538a8..6aa632707f5 100644
--- a/media-gfx/asymptote/asymptote-2.68.ebuild
+++ b/media-gfx/asymptote/asymptote-2.68.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -13,7 +13,7 @@ SRC_URI="mirror://sourceforge/asymptote/${P}.src.tgz"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="amd64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
 IUSE="+boehm-gc doc emacs examples fftw gsl +imagemagick latex offscreen 
+opengl python sigsegv svg test vim-syntax X"
 RESTRICT="!test? ( test )"
 



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

2021-01-02 Thread Sam James
commit: f6125d3aacb7e4c46792f3a147d46d17c670665c
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan  3 01:22:13 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan  3 01:22:13 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6125d3a

dev-util/bats: Stabilize 1.2.1 ALLARCHES, #762086

Signed-off-by: Sam James  gentoo.org>

 dev-util/bats/bats-1.2.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/bats/bats-1.2.1.ebuild b/dev-util/bats/bats-1.2.1.ebuild
index 946b25da8e6..6647ae0daa0 100644
--- a/dev-util/bats/bats-1.2.1.ebuild
+++ b/dev-util/bats/bats-1.2.1.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/${MY_PN}/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ppc64 x86"
 
 DEPEND="app-shells/bash:*"
 RDEPEND="${DEPEND}"



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

2021-01-02 Thread Sam James
commit: 955ed445ca4f6e36b3d258fc9d5ab303d7509df0
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan  3 01:21:56 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan  3 01:21:56 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=955ed445

dev-util/bats: mark ALLARCHES

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Sam James  gentoo.org>

 dev-util/bats/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-util/bats/metadata.xml b/dev-util/bats/metadata.xml
index 289f5b52a98..af9f791400d 100644
--- a/dev-util/bats/metadata.xml
+++ b/dev-util/bats/metadata.xml
@@ -9,6 +9,7 @@
proxy-ma...@gentoo.org
Proxy Maintainers

+   

bats-core/bats-core




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

2021-01-02 Thread Sam James
commit: a61cf71d49140ab240da396e34a5e4cdb9eb7bc2
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan  3 01:17:33 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan  3 01:17:33 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a61cf71d

x11-misc/clipnotify: Stabilize 1.0.2 amd64, #762304

Signed-off-by: Sam James  gentoo.org>

 x11-misc/clipnotify/clipnotify-1.0.2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/x11-misc/clipnotify/clipnotify-1.0.2.ebuild 
b/x11-misc/clipnotify/clipnotify-1.0.2.ebuild
index f3047ebe20e..3af7384f0aa 100644
--- a/x11-misc/clipnotify/clipnotify-1.0.2.ebuild
+++ b/x11-misc/clipnotify/clipnotify-1.0.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2020 Gentoo Authors
+# Copyright 2020-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -9,7 +9,7 @@ SRC_URI="https://github.com/cdown/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
 
 LICENSE="Unlicense"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE=""
 
 DEPEND="



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

2021-01-02 Thread Sam James
commit: 54c18a236bd44793ce527f81444e369c1c0e5b79
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan  3 01:17:15 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan  3 01:17:15 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54c18a23

media-libs/dav1d: Stabilize 0.8.0 amd64, #762098

Signed-off-by: Sam James  gentoo.org>

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

diff --git a/media-libs/dav1d/dav1d-0.8.0.ebuild 
b/media-libs/dav1d/dav1d-0.8.0.ebuild
index 83a018f3e5b..6a37c26f232 100644
--- a/media-libs/dav1d/dav1d-0.8.0.ebuild
+++ b/media-libs/dav1d/dav1d-0.8.0.ebuild
@@ -8,7 +8,7 @@ if [[ "${PV}" == "" ]]; then
SCM="git-r3"
EGIT_REPO_URI="https://code.videolan.org/videolan/dav1d;
 else
-   KEYWORDS="~amd64 arm arm64 ppc ~ppc64 ~sparc ~x86"
+   KEYWORDS="amd64 arm arm64 ppc ~ppc64 ~sparc ~x86"

SRC_URI="https://code.videolan.org/videolan/dav1d/-/archive/${PV}/${P}.tar.bz2;
 fi
 



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

2021-01-02 Thread Sam James
commit: e21788a3d2fce8a285b4032888ea5a58cfd01ad3
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan  3 01:17:19 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan  3 01:17:19 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e21788a3

dev-libs/libcec: Stabilize 6.0.2 amd64, #762107

Signed-off-by: Sam James  gentoo.org>

 dev-libs/libcec/libcec-6.0.2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-libs/libcec/libcec-6.0.2.ebuild 
b/dev-libs/libcec/libcec-6.0.2.ebuild
index 9ffaf6366ec..b22be742212 100644
--- a/dev-libs/libcec/libcec-6.0.2.ebuild
+++ b/dev-libs/libcec/libcec-6.0.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -15,7 +15,7 @@ 
SRC_URI="https://github.com/Pulse-Eight/${PN}/archive/${MY_P}.tar.gz;
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~x86"
 IUSE="cubox exynos python raspberry-pi kernel-cec tools +xrandr udev"
 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
 



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

2021-01-02 Thread Sam James
commit: 896d034bbe212819976bbbfdac26bcb255d0b904
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan  3 01:17:22 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan  3 01:17:22 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=896d034b

app-text/dos2unix: Stabilize 7.4.2 amd64, #762119

Signed-off-by: Sam James  gentoo.org>

 app-text/dos2unix/dos2unix-7.4.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/dos2unix/dos2unix-7.4.2.ebuild 
b/app-text/dos2unix/dos2unix-7.4.2.ebuild
index 45a0999b5fc..bb1805dc310 100644
--- a/app-text/dos2unix/dos2unix-7.4.2.ebuild
+++ b/app-text/dos2unix/dos2unix-7.4.2.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 LICENSE="BSD-2"
 SLOT="0"
 [[ "${PV}" == *_beta* ]] || \
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc 
~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc 
~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris"
 IUSE="debug nls test"
 
 RDEPEND="



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

2021-01-02 Thread Sam James
commit: b26b6d7e960fac10dfc628b092c830a5b98e261c
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan  3 01:17:12 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan  3 01:17:12 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b26b6d7e

dev-util/bats: Stabilize 1.2.1 amd64, #762086

Signed-off-by: Sam James  gentoo.org>

 dev-util/bats/bats-1.2.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-util/bats/bats-1.2.1.ebuild b/dev-util/bats/bats-1.2.1.ebuild
index 82cdfda1600..946b25da8e6 100644
--- a/dev-util/bats/bats-1.2.1.ebuild
+++ b/dev-util/bats/bats-1.2.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/${MY_PN}/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~x86"
 
 DEPEND="app-shells/bash:*"
 RDEPEND="${DEPEND}"



[gentoo-commits] repo/gentoo:master commit in: mail-filter/sieve-connect/

2021-01-02 Thread Sam James
commit: 0b54602fd8ce5df8e2281184ff29288b5a397b76
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan  3 01:17:09 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan  3 01:17:09 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b54602f

mail-filter/sieve-connect: Stabilize 0.90 amd64, #762071

Signed-off-by: Sam James  gentoo.org>

 mail-filter/sieve-connect/sieve-connect-0.90.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/mail-filter/sieve-connect/sieve-connect-0.90.ebuild 
b/mail-filter/sieve-connect/sieve-connect-0.90.ebuild
index cee4de69991..223b1c102a3 100644
--- a/mail-filter/sieve-connect/sieve-connect-0.90.ebuild
+++ b/mail-filter/sieve-connect/sieve-connect-0.90.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -9,7 +9,7 @@ 
SRC_URI="https://github.com/syscomet/sieve-connect/releases/download/v${PV}/${P}
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 
 DEPEND=">=dev-lang/perl-5"
 RDEPEND="${DEPEND}



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

2021-01-02 Thread Sam James
commit: 20d9788c7196f46da3761e29147de854a9325a8a
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan  3 01:17:18 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan  3 01:17:18 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20d9788c

dev-libs/libplatform: Stabilize 2.1.0.1-r1 amd64, #762107

Signed-off-by: Sam James  gentoo.org>

 dev-libs/libplatform/libplatform-2.1.0.1-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-libs/libplatform/libplatform-2.1.0.1-r1.ebuild 
b/dev-libs/libplatform/libplatform-2.1.0.1-r1.ebuild
index 93381cb5e79..47d644fd00e 100644
--- a/dev-libs/libplatform/libplatform-2.1.0.1-r1.ebuild
+++ b/dev-libs/libplatform/libplatform-2.1.0.1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -21,5 +21,5 @@ if [[ ${PV} == * ]] ; then
 else

SRC_URI="https://github.com/Pulse-Eight/${MY_PN}/archive/${MY_PN_PREFIX}-${MY_PN}-${PV}.tar.gz
 -> ${P}.tar.gz"
S="${WORKDIR}/${MY_PN}-${MY_PN_PREFIX}-${MY_PN}-${PV}"
-   KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~x86"
 fi



[gentoo-commits] repo/gentoo:master commit in: net-firewall/arno-iptables-firewall/

2021-01-02 Thread Sam James
commit: fb0e48f61a3bb06d3bd4b120c2c58279d22c9236
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan  3 01:17:31 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan  3 01:17:31 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb0e48f6

net-firewall/arno-iptables-firewall: Stabilize 2.1.1 amd64, #762295

Signed-off-by: Sam James  gentoo.org>

 .../arno-iptables-firewall/arno-iptables-firewall-2.1.1.ebuild| 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/net-firewall/arno-iptables-firewall/arno-iptables-firewall-2.1.1.ebuild 
b/net-firewall/arno-iptables-firewall/arno-iptables-firewall-2.1.1.ebuild
index 0b622d4894c..f3ee01bf107 100644
--- a/net-firewall/arno-iptables-firewall/arno-iptables-firewall-2.1.1.ebuild
+++ b/net-firewall/arno-iptables-firewall/arno-iptables-firewall-2.1.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/${PN}/aif/archive/${MY_PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="+plugins rsyslog"
 
 DEPEND=""



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

2021-01-02 Thread Sam James
commit: c4482e0b7dc831261d5a3c26b51eb7f6d6bcc0b5
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan  3 01:17:05 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan  3 01:17:05 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4482e0b

sci-physics/bullet: Stabilize 3.07 amd64, #762059

Signed-off-by: Sam James  gentoo.org>

 sci-physics/bullet/bullet-3.07.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sci-physics/bullet/bullet-3.07.ebuild 
b/sci-physics/bullet/bullet-3.07.ebuild
index 0ba0a2d387c..2dcd83c2cb5 100644
--- a/sci-physics/bullet/bullet-3.07.ebuild
+++ b/sci-physics/bullet/bullet-3.07.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/bulletphysics/bullet3/archive/${PV}.tar.gz -> ${P}.t
 
 LICENSE="ZLIB"
 SLOT="0/${PV}"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
 IUSE="doc double-precision examples openmp tbb test threads"
 
 REQUIRED_USE="



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

2021-01-02 Thread Sam James
commit: 047072e98c99a231675c7b1eadeeac0b38ab1fc3
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan  3 01:17:28 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan  3 01:17:28 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=047072e9

dev-libs/libev: Stabilize 4.33 amd64, #762199

Signed-off-by: Sam James  gentoo.org>

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

diff --git a/dev-libs/libev/libev-4.33.ebuild b/dev-libs/libev/libev-4.33.ebuild
index 7fc20d0c558..2b9f8e2fc1c 100644
--- a/dev-libs/libev/libev-4.33.ebuild
+++ b/dev-libs/libev/libev-4.33.ebuild
@@ -12,7 +12,7 @@ SRC_URI="http://dist.schmorp.de/libev/${P}.tar.gz
 
 LICENSE="|| ( BSD GPL-2 )"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
 IUSE="static-libs"
 
 DOCS=( Changes README )



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

2021-01-02 Thread Sam James
commit: 2185f0596d27c028ad94fae53cdf6ae8ddc94d68
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan  3 01:16:59 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan  3 01:16:59 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2185f059

app-admin/passwordsafe: Stabilize 1.12.0-r1 amd64, #761846

Signed-off-by: Sam James  gentoo.org>

 app-admin/passwordsafe/passwordsafe-1.12.0-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-admin/passwordsafe/passwordsafe-1.12.0-r1.ebuild 
b/app-admin/passwordsafe/passwordsafe-1.12.0-r1.ebuild
index df1f621a56e..47a36e206ad 100644
--- a/app-admin/passwordsafe/passwordsafe-1.12.0-r1.ebuild
+++ b/app-admin/passwordsafe/passwordsafe-1.12.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2020 Gentoo Authors
+# Copyright 2020-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -14,7 +14,7 @@ 
SRC_URI="https://github.com/pwsafe/pwsafe/archive/${MY_PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="Artistic-2"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 IUSE="libressl qr test +xml yubikey"
 RESTRICT="!test? ( test )"
 



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

2021-01-02 Thread Sam James
commit: a27db1abfb7a1f65c0f68fcab48cc6de1a79859c
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan  3 01:17:25 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan  3 01:17:25 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a27db1ab

sys-fs/udisks: Stabilize 2.9.1 amd64, #762133

Signed-off-by: Sam James  gentoo.org>

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

diff --git a/sys-fs/udisks/udisks-2.9.1.ebuild 
b/sys-fs/udisks/udisks-2.9.1.ebuild
index a85f499c4a4..39a9daf922a 100644
--- a/sys-fs/udisks/udisks-2.9.1.ebuild
+++ b/sys-fs/udisks/udisks-2.9.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -10,7 +10,7 @@ 
SRC_URI="https://github.com/storaged-project/udisks/releases/download/${P}/${P}.
 
 LICENSE="LGPL-2+ GPL-2+"
 SLOT="2"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
 IUSE="acl +daemon debug elogind +introspection lvm nls selinux systemd vdo 
zram"
 
 REQUIRED_USE="



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

2021-01-02 Thread Sam James
commit: d3290bd64e7a4f87284a479d5d45d1132172fda8
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan  3 01:17:02 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan  3 01:17:02 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3290bd6

sys-apps/debianutils: Stabilize 4.11.2 amd64, #762047

Signed-off-by: Sam James  gentoo.org>

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

diff --git a/sys-apps/debianutils/debianutils-4.11.2.ebuild 
b/sys-apps/debianutils/debianutils-4.11.2.ebuild
index da4a5c87b9a..a321e6e12ee 100644
--- a/sys-apps/debianutils/debianutils-4.11.2.ebuild
+++ b/sys-apps/debianutils/debianutils-4.11.2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://debian/pool/main/d/${PN}/${PN}_${PV}.tar.xz"
 
 LICENSE="BSD GPL-2 SMAIL"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
s390 sparc ~x86 ~x86-linux"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
s390 sparc ~x86 ~x86-linux"
 IUSE="+installkernel static"
 
 PDEPEND="



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

2021-01-02 Thread Sam James
commit: 01fc3e9b5ea11a22e6f4dd95d2c323a1a82dc3de
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan  3 01:16:53 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan  3 01:16:53 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01fc3e9b

x11-misc/qterm: Stabilize 0.7.3 amd64, #761676

Signed-off-by: Sam James  gentoo.org>

 x11-misc/qterm/qterm-0.7.3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/x11-misc/qterm/qterm-0.7.3.ebuild 
b/x11-misc/qterm/qterm-0.7.3.ebuild
index 8297a404681..8472a11bbf2 100644
--- a/x11-misc/qterm/qterm-0.7.3.ebuild
+++ b/x11-misc/qterm/qterm-0.7.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="6"
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="libressl"
 
 RDEPEND="dev-qt/qtcore:5



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

2021-01-02 Thread Sam James
commit: cdedbf3f873c1ec0aacfa9c52dc4a970a037f1b0
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan  3 01:16:47 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan  3 01:16:47 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cdedbf3f

dev-python/pony: Stabilize 0.7.14 ALLARCHES, #761637

Signed-off-by: Sam James  gentoo.org>

 dev-python/pony/pony-0.7.14.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/pony/pony-0.7.14.ebuild 
b/dev-python/pony/pony-0.7.14.ebuild
index e114ab933aa..71f042e9c9e 100644
--- a/dev-python/pony/pony-0.7.14.ebuild
+++ b/dev-python/pony/pony-0.7.14.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2020 Gentoo Authors
+# Copyright 2020-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2021-01-02 Thread Sam James
commit: cd13b5dce100932de0206a2c7d7a9e42b09e769c
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan  3 01:16:56 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan  3 01:16:56 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd13b5dc

dev-python/pillow: Stabilize 8.1.0 amd64, #763210

Signed-off-by: Sam James  gentoo.org>

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

diff --git a/dev-python/pillow/pillow-8.1.0.ebuild 
b/dev-python/pillow/pillow-8.1.0.ebuild
index bae14836838..7f29d060bd1 100644
--- a/dev-python/pillow/pillow-8.1.0.ebuild
+++ b/dev-python/pillow/pillow-8.1.0.ebuild
@@ -18,7 +18,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="HPND"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux"
 IUSE="examples imagequant jpeg jpeg2k lcms test tiff tk truetype webp xcb zlib"
 REQUIRED_USE="test? ( jpeg tiff )"
 RESTRICT="!test? ( test )"



[gentoo-commits] repo/gentoo:master commit in: x11-wm/icewm/

2021-01-02 Thread Lars Wendler
commit: 8556f43a41817baeb43216f017b2b6057a77c02f
Author: Lars Wendler  gentoo  org>
AuthorDate: Sun Jan  3 01:10:50 2021 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Sun Jan  3 01:10:56 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8556f43a

x11-wm/icewm: Removed old

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

 x11-wm/icewm/Manifest   |   1 -
 x11-wm/icewm/icewm-1.8.3.ebuild | 137 
 2 files changed, 138 deletions(-)

diff --git a/x11-wm/icewm/Manifest b/x11-wm/icewm/Manifest
index a8c135eb0a7..7d96efce603 100644
--- a/x11-wm/icewm/Manifest
+++ b/x11-wm/icewm/Manifest
@@ -1,4 +1,3 @@
-DIST icewm-1.8.3.tar.lz 1686603 BLAKE2B 
214cb3c7816ba8d94fa56fb9d4a6c630f49f23f69f99ff1ba7aff38aba6f6b7fbd623a284d4873616486d266a7ec412ba9cf4b29479c5c29f1f7ff27e15d1f48
 SHA512 
697395ff995b57e043774bae2cce667935879c4deab17d9a9059c1e152a90704ad3af618a2c945ac5afd561754895d4e9805f4fea77d5f1e06cf99a7dfd4c062
 DIST icewm-1.9.2.tar.lz 1694602 BLAKE2B 
cf30a695ba48093b386aa2f3af5120e78a9fcc57da9038bcd546ade0986e1bc359a3da91d2eeeb8d3a105173f5d755223675a84b38cfc8c907269efd2561c706
 SHA512 
7b4f8c47c636a0113af576bc1bcd9fde111ae70eb0bcf21fb1d906ca43bea4d8b0337a728e5da35bcfeabd56c66fd0d14581d7377f063dd750fdf01362b24be2
 DIST icewm-2.0.0.tar.lz 1694653 BLAKE2B 
36feb02d653256b4d6755618da89400c3925279757da32695d6b8c2206d69228bcf392852eaba8b9096d06b60b5f021a0b6b474140a7754c4865d575d8a868dc
 SHA512 
58b9a62d15add73c9c535e8602711636058b67b5e89b6189656a2d0668d2e647b9a59c45b5602f634ffd89abe7fb8a03be094524f3ff6d2b136bb8e21bc79fa3
 DIST icewm-2.0.1.tar.lz 1694439 BLAKE2B 
1476f33fa7350a98b7eca8c5c265455d0a78b28bcbd35ab78969b528ae02d3c960fb73cf2b24ea999ee5e08c9f0641d3502c7d5ed8b285777162c334d645b6db
 SHA512 
ac4126b38d592aed60d2269f58c5a1612b61e871565e3c3e51bc2b430e4da6a4708f78e86c16091fa4dfb9eefd4109ae89102ab708e3bce9a44f1e5fe1970c59

diff --git a/x11-wm/icewm/icewm-1.8.3.ebuild b/x11-wm/icewm/icewm-1.8.3.ebuild
deleted file mode 100644
index acff330bc41..000
--- a/x11-wm/icewm/icewm-1.8.3.ebuild
+++ /dev/null
@@ -1,137 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools unpacker
-
-DESCRIPTION="Ice Window Manager with Themes"
-HOMEPAGE="https://ice-wm.org/ https://github.com/ice-wm/icewm;
-LICENSE="GPL-2"
-SRC_URI="https://github.com/ice-wm/icewm/releases/download/${PV}/${P}.tar.lz;
-
-SLOT="0"
-KEYWORDS="amd64 ppc sparc x86"
-IUSE="+alsa ao bidi debug +gdk-pixbuf nls truetype uclibc xinerama"
-
-# Tests broken in all versions, patches welcome, bug #323907, #389533
-RESTRICT="test"
-
-REQUIRED_USE="|| ( alsa ao )"
-
-#fix for icewm preversion package names
-S="${WORKDIR}/${P/_}"
-
-# These are the core dependencies of icewm.
-# Look into configure.ac and search for PKG_CHECK_MODULES([CORE]
-CORE_DEPEND="
-   media-libs/fontconfig
-   x11-libs/libX11
-   x11-libs/libXcomposite
-   x11-libs/libXdamage
-   x11-libs/libXext
-   x11-libs/libXfixes
-   x11-libs/libXrender
-"
-
-RDEPEND="
-   ${CORE_DEPEND}
-   x11-libs/libICE
-   x11-libs/libSM
-   x11-libs/libXft
-   x11-libs/libXpm
-   x11-libs/libXrandr
-   alsa? (
-   media-libs/alsa-lib
-   media-libs/libsndfile[alsa]
-   )
-   ao? (
-   media-libs/libao
-   media-libs/libsndfile
-   )
-   bidi? ( dev-libs/fribidi )
-   gdk-pixbuf? (
-   x11-libs/gdk-pixbuf-xlib
-   >=x11-libs/gdk-pixbuf-2.42.0:2
-   )
-   !gdk-pixbuf? (
-   media-libs/libpng:0=
-   virtual/jpeg
-   )
-   xinerama? ( x11-libs/libXinerama )
-"
-DEPEND="
-   ${RDEPEND}
-   $(unpacker_src_uri_depends)
-   dev-libs/glib:2
-   x11-base/xorg-proto
-   gdk-pixbuf? ( gnome-base/librsvg:2 )
-"
-
-BDEPEND="
-   app-text/asciidoc
-   virtual/pkgconfig
-   nls? ( >=sys-devel/gettext-0.19.6 )
-"
-
-src_prepare() {
-   # Fix bug #486710 - TODO: Still needed?
-   #use uclibc && PATCHES+=( "${FILESDIR}/${PN}-1.3.8-uclibc.patch" )
-
-   default
-   eautoreconf
-}
-
-src_configure() {
-   local icesound
-   if use alsa && use ao ; then
-   icesound="alsa,ao"
-   elif use alsa ; then
-   icesound="alsa"
-   elif use ao ; then
-   icesound="ao"
-   fi
-
-   local myconf=(
-   --enable-logevents
-   --enable-xrandr
-   --with-cfgdir="${EPREFIX}"/etc/icewm
-   --with-docdir="${EPREFIX}"/usr/share/doc/${PF}/html
-   --with-icesound="${icesound}"
-   --with-libdir="${EPREFIX}"/usr/share/icewm
-   $(use_enable bidi fribidi)
-   $(use_enable debug)
-   $(use_enable gdk-pixbuf)
-   $(use_enable nls i18n)
- 

[gentoo-commits] repo/gentoo:master commit in: x11-wm/icewm/

2021-01-02 Thread Lars Wendler
commit: 2094ac95affc1ea141b6871bd248826a94753318
Author: Lars Wendler  gentoo  org>
AuthorDate: Sun Jan  3 01:10:14 2021 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Sun Jan  3 01:10:55 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2094ac95

x11-wm/icewm: Bump to version 2.0.1

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

 x11-wm/icewm/Manifest   |   1 +
 x11-wm/icewm/icewm-2.0.1.ebuild | 153 
 2 files changed, 154 insertions(+)

diff --git a/x11-wm/icewm/Manifest b/x11-wm/icewm/Manifest
index 81cee04ea5b..a8c135eb0a7 100644
--- a/x11-wm/icewm/Manifest
+++ b/x11-wm/icewm/Manifest
@@ -1,3 +1,4 @@
 DIST icewm-1.8.3.tar.lz 1686603 BLAKE2B 
214cb3c7816ba8d94fa56fb9d4a6c630f49f23f69f99ff1ba7aff38aba6f6b7fbd623a284d4873616486d266a7ec412ba9cf4b29479c5c29f1f7ff27e15d1f48
 SHA512 
697395ff995b57e043774bae2cce667935879c4deab17d9a9059c1e152a90704ad3af618a2c945ac5afd561754895d4e9805f4fea77d5f1e06cf99a7dfd4c062
 DIST icewm-1.9.2.tar.lz 1694602 BLAKE2B 
cf30a695ba48093b386aa2f3af5120e78a9fcc57da9038bcd546ade0986e1bc359a3da91d2eeeb8d3a105173f5d755223675a84b38cfc8c907269efd2561c706
 SHA512 
7b4f8c47c636a0113af576bc1bcd9fde111ae70eb0bcf21fb1d906ca43bea4d8b0337a728e5da35bcfeabd56c66fd0d14581d7377f063dd750fdf01362b24be2
 DIST icewm-2.0.0.tar.lz 1694653 BLAKE2B 
36feb02d653256b4d6755618da89400c3925279757da32695d6b8c2206d69228bcf392852eaba8b9096d06b60b5f021a0b6b474140a7754c4865d575d8a868dc
 SHA512 
58b9a62d15add73c9c535e8602711636058b67b5e89b6189656a2d0668d2e647b9a59c45b5602f634ffd89abe7fb8a03be094524f3ff6d2b136bb8e21bc79fa3
+DIST icewm-2.0.1.tar.lz 1694439 BLAKE2B 
1476f33fa7350a98b7eca8c5c265455d0a78b28bcbd35ab78969b528ae02d3c960fb73cf2b24ea999ee5e08c9f0641d3502c7d5ed8b285777162c334d645b6db
 SHA512 
ac4126b38d592aed60d2269f58c5a1612b61e871565e3c3e51bc2b430e4da6a4708f78e86c16091fa4dfb9eefd4109ae89102ab708e3bce9a44f1e5fe1970c59

diff --git a/x11-wm/icewm/icewm-2.0.1.ebuild b/x11-wm/icewm/icewm-2.0.1.ebuild
new file mode 100644
index 000..ec1d0545c00
--- /dev/null
+++ b/x11-wm/icewm/icewm-2.0.1.ebuild
@@ -0,0 +1,153 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools unpacker
+
+DESCRIPTION="Ice Window Manager with Themes"
+HOMEPAGE="https://ice-wm.org/ https://github.com/ice-wm/icewm;
+LICENSE="GPL-2"
+SRC_URI="https://github.com/ice-wm/icewm/releases/download/${PV}/${P}.tar.lz;
+
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+IUSE="+alsa ao bidi debug +gdk-pixbuf imlib nls truetype uclibc xinerama"
+
+# Tests broken in all versions, patches welcome, bug #323907, #389533
+RESTRICT="test"
+
+REQUIRED_USE="|| ( alsa ao )"
+#?? ( gdk-pixbuf imlib )
+
+#fix for icewm preversion package names
+S="${WORKDIR}/${P/_}"
+
+# These are the core dependencies of icewm.
+# Look into configure.ac and search for PKG_CHECK_MODULES([CORE]
+CORE_DEPEND="
+   media-libs/fontconfig
+   x11-libs/libX11
+   x11-libs/libXcomposite
+   x11-libs/libXdamage
+   x11-libs/libXext
+   x11-libs/libXfixes
+   x11-libs/libXrender
+"
+
+RDEPEND="
+   ${CORE_DEPEND}
+   dev-libs/glib:2
+   x11-libs/libICE
+   x11-libs/libSM
+   x11-libs/libXft
+   x11-libs/libXpm
+   x11-libs/libXrandr
+   alsa? (
+   media-libs/alsa-lib
+   media-libs/libsndfile[alsa]
+   )
+   ao? (
+   media-libs/libao
+   media-libs/libsndfile
+   )
+   bidi? ( dev-libs/fribidi )
+   gdk-pixbuf? (
+   x11-libs/gdk-pixbuf-xlib
+   >=x11-libs/gdk-pixbuf-2.42.0:2
+   )
+   !gdk-pixbuf? (
+   imlib? (
+   gnome-base/librsvg:2
+   media-libs/imlib2
+   )
+   !imlib? (
+   media-libs/libpng:0=
+   virtual/jpeg
+   )
+   )
+   xinerama? ( x11-libs/libXinerama )
+"
+DEPEND="
+   ${RDEPEND}
+   $(unpacker_src_uri_depends)
+   x11-base/xorg-proto
+   gdk-pixbuf? ( gnome-base/librsvg:2 )
+"
+
+BDEPEND="
+   app-text/asciidoc
+   virtual/pkgconfig
+   nls? ( >=sys-devel/gettext-0.19.8 )
+"
+
+pkg_pretend() {
+   if use gdk-pixbuf && use imlib ; then
+   einfo 'Confilcting USE flags have been enabled:'
+   einfo '"gdk-pixbuf" and "imlib" exclude each other!'
+   einfo 'Using "gdk-pixbuf".'
+   fi
+}
+
+src_prepare() {
+   default
+   eautoreconf
+}
+
+src_configure() {
+   local icesound
+   if use alsa && use ao ; then
+   icesound="alsa,ao"
+   elif use alsa ; then
+   icesound="alsa"
+   elif use ao ; then
+   icesound="ao"
+   fi
+
+   local myconf=(
+   --enable-logevents
+   --enable-xrandr
+   

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

2021-01-02 Thread Andreas K. Hüttel
commit: eb81e916efadc7f94e193594bc92a78e9065c80b
Author: Andreas K. Huettel  gentoo  org>
AuthorDate: Sun Jan  3 01:00:47 2021 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Sun Jan  3 01:00:47 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb81e916

net-wireless/bladerf: Remove old

Bug: https://bugs.gentoo.org/706664
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Andreas K. Huettel  gentoo.org>

 net-wireless/bladerf/Manifest   |  1 -
 net-wireless/bladerf/bladerf-2018.08.ebuild | 52 -
 2 files changed, 53 deletions(-)

diff --git a/net-wireless/bladerf/Manifest b/net-wireless/bladerf/Manifest
index 84731f8d52e..e2ae9d1954b 100644
--- a/net-wireless/bladerf/Manifest
+++ b/net-wireless/bladerf/Manifest
@@ -1,3 +1,2 @@
 DIST analogdevices-no-OS-0bba46.tar.gz 44190321 BLAKE2B 
b5c31b4b9ed92e0ac9f1a4c1eda38e065f00e0ee8034a99615a2509a4c91c589faefaf2e42a8bd30e61eb36459fa264c6e1892577f759c2ca0810925cede163e
 SHA512 
cf6f6d34fed9879ae7263782f20f33dd3af84201e3477fa0501e072eb08a8a545a07c496ad0ff3f7dc1a6ef407f136f843ba05942b4819e146c5fef023a3bb02
-DIST bladerf-2018.08.tar.gz 2177625 BLAKE2B 
8c3970f38f7645ba46c44803fc370e16012b2ea894d16c5101ea9519f5f9ff1aaa0a39819ac13389a33f7e0336e0e89ffcb7a0abf363cb30b091e88502a7a8c3
 SHA512 
7f8d0ef146da34474774d00503f0838cdf9404bf42bf1f68fd0f6018c7e7d4937da56110d818237f712bd23547cfbed1e2d04455a9d4d7ac0df96336e331c8f4
 DIST bladerf-2019.07.tar.gz 2186702 BLAKE2B 
1d08dc90ddf5d5f650fdc49e5a7e4224de7caa988974c1252052975599066b2221741a2cd2f0ba496e98d63b6d417b0eb1ae12de4dd9a9d43fb730bb6b221dc2
 SHA512 
e6ba47106ac9904d41fc611560c8f4bc482b9f17b6c476d4a2ac36c5779e9a64222140f4f067fab2252ccfabebf74e866f0fefb359934ff4df7a8416a8558b87

diff --git a/net-wireless/bladerf/bladerf-2018.08.ebuild 
b/net-wireless/bladerf/bladerf-2018.08.ebuild
deleted file mode 100644
index 347d4f4727e..000
--- a/net-wireless/bladerf/bladerf-2018.08.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit cmake-utils udev
-
-DESCRIPTION="Libraries for supporing the BladeRF hardware from Nuand"
-HOMEPAGE="https://nuand.com/;
-
-#lib is LGPL and cli tools are GPL
-LICENSE="GPL-2+ LGPL-2.1+"
-
-SLOT="0/${PV}"
-
-#maintainer notes:
-#doc use flag, looks like it can't be disabled right now and will
-#  always build if pandoc and help2man are installed
-#  also ignores when deps are missing and just disables docs
-IUSE="doc +tecla"
-
-MY_PN="bladeRF"
-
-if [[ ${PV} == "" ]] ; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/Nuand/${MY_PN}.git;
-   KEYWORDS=""
-else
-   MY_PV=${PV/\_/-}
-   S="${WORKDIR}/${MY_PN}-${MY_PV}"
-   SRC_URI="https://github.com/Nuand/${MY_PN}/archive/${MY_PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64 ~arm ~x86"
-fi
-
-CDEPEND=">=dev-libs/libusb-1.0.16
-   tecla? ( dev-libs/libtecla )"
-DEPEND="${CDEPEND}
-   virtual/pkgconfig"
-RDEPEND="${CDEPEND}"
-PDEPEND=">=net-wireless/bladerf-firmware-2.2.0
-   >=net-wireless/bladerf-fpga-0.7.3"
-
-src_configure() {
-   mycmakeargs=(
-   -DVERSION_INFO_OVERRIDE:STRING="${PV}"
-   -DBUILD_DOCUMENTATION="$(usex doc)"
-   -DENABLE_LIBTECLA="$(usex tecla)"
-   -DTREAT_WARNINGS_AS_ERRORS=OFF
-   -DUDEV_RULES_PATH="$(get_udevdir)"/rules.d
-   )
-   cmake-utils_src_configure
-}



[gentoo-commits] repo/gentoo:master commit in: x11-wm/wmfs/

2021-01-02 Thread Andreas K. Hüttel
commit: 38b96f6904f8b471cfe671022bc209ec765ca17e
Author: Andreas K. Huettel  gentoo  org>
AuthorDate: Sun Jan  3 00:59:08 2021 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Sun Jan  3 00:59:08 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38b96f69

x11-wm/wmfs: Remove old

Bug: https://bugs.gentoo.org/706654
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Andreas K. Huettel  gentoo.org>

 x11-wm/wmfs/Manifest   |  1 -
 x11-wm/wmfs/wmfs-201003.ebuild | 47 --
 2 files changed, 48 deletions(-)

diff --git a/x11-wm/wmfs/Manifest b/x11-wm/wmfs/Manifest
index b1ff0c4736f..d6f6bb805fd 100644
--- a/x11-wm/wmfs/Manifest
+++ b/x11-wm/wmfs/Manifest
@@ -1,2 +1 @@
-DIST wmfs-201003.tar.gz 59593 BLAKE2B 
b2e1f2cf73ca3d8881fa8de7b52fb6cae947a6006549f05dd06179b8b44b10fd1157a8e180b2b3177177fe0edf4c39b9a3fbf36ebb2b6470f1ed802a641a4c89
 SHA512 
117a238d6a8d8d147291ec9fb4e0aaf2bf8bab8ea794cf00deeaeaac1df15f0122bc705cb1bff54abe80d7228a19e67a79e4b3e0de0ced82abaf98fab3778a90
 DIST wmfs-20180520.tar.xz 56364 BLAKE2B 
23530193ba2c37ae4129fd23dda2ff8cd301b0bd92d32e06b264efd990b7957b38170de31f04afca6fd9875d2e0450c8bede416e5f49d6e19962718fe2e240a3
 SHA512 
bcff251397d8483db49c037c51eef7b3dcc87a6d94650ae9e9cabc7104177216e0efa7e67bfb34978bae67dc4853884673ce288bb8087e95cb2993d519ab4f2f

diff --git a/x11-wm/wmfs/wmfs-201003.ebuild b/x11-wm/wmfs/wmfs-201003.ebuild
deleted file mode 100644
index 27bdfa3ef56..000
--- a/x11-wm/wmfs/wmfs-201003.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
-inherit cmake
-
-DESCRIPTION="Window Manager From Scratch, A tiling window manager highly 
configurable"
-HOMEPAGE="https://github.com/xorg62/wmfs;
-SRC_URI="https://github.com/xorg62/wmfs/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64"
-
-RDEPEND="
-   media-libs/freetype
-   media-libs/imlib2[X]
-   x11-libs/libX11
-   x11-libs/libXft
-   x11-libs/libXinerama
-   x11-libs/libXrandr
-"
-DEPEND="
-   ${RDEPEND}
-   virtual/pkgconfig
-   x11-base/xorg-proto
-"
-
-PATCHES=(
-   "${FILESDIR}"/${PN}-201003-desktop.patch
-   "${FILESDIR}"/${PN}-201003-pthread.patch
-)
-
-src_prepare() {
-   cmake_src_prepare
-   sed -i \
-   -e '/set(CFLAGS/d' \
-   -e '/set(LDFLAGS/s#)# 

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

2021-01-02 Thread Andreas K. Hüttel
commit: ff00739b3d036bfac751a0e1f130cd7d1758fc53
Author: Andreas K. Huettel  gentoo  org>
AuthorDate: Sun Jan  3 00:49:07 2021 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Sun Jan  3 00:54:31 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff00739b

media-gfx/fbida: Remove old

Bug: https://bugs.gentoo.org/706650
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Andreas K. Huettel  gentoo.org>

 media-gfx/fbida/Manifest |   2 -
 media-gfx/fbida/fbida-2.12.ebuild| 125 ---
 media-gfx/fbida/fbida-2.13-r1.ebuild | 121 -
 3 files changed, 248 deletions(-)

diff --git a/media-gfx/fbida/Manifest b/media-gfx/fbida/Manifest
index 905819e9f56..4fcf2f72351 100644
--- a/media-gfx/fbida/Manifest
+++ b/media-gfx/fbida/Manifest
@@ -1,4 +1,2 @@
-DIST fbida-2.12.tar.gz 294842 BLAKE2B 
f9de5957f9015e022868d2b14d0269951fccbe8f10b591b3b58758fb67232487aaaf2de23c8ee9b42a7ad9e645e3fed2ac1f05588c039ce9270f418b60b1a3da
 SHA512 
383eb766a98137f7252cd981d0e8c9a7382223705a43332f50990ea26763d4882ed1585e72fe9199528502d7f8f9de2e90718dbce71ee08d2181c74aa3e7e515
-DIST fbida-2.13.tar.gz 296020 BLAKE2B 
119be4103b53ab7e7d1791a22172e1311ced0db5e9c928faf22ab08dbe1670c91d30f7dafbf8873a9621c16a7902354f5e21e2a86d45c9572b30fe8e205bfc4d
 SHA512 
a316776f381fac6ec6a5d085ece7a42e8e34b2c0f5ae1cc58ad5b5736dc83d8f2e7776779716abfc0ae9c51baacdf911df6a0be610d2b7b2e3ce6d0c81e1fdc3
 DIST fbida-2.14.tar.gz 296826 BLAKE2B 
0015b426c5deaf72737a52bddb065e7d0cb804ea97157dded522061d8fabb5c632d5e66b1ef1b4e75b355537ef4f4e603f3a877e2ef92d1581eaa4791ab5be99
 SHA512 
8f3596ad8a22497880ac698d3b324e038ac5ccae7481fe4a902fc6e8bf43ba1bb3a96af8c7a3347bea86c1988f35674e2647901ac256bd4e8261d467a6a343ec
 DIST ida.png.bz2 11928 BLAKE2B 
8a1c89fc5adfb16c69f9591a299beb62c84d66960b586fbc819e53f904c90beef821ecf3539236563644c28e3ad3c7dbf861b140c820be649305a658b3613433
 SHA512 
cf3c1bc8d25fe75f10c0a0414b5c082348df2fa94864ec4537c36e0b357cf35b68e2eca205bbf48578a41c27317701aee621c6dd176e0bf3857c52f895d6bfd3

diff --git a/media-gfx/fbida/fbida-2.12.ebuild 
b/media-gfx/fbida/fbida-2.12.ebuild
deleted file mode 100644
index 80d37357377..000
--- a/media-gfx/fbida/fbida-2.12.ebuild
+++ /dev/null
@@ -1,125 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit eutils toolchain-funcs
-
-DESCRIPTION="Image viewers for the framebuffer console (fbi) and X11 (ida)"
-HOMEPAGE="https://www.kraxel.org/blog/linux/fbida/;
-SRC_URI="
-   https://www.kraxel.org/releases/${PN}/${P}.tar.gz
-   mirror://gentoo/ida.png.bz2
-"
-LICENSE="GPL-2 IJG"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm ~hppa ppc ppc64 sparc x86"
-IUSE="curl fbcon ghostscript +gif lirc +png scanner +tiff X +webp"
-REQUIRED_USE="
-   ghostscript? ( tiff )
-"
-
-CDEPEND="
-   !media-gfx/fbi
-   app-text/poppler
-   >=media-libs/fontconfig-2.2
-   >=media-libs/freetype-2.0
-   media-libs/libepoxy
-   media-libs/libexif
-   media-libs/mesa[X(+)]
-   virtual/jpeg:*
-   virtual/ttf-fonts
-   x11-libs/cairo[opengl]
-   x11-libs/libdrm
-   curl? ( net-misc/curl )
-   gif? ( media-libs/giflib:= )
-   lirc? ( app-misc/lirc )
-   png? ( media-libs/libpng:* )
-   scanner? ( media-gfx/sane-backends )
-   tiff? ( media-libs/tiff:* )
-   webp? ( media-libs/libwebp )
-   X? (
-   >=x11-libs/motif-2.3:0
-   x11-libs/libX11
-   x11-libs/libXpm
-   x11-libs/libXt
-   )
-"
-
-DEPEND="
-   ${CDEPEND}
-   X? ( x11-base/xorg-proto )
-"
-
-RDEPEND="
-   ${CDEPEND}
-   ghostscript? (
-   app-text/ghostscript-gpl
-   )
-"
-
-src_prepare() {
-   epatch \
-   "${FILESDIR}"/ida-desktop.patch \
-   "${FILESDIR}"/${PN}-2.10-giflib-4.2.patch \
-   "${FILESDIR}"/${PN}-2.10-fprintf-format.patch
-
-   tc-export CC CPP
-
-   # upstream omission?
-   echo ${PV} > VERSION
-}
-
-src_configure() {
-   # Let autoconf do its job and then fix things to build fbida
-   # according to our specifications
-   emake Make.config
-
-   gentoo_fbida() {
-   local useflag=${1}
-   local config=${2}
-
-   local option="no"
-   use ${useflag} && option="yes"
-
-   sed -i \
-   -e "s|HAVE_${config}.*|HAVE_${config} := ${option}|" \
-   "${S}/Make.config" || die
-   }
-
-   gentoo_fbida X MOTIF
-   gentoo_fbida curl LIBCURL
-   gentoo_fbida fbcon LINUX_FB_H
-   gentoo_fbida gif LIBUNGIF
-   gentoo_fbida lirc LIBLIRC
-   gentoo_fbida ghostscript LIBTIFF
-   gentoo_fbida png LIBPNG
-   gentoo_fbida scanner LIBSANE
-   gentoo_fbida tiff LIBTIFF
-   gentoo_fbida webp LIBWEBP
-}
-
-src_compile() {
-   

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

2021-01-02 Thread Andreas K. Hüttel
commit: 7fff4e2c5439bd5ce9ef4af7390c5da9837b1871
Author: Andreas K. Huettel  gentoo  org>
AuthorDate: Sun Jan  3 00:44:18 2021 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Sun Jan  3 00:54:27 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7fff4e2c

www-client/w3mmee: Remove old

Bug: https://bugs.gentoo.org/706604
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Andreas K. Huettel  gentoo.org>

 www-client/w3mmee/Manifest|   1 -
 www-client/w3mmee/w3mmee-0.3.2_p24-r10.ebuild | 168 --
 2 files changed, 169 deletions(-)

diff --git a/www-client/w3mmee/Manifest b/www-client/w3mmee/Manifest
index c939496a111..494f60ca6de 100644
--- a/www-client/w3mmee/Manifest
+++ b/www-client/w3mmee/Manifest
@@ -1,2 +1 @@
-DIST w3mmee-p24-22.tar.gz 690094 BLAKE2B 
9b779122a10f606fab8cfe9e3ffde7473f60ee65591de3a1eca241e563ced7c70260670da7c56c9eaf39010180733933eba039d743e723b0cc8c230ef8a31d81
 SHA512 
85d4d373a5a544f8c4fbc37e8344daaa5eae3ae007a0280c693aa8946c8cbf63f3fc92fb69c2597286921254e3234f29ee1b3f21e1c9d498b39a597a51e98761
 DIST w3mmee-p24-23.tar.gz 697342 BLAKE2B 
cdfd5752a29ee486ccb4cb174ac68aa2b93c818a088e28a8938ef308030b4baac69645e5adcf86361297f79b2473de483917f523bdd0cda0f6d0d93cc0755534
 SHA512 
fa74b9124e0790461ea7936411f89265c8a367326bf1bba7a5ea5f4abf748197e0926847f9860ec8d35e97f0e53bcdc69821fdd9d741fc8b18b5e11211aa3271

diff --git a/www-client/w3mmee/w3mmee-0.3.2_p24-r10.ebuild 
b/www-client/w3mmee/w3mmee-0.3.2_p24-r10.ebuild
deleted file mode 100644
index 6572d1840d4..000
--- a/www-client/w3mmee/w3mmee-0.3.2_p24-r10.ebuild
+++ /dev/null
@@ -1,168 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-inherit alternatives multilib toolchain-funcs
-
-MY_PV="${PV##*_}-22"
-MY_P="${PN}-${MY_PV}"
-
-DESCRIPTION="A variant of w3m with support for multiple character encodings"
-HOMEPAGE="http://pub.ks-and-ks.ne.jp/prog/w3mmee/;
-SRC_URI="http://pub.ks-and-ks.ne.jp/prog/pub/${MY_P}.tar.gz;
-
-SLOT="0"
-LICENSE="w3m"
-KEYWORDS="amd64 ppc x86"
-IUSE="gpm imlib libressl nls ssl xface"
-
-DEPEND=">=dev-libs/boehm-gc-7.2
-   dev-libs/libmoe
-   dev-lang/perl
-   sys-libs/ncurses:0=
-   sys-libs/zlib
-   imlib? (
-   media-libs/imlib
-   xface? ( media-libs/compface )
-   )
-   gpm? ( sys-libs/gpm )
-   nls? ( sys-devel/gettext )
-   ssl? (
-   !libressl? ( dev-libs/openssl:0= )
-   libressl? ( dev-libs/libressl:0= )
-   )"
-RDEPEND="${DEPEND}"
-S="${WORKDIR}/${MY_P}"
-
-PATCHES=(
-   "${FILESDIR}"/${PN}-boehm-gc.patch
-   "${FILESDIR}"/${PN}-gcc-4.4.patch
-   "${FILESDIR}"/${PN}-gcc-4.5.patch
-   "${FILESDIR}"/${PN}-glibc-2.14.patch
-   "${FILESDIR}"/${PN}-rc_name.patch
-   "${FILESDIR}"/${PN}-time.patch
-   "${FILESDIR}"/${PN}-tinfo.patch
-   "${FILESDIR}"/${PN}-w3mman.patch
-)
-DOCS=( ChangeLog NEWS{,.mee} README )
-HTML_DOCS=( 00INCOMPATIBLE.html )
-
-src_prepare() {
-   default
-
-   sed -i "s:/lib\([^a-z$]\):/$(get_libdir)\1:g" configure
-   sed -i "/^AR=/s:ar:$(tc-getAR):" XMakefile
-}
-
-src_configure() {
-   local myconf=(
-   -locale_dir=$(usex nls "${EPREFIX}/usr/share/locale" '(NONE)')
-   )
-   local myuse=(
-   display_code=E
-   system_code=E
-   use_ansi_color=y
-   use_cookie=y
-   use_history=y
-   use_mouse=$(usex gpm y n)
-   )
-
-   if use ssl; then
-   myconf+=(
-   --ssl-includedir="${EPREFIX}/usr/include/openssl"
-   --ssl-libdir="${EPREFIX}/usr/$(get_libdir)"
-   )
-   myuse+=(
-   use_digest_auth=y
-   use_ssl=y
-   use_ssl_verify=y
-   )
-   else
-   myuse+=( use_ssl=n )
-   fi
-   if use imlib; then
-   myuse+=(
-   use_image=y
-   use_w3mimg_fb=n
-   use_w3mimg_x11=y
-   use_xface=$(usex xface y n)
-   w3mimgdisplay_setuid=n
-   )
-   else
-   myuse+=( use_image=n )
-   fi
-
-   cat <<-EOF >> config.param
-   lang=MANY
-   accept_lang=en
-   EOF
-
-   env CC=$(tc-getCC) "${myuse[@]}" ./configure \
-   -nonstop \
-   -prefix="${EPREFIX}/usr" \
-   -suffix=mee \
-   -auxbindir="${EPREFIX}/usr/$(get_libdir)/${PN}" \
-   -libdir="${EPREFIX}/usr/$(get_libdir)/${PN}/cgi-bin" \
-   -helpdir="${EPREFIX}/usr/share/${PN}" \
-   -mandir="${EPREFIX}/usr/share/man" \
-   -sysconfdir="${EPREFIX}/etc/${PN}" \
-   -model=custom \
-   

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

2021-01-02 Thread Andreas K. Hüttel
commit: 1d20f4da5746de9c4004b2833ce489cb8ff2674b
Author: Andreas K. Huettel  gentoo  org>
AuthorDate: Sun Jan  3 00:54:13 2021 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Sun Jan  3 00:54:34 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d20f4da

net-misc/wakeonlan: Add slot op dependency on perl

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

 .../wakeonlan/{wakeonlan-0.41-r3.ebuild => wakeonlan-0.41-r4.ebuild}   | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/net-misc/wakeonlan/wakeonlan-0.41-r3.ebuild 
b/net-misc/wakeonlan/wakeonlan-0.41-r4.ebuild
similarity index 89%
rename from net-misc/wakeonlan/wakeonlan-0.41-r3.ebuild
rename to net-misc/wakeonlan/wakeonlan-0.41-r4.ebuild
index 6106c0a1011..34b627cabd7 100644
--- a/net-misc/wakeonlan/wakeonlan-0.41-r3.ebuild
+++ b/net-misc/wakeonlan/wakeonlan-0.41-r4.ebuild
@@ -1,8 +1,7 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-GENTOO_DEPEND_ON_PERL=noslotop
 inherit perl-module
 
 DESCRIPTION="Client for Wake-On-LAN"



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

2021-01-02 Thread Mike Pagano
commit: 3a7f82629aa69d76e3780ce1ffd68902f6561fd6
Author: Mike Pagano  gentoo  org>
AuthorDate: Sun Jan  3 00:21:50 2021 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Sun Jan  3 00:21:50 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a7f8262

sys-kernel/gentoo-sources: Clean-up old kernels

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Mike Pagano  gentoo.org>

 sys-kernel/gentoo-sources/Manifest | 15 ---
 .../gentoo-sources/gentoo-sources-5.10.0.ebuild| 29 --
 .../gentoo-sources/gentoo-sources-5.10.1-r1.ebuild | 29 --
 .../gentoo-sources/gentoo-sources-5.10.1.ebuild| 29 --
 .../gentoo-sources/gentoo-sources-5.4.82.ebuild| 28 -
 .../gentoo-sources/gentoo-sources-5.4.83.ebuild| 28 -
 6 files changed, 158 deletions(-)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index 75aa3cdbecf..6f92d5a743e 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -46,15 +46,6 @@ DIST genpatches-4.9-252.extras.tar.xz 3340 BLAKE2B 
b95706a8fa234bac2c42aa71f820a
 DIST genpatches-4.9-253.base.tar.xz 4470972 BLAKE2B 
0b4c68a7137de55b82bb6bb8ca3b296011d28a42f8b60ff144e64bbb3b7c034eb248ccfff7f645780efd2ded941f35163c6ed438bb78c5630d1b04d24027ad9f
 SHA512 
f7986fe77b06bd9db6eded25b5d366b433c3f2790b093ddadd96fa65ddb4a35f89ba17875082a3b882ca866c65e1e2fa3b378482e5d25f68f0f606ce9e0fc936
 DIST genpatches-4.9-253.experimental.tar.xz 106384 BLAKE2B 
1f62c0f9e8bf1fef8a21776593b10894762347ff8e39c890411389d3b032d482a85475becfb32a0aa6b5c3a06742ee2ae30fe022ac9c36e2d3e9fc3b0d1577bd
 SHA512 
062e62aae4bde7f2f61c0b813dbcf1a53436bc96e31ffbda34c7eca5f4e0a73f672ff5ee04e85b6865368ab4616611a953c879e4c279f56cf9246e6841b941e9
 DIST genpatches-4.9-253.extras.tar.xz 3340 BLAKE2B 
50f8fb3721e768a56d673249da6cd93c1e5e119e3fd501652469df8194dcbf8edd132119aec22fde8f15d5ab9d13d41f293c38d4edc48ca11d2071e8ce7ef0c6
 SHA512 
3299dc0523afaf56491e1bcc5d3116ca7e376292ab8a83f38887f9d6a734177098b201451d6150087bceeffb2577f33d6e893a6c7e51f3ef2bd99ce587c3cf8b
-DIST genpatches-5.10-1.base.tar.xz 3840 BLAKE2B 
08ac1f83dc9a1cfc1d4cf0a3a5ab4c9d4686a80348247ec7cd1da6e49db92d6932a1864113f2631d5528a4ba732945b2afe73d03061bd3c532b3d1e4d9571999
 SHA512 
04356093c4df6a7ee0876b89be5b90f8bc90c920628e5fe69b5787ce82e003be05eaac142310f10f32d0549a6676af846734ae4ac188c2b96c2eca2cb0a6f4b0
-DIST genpatches-5.10-1.experimental.tar.xz 6100 BLAKE2B 
b3342fc8c9071e5fbb70a6bcd5fca15416c3fc08b0686582a56dbe213e6ec3a95b48df2f0bfa5bcf6ab00ee90ea529b630f77058abed45ea9dfad8c66dbcde67
 SHA512 
a5eb064bc1dd5947b957afc8db8b0bba30b0097c35b8e592b6fc38e9323cf1b9c11d17346fbae4dc38d7205fd261542c88d16f14d71f9c1c8cca41fe1b4da09d
-DIST genpatches-5.10-1.extras.tar.xz 1768 BLAKE2B 
e99d5d2137d5752845ba8284a0dd57620851c3620603e871973af5841b54e9bfdde92ea2408ddedb55355f2c954c80641b06098060043916d2483e10cfb8293a
 SHA512 
0034e5ab57cccb2e969a3b9e1f674614ca853779c552c37be9c5afb0a37112bf8f2c30e1b21832d56320c70c1d622081b60369c6a86fa737a23c3ed953267453
-DIST genpatches-5.10-2.base.tar.xz 4604 BLAKE2B 
ab25c50b6fa200f303b2e9f6f203730da460feea7b473d8be794c833c180239b0cb59abf115a58c4a6c671c30297cdc3eda86aeeb47451395d39571d45bd9033
 SHA512 
550c34ae1c8434b06d07108f126d6fa386b065d19439226c375623b5f37aa36aec642f318f82148dde168fd85e154ceaeb35d1b88271e62a20675752f6b33c60
-DIST genpatches-5.10-2.experimental.tar.xz 6092 BLAKE2B 
395d889688bf4c1391aa1a1fea98808e3471163e547d82cbff6804b847e7d828be0019a66e92a50d83a753749ac1669f0da980abf22155089d7d1fb4da3075d3
 SHA512 
31af3ec09131df058b9e2a7f8de5f85a7c0e881a2087334a14355549c7e1d85ed0e12200d7090d6aea2b6034112331812fe87ab0574554b4e2af7ec9d7cb
-DIST genpatches-5.10-2.extras.tar.xz 1772 BLAKE2B 
f4bc68ab7c83508265848d9782ce19046a5870c428a9b2e99c473c7c1e6451bdbe2e22152e5ec81812502547b6282e5286dcc2da591481249d75ba69985300a2
 SHA512 
ab99eae22f08f5894b5b027440e715558da9fe80542f824a260bce9951dda6059dca705a4b29cf3b5e295726eef9c1942a5d114259702733d7f6f6b68f828020
-DIST genpatches-5.10-3.base.tar.xz 5524 BLAKE2B 
3811736bbb95e9f4b9745cc0f02bd1c183bde82e4c10924a72cb1b4a0fdd3703cdc591c2e8fe266c3ffd29ef65258bf57ac314318c01d73dd08a17e449108c60
 SHA512 
50d8e1c26600657f76a4aefc4cbb7aa7db1b9265db77344769ac33bc988d692d84f4d7d7b9055ed2278c6e8c195902b6561ccfede741c7a77c42cfec9dd3ed56
-DIST genpatches-5.10-3.experimental.tar.xz 6096 BLAKE2B 
054eaaf45a25a77cb0a369acfbc0bf0aa14f8d0765b6e70acc6ea73a0709297594eae9e7c0456445a7640e02644318ee54cac3c92c017a950a62ecbf53ea393c
 SHA512 
7313eaf13de80f7f2a0df88d23d0b6991ba2628058cace5807d2dcbf3aabf937233873c4837dd5e5d8e5e5299f6be4dffdbb81a6c2eeb568a5b57375c13e5db7
-DIST genpatches-5.10-3.extras.tar.xz 1772 BLAKE2B 
a5453e4e9187373c7dc1b2e77a7877a53eaf3c0cfb578b199d93715dae78cb47c72e644e4de50e0837712b8a61ef151b4f6cd61a7d85de306bbe8d5dfdda4af6
 SHA512 

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

2021-01-02 Thread Mike Pagano
commit: d18feb080bc8a7a86991ffde7af1effa283d921e
Author: Mike Pagano  gentoo  org>
AuthorDate: Sat Jan  2 23:55:45 2021 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Sat Jan  2 23:55:45 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d18feb08

dev-util/idea-community: Remove test Echos

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Mike Pagano  gentoo.org>

 dev-util/idea-community/idea-community-2020.3.1.203.6682.168.ebuild | 5 -
 1 file changed, 5 deletions(-)

diff --git 
a/dev-util/idea-community/idea-community-2020.3.1.203.6682.168.ebuild 
b/dev-util/idea-community/idea-community-2020.3.1.203.6682.168.ebuild
index 1199297e91d..26a367b3725 100644
--- a/dev-util/idea-community/idea-community-2020.3.1.203.6682.168.ebuild
+++ b/dev-util/idea-community/idea-community-2020.3.1.203.6682.168.ebuild
@@ -13,9 +13,6 @@ MY_PN="idea"
 JRE11_BASE="11_0_8"
 JRE11_VER="1098.1"
 
-echo "PV_String IS ${PV_STRING}"
-echo "MY_PN S ${MY_PN}"
-
 # distinguish settings for official stable releases and EAP-version releases
 if [[ "$(ver_cut 7)"x = "prex" ]]
 then
@@ -29,8 +26,6 @@ else
amd64? ( 
https://bintray.com/jetbrains/intellij-jbr/download_file?file_path=jbr-${JRE11_BASE}-linux-x64-b${JRE11_VER}.tar.gz
 -> jbr-${JRE11_BASE}-linux-x64-b${JRE11_VER}.tar.gz )"
 fi
 
-echo "SRC_URI is ${SRC_URI}"
-
 DESCRIPTION="A complete toolset for web, mobile and enterprise development"
 HOMEPAGE="https://www.jetbrains.com/idea;
 



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

2021-01-02 Thread Mike Pagano
commit: 4583173d1d3c9d9c954d80609326c63c4f33f0b3
Author: Mike Pagano  gentoo  org>
AuthorDate: Sat Jan  2 23:55:00 2021 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Sat Jan  2 23:55:00 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4583173d

dev-util/idea-community: Version bump

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Mike Pagano  gentoo.org>

 dev-util/idea-community/Manifest   |   1 +
 .../idea-community-2020.3.1.203.6682.168.ebuild| 143 +
 2 files changed, 144 insertions(+)

diff --git a/dev-util/idea-community/Manifest b/dev-util/idea-community/Manifest
index 43064fc9e25..73b010497c0 100644
--- a/dev-util/idea-community/Manifest
+++ b/dev-util/idea-community/Manifest
@@ -1,2 +1,3 @@
 DIST ideaIC-3.0.203.5981.155.tar.gz 582023182 BLAKE2B 
671fbba0c2173e3780a99d0d3b106af75c4ef6df4198ced3653c1b74a7bbb055a29b1fc31eb89823bfd56e6737c7788f78a90fe7ef46e52ab410c0dff18868e9
 SHA512 
35d569c5e13ec620d0a476cc52c005d29ea3c7c3c1ab0614a1a73255309635c84ee00820c50584ca19af634165138c77d8d712cfe0d367b9525956ad33aafe77
+DIST ideaIC-3.1.203.6682.168.tar.gz 577542631 BLAKE2B 
d47d017b76fa9106a55805b558bd49d6d45dd216ac28151f03cc2a7f3a751707b62fa49623bb04b426d90cfd1cce4e04b2490bb91ec01dfeccdf4a80f1694f7e
 SHA512 
71849f9440c34359a23af1f4735c3b0ac6378f6ab8ddf5799ad7e26036dc87b4abbc234043bd368a7698daf91f83cf989539054db7e1fb9ea95ebf7d756ac068
 DIST jbr-11_0_8-linux-x64-b1098.1.tar.gz 191689225 BLAKE2B 
0da0f0e834709c89820f2e7e1c447dc33ea1c59c7dfb573aa47bc205f7920ccf485454f79931d42d4e6eb4de1017589bb908808d6a80cc586659757abc9958d3
 SHA512 
a455d8bd3332622592186cd7ae3995a9148a47717a81c274497f5408f1e89ef637c7478321b4ccd5dbe97c2e246a16ac8956c5ce475f8a4156232647f0ea7737

diff --git 
a/dev-util/idea-community/idea-community-2020.3.1.203.6682.168.ebuild 
b/dev-util/idea-community/idea-community-2020.3.1.203.6682.168.ebuild
new file mode 100644
index 000..1199297e91d
--- /dev/null
+++ b/dev-util/idea-community/idea-community-2020.3.1.203.6682.168.ebuild
@@ -0,0 +1,143 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit eutils desktop
+
+SLOT="0"
+PV_STRING="$(ver_cut 2-6)"
+MY_PV="$(ver_cut 1-3)"
+MY_PN="idea"
+# Using the most recent Jetbrains Runtime binaries available at the time of 
writing
+# ( jre 11.0.8 build 1098.1  ) 
+JRE11_BASE="11_0_8"
+JRE11_VER="1098.1"
+
+echo "PV_String IS ${PV_STRING}"
+echo "MY_PN S ${MY_PN}"
+
+# distinguish settings for official stable releases and EAP-version releases
+if [[ "$(ver_cut 7)"x = "prex" ]]
+then
+   # upstream EAP
+   KEYWORDS="~arm64"
+   
SRC_URI="https://download.jetbrains.com/idea/${MY_PN}IC-${PV_STRING}.tar.gz;
+else
+   # upstream stable
+   KEYWORDS="~amd64 ~arm64"
+   
SRC_URI="https://download.jetbrains.com/idea/${MY_PN}IC-${MY_PV}-no-jbr.tar.gz 
-> ${MY_PN}IC-${PV_STRING}.tar.gz
+   amd64? ( 
https://bintray.com/jetbrains/intellij-jbr/download_file?file_path=jbr-${JRE11_BASE}-linux-x64-b${JRE11_VER}.tar.gz
 -> jbr-${JRE11_BASE}-linux-x64-b${JRE11_VER}.tar.gz )"
+fi
+
+echo "SRC_URI is ${SRC_URI}"
+
+DESCRIPTION="A complete toolset for web, mobile and enterprise development"
+HOMEPAGE="https://www.jetbrains.com/idea;
+
+LICENSE="Apache-2.0 BSD BSD-2 CC0-1.0 CC-BY-2.5 CDDL-1.1
+   codehaus-classworlds CPL-1.0 EPL-1.0 EPL-2.0
+   GPL-2 GPL-2-with-classpath-exception ISC
+   JDOM LGPL-2.1 LGPL-2.1+ LGPL-3-with-linking-exception MIT
+   MPL-1.0 MPL-1.1 OFL ZLIB"
+
+DEPEND="!dev-util/${PN}:14
+   !dev-util/${PN}:15
+   || (
+   dev-java/openjdk:11
+   dev-java/openjdk-bin:11
+   )"
+RDEPEND="${DEPEND}
+   dev-java/jansi-native
+   dev-libs/libdbusmenu
+   =dev-util/lldb-10*
+   || (
+   dev-java/openjdk:11
+   dev-java/openjdk-bin:11
+   )"
+BDEPEND="dev-util/patchelf"
+RESTRICT="splitdebug"
+S="${WORKDIR}/${MY_PN}-IC-$(ver_cut 4-6)"
+
+QA_PREBUILT="opt/${PN}-${MY_PV}/*"
+
+PATCHES=(
+   "${FILESDIR}/${PN}-jdk.patch"
+)
+
+src_unpack() {
+   default_src_unpack
+   mkdir jre64 && cd jre64 && unpack 
jbr-${JRE11_BASE}-linux-x64-b${JRE11_VER}.tar.gz
+}
+
+src_prepare() {
+
+   default_src_prepare
+
+   if use amd64; then
+   JRE_DIR=jre64
+   else
+   JRE_DIR=jre
+   fi
+
+   PLUGIN_DIR="${S}/${JRE_DIR}/lib/"
+
+   rm -vf ${PLUGIN_DIR}/libavplugin*
+   rm -vf "${S}"/plugins/maven/lib/maven3/lib/jansi-native/*/libjansi*
+   rm -vrf "${S}"/lib/pty4j-native/linux/ppc64le
+   rm -vf "${S}"/bin/libdbm64*
+   rm -vf "${S}"/lib/pty4j-native/linux/mips64el/libpty.so
+
+   if [[ -d "${S}"/"${JRE_DIR}" ]]; then
+   for file in "${PLUGIN_DIR}"/{libfxplugins.so,libjfxmedia.so}
+   do
+   if [[ -f "$file" ]]; then
+ patchelf 

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

2021-01-02 Thread Mike Gilbert
commit: ac07a890dd55813eee120b328a17ee413e5c3489
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sat Jan  2 23:37:39 2021 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sat Jan  2 23:48:26 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac07a890

systemd.eclass: remove SYSROOT from pkg-config output

When cross-compiling, users will typically have
PKG_CONFIG_SYSROOT=${SYSROOT} defined via pkg-config wrapper.

When PKG_CONFIG_SYSROOT is set, all paths included in pkg-config
output get prefixed with this value.

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

 eclass/systemd.eclass | 1 +
 1 file changed, 1 insertion(+)

diff --git a/eclass/systemd.eclass b/eclass/systemd.eclass
index 81065a0af79..f6d1fa2d92d 100644
--- a/eclass/systemd.eclass
+++ b/eclass/systemd.eclass
@@ -50,6 +50,7 @@ _systemd_get_dir() {
 
if $(tc-getPKG_CONFIG) --exists systemd; then
d=$($(tc-getPKG_CONFIG) --variable="${variable}" systemd) || die
+   d=${d#${SYSROOT}}
d=${d#${EPREFIX}}
else
d=${fallback}



[gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmbiff/, x11-plugins/wmbiff/files/

2021-01-02 Thread Bernard Cafarelli
commit: 2d0894ebcc2735be955d70f14f02d37d93043603
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Sat Jan  2 23:29:35 2021 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Sat Jan  2 23:32:20 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d0894eb

x11-plugins/wmbiff: do not call ar directly

Closes: https://bugs.gentoo.org/726284
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Bernard Cafarelli  gentoo.org>

 x11-plugins/wmbiff/files/wmbiff-0.4.36-ar.patch | 11 +++
 x11-plugins/wmbiff/wmbiff-0.4.36.ebuild |  9 -
 2 files changed, 19 insertions(+), 1 deletion(-)

diff --git a/x11-plugins/wmbiff/files/wmbiff-0.4.36-ar.patch 
b/x11-plugins/wmbiff/files/wmbiff-0.4.36-ar.patch
new file mode 100644
index 000..da1f194dd4c
--- /dev/null
+++ b/x11-plugins/wmbiff/files/wmbiff-0.4.36-ar.patch
@@ -0,0 +1,11 @@
+diff -Naur wmbiff-0.4.36.orig/configure.ac wmbiff-0.4.36/configure.ac
+--- wmbiff-0.4.36.orig/configure.ac2020-04-17 19:30:26.0 +0200
 wmbiff-0.4.36/configure.ac 2021-01-03 00:27:57.522698494 +0100
+@@ -13,6 +13,7 @@
+ AH_TEMPLATE([VERSION], [wmbiff's release version])
+ AC_SUBST(VERSION)
+ 
++AM_PROG_AR
+ AC_PROG_INSTALL
+ AC_PROG_CC
+ AC_PROG_RANLIB

diff --git a/x11-plugins/wmbiff/wmbiff-0.4.36.ebuild 
b/x11-plugins/wmbiff/wmbiff-0.4.36.ebuild
index 9bc7ddb28d8..7f44590d096 100644
--- a/x11-plugins/wmbiff/wmbiff-0.4.36.ebuild
+++ b/x11-plugins/wmbiff/wmbiff-0.4.36.ebuild
@@ -1,7 +1,8 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
+inherit autotools
 
 DESCRIPTION="WMBiff is a dock applet for WindowMaker which can monitor up to 5 
mailboxes"
 HOMEPAGE="https://www.dockapps.net/wmbiff;
@@ -26,8 +27,14 @@ BDEPEND="virtual/pkgconfig"
 DOCS="ChangeLog FAQ NEWS README TODO wmbiff/sample.wmbiffrc"
 PATCHES=(
"${FILESDIR}"/${PN}-0.4.27-invalid-strncpy.patch
+   "${FILESDIR}"/${P}-ar.patch
)
 
+src_prepare() {
+   default
+   eautoreconf
+}
+
 src_configure() {
econf $(use_enable crypt crypto)
 }



[gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmsystemtray/, x11-plugins/wmsystemtray/files/

2021-01-02 Thread Bernard Cafarelli
commit: a96a257e0e3856f454539f264fecbecf664ad06b
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Sat Jan  2 23:24:48 2021 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Sat Jan  2 23:32:19 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a96a257e

x11-plugins/wmsystemtray: do not call ar directly

Closes: https://bugs.gentoo.org/726224
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Bernard Cafarelli  gentoo.org>

 x11-plugins/wmsystemtray/files/wmsystemtray-1.4-ar.patch | 11 +++
 x11-plugins/wmsystemtray/wmsystemtray-1.4-r2.ebuild  | 10 +-
 2 files changed, 20 insertions(+), 1 deletion(-)

diff --git a/x11-plugins/wmsystemtray/files/wmsystemtray-1.4-ar.patch 
b/x11-plugins/wmsystemtray/files/wmsystemtray-1.4-ar.patch
new file mode 100644
index 000..785893a989f
--- /dev/null
+++ b/x11-plugins/wmsystemtray/files/wmsystemtray-1.4-ar.patch
@@ -0,0 +1,11 @@
+diff -Naur wmsystemtray-1.4.orig/configure.ac wmsystemtray-1.4/configure.ac
+--- wmsystemtray-1.4.orig/configure.ac 2014-02-23 03:14:09.0 +0100
 wmsystemtray-1.4/configure.ac  2021-01-03 00:23:12.004713692 +0100
+@@ -9,6 +9,7 @@
+ AC_SUBST(VERSION)
+ 
+ # Checks for programs.
++AM_PROG_AR
+ AC_PROG_AWK
+ AC_PROG_CC
+ AC_PROG_CC_STDC

diff --git a/x11-plugins/wmsystemtray/wmsystemtray-1.4-r2.ebuild 
b/x11-plugins/wmsystemtray/wmsystemtray-1.4-r2.ebuild
index 568d2c1936e..47d0230996a 100644
--- a/x11-plugins/wmsystemtray/wmsystemtray-1.4-r2.ebuild
+++ b/x11-plugins/wmsystemtray/wmsystemtray-1.4-r2.ebuild
@@ -1,7 +1,8 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
+inherit autotools
 
 DESCRIPTION="a system tray dockapp with the ability to display more than just 
four tray icons"
 HOMEPAGE="https://sourceforge.net/projects/wmsystemtray/;
@@ -16,3 +17,10 @@ DEPEND="x11-libs/libXext
x11-libs/libXmu
x11-libs/libXpm"
 RDEPEND="${DEPEND}"
+
+PATCHES=( "${FILESDIR}"/${P}-ar.patch )
+
+src_prepare() {
+   default
+   eautoreconf
+}



[gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmpower/files/, x11-plugins/wmpower/

2021-01-02 Thread Bernard Cafarelli
commit: 3566259c569ed3507de43419068d7966157771c3
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Sat Jan  2 23:31:43 2021 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Sat Jan  2 23:32:20 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3566259c

x11-plugins/wmpower: do not call ar directly

Closes: https://bugs.gentoo.org/726254
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Bernard Cafarelli  gentoo.org>

 x11-plugins/wmpower/files/wmpower-0.4.3-ar.patch | 11 +++
 x11-plugins/wmpower/wmpower-0.4.3-r1.ebuild  | 13 +++--
 2 files changed, 22 insertions(+), 2 deletions(-)

diff --git a/x11-plugins/wmpower/files/wmpower-0.4.3-ar.patch 
b/x11-plugins/wmpower/files/wmpower-0.4.3-ar.patch
new file mode 100644
index 000..b59fcf6bbe3
--- /dev/null
+++ b/x11-plugins/wmpower/files/wmpower-0.4.3-ar.patch
@@ -0,0 +1,11 @@
+diff -Naur wmpower-0.4.3.orig/configure.in wmpower-0.4.3/configure.in
+--- wmpower-0.4.3.orig/configure.in2008-11-25 11:05:58.0 +0100
 wmpower-0.4.3/configure.in 2021-01-03 00:30:15.977692665 +0100
+@@ -3,6 +3,7 @@
+ AC_CONFIG_SRCDIR(src/wmpower.c)
+ AM_INIT_AUTOMAKE([1.7 check-news dist-bzip2])
+ 
++AM_PROG_AR
+ AC_GNU_SOURCE
+ AC_PROG_INSTALL
+ AC_PROG_CC

diff --git a/x11-plugins/wmpower/wmpower-0.4.3-r1.ebuild 
b/x11-plugins/wmpower/wmpower-0.4.3-r1.ebuild
index 0f828dab580..977f02854a3 100644
--- a/x11-plugins/wmpower/wmpower-0.4.3-r1.ebuild
+++ b/x11-plugins/wmpower/wmpower-0.4.3-r1.ebuild
@@ -1,7 +1,8 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
+inherit autotools
 
 DESCRIPTION="a dockapp to get/set power management status for laptops (APM, 
ACPI
 and CPUfreq)"
@@ -18,10 +19,18 @@ RDEPEND="x11-libs/libX11
 DEPEND="${RDEPEND}
x11-base/xorg-proto"
 
-PATCHES=( "${FILESDIR}"/${P}-gcc-10.patch )
+PATCHES=(
+   "${FILESDIR}"/${P}-gcc-10.patch
+   "${FILESDIR}"/${P}-ar.patch
+   )
 
 DOCS=( AUTHORS BUGS ChangeLog LEGGIMI NEWS README README.compal THANKS TODO )
 
+src_prepare() {
+   default
+   eautoreconf
+}
+
 src_configure() {
# override wmpower self-calculated cflags
econf MY_CFLAGS="${CFLAGS}"



[gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmpasman/, x11-plugins/wmpasman/files/

2021-01-02 Thread Bernard Cafarelli
commit: e69b37d280ac621a146d272f811907c2062bcbce
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Sat Jan  2 23:20:34 2021 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Sat Jan  2 23:32:18 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e69b37d2

x11-plugins/wmpasman: do not call ar directly

Closes: https://bugs.gentoo.org/759760
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Bernard Cafarelli  gentoo.org>

 x11-plugins/wmpasman/files/wmpasman-2.2-ar.patch | 11 +++
 x11-plugins/wmpasman/wmpasman-2.2.ebuild | 10 +-
 2 files changed, 20 insertions(+), 1 deletion(-)

diff --git a/x11-plugins/wmpasman/files/wmpasman-2.2-ar.patch 
b/x11-plugins/wmpasman/files/wmpasman-2.2-ar.patch
new file mode 100644
index 000..8244fadd7c5
--- /dev/null
+++ b/x11-plugins/wmpasman/files/wmpasman-2.2-ar.patch
@@ -0,0 +1,11 @@
+diff -Naur wmpasman-2.2.orig/configure.ac wmpasman-2.2/configure.ac
+--- wmpasman-2.2.orig/configure.ac 2018-12-16 17:39:47.0 +0100
 wmpasman-2.2/configure.ac  2021-01-03 00:17:27.934691093 +0100
+@@ -9,6 +9,7 @@
+ AC_SUBST(VERSION)
+ 
+ # Checks for programs.
++AM_PROG_AR
+ AC_PROG_AWK
+ AC_PROG_CC
+ AC_PROG_CC_STDC

diff --git a/x11-plugins/wmpasman/wmpasman-2.2.ebuild 
b/x11-plugins/wmpasman/wmpasman-2.2.ebuild
index fea3eb77032..04ba57ef095 100644
--- a/x11-plugins/wmpasman/wmpasman-2.2.ebuild
+++ b/x11-plugins/wmpasman/wmpasman-2.2.ebuild
@@ -1,7 +1,8 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
+inherit autotools
 
 DESCRIPTION="Password storage/retrieval in a dockapp"
 HOMEPAGE="https://sourceforge.net/projects/wmpasman/;
@@ -18,3 +19,10 @@ DEPEND="${RDEPEND}
virtual/pkgconfig"
 
 DOCS="ChangeLog WARNINGS"
+
+PATCHES=( "${FILESDIR}"/${P}-ar.patch )
+
+src_prepare() {
+   default
+   eautoreconf
+}



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

2021-01-02 Thread Bernard Cafarelli
commit: 5c0943933f9e5a6875b801c2b9b3fd81585023c4
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Sat Jan  2 23:27:09 2021 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Sat Jan  2 23:32:19 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c094393

x11-plugins/wmweather+: do not call ar directly

Closes: https://bugs.gentoo.org/726248
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Bernard Cafarelli  gentoo.org>

 x11-plugins/wmweather+/files/wmweather+-2.18-ar.patch | 11 +++
 x11-plugins/wmweather+/wmweather+-2.18.ebuild | 10 +-
 2 files changed, 20 insertions(+), 1 deletion(-)

diff --git a/x11-plugins/wmweather+/files/wmweather+-2.18-ar.patch 
b/x11-plugins/wmweather+/files/wmweather+-2.18-ar.patch
new file mode 100644
index 000..f87fdfa0ef0
--- /dev/null
+++ b/x11-plugins/wmweather+/files/wmweather+-2.18-ar.patch
@@ -0,0 +1,11 @@
+diff -Naur wmweather+-2.18.orig/configure.ac wmweather+-2.18/configure.ac
+--- wmweather+-2.18.orig/configure.ac  2020-04-24 20:31:43.0 +0200
 wmweather+-2.18/configure.ac   2021-01-03 00:25:30.443705781 +0100
+@@ -18,6 +18,7 @@
+ AC_SUBST(WMGENERAL_GUI)
+ 
+ # Checks for programs.
++AM_PROG_AR
+ AC_PROG_AWK
+ AC_PROG_CC
+ AC_PROG_CC_STDC

diff --git a/x11-plugins/wmweather+/wmweather+-2.18.ebuild 
b/x11-plugins/wmweather+/wmweather+-2.18.ebuild
index 01b450a84cc..7dffde689df 100644
--- a/x11-plugins/wmweather+/wmweather+-2.18.ebuild
+++ b/x11-plugins/wmweather+/wmweather+-2.18.ebuild
@@ -1,7 +1,8 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
+inherit autotools
 
 DESCRIPTION="A dockapp for displaying data collected from METAR, AVN, ETA, and 
MRF forecasts"
 HOMEPAGE="https://www.sourceforge.net/projects/wmweatherplus/;
@@ -19,3 +20,10 @@ DEPEND="dev-libs/libpcre
x11-libs/libX11
x11-wm/windowmaker"
 RDEPEND="${DEPEND}"
+
+PATCHES=( "${FILESDIR}"/${P}-ar.patch )
+
+src_prepare() {
+   default
+   eautoreconf
+}



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

2021-01-02 Thread Michał Górny
commit: c7c99a87b5926bae9a1757c52c96a9c376883d22
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Jan  2 23:24:47 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Jan  2 23:24:47 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7c99a87

dev-python/pillow: Bump to 8.1.0

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

 dev-python/pillow/Manifest|  1 +
 dev-python/pillow/pillow-8.1.0.ebuild | 98 +++
 2 files changed, 99 insertions(+)

diff --git a/dev-python/pillow/Manifest b/dev-python/pillow/Manifest
index 235ce1b38d3..d179222e844 100644
--- a/dev-python/pillow/Manifest
+++ b/dev-python/pillow/Manifest
@@ -1,3 +1,4 @@
 DIST pillow-7.0.0.tar.gz 37880130 BLAKE2B 
be940cbdced884c33f2b3979be113b1bc8974814c9532fe80203395184f90eccba1cd9a5017fec1f0c30a21ff06abc46560d5c6d67938dbf640f2e8e08b7e554
 SHA512 
187173a525d4f3f01b4898633263b53a311f337aa7b159c64f79ba8c7006fd44798a058e7cc5d8f1116bad008e4142ff303456692329fe73b0e115ef5c225d73
 DIST pillow-7.2.0.tar.gz 39125407 BLAKE2B 
f49015922c34473590740c9fa63435f85f9a517b3295abd2e758941b95162cef0fb1fa2a0e6ee0ac86323709ee3af02888f6e029a1905f13698e82c1f38d5d94
 SHA512 
ac9c7c8f445b3f67f51bea13fad118d1612c45272c26d33bec286f3c2e198912b934378c4bf986b409aaa2a83d92ff176ee4d25f28701d61746c9cb86d0f412b
 DIST pillow-8.0.1.tar.gz 44614653 BLAKE2B 
0f8ec178e92a57a55d575fac61779d39e79ff18032a02ad93aa6eca1211436342944b1a5bbd29979b52f0e2df756936ade4bf637ac3c153b5dda5838b58087ac
 SHA512 
41b4ea786990c834f77ad06b64f465bc8f3a65911cf14bb05f452316fdf504e5e49b2bb50a9346f207187e79f83c5b6d310d703d1588f678b606584b1f27ce6a
+DIST pillow-8.1.0.tar.gz 44929704 BLAKE2B 
6b8100f26a746c625851521d7aa3696c4de30b05d2debc07cfcc038c1bc1e73ab1136676d22fccdf17b8d0ecfeb21479168580e5f5a93488c50cbaf1c6533d79
 SHA512 
1014271d29e98c465e6882ed3f2f915f8955f5ada2a762c671a1f79389b25576ead2d144c6eaf42b4777f14438d15979d78d34dc32d984fd7defb53f0d209957

diff --git a/dev-python/pillow/pillow-8.1.0.ebuild 
b/dev-python/pillow/pillow-8.1.0.ebuild
new file mode 100644
index 000..bae14836838
--- /dev/null
+++ b/dev-python/pillow/pillow-8.1.0.ebuild
@@ -0,0 +1,98 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6..9} pypy3 )
+PYTHON_REQ_USE='tk?,threads(+)'
+
+inherit distutils-r1 toolchain-funcs virtualx
+
+MY_PN=Pillow
+MY_P=${MY_PN}-${PV}
+
+DESCRIPTION="Python Imaging Library (fork)"
+HOMEPAGE="https://python-pillow.org/;
+SRC_URI="https://github.com/python-pillow/Pillow/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+S="${WORKDIR}/${MY_P}"
+
+LICENSE="HPND"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux"
+IUSE="examples imagequant jpeg jpeg2k lcms test tiff tk truetype webp xcb zlib"
+REQUIRED_USE="test? ( jpeg tiff )"
+RESTRICT="!test? ( test )"
+
+DEPEND="
+   imagequant? ( media-gfx/libimagequant:0 )
+   jpeg? ( virtual/jpeg:0 )
+   jpeg2k? ( media-libs/openjpeg:2= )
+   lcms? ( media-libs/lcms:2= )
+   tiff? ( media-libs/tiff:0=[jpeg,zlib] )
+   truetype? ( media-libs/freetype:2= )
+   webp? ( media-libs/libwebp:0= )
+   xcb? ( x11-libs/libxcb )
+   zlib? ( sys-libs/zlib:0= )"
+RDEPEND="${DEPEND}
+   dev-python/olefile[${PYTHON_USEDEP}]"
+BDEPEND="
+   test? (
+   ${RDEPEND}
+   dev-python/pytest[${PYTHON_USEDEP}]
+   media-gfx/imagemagick[png]
+   )
+"
+
+python_configure_all() {
+   # It's important that these flags are also passed during the install 
phase
+   # as well. Make sure of that if you change the lines below. See bug 
661308.
+   mydistutilsargs=(
+   build_ext
+   --disable-platform-guessing
+   $(use_enable truetype freetype)
+   $(use_enable jpeg)
+   $(use_enable jpeg2k jpeg2000)
+   $(use_enable lcms)
+   $(use_enable tiff)
+   $(use_enable imagequant)
+   $(use_enable webp)
+   $(use_enable webp webpmux)
+   $(use_enable xcb)
+   $(use_enable zlib)
+   )
+
+   # setup.py sucks at adding the right toolchain paths but it does
+   # accept additional ones from INCLUDE and LIB so set these. You
+   # wouldn't normally need these at all as the toolchain should look
+   # here anyway but this setup.py does stupid things.
+   export \
+   INCLUDE=${ESYSROOT}/usr/include \
+   LIB=${ESYSROOT}/usr/$(get_libdir)
+
+   # We have patched in this env var.
+   tc-export PKG_CONFIG
+}
+
+src_test() {
+   virtx distutils-r1_src_test
+}
+
+python_test() {
+   "${EPYTHON}" selftest.py --installed || die "selftest failed with 
${EPYTHON}"
+   # no:relaxed: pytest-relaxed plugin make our tests fail. deactivate if 
installed
+   pytest -vv -p no:relaxed || die "Tests 

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

2021-01-02 Thread Michał Górny
commit: ddfbf0d142b20161ffb0e78cee78f6301730ae5d
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Jan  2 23:09:25 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Jan  2 23:18:01 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ddfbf0d1

dev-python/wcmatch: Bump to 7.2

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

 dev-python/wcmatch/Manifest   |  1 +
 dev-python/wcmatch/wcmatch-7.2.ebuild | 56 +++
 2 files changed, 57 insertions(+)

diff --git a/dev-python/wcmatch/Manifest b/dev-python/wcmatch/Manifest
index eb561b1f951..c373472b893 100644
--- a/dev-python/wcmatch/Manifest
+++ b/dev-python/wcmatch/Manifest
@@ -1 +1,2 @@
 DIST wcmatch-7.1.tar.gz 105744 BLAKE2B 
0add1c68025c92ac57d6ea64d82bddb20bace60de5d319fb16e16802f208d788d876695bfcd186b80630039f544565c631d36e1c7327dee5d8c799eff8c80ce2
 SHA512 
79d62d85f13d245e38d0fe92a275e24058b86af8aaf9a926bfd950dad4ec47e40e763c18b08d3eb4ddd925832ae9910f13407094070442b41dbe2fe4ad11fb39
+DIST wcmatch-7.2.tar.gz 105087 BLAKE2B 
a28bd9d02468f3ca83d606ee7f7d5c9b6b8883cf6e0c04b711765aefafce189f7f524a490c6831a739b579be66af5f4b1c7b6373da22e170211e611677c5788f
 SHA512 
6fdc0a3cb6d66b323c509a5ee34c1e8df9a46a93fd1fc0921dfdbc17ac604934fdad3df5e8f253aa6a880bea2e81bb26ec097b9503c920433c5827ea91b327d8

diff --git a/dev-python/wcmatch/wcmatch-7.2.ebuild 
b/dev-python/wcmatch/wcmatch-7.2.ebuild
new file mode 100644
index 000..4ab18a52134
--- /dev/null
+++ b/dev-python/wcmatch/wcmatch-7.2.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7..9} )
+
+DOCS_BUILDER="mkdocs"
+DOCS_DEPEND="
+   ~dev-python/mkdocs_pymdownx_material_extras-1.0.7
+   dev-python/mkdocs-material
+   dev-python/mkdocs-git-revision-date-localized-plugin
+   dev-python/mkdocs-minify-plugin
+   dev-python/pyspelling
+"
+
+inherit distutils-r1 docs
+
+DESCRIPTION="Wildcard/glob file name matcher"
+HOMEPAGE="
+   https://github.com/facelessuser/wcmatch/
+   https://pypi.org/project/wcmatch/;
+SRC_URI="https://github.com/facelessuser/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   >=dev-python/backrefs-4.1[${PYTHON_USEDEP}]
+   >=dev-python/bracex-2.0[${PYTHON_USEDEP}]
+"
+
+BDEPEND="test? (
+   dev-python/mock[${PYTHON_USEDEP}]
+   dev-vcs/git
+)"
+
+distutils_enable_tests pytest
+
+python_prepare_all() {
+   # no such file or dir ~homedir
+   sed -i -e 's:test_tilde_user:_&:' \
+   tests/test_glob.py || die
+
+   # mkdocs-git-revision-date-localized-plugin needs git repo
+   if use doc; then
+   git init || die
+   git config --global user.email "y...@example.com" || die
+   git config --global user.name "Your Name" || die
+   git add . || die
+   git commit -m 'init' || die
+   fi
+
+   distutils-r1_python_prepare_all
+}



[gentoo-commits] repo/gentoo:master commit in: xfce-extra/xfce4-indicator-plugin/

2021-01-02 Thread Michał Górny
commit: 49bfc99d6371996c0aca4b55a33933103126db4f
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Jan  2 23:07:56 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Jan  2 23:07:56 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49bfc99d

xfce-extra/xfce4-indicator-plugin: Bump to 2.4.0

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

 xfce-extra/xfce4-indicator-plugin/Manifest |  1 +
 .../xfce4-indicator-plugin-2.4.0.ebuild| 51 ++
 2 files changed, 52 insertions(+)

diff --git a/xfce-extra/xfce4-indicator-plugin/Manifest 
b/xfce-extra/xfce4-indicator-plugin/Manifest
index 3363bfd026a..17c55831c99 100644
--- a/xfce-extra/xfce4-indicator-plugin/Manifest
+++ b/xfce-extra/xfce4-indicator-plugin/Manifest
@@ -1 +1,2 @@
 DIST xfce4-indicator-plugin-2.3.4.tar.bz2 406991 BLAKE2B 
3d499f9f923e9cc51b25e2bed3dc6dfb6d4413c90d0a1afeacd14e0d1f33c9f9d5bdd6bdeb03a3e61bef0c3ec8cb1d1c766d89d921aaf9610bc797dc99a12219
 SHA512 
b1fd065c8221ae91d95b540411317cd67bb9b26d46c7cfe85ec90d7ccdcd11e7b8832008c8b6fb5c257e0b1a08360f00ad9da5520108024cc36c63d865ffdca6
+DIST xfce4-indicator-plugin-2.4.0.tar.bz2 389228 BLAKE2B 
6f627663d0a432ee74e871b55656c119f99c315d2f5095fd24a9eefc9338d280d5c371153377d575bc926707f30dc0602c7033bf09acdba1e247356b341393d5
 SHA512 
5b6e82d85357cec689f23a6cf69d379db9425956a531d8295a23adf52b1e00e3cd8acd822b13ab05d80321ff739c96aadc6e7526ec275421c341446e58a5fbab

diff --git 
a/xfce-extra/xfce4-indicator-plugin/xfce4-indicator-plugin-2.4.0.ebuild 
b/xfce-extra/xfce4-indicator-plugin/xfce4-indicator-plugin-2.4.0.ebuild
new file mode 100644
index 000..b93f7bda74d
--- /dev/null
+++ b/xfce-extra/xfce4-indicator-plugin/xfce4-indicator-plugin-2.4.0.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit xdg-utils
+
+DESCRIPTION="A panel plugin that uses indicator-applet to show new messages"
+HOMEPAGE="https://goodies.xfce.org/projects/panel-plugins/xfce4-indicator-plugin;
+SRC_URI="https://archive.xfce.org/src/panel-plugins/${PN}/${PV%.*}/${P}.tar.bz2;
+
+LICENSE="GPL-2 LGPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE=""
+
+RDEPEND=">=dev-libs/libindicator-12.10.1:3=
+   >=x11-libs/gtk+-3.18:3=
+   x11-libs/libX11:=
+   >=xfce-base/libxfce4ui-4.11:=[gtk3(+)]
+   >=xfce-base/libxfce4util-4.11:=
+   >=xfce-base/xfce4-panel-4.11:=
+   >=xfce-base/xfconf-4.13:="
+DEPEND="${RDEPEND}"
+BDEPEND="
+   dev-util/intltool
+   sys-devel/gettext
+   virtual/pkgconfig"
+
+src_configure() {
+   local myconf=(
+   # libido3-13.10.0 needs ubuntu-private.h from Ubuntu's GTK+ 3.x
+   --disable-ido
+   )
+
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   default
+   find "${D}" -name '*.la' -delete || die
+}
+
+pkg_postinst() {
+   xdg_icon_cache_update
+   xdg_desktop_database_update
+}
+
+pkg_postrm() {
+   xdg_icon_cache_update
+   xdg_desktop_database_update
+}



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

2021-01-02 Thread Michał Górny
commit: c116a47bcc808291ecffbd18a3efeda823af69ae
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Jan  2 23:10:00 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Jan  2 23:18:04 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c116a47b

dev-python/wcmatch: Add python@ as backup

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

 dev-python/wcmatch/metadata.xml   | 3 +++
 dev-python/wcmatch/wcmatch-7.2.ebuild | 7 ++-
 2 files changed, 9 insertions(+), 1 deletion(-)

diff --git a/dev-python/wcmatch/metadata.xml b/dev-python/wcmatch/metadata.xml
index a6af55c3882..5e9ad1b8133 100644
--- a/dev-python/wcmatch/metadata.xml
+++ b/dev-python/wcmatch/metadata.xml
@@ -14,6 +14,9 @@
proxy-ma...@gentoo.org
Proxy Maintainers

+   
+   pyt...@gentoo.org
+   

facelessuser/wcmatch
wcmatch

diff --git a/dev-python/wcmatch/wcmatch-7.2.ebuild 
b/dev-python/wcmatch/wcmatch-7.2.ebuild
index 4ab18a52134..fdc416d5245 100644
--- a/dev-python/wcmatch/wcmatch-7.2.ebuild
+++ b/dev-python/wcmatch/wcmatch-7.2.ebuild
@@ -39,10 +39,15 @@ BDEPEND="test? (
 distutils_enable_tests pytest
 
 python_prepare_all() {
-   # no such file or dir ~homedir
+   # this test makes a really wrong assumption that basename of $HOME
+   # will be a username
sed -i -e 's:test_tilde_user:_&:' \
tests/test_glob.py || die
 
+   # tests require some files in homedir
+   > "${HOME}"/test1.txt || die
+   > "${HOME}"/test2.txt || die
+
# mkdocs-git-revision-date-localized-plugin needs git repo
if use doc; then
git init || die



[gentoo-commits] repo/gentoo:master commit in: gnustep-base/gnustep-back-xlib/

2021-01-02 Thread Sam James
commit: b859b1f492c6085df1a21e5605c88652a92b5e57
Author: Sam James  gentoo  org>
AuthorDate: Sat Jan  2 22:49:00 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jan  2 22:49:00 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b859b1f4

gnustep-base/gnustep-back-xlib: Stabilize 0.28.0 sparc, #761070

Signed-off-by: Sam James  gentoo.org>

 gnustep-base/gnustep-back-xlib/gnustep-back-xlib-0.28.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnustep-base/gnustep-back-xlib/gnustep-back-xlib-0.28.0.ebuild 
b/gnustep-base/gnustep-back-xlib/gnustep-back-xlib-0.28.0.ebuild
index 5b9f4aff44a..dff54adaaae 100644
--- a/gnustep-base/gnustep-back-xlib/gnustep-back-xlib-0.28.0.ebuild
+++ b/gnustep-base/gnustep-back-xlib/gnustep-back-xlib-0.28.0.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="ftp://ftp.gnustep.org/pub/gnustep/core/gnustep-back-${PV}.tar.gz;
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="amd64 ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="amd64 ppc sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="opengl xim"
 
 RDEPEND="${GNUSTEP_CORE_DEPEND}



[gentoo-commits] repo/gentoo:master commit in: gnustep-base/gnustep-gui/

2021-01-02 Thread Sam James
commit: 0490215ecf18985b7d05239bd4633ae17b5fe7e1
Author: Sam James  gentoo  org>
AuthorDate: Sat Jan  2 22:48:59 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jan  2 22:48:59 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0490215e

gnustep-base/gnustep-gui: Stabilize 0.28.0 sparc, #761070

Signed-off-by: Sam James  gentoo.org>

 gnustep-base/gnustep-gui/gnustep-gui-0.28.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnustep-base/gnustep-gui/gnustep-gui-0.28.0.ebuild 
b/gnustep-base/gnustep-gui/gnustep-gui-0.28.0.ebuild
index 9a1ced7ee18..6b056e17a84 100644
--- a/gnustep-base/gnustep-gui/gnustep-gui-0.28.0.ebuild
+++ b/gnustep-base/gnustep-gui/gnustep-gui-0.28.0.ebuild
@@ -10,7 +10,7 @@ SRC_URI="ftp://ftp.gnustep.org/pub/gnustep/core/${P}.tar.gz;
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~alpha amd64 ppc sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="cups gif icu jpeg png speech"
 
 DEPEND="${GNUSTEP_CORE_DEPEND}



[gentoo-commits] repo/gentoo:master commit in: virtual/gnustep-back/

2021-01-02 Thread Sam James
commit: 01b8dd91db9634a904f76614b6eca752c842
Author: Sam James  gentoo  org>
AuthorDate: Sat Jan  2 22:49:00 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jan  2 22:49:00 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01b8dd91

virtual/gnustep-back: Stabilize 0.28.0 sparc, #761070

Signed-off-by: Sam James  gentoo.org>

 virtual/gnustep-back/gnustep-back-0.28.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/virtual/gnustep-back/gnustep-back-0.28.0.ebuild 
b/virtual/gnustep-back/gnustep-back-0.28.0.ebuild
index 34421c3c3af..f977bdab830 100644
--- a/virtual/gnustep-back/gnustep-back-0.28.0.ebuild
+++ b/virtual/gnustep-back/gnustep-back-0.28.0.ebuild
@@ -5,7 +5,7 @@ EAPI=7
 
 DESCRIPTION="Virtual for back-end component for the GNUstep GUI Library"
 SLOT="0"
-KEYWORDS="~alpha amd64 ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~alpha amd64 ppc sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
 
 RDEPEND="|| (
~gnustep-base/gnustep-back-cairo-${PV}



[gentoo-commits] repo/gentoo:master commit in: gnustep-base/gnustep-base/

2021-01-02 Thread Sam James
commit: 4b47ec4a18aead17a208e5e53ecd611e6538afb9
Author: Sam James  gentoo  org>
AuthorDate: Sat Jan  2 22:48:58 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jan  2 22:48:58 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b47ec4a

gnustep-base/gnustep-base: Stabilize 1.27.0 sparc, #761070

Signed-off-by: Sam James  gentoo.org>

 gnustep-base/gnustep-base/gnustep-base-1.27.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnustep-base/gnustep-base/gnustep-base-1.27.0.ebuild 
b/gnustep-base/gnustep-base/gnustep-base-1.27.0.ebuild
index 5b1c9aa050c..750ece4c177 100644
--- a/gnustep-base/gnustep-base/gnustep-base-1.27.0.ebuild
+++ b/gnustep-base/gnustep-base/gnustep-base-1.27.0.ebuild
@@ -10,7 +10,7 @@ SRC_URI="ftp://ftp.gnustep.org/pub/gnustep/core/${P}.tar.gz;
 
 LICENSE="GPL-2 LGPL-2.1"
 SLOT="0/$(ver_cut 1-2)"
-KEYWORDS="~alpha amd64 ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux 
~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ppc ~ppc64 sparc ~x86 ~amd64-linux ~x86-linux 
~sparc-solaris ~x86-solaris"
 IUSE="+gnutls +icu +libffi zeroconf"
 
 RDEPEND="${GNUSTEP_CORE_DEPEND}



[gentoo-commits] repo/gentoo:master commit in: gnustep-base/gnustep-back-art/

2021-01-02 Thread Sam James
commit: a752becb7f913e46458c1b5e2b9a53b9cca802b4
Author: Sam James  gentoo  org>
AuthorDate: Sat Jan  2 22:48:59 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jan  2 22:48:59 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a752becb

gnustep-base/gnustep-back-art: Stabilize 0.28.0 sparc, #761070

Signed-off-by: Sam James  gentoo.org>

 gnustep-base/gnustep-back-art/gnustep-back-art-0.28.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnustep-base/gnustep-back-art/gnustep-back-art-0.28.0.ebuild 
b/gnustep-base/gnustep-back-art/gnustep-back-art-0.28.0.ebuild
index 10843457f5c..d4dd54941e6 100644
--- a/gnustep-base/gnustep-back-art/gnustep-back-art-0.28.0.ebuild
+++ b/gnustep-base/gnustep-back-art/gnustep-back-art-0.28.0.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="ftp://ftp.gnustep.org/pub/gnustep/core/gnustep-back-${PV}.tar.gz;
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 ppc ~sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ppc sparc ~x86 ~amd64-linux ~x86-linux"
 IUSE="opengl xim"
 
 RDEPEND="${GNUSTEP_CORE_DEPEND}



[gentoo-commits] repo/gentoo:master commit in: gnustep-base/gnustep-make/

2021-01-02 Thread Sam James
commit: 77580096c60d5519a835e7a56c5f876fe3203a5d
Author: Sam James  gentoo  org>
AuthorDate: Sat Jan  2 22:48:58 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jan  2 22:48:58 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77580096

gnustep-base/gnustep-make: Stabilize 2.8.0 sparc, #761070

Signed-off-by: Sam James  gentoo.org>

 gnustep-base/gnustep-make/gnustep-make-2.8.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnustep-base/gnustep-make/gnustep-make-2.8.0.ebuild 
b/gnustep-base/gnustep-make/gnustep-make-2.8.0.ebuild
index 0bb29cabdad..b47a154e513 100644
--- a/gnustep-base/gnustep-make/gnustep-make-2.8.0.ebuild
+++ b/gnustep-base/gnustep-make/gnustep-make-2.8.0.ebuild
@@ -10,7 +10,7 @@ SRC_URI="ftp://ftp.gnustep.org/pub/gnustep/core/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux 
~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ppc ~ppc64 sparc ~x86 ~amd64-linux ~x86-linux 
~sparc-solaris ~x86-solaris"
 IUSE="libobjc2 native-exceptions"
 
 DEPEND="${GNUSTEP_CORE_DEPEND}



[gentoo-commits] repo/gentoo:master commit in: gnustep-base/gnustep-back-cairo/

2021-01-02 Thread Sam James
commit: 4e63fe5b4ee8d8533ec7bdaf137f691a72db26c9
Author: Sam James  gentoo  org>
AuthorDate: Sat Jan  2 22:49:00 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jan  2 22:49:00 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e63fe5b

gnustep-base/gnustep-back-cairo: Stabilize 0.28.0 sparc, #761070

Signed-off-by: Sam James  gentoo.org>

 gnustep-base/gnustep-back-cairo/gnustep-back-cairo-0.28.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnustep-base/gnustep-back-cairo/gnustep-back-cairo-0.28.0.ebuild 
b/gnustep-base/gnustep-back-cairo/gnustep-back-cairo-0.28.0.ebuild
index dbaf07d9421..c8c95615e89 100644
--- a/gnustep-base/gnustep-back-cairo/gnustep-back-cairo-0.28.0.ebuild
+++ b/gnustep-base/gnustep-back-cairo/gnustep-back-cairo-0.28.0.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="ftp://ftp.gnustep.org/pub/gnustep/core/gnustep-back-${PV}.tar.gz;
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="amd64 ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="amd64 ppc sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="opengl xim"
 
 RDEPEND="${GNUSTEP_CORE_DEPEND}



[gentoo-commits] repo/gentoo:master commit in: virtual/gnustep-back/

2021-01-02 Thread Sam James
commit: 4420ce2e599503aeccab6e27d8afef109dd6c6ed
Author: Sam James  gentoo  org>
AuthorDate: Sat Jan  2 22:45:33 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jan  2 22:45:33 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4420ce2e

virtual/gnustep-back: Stabilize 0.28.0 ppc, #761070

Signed-off-by: Sam James  gentoo.org>

 virtual/gnustep-back/gnustep-back-0.28.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/virtual/gnustep-back/gnustep-back-0.28.0.ebuild 
b/virtual/gnustep-back/gnustep-back-0.28.0.ebuild
index 2d6f1ec695c..34421c3c3af 100644
--- a/virtual/gnustep-back/gnustep-back-0.28.0.ebuild
+++ b/virtual/gnustep-back/gnustep-back-0.28.0.ebuild
@@ -5,7 +5,7 @@ EAPI=7
 
 DESCRIPTION="Virtual for back-end component for the GNUstep GUI Library"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~alpha amd64 ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
 
 RDEPEND="|| (
~gnustep-base/gnustep-back-cairo-${PV}



[gentoo-commits] repo/gentoo:master commit in: gnustep-base/gnustep-back-xlib/

2021-01-02 Thread Sam James
commit: c08520c4eaf130cf553c769f97b9a8b2d86ced12
Author: Sam James  gentoo  org>
AuthorDate: Sat Jan  2 22:45:33 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jan  2 22:45:33 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c08520c4

gnustep-base/gnustep-back-xlib: Stabilize 0.28.0 ppc, #761070

Signed-off-by: Sam James  gentoo.org>

 gnustep-base/gnustep-back-xlib/gnustep-back-xlib-0.28.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnustep-base/gnustep-back-xlib/gnustep-back-xlib-0.28.0.ebuild 
b/gnustep-base/gnustep-back-xlib/gnustep-back-xlib-0.28.0.ebuild
index 15935acf16b..5b9f4aff44a 100644
--- a/gnustep-base/gnustep-back-xlib/gnustep-back-xlib-0.28.0.ebuild
+++ b/gnustep-base/gnustep-back-xlib/gnustep-back-xlib-0.28.0.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="ftp://ftp.gnustep.org/pub/gnustep/core/gnustep-back-${PV}.tar.gz;
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="amd64 ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="opengl xim"
 
 RDEPEND="${GNUSTEP_CORE_DEPEND}



[gentoo-commits] repo/gentoo:master commit in: gnustep-base/gnustep-gui/

2021-01-02 Thread Sam James
commit: 2624b582ab204ca4bed8e691957649f125581e6d
Author: Sam James  gentoo  org>
AuthorDate: Sat Jan  2 22:45:31 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jan  2 22:45:31 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2624b582

gnustep-base/gnustep-gui: Stabilize 0.28.0 ppc, #761070

Signed-off-by: Sam James  gentoo.org>

 gnustep-base/gnustep-gui/gnustep-gui-0.28.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnustep-base/gnustep-gui/gnustep-gui-0.28.0.ebuild 
b/gnustep-base/gnustep-gui/gnustep-gui-0.28.0.ebuild
index 43abcf20540..9a1ced7ee18 100644
--- a/gnustep-base/gnustep-gui/gnustep-gui-0.28.0.ebuild
+++ b/gnustep-base/gnustep-gui/gnustep-gui-0.28.0.ebuild
@@ -10,7 +10,7 @@ SRC_URI="ftp://ftp.gnustep.org/pub/gnustep/core/${P}.tar.gz;
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~alpha amd64 ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="cups gif icu jpeg png speech"
 
 DEPEND="${GNUSTEP_CORE_DEPEND}



[gentoo-commits] repo/gentoo:master commit in: gnustep-base/gnustep-make/

2021-01-02 Thread Sam James
commit: 0451936b0859fb4135c731b5aedd038d48e7f24d
Author: Sam James  gentoo  org>
AuthorDate: Sat Jan  2 22:45:30 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jan  2 22:45:30 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0451936b

gnustep-base/gnustep-make: Stabilize 2.8.0 ppc, #761070

Signed-off-by: Sam James  gentoo.org>

 gnustep-base/gnustep-make/gnustep-make-2.8.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnustep-base/gnustep-make/gnustep-make-2.8.0.ebuild 
b/gnustep-base/gnustep-make/gnustep-make-2.8.0.ebuild
index 675cde04892..0bb29cabdad 100644
--- a/gnustep-base/gnustep-make/gnustep-make-2.8.0.ebuild
+++ b/gnustep-base/gnustep-make/gnustep-make-2.8.0.ebuild
@@ -10,7 +10,7 @@ SRC_URI="ftp://ftp.gnustep.org/pub/gnustep/core/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux 
~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux 
~sparc-solaris ~x86-solaris"
 IUSE="libobjc2 native-exceptions"
 
 DEPEND="${GNUSTEP_CORE_DEPEND}



[gentoo-commits] repo/gentoo:master commit in: gnustep-base/gnustep-base/

2021-01-02 Thread Sam James
commit: a582049e4397cf853d1af485c7135b3d2a9d67c3
Author: Sam James  gentoo  org>
AuthorDate: Sat Jan  2 22:45:31 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jan  2 22:45:31 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a582049e

gnustep-base/gnustep-base: Stabilize 1.27.0 ppc, #761070

Signed-off-by: Sam James  gentoo.org>

 gnustep-base/gnustep-base/gnustep-base-1.27.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnustep-base/gnustep-base/gnustep-base-1.27.0.ebuild 
b/gnustep-base/gnustep-base/gnustep-base-1.27.0.ebuild
index 45cbecf786d..5b1c9aa050c 100644
--- a/gnustep-base/gnustep-base/gnustep-base-1.27.0.ebuild
+++ b/gnustep-base/gnustep-base/gnustep-base-1.27.0.ebuild
@@ -10,7 +10,7 @@ SRC_URI="ftp://ftp.gnustep.org/pub/gnustep/core/${P}.tar.gz;
 
 LICENSE="GPL-2 LGPL-2.1"
 SLOT="0/$(ver_cut 1-2)"
-KEYWORDS="~alpha amd64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux 
~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux 
~sparc-solaris ~x86-solaris"
 IUSE="+gnutls +icu +libffi zeroconf"
 
 RDEPEND="${GNUSTEP_CORE_DEPEND}



[gentoo-commits] repo/gentoo:master commit in: gnustep-base/gnustep-back-art/

2021-01-02 Thread Sam James
commit: c4e99a690c2038129bce07c98875be1bf3de0548
Author: Sam James  gentoo  org>
AuthorDate: Sat Jan  2 22:45:32 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jan  2 22:45:32 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4e99a69

gnustep-base/gnustep-back-art: Stabilize 0.28.0 ppc, #761070

Signed-off-by: Sam James  gentoo.org>

 gnustep-base/gnustep-back-art/gnustep-back-art-0.28.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnustep-base/gnustep-back-art/gnustep-back-art-0.28.0.ebuild 
b/gnustep-base/gnustep-back-art/gnustep-back-art-0.28.0.ebuild
index 33657d3cafe..10843457f5c 100644
--- a/gnustep-base/gnustep-back-art/gnustep-back-art-0.28.0.ebuild
+++ b/gnustep-base/gnustep-back-art/gnustep-back-art-0.28.0.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="ftp://ftp.gnustep.org/pub/gnustep/core/gnustep-back-${PV}.tar.gz;
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ppc ~sparc ~x86 ~amd64-linux ~x86-linux"
 IUSE="opengl xim"
 
 RDEPEND="${GNUSTEP_CORE_DEPEND}



[gentoo-commits] repo/gentoo:master commit in: gnustep-base/gnustep-back-cairo/

2021-01-02 Thread Sam James
commit: e6eb90de691560f666ebd66985c35827097902f2
Author: Sam James  gentoo  org>
AuthorDate: Sat Jan  2 22:45:32 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jan  2 22:45:32 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6eb90de

gnustep-base/gnustep-back-cairo: Stabilize 0.28.0 ppc, #761070

Signed-off-by: Sam James  gentoo.org>

 gnustep-base/gnustep-back-cairo/gnustep-back-cairo-0.28.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnustep-base/gnustep-back-cairo/gnustep-back-cairo-0.28.0.ebuild 
b/gnustep-base/gnustep-back-cairo/gnustep-back-cairo-0.28.0.ebuild
index 87994c15ad0..dbaf07d9421 100644
--- a/gnustep-base/gnustep-back-cairo/gnustep-back-cairo-0.28.0.ebuild
+++ b/gnustep-base/gnustep-back-cairo/gnustep-back-cairo-0.28.0.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="ftp://ftp.gnustep.org/pub/gnustep/core/gnustep-back-${PV}.tar.gz;
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="amd64 ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="opengl xim"
 
 RDEPEND="${GNUSTEP_CORE_DEPEND}



[gentoo-commits] repo/gentoo:master commit in: sci-calculators/units/

2021-01-02 Thread Sam James
commit: 034f79993b2345f562d0c832661f29f3b4d594e0
Author: Sam James  gentoo  org>
AuthorDate: Sat Jan  2 22:43:16 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jan  2 22:43:22 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=034f7999

sci-calculators/units: Stabilize 2.19-r1 ppc64, #762868

Signed-off-by: Sam James  gentoo.org>

 sci-calculators/units/units-2.19-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-calculators/units/units-2.19-r1.ebuild 
b/sci-calculators/units/units-2.19-r1.ebuild
index 0065f1b1105..9463f1bd5b2 100644
--- a/sci-calculators/units/units-2.19-r1.ebuild
+++ b/sci-calculators/units/units-2.19-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
 
 LICENSE="FDL-1.3 GPL-3"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ppc ~ppc64 ~sparc x86 ~amd64-linux 
~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~hppa ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux"
 IUSE="+units-cur"
 REQUIRED_USE="units-cur? ( ${PYTHON_REQUIRED_USE} )"
 



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

2021-01-02 Thread Lars Wendler
commit: 116d3785c764eca461ff406ef579bd6a48bb6656
Author: Lars Wendler  gentoo  org>
AuthorDate: Sat Jan  2 22:41:15 2021 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Sat Jan  2 22:41:56 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=116d3785

media-libs/harfbuzz: Fixed python deps

Thanks-to: Michał Górny  gentoo.org>

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

 media-libs/harfbuzz/harfbuzz-2.7.4.ebuild | 2 +-
 media-libs/harfbuzz/harfbuzz-.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-libs/harfbuzz/harfbuzz-2.7.4.ebuild 
b/media-libs/harfbuzz/harfbuzz-2.7.4.ebuild
index 19566a5b8ed..096d4aaa860 100644
--- a/media-libs/harfbuzz/harfbuzz-2.7.4.ebuild
+++ b/media-libs/harfbuzz/harfbuzz-2.7.4.ebuild
@@ -34,8 +34,8 @@ RDEPEND="
truetype? ( >=media-libs/freetype-2.5.0.1:2=[${MULTILIB_USEDEP}] )
 "
 DEPEND="${RDEPEND}
+   ${PYTHON_DEPS}
>=dev-libs/gobject-introspection-common-1.34
-   test? ( ${PYTHON_DEPS} )
 "
 BDEPEND="
virtual/pkgconfig

diff --git a/media-libs/harfbuzz/harfbuzz-.ebuild 
b/media-libs/harfbuzz/harfbuzz-.ebuild
index 19566a5b8ed..096d4aaa860 100644
--- a/media-libs/harfbuzz/harfbuzz-.ebuild
+++ b/media-libs/harfbuzz/harfbuzz-.ebuild
@@ -34,8 +34,8 @@ RDEPEND="
truetype? ( >=media-libs/freetype-2.5.0.1:2=[${MULTILIB_USEDEP}] )
 "
 DEPEND="${RDEPEND}
+   ${PYTHON_DEPS}
>=dev-libs/gobject-introspection-common-1.34
-   test? ( ${PYTHON_DEPS} )
 "
 BDEPEND="
virtual/pkgconfig



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

2021-01-02 Thread Sam James
commit: db32ab134c3da5bfbe8a580873acda6f8dea3dfb
Author: Sam James  gentoo  org>
AuthorDate: Sat Jan  2 22:34:42 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jan  2 22:35:14 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db32ab13

net-mail/notmuch: ROOT -> EROOT

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Sam James  gentoo.org>

 net-mail/notmuch/notmuch-0.31.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-mail/notmuch/notmuch-0.31.3.ebuild 
b/net-mail/notmuch/notmuch-0.31.3.ebuild
index 5f806e985b5..b769f25d217 100644
--- a/net-mail/notmuch/notmuch-0.31.3.ebuild
+++ b/net-mail/notmuch/notmuch-0.31.3.ebuild
@@ -253,7 +253,7 @@ src_install() {
 
 pkg_preinst() {
local _rcfile="/etc/mutt/notmuch-mutt.rc"
-   if use mutt && ! [[ -e ${ROOT}${_rcfile} ]]; then
+   if use mutt && ! [[ -e "${EROOT}"${_rcfile} ]]; then
elog "To enable notmuch support in mutt, add the following line"
elog "to your mutt config file:"
elog ""



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

2021-01-02 Thread David Seifert
commit: 4b3cb4b10ca8451b78d225ac90ccda6724600c15
Author: David Seifert  gentoo  org>
AuthorDate: Sat Jan  2 22:33:19 2021 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Jan  2 22:33:19 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b3cb4b1

dev-libs/libgcrypt: USE="static-libs" for sys-power/suspend[crypt]

Bug: https://bugs.gentoo.org/751568
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: David Seifert  gentoo.org>

 dev-libs/libgcrypt/libgcrypt-1.8.6.ebuild | 7 ---
 dev-libs/libgcrypt/libgcrypt-1.8.7.ebuild | 7 ---
 2 files changed, 8 insertions(+), 6 deletions(-)

diff --git a/dev-libs/libgcrypt/libgcrypt-1.8.6.ebuild 
b/dev-libs/libgcrypt/libgcrypt-1.8.6.ebuild
index fe147aa0b12..9f172592690 100644
--- a/dev-libs/libgcrypt/libgcrypt-1.8.6.ebuild
+++ b/dev-libs/libgcrypt/libgcrypt-1.8.6.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -12,7 +12,7 @@ SRC_URI="mirror://gnupg/${PN}/${P}.tar.bz2"
 LICENSE="LGPL-2.1 MIT"
 SLOT="0/20" # subslot = soname major version
 KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE="doc o-flag-munging"
+IUSE="doc o-flag-munging static-libs"
 
 RDEPEND=">=dev-libs/libgpg-error-1.25[${MULTILIB_USEDEP}]"
 DEPEND="${RDEPEND}"
@@ -42,7 +42,8 @@ multilib_src_configure() {
local myeconfargs=(
CC_FOR_BUILD="$(tc-getBUILD_CC)"
--enable-noexecstack
-   --disable-static
+   # required for sys-power/suspend[crypt], bug 751568
+   $(use_enable static-libs static)
$(use_enable o-flag-munging O-flag-munging)
 
# disabled due to various applications requiring privileges

diff --git a/dev-libs/libgcrypt/libgcrypt-1.8.7.ebuild 
b/dev-libs/libgcrypt/libgcrypt-1.8.7.ebuild
index d3d9b405a53..507cb4e72cf 100644
--- a/dev-libs/libgcrypt/libgcrypt-1.8.7.ebuild
+++ b/dev-libs/libgcrypt/libgcrypt-1.8.7.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -12,7 +12,7 @@ SRC_URI="mirror://gnupg/${PN}/${P}.tar.bz2"
 LICENSE="LGPL-2.1 MIT"
 SLOT="0/20" # subslot = soname major version
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE="doc o-flag-munging"
+IUSE="doc o-flag-munging static-libs"
 
 RDEPEND=">=dev-libs/libgpg-error-1.25[${MULTILIB_USEDEP}]"
 DEPEND="${RDEPEND}"
@@ -42,7 +42,8 @@ multilib_src_configure() {
local myeconfargs=(
CC_FOR_BUILD="$(tc-getBUILD_CC)"
--enable-noexecstack
-   --disable-static
+   # required for sys-power/suspend[crypt], bug 751568
+   $(use_enable static-libs static)
$(use_enable o-flag-munging O-flag-munging)
 
# disabled due to various applications requiring privileges



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

2021-01-02 Thread David Seifert
commit: 331ef388a343156c8c13cc1007e9ecd353f55e50
Author: David Seifert  gentoo  org>
AuthorDate: Sat Jan  2 22:33:20 2021 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Jan  2 22:33:20 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=331ef388

dev-libs/libgpg-error: USE="static-libs" for sys-power/suspend[crypt]

Bug: https://bugs.gentoo.org/751568
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: David Seifert  gentoo.org>

 dev-libs/libgpg-error/libgpg-error-1.38.ebuild | 7 ---
 dev-libs/libgpg-error/libgpg-error-1.39.ebuild | 7 ---
 dev-libs/libgpg-error/libgpg-error-1.41.ebuild | 7 ---
 3 files changed, 12 insertions(+), 9 deletions(-)

diff --git a/dev-libs/libgpg-error/libgpg-error-1.38.ebuild 
b/dev-libs/libgpg-error/libgpg-error-1.38.ebuild
index a27a868a101..8c33f5a979d 100644
--- a/dev-libs/libgpg-error/libgpg-error-1.38.ebuild
+++ b/dev-libs/libgpg-error/libgpg-error-1.38.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -13,7 +13,7 @@ SRC_URI="mirror://gnupg/${PN}/${P}.tar.bz2
 LICENSE="GPL-2 LGPL-2.1"
 SLOT="0"
 KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE="common-lisp nls"
+IUSE="common-lisp nls static-libs"
 
 RDEPEND="nls? ( >=virtual/libintl-0-r1[${MULTILIB_USEDEP}] )"
 DEPEND="${RDEPEND}"
@@ -53,7 +53,8 @@ multilib_src_configure() {
$(multilib_is_native_abi || echo --disable-languages)
$(use_enable common-lisp languages)
$(use_enable nls)
-   --disable-static
+   # required for sys-power/suspend[crypt], bug 751568
+   $(use_enable static-libs static)
--enable-threads
CC_FOR_BUILD="$(tc-getBUILD_CC)"
$("${S}/configure" --help | grep -o -- '--without-.*-prefix')

diff --git a/dev-libs/libgpg-error/libgpg-error-1.39.ebuild 
b/dev-libs/libgpg-error/libgpg-error-1.39.ebuild
index 7cdaab3047a..39d51aace0f 100644
--- a/dev-libs/libgpg-error/libgpg-error-1.39.ebuild
+++ b/dev-libs/libgpg-error/libgpg-error-1.39.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -12,7 +12,7 @@ SRC_URI="mirror://gnupg/${PN}/${P}.tar.bz2"
 LICENSE="GPL-2 LGPL-2.1"
 SLOT="0"
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE="common-lisp nls"
+IUSE="common-lisp nls static-libs"
 
 RDEPEND="nls? ( >=virtual/libintl-0-r1[${MULTILIB_USEDEP}] )"
 DEPEND="${RDEPEND}"
@@ -44,7 +44,8 @@ multilib_src_configure() {
$(multilib_is_native_abi || echo --disable-languages)
$(use_enable common-lisp languages)
$(use_enable nls)
-   --disable-static
+   # required for sys-power/suspend[crypt], bug 751568
+   $(use_enable static-libs static)
--enable-threads
CC_FOR_BUILD="$(tc-getBUILD_CC)"
$("${S}/configure" --help | grep -o -- '--without-.*-prefix')

diff --git a/dev-libs/libgpg-error/libgpg-error-1.41.ebuild 
b/dev-libs/libgpg-error/libgpg-error-1.41.ebuild
index be7802c9db4..b950fc2c74f 100644
--- a/dev-libs/libgpg-error/libgpg-error-1.41.ebuild
+++ b/dev-libs/libgpg-error/libgpg-error-1.41.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -12,7 +12,7 @@ SRC_URI="mirror://gnupg/${PN}/${P}.tar.bz2"
 LICENSE="GPL-2 LGPL-2.1"
 SLOT="0"
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE="common-lisp nls"
+IUSE="common-lisp nls static-libs"
 
 RDEPEND="nls? ( >=virtual/libintl-0-r1[${MULTILIB_USEDEP}] )"
 DEPEND="${RDEPEND}"
@@ -59,7 +59,8 @@ multilib_src_configure() {
$(multilib_is_native_abi || echo --disable-languages)
$(use_enable common-lisp languages)
$(use_enable nls)
-   --disable-static
+   # required for sys-power/suspend[crypt], bug 751568
+   $(use_enable static-libs static)
--enable-threads
CC_FOR_BUILD="$(tc-getBUILD_CC)"
$("${S}/configure" --help | grep -o -- '--without-.*-prefix')



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

2021-01-02 Thread David Seifert
commit: 894d27a8478ee40be6c649a59efd21d7dc860e35
Author: David Seifert  gentoo  org>
AuthorDate: Sat Jan  2 22:33:21 2021 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Jan  2 22:33:21 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=894d27a8

profiles/arch/base/package.use.mask: Unmask sys-power/suspend[crypt] again

* libgcrypt has re-enabled static-libs support.

Signed-off-by: David Seifert  gentoo.org>

 profiles/arch/base/package.use.mask | 6 --
 1 file changed, 6 deletions(-)

diff --git a/profiles/arch/base/package.use.mask 
b/profiles/arch/base/package.use.mask
index 252425612e9..08587e30215 100644
--- a/profiles/arch/base/package.use.mask
+++ b/profiles/arch/base/package.use.mask
@@ -18,12 +18,6 @@ sci-mathematics/gmp-ecm custom-tune
 # (See 9.3.8 in the Guile manual)
 dev-scheme/guile jit
 
-# Sam James  (2020-09-20)
-# (for Mikle Kolyada )
-# libgcrypt et al no longer support static-libs
-# Need to determine whether crypt is possible dynamically?
-sys-power/suspend crypt
-
 # Sam James  (2020-09-20)
 # (for Mikle Kolyada )
 # libgcrypt et al no longer support static-libs



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

2021-01-02 Thread Sam James
commit: bdcae711b647276ce0436d0bd4e9b031735710a3
Author: Sam James  gentoo  org>
AuthorDate: Sat Jan  2 22:32:45 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jan  2 22:32:45 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bdcae711

dev-lang/python: Stabilize 3.8.6-r1 amd64, #759928

Signed-off-by: Sam James  gentoo.org>

 dev-lang/python/python-3.8.6-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-lang/python/python-3.8.6-r1.ebuild 
b/dev-lang/python/python-3.8.6-r1.ebuild
index 9b5c3e9dea2..063c14148b6 100644
--- a/dev-lang/python/python-3.8.6-r1.ebuild
+++ b/dev-lang/python/python-3.8.6-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="7"
@@ -19,7 +19,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="PSF-2"
 SLOT="${PYVER}"
-KEYWORDS="~alpha ~amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~riscv 
~s390 sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~riscv 
~s390 sparc x86"
 IUSE="bluetooth build examples gdbm hardened ipv6 libressl +ncurses +readline 
sqlite +ssl test tk wininst +xml"
 RESTRICT="!test? ( test )"
 



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

2021-01-02 Thread Sam James
commit: 4a34d1bb2561b8da03f2f6b9759ccf2bc2ed73df
Author: Sam James  gentoo  org>
AuthorDate: Sat Jan  2 22:15:38 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jan  2 22:15:38 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a34d1bb

net-mail/notmuch: restore dropped ~x64-macos

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Sam James  gentoo.org>

 net-mail/notmuch/notmuch-0.31.3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-mail/notmuch/notmuch-0.31.3.ebuild 
b/net-mail/notmuch/notmuch-0.31.3.ebuild
index 88f4451fc0b..5f806e985b5 100644
--- a/net-mail/notmuch/notmuch-0.31.3.ebuild
+++ b/net-mail/notmuch/notmuch-0.31.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -18,7 +18,7 @@ LICENSE="GPL-3"
 # Sub-slot corresponds to major wersion of libnotmuch.so.X.Y. Bump of Y is
 # meant to be binary backward compatible.
 SLOT="0/5"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ppc64 ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ppc64 ~x86 ~x64-macos"
 REQUIRED_USE="
apidoc? ( doc )
nmbug? ( python )



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

2021-01-02 Thread Sam James
commit: 1e109f6216fcf48bf701224b4dd81e1db657a180
Author: Ralph Seichter  seichter  de>
AuthorDate: Sun Dec 27 21:43:28 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jan  2 22:14:26 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e109f62

net-mail/notmuch: Bump to version 0.31.3

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Ralph Seichter  seichter.de>
Closes: https://github.com/gentoo/gentoo/pull/18846
Signed-off-by: Sam James  gentoo.org>

 net-mail/notmuch/Manifest  |   1 +
 net-mail/notmuch/notmuch-0.31.3.ebuild | 276 +
 2 files changed, 277 insertions(+)

diff --git a/net-mail/notmuch/Manifest b/net-mail/notmuch/Manifest
index 9456c2345c8..7b8d75a5a02 100644
--- a/net-mail/notmuch/Manifest
+++ b/net-mail/notmuch/Manifest
@@ -2,4 +2,5 @@ DIST database-v1.tar.xz 204876 BLAKE2B 
846a8d2f17edb61ed1c3d3c655becd1f60b404677
 DIST notmuch-0.29.3.tar.xz 660536 BLAKE2B 
bd5d62eba06102acbc0615cd97ac9ff5578c1f68d50b24a79ea9fb1ea77850d84e0713fb648cb04e74a61ac3321ea5ef82db714786adf38ea10d00c5846decff
 SHA512 
b1e0b47ebf2d2de0ccd39976782eb8a7b417e36f2f9d78ef19e27e55719a02ee919508843a0eaf258f58138914ab2e8796d2fc1782b9cfe2d8937abb6184be65
 DIST notmuch-0.30.tar.xz 711904 BLAKE2B 
fb1523f3939b78797e448e804fc52c4fe1e4e8ff87b346917488d3911027b9ccb67b9fddf611f0e960fd1e158463cbe005e038f31bb54549e2a922926dd512bd
 SHA512 
a5c812eb141c293c61b5483eafd31d3e3ab19b2c84429a1558986c415d30ead4afa79db64b2672e9549a40f5eb4c69e54ea5beeaeb9c783051c3f965a65e
 DIST notmuch-0.31.2.tar.xz 713388 BLAKE2B 
20029f55206b66e7956316fca2d16ae53a49fc196ea2e730ae5ebd96ce893fa2065b7eee9b625629bbb0d3816a70d98e8943920cf8895ef81a97a1d8dc59dd62
 SHA512 
b134ef79648cb6fe9f17b2f1b600d651d57359ae9fa576c808b794aa64a09955f0597a624cc3c498da4ef56e44bca6bb485bc402c2dff48cd000959f9a9ceeaa
+DIST notmuch-0.31.3.tar.xz 713900 BLAKE2B 
64aa5c707a74544d31f1dce4e49f3e19cf8c733dfe6f0761dec5522eae94bacf0c01ab7c8212373f1857eeecbad569482365a53a10f56dfee72cefc8d3f4f05a
 SHA512 
99119216b7ef7f9e336b11d03ebb61d9667a8fbddcf6fccc49b17d07f07867f0342b2766375e164b58eaa9a43237ec4d6567d616fe8813b929d28b203aedfa44
 DIST notmuch-0.31.tar.xz 713144 BLAKE2B 
91b0a01543e438e6ccb40a01ad0a100a5c6ae15fe832bb29367d4bc288dae5a915f89a743ecee814041caf53430e2593cb4b5f69faaec396ad6dacfe8cc67d2f
 SHA512 
928acc07b9dbed4275e7d39d94202bea7685e9d433a7bf4c07e40e191ed4fe8cf15ac04c18792e46f4605ffac548b942998005d8176a58ad76c82d4085a408e5

diff --git a/net-mail/notmuch/notmuch-0.31.3.ebuild 
b/net-mail/notmuch/notmuch-0.31.3.ebuild
new file mode 100644
index 000..88f4451fc0b
--- /dev/null
+++ b/net-mail/notmuch/notmuch-0.31.3.ebuild
@@ -0,0 +1,276 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DISTUTILS_OPTIONAL=1
+NEED_EMACS="24.1"
+PYTHON_COMPAT=( python3_{6,7,8,9} pypy3 )
+
+inherit bash-completion-r1 desktop distutils-r1 elisp-common eutils 
flag-o-matic pax-utils toolchain-funcs xdg-utils
+
+DESCRIPTION="Thread-based e-mail indexer, supporting quick search and tagging"
+HOMEPAGE="https://notmuchmail.org/;
+SRC_URI="https://notmuchmail.org/releases/${P}.tar.xz
+   test? ( 
https://notmuchmail.org/releases/test-databases/database-v1.tar.xz )"
+
+LICENSE="GPL-3"
+# Sub-slot corresponds to major wersion of libnotmuch.so.X.Y. Bump of Y is
+# meant to be binary backward compatible.
+SLOT="0/5"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ppc64 ~x86"
+REQUIRED_USE="
+   apidoc? ( doc )
+   nmbug? ( python )
+   python? ( ${PYTHON_REQUIRED_USE} )
+   test? ( crypt emacs python valgrind )
+"
+IUSE="apidoc crypt doc emacs mutt nmbug python test valgrind"
+RESTRICT="!test? ( test )"
+
+BDEPEND="
+   virtual/pkgconfig
+   apidoc? (
+   app-doc/doxygen
+   dev-lang/perl
+   )
+   doc? (
+   dev-python/sphinx
+   sys-apps/texinfo
+   )
+   python? ( dev-python/pytest[${PYTHON_USEDEP}] )
+"
+
+COMMON_DEPEND="
+   dev-libs/glib
+   dev-libs/gmime:3.0[crypt]
+   >=dev-libs/xapian-1.4.0:=
+   sys-libs/talloc
+   sys-libs/zlib:=
+   emacs? ( >=app-editors/emacs-${NEED_EMACS}:* )
+   python? (
+   ${PYTHON_DEPS}
+   virtual/python-cffi[${PYTHON_USEDEP}]
+   )
+"
+
+DEPEND="${COMMON_DEPEND}
+   test? (
+   >=app-editors/emacs-${NEED_EMACS}:*[libxml2]
+   app-misc/dtach
+   sys-devel/gdb
+   crypt? (
+   app-crypt/gnupg
+   dev-libs/openssl
+   )
+   )
+   valgrind? ( dev-util/valgrind )
+"
+
+RDEPEND="${COMMON_DEPEND}
+   crypt? ( app-crypt/gnupg )
+   mutt? (
+   dev-perl/File-Which
+   dev-perl/Mail-Box
+   dev-perl/MailTools
+   dev-perl/String-ShellQuote
+   dev-perl/Term-ReadLine-Gnu
+   

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

2021-01-02 Thread Sam James
commit: 9beede40e4bb68be856eeada7ae768d0067dd878
Author: Sam James  gentoo  org>
AuthorDate: Sat Jan  2 22:32:46 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jan  2 22:32:46 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9beede40

dev-lang/python: Stabilize 3.9.0-r1 amd64, #759928

Signed-off-by: Sam James  gentoo.org>

 dev-lang/python/python-3.9.0-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-lang/python/python-3.9.0-r1.ebuild 
b/dev-lang/python/python-3.9.0-r1.ebuild
index 4c1442bcad7..5e7963e5747 100644
--- a/dev-lang/python/python-3.9.0-r1.ebuild
+++ b/dev-lang/python/python-3.9.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="7"
@@ -19,7 +19,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="PSF-2"
 SLOT="${PYVER}"
-KEYWORDS="~alpha ~amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~riscv 
~s390 sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~riscv 
~s390 sparc x86"
 IUSE="bluetooth build examples gdbm hardened ipv6 libressl +ncurses +readline 
sqlite +ssl test tk wininst +xml"
 RESTRICT="!test? ( test )"
 



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

2021-01-02 Thread Sam James
commit: cd0211b72c9fa439cdb92dc627a1a152bb442a2c
Author: Sam James  gentoo  org>
AuthorDate: Sat Jan  2 22:32:45 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jan  2 22:32:45 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd0211b7

dev-lang/python: Stabilize 3.7.9-r1 amd64, #759928

Signed-off-by: Sam James  gentoo.org>

 dev-lang/python/python-3.7.9-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-lang/python/python-3.7.9-r1.ebuild 
b/dev-lang/python/python-3.7.9-r1.ebuild
index cead9f2ee00..6bd1a93a416 100644
--- a/dev-lang/python/python-3.7.9-r1.ebuild
+++ b/dev-lang/python/python-3.7.9-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="7"
@@ -19,7 +19,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="PSF-2"
 SLOT="${PYVER}/${PYVER}m"
-KEYWORDS="~alpha ~amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~riscv 
~s390 sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~riscv 
~s390 sparc x86"
 IUSE="bluetooth build examples gdbm hardened ipv6 libressl +ncurses +readline 
sqlite +ssl test tk wininst +xml"
 RESTRICT="!test? ( test )"
 



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

2021-01-02 Thread Sam James
commit: 225b43294099fce2b2c6d9e0c00662765d0574c4
Author: Sam James  gentoo  org>
AuthorDate: Sat Jan  2 22:32:44 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jan  2 22:32:44 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=225b4329

dev-lang/python: Stabilize 2.7.18-r5 amd64, #759928

Signed-off-by: Sam James  gentoo.org>

 dev-lang/python/python-2.7.18-r5.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-lang/python/python-2.7.18-r5.ebuild 
b/dev-lang/python/python-2.7.18-r5.ebuild
index a9a3f73e8e0..1596f6b4f32 100644
--- a/dev-lang/python/python-2.7.18-r5.ebuild
+++ b/dev-lang/python/python-2.7.18-r5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="7"
@@ -18,7 +18,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="PSF-2"
 SLOT="${PYVER}"
-KEYWORDS="~alpha ~amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~s390 
sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~s390 sparc 
x86"
 IUSE="-berkdb bluetooth build elibc_uclibc examples gdbm hardened ipv6 
libressl +ncurses +readline sqlite +ssl +threads tk +wide-unicode wininst +xml"
 
 # Do not add a dependency on dev-lang/python to this ebuild.



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

2021-01-02 Thread Sam James
commit: 54437ab6710e409b14eb6d02b319c1f5745c13aa
Author: Sam James  gentoo  org>
AuthorDate: Sat Jan  2 22:32:44 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jan  2 22:32:44 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54437ab6

dev-lang/python: Stabilize 3.6.12-r1 amd64, #759928

Signed-off-by: Sam James  gentoo.org>

 dev-lang/python/python-3.6.12-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-lang/python/python-3.6.12-r1.ebuild 
b/dev-lang/python/python-3.6.12-r1.ebuild
index d5d14b5159e..2e4b32c5f6d 100644
--- a/dev-lang/python/python-3.6.12-r1.ebuild
+++ b/dev-lang/python/python-3.6.12-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="7"
@@ -19,7 +19,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="PSF-2"
 SLOT="${PYVER}/${PYVER}m"
-KEYWORDS="~alpha ~amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~s390 
sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~s390 sparc 
x86"
 IUSE="bluetooth build examples gdbm hardened ipv6 libressl +ncurses +readline 
sqlite +ssl test +threads tk wininst +xml"
 RESTRICT="!test? ( test )"
 



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

2021-01-02 Thread Sam James
commit: e4b6736f69393dd359d0f6b438d96c43505562b6
Author: Sam James  gentoo  org>
AuthorDate: Sat Jan  2 22:09:03 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jan  2 22:09:03 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4b6736f

media-gfx/xdot: Stabilize 1.2 ppc, #761796

Signed-off-by: Sam James  gentoo.org>

 media-gfx/xdot/xdot-1.2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-gfx/xdot/xdot-1.2.ebuild b/media-gfx/xdot/xdot-1.2.ebuild
index 19689df035e..b5a1987ccd2 100644
--- a/media-gfx/xdot/xdot-1.2.ebuild
+++ b/media-gfx/xdot/xdot-1.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -12,7 +12,7 @@ if [[ ${PV} = * ]]; then
GIT_ECLASS="git-r3"
SRC_URI=""
 else
-   KEYWORDS="amd64 arm arm64 ~ia64 ~ppc ~ppc64 ~x86"
+   KEYWORDS="amd64 arm arm64 ~ia64 ppc ~ppc64 ~x86"
MY_P="${MY_PN}-${PV}"
S="${WORKDIR}/${MY_P}"
SRC_URI="https://github.com/jrfonseca/${MY_PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"



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

2021-01-02 Thread Sam James
commit: 223a833970cb04a9669486755e9c8590a84d3ded
Author: Sam James  gentoo  org>
AuthorDate: Sat Jan  2 22:08:41 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jan  2 22:08:41 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=223a8339

dev-lang/duktape: Stabilize 2.6.0 ppc, #762104

Signed-off-by: Sam James  gentoo.org>

 dev-lang/duktape/duktape-2.6.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-lang/duktape/duktape-2.6.0.ebuild 
b/dev-lang/duktape/duktape-2.6.0.ebuild
index eb4779a22dc..90412e90533 100644
--- a/dev-lang/duktape/duktape-2.6.0.ebuild
+++ b/dev-lang/duktape/duktape-2.6.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -13,7 +13,7 @@ LICENSE="MIT"
 # Upstream don't maintain binary compatibility
 # https://github.com/svaarala/duktape/issues/1524
 SLOT="0/${PV}"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ppc ~ppc64 ~x86"
 
 PATCHES=(
"${FILESDIR}/${PN}-2.6.0-respect-tc-env.patch"



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

2021-01-02 Thread Sam James
commit: 9833e49f1ac0ca9e3a8b53bc7cb334cad328404f
Author: Sam James  gentoo  org>
AuthorDate: Sat Jan  2 22:08:15 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jan  2 22:08:15 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9833e49f

media-libs/dav1d: Stabilize 0.8.0 ppc, #762098

Signed-off-by: Sam James  gentoo.org>

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

diff --git a/media-libs/dav1d/dav1d-0.8.0.ebuild 
b/media-libs/dav1d/dav1d-0.8.0.ebuild
index 4f306cb6db1..83a018f3e5b 100644
--- a/media-libs/dav1d/dav1d-0.8.0.ebuild
+++ b/media-libs/dav1d/dav1d-0.8.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -8,7 +8,7 @@ if [[ "${PV}" == "" ]]; then
SCM="git-r3"
EGIT_REPO_URI="https://code.videolan.org/videolan/dav1d;
 else
-   KEYWORDS="~amd64 arm arm64 ~ppc ~ppc64 ~sparc ~x86"
+   KEYWORDS="~amd64 arm arm64 ppc ~ppc64 ~sparc ~x86"

SRC_URI="https://code.videolan.org/videolan/dav1d/-/archive/${PV}/${P}.tar.bz2;
 fi
 



[gentoo-commits] repo/gentoo:master commit in: sci-calculators/units/

2021-01-02 Thread Sam James
commit: 88f5b9b0dda31f4ab009885f7cd8c70ba8d006e7
Author: Sam James  gentoo  org>
AuthorDate: Sat Jan  2 22:07:27 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jan  2 22:07:32 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88f5b9b0

sci-calculators/units: Stabilize 2.19-r1 ppc, #762868

Signed-off-by: Sam James  gentoo.org>

 sci-calculators/units/units-2.19-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sci-calculators/units/units-2.19-r1.ebuild 
b/sci-calculators/units/units-2.19-r1.ebuild
index 755e4b2d6df..0065f1b1105 100644
--- a/sci-calculators/units/units-2.19-r1.ebuild
+++ b/sci-calculators/units/units-2.19-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -11,7 +11,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
 
 LICENSE="FDL-1.3 GPL-3"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc x86 ~amd64-linux 
~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~hppa ppc ~ppc64 ~sparc x86 ~amd64-linux 
~x86-linux"
 IUSE="+units-cur"
 REQUIRED_USE="units-cur? ( ${PYTHON_REQUIRED_USE} )"
 



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

2021-01-02 Thread David Seifert
commit: e0b79049beee77671372a3f763dd4b49ed2376d1
Author: Jakov Smolic  sartura  hr>
AuthorDate: Sat Jan  2 21:55:04 2021 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Jan  2 21:55:04 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0b79049

net-analyzer/goaccess: Remove unused flags from metadata

Signed-off-by: Jakov Smolic  sartura.hr>
Closes: https://github.com/gentoo/gentoo/pull/18916
Signed-off-by: David Seifert  gentoo.org>

 net-analyzer/goaccess/metadata.xml | 2 --
 1 file changed, 2 deletions(-)

diff --git a/net-analyzer/goaccess/metadata.xml 
b/net-analyzer/goaccess/metadata.xml
index 708d4dfe667..43a4da78f81 100644
--- a/net-analyzer/goaccess/metadata.xml
+++ b/net-analyzer/goaccess/metadata.xml
@@ -16,10 +16,8 @@
that require a visual server report on the fly.


-   Enable Tokyo Cabinet's on-disk B+ Tree 
database backend
Enable support for GeoIP2 through 
dev-libs/libmaxminddb
Use GNU getline() to parse full line 
requests
-   Enable Tokyo Cabinet's on-memory hash 
database backend


allinurl/goaccess



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

2021-01-02 Thread David Seifert
commit: 8bc8cfaf3e934b9588b5044b8b6b6a1de879f3e3
Author: Jakov Smolic  sartura  hr>
AuthorDate: Sat Jan  2 21:43:42 2021 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Jan  2 21:43:42 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8bc8cfaf

net-analyzer/goaccess: Remove old

Closes: https://github.com/gentoo/gentoo/pull/18915
Bug: https://bugs.gentoo.org/739160
Signed-off-by: Jakov Smolic  sartura.hr>
Signed-off-by: David Seifert  gentoo.org>

 net-analyzer/goaccess/Manifest|  1 -
 net-analyzer/goaccess/goaccess-1.3.ebuild | 55 ---
 2 files changed, 56 deletions(-)

diff --git a/net-analyzer/goaccess/Manifest b/net-analyzer/goaccess/Manifest
index 4c995483202..8449602d0ea 100644
--- a/net-analyzer/goaccess/Manifest
+++ b/net-analyzer/goaccess/Manifest
@@ -1,2 +1 @@
-DIST goaccess-1.3.tar.gz 541374 BLAKE2B 
55942e35d06f1467df9b80a3fc42211e867b08963a7334783c0279ba7b9e0fd8d6e197277bee780547a9b8f6264ae15844374604f6d7c1b3b57f57768c2b2019
 SHA512 
7ab8a42670c2009459eee6979cb14e32e7e776e89912077882652631d0ce6ff801fba46d91ab5c23af1229f000e220863e9b70336fcd9fe11521d0ae1fd3bde1
 DIST goaccess-1.4.2.tar.gz 633162 BLAKE2B 
4da268bb051114893b480e4eef18e007ccffb9b61ae49cc9a96622864716a44793f0895b5d27685e1b5e22c33f1bdd256dc148d26c7b6fefbd982a3f8fdf1960
 SHA512 
14bc5a08c2e6bb1db8d664a224b778603a358cf3a52a341a3a3e04e84337d0bb574892cb5005dc62098a8a6f0a834d1014479c29593714fdd6a87cedb3f3fb38

diff --git a/net-analyzer/goaccess/goaccess-1.3.ebuild 
b/net-analyzer/goaccess/goaccess-1.3.ebuild
deleted file mode 100644
index 5d70b028d3d..000
--- a/net-analyzer/goaccess/goaccess-1.3.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="A real-time web log analyzer and interactive viewer that runs in 
a terminal"
-HOMEPAGE="https://goaccess.io;
-SRC_URI="https://tar.goaccess.io/${P}.tar.gz;
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux"
-IUSE="btree bzip2 debug geoip geoipv2 getline libressl tokyocabinet ssl 
unicode zlib"
-REQUIRED_USE="btree? ( tokyocabinet ) bzip2? ( btree ) geoipv2? ( geoip ) 
zlib? ( btree )"
-
-BDEPEND="virtual/pkgconfig"
-RDEPEND="sys-libs/ncurses:0=[unicode?]
-   geoip? (
-   !geoipv2? ( dev-libs/geoip )
-   geoipv2? ( dev-libs/libmaxminddb:0= )
-   )
-   !tokyocabinet? ( dev-libs/glib:2 )
-   tokyocabinet? (
-   dev-db/tokyocabinet[bzip2?,zlib?]
-   btree? (
-   bzip2? ( app-arch/bzip2 )
-   zlib? ( sys-libs/zlib )
-   )
-   )
-   ssl? (
-   !libressl? ( dev-libs/openssl:0= )
-   libressl? ( dev-libs/libressl:0= )
-   )"
-DEPEND="${RDEPEND}"
-
-src_configure() {
-   econf \
-   "$(use_enable bzip2 bzip)" \
-   "$(use_enable zlib)" \
-   "$(use_enable debug)" \
-   "$(use_enable geoip geoip "$(usex geoipv2 mmdb legacy)")" \
-   "$(use_enable tokyocabinet tcb "$(usex btree btree memhash)")" \
-   "$(use_enable unicode utf8)" \
-   "$(use_with getline)" \
-   "$(use_with ssl openssl)"
-}
-
-pkg_preinst() {
-   # Change path to GeoIP bases in config
-   sed -e s':/usr/local:/usr:' -i "${ED}"/etc/goaccess/goaccess.conf || 
die "sed failed for goaccess.conf"
-}
-
-pkg_postinst() {
-   ewarn "Upstream moved config to /etc/goaccess/goaccess.conf"
-}



[gentoo-commits] repo/gentoo:master commit in: media-libs/raspberrypi-userland-bin/

2021-01-02 Thread Sam James
commit: 34be49dbc8576c401dc7fcabf16f1a5584063d82
Author: Sam James  gentoo  org>
AuthorDate: Sat Jan  2 21:42:58 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jan  2 21:43:02 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34be49db

media-libs/raspberrypi-userland-bin: bump to 1.20201201

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Sam James  gentoo.org>

 media-libs/raspberrypi-userland-bin/Manifest   |  1 +
 .../raspberrypi-userland-bin-1.20201201.ebuild | 41 ++
 2 files changed, 42 insertions(+)

diff --git a/media-libs/raspberrypi-userland-bin/Manifest 
b/media-libs/raspberrypi-userland-bin/Manifest
index fb7decc4954..e02e56bbc2f 100644
--- a/media-libs/raspberrypi-userland-bin/Manifest
+++ b/media-libs/raspberrypi-userland-bin/Manifest
@@ -1 +1,2 @@
 DIST raspberrypi-firmware-1.20201022.tar.gz 189827375 BLAKE2B 
94c38f60d688c8e3ebab830912daccbb6c04bdd3d88f6ca0d07d85be0a6b12c53f0266b4c258ed4694f30bad5db30fb6d30feabfd0b7668735a9a806b820d325
 SHA512 
876758179df27109984b6c3f4849fdcdc6bdcc2769495fcc83c97fc3ff4d07b9f3cd58086be877503f72c9e5417d2be6d6c33bce4cbb3b862055117c9cc26db8
+DIST raspberrypi-firmware-1.20201201.tar.gz 189332299 BLAKE2B 
b3ec91f07b4713d26c29be5412d018a220129eef7ddf7c5c09d85e645c2c5754a95f13be7e690ab40648a982e3974cc760aa5b33c76612da836227d38c4ee3a5
 SHA512 
a7f4591552718956bd7f2d0d377234277e2e6f18cc9714ea30fe13f26d5ae1164b982f39dcf72ae4a18663369ef06d0187d8182713763262371c13107aac4c65

diff --git 
a/media-libs/raspberrypi-userland-bin/raspberrypi-userland-bin-1.20201201.ebuild
 
b/media-libs/raspberrypi-userland-bin/raspberrypi-userland-bin-1.20201201.ebuild
new file mode 100644
index 000..9ce4a8fd791
--- /dev/null
+++ 
b/media-libs/raspberrypi-userland-bin/raspberrypi-userland-bin-1.20201201.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+MY_P="raspberrypi-firmware-${PV}"
+DESCRIPTION="Raspberry Pi userspace tools and libraries"
+HOMEPAGE="https://github.com/raspberrypi/firmware;
+SRC_URI="https://github.com/raspberrypi/firmware/archive/${PV}.tar.gz -> 
${MY_P}.tar.gz"
+S="${WORKDIR}/firmware-${PV}"
+
+LICENSE="BSD GPL-2 raspberrypi-videocore-bin"
+SLOT="0"
+KEYWORDS="-* ~arm"
+IUSE="+hardfp examples"
+
+RDEPEND="!media-libs/raspberrypi-userland"
+DEPEND="${DEPEND}"
+RESTRICT="binchecks strip"
+
+src_install() {
+   cd $(usex hardfp hardfp/ "")opt/vc || die
+
+   insinto /opt/vc
+   doins -r include
+
+   into /opt
+   dobin bin/*
+
+   insopts -m 0755
+   insinto "/opt/vc/lib"
+   doins -r lib/*
+
+   doenvd "${FILESDIR}"/04${PN}
+
+   if use examples ; then
+   insopts -m 0644
+   docinto examples
+   dodoc -r src/hello_pi
+   fi
+}



  1   2   3   >