[gentoo-commits] repo/gentoo:master commit in: sci-libs/opencascade/, sci-libs/opencascade/files/

2019-11-16 Thread Joonas Niilola
commit: 4909a322be06b7abd27e2954ea5f89e5c3ffc46b
Author: Bernd Waibel  gmail  com>
AuthorDate: Sat Oct 19 09:17:54 2019 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sun Nov 17 07:45:47 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4909a322

sci-libs/opencascade: bump to version 7.4.0

Closes: https://bugs.gentoo.org/696596
Package-Manager: Portage-2.3.76, Repoman-2.3.17
Signed-off-by: Bernd Waibel  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/13596
Signed-off-by: Joonas Niilola  gentoo.org>

 sci-libs/opencascade/Manifest  |   1 +
 .../files/opencascade-7.4.0-find-qt.patch  |  85 +
 .../files/opencascade-7.4.0-fix-install.patch  | 133 
 .../opencascade/files/opencascade-7.4.0.env.in | 103 +++
 sci-libs/opencascade/metadata.xml  |  27 +++-
 sci-libs/opencascade/opencascade-7.4.0.ebuild  | 140 +
 6 files changed, 484 insertions(+), 5 deletions(-)

diff --git a/sci-libs/opencascade/Manifest b/sci-libs/opencascade/Manifest
index 52dffdbc97c..d999b843d5d 100644
--- a/sci-libs/opencascade/Manifest
+++ b/sci-libs/opencascade/Manifest
@@ -1 +1,2 @@
 DIST opencascade-7.3.0.tar.gz 48576720 BLAKE2B 
bf63ba77aabc8a8c92d694f78f24bab71c07e68e7ba4b8d5d90966733dbd9c0c83a76e35f059e798d4a60640d663330cd13a828b19ec02a5372053ab39a74aa6
 SHA512 
17eb1810b43a8b001867563f97801ceb38a7878fa53d9b39b46a5cf3dd676310fa80e83e90668a99ec6aff9d4f09733fb6c7be83c1e3ab4eaa9fda55888050da
+DIST opencascade-7.4.0.tar.gz 49210449 BLAKE2B 
c92afe7551e9a066ad0940dcf49278b556a726f0534131706b3a11cb0986ba32818e162df3982283f6815eb9d67d7e91f909485d78f2b8d638da1934ffbc2f7f
 SHA512 
eb0d47848d48f42a159ae5d7a4144483ba1f59f634844bd2053e48e04af30a30ba7056112cd38a1730d193a8d736b898f9608dd574cbe6829dbe7257a002772a

diff --git a/sci-libs/opencascade/files/opencascade-7.4.0-find-qt.patch 
b/sci-libs/opencascade/files/opencascade-7.4.0-find-qt.patch
new file mode 100644
index 000..1ebc1106a31
--- /dev/null
+++ b/sci-libs/opencascade/files/opencascade-7.4.0-find-qt.patch
@@ -0,0 +1,85 @@
+From 7304c888e57a581e9dc8ef2005e960ec579d58f4 Mon Sep 17 00:00:00 2001
+From: Bernd Waibel 
+Date: Sat, 9 Nov 2019 17:15:27 +0100
+Subject: [PATCH] Gentoo-specific: disable internal 3RDPARTY_QT_DIR
+
+The patch disables searching for internal 3rd-party Qt. Instead
+system installed Qt is used. The call to find_package uses REQUIRED
+flag for this.
+
+Signed-off-by: Bernd Waibel 
+---
+ adm/cmake/qt.cmake   | 24 
+ adm/cmake/qt_macro.cmake |  6 +++---
+ 2 files changed, 15 insertions(+), 15 deletions(-)
+
+diff --git a/adm/cmake/qt.cmake b/adm/cmake/qt.cmake
+index 6958bab5..b6a9b794 100644
+--- a/adm/cmake/qt.cmake
 b/adm/cmake/qt.cmake
+@@ -3,27 +3,27 @@
+ # Qt is searched manually first (just determine root)
+ message (STATUS "Processing Qt 3-rd party")
+ 
+-if (NOT DEFINED ${3RDPARTY_QT_DIR} AND ${3RDPARTY_QT_DIR} STREQUAL "")
+-  FIND_PRODUCT_DIR ("${3RDPARTY_DIR}" Qt 3RDPARTY_QT_DIR_NAME)
++#if (NOT DEFINED ${3RDPARTY_QT_DIR} AND ${3RDPARTY_QT_DIR} STREQUAL "")
++#  FIND_PRODUCT_DIR ("${3RDPARTY_DIR}" Qt 3RDPARTY_QT_DIR_NAME)
+ 
+-  if (NOT DEFINED ${3RDPARTY_QT_DIR_NAME} AND ${3RDPARTY_QT_DIR_NAME} 
STREQUAL "")
+-message (FATAL_ERROR "... Qt root directory was not found")
+-  endif()
++#  if (NOT DEFINED ${3RDPARTY_QT_DIR_NAME} AND ${3RDPARTY_QT_DIR_NAME} 
STREQUAL "")
++#message (FATAL_ERROR "... Qt root directory was not found")
++#  endif()
+ 
+   # Combine directory name with absolute path and show in GUI
+-  set (3RDPARTY_QT_DIR "${3RDPARTY_DIR}/${3RDPARTY_QT_DIR_NAME}" CACHE PATH 
"The directory containing Qt" FORCE)
+-  message (STATUS "Info: Qt is used from folder: ${3RDPARTY_QT_DIR}")
+-endif()
++#  set (3RDPARTY_QT_DIR "${3RDPARTY_DIR}/${3RDPARTY_QT_DIR_NAME}" CACHE PATH 
"The directory containing Qt" FORCE)
++#  message (STATUS "Info: Qt is used from folder: ${3RDPARTY_QT_DIR}")
++#endif()
+ 
+-set (USED_3RDPARTY_QT_DIR "${3RDPARTY_QT_DIR}")
++#set (USED_3RDPARTY_QT_DIR "${3RDPARTY_QT_DIR}")
+ 
+ # Now set CMAKE_PREFIX_PATH to point to local Qt installation.
+ # Without this setting find_package() will not work
+-set(CMAKE_PREFIX_PATH ${3RDPARTY_QT_DIR})
++#set(CMAKE_PREFIX_PATH ${3RDPARTY_QT_DIR})
+ 
+ # Now we can apply standard CMake finder for Qt5. We do this mostly
+ # to have qt5_wrap_cpp() function available and Qt5_FOUND variable filled
+-find_package(Qt5 QUIET COMPONENTS Widgets Quick Xml PATHS ${3RDPARTY_QT_DIR} 
NO_DEFAULT_PATH)
++find_package(Qt5 COMPONENTS Widgets Quick Xml REQUIRED)
+ if (NOT ${Qt5_FOUND})
+   # Now we can apply standard CMake finder for Qt. We do this mostly
+   # to have qt4_wrap_cpp() function available
+@@ -31,4 +31,4 @@ if (NOT ${Qt5_FOUND})
+   #message (STATUS "Qt4 cmake configuration")
+ else()
+   #message (STATUS "Qt5 cmake configuration")
+-endif()
+\ No newline at end of file
++endif()
+diff 

[gentoo-commits] repo/gentoo:master commit in: sci-electronics/kicad/

2019-11-16 Thread Joonas Niilola
commit: 1a534031708f50cb8486a619ba3eabfd5d0dac81
Author: Zoltan Puskas  sinustrom  info>
AuthorDate: Sat Nov 16 09:22:39 2019 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sun Nov 17 07:45:47 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a534031

sci-electronics/kicad: Enforce non-deprecated media-libs/glm version

Closes: https://bugs.gentoo.org/699350
Package-Manager: Portage-2.3.79, Repoman-2.3.18
Signed-off-by: Zoltan Puskas  sinustrom.info>
Closes: https://github.com/gentoo/gentoo/pull/13673
Signed-off-by: Joonas Niilola  gentoo.org>

 sci-electronics/kicad/kicad-5.1.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-electronics/kicad/kicad-5.1.4.ebuild 
b/sci-electronics/kicad/kicad-5.1.4.ebuild
index 7922baa2fd5..773db8d09c9 100644
--- a/sci-electronics/kicad/kicad-5.1.4.ebuild
+++ b/sci-electronics/kicad/kicad-5.1.4.ebuild
@@ -31,7 +31,7 @@ COMMON_DEPEND="x11-libs/wxGTK:${WX_GTK_VER}[X,opengl]
>=dev-libs/boost-1.61:=[context,nls,threads,python?,${PYTHON_USEDEP}]
github? ( net-misc/curl:=[ssl] )
media-libs/glew:0=
-   media-libs/glm
+   >=media-libs/glm-0.9.9.1
media-libs/freeglut
media-libs/mesa[X(+)]
ngspice? (



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

2019-11-16 Thread Joonas Niilola
commit: 8957c257630872d06d2da1e86658d4d2cce2f536
Author: Martin Dummer  gmx  net>
AuthorDate: Fri Nov 15 21:55:06 2019 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sun Nov 17 07:45:46 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8957c257

media-plugins/vdr-dvbhddevice: remove old ebuilds

remove old vdr-dvbhddevice-2.1.3_p20140115-r1
remove old vdr-dvbhddevice-2.1.6_p20141116-r1

Closes: https://bugs.gentoo.org/672320
Package-Manager: Portage-2.3.78, Repoman-2.3.17
Signed-off-by: Martin Dummer  gmx.net>
Closes: https://github.com/gentoo/gentoo/pull/13669
Signed-off-by: Joonas Niilola  gentoo.org>

 media-plugins/vdr-dvbhddevice/Manifest |  1 -
 .../vdr-dvbhddevice-2.1.3_p20140115-r1.ebuild  | 46 --
 .../vdr-dvbhddevice-2.1.6_p20141116-r1.ebuild  | 45 -
 3 files changed, 92 deletions(-)

diff --git a/media-plugins/vdr-dvbhddevice/Manifest 
b/media-plugins/vdr-dvbhddevice/Manifest
index 692433b91d7..b1dcd23dde3 100644
--- a/media-plugins/vdr-dvbhddevice/Manifest
+++ b/media-plugins/vdr-dvbhddevice/Manifest
@@ -1,3 +1,2 @@
 DIST dvbhddevice-2.1.3_p20140115.tar.gz 40424 BLAKE2B 
99d5fece7557c7c9f2b0174c9b1f01ac7628f0f0b6aa954f3e829de4653e10cbed6d0516b966f69737aff9ffafd224b3558bd868e972b64ab60c965ba569555a
 SHA512 
29729325affec5e1330cf361a0c82ee5ef9f48f9a6a5032881b331a6451c05c8d99831c43e3eb08129053a7549dd4cd73a5e0afc6fe04d35956c8fecad48d2f4
-DIST vdr-dvbhddevice-2.1.6_p20141116.tar.gz 40902 BLAKE2B 
60829c76226c1f0254ac6cdd940fcbcbf08d4cf0a50bfd9ab992db80f63f07389ab29cd4a04aec6319744a39e86cce7dbfee240ab77e819726facd9dbc6d7964
 SHA512 
0189cf5bfd1d9648915ec65427b4eeeb85ac80281a07a910e65381d86913c37d5840abd8984f17028afe63eae457c7ce398a446e3ad4b70ae4deada316c14b5b
 DIST vdr-dvbhddevice-2.2.0_p20180420.tar.gz 42772 BLAKE2B 
c70842be34181b15aab69f5a62ba98f4cc72ad5148db684a45ae5c6b74431517b70cda72dbfb6abc371675fd2742f86000b02c645bfba5b6a6b64817f5c59b35
 SHA512 
bc6ede24897a7704ecefcfdca92eeaf1bf9f8ed2410a478a21cc712730bfe94616c01379a172214f664481fba636ee3aea33540a6cf258597015dfb73720c408

diff --git 
a/media-plugins/vdr-dvbhddevice/vdr-dvbhddevice-2.1.3_p20140115-r1.ebuild 
b/media-plugins/vdr-dvbhddevice/vdr-dvbhddevice-2.1.3_p20140115-r1.ebuild
deleted file mode 100644
index 02e0463d33c..000
--- a/media-plugins/vdr-dvbhddevice/vdr-dvbhddevice-2.1.3_p20140115-r1.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit vdr-plugin-2
-
-HG_REVISION="60c58ae453d0"
-HG_REVISION_DATE="20140115"
-
-DESCRIPTION="VDR Plugin: output device for the 'Full Featured' TechnoTrend
-S2-6400 DVB Card"
-HOMEPAGE="https://bitbucket.org/powARman/dvbhddevice;
-SRC_URI="https://bitbucket.org/powARman/dvbhddevice/get/${HG_REVISION}.tar.gz
--> dvbhddevice-2.1.3_p${HG_REVISION_DATE}.tar.gz"
-
-KEYWORDS="~amd64 ~x86"
-SLOT="0"
-LICENSE="GPL-2"
-IUSE=""
-
-DEPEND=">=media-video/vdr-1.7.39"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/dvbhddevice-${HG_REVISION}"
-
-src_prepare() {
-   vdr-plugin-2_src_prepare
-
-   fix_vdr_libsi_include dvbhdffdevice.c
-
-   if has_version ">=media-video/vdr-2.1.10"; then
-   sed -e "s:pm = RenderPixmaps():pm = dynamic_cast(RenderPixmaps()):"\
-   -e "s:delete pm;:DestroyPixmap(pm);:"\
-   -i hdffosd.c
-   fi
-}
-
-src_install() {
-   vdr-plugin-2_src_install
-
-   doheader dvbhdffdevice.h hdffcmd.h
-
-   insinto /usr/include/libhdffcmd
-   doins libhdffcmd/*.h
-}

diff --git 
a/media-plugins/vdr-dvbhddevice/vdr-dvbhddevice-2.1.6_p20141116-r1.ebuild 
b/media-plugins/vdr-dvbhddevice/vdr-dvbhddevice-2.1.6_p20141116-r1.ebuild
deleted file mode 100644
index a2da1c862ae..000
--- a/media-plugins/vdr-dvbhddevice/vdr-dvbhddevice-2.1.6_p20141116-r1.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit vdr-plugin-2
-
-HG_REVISION="88cd727ebc99"
-HG_REVISION_DATE="20141116"
-
-DESCRIPTION="VDR Plugin: output device for the 'Full Featured' TechnoTrend
-S2-6400 DVB Card"
-HOMEPAGE="https://bitbucket.org/powARman/dvbhddevice;
-SRC_URI="https://bitbucket.org/powARman/dvbhddevice/get/${HG_REVISION}.tar.gz 
->
-   ${P}.tar.gz"
-
-KEYWORDS="~amd64 ~x86"
-SLOT="0"
-LICENSE="GPL-2"
-IUSE=""
-
-DEPEND=">=media-video/vdr-2.0.0"
-
-S="${WORKDIR}/powARman-${VDRPLUGIN}-${HG_REVISION}"
-
-src_prepare() {
-   vdr-plugin-2_src_prepare
-
-   fix_vdr_libsi_include dvbhdffdevice.c
-
-   if has_version ">=media-video/vdr-2.1.10"; then
-   sed -e "s:pm = RenderPixmaps():pm = dynamic_cast(RenderPixmaps()):"\
-   -e "s:delete pm;:DestroyPixmap(pm);:"\
-   -i hdffosd.c
-   fi
-}
-
-src_install() {
-   vdr-plugin-2_src_install
-
-   

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

2019-11-16 Thread Joonas Niilola
commit: f4ebc1fab685b476e62c614e3ee6be000831d6c8
Author: Ralph Seichter  seichter  de>
AuthorDate: Thu Nov 14 20:53:47 2019 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sun Nov 17 07:45:47 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4ebc1fa

www-servers/nginx-unit: Removed obsolete ebuilds

Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Ralph Seichter  seichter.de>
Closes: https://github.com/gentoo/gentoo/pull/13654
Signed-off-by: Joonas Niilola  gentoo.org>

 www-servers/nginx-unit/nginx-unit-1.12.0-r1.ebuild | 72 
 www-servers/nginx-unit/nginx-unit-1.12.0-r2.ebuild | 78 --
 www-servers/nginx-unit/nginx-unit-1.12.0.ebuild| 68 ---
 3 files changed, 218 deletions(-)

diff --git a/www-servers/nginx-unit/nginx-unit-1.12.0-r1.ebuild 
b/www-servers/nginx-unit/nginx-unit-1.12.0-r1.ebuild
deleted file mode 100644
index 9554af89ad6..000
--- a/www-servers/nginx-unit/nginx-unit-1.12.0-r1.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=(python2_7 python3_{5,6,7})
-
-inherit python-single-r1
-
-MY_P="unit-${PV}"
-DESCRIPTION="Dynamic web and application server"
-HOMEPAGE="https://unit.nginx.org;
-SRC_URI="https://unit.nginx.org/download/${MY_P}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-MY_USE="perl python ruby"
-MY_USE_PHP="php5-6 php7-1 php7-2 php7-3"
-IUSE="${MY_USE} ${MY_USE_PHP} ssl"
-REQUIRED_USE="|| ( ${IUSE} )
-   python? ( ${PYTHON_REQUIRED_USE} )"
-
-DEPEND="perl? ( dev-lang/perl:= )
-   php5-6? ( dev-lang/php:5.6[embed] )
-   php7-1? ( dev-lang/php:7.1[embed] )
-   php7-2? ( dev-lang/php:7.2[embed] )
-   php7-3? ( dev-lang/php:7.3[embed] )
-   python? ( ${PYTHON_DEPS} )
-   ruby? ( dev-lang/ruby:= )
-   ssl? ( dev-libs/openssl:= )"
-RDEPEND="${DEPEND}"
-S="${WORKDIR}/${MY_P}"
-
-pkg_setup() {
-   use python && python-single-r1_pkg_setup
-}
-
-src_configure() {
-   local opt=(
-   --control=unix:/run/${PN}.sock
-   --log=/var/log/${PN}
-   --modules=$(get_libdir)/${PN}
-   --pid=/run/${PN}.pid
-   --prefix=/usr
-   --state=/var/lib/${PN}
-   )
-   use ssl && opt+=( --openssl )
-
-   ./configure ${opt[@]} --cc-opt="${CFLAGS}" --ld-opt="${LDFLAGS}" || die 
"Core configuration failed"
-   for flag in ${MY_USE} ; do
-   if use ${flag} ; then
-   ./configure ${flag} || die "Module configuration 
failed: ${flag}"
-   fi
-   done
-   for flag in ${MY_USE_PHP} ; do
-   if use ${flag} ; then
-   local php_slot="/usr/$(get_libdir)/${flag/-/.}"
-   ./configure php \
-   --module=${flag} \
-   --config=${php_slot}/bin/php-config \
-   --lib-path=${php_slot}/$(get_libdir) || die 
"Module configuration failed: ${flag}"
-   fi
-   done
-}
-
-src_install() {
-   default
-   diropts -m 0770
-   keepdir /var/lib/${PN}
-   newinitd "${FILESDIR}/${PN}.initd" ${PN}
-}

diff --git a/www-servers/nginx-unit/nginx-unit-1.12.0-r2.ebuild 
b/www-servers/nginx-unit/nginx-unit-1.12.0-r2.ebuild
deleted file mode 100644
index 3627ea90fa4..000
--- a/www-servers/nginx-unit/nginx-unit-1.12.0-r2.ebuild
+++ /dev/null
@@ -1,78 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=(python2_7 python3_{5,6,7})
-
-inherit flag-o-matic python-single-r1
-
-MY_P="unit-${PV}"
-DESCRIPTION="Dynamic web and application server"
-HOMEPAGE="https://unit.nginx.org;
-SRC_URI="https://unit.nginx.org/download/${MY_P}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-MY_USE="perl python ruby"
-MY_USE_PHP="php5-6 php7-1 php7-2 php7-3"
-IUSE="${MY_USE} ${MY_USE_PHP} ssl"
-REQUIRED_USE="|| ( ${IUSE} )
-   python? ( ${PYTHON_REQUIRED_USE} )"
-
-DEPEND="perl? ( dev-lang/perl:= )
-   php5-6? ( dev-lang/php:5.6[embed] )
-   php7-1? ( dev-lang/php:7.1[embed] )
-   php7-2? ( dev-lang/php:7.2[embed] )
-   php7-3? ( dev-lang/php:7.3[embed] )
-   python? ( ${PYTHON_DEPS} )
-   ruby? ( dev-lang/ruby:* )
-   ssl? ( dev-libs/openssl:0 )"
-RDEPEND="${DEPEND}"
-S="${WORKDIR}/${MY_P}"
-
-pkg_setup() {
-   use python && python-single-r1_pkg_setup
-}
-
-src_prepare() {
-   eapply_user
-   sed -i '/^CFLAGS/d' auto/make || die
-}
-
-src_configure() {
-   local opt=(
-   --control=unix:/run/${PN}.sock
-   --log=/var/log/${PN}
-   --modules=$(get_libdir)/${PN}
-   --pid=/run/${PN}.pid
-   --prefix=/usr
-   

[gentoo-commits] repo/gentoo:master commit in: media-plugins/vdr-dvbhddevice/files/, media-plugins/vdr-dvbhddevice/

2019-11-16 Thread Joonas Niilola
commit: 528dafa8662eaf776e6d582e928a04dcc6b4e9e2
Author: Martin Dummer  gmx  net>
AuthorDate: Fri Nov 15 21:29:27 2019 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sun Nov 17 07:45:46 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=528dafa8

media-plugins/vdr-dvbhddevice: fix gcc-9 compile issue

does not compile with gcc-9, fixed
add a patch to fix it

Closes: https://bugs.gentoo.org/693418
Package-Manager: Portage-2.3.78, Repoman-2.3.17
Signed-off-by: Martin Dummer  gmx.net>
Signed-off-by: Joonas Niilola  gentoo.org>

 .../vdr-dvbhddevice/files/convert-bool-fix.patch   | 36 ++
 .../vdr-dvbhddevice-2.2.0_p20180420.ebuild | 14 ++---
 2 files changed, 45 insertions(+), 5 deletions(-)

diff --git a/media-plugins/vdr-dvbhddevice/files/convert-bool-fix.patch 
b/media-plugins/vdr-dvbhddevice/files/convert-bool-fix.patch
new file mode 100644
index 000..0bdc79fba94
--- /dev/null
+++ b/media-plugins/vdr-dvbhddevice/files/convert-bool-fix.patch
@@ -0,0 +1,36 @@
+fix cannot convert bool to boolean wrt bug #693418
+
+Signed-of-by: Joerg Bornkessel  (13 Nov 2019)
+diff -Naur powARman-dvbhddevice-2ea854ae8c7a.orig/dvbhdffdevice.c 
powARman-dvbhddevice-2ea854ae8c7a/dvbhdffdevice.c
+--- powARman-dvbhddevice-2ea854ae8c7a.orig/dvbhdffdevice.c 2019-11-13 
18:46:50.0 +0100
 powARman-dvbhddevice-2ea854ae8c7a/dvbhdffdevice.c  2019-11-13 
18:48:12.0 +0100
+@@ -1069,15 +1069,15 @@
+ }
+  else {
+ esyslog("ERROR: out of memory");
+-return false;
++return FALSE;
+ }
+  if (jcd->mem) {
+ cinfo->dest->next_output_byte = jcd->mem + Used;
+ cinfo->dest->free_in_buffer = jcd->size - Used;
+-return true;
++return TRUE;
+ }
+  }
+-  return false;
++  return FALSE;
+ }
+ 
+ static void JpegCompressTermDestination(j_compress_ptr cinfo)
+@@ -1122,8 +1122,8 @@
+   cinfo.in_color_space = JCS_YCbCr;
+ 
+   jpeg_set_defaults();
+-  jpeg_set_quality(, Quality, true);
+-  jpeg_start_compress(, true);
++  jpeg_set_quality(, Quality, TRUE);
++  jpeg_start_compress(, TRUE);
+ 
+   int rs = Width * 3;
+   JSAMPROW rp[Height];

diff --git 
a/media-plugins/vdr-dvbhddevice/vdr-dvbhddevice-2.2.0_p20180420.ebuild 
b/media-plugins/vdr-dvbhddevice/vdr-dvbhddevice-2.2.0_p20180420.ebuild
index 9f21531f038..67fe2ca2c87 100644
--- a/media-plugins/vdr-dvbhddevice/vdr-dvbhddevice-2.2.0_p20180420.ebuild
+++ b/media-plugins/vdr-dvbhddevice/vdr-dvbhddevice-2.2.0_p20180420.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2018 Gentoo Authors
+# Copyright 2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -8,8 +8,7 @@ inherit vdr-plugin-2
 HG_REVISION="2ea854ae8c7a"
 HG_REVISION_DATE="20180420"
 
-DESCRIPTION="VDR Plugin: output device for the 'Full Featured' TechnoTrend
-S2-6400 DVB Card"
+DESCRIPTION="VDR Plugin: output device for the 'Full Featured' TechnoTrend 
S2-6400 DVB Card"
 HOMEPAGE="https://bitbucket.org/powARman/dvbhddevice;
 SRC_URI="https://bitbucket.org/powARman/dvbhddevice/get/${HG_REVISION}.tar.gz 
->
${P}.tar.gz"
@@ -17,17 +16,22 @@ 
SRC_URI="https://bitbucket.org/powARman/dvbhddevice/get/${HG_REVISION}.tar.gz ->
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE=""
 
 DEPEND=">=media-video/vdr-2.0.0"
 RDEPEND="${DEPEND}"
 
+PATCHES=(
+   "${FILESDIR}/convert-bool-fix.patch"
+   "${FILESDIR}/define_AUDIO_GET_PTS.patch" )
+QA_FLAGS_IGNORED="
+   usr/lib/vdr/plugins/libvdr-dvbhddevice.*
+   usr/lib64/vdr/plugins/libvdr-dvbhddevice.*"
+
 S="${WORKDIR}/powARman-${VDRPLUGIN}-${HG_REVISION}"
 
 src_prepare() {
vdr-plugin-2_src_prepare
 
-   eapply "${FILESDIR}/define_AUDIO_GET_PTS.patch"
fix_vdr_libsi_include dvbhdffdevice.c
 }
 



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

2019-11-16 Thread Joonas Niilola
commit: 9906366308c5c5e9e342660e3707fd278b6e7bbf
Author: Ralph Seichter  seichter  de>
AuthorDate: Thu Nov 14 20:50:36 2019 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sun Nov 17 07:45:47 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99063663

www-servers/nginx-unit: Bump to version 1.13.0

Upstream release 1.13.0, changelog available here:
http://unit.nginx.org/CHANGES.txt

Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Ralph Seichter  seichter.de>
Signed-off-by: Joonas Niilola  gentoo.org>

 www-servers/nginx-unit/Manifest |  1 +
 www-servers/nginx-unit/nginx-unit-1.13.0.ebuild | 80 +
 2 files changed, 81 insertions(+)

diff --git a/www-servers/nginx-unit/Manifest b/www-servers/nginx-unit/Manifest
index 1d0e3a28f48..1b19103ae93 100644
--- a/www-servers/nginx-unit/Manifest
+++ b/www-servers/nginx-unit/Manifest
@@ -1,2 +1,3 @@
 DIST nginx-unit-1.12.0.tar.gz 681661 BLAKE2B 
1e497172a37fdcd33d0ced5b97675bff42f4cadab2f9363316e667c90c8b4dc4b43f4b8d5cff9f547daa7e92d532550434907515134a5c958586f1822beea749
 SHA512 
a55a084ed6e1cd3f784bd81571772ca29ca9a0d19089c9bb74c88258d2e1ef872978219c47b6dc2610711ae1aa95ef68ddb77f45747a2eacdd9d92c6f8fee28b
+DIST nginx-unit-1.13.0.tar.gz 693159 BLAKE2B 
fd2e803188e66c16d5956f26e693c81273b1f3f69c9b68209f15bca6abd0e06b9fb9e03eb32ab640b8f601260b439abee1c4aa9cd03ed92fd26ab55893a6a6ab
 SHA512 
cf33295604040963545b04f72f1a894431d4ee22a2c7b9560f18a694f110ee3bf243c90f65cfa4760a0009a5a7b132b75e1bb51439b19255e15148e8f4e9b9a7
 DIST nginx-unit-1.8.0.tar.gz 511226 BLAKE2B 
e396b27954840a5f1ad3a4cd9501a5e5fe769a754c51043da784a2c4596e6acc33089f495bf412a0db086e5c715a51292c7dece004a6512564421a431b6c339e
 SHA512 
1d0ad05343ff70aff4c6e221a36c20df95fa2e2262ae5c69963a9bcb9ef883151e8a2fa9fef29f43ac5489aa5cbb3e9dfd10cf5e7f6d7a98742b490ebf3a0413

diff --git a/www-servers/nginx-unit/nginx-unit-1.13.0.ebuild 
b/www-servers/nginx-unit/nginx-unit-1.13.0.ebuild
new file mode 100644
index 000..b398e40980a
--- /dev/null
+++ b/www-servers/nginx-unit/nginx-unit-1.13.0.ebuild
@@ -0,0 +1,80 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=(python2_7 python3_{5,6,7})
+
+inherit flag-o-matic python-single-r1
+
+MY_P="unit-${PV}"
+DESCRIPTION="Dynamic web and application server"
+HOMEPAGE="https://unit.nginx.org;
+SRC_URI="https://unit.nginx.org/download/${MY_P}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+MY_USE="perl python ruby"
+MY_USE_PHP="php5-6 php7-1 php7-2 php7-3"
+IUSE="${MY_USE} ${MY_USE_PHP} ssl"
+REQUIRED_USE="|| ( ${IUSE} )
+   python? ( ${PYTHON_REQUIRED_USE} )"
+
+DEPEND="perl? ( dev-lang/perl:= )
+   php5-6? ( dev-lang/php:5.6[embed] )
+   php7-1? ( dev-lang/php:7.1[embed] )
+   php7-2? ( dev-lang/php:7.2[embed] )
+   php7-3? ( dev-lang/php:7.3[embed] )
+   python? ( ${PYTHON_DEPS} )
+   ruby? ( dev-lang/ruby:* )
+   ssl? ( dev-libs/openssl:0 )"
+RDEPEND="${DEPEND}"
+S="${WORKDIR}/${MY_P}"
+
+pkg_setup() {
+   use python && python-single-r1_pkg_setup
+}
+
+src_prepare() {
+   eapply_user
+   sed -i '/^CFLAGS/d' auto/make || die
+}
+
+src_configure() {
+   local opt=(
+   --control=unix:/run/${PN}.sock
+   --log=/var/log/${PN}
+   --modules=$(get_libdir)/${PN}
+   --pid=/run/${PN}.pid
+   --prefix=/usr
+   --state=/var/lib/${PN}
+   )
+   use ssl && opt+=( --openssl )
+   export AR="$(tc-getAR)"
+   export CC="$(tc-getCC)"
+   ./configure ${opt[@]} --ld-opt="${LDFLAGS}" || die "Core configuration 
failed"
+   # Modules require position-independent code
+   append-cflags $(test-flags-CC -fPIC)
+   for flag in ${MY_USE} ; do
+   if use ${flag} ; then
+   ./configure ${flag} || die "Module configuration 
failed: ${flag}"
+   fi
+   done
+   for flag in ${MY_USE_PHP} ; do
+   if use ${flag} ; then
+   local php_slot="/usr/$(get_libdir)/${flag/-/.}"
+   ./configure php \
+   --module=${flag} \
+   --config=${php_slot}/bin/php-config \
+   --lib-path=${php_slot}/$(get_libdir) || die 
"Module configuration failed: ${flag}"
+   fi
+   done
+}
+
+src_install() {
+   default
+   diropts -m 0770
+   keepdir /var/lib/${PN}
+   newinitd "${FILESDIR}/${PN}.initd" ${PN}
+}



[gentoo-commits] repo/gentoo:master commit in: x11-terms/terminology/

2019-11-16 Thread Joonas Niilola
commit: bf796bde235b823ff0c9174c08d169b3131bb835
Author: Joonas Niilola  gentoo  org>
AuthorDate: Sun Nov 17 06:43:40 2019 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sun Nov 17 07:45:46 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf796bde

x11-terms/terminology: bump to 1.6.0

Package-Manager: Portage-2.3.79, Repoman-2.3.17
Signed-off-by: Joonas Niilola  gentoo.org>

 x11-terms/terminology/Manifest |  1 +
 x11-terms/terminology/terminology-1.6.0.ebuild | 44 ++
 2 files changed, 45 insertions(+)

diff --git a/x11-terms/terminology/Manifest b/x11-terms/terminology/Manifest
index 3ccfc33bec1..be7e637d77a 100644
--- a/x11-terms/terminology/Manifest
+++ b/x11-terms/terminology/Manifest
@@ -1 +1,2 @@
 DIST terminology-1.5.0.tar.xz 4884284 BLAKE2B 
fff45958207bd6e06b8685ebe42ca734b183da9042940b773e15308200c27307f417a930a687c187a5f24f1eab9d1b7a518314b3cd919d260bb05369a2f2236c
 SHA512 
ade2363e0a834b25a67157d0cfa946b3b09d8a2941fd7da9dd3792cf8d201f218c7723b691eab325d9bdadeefddfea56c19e562ebc37466cb3a9b3b45c9f708b
+DIST terminology-1.6.0.tar.xz 4893348 BLAKE2B 
20c9b8a916a4cd48055839266a157d5d8fca70557f7fb8b61696ceeaf4bc0fd93ea5abc0930d1c552a816e3fa3e455624f62d4adbad7feacc9cd0e874a91feec
 SHA512 
ef95a5d128736a2e6b3b9e48a3f32a8e3a1f19ccabcb9fa429ed777ee201ba16fa431a61edafaebc018567f4a3657d81551407cf0449f58b416aa1e6077afec1

diff --git a/x11-terms/terminology/terminology-1.6.0.ebuild 
b/x11-terms/terminology/terminology-1.6.0.ebuild
new file mode 100644
index 000..65b045e742a
--- /dev/null
+++ b/x11-terms/terminology/terminology-1.6.0.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit meson xdg-utils
+
+DESCRIPTION="Feature rich terminal emulator using the Enlightenment Foundation 
Libraries"
+HOMEPAGE="https://www.enlightenment.org/about-terminology;
+SRC_URI="https://download.enlightenment.org/rel/apps/${PN}/${P}.tar.xz;
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+IUSE="extras nls"
+
+RDEPEND="
+   || ( dev-libs/efl[gles2] dev-libs/efl[opengl] )
+   || ( dev-libs/efl[X] dev-libs/efl[wayland] )
+   app-arch/lz4
+   dev-libs/efl[eet,fontconfig]
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+   virtual/pkgconfig
+   nls? ( sys-devel/gettext )
+"
+
+src_configure() {
+   local emesonargs=(
+   $(meson_use nls)
+   $(meson_use extras tests)
+   )
+
+   meson_src_configure
+}
+
+pkg_postinst() {
+   xdg_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_icon_cache_update
+}



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

2019-11-16 Thread Hans de Graaff
commit: 39371335644781c1cce2568879cde29cc1f4692e
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Nov 17 06:10:07 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Nov 17 07:36:22 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39371335

dev-ruby/activeldap: cleanup

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

 dev-ruby/activeldap/Manifest|  1 -
 dev-ruby/activeldap/activeldap-5.2.3.ebuild | 40 -
 2 files changed, 41 deletions(-)

diff --git a/dev-ruby/activeldap/Manifest b/dev-ruby/activeldap/Manifest
index 798a6501f7d..61994ed2481 100644
--- a/dev-ruby/activeldap/Manifest
+++ b/dev-ruby/activeldap/Manifest
@@ -1,3 +1,2 @@
 DIST activeldap-4.0.6.gem 225280 BLAKE2B 
0f03ef95f3d0600d2661eab048c8dda3fbabe519add67f7785895e346d835d1e0396270f829f16a982f12863c80378be2f4f7ff7cf84016007b005b1914cec15
 SHA512 
03053e3798b557c73c3a0918b72d1d3c2cada4da3475913ef17a6f9f2f1ac1e102052459ef1a6d8c25ce41382b64c1a3097ccba1c768497a33a3a971b9778d3b
-DIST activeldap-5.2.3.gem 226304 BLAKE2B 
5ac747f9c854071da941bd7dc3bbf151eb9f6b190a725b0daca9a9c76b1aafa9fcb609c16098924c3f9bda6f25d9968c4a715a0f2994333c233a950f809cf862
 SHA512 
30fb4b70975e5a911d736ce8579f3ff0c13d326499660a6fdd25bc4e4d20ad615c038c0b50bdf1722775f6313e9c132a004c86fdb9d3a356f78171f78c5d171b
 DIST activeldap-5.2.4.gem 226304 BLAKE2B 
f13b5a1cf423b44087d55d3a4957be1444d598ab1d1bd7d83ee545a2806b77b47124edcb326fc567eb06e866c62a2ad0c3dafd903232588f824bc2978c197d60
 SHA512 
da37cfa20c8be7151669ba3b409994c668b037a2f318b1b034f6fa9c0e56a9a778b03a26415cbd98c8ba3fa1d487d42343bc0532665c1037880e75474a1c708f

diff --git a/dev-ruby/activeldap/activeldap-5.2.3.ebuild 
b/dev-ruby/activeldap/activeldap-5.2.3.ebuild
deleted file mode 100644
index 9b763decfa5..000
--- a/dev-ruby/activeldap/activeldap-5.2.3.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-USE_RUBY="ruby23 ruby24 ruby25"
-
-RUBY_FAKEGEM_TASK_DOC=""
-RUBY_FAKEGEM_EXTRADOC="README.textile TODO doc/text/*"
-RUBY_FAKEGEM_EXTRAINSTALL="po"
-
-inherit ruby-fakegem
-
-MY_P="${P/ruby-/}"
-DESCRIPTION="ActiveLDAP provides an activerecord inspired object oriented 
interface to LDAP"
-HOMEPAGE="https://github.com/activeldap/activeldap;
-
-LICENSE="GPL-2"
-SLOT="5"
-KEYWORDS="~amd64"
-IUSE=""
-
-# Most tests require a live LDAP server to run.
-RESTRICT="test"
-
-ruby_add_rdepend "
-   >dev-ruby/activemodel-4.0.0:*
-   dev-ruby/builder
-   dev-ruby/locale
-   dev-ruby/ruby-gettext
-   dev-ruby/gettext_i18n_rails
-   || ( dev-ruby/ruby-net-ldap >=dev-ruby/ruby-ldap-0.8.2 )"
-
-all_ruby_install() {
-   all_fakegem_install
-
-   dodoc doc/text/*
-
-   insinto /usr/share/doc/${PF}
-   doins -r examples
-}



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

2019-11-16 Thread Hans de Graaff
commit: 685d5097a8659255beb0e2a1b57a8d2d3f0997fa
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Nov 17 06:09:27 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Nov 17 07:36:21 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=685d5097

dev-ruby/asciidoctor: cleanup

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

 dev-ruby/asciidoctor/Manifest |  1 -
 dev-ruby/asciidoctor/asciidoctor-2.0.7.ebuild | 44 ---
 2 files changed, 45 deletions(-)

diff --git a/dev-ruby/asciidoctor/Manifest b/dev-ruby/asciidoctor/Manifest
index 1a0c1695143..0e15d509f39 100644
--- a/dev-ruby/asciidoctor/Manifest
+++ b/dev-ruby/asciidoctor/Manifest
@@ -1,4 +1,3 @@
 DIST asciidoctor-1.5.8.tar.gz 583484 BLAKE2B 
f0c654c5e43a0ed061dbf80eb382fac1ea393870c7c2530649a5a41f1a5bd5e72ffb11e8ad8dd2925510e18f4528079ae532b623e6e7f38a119565df01139f58
 SHA512 
3f767cdf945361d81b0a89137fb1e77377cbb4171da790027cbb9cd8cf1deb03f24a8ec780b427b7bce34538e851a44682515fbaccf8558d61e22356b9d216dd
 DIST asciidoctor-2.0.10.tar.gz 613180 BLAKE2B 
46125c85276eb0c7cf4404ca04d854449233e2cd14e24687aed9f95eb64ceb6ebac3d3ed73918679b9a5b047e41d82d02383d0e08acd0df5cc9bc216f14c79a3
 SHA512 
9ef908081569188d9903c7a7619fe0b50197f6f0cc922c4070e116bcd3f988a55da87443e84b6e260aabcc653a804fcaf29b96a722ab36f7ebb27ec11eb7ddbe
-DIST asciidoctor-2.0.7.tar.gz 609712 BLAKE2B 
261732ef068d7382870ef2b0f194e3b97c61d1f3db1800a7ad0acc24f53e803b35cc5e12eb55b8cbe6727d0d472d7e4e496afb26bf60ee3d49d9a163f3e8292d
 SHA512 
e79a76d97edc804153ec461a5f8482e1322bfc6b268b168e80617f06e5f114dbae6d703cb2f11c43ecb8b678fa11f22dbeb80aaf6daf34940683a31925e52927
 DIST asciidoctor-2.0.9.tar.gz 611530 BLAKE2B 
48f3c3447bacf009dbdf1529780a60fd144bd18951991623319dc30c1009e96dc28f84a7dab38431d1efc0a9f09494aae3e83f6b5959d5684fb167731826e07b
 SHA512 
17e9358bc98f34f1b8dab4781b48705acf6afa0aaa0c8dcd22183bf3d5a275e0afff96d7ecae140e908894e18a54c5b693acd6826f68892a99ec3dd0a4ea61e7

diff --git a/dev-ruby/asciidoctor/asciidoctor-2.0.7.ebuild 
b/dev-ruby/asciidoctor/asciidoctor-2.0.7.ebuild
deleted file mode 100644
index d5f86a08b52..000
--- a/dev-ruby/asciidoctor/asciidoctor-2.0.7.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-USE_RUBY="ruby24 ruby25"
-
-RUBY_FAKEGEM_TASK_TEST="test features"
-RUBY_FAKEGEM_RECIPE_DOC="rdoc"
-RUBY_FAKEGEM_EXTRADOC="CHANGELOG.adoc README.adoc"
-
-RUBY_FAKEGEM_EXTRAINSTALL="data"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Processor for converting AsciiDoc into HTML 5, DocBook 4.5 and 
other formats"
-HOMEPAGE="https://github.com/asciidoctor/asciidoctor;
-SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86"
-IUSE=""
-
-ruby_add_bdepend "test? (
-   dev-util/cucumber
-   dev-ruby/rspec-expectations:*
-   dev-ruby/asciimath
-   dev-ruby/coderay
-   dev-ruby/erubis
-   dev-ruby/haml
-   dev-ruby/nokogiri
-   dev-ruby/slim
-   dev-ruby/thread_safe
-   dev-ruby/tilt )"
-
-all_ruby_prepare() {
-   rm Gemfile || die
-}
-
-all_ruby_install() {
-   all_fakegem_install
-
-   doman man/asciidoctor.1
-}



[gentoo-commits] repo/gentoo:master commit in: virtual/ruby-ssl/

2019-11-16 Thread Hans de Graaff
commit: c2033061c94eb24aba94dd2e2fb4f8570c5b6a09
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Nov 17 06:39:54 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Nov 17 07:36:23 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2033061

virtual/ruby-ssl: cleanup

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

 virtual/ruby-ssl/ruby-ssl-10.ebuild | 24 
 1 file changed, 24 deletions(-)

diff --git a/virtual/ruby-ssl/ruby-ssl-10.ebuild 
b/virtual/ruby-ssl/ruby-ssl-10.ebuild
deleted file mode 100644
index 70f8f5aeb55..000
--- a/virtual/ruby-ssl/ruby-ssl-10.ebuild
+++ /dev/null
@@ -1,24 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-USE_RUBY="ruby24 ruby25"
-
-inherit ruby-ng
-
-DESCRIPTION="Virtual ebuild for the Ruby OpenSSL bindings"
-SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
-
-RDEPEND="
-   ruby_targets_ruby24? ( dev-lang/ruby:2.4[ssl] )
-   ruby_targets_ruby25? ( dev-lang/ruby:2.5[ssl] )
-"
-
-pkg_setup() { :; }
-src_unpack() { :; }
-src_prepare() { eapply_user; }
-src_compile() { :; }
-src_install() { :; }
-pkg_preinst() { :; }
-pkg_postinst() { :; }



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

2019-11-16 Thread Hans de Graaff
commit: c644c998d25d37b0a0c91f3da7646af905f9d850
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Nov 17 06:41:15 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Nov 17 07:36:24 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c644c998

dev-ruby/recog: cleanup

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

 dev-ruby/recog/Manifest|  1 -
 dev-ruby/recog/recog-2.1.46.ebuild | 39 --
 2 files changed, 40 deletions(-)

diff --git a/dev-ruby/recog/Manifest b/dev-ruby/recog/Manifest
index c16e6f6f6fc..c9def2fb70e 100644
--- a/dev-ruby/recog/Manifest
+++ b/dev-ruby/recog/Manifest
@@ -1,4 +1,3 @@
-DIST recog-2.1.46.gem 246784 BLAKE2B 
1b151fb6944371d186154ecc28eb74f6727b92394bf3686fb7230603e64a37438dc63293929b63025794ae053304ced7f74da4d530d24f77a6274ffe69cfff7d
 SHA512 
aae48fc9a91e7f750944a97e562789efde14474b42d063dcb2dacd038e78fd20222719e0f17d66c8a13b7261e2e58567bad4db0a84893724a5c04504d35efbc0
 DIST recog-2.3.2.gem 259584 BLAKE2B 
035cdcb23fa837798fd256d00eb3cfa11b6ebeefd218c3c00a0f68ad1311efc6ce62a3db537cdc7a692d77e10b45c63f7c391314b05ca93c9afc269e67e7ba24
 SHA512 
0deb0e2354bab3ae190b0b71d370755de802d679a37a2d907fcc6503a12120e27d607bd3f31db62f678e4488228977132f3816a4586e5e85ba37f7ff6cd27733
 DIST recog-2.3.4.gem 262656 BLAKE2B 
ca2ea05844f5fde74859b22a9f710e5a9f0d44d789d49fb2c8502f4f09f5e5a3772d4a4187e5f0c10ec250c84599defc9dc86dd5602a7bdc7586f07ed14df350
 SHA512 
4ebf2ce4d502eb103eb3d10b7c01f3e43a402b90d8883f76cedb93edea32f31d196c4141c11264739f73ee9afe8590c50a368897a1286ff408d4454e89622be6
 DIST recog-2.3.5.gem 263168 BLAKE2B 
da850cc08e7ffebd34e040eac15ecc62ab857c61d8a65cf5e9889f94c0173204ef8de5c712c89ddfc67c9d6bb8c01c09c702547de1bbdd7b12d121e4f4fefe7b
 SHA512 
a45bc81c17edc9e431aa945678c77c573e2d1ad2352b4b4862492108cda0620145f6dc04a7d7ff2a6b456db32ed0348af4e61cd2be187f9d3de2b421f1f4e4ce

diff --git a/dev-ruby/recog/recog-2.1.46.ebuild 
b/dev-ruby/recog/recog-2.1.46.ebuild
deleted file mode 100644
index 1f8f71315a9..000
--- a/dev-ruby/recog/recog-2.1.46.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-USE_RUBY="ruby24 ruby25"
-RUBY_FAKEGEM_BINWRAP=""
-RUBY_FAKEGEM_RECIPE_DOC="rdoc"
-RUBY_FAKEGEM_EXTRADOC="README.md"
-
-RUBY_FAKEGEM_EXTRAINSTALL="xml"
-
-inherit ruby-fakegem eapi7-ver
-
-DESCRIPTION="Pattern recognition for hosts, services, and content"
-HOMEPAGE="https://github.com/rapid7/recog;
-
-LICENSE="BSD-2"
-SLOT="$(ver_cut 1)"
-KEYWORDS="~amd64 ~arm ~x86"
-IUSE=""
-
-ruby_add_rdepend "dev-ruby/nokogiri
-   !0.2"' 
spec/spec_helper.rb || die
-}
-
-each_ruby_test() {
-   RSPEC_VERSION=3 ruby-ng_rspec
-   ruby-ng_cucumber
-}



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

2019-11-16 Thread Hans de Graaff
commit: f90862a0315c6929943a7ff2f9700fa20404d73d
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Nov 17 06:10:43 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Nov 17 07:36:22 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f90862a0

dev-ruby/acme-client: cleanup

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

 dev-ruby/acme-client/Manifest |  2 --
 dev-ruby/acme-client/acme-client-2.0.2.ebuild | 22 -
 dev-ruby/acme-client/acme-client-2.0.3.ebuild | 35 ---
 3 files changed, 59 deletions(-)

diff --git a/dev-ruby/acme-client/Manifest b/dev-ruby/acme-client/Manifest
index 7fb31d3fe51..10bbe460f91 100644
--- a/dev-ruby/acme-client/Manifest
+++ b/dev-ruby/acme-client/Manifest
@@ -1,4 +1,2 @@
-DIST acme-client-2.0.2.gem 19968 BLAKE2B 
7a877d86ac4828fec08edd606b2f4f31788454ebe8109b1e94d28f33d00b0a3e49aa7ad8d3b46fa2440bcd1d7cda1c53ab91d6be6280dfeb0e5ccddcac02ed25
 SHA512 
e02fe9f919f8d5356bc60d0b6f2d05db42e5d6671762bfac45aafb118647e2d0b50cd7336dfa1f0983432e2bddb0344d1b240bd674e31ad14385adc15d58e1e1
-DIST acme-client-2.0.3.tar.gz 203320 BLAKE2B 
f5bc600c58b29429b8615b0d8cdadade9a4c7018068c356cfd481eee8b7718c19e736c620a752ef1a68ae70e8f641f3fb2ef7bcd44b70ac63cc97bad19ab3579
 SHA512 
c2b2bcba1cfe9184922cdfaafd02bdb51abf11cb39457e89f0670098bf9d240332129144fd4a7fcbc214a1496dbde576236ea15634b70f8f3fe22304d769f0c2
 DIST acme-client-2.0.4.tar.gz 206295 BLAKE2B 
5758a940e91036de04183ace9d076649cce220e18c92abbbf683026fd4fc1d05b3d2c735553648daac0f57f5e4c5c865679607d38f663af7623bd60fac99eff1
 SHA512 
3e8998ddedc69c6d2a15927be278ef055d1be0fe906c499504ecba811189e5ebbd9c1f54df8692bc0135766dfc8cfbd80f27ee345eab8bcd0126fac62be33742
 DIST acme-client-2.0.5.tar.gz 162456 BLAKE2B 
e01ffd790f404e0ac7a5fe42ef6d4819387dc810bb5c6856e51810b125f5020c3790003eb99e9560ab1618d7d3a420b63e4c1de9cc98e97a4a742ade6bfde54f
 SHA512 
f2f59f2536a5de918147c3b26285c9498eaf082f67d8e3c96036b61a05e3c265a37d7e23f91c03ef7a02ca99bcfec755bc0a9e2bf766ee7b6ffaae1ad1b7c4ab

diff --git a/dev-ruby/acme-client/acme-client-2.0.2.ebuild 
b/dev-ruby/acme-client/acme-client-2.0.2.ebuild
deleted file mode 100644
index b08c6ae1fd4..000
--- a/dev-ruby/acme-client/acme-client-2.0.2.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-USE_RUBY="ruby23 ruby24 ruby25"
-
-RUBY_FAKEGEM_RECIPE_DOC="rdoc"
-RUBY_FAKEGEM_BINDIR="FALSE" # bin/ contains only dev tooling
-
-inherit ruby-fakegem
-
-DESCRIPTION="A Ruby client for the letsencrypt's ACME protocol."
-HOMEPAGE="https://github.com/unixcharles/acme-client;
-
-LICENSE="MIT"
-
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-ruby_add_rdepend ">=dev-ruby/faraday-0.9.1"

diff --git a/dev-ruby/acme-client/acme-client-2.0.3.ebuild 
b/dev-ruby/acme-client/acme-client-2.0.3.ebuild
deleted file mode 100644
index 6c9c64a75ee..000
--- a/dev-ruby/acme-client/acme-client-2.0.3.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-USE_RUBY="ruby24 ruby25 ruby26"
-
-RUBY_FAKEGEM_RECIPE_DOC="rdoc"
-RUBY_FAKEGEM_BINWRAP=""
-
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
-
-inherit ruby-fakegem
-
-DESCRIPTION="A Ruby client for the letsencrypt's ACME protocol."
-HOMEPAGE="https://github.com/unixcharles/acme-client;
-SRC_URI="https://github.com/unixcharles/acme-client/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="MIT"
-
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-ruby_add_rdepend ">=dev-ruby/faraday-0.9.1:0"
-
-ruby_add_bdepend "test? (
-   >=dev-ruby/vcr-2.9.3
-   dev-ruby/webmock
-)"
-
-all_ruby_prepare() {
-   # Skip failing test where incorrect der value is retrieved, may be 
openssl 1.1.x related.
-   sed -i -e '/assigns the public key/apending' 
spec/certificate_request_spec.rb || die
-}



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

2019-11-16 Thread Hans de Graaff
commit: 44d590adaf1977114f08fdfd72f2e60ad230c8d7
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Nov 17 06:14:11 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Nov 17 07:36:23 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44d590ad

app-admin/mcollective: add ruby26

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

 app-admin/mcollective/mcollective-2.12.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/mcollective/mcollective-2.12.5.ebuild 
b/app-admin/mcollective/mcollective-2.12.5.ebuild
index efeca85ce46..689393b26c6 100644
--- a/app-admin/mcollective/mcollective-2.12.5.ebuild
+++ b/app-admin/mcollective/mcollective-2.12.5.ebuild
@@ -3,7 +3,7 @@
 
 EAPI="6"
 
-USE_RUBY="ruby23 ruby24 ruby25"
+USE_RUBY="ruby23 ruby24 ruby25 ruby26"
 
 inherit ruby-ng
 



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

2019-11-16 Thread Hans de Graaff
commit: 3818c8336dd6cc345c2f19b21c11595724a6b953
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Nov 17 06:08:04 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Nov 17 07:36:21 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3818c833

dev-ruby/asciimath: cleanup

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

 dev-ruby/asciimath/Manifest   |  2 --
 dev-ruby/asciimath/asciimath-1.0.6.ebuild | 20 
 dev-ruby/asciimath/asciimath-1.0.7.ebuild | 20 
 3 files changed, 42 deletions(-)

diff --git a/dev-ruby/asciimath/Manifest b/dev-ruby/asciimath/Manifest
index 43d17be593c..b5fc6fd6631 100644
--- a/dev-ruby/asciimath/Manifest
+++ b/dev-ruby/asciimath/Manifest
@@ -1,5 +1,3 @@
 DIST asciimath-1.0.4.gem 14336 BLAKE2B 
84aac2d2b987f72a17288cee6d00197c429e04c216fad62ecd23b5f3eebe9590ead519df86cdaf99246dcfee4c18bab67176a0d47a1b864de6e44bdb4b90b70c
 SHA512 
e99e6f869dda3e0236392039e6dccf5912b095e32ee7acbfb4684a5d723d05f4d3c9961554d5beab2a3d703b1ef50c45ed15c0dbda2179ab35d3b1b6b8759b49
-DIST asciimath-1.0.6.gem 17920 BLAKE2B 
ccd35f77f7ff9312baf1de81d9c1c15009e9efea7be000ed2afad86b06697bb967980baab1f04a73503cd374c062d68ba99d6e42528ffe3d1c16a8f768813f7f
 SHA512 
cecfdeb063e0dd2da9c92ec4ac51d30334d19f10ca2cde9380c740e61a1be435793bd5e6ae7795d1c4147056faaef0d44ea422b6ff8207cb11c8125422872f24
-DIST asciimath-1.0.7.gem 18432 BLAKE2B 
9f1b959d594987f049f3e17394a305e037cbf4aa86c7c21324cb5f1f7a2a06c361fbf56cee5488ab0c8bbbac8f3a581f11a5e5a2407b36d28c4b4a106051df3c
 SHA512 
3b2e5894fed09919e2576054dceecd70fc255bf414dbd826ccdda71cd69875c204c4d4d2ed85777612a4919a975b1a2427ff83cacb2720dee1d6f53c1f8fd079
 DIST asciimath-1.0.8.gem 18432 BLAKE2B 
2877b387ca3da2d657d78e134296ec621b839688843f94428f7bb64d74625bd6a0a3f533bb5a832510ec64c789b43338f48fb13b0ac561c308b15172e5fb4e6d
 SHA512 
02717069498bb8f6757c3411be1c16473363f4d69f82fdd6075cdee740ecbd742e6a6e97b22355adc8657e5df166834106c9cd8482336ffeff76debc2b0d45a5
 DIST asciimath-1.0.9.gem 18944 BLAKE2B 
3ccc3f594d7a0d8b6996349d85356179ef3a9052a84f923ad1d0976e42f58670a350473b41d1c4a0c4f70a3cc4687e6adaa7987bd811ef32bd3da41f100f4246
 SHA512 
32c4f2cb7e9d330c371e9b9abcdf9e31bf44014c5c0b0044589302116b55840a2e1a41ab006d61a2258e4a5c2d4a772dad77f579150fc9bf099a7a4d19c6cd44

diff --git a/dev-ruby/asciimath/asciimath-1.0.6.ebuild 
b/dev-ruby/asciimath/asciimath-1.0.6.ebuild
deleted file mode 100644
index 106e4236978..000
--- a/dev-ruby/asciimath/asciimath-1.0.6.ebuild
+++ /dev/null
@@ -1,20 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-USE_RUBY="ruby23 ruby24 ruby25"
-
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
-
-RUBY_FAKEGEM_RECIPE_DOC="rdoc"
-RUBY_FAKEGEM_EXTRADOC="CHANGELOG.adoc README.adoc"
-
-inherit ruby-fakegem
-
-DESCRIPTION="A pure Ruby AsciiMath parsing and conversion library"
-HOMEPAGE="https://github.com/pepijnve/asciimath;
-
-LICENSE="MIT"
-SLOT="1"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
-IUSE=""

diff --git a/dev-ruby/asciimath/asciimath-1.0.7.ebuild 
b/dev-ruby/asciimath/asciimath-1.0.7.ebuild
deleted file mode 100644
index 2d1cf1b320b..000
--- a/dev-ruby/asciimath/asciimath-1.0.7.ebuild
+++ /dev/null
@@ -1,20 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-USE_RUBY="ruby23 ruby24 ruby25 ruby26"
-
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
-
-RUBY_FAKEGEM_RECIPE_DOC="rdoc"
-RUBY_FAKEGEM_EXTRADOC="CHANGELOG.adoc README.adoc"
-
-inherit ruby-fakegem
-
-DESCRIPTION="A pure Ruby AsciiMath parsing and conversion library"
-HOMEPAGE="https://github.com/pepijnve/asciimath;
-
-LICENSE="MIT"
-SLOT="1"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
-IUSE=""



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/hiera-eyaml-gpg/

2019-11-16 Thread Hans de Graaff
commit: 328678b979ac3548ef8861ad5328a1bd3819d50c
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Nov 17 06:42:05 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Nov 17 07:36:24 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=328678b9

dev-ruby/hiera-eyaml-gpg: cleanup

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

 dev-ruby/hiera-eyaml-gpg/Manifest  |  2 --
 .../hiera-eyaml-gpg/hiera-eyaml-gpg-0.7.2.ebuild   | 25 --
 .../hiera-eyaml-gpg/hiera-eyaml-gpg-0.7.3.ebuild   | 25 --
 3 files changed, 52 deletions(-)

diff --git a/dev-ruby/hiera-eyaml-gpg/Manifest 
b/dev-ruby/hiera-eyaml-gpg/Manifest
index d043e693fa5..1e292be765f 100644
--- a/dev-ruby/hiera-eyaml-gpg/Manifest
+++ b/dev-ruby/hiera-eyaml-gpg/Manifest
@@ -1,3 +1 @@
-DIST hiera-eyaml-gpg-0.7.2.gem 14336 BLAKE2B 
e8a2e5666a930a0955302b0d3cb505c00c936e01db095f56c746de2945830a3adff70b86bb68a74637f87d80ade8aade697b22ec3b263310edc3673f8a8c22e2
 SHA512 
4d27db9d1ab9d5e7368e92ea003aef776a6da5e078b0b7dc22a494680521b69168e2220d7311fc27c6896828ce4fc5182b6b66dd92a9a9ae42b0086e31e2634c
-DIST hiera-eyaml-gpg-0.7.3.gem 14336 BLAKE2B 
2a08dc3251f6e28be3a027778dd7a30f7d186ec06965cb5ceb93c4f9ff361b49a4d220323e3a8576cedf6d8b487bed6c14e2203314370faf26417207ef011e58
 SHA512 
4cd1005b1775af2a433b9d91c7cb16bb854bee3a818f566134549663bd620f1a4e2a14dca6be5b319c5a95c26b464d8f438d51b876f21e6190b4210283f838af
 DIST hiera-eyaml-gpg-0.7.4.gem 14848 BLAKE2B 
68d6fb4047dcc80ceca5350459a60c42f7d3db753491b94c4710920ddd484eaf0bee76f3381a2fa663795baec58e6d26614782f7f1a88933152cce8cc284457c
 SHA512 
5cee22e435f7bcc1e4a9d4775ecdf0eb9cd70cf3e26870107920993df480082f7bebd7d488b060880407a7debd11c7b9a202f8f3a99da811ae8f49f17a7495e6

diff --git a/dev-ruby/hiera-eyaml-gpg/hiera-eyaml-gpg-0.7.2.ebuild 
b/dev-ruby/hiera-eyaml-gpg/hiera-eyaml-gpg-0.7.2.ebuild
deleted file mode 100644
index 2478858b46d..000
--- a/dev-ruby/hiera-eyaml-gpg/hiera-eyaml-gpg-0.7.2.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-USE_RUBY="ruby24 ruby25"
-
-RUBY_FAKEGEM_TASK_TEST=""
-
-RUBY_FAKEGEM_TASK_DOC=""
-RUBY_FAKEGEM_EXTRADOC="README.md"
-
-inherit ruby-fakegem
-
-DESCRIPTION="A GPG backend for hiera-eyaml"
-HOMEPAGE="https://github.com/sihil/hiera-eyaml-gpg;
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-ruby_add_rdepend "
-   >=dev-ruby/hiera-eyaml-1.3.8:*
-   >=dev-ruby/gpgme-2.0.0
-"

diff --git a/dev-ruby/hiera-eyaml-gpg/hiera-eyaml-gpg-0.7.3.ebuild 
b/dev-ruby/hiera-eyaml-gpg/hiera-eyaml-gpg-0.7.3.ebuild
deleted file mode 100644
index 2478858b46d..000
--- a/dev-ruby/hiera-eyaml-gpg/hiera-eyaml-gpg-0.7.3.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-USE_RUBY="ruby24 ruby25"
-
-RUBY_FAKEGEM_TASK_TEST=""
-
-RUBY_FAKEGEM_TASK_DOC=""
-RUBY_FAKEGEM_EXTRADOC="README.md"
-
-inherit ruby-fakegem
-
-DESCRIPTION="A GPG backend for hiera-eyaml"
-HOMEPAGE="https://github.com/sihil/hiera-eyaml-gpg;
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-ruby_add_rdepend "
-   >=dev-ruby/hiera-eyaml-1.3.8:*
-   >=dev-ruby/gpgme-2.0.0
-"



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

2019-11-16 Thread Hans de Graaff
commit: 2fc2cfc2838a23bb3b4d798152f6739d96c496ee
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Nov 17 07:36:07 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Nov 17 07:36:25 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2fc2cfc2

app-admin/fluentd: add ruby26

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

 app-admin/fluentd/fluentd-1.4.2.ebuild | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/app-admin/fluentd/fluentd-1.4.2.ebuild 
b/app-admin/fluentd/fluentd-1.4.2.ebuild
index 9bb8568d1eb..137927eb85a 100644
--- a/app-admin/fluentd/fluentd-1.4.2.ebuild
+++ b/app-admin/fluentd/fluentd-1.4.2.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
-USE_RUBY="ruby23 ruby24 ruby25"
+USE_RUBY="ruby23 ruby24 ruby25 ruby26"
 
 RUBY_FAKEGEM_RECIPE_DOC="rdoc"
 
@@ -35,6 +35,9 @@ all_ruby_prepare() {
-e '/tzinfo-data/d' \
-e '/dig_rb/d' \
"${PN}".gemspec || die "'sed failed"
+
+   # Avoid test dependency on unpackaged oj
+   rm -f test/test_event_time.rb || die
 }
 
 all_ruby_install() {



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

2019-11-16 Thread Hans de Graaff
commit: df6d820867e89679d8c9d93df809f09ce6e2a99c
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Nov 17 06:57:57 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Nov 17 07:36:25 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df6d8208

dev-ruby/serverengine: add 2.2.0

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

 dev-ruby/serverengine/Manifest  |  1 +
 dev-ruby/serverengine/serverengine-2.2.0.ebuild | 34 +
 2 files changed, 35 insertions(+)

diff --git a/dev-ruby/serverengine/Manifest b/dev-ruby/serverengine/Manifest
index 93f348fc214..57e1c7be03c 100644
--- a/dev-ruby/serverengine/Manifest
+++ b/dev-ruby/serverengine/Manifest
@@ -1 +1,2 @@
 DIST serverengine-2.1.1.gem 38912 BLAKE2B 
110adef1bfc4538dcbd9cddc5aabcda00f0e6276f3092cccd54bdd92d644bc6121300c1963276d3bbb810fc2be44c9c833d1d74b524b3d7faae8424b98e45e3f
 SHA512 
627ba0ad0235536009ed22cca017d23d76ad7863b9ed83e90504d374bb3c1b887c73ed0b120378327485ba7c68a18bf354228529da84e134ac4d3b6dd96d14e1
+DIST serverengine-2.2.0.gem 38912 BLAKE2B 
78af0816c480613e7e85ebd9d1061888af311a4eff045b59e4224cb86738193fe0bef25d435c891231b7b7c3397f25970b8ddd8fead09393e9fe7824bce03025
 SHA512 
a6ef8fc094a1306524357c740ba198d0ac0fecbd1716e873ce25d3caae9874e4c73424c5fb4e3d60886bb9e613651288f24085ae7c0a244bcd27c606d5a843c7

diff --git a/dev-ruby/serverengine/serverengine-2.2.0.ebuild 
b/dev-ruby/serverengine/serverengine-2.2.0.ebuild
new file mode 100644
index 000..8895caeaffc
--- /dev/null
+++ b/dev-ruby/serverengine/serverengine-2.2.0.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+USE_RUBY="ruby24 ruby25 ruby26"
+
+RUBY_FAKEGEM_EXTRADOC="Changelog README.md"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A framework to implement robust multiprocess servers"
+HOMEPAGE="https://github.com/fluent/serverengine;
+LICENSE="Apache-2.0"
+
+KEYWORDS="~amd64"
+SLOT="0"
+IUSE=""
+
+ruby_add_rdepend ">=dev-ruby/sigdump-0.2.2:0"
+
+ruby_add_bdepend "test? ( dev-ruby/bundler )"
+
+all_ruby_prepare() {
+   sed -i -e '/rake/ s/~>/>=/' \
+   -e '/rspec/ s/2.13.0/2.13/' \
+   -e '/rake-compiler/ s:^:#:' serverengine.gemspec || die
+}
+
+each_ruby_test() {
+   # The specs spawn ruby processes with bundler support
+   ${RUBY} -S bundle exec rspec-2 spec || die
+}



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

2019-11-16 Thread Matt Turner
commit: 4402c74ef87bd8044c9dcad4768574d6396e4a78
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Nov 17 07:21:32 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Nov 17 07:21:32 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4402c74e

media-gfx/graphviz-2.42.1: alpha stable, bug 682522

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

 media-gfx/graphviz/graphviz-2.42.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-gfx/graphviz/graphviz-2.42.1.ebuild 
b/media-gfx/graphviz/graphviz-2.42.1.ebuild
index 1710e154429..a87a88648f0 100644
--- a/media-gfx/graphviz/graphviz-2.42.1.ebuild
+++ b/media-gfx/graphviz/graphviz-2.42.1.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://www2.graphviz.org/Packages/stable/portable_source/${P}.tar.gz;
 
 LICENSE="CPL-1.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~x64-solaris"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~x64-solaris"
 IUSE="+cairo devil doc examples gdk-pixbuf gtk gts guile java lasi nls pdf 
perl postscript python qt5 ruby static-libs svg tcl X elibc_FreeBSD"
 
 REQUIRED_USE="



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

2019-11-16 Thread Matt Turner
commit: f9273a6be4ac111d63476ca9c4c007051788edd2
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Nov 17 07:21:33 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Nov 17 07:21:33 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9273a6b

app-text/qpdf-9.0.2: alpha stable, bug 693002

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

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

diff --git a/app-text/qpdf/qpdf-9.0.2.ebuild b/app-text/qpdf/qpdf-9.0.2.ebuild
index 40a3dbbfdc0..be3dc4724ee 100644
--- a/app-text/qpdf/qpdf-9.0.2.ebuild
+++ b/app-text/qpdf/qpdf-9.0.2.ebuild
@@ -12,7 +12,7 @@ LICENSE="|| ( Apache-2.0 Artistic-2 )"
 # subslot = libqpdf soname version
 SLOT="0/26"
 
-KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sparc x86 
~amd64-linux ~x86-linux ~m68k-mint ~sparc-solaris"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sparc x86 
~amd64-linux ~x86-linux ~m68k-mint ~sparc-solaris"
 IUSE="doc examples perl static-libs test"
 
 CDEPEND="



[gentoo-commits] repo/gentoo:master commit in: net-print/cups-filters/

2019-11-16 Thread Matt Turner
commit: 757340ed87cd1c924ec0bff13213669c62072466
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Nov 17 07:21:34 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Nov 17 07:21:34 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=757340ed

net-print/cups-filters-1.25.11: alpha stable, bug 693002

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

 net-print/cups-filters/cups-filters-1.25.11.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-print/cups-filters/cups-filters-1.25.11.ebuild 
b/net-print/cups-filters/cups-filters-1.25.11.ebuild
index b61e061745e..eb646671dff 100644
--- a/net-print/cups-filters/cups-filters-1.25.11.ebuild
+++ b/net-print/cups-filters/cups-filters-1.25.11.ebuild
@@ -12,7 +12,7 @@ if [[ "${PV}" == "" ]] ; then
EGIT_REPO_URI="https://github.com/OpenPrinting/cups-filters.git;
 else
SRC_URI="http://www.openprinting.org/download/${PN}/${P}.tar.xz;
-   KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sparc 
x86 ~m68k-mint"
+   KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sparc 
x86 ~m68k-mint"
 fi
 DESCRIPTION="Cups filters"
 HOMEPAGE="https://wiki.linuxfoundation.org/openprinting/cups-filters;



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

2019-11-16 Thread Matt Turner
commit: 219b266e7a97798a0e20a1ce36ab12267f0dfd9a
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Nov 17 07:21:35 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Nov 17 07:21:35 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=219b266e

app-text/mupdf-1.16.1: alpha stable, bug 699980

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

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

diff --git a/app-text/mupdf/mupdf-1.16.1.ebuild 
b/app-text/mupdf/mupdf-1.16.1.ebuild
index cf24e2fd164..80ab08f54cb 100644
--- a/app-text/mupdf/mupdf-1.16.1.ebuild
+++ b/app-text/mupdf/mupdf-1.16.1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://mupdf.com/downloads/archive/${P}-source.tar.xz;
 
 LICENSE="AGPL-3"
 SLOT="0/${PV}"
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ia64 ppc ppc64 s390 x86 ~amd64-linux 
~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="alpha amd64 ~arm arm64 ~hppa ia64 ppc ppc64 s390 x86 ~amd64-linux 
~ppc-macos ~x64-macos ~x86-macos"
 IUSE="X +javascript libressl opengl ssl static-libs"
 
 # Although we use the bundled, patched version of freeglut in mupdf (because of



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

2019-11-16 Thread Matt Turner
commit: 68f388f4b3d8bdb460617d9d896f36148ab6ec4c
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Nov 17 07:21:36 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Nov 17 07:21:36 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68f388f4

media-libs/tiff-4.1.0: alpha stable, bug 699868

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

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

diff --git a/media-libs/tiff/tiff-4.1.0.ebuild 
b/media-libs/tiff/tiff-4.1.0.ebuild
index 755dee7863e..0c0ca3bc33e 100644
--- a/media-libs/tiff/tiff-4.1.0.ebuild
+++ b/media-libs/tiff/tiff-4.1.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://download.osgeo.org/libtiff/${P}.tar.gz;
 
 LICENSE="libtiff"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
~sh sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
~sh sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="+cxx jbig jpeg lzma static-libs test webp zlib zstd"
 RESTRICT="!test? ( test )"
 



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

2019-11-16 Thread Matt Turner
commit: 9cce8fa0f1e1eab5cc87308a4a74d781ff9d32e9
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Nov 17 07:21:36 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Nov 17 07:21:36 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9cce8fa0

media-libs/libjpeg-turbo-2.0.3: alpha stable, bug 699830

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

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

diff --git a/media-libs/libjpeg-turbo/libjpeg-turbo-2.0.3.ebuild 
b/media-libs/libjpeg-turbo/libjpeg-turbo-2.0.3.ebuild
index 3e77f88cc62..c8d52485a08 100644
--- a/media-libs/libjpeg-turbo/libjpeg-turbo-2.0.3.ebuild
+++ b/media-libs/libjpeg-turbo/libjpeg-turbo-2.0.3.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz
 LICENSE="BSD IJG"
 SLOT="0"
 [[ "$(ver_cut 3)" -ge 90 ]] || \
-KEYWORDS="~alpha amd64 ~arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
+KEYWORDS="alpha amd64 ~arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
 IUSE="java static-libs"
 
 ASM_DEPEND="|| ( dev-lang/nasm dev-lang/yasm )"



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

2019-11-16 Thread Matt Turner
commit: 598a444b713d96624475ff2d4c3ea30a28fb34cf
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Nov 17 07:21:33 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Nov 17 07:21:33 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=598a444b

media-libs/jbig2dec-0.17-r1: alpha stable, bug 693002

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

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

diff --git a/media-libs/jbig2dec/jbig2dec-0.17-r1.ebuild 
b/media-libs/jbig2dec/jbig2dec-0.17-r1.ebuild
index ad6d9dc4c72..287042a3e8c 100644
--- a/media-libs/jbig2dec/jbig2dec-0.17-r1.ebuild
+++ b/media-libs/jbig2dec/jbig2dec-0.17-r1.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://github.com/ArtifexSoftware/${PN}/archive/${PV}.tar.gz -> ${P}.t
 
 LICENSE="AGPL-3"
 SLOT="0/$(ver_cut 1-2)" #698428
-KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh 
sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc 
x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="png static-libs test"
 
 BDEPEND="



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

2019-11-16 Thread Matt Turner
commit: 9e8be3ebc0ed6cf22791a8bcc0816fe4f1ba50b3
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Nov 17 07:21:35 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Nov 17 07:21:35 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e8be3eb

media-libs/harfbuzz-2.6.4: alpha stable, bug 699666

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

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

diff --git a/media-libs/harfbuzz/harfbuzz-2.6.4.ebuild 
b/media-libs/harfbuzz/harfbuzz-2.6.4.ebuild
index ee47f7ea901..8217af33d9f 100644
--- a/media-libs/harfbuzz/harfbuzz-2.6.4.ebuild
+++ b/media-libs/harfbuzz/harfbuzz-2.6.4.ebuild
@@ -15,7 +15,7 @@ if [[ ${PV} =  ]] ; then
inherit git-r3 autotools
 else
SRC_URI="https://www.freedesktop.org/software/${PN}/release/${P}.tar.xz;
-   KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ia64 ~mips ppc ppc64 s390 ~sh 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+   KEYWORDS="alpha amd64 ~arm arm64 ~hppa ia64 ~mips ppc ppc64 s390 ~sh 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 fi
 
 LICENSE="Old-MIT ISC icu"



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

2019-11-16 Thread Matt Turner
commit: 77f93d4d37d64bddd57ed9e383005091e0519315
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Nov 17 07:21:32 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Nov 17 07:21:32 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77f93d4d

app-text/ghostscript-gpl-9.50: alpha stable, bug 693002

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

 app-text/ghostscript-gpl/ghostscript-gpl-9.50.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/ghostscript-gpl/ghostscript-gpl-9.50.ebuild 
b/app-text/ghostscript-gpl/ghostscript-gpl-9.50.ebuild
index 6687df22eb8..076a79cca96 100644
--- a/app-text/ghostscript-gpl/ghostscript-gpl-9.50.ebuild
+++ b/app-text/ghostscript-gpl/ghostscript-gpl-9.50.ebuild
@@ -22,7 +22,7 @@ fi
 
 LICENSE="AGPL-3 CPL-1.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh 
sparc x86"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc 
x86"
 IUSE="cups dbus gtk l10n_de static-libs tiff unicode X"
 
 LANGS="ja ko zh-CN zh-TW"



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

2019-11-16 Thread Tim Harder
commit: 690a58eedd225549e5b6570892ae0c81d176ebbf
Author: Tim Harder  gentoo  org>
AuthorDate: Sun Nov 17 06:04:24 2019 +
Commit: Tim Harder  gentoo  org>
CommitDate: Sun Nov 17 06:07:19 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=690a58ee

sys-fs/rar2fs: version bump to 1.28.0

Signed-off-by: Tim Harder  gentoo.org>

 sys-fs/rar2fs/Manifest |  1 +
 sys-fs/rar2fs/rar2fs-1.28.0.ebuild | 29 +
 2 files changed, 30 insertions(+)

diff --git a/sys-fs/rar2fs/Manifest b/sys-fs/rar2fs/Manifest
index ccc6e5e7bd6..2e7ea828a8b 100644
--- a/sys-fs/rar2fs/Manifest
+++ b/sys-fs/rar2fs/Manifest
@@ -1 +1,2 @@
 DIST rar2fs-1.27.2.tar.gz 259516 BLAKE2B 
ffa34fa5e38e22c0055c6a98442ad29a1ee62e215ff5e8fcc88a254a7de2d6c2842608adfeb22edece748dbc7173bba0574132cf8a9e735c5b84c53b0eb1b163
 SHA512 
7316198e1812cb88822e14c115d9dc0d98addeae3c6587888210197139046fb936ad3f1d599c45714c3d127535cf819311d314301249be78b91d66ebfc0fa453
+DIST rar2fs-1.28.0.tar.gz 264753 BLAKE2B 
7f1462fae6e869e64a8c75d85c50df2794f4bfd0b057e5c213eb28a8aa48da53961026c5b9fb752090052c25a02ef9bb2a90bc57cfd8c4097b4c3136f20e7fb1
 SHA512 
e50313d1dae57387f60520ed3ff1d610f4c8448fcff101a9735a4ac1471dc5aa6ac67d0ba5200310caf439cf60ab1e1b8328a7048904970c292f35f700ef5c03

diff --git a/sys-fs/rar2fs/rar2fs-1.28.0.ebuild 
b/sys-fs/rar2fs/rar2fs-1.28.0.ebuild
new file mode 100644
index 000..d7d5e5f041b
--- /dev/null
+++ b/sys-fs/rar2fs/rar2fs-1.28.0.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="A FUSE based filesystem that can mount one or multiple RAR 
archive(s)"
+HOMEPAGE="https://hasse69.github.io/rar2fs/ https://github.com/hasse69/rar2fs;
+SRC_URI="https://github.com/hasse69/${PN}/releases/download/v${PV}/${P}.tar.gz;
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="debug"
+
+# Note that upstream unrar sometimes breaks ABI without updating the SONAME
+# version so try rebuilding rar2fs if it doesn't work following an unrar
+# upgrade.
+RDEPEND=">=app-arch/unrar-5:=
+   sys-fs/fuse:0"
+DEPEND="${RDEPEND}"
+
+src_configure() {
+   export USER_CFLAGS="${CFLAGS}"
+
+   econf \
+   --with-unrar="${ESYSROOT}"/usr/include/libunrar \
+   --disable-static-unrar \
+   $(use_enable debug)
+}



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

2019-11-16 Thread Tim Harder
commit: f01d879a1dd92494a5febb83cc482baa334aafed
Author: Tim Harder  gentoo  org>
AuthorDate: Sun Nov 17 06:05:26 2019 +
Commit: Tim Harder  gentoo  org>
CommitDate: Sun Nov 17 06:07:19 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f01d879a

net-fs/btfs: remove old

Signed-off-by: Tim Harder  gentoo.org>

 net-fs/btfs/Manifest |  2 --
 net-fs/btfs/btfs-2.17.ebuild | 39 ---
 net-fs/btfs/btfs-2.18.ebuild | 39 ---
 3 files changed, 80 deletions(-)

diff --git a/net-fs/btfs/Manifest b/net-fs/btfs/Manifest
index 70e623bf6bd..4f74dc8d321 100644
--- a/net-fs/btfs/Manifest
+++ b/net-fs/btfs/Manifest
@@ -1,4 +1,2 @@
-DIST btfs-2.17.tar.gz 24231 BLAKE2B 
2a66ce18e907f1a905c6d93e12bdf7963561d7dad6861168606e500102afe98de48d9d609af5a9a8955edbfe96b20b26822300aecf2869169a6bbf924c2faf2d
 SHA512 
e4fae52e46581ca382ac4ddd64d80217a9bc0c18cd6317bb4780734c193dcdd9cfed210073b5fd2d8514be2922bb3f0481b13695411e97bb67b7d793f071c3e1
-DIST btfs-2.18.tar.gz 24185 BLAKE2B 
e9e8ca472b3231db66e859cbe28e6a664255aca456e6a0bdd5dd7d4e093b83d0322709c79d00b4d54d73adfdbf8f6d0487ad4ae69357a2f554ac899095416ac2
 SHA512 
d29f3816527c1eed105b45da559d025d61c8652144358227ed0ca3e516582cd8186fdcdf730b19fde6e7e9db1477690237444d2efe7c740f81f91032f1a12f86
 DIST btfs-2.19.tar.gz 24217 BLAKE2B 
19e298fc4629e8292ed87aa817ed78da75df4c90cf1c437c967288a77355efcfee641d65d0d2732a88a78a40574144d06254f2fc4b04be6d0980f683d42552f9
 SHA512 
e890b25605808dbf09f70d4ad8703a4beafb098af39a872a6b98f6959eb30e1ba9be8ae420be0797ba8f2774b487f2434252e93eac599094a824ba411441fdd6
 DIST btfs-2.20.tar.gz 24107 BLAKE2B 
3b9cc89e002e6b19160b1cec6d6c984013714cfb5229924c74921741d8c3e854ac626103f6e51845a3e44a97e30960241dcfe02dd2324953b23ae2ed4464729c
 SHA512 
6a0e0abbe07329daf810fddf2557892ec69659a381c445f7a3ada4a69e422c371d587623a9cb5f079f0738d00fca579af56f37036a2ba8060891d167fa9bb947

diff --git a/net-fs/btfs/btfs-2.17.ebuild b/net-fs/btfs/btfs-2.17.ebuild
deleted file mode 100644
index 4b07e384e01..000
--- a/net-fs/btfs/btfs-2.17.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python{2_7,3_5,3_6} )
-
-inherit autotools python-r1
-
-DESCRIPTION="a bittorrent filesystem based on FUSE"
-HOMEPAGE="https://github.com/johang/btfs;
-SRC_URI="https://github.com/johang/btfs/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-CDEPEND=">=sys-fs/fuse-2.8.0:0
-   >=net-misc/curl-7.22.0
-   dev-libs/boost:=
-   >=net-libs/libtorrent-rasterbar-0.16.0:="
-DEPEND="${CDEPEND}
-   virtual/pkgconfig"
-RDEPEND="${CDEPEND}
-   ${PYTHON_DEPS}"
-
-src_prepare() {
-   default
-
-   # don't install btplay via make
-   sed -i '/^SUBDIRS =/s/scripts//' Makefile.am || die
-
-   eautoreconf
-}
-
-src_install() {
-   default
-   python_foreach_impl python_doscript scripts/btplay
-}

diff --git a/net-fs/btfs/btfs-2.18.ebuild b/net-fs/btfs/btfs-2.18.ebuild
deleted file mode 100644
index 4b07e384e01..000
--- a/net-fs/btfs/btfs-2.18.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python{2_7,3_5,3_6} )
-
-inherit autotools python-r1
-
-DESCRIPTION="a bittorrent filesystem based on FUSE"
-HOMEPAGE="https://github.com/johang/btfs;
-SRC_URI="https://github.com/johang/btfs/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-CDEPEND=">=sys-fs/fuse-2.8.0:0
-   >=net-misc/curl-7.22.0
-   dev-libs/boost:=
-   >=net-libs/libtorrent-rasterbar-0.16.0:="
-DEPEND="${CDEPEND}
-   virtual/pkgconfig"
-RDEPEND="${CDEPEND}
-   ${PYTHON_DEPS}"
-
-src_prepare() {
-   default
-
-   # don't install btplay via make
-   sed -i '/^SUBDIRS =/s/scripts//' Makefile.am || die
-
-   eautoreconf
-}
-
-src_install() {
-   default
-   python_foreach_impl python_doscript scripts/btplay
-}



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

2019-11-16 Thread Tim Harder
commit: 66337fb45fd6ea44577a81498901c83677429fd0
Author: Tim Harder  gentoo  org>
AuthorDate: Sun Nov 17 06:05:13 2019 +
Commit: Tim Harder  gentoo  org>
CommitDate: Sun Nov 17 06:07:19 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66337fb4

net-fs/btfs: version bump to 2.20

Signed-off-by: Tim Harder  gentoo.org>

 net-fs/btfs/Manifest |  1 +
 net-fs/btfs/btfs-2.20.ebuild | 39 +++
 2 files changed, 40 insertions(+)

diff --git a/net-fs/btfs/Manifest b/net-fs/btfs/Manifest
index ac214314a20..70e623bf6bd 100644
--- a/net-fs/btfs/Manifest
+++ b/net-fs/btfs/Manifest
@@ -1,3 +1,4 @@
 DIST btfs-2.17.tar.gz 24231 BLAKE2B 
2a66ce18e907f1a905c6d93e12bdf7963561d7dad6861168606e500102afe98de48d9d609af5a9a8955edbfe96b20b26822300aecf2869169a6bbf924c2faf2d
 SHA512 
e4fae52e46581ca382ac4ddd64d80217a9bc0c18cd6317bb4780734c193dcdd9cfed210073b5fd2d8514be2922bb3f0481b13695411e97bb67b7d793f071c3e1
 DIST btfs-2.18.tar.gz 24185 BLAKE2B 
e9e8ca472b3231db66e859cbe28e6a664255aca456e6a0bdd5dd7d4e093b83d0322709c79d00b4d54d73adfdbf8f6d0487ad4ae69357a2f554ac899095416ac2
 SHA512 
d29f3816527c1eed105b45da559d025d61c8652144358227ed0ca3e516582cd8186fdcdf730b19fde6e7e9db1477690237444d2efe7c740f81f91032f1a12f86
 DIST btfs-2.19.tar.gz 24217 BLAKE2B 
19e298fc4629e8292ed87aa817ed78da75df4c90cf1c437c967288a77355efcfee641d65d0d2732a88a78a40574144d06254f2fc4b04be6d0980f683d42552f9
 SHA512 
e890b25605808dbf09f70d4ad8703a4beafb098af39a872a6b98f6959eb30e1ba9be8ae420be0797ba8f2774b487f2434252e93eac599094a824ba411441fdd6
+DIST btfs-2.20.tar.gz 24107 BLAKE2B 
3b9cc89e002e6b19160b1cec6d6c984013714cfb5229924c74921741d8c3e854ac626103f6e51845a3e44a97e30960241dcfe02dd2324953b23ae2ed4464729c
 SHA512 
6a0e0abbe07329daf810fddf2557892ec69659a381c445f7a3ada4a69e422c371d587623a9cb5f079f0738d00fca579af56f37036a2ba8060891d167fa9bb947

diff --git a/net-fs/btfs/btfs-2.20.ebuild b/net-fs/btfs/btfs-2.20.ebuild
new file mode 100644
index 000..6122c1f065b
--- /dev/null
+++ b/net-fs/btfs/btfs-2.20.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python3_{5,6,7} )
+
+inherit autotools python-r1
+
+DESCRIPTION="a bittorrent filesystem based on FUSE"
+HOMEPAGE="https://github.com/johang/btfs;
+SRC_URI="https://github.com/johang/btfs/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+CDEPEND=">=sys-fs/fuse-2.8.0:0
+   >=net-misc/curl-7.22.0
+   dev-libs/boost:=
+   >=net-libs/libtorrent-rasterbar-0.16.0:="
+DEPEND="${CDEPEND}
+   virtual/pkgconfig"
+RDEPEND="${CDEPEND}
+   ${PYTHON_DEPS}"
+
+src_prepare() {
+   default
+
+   # don't install btplay via make
+   sed -i '/^SUBDIRS =/s/scripts//' Makefile.am || die
+
+   eautoreconf
+}
+
+src_install() {
+   default
+   python_foreach_impl python_doscript scripts/btplay
+}



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

2019-11-16 Thread Hans de Graaff
commit: 06625eaff01221029a5cc34f32354f2755b841ad
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Nov 16 10:35:26 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Nov 17 06:06:18 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06625eaf

dev-ruby/barby: cleanup

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

 dev-ruby/barby/Manifest   |  1 -
 dev-ruby/barby/barby-0.6.6.ebuild | 99 ---
 2 files changed, 100 deletions(-)

diff --git a/dev-ruby/barby/Manifest b/dev-ruby/barby/Manifest
index 5cb6a85199f..a8986389d87 100644
--- a/dev-ruby/barby/Manifest
+++ b/dev-ruby/barby/Manifest
@@ -1,3 +1,2 @@
-DIST barby-0.6.6.tar.gz 95120 BLAKE2B 
e46f261eb11eb2f5b17061e6cbe04419df81d4248a9bed8a5f8f90cba9329915cacf3fa48cc922f4eac14ca7eada87e5be526d9b0d2e0bd1f443daf09af89088
 SHA512 
5b0a00861b9cecee153c5e1f4e1564d99021b3f7f6005efc48d666f8b4255e91f18792d19b9ae635d40f72dbb38de8db215a252b553138be737a52a8ba85c728
 DIST barby-0.6.7.tar.gz 95199 BLAKE2B 
b1729e361a41deee248a3c74c56d072fe0eeb3463ff4730744736e1a523f2844e877d63b058ec02e4cdad1f77620bcd476e823864428aff78b462cf29b20909a
 SHA512 
29ba52612b2390ebd2a9e0acc0eec4a4c119ca305662f47e6656cb63727956877970d14f9b924466fad6e9e927e23f74c2614b41e09ca6b068bdabbaae21f93f
 DIST barby-0.6.8.tar.gz 96647 BLAKE2B 
b0af8e5573dc7d3d1881c793895d1c440b97bb5609b0759f56bdecfed7b4b74080f96301d2511101abb21760074584905fdc4e94938d38e2a553933686ccf976
 SHA512 
1d51dece22febd8c8a234241b88edd3ea93eae328e69fbd8dba3f48afcea7943ec4a72252a74b476aae5812ee132de6b87e37f9fd4c2a43d7c79ec68c831b68c

diff --git a/dev-ruby/barby/barby-0.6.6.ebuild 
b/dev-ruby/barby/barby-0.6.6.ebuild
deleted file mode 100644
index aeeacc4af08..000
--- a/dev-ruby/barby/barby-0.6.6.ebuild
+++ /dev/null
@@ -1,99 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-USE_RUBY="ruby23 ruby24 ruby25"
-
-RUBY_FAKEGEM_TASK_TEST="test"
-
-RUBY_FAKEGEM_EXTRADOC="CHANGELOG README.md"
-
-RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Ruby barcode generator that doesn't rely on 3rd party libraries"
-HOMEPAGE="http://toreto.re/barby/;
-
-GITHUB_USER="toretore"
-SRC_URI="https://github.com/${GITHUB_USER}/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="test qrcode rmagick prawn png cairo"
-
-ruby_add_rdepend "
-   rmagick? ( dev-ruby/rmagick )
-   cairo? ( dev-ruby/rcairo )"
-
-ruby_add_rdepend "qrcode? ( dev-ruby/rqrcode )
-   png? ( dev-ruby/chunky_png )
-   prawn? ( dev-ruby/prawn:* )"
-
-ruby_add_bdepend "test? ( dev-ruby/minitest )"
-
-# testing requires imagemagick capable of png output
-DEPEND+=" test? ( media-gfx/imagemagick[png] )"
-
-# prawn breaks tests for some reasons, needs to be investigated; code
-# still works though.
-RESTRICT="prawn? ( test )"
-
-all_ruby_prepare() {
-   sed -i -e 's/README/README.md/' Rakefile || die
-
-   sed -i -e '/[bB]undler/s:^:#:' test/test_helper.rb || die
-
-   if use qrcode; then
-   sed -i -e '/^end/i s.add_dependency "rqrcode"' 
${RUBY_FAKEGEM_GEMSPEC}
-   else
-   rm \
-   lib/barby/barcode/qr_code.rb \
-   test/qr_code_test.rb
-   fi
-
-   if use rmagick; then
-   sed -i -e '/^end/i s.add_dependency "rmagick"' 
${RUBY_FAKEGEM_GEMSPEC}
-   else
-   rm \
-   lib/barby/outputter/rmagick_outputter.rb \
-   test/outputter/rmagick_outputter_test.rb
-   fi
-
-   if use prawn; then
-   sed -i -e '/^end/i s.add_dependency "prawn"' 
${RUBY_FAKEGEM_GEMSPEC}
-   else
-   rm \
-   lib/barby/outputter/prawn_outputter.rb \
-   test/outputter/prawn_outputter_test.rb
-   fi
-
-   if use png; then
-   sed -i -e '/^end/i s.add_dependency "chunky_png"' 
${RUBY_FAKEGEM_GEMSPEC}
-   else
-   rm \
-   lib/barby/outputter/png_outputter.rb \
-   test/outputter/png_outputter_test.rb
-   fi
-
-   if use cairo; then
-   sed -i -e '/^end/i s.add_dependency "cairo"' 
${RUBY_FAKEGEM_GEMSPEC}
-   else
-   rm \
-   lib/barby/outputter/cairo_outputter.rb \
-   test/outputter/cairo_outputter_test.rb
-   fi
-
-   rm -f \
-   lib/barby/barcode/data_matrix.rb \
-   test/data_matrix_test.rb \
-   lib/barby/outputter/pdfwriter_outputter.rb \
-   test/outputter/pdfwriter_outputter_test.rb || die
-
-   sed -i \
-   -e '/semacode/d' \
-   -e '/pdf-writer/d' \
-   ${RUBY_FAKEGEM_GEMSPEC} || die
-}



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/aws-sdk-core/

2019-11-16 Thread Hans de Graaff
commit: 3582dbb5549a0861661d3c2e7bb49d2ea282bb03
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Nov 17 06:01:26 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Nov 17 06:06:19 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3582dbb5

dev-ruby/aws-sdk-core: add ruby26

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

 dev-ruby/aws-sdk-core/aws-sdk-core-2.11.79.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/aws-sdk-core/aws-sdk-core-2.11.79.ebuild 
b/dev-ruby/aws-sdk-core/aws-sdk-core-2.11.79.ebuild
index 0df6e326a54..9db5e5838f3 100644
--- a/dev-ruby/aws-sdk-core/aws-sdk-core-2.11.79.ebuild
+++ b/dev-ruby/aws-sdk-core/aws-sdk-core-2.11.79.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
 
-USE_RUBY="ruby23 ruby24 ruby25"
+USE_RUBY="ruby23 ruby24 ruby25 ruby26"
 
 RUBY_FAKEGEM_RECIPE_TEST="rspec3"
 RUBY_FAKEGEM_RECIPE_DOC="rdoc"



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/aws-sdk-resources/

2019-11-16 Thread Hans de Graaff
commit: e6a29c8d225aa51d9c1e815bcf2117f5f7a8ee84
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Nov 17 06:03:13 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Nov 17 06:06:19 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6a29c8d

dev-ruby/aws-sdk-resources: add ruby26

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

 dev-ruby/aws-sdk-resources/aws-sdk-resources-2.11.79.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/aws-sdk-resources/aws-sdk-resources-2.11.79.ebuild 
b/dev-ruby/aws-sdk-resources/aws-sdk-resources-2.11.79.ebuild
index 4830ef249d3..0ba1d97e1cc 100644
--- a/dev-ruby/aws-sdk-resources/aws-sdk-resources-2.11.79.ebuild
+++ b/dev-ruby/aws-sdk-resources/aws-sdk-resources-2.11.79.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
 
-USE_RUBY="ruby23 ruby24 ruby25"
+USE_RUBY="ruby23 ruby24 ruby25 ruby26"
 
 RUBY_FAKEGEM_RECIPE_TEST="rspec3"
 RUBY_FAKEGEM_RECIPE_DOC="rdoc"



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

2019-11-16 Thread Hans de Graaff
commit: c1e9d63af22e3517cb49bd103030ed547081c573
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Nov 17 06:06:07 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Nov 17 06:06:20 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1e9d63a

dev-ruby/aws-sdk: add ruby26

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

 dev-ruby/aws-sdk/aws-sdk-2.11.79.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/aws-sdk/aws-sdk-2.11.79.ebuild 
b/dev-ruby/aws-sdk/aws-sdk-2.11.79.ebuild
index 765dc9a50d6..f501f763237 100644
--- a/dev-ruby/aws-sdk/aws-sdk-2.11.79.ebuild
+++ b/dev-ruby/aws-sdk/aws-sdk-2.11.79.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
 
-USE_RUBY="ruby23 ruby24 ruby25"
+USE_RUBY="ruby23 ruby24 ruby25 ruby26"
 
 RUBY_FAKEGEM_RECIPE_TEST=""
 RUBY_FAKEGEM_RECIPE_DOC="rdoc"



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

2019-11-16 Thread Tim Harder
commit: c0cad9689242409aaf47775edd417172eba3aff1
Author: Tim Harder  gentoo  org>
AuthorDate: Sun Nov 17 04:59:10 2019 +
Commit: Tim Harder  gentoo  org>
CommitDate: Sun Nov 17 05:06:56 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0cad968

x11-wm/qtile: drop myself as a maintainer

Signed-off-by: Tim Harder  gentoo.org>

 x11-wm/qtile/metadata.xml | 5 +
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/x11-wm/qtile/metadata.xml b/x11-wm/qtile/metadata.xml
index 7055ada3bf9..318627551c7 100644
--- a/x11-wm/qtile/metadata.xml
+++ b/x11-wm/qtile/metadata.xml
@@ -1,10 +1,7 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   radher...@gentoo.org
-   Tim Harder
-   
+   

qtile/qtile




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

2019-11-16 Thread Tim Harder
commit: d824539915d21d01f5782e12ff08bfe35df430af
Author: Tim Harder  gentoo  org>
AuthorDate: Sun Nov 17 04:56:51 2019 +
Commit: Tim Harder  gentoo  org>
CommitDate: Sun Nov 17 05:06:54 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8245399

sys-process/cronutils: drop myself as a maintainer

Signed-off-by: Tim Harder  gentoo.org>

 sys-process/cronutils/metadata.xml | 5 +
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/sys-process/cronutils/metadata.xml 
b/sys-process/cronutils/metadata.xml
index 737ad5c7cf8..2b0129fd107 100644
--- a/sys-process/cronutils/metadata.xml
+++ b/sys-process/cronutils/metadata.xml
@@ -1,10 +1,7 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   radher...@gentoo.org
-   Tim Harder
-   
+   

Utilities to assist running batch processing jobs.
 



[gentoo-commits] repo/gentoo:master commit in: dev-vcs/hgview/

2019-11-16 Thread Tim Harder
commit: c5a66a9fef5be0b3f6828da249e44d9f31cc85d8
Author: Tim Harder  gentoo  org>
AuthorDate: Sun Nov 17 04:57:51 2019 +
Commit: Tim Harder  gentoo  org>
CommitDate: Sun Nov 17 05:06:55 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5a66a9f

dev-vcs/hgview: drop myself as a maintainer

Signed-off-by: Tim Harder  gentoo.org>

 dev-vcs/hgview/metadata.xml | 5 +
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/dev-vcs/hgview/metadata.xml b/dev-vcs/hgview/metadata.xml
index e6f47dd730b..b94b93f5d3b 100644
--- a/dev-vcs/hgview/metadata.xml
+++ b/dev-vcs/hgview/metadata.xml
@@ -1,10 +1,7 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-  
-radher...@gentoo.org
-Tim Harder
-  
+  
   
 hgview
   



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

2019-11-16 Thread Tim Harder
commit: 7cdf8761386244018529420b4b2b4b763152fece
Author: Tim Harder  gentoo  org>
AuthorDate: Sun Nov 17 04:56:15 2019 +
Commit: Tim Harder  gentoo  org>
CommitDate: Sun Nov 17 05:06:54 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7cdf8761

sys-apps/pick: drop myself as a maintainer

Signed-off-by: Tim Harder  gentoo.org>

 sys-apps/pick/metadata.xml | 5 +
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/sys-apps/pick/metadata.xml b/sys-apps/pick/metadata.xml
index 6eab74ef002..86010d6fff6 100644
--- a/sys-apps/pick/metadata.xml
+++ b/sys-apps/pick/metadata.xml
@@ -1,10 +1,7 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   radher...@gentoo.org
-   Tim Harder
-   
+   

mptre/pick




[gentoo-commits] repo/gentoo:master commit in: app-doc/zsh-lovers/

2019-11-16 Thread Tim Harder
commit: 62d100bdb31d79b0645b0199b24c0806401fa6d3
Author: Tim Harder  gentoo  org>
AuthorDate: Sun Nov 17 04:54:05 2019 +
Commit: Tim Harder  gentoo  org>
CommitDate: Sun Nov 17 05:06:53 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62d100bd

app-doc/zsh-lovers: drop myself as a maintainer

Signed-off-by: Tim Harder  gentoo.org>

 app-doc/zsh-lovers/metadata.xml | 5 +
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/app-doc/zsh-lovers/metadata.xml b/app-doc/zsh-lovers/metadata.xml
index b657b06f723..75d9ef00522 100644
--- a/app-doc/zsh-lovers/metadata.xml
+++ b/app-doc/zsh-lovers/metadata.xml
@@ -1,10 +1,7 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-
-  radher...@gentoo.org
-  Tim Harder
-
+
 
 zsh-lovers is a small project which tries to collect tips, tricks and examples 
for the Z shell.
 



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

2019-11-16 Thread Tim Harder
commit: 181294b87f52d6626cada38b901e7680c7bd8bc4
Author: Tim Harder  gentoo  org>
AuthorDate: Sun Nov 17 04:55:48 2019 +
Commit: Tim Harder  gentoo  org>
CommitDate: Sun Nov 17 05:06:54 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=181294b8

sys-apps/pick: remove old

Signed-off-by: Tim Harder  gentoo.org>

 sys-apps/pick/Manifest  |  2 --
 sys-apps/pick/files/pick-1.8.0-cflags.patch | 10 --
 sys-apps/pick/pick-2.0.1.ebuild | 28 
 sys-apps/pick/pick-2.0.2.ebuild | 24 
 4 files changed, 64 deletions(-)

diff --git a/sys-apps/pick/Manifest b/sys-apps/pick/Manifest
index 1a6bc5ac7c7..9805f2d3028 100644
--- a/sys-apps/pick/Manifest
+++ b/sys-apps/pick/Manifest
@@ -1,3 +1 @@
-DIST pick-2.0.1.tar.gz 108010 BLAKE2B 
3fae7cfbbcf6913af9cf695e44f171aef58737038e94c779f0cedbe2e386577b4661cc9a55ad657b1a11873fc06bdb7bdc8eac032b6ca584778fe695f8ad4e68
 SHA512 
616c7889e2ad5d5bb267f683530327e9e121a678db4bd04d5cd720bb8bd81ae14e6bd83e342b33863ef18bd10943e6bbdef177c9639af513456e0146f9b73226
-DIST pick-2.0.2.tar.gz 132174 BLAKE2B 
1f186d7dd0fc628d7a1b5fd41ad8c4b0c81f12c1855418354e77376232beb9fa500f43172d8d75f55972ee2589feafbefa6d777cb2149e4707509df355542744
 SHA512 
92d74fa62f6c829117c6c3faf6ec39fc5dd66465516be396d21d7b0a92ee10761a1d3f43aa4a454f8d19790ac02a4a1af145139d488344c97a511805c5d6965b
 DIST pick-3.0.1.tar.gz 29878 BLAKE2B 
8910bf726102802a76717ecc20360882c1c25bc346324c33173eb64872066ff284636557bf10a98a6cfbecc50dd4c8cd87b68aa924b976b072e5fead8989e316
 SHA512 
7448e7937640f69d397bd1bd48526865b8866a8f47eb04b7af918df992f36b6e932a1cb68e845f9262faa9c88c1afcb354368b7e1c6b1dd8503aafdb53e4b70f

diff --git a/sys-apps/pick/files/pick-1.8.0-cflags.patch 
b/sys-apps/pick/files/pick-1.8.0-cflags.patch
deleted file mode 100644
index 6d7834b5cad..000
--- a/sys-apps/pick/files/pick-1.8.0-cflags.patch
+++ /dev/null
@@ -1,10 +0,0 @@
 pick-1.8.0/Makefile.am
-+++ pick-1.8.0/Makefile.am
-@@ -1,6 +1,6 @@
- AUTOMAKE_OPTIONS=foreign
- 
--AM_CFLAGS=-Wall -Werror -Wextra
-+AM_CFLAGS=-Wall -Wextra
- AM_CPPFLAGS=-D_GNU_SOURCE
- 
- bin_PROGRAMS=pick

diff --git a/sys-apps/pick/pick-2.0.1.ebuild b/sys-apps/pick/pick-2.0.1.ebuild
deleted file mode 100644
index 88c100aa340..000
--- a/sys-apps/pick/pick-2.0.1.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools
-
-DESCRIPTION="a fuzzy search tool for the command-line"
-HOMEPAGE="https://github.com/calleerlandsson/pick;
-SRC_URI="https://github.com/calleerlandsson/pick/releases/download/v${PV}/${P}.tar.gz;
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="sys-libs/ncurses:0="
-DEPEND="${RDEPEND}
-   virtual/pkgconfig"
-
-PATCHES=(
-   "${FILESDIR}"/${PN}-1.8.0-cflags.patch
-)
-
-src_prepare() {
-   default
-   eautoreconf
-}

diff --git a/sys-apps/pick/pick-2.0.2.ebuild b/sys-apps/pick/pick-2.0.2.ebuild
deleted file mode 100644
index 54ee9017947..000
--- a/sys-apps/pick/pick-2.0.2.ebuild
+++ /dev/null
@@ -1,24 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools
-
-DESCRIPTION="a fuzzy search tool for the command-line"
-HOMEPAGE="https://github.com/mptre/pick;
-SRC_URI="https://github.com/mptre/pick/releases/download/v${PV}/${P}.tar.gz;
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="sys-libs/ncurses:0="
-DEPEND="${RDEPEND}
-   virtual/pkgconfig"
-
-src_prepare() {
-   default
-   eautoreconf
-}



[gentoo-commits] repo/gentoo:master commit in: app-forensics/libewf/

2019-11-16 Thread Tim Harder
commit: e9dba13b11eff529ec10a8512f328593dab37d58
Author: Tim Harder  gentoo  org>
AuthorDate: Sun Nov 17 05:00:49 2019 +
Commit: Tim Harder  gentoo  org>
CommitDate: Sun Nov 17 05:06:56 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9dba13b

app-forensics/libewf: drop myself as a maintainer

Signed-off-by: Tim Harder  gentoo.org>

 app-forensics/libewf/metadata.xml | 5 +
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/app-forensics/libewf/metadata.xml 
b/app-forensics/libewf/metadata.xml
index 3ca92ec9afc..7cf549041e0 100644
--- a/app-forensics/libewf/metadata.xml
+++ b/app-forensics/libewf/metadata.xml
@@ -1,10 +1,7 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   radher...@gentoo.org
-   Tim Harder
-   
+   

Enables libbfio for chaining file in file 
handling
Enable fuse support for ewfmount



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

2019-11-16 Thread Tim Harder
commit: 4df2345ce55e456a06e9be4e64f94e2f4e483c9d
Author: Tim Harder  gentoo  org>
AuthorDate: Sun Nov 17 04:58:59 2019 +
Commit: Tim Harder  gentoo  org>
CommitDate: Sun Nov 17 05:06:55 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4df2345c

x11-wm/qtile: remove old

Signed-off-by: Tim Harder  gentoo.org>

 x11-wm/qtile/Manifest|  1 -
 x11-wm/qtile/qtile-0.13.0.ebuild | 67 
 2 files changed, 68 deletions(-)

diff --git a/x11-wm/qtile/Manifest b/x11-wm/qtile/Manifest
index a014287b967..9d8a3cfa00e 100644
--- a/x11-wm/qtile/Manifest
+++ b/x11-wm/qtile/Manifest
@@ -1,2 +1 @@
-DIST qtile-0.13.0.tar.gz 468271 BLAKE2B 
e5e95b5bc56a06469e903f025946e6d0ea7b36501d017dd1470950c04a3ae1b35ec56b2a3c12f52daee75ae7b009c26285f49c0fa1ec5dda4993b2cf2da8a40c
 SHA512 
06e6b32952c77c6b44872d5a52e0d196d5bb23c38da5d8acc2bba571f4d5fbadd8a7311f47e9301fb72a45c92b0255a90911edd12442392206da311fb7ada286
 DIST qtile-0.14.2.tar.gz 492274 BLAKE2B 
b5418424a4cea6844d500ea00b4fa5c4b93d529503a3ece1f651c82cd1c63689d8ba95a706fd97e7d93cf823a6155196d724f18e47f9fe283e4df2586e55b56f
 SHA512 
c6653e8dca24cef4b1cf48c26b2a0feb4bc125a1c966e0a3ea078fd1d1bba9c7306facf620438795aa2d2daecbd6e58bcda954753ab6b27f6c0cbead3766d8c0

diff --git a/x11-wm/qtile/qtile-0.13.0.ebuild b/x11-wm/qtile/qtile-0.13.0.ebuild
deleted file mode 100644
index 50512cc747c..000
--- a/x11-wm/qtile/qtile-0.13.0.ebuild
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python{2_7,3_5,3_6,3_7} )
-
-inherit distutils-r1 virtualx
-
-if [[ ${PV} == * ]] ; then
-   EGIT_REPO_URI="https://github.com/qtile/qtile.git;
-   inherit git-r3
-else
-   SRC_URI="https://github.com/qtile/qtile/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64 ~x86"
-fi
-
-DESCRIPTION="A full-featured, hackable tiling window manager written in Python"
-HOMEPAGE="http://qtile.org/;
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="test"
-# docs require sphinxcontrib-blockdiag and sphinxcontrib-seqdiag
-
-RDEPEND="
-   x11-libs/cairo[xcb]
-   x11-libs/pango
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   >=dev-python/cairocffi-0.7[${PYTHON_USEDEP}]
-   >=dev-python/cffi-1.1.0[${PYTHON_USEDEP}]
-   >=dev-python/six-1.4.1[${PYTHON_USEDEP}]
-   >=dev-python/xcffib-0.5.0[${PYTHON_USEDEP}]
-   $(python_gen_cond_dep 'dev-python/trollius[${PYTHON_USEDEP}]' 
'python2*')
-"
-DEPEND="${RDEPEND}
-   test? (
-   dev-python/pytest[${PYTHON_USEDEP}]
-   dev-python/pytest-cov[${PYTHON_USEDEP}]
-   dev-python/xvfbwrapper[${PYTHON_USEDEP}]
-   x11-base/xorg-server[xephyr]
-   x11-apps/xeyes
-   x11-apps/xcalc
-   x11-apps/xclock
-   )
-"
-
-# display retry backoff slowness and failures
-RESTRICT="test"
-
-PATCHES=( "${FILESDIR}"/${PN}-0.12.0-tests.patch )
-
-python_test() {
-   # force usage of built module
-   rm -rf "${S}"/libqtile || die
-   PYTHONPATH="${BUILD_DIR}/lib" py.test -v "${S}"/test || die "tests 
failed under ${EPYTHON}"
-}
-
-python_install_all() {
-   local DOCS=( CHANGELOG README.rst )
-   distutils-r1_python_install_all
-
-   insinto /usr/share/xsessions
-   doins resources/qtile.desktop
-
-   exeinto /etc/X11/Sessions
-   newexe "${FILESDIR}"/${PN}-session ${PN}
-}



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

2019-11-16 Thread Tim Harder
commit: 6b1ce9c426f9d853f818a9ea02ab078892188e3f
Author: Tim Harder  gentoo  org>
AuthorDate: Sun Nov 17 04:38:04 2019 +
Commit: Tim Harder  gentoo  org>
CommitDate: Sun Nov 17 05:01:47 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b1ce9c4

app-misc/skim: drop myself as a maintainer

Signed-off-by: Tim Harder  gentoo.org>

 app-misc/skim/metadata.xml | 4 
 1 file changed, 4 deletions(-)

diff --git a/app-misc/skim/metadata.xml b/app-misc/skim/metadata.xml
index 25d81d80b07..704e68761c9 100644
--- a/app-misc/skim/metadata.xml
+++ b/app-misc/skim/metadata.xml
@@ -1,10 +1,6 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   radher...@gentoo.org
-   Tim Harder
-   

gyakov...@gentoo.org
Georgy Yakovlev



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

2019-11-16 Thread Tim Harder
commit: f58fcc99b1b14a97b0e6d8abbc9ab73124224530
Author: Tim Harder  gentoo  org>
AuthorDate: Sun Nov 17 04:52:58 2019 +
Commit: Tim Harder  gentoo  org>
CommitDate: Sun Nov 17 05:06:52 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f58fcc99

app-misc/dateutils: drop myself as a maintainer

Signed-off-by: Tim Harder  gentoo.org>

 app-misc/dateutils/metadata.xml | 5 +
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/app-misc/dateutils/metadata.xml b/app-misc/dateutils/metadata.xml
index 62a5cc9281a..11d80f64486 100644
--- a/app-misc/dateutils/metadata.xml
+++ b/app-misc/dateutils/metadata.xml
@@ -1,10 +1,7 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   radher...@gentoo.org
-   Tim Harder
-   
+   

hroptatyr/dateutils




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

2019-11-16 Thread Tim Harder
commit: 2528cfbc5ab58d9b69fa19ab5347e91c5c144510
Author: Tim Harder  gentoo  org>
AuthorDate: Sun Nov 17 04:49:55 2019 +
Commit: Tim Harder  gentoo  org>
CommitDate: Sun Nov 17 05:06:51 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2528cfbc

app-text/xlsx2csv: remove old

Signed-off-by: Tim Harder  gentoo.org>

 app-text/xlsx2csv/Manifest  |  2 --
 app-text/xlsx2csv/xlsx2csv-0.7.3.ebuild | 27 ---
 app-text/xlsx2csv/xlsx2csv-0.7.4.ebuild | 27 ---
 3 files changed, 56 deletions(-)

diff --git a/app-text/xlsx2csv/Manifest b/app-text/xlsx2csv/Manifest
index 7dbc902e10f..1f9a7ac7c37 100644
--- a/app-text/xlsx2csv/Manifest
+++ b/app-text/xlsx2csv/Manifest
@@ -1,3 +1 @@
-DIST xlsx2csv-0.7.3.tar.gz 201482 BLAKE2B 
a2268e58409d28f2565a19d0f271cb694066e1abd7578ecf0271efd420af63932eaea4389c062e050da257fa2f7164c9de7cdfa4ab3fd416692e7968
 SHA512 
855fcce9ae6ec51c46673e085a456d2862912d0da5130fdac34d88e5612c64d2bc0674c13b3bfb6cd6b7017e513fe0924dbb594db543020842705a82b6006e8e
-DIST xlsx2csv-0.7.4.tar.gz 212472 BLAKE2B 
de77f4d199bd5fbb43fb4aa775aed9b36aea4c956846be42e9387b79bf76727ba457a0c54db3b4803376b82af12923f21786aa34d21542e2d6ab354be33ad3f3
 SHA512 
771af30dce63b64272fc8d4dccbcab2106f60a2c9d33370b4d4034a21606e5726c84d963d59e88e2aa124c60f62fd57831ca5fb442d7540474ff1d688da9aaf6
 DIST xlsx2csv-0.7.6.tar.gz 231283 BLAKE2B 
d0271c6a82b7ed2825e3224f0e34637db3dacda3fe99c6ef5a087cc8d248592efc169b466514abd18b50f6625e8d9743c812b46ecb6f76ce7d1fdc51dfe34fc4
 SHA512 
7fc8e0da0c050e12d0cfd73f16ffd9c00f19bf05925b54cc68d6a0858a75db89d52e46312956dfd149e0ec88778f68056942a090db44e6148796fad33fa26489

diff --git a/app-text/xlsx2csv/xlsx2csv-0.7.3.ebuild 
b/app-text/xlsx2csv/xlsx2csv-0.7.3.ebuild
deleted file mode 100644
index 59143bd10f7..000
--- a/app-text/xlsx2csv/xlsx2csv-0.7.3.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-PYTHON_COMPAT=( python{2_7,3_5,3_6} )
-PYTHON_REQ_USE="xml"
-
-inherit distutils-r1
-
-DESCRIPTION="Convert MS Office xlsx files to CSV"
-HOMEPAGE="https://github.com/dilshod/xlsx2csv/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-DEPEND="dev-lang/perl"
-
-python_compile_all() {
-   emake -C man
-}
-
-python_install_all() {
-   distutils-r1_python_install_all
-   doman man/${PN}.1
-}

diff --git a/app-text/xlsx2csv/xlsx2csv-0.7.4.ebuild 
b/app-text/xlsx2csv/xlsx2csv-0.7.4.ebuild
deleted file mode 100644
index cb66033d17d..000
--- a/app-text/xlsx2csv/xlsx2csv-0.7.4.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-PYTHON_COMPAT=( python{2_7,3_5,3_6,3_7} )
-PYTHON_REQ_USE="xml"
-
-inherit distutils-r1
-
-DESCRIPTION="Convert MS Office xlsx files to CSV"
-HOMEPAGE="https://github.com/dilshod/xlsx2csv/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-DEPEND="dev-lang/perl"
-
-python_compile_all() {
-   emake -C man
-}
-
-python_install_all() {
-   distutils-r1_python_install_all
-   doman man/${PN}.1
-}



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

2019-11-16 Thread Tim Harder
commit: b4cb0ec8fd39459eb9b29dfdea070a31eee1617e
Author: Tim Harder  gentoo  org>
AuthorDate: Sun Nov 17 04:50:30 2019 +
Commit: Tim Harder  gentoo  org>
CommitDate: Sun Nov 17 05:06:51 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4cb0ec8

app-text/xlsx2csv: drop myself as a maintainer

Signed-off-by: Tim Harder  gentoo.org>

 app-text/xlsx2csv/metadata.xml | 5 +
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/app-text/xlsx2csv/metadata.xml b/app-text/xlsx2csv/metadata.xml
index 4b2ed89ad35..69984cfb9ab 100644
--- a/app-text/xlsx2csv/metadata.xml
+++ b/app-text/xlsx2csv/metadata.xml
@@ -1,10 +1,7 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-  
-radher...@gentoo.org
-Tim Harder
-  
+  
   
 xlsx2csv
 dilshod/xlsx2csv



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

2019-11-16 Thread Tim Harder
commit: fe149557d45e87820e117e7e390e8d26337da72c
Author: Tim Harder  gentoo  org>
AuthorDate: Sun Nov 17 04:51:50 2019 +
Commit: Tim Harder  gentoo  org>
CommitDate: Sun Nov 17 05:06:52 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe149557

dev-libs/libyaml: drop myself as a maintainer

Signed-off-by: Tim Harder  gentoo.org>

 dev-libs/libyaml/metadata.xml | 5 +
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/dev-libs/libyaml/metadata.xml b/dev-libs/libyaml/metadata.xml
index 7a9a3509acd..2e022306604 100644
--- a/dev-libs/libyaml/metadata.xml
+++ b/dev-libs/libyaml/metadata.xml
@@ -1,10 +1,7 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   radher...@gentoo.org
-   Tim Harder
-   
+   

LibYAML is a YAML 1.1 parser and emitter written in C.
It's in an early stage of development.



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

2019-11-16 Thread Tim Harder
commit: c5d894805421894186fc2a4a843f568caa4553b6
Author: Tim Harder  gentoo  org>
AuthorDate: Sun Nov 17 04:34:47 2019 +
Commit: Tim Harder  gentoo  org>
CommitDate: Sun Nov 17 05:01:45 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5d89480

app-arch/libpar2: drop myself as a maintainer

Signed-off-by: Tim Harder  gentoo.org>

 app-arch/libpar2/metadata.xml | 5 +
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/app-arch/libpar2/metadata.xml b/app-arch/libpar2/metadata.xml
index 1cb3032538b..679fb9b8673 100644
--- a/app-arch/libpar2/metadata.xml
+++ b/app-arch/libpar2/metadata.xml
@@ -1,10 +1,7 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-  
-radher...@gentoo.org
-Tim Harder
-  
+  
   
 libpar2
   



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

2019-11-16 Thread Tim Harder
commit: a0199ef0350595a960889ef7c88435dd760836cf
Author: Tim Harder  gentoo  org>
AuthorDate: Sun Nov 17 04:38:39 2019 +
Commit: Tim Harder  gentoo  org>
CommitDate: Sun Nov 17 05:01:47 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0199ef0

app-misc/task: drop myself as a maintainer

Signed-off-by: Tim Harder  gentoo.org>

 app-misc/task/metadata.xml | 5 +
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/app-misc/task/metadata.xml b/app-misc/task/metadata.xml
index bba57a4435e..41d4a9ba90e 100644
--- a/app-misc/task/metadata.xml
+++ b/app-misc/task/metadata.xml
@@ -1,10 +1,7 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   radher...@gentoo.org
-   Tim Harder
-   
+   

Enable "task sync" support




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

2019-11-16 Thread Tim Harder
commit: 06731d8fda3eccc6f252f1f60a164e314fbfe40d
Author: Tim Harder  gentoo  org>
AuthorDate: Sun Nov 17 04:52:30 2019 +
Commit: Tim Harder  gentoo  org>
CommitDate: Sun Nov 17 05:06:52 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06731d8f

app-misc/jq: drop myself as a maintainer

Signed-off-by: Tim Harder  gentoo.org>

 app-misc/jq/metadata.xml | 5 +
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/app-misc/jq/metadata.xml b/app-misc/jq/metadata.xml
index ce9b0102c59..c6f63694b15 100644
--- a/app-misc/jq/metadata.xml
+++ b/app-misc/jq/metadata.xml
@@ -1,10 +1,7 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   radher...@gentoo.org
-   Tim Harder
-   
+   

Use dev-libs/oniguruma for regular 
expression support




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

2019-11-16 Thread Tim Harder
commit: d282070fa2e797316be72b6ede3bac1884569df1
Author: Tim Harder  gentoo  org>
AuthorDate: Sun Nov 17 04:39:29 2019 +
Commit: Tim Harder  gentoo  org>
CommitDate: Sun Nov 17 05:01:47 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d282070f

app-text/docx2txt: remove old

Signed-off-by: Tim Harder  gentoo.org>

 app-text/docx2txt/Manifest|  1 -
 app-text/docx2txt/docx2txt-1.3.ebuild | 28 
 2 files changed, 29 deletions(-)

diff --git a/app-text/docx2txt/Manifest b/app-text/docx2txt/Manifest
index 230941a2e18..131a2a796b4 100644
--- a/app-text/docx2txt/Manifest
+++ b/app-text/docx2txt/Manifest
@@ -1,2 +1 @@
-DIST docx2txt-1.3.tgz 29953 BLAKE2B 
6bacf445aace71a0897f9e7541d3ca721b2be2b47bafb416a1627266ecd03e249752135673723c42b35341cc02083504ea6cc97e4b99263b67799243e7a9807d
 SHA512 
9ad74558074cd3e72b0d2e6541dc56d7b74d59d6313fb0cde1b2f02a0e1cdb05d705a650c0dde02e5b3a683f8ee6ab2fb5b865301f4213cd3e8770cd9e4d0d97
 DIST docx2txt-1.4.tgz 31302 BLAKE2B 
3f57b95e40eb92f5b16f38fab7122cd75b23be0f1489bc83ea68f6feb16c14ad524119468da44ac5bc3989a1d61336c436a862b58bc3d83a565bd61b031c8f4f
 SHA512 
5e59cd4065f409c20e17b29d3935a2637147392e86a325b28b78748d3b3867ce91f14f3349621b3c95b2ce6a8e38e33cf0816d1f9dccbebfdde9ba29fbd7f5b3

diff --git a/app-text/docx2txt/docx2txt-1.3.ebuild 
b/app-text/docx2txt/docx2txt-1.3.ebuild
deleted file mode 100644
index 322943c0bd9..000
--- a/app-text/docx2txt/docx2txt-1.3.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils
-
-DESCRIPTION="Convert MS Office docx files to plain text"
-HOMEPAGE="http://docx2txt.sourceforge.net/;
-SRC_URI="mirror://sourceforge/${PN}/${P}.tgz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="app-arch/unzip
-   dev-lang/perl"
-
-src_prepare() {
-   epatch "${FILESDIR}"/${PN}-1.1-paragraph-newline.patch
-}
-
-src_compile() { :; }
-
-src_install() {
-   newbin docx2txt.pl docx2txt
-   dodoc docx2txt.config README ChangeLog ToDo AUTHORS
-}



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

2019-11-16 Thread Tim Harder
commit: 6cda4c86cd81db6aa4eefc6904bda51ae9a928c2
Author: Tim Harder  gentoo  org>
AuthorDate: Sun Nov 17 05:06:15 2019 +
Commit: Tim Harder  gentoo  org>
CommitDate: Sun Nov 17 05:06:50 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6cda4c86

app-text/docx2txt: update to EAPI 7

Signed-off-by: Tim Harder  gentoo.org>

 app-text/docx2txt/docx2txt-1.4.ebuild | 10 +++---
 1 file changed, 3 insertions(+), 7 deletions(-)

diff --git a/app-text/docx2txt/docx2txt-1.4.ebuild 
b/app-text/docx2txt/docx2txt-1.4.ebuild
index 322943c0bd9..46c9ea99a96 100644
--- a/app-text/docx2txt/docx2txt-1.4.ebuild
+++ b/app-text/docx2txt/docx2txt-1.4.ebuild
@@ -1,9 +1,7 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
-
-inherit eutils
+EAPI=7
 
 DESCRIPTION="Convert MS Office docx files to plain text"
 HOMEPAGE="http://docx2txt.sourceforge.net/;
@@ -16,9 +14,7 @@ KEYWORDS="~amd64 ~x86"
 RDEPEND="app-arch/unzip
dev-lang/perl"
 
-src_prepare() {
-   epatch "${FILESDIR}"/${PN}-1.1-paragraph-newline.patch
-}
+PATCHES=( "${FILESDIR}"/${PN}-1.1-paragraph-newline.patch )
 
 src_compile() { :; }
 



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

2019-11-16 Thread Tim Harder
commit: 42aa3f5da0d4639e41a50e9f224c04dd05ad256f
Author: Tim Harder  gentoo  org>
AuthorDate: Sun Nov 17 04:53:35 2019 +
Commit: Tim Harder  gentoo  org>
CommitDate: Sun Nov 17 05:06:53 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42aa3f5d

app-editors/hteditor: drop myself as a maintainer

Signed-off-by: Tim Harder  gentoo.org>

 app-editors/hteditor/metadata.xml | 5 +
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/app-editors/hteditor/metadata.xml 
b/app-editors/hteditor/metadata.xml
index 81b6a3b2b87..bf3326bd646 100644
--- a/app-editors/hteditor/metadata.xml
+++ b/app-editors/hteditor/metadata.xml
@@ -1,10 +1,7 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-  
-radher...@gentoo.org
-Tim Harder
-  
+  
   
 hte
 https://github.com/sebastianbiallas/ht/issues



[gentoo-commits] repo/gentoo:master commit in: app-text/xlsx2csv/, app-text/xlsx2csv/files/

2019-11-16 Thread Tim Harder
commit: 49b1038f628d110714a36e2839d37ebd507efb12
Author: Tim Harder  gentoo  org>
AuthorDate: Sun Nov 17 04:49:01 2019 +
Commit: Tim Harder  gentoo  org>
CommitDate: Sun Nov 17 05:06:51 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49b1038f

app-text/xlsx2csv: version bump to 0.7.6

Signed-off-by: Tim Harder  gentoo.org>

 app-text/xlsx2csv/Manifest |  1 +
 app-text/xlsx2csv/files/xlsx2csv-0.7.6-tests.patch | 61 ++
 app-text/xlsx2csv/xlsx2csv-0.7.6.ebuild| 33 
 3 files changed, 95 insertions(+)

diff --git a/app-text/xlsx2csv/Manifest b/app-text/xlsx2csv/Manifest
index b0b07303699..7dbc902e10f 100644
--- a/app-text/xlsx2csv/Manifest
+++ b/app-text/xlsx2csv/Manifest
@@ -1,2 +1,3 @@
 DIST xlsx2csv-0.7.3.tar.gz 201482 BLAKE2B 
a2268e58409d28f2565a19d0f271cb694066e1abd7578ecf0271efd420af63932eaea4389c062e050da257fa2f7164c9de7cdfa4ab3fd416692e7968
 SHA512 
855fcce9ae6ec51c46673e085a456d2862912d0da5130fdac34d88e5612c64d2bc0674c13b3bfb6cd6b7017e513fe0924dbb594db543020842705a82b6006e8e
 DIST xlsx2csv-0.7.4.tar.gz 212472 BLAKE2B 
de77f4d199bd5fbb43fb4aa775aed9b36aea4c956846be42e9387b79bf76727ba457a0c54db3b4803376b82af12923f21786aa34d21542e2d6ab354be33ad3f3
 SHA512 
771af30dce63b64272fc8d4dccbcab2106f60a2c9d33370b4d4034a21606e5726c84d963d59e88e2aa124c60f62fd57831ca5fb442d7540474ff1d688da9aaf6
+DIST xlsx2csv-0.7.6.tar.gz 231283 BLAKE2B 
d0271c6a82b7ed2825e3224f0e34637db3dacda3fe99c6ef5a087cc8d248592efc169b466514abd18b50f6625e8d9743c812b46ecb6f76ce7d1fdc51dfe34fc4
 SHA512 
7fc8e0da0c050e12d0cfd73f16ffd9c00f19bf05925b54cc68d6a0858a75db89d52e46312956dfd149e0ec88778f68056942a090db44e6148796fad33fa26489

diff --git a/app-text/xlsx2csv/files/xlsx2csv-0.7.6-tests.patch 
b/app-text/xlsx2csv/files/xlsx2csv-0.7.6-tests.patch
new file mode 100644
index 000..f3e04b827bd
--- /dev/null
+++ b/app-text/xlsx2csv/files/xlsx2csv-0.7.6-tests.patch
@@ -0,0 +1,61 @@
+--- xlsx2csv-0.7.6/test/run
 xlsx2csv-0.7.6/test/run
+@@ -5,8 +5,6 @@
+ import subprocess
+ from io import open
+ 
+-PYTHON_VERSIONS = ["2.7"]
+-
+ """
+ This test uses sys.stdout.
+ That means this test doesn't verify:
+@@ -16,31 +14,24 @@
+ 
+ def compare(case, arguments=[]):
+ failed = False
+-for pyver in PYTHON_VERSIONS:
+-ext = "xlsx"
+-if os.path.exists("test/%s.xlsm" % case):
+-ext = "xlsm"
+-
+-if os.name == 'posix':# in case of Linux
+-left = subprocess.check_output(["python%s" %pyver, 
"./xlsx2csv.py"] + arguments + ["test/%s.%s" %(case, 
ext)]).decode('utf-8').replace('\r','')
+-elif os.name == 'nt':# in case of Windows
+-# Use py.exe 
http://blog.python.org/2011/07/python-launcher-for-windows_11.html on Windows
+-left = subprocess.check_output(["py", "-%s" %pyver, 
"./xlsx2csv.py"] + arguments + ["test/%s.%s" %(case, 
ext)]).decode('utf-8').replace('\r','')
+-else:
+-print("os.name is unexpected: "+os.name)
+-sys.exit(1)
+-
+-f = open("test/%s.csv" %case, "r", encoding="utf-8", newline="")
+-right = f.read().replace('\r','')
+-f.close()
+-
+-if left != right:
+-print("FAILED: %s %s" %(case, pyver))
+-print(" actual:", left.replace("\r", "\\r").replace("\n", "\\n"))
+-print(" expected:", right.replace("\r", "\\r").replace("\n", 
"\\n"))
+-failed = True
+-else:
+-print("OK: %s %s" %(case, pyver))
++ext = "xlsx"
++if os.path.exists("test/%s.xlsm" % case):
++ext = "xlsm"
++
++left = subprocess.check_output(["./xlsx2csv.py"] + arguments + 
["test/%s.%s" %(case, ext)]).decode('utf-8').replace('\r','')
++
++f = open("test/%s.csv" %case, "r", encoding="utf-8", newline="")
++right = f.read().replace('\r','')
++f.close()
++
++if left != right:
++print("FAILED: %s" % (case,))
++print(" actual:", left.replace("\r", "\\r").replace("\n", "\\n"))
++print(" expected:", right.replace("\r", "\\r").replace("\n", "\\n"))
++failed = True
++else:
++print("OK: %s" % (case,))
++
+ if failed:
+ sys.exit(1)
+ 

diff --git a/app-text/xlsx2csv/xlsx2csv-0.7.6.ebuild 
b/app-text/xlsx2csv/xlsx2csv-0.7.6.ebuild
new file mode 100644
index 000..a23cd856301
--- /dev/null
+++ b/app-text/xlsx2csv/xlsx2csv-0.7.6.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+PYTHON_COMPAT=( python{2_7,3_5,3_6,3_7} )
+PYTHON_REQ_USE="xml"
+
+inherit distutils-r1
+
+DESCRIPTION="Convert MS Office xlsx files to CSV"
+HOMEPAGE="https://github.com/dilshod/xlsx2csv/;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+DEPEND="dev-lang/perl"
+
+PATCHES=( "${FILESDIR}"/${P}-tests.patch )
+
+python_compile_all() {
+   emake 

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

2019-11-16 Thread Tim Harder
commit: 2319b9feb975b5d35b0b4e2462e80f543d363c88
Author: Tim Harder  gentoo  org>
AuthorDate: Sun Nov 17 04:35:56 2019 +
Commit: Tim Harder  gentoo  org>
CommitDate: Sun Nov 17 05:01:45 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2319b9fe

app-misc/evemu: drop myself as a maintainer

Signed-off-by: Tim Harder  gentoo.org>

 app-misc/evemu/metadata.xml | 5 +
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/app-misc/evemu/metadata.xml b/app-misc/evemu/metadata.xml
index 78e64a5cf1a..6f49eba8f49 100644
--- a/app-misc/evemu/metadata.xml
+++ b/app-misc/evemu/metadata.xml
@@ -1,8 +1,5 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   radher...@gentoo.org
-   Tim Harder
-   
+
 



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

2019-11-16 Thread Tim Harder
commit: 663ce42c44c98c1b4199305c50645f5f4d4328a9
Author: Tim Harder  gentoo  org>
AuthorDate: Sun Nov 17 04:36:20 2019 +
Commit: Tim Harder  gentoo  org>
CommitDate: Sun Nov 17 05:01:46 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=663ce42c

app-misc/fslurp: drop myself as a maintainer

Signed-off-by: Tim Harder  gentoo.org>

 app-misc/fslurp/metadata.xml | 5 +
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/app-misc/fslurp/metadata.xml b/app-misc/fslurp/metadata.xml
index 43980587e9e..5a3ebccd8ee 100644
--- a/app-misc/fslurp/metadata.xml
+++ b/app-misc/fslurp/metadata.xml
@@ -1,10 +1,7 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   radher...@gentoo.org
-   Tim Harder
-   
+   

fslurp is a program to pull the data from a Fronius Interface Card easy
that works with most Fronius IG and IG Plus inverters. It supports both



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

2019-11-16 Thread Tim Harder
commit: 663c700365eece71eb1acd3d3cf3e00755e573c8
Author: Tim Harder  gentoo  org>
AuthorDate: Sun Nov 17 04:36:44 2019 +
Commit: Tim Harder  gentoo  org>
CommitDate: Sun Nov 17 05:01:46 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=663c7003

app-misc/rq: drop myself as a maintainer

Signed-off-by: Tim Harder  gentoo.org>

 app-misc/rq/metadata.xml | 5 +
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/app-misc/rq/metadata.xml b/app-misc/rq/metadata.xml
index 4f9bc1f21fe..ac74bfaa455 100644
--- a/app-misc/rq/metadata.xml
+++ b/app-misc/rq/metadata.xml
@@ -1,10 +1,7 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   radher...@gentoo.org
-   Tim Harder
-   
+   

dflemstr/rq




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

2019-11-16 Thread Tim Harder
commit: 2405b12f066a2ffa12ebf932042bd124963485f8
Author: Tim Harder  gentoo  org>
AuthorDate: Sun Nov 17 04:37:27 2019 +
Commit: Tim Harder  gentoo  org>
CommitDate: Sun Nov 17 05:01:46 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2405b12f

app-text/csvfix: drop myself as a maintainer

Signed-off-by: Tim Harder  gentoo.org>

 app-text/csvfix/metadata.xml | 5 +
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/app-text/csvfix/metadata.xml b/app-text/csvfix/metadata.xml
index 8aaa5d2f678..bf239db74a9 100644
--- a/app-text/csvfix/metadata.xml
+++ b/app-text/csvfix/metadata.xml
@@ -1,10 +1,7 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-  
-radher...@gentoo.org
-Tim Harder
-  
+  
   
 neilb/csvfix
   



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

2019-11-16 Thread Tim Harder
commit: 6fdc0084f19e3b6a10450aca9f3ea2f5093bf734
Author: Tim Harder  gentoo  org>
AuthorDate: Sun Nov 17 04:39:40 2019 +
Commit: Tim Harder  gentoo  org>
CommitDate: Sun Nov 17 05:06:50 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6fdc0084

app-text/docx2txt: drop myself as a maintainer

Signed-off-by: Tim Harder  gentoo.org>

 app-text/docx2txt/metadata.xml | 5 +
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/app-text/docx2txt/metadata.xml b/app-text/docx2txt/metadata.xml
index 53a9f852131..1dee59e685b 100644
--- a/app-text/docx2txt/metadata.xml
+++ b/app-text/docx2txt/metadata.xml
@@ -1,10 +1,7 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   radher...@gentoo.org
-   Tim Harder
-   
+   

docx2txt




[gentoo-commits] repo/gentoo:master commit in: dev-tcltk/tktray/

2019-11-16 Thread Matt Turner
commit: 5c569df8cb4e632de397b3ba7b1ebf1f7fee7be1
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Nov 17 04:37:17 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Nov 17 04:37:17 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c569df8

dev-tcltk/tktray: Drop alpha keywords

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

 dev-tcltk/tktray/tktray-1.3.9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-tcltk/tktray/tktray-1.3.9.ebuild 
b/dev-tcltk/tktray/tktray-1.3.9.ebuild
index 85b005ef286..8b1b102c4bc 100644
--- a/dev-tcltk/tktray/tktray-1.3.9.ebuild
+++ b/dev-tcltk/tktray/tktray-1.3.9.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://tktray.googlecode.com/files/${MY_P}.tar.gz;
 
 LICENSE="tcltk"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~ppc ~sparc x86"
+KEYWORDS="amd64 ~ppc ~sparc x86"
 IUSE="debug threads test"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-tcltk/itk/

2019-11-16 Thread Matt Turner
commit: 393401b2faa3bc926013f08cb5a08723db8a5a71
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Nov 17 04:35:54 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Nov 17 04:35:54 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=393401b2

dev-tcltk/itk: Drop alpha keywords

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

 dev-tcltk/itk/itk-3.4.1.ebuild | 2 +-
 dev-tcltk/itk/itk-4.0.0.ebuild | 2 +-
 dev-tcltk/itk/itk-4.0.1.ebuild | 2 +-
 dev-tcltk/itk/itk-4.1.0.ebuild | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-tcltk/itk/itk-3.4.1.ebuild b/dev-tcltk/itk/itk-3.4.1.ebuild
index a41cf3f9a8a..04fc85436e2 100644
--- a/dev-tcltk/itk/itk-3.4.1.ebuild
+++ b/dev-tcltk/itk/itk-3.4.1.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="mirror://sourceforge/project/incrtcl/%5BIncr%20Tcl_Tk%5D-source/${PV}/$
 IUSE=""
 SLOT="0"
 LICENSE="BSD"
-KEYWORDS="alpha amd64 ia64 ppc sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ia64 ppc sparc x86 ~amd64-linux ~x86-linux"
 RESTRICT="!test? ( test )"
 
 DEPEND="

diff --git a/dev-tcltk/itk/itk-4.0.0.ebuild b/dev-tcltk/itk/itk-4.0.0.ebuild
index 2c400ce8047..8b5e04b9383 100644
--- a/dev-tcltk/itk/itk-4.0.0.ebuild
+++ b/dev-tcltk/itk/itk-4.0.0.ebuild
@@ -16,7 +16,7 @@ 
SRC_URI="mirror://sourceforge/project/incrtcl/%5Bincr%20Tcl_Tk%5D-4-source/Itcl%
 IUSE=""
 SLOT="0"
 LICENSE="BSD"
-KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 ~ia64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux"
 
 DEPEND="
>=dev-lang/tk-8.6:=

diff --git a/dev-tcltk/itk/itk-4.0.1.ebuild b/dev-tcltk/itk/itk-4.0.1.ebuild
index 82252d1377c..95b6ed04e96 100644
--- a/dev-tcltk/itk/itk-4.0.1.ebuild
+++ b/dev-tcltk/itk/itk-4.0.1.ebuild
@@ -16,7 +16,7 @@ 
SRC_URI="mirror://sourceforge/project/incrtcl/%5Bincr%20Tcl_Tk%5D-4-source/itk%2
 IUSE=""
 SLOT="0"
 LICENSE="BSD"
-KEYWORDS="alpha amd64 ia64 ppc sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ia64 ppc sparc x86 ~amd64-linux ~x86-linux"
 
 DEPEND="
>=dev-lang/tk-8.6:=

diff --git a/dev-tcltk/itk/itk-4.1.0.ebuild b/dev-tcltk/itk/itk-4.1.0.ebuild
index 1ef04b1795c..51ca9d3669c 100644
--- a/dev-tcltk/itk/itk-4.1.0.ebuild
+++ b/dev-tcltk/itk/itk-4.1.0.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="mirror://sourceforge/project/incrtcl/%5Bincr%20Tcl_Tk%5D-4-source/itk%2
 IUSE=""
 SLOT="0"
 LICENSE="BSD"
-KEYWORDS="~alpha amd64 ia64 ppc sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ia64 ppc sparc x86 ~amd64-linux ~x86-linux"
 RESTRICT="!test? ( test )"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-tcltk/iwidgets/

2019-11-16 Thread Matt Turner
commit: d1cd1fe1267da2a6f08ca34824ca7442197e1534
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Nov 17 04:35:39 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Nov 17 04:35:39 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1cd1fe1

dev-tcltk/iwidgets: Drop alpha keywords

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

 dev-tcltk/iwidgets/iwidgets-4.1.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-tcltk/iwidgets/iwidgets-4.1.1.ebuild 
b/dev-tcltk/iwidgets/iwidgets-4.1.1.ebuild
index c3aeb6b8342..f3deaa38f47 100644
--- a/dev-tcltk/iwidgets/iwidgets-4.1.1.ebuild
+++ b/dev-tcltk/iwidgets/iwidgets-4.1.1.ebuild
@@ -18,7 +18,7 @@ SRC_URI="
 
 LICENSE="HPND Old-MIT tcltk"
 SLOT="0"
-KEYWORDS="~alpha amd64 ia64 ppc sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ia64 ppc sparc x86 ~amd64-linux ~x86-linux"
 IUSE=""
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-tcltk/snack/

2019-11-16 Thread Matt Turner
commit: 33bb8bd0d68942d303ae00c44ac43e4688356603
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Nov 17 04:17:48 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Nov 17 04:17:53 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33bb8bd0

dev-tcltk/snack: Drop alpha keywords, bug 700104

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

 dev-tcltk/snack/snack-2.2.10-r6.ebuild | 2 +-
 dev-tcltk/snack/snack-2.2.10-r7.ebuild | 2 +-
 dev-tcltk/snack/snack-2.2.10-r8.ebuild | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-tcltk/snack/snack-2.2.10-r6.ebuild 
b/dev-tcltk/snack/snack-2.2.10-r6.ebuild
index d7af7b86d79..20852e8f371 100644
--- a/dev-tcltk/snack/snack-2.2.10-r6.ebuild
+++ b/dev-tcltk/snack/snack-2.2.10-r6.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="http://www.speech.kth.se/snack/;
 SRC_URI="http://www.speech.kth.se/snack/dist/${PN}${PV}.tar.gz;
 
 LICENSE="GPL-2"
-KEYWORDS="alpha amd64 hppa ppc ppc64 sparc x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x86-macos"
+KEYWORDS="amd64 hppa ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x86-macos"
 SLOT="0"
 IUSE="alsa examples python threads vorbis"
 

diff --git a/dev-tcltk/snack/snack-2.2.10-r7.ebuild 
b/dev-tcltk/snack/snack-2.2.10-r7.ebuild
index 8e0d447a69c..eb87e0968a7 100644
--- a/dev-tcltk/snack/snack-2.2.10-r7.ebuild
+++ b/dev-tcltk/snack/snack-2.2.10-r7.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="http://www.speech.kth.se/snack/;
 SRC_URI="http://www.speech.kth.se/snack/dist/${PN}${PV}.tar.gz;
 
 LICENSE="GPL-2"
-KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x86-macos"
+KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x86-macos"
 SLOT="0"
 IUSE="alsa examples python vorbis"
 

diff --git a/dev-tcltk/snack/snack-2.2.10-r8.ebuild 
b/dev-tcltk/snack/snack-2.2.10-r8.ebuild
index e8ac2b1408a..aa1a9c06174 100644
--- a/dev-tcltk/snack/snack-2.2.10-r8.ebuild
+++ b/dev-tcltk/snack/snack-2.2.10-r8.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="http://www.speech.kth.se/snack/;
 SRC_URI="http://www.speech.kth.se/snack/dist/${PN}${PV}.tar.gz;
 
 LICENSE="GPL-2"
-KEYWORDS="~alpha amd64 ~hppa ~ppc ~ppc64 sparc ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x86-macos"
+KEYWORDS="amd64 ~hppa ~ppc ~ppc64 sparc ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x86-macos"
 SLOT="0"
 IUSE="alsa examples python vorbis"
 



[gentoo-commits] repo/gentoo:master commit in: dev-erlang/p1_utils/

2019-11-16 Thread Matt Turner
commit: d85218ff2631f069e5bf836843d36106459d3204
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Nov 17 04:13:10 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Nov 17 04:13:10 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d85218ff

dev-erlang/p1_utils: Drop alpha keywords

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

 dev-erlang/p1_utils/p1_utils-1.0.13.ebuild | 2 +-
 dev-erlang/p1_utils/p1_utils-1.0.16.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-erlang/p1_utils/p1_utils-1.0.13.ebuild 
b/dev-erlang/p1_utils/p1_utils-1.0.13.ebuild
index a15aecd84e3..7993c1a6bab 100644
--- a/dev-erlang/p1_utils/p1_utils-1.0.13.ebuild
+++ b/dev-erlang/p1_utils/p1_utils-1.0.13.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/processone/${PN}/archive/${PV}.tar.gz
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~ia64 ppc ppc64 sparc x86"
+KEYWORDS="amd64 ~arm ~ia64 ppc ppc64 sparc x86"
 
 DEPEND=">=dev-lang/erlang-17.1"
 RDEPEND="${DEPEND}"

diff --git a/dev-erlang/p1_utils/p1_utils-1.0.16.ebuild 
b/dev-erlang/p1_utils/p1_utils-1.0.16.ebuild
index ed18b559a3e..04a3ef4486a 100644
--- a/dev-erlang/p1_utils/p1_utils-1.0.16.ebuild
+++ b/dev-erlang/p1_utils/p1_utils-1.0.16.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/processone/${PN}/archive/${PV}.tar.gz
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 
 DEPEND=">=dev-lang/erlang-17.1"
 RDEPEND="${DEPEND}"



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

2019-11-16 Thread Matt Turner
commit: 94462e7b2e532d1b2f0ee18dcc20b7ca00a4d20e
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Nov 17 04:12:47 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Nov 17 04:12:47 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94462e7b

dev-util/rebar: Drop alpha keywords

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

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

diff --git a/dev-util/rebar/rebar-2.6.4.ebuild 
b/dev-util/rebar/rebar-2.6.4.ebuild
index 788070faa47..137bd33524f 100644
--- a/dev-util/rebar/rebar-2.6.4.ebuild
+++ b/dev-util/rebar/rebar-2.6.4.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/rebar/${PN}/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~ia64 ppc ppc64 sparc x86"
+KEYWORDS="amd64 ~arm ~ia64 ppc ppc64 sparc x86"
 IUSE=""
 
 RDEPEND="dev-lang/erlang"



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

2019-11-16 Thread Matt Turner
commit: c34b9958e9456c8cce9eed28676c57c2c883aaaf
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Nov 17 04:13:58 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Nov 17 04:13:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c34b9958

dev-lang/erlang: Drop alpha keywords, bug 698194

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

 dev-lang/erlang/erlang-21.1.1.ebuild| 2 +-
 dev-lang/erlang/erlang-22.0.2-r2.ebuild | 2 +-
 dev-lang/erlang/erlang-22.0.7.ebuild| 2 +-
 dev-lang/erlang/erlang-22.1.1.ebuild| 2 +-
 dev-lang/erlang/erlang-22.1.3.ebuild| 2 +-
 dev-lang/erlang/erlang-22.1.4.ebuild| 2 +-
 dev-lang/erlang/erlang-22.1.6.ebuild| 2 +-
 dev-lang/erlang/erlang-22.1.7.ebuild| 2 +-
 8 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/dev-lang/erlang/erlang-21.1.1.ebuild 
b/dev-lang/erlang/erlang-21.1.1.ebuild
index 8cafb81279b..d04a12e309c 100644
--- a/dev-lang/erlang/erlang-21.1.1.ebuild
+++ b/dev-lang/erlang/erlang-21.1.1.ebuild
@@ -19,7 +19,7 @@ 
SRC_URI="https://github.com/erlang/otp/archive/OTP-${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ~ia64 ppc ppc64 sparc x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris"
+KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ia64 ppc ppc64 sparc x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris"
 IUSE="doc emacs +hipe java +kpoll libressl odbc pgo sctp ssl systemd tk 
wxwidgets"
 
 RDEPEND="

diff --git a/dev-lang/erlang/erlang-22.0.2-r2.ebuild 
b/dev-lang/erlang/erlang-22.0.2-r2.ebuild
index 2cf4d9a9a6e..2591c715e3f 100644
--- a/dev-lang/erlang/erlang-22.0.2-r2.ebuild
+++ b/dev-lang/erlang/erlang-22.0.2-r2.ebuild
@@ -19,7 +19,7 @@ 
SRC_URI="https://github.com/erlang/otp/archive/OTP-${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris"
 IUSE="doc emacs +hipe java +kpoll libressl odbc sctp ssl systemd tk wxwidgets"
 
 RDEPEND="

diff --git a/dev-lang/erlang/erlang-22.0.7.ebuild 
b/dev-lang/erlang/erlang-22.0.7.ebuild
index ac9b83f36b5..cf826170c80 100644
--- a/dev-lang/erlang/erlang-22.0.7.ebuild
+++ b/dev-lang/erlang/erlang-22.0.7.ebuild
@@ -19,7 +19,7 @@ 
SRC_URI="https://github.com/erlang/otp/archive/OTP-${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris"
 IUSE="doc emacs +hipe java +kpoll libressl odbc sctp ssl systemd tk wxwidgets"
 
 RDEPEND="

diff --git a/dev-lang/erlang/erlang-22.1.1.ebuild 
b/dev-lang/erlang/erlang-22.1.1.ebuild
index 05e4be9a872..26e520c173d 100644
--- a/dev-lang/erlang/erlang-22.1.1.ebuild
+++ b/dev-lang/erlang/erlang-22.1.1.ebuild
@@ -19,7 +19,7 @@ 
SRC_URI="https://github.com/erlang/otp/archive/OTP-${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ppc ppc64 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris"
+KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ia64 ppc ppc64 sparc x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris"
 IUSE="doc emacs +hipe java +kpoll libressl odbc sctp ssl systemd tk wxwidgets"
 
 RDEPEND="

diff --git a/dev-lang/erlang/erlang-22.1.3.ebuild 
b/dev-lang/erlang/erlang-22.1.3.ebuild
index eff95c9be92..edcb9b79b60 100644
--- a/dev-lang/erlang/erlang-22.1.3.ebuild
+++ b/dev-lang/erlang/erlang-22.1.3.ebuild
@@ -19,7 +19,7 @@ 
SRC_URI="https://github.com/erlang/otp/archive/OTP-${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris"
 IUSE="doc emacs +hipe java +kpoll libressl odbc sctp ssl systemd tk wxwidgets"
 
 RDEPEND="

diff --git a/dev-lang/erlang/erlang-22.1.4.ebuild 
b/dev-lang/erlang/erlang-22.1.4.ebuild
index eff95c9be92..edcb9b79b60 100644
--- a/dev-lang/erlang/erlang-22.1.4.ebuild
+++ b/dev-lang/erlang/erlang-22.1.4.ebuild
@@ -19,7 +19,7 @@ 
SRC_URI="https://github.com/erlang/otp/archive/OTP-${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 

[gentoo-commits] repo/gentoo:master commit in: dev-erlang/epam/

2019-11-16 Thread Matt Turner
commit: f66d733035c7057ac7a92d737ac9bdc7069dc30f
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Nov 17 04:13:29 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Nov 17 04:13:29 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f66d7330

dev-erlang/epam: Drop alpha keywords

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

 dev-erlang/epam/epam-1.0.2.ebuild | 2 +-
 dev-erlang/epam/epam-1.0.6.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-erlang/epam/epam-1.0.2.ebuild 
b/dev-erlang/epam/epam-1.0.2.ebuild
index a1d38a1c1c4..f718c6eefb5 100644
--- a/dev-erlang/epam/epam-1.0.2.ebuild
+++ b/dev-erlang/epam/epam-1.0.2.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/processone/${PN}/archive/${PV}.tar.gz
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~ia64 ppc ppc64 sparc x86"
+KEYWORDS="amd64 ~arm ~ia64 ppc ppc64 sparc x86"
 
 DEPEND=">=dev-lang/erlang-17.1
sys-libs/pam"

diff --git a/dev-erlang/epam/epam-1.0.6.ebuild 
b/dev-erlang/epam/epam-1.0.6.ebuild
index 6056b365b81..529ffdd2798 100644
--- a/dev-erlang/epam/epam-1.0.6.ebuild
+++ b/dev-erlang/epam/epam-1.0.6.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/processone/${PN}/archive/${PV}.tar.gz
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 
 DEPEND=">=dev-lang/erlang-17.1
sys-libs/pam"



[gentoo-commits] repo/gentoo:master commit in: dev-tcltk/tls/

2019-11-16 Thread Matt Turner
commit: 3c1d7f8a437021064426278d483f5cc6c2960e9e
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Nov 17 04:10:16 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Nov 17 04:10:34 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c1d7f8a

dev-tcltk/tls: Drop alpha keywords, bug 697646

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

 dev-tcltk/tls/tls-1.6-r3.ebuild | 2 +-
 dev-tcltk/tls/tls-1.6.7.ebuild  | 2 +-
 dev-tcltk/tls/tls-1.7.11.ebuild | 2 +-
 dev-tcltk/tls/tls-1.7.16.ebuild | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-tcltk/tls/tls-1.6-r3.ebuild b/dev-tcltk/tls/tls-1.6-r3.ebuild
index f85cb1f6596..0d2403a6015 100644
--- a/dev-tcltk/tls/tls-1.6-r3.ebuild
+++ b/dev-tcltk/tls/tls-1.6-r3.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://sourceforge/tls/${MY_P}-src.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="alpha amd64 hppa ppc ppc64 sparc x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x86-macos"
+KEYWORDS="amd64 hppa ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x86-macos"
 IUSE="tk"
 
 DEPEND="

diff --git a/dev-tcltk/tls/tls-1.6.7.ebuild b/dev-tcltk/tls/tls-1.6.7.ebuild
index 065cbe9b6ba..00ff61e1ea3 100644
--- a/dev-tcltk/tls/tls-1.6.7.ebuild
+++ b/dev-tcltk/tls/tls-1.6.7.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://sourceforge/tls/${MY_P}-src.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x86-macos"
+KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x86-macos"
 IUSE="tk"
 
 DEPEND="

diff --git a/dev-tcltk/tls/tls-1.7.11.ebuild b/dev-tcltk/tls/tls-1.7.11.ebuild
index 7b22e45bf9d..9fca7425f25 100644
--- a/dev-tcltk/tls/tls-1.7.11.ebuild
+++ b/dev-tcltk/tls/tls-1.7.11.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://core.tcl.tk/tcltls/uv/tcl${PN}-${PV}.tar.gz;
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x86-macos"
+KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x86-macos"
 IUSE="tk"
 
 DEPEND="

diff --git a/dev-tcltk/tls/tls-1.7.16.ebuild b/dev-tcltk/tls/tls-1.7.16.ebuild
index b07c1d03673..570e246eaa3 100644
--- a/dev-tcltk/tls/tls-1.7.16.ebuild
+++ b/dev-tcltk/tls/tls-1.7.16.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://core.tcl.tk/tcltls/uv/${MY_P}.tar.gz;
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 hppa ppc ppc64 sparc x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x86-macos"
+KEYWORDS="amd64 hppa ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x86-macos"
 IUSE="tk"
 
 DEPEND="



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

2019-11-16 Thread Matt Turner
commit: ba0bc457c4dc497dc41c1c664afa392740c6bd68
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Nov 16 22:09:12 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Nov 17 04:01:28 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba0bc457

net-misc/mosh-1.3.2: alpha stable

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

 net-misc/mosh/mosh-1.3.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/mosh/mosh-1.3.2.ebuild b/net-misc/mosh/mosh-1.3.2.ebuild
index 4eea0ddd972..950ba417243 100644
--- a/net-misc/mosh/mosh-1.3.2.ebuild
+++ b/net-misc/mosh/mosh-1.3.2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://mosh.org/${P}.tar.gz;
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~mips ppc ~ppc64 ~sparc x86 
~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="alpha amd64 ~arm ~arm64 ~ia64 ~mips ppc ~ppc64 ~sparc x86 
~amd64-linux ~x86-linux ~x64-macos"
 IUSE="+client examples libressl +mosh-hardening +server ufw +utempter"
 
 REQUIRED_USE="



[gentoo-commits] repo/gentoo:master commit in: dev-perl/IO-Socket-SSL/

2019-11-16 Thread Matt Turner
commit: 48aad5f2a12bda94e97eddc78a3300a37e93b96c
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Nov 17 04:00:52 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Nov 17 04:01:29 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48aad5f2

dev-perl/IO-Socket-SSL-2.66.0: alpha stable, bug 682224

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

 dev-perl/IO-Socket-SSL/IO-Socket-SSL-2.66.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/IO-Socket-SSL/IO-Socket-SSL-2.66.0.ebuild 
b/dev-perl/IO-Socket-SSL/IO-Socket-SSL-2.66.0.ebuild
index 77035cc7d6b..17780f2a22e 100644
--- a/dev-perl/IO-Socket-SSL/IO-Socket-SSL-2.66.0.ebuild
+++ b/dev-perl/IO-Socket-SSL/IO-Socket-SSL-2.66.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="Nearly transparent SSL encapsulation for IO::Socket::INET"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ia64 ~mips ppc ppc64 ~riscv s390 ~sh 
sparc x86"
+KEYWORDS="alpha amd64 arm arm64 ~hppa ia64 ~mips ppc ppc64 ~riscv s390 ~sh 
sparc x86"
 IUSE="idn"
 
 RDEPEND="



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

2019-11-16 Thread Matt Turner
commit: d461d3cf2d38ccce0be329bcd20f3c3435c3bab6
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Nov 17 04:00:53 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Nov 17 04:01:29 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d461d3cf

dev-perl/Net-SSLeay-1.880.0: alpha stable, bug 684308

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

 dev-perl/Net-SSLeay/Net-SSLeay-1.880.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Net-SSLeay/Net-SSLeay-1.880.0.ebuild 
b/dev-perl/Net-SSLeay/Net-SSLeay-1.880.0.ebuild
index aac758fd2b7..866ca7d49c8 100644
--- a/dev-perl/Net-SSLeay/Net-SSLeay-1.880.0.ebuild
+++ b/dev-perl/Net-SSLeay/Net-SSLeay-1.880.0.ebuild
@@ -12,7 +12,7 @@ DESCRIPTION="Perl extension for using OpenSSL"
 
 LICENSE="Artistic-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
~sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+KEYWORDS="alpha amd64 arm arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
~sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
 IUSE="libressl test minimal examples"
 
 RDEPEND="



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

2019-11-16 Thread Matt Turner
commit: e956082478163d178c83c2fbe4e235e568656d18
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Nov 17 04:00:53 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Nov 17 04:01:29 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9560824

dev-perl/glib-perl-1.329.100: alpha stable, bug 691020

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

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

diff --git a/dev-perl/glib-perl/glib-perl-1.329.100.ebuild 
b/dev-perl/glib-perl/glib-perl-1.329.100.ebuild
index b2a2aa62ac9..c3666eb678f 100644
--- a/dev-perl/glib-perl/glib-perl-1.329.100.ebuild
+++ b/dev-perl/glib-perl/glib-perl-1.329.100.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="http://gtk2-perl.sf.net/ ${HOMEPAGE}"
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm arm64 ~hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 RDEPEND="



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

2019-11-16 Thread Matt Turner
commit: bb0b4033edf69496dfb7676e7607ab2e512d3248
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Nov 17 04:00:41 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Nov 17 04:01:28 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb0b4033

dev-perl/libintl-perl-1.310.0: alpha stable, bug 661768

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

 dev-perl/libintl-perl/libintl-perl-1.310.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/libintl-perl/libintl-perl-1.310.0.ebuild 
b/dev-perl/libintl-perl/libintl-perl-1.310.0.ebuild
index 9406131c0a0..86da28553dc 100644
--- a/dev-perl/libintl-perl/libintl-perl-1.310.0.ebuild
+++ b/dev-perl/libintl-perl/libintl-perl-1.310.0.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="http://guido-flohr.net/projects/libintl-perl 
${HOMEPAGE}"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
~sh sparc x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~m68k-mint ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
~sh sparc x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~m68k-mint ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="minimal"
 
 RDEPEND="



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

2019-11-16 Thread Matt Turner
commit: 3aedd3d7175827c37e6fbb7d7c76b015fd4d68f8
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Nov 17 04:00:51 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Nov 17 04:01:29 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3aedd3d7

dev-perl/Pango-1.227.0-r1: alpha stable, bug 662320

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

 dev-perl/Pango/Pango-1.227.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Pango/Pango-1.227.0-r1.ebuild 
b/dev-perl/Pango/Pango-1.227.0-r1.ebuild
index dc82193865d..ebac48354e1 100644
--- a/dev-perl/Pango/Pango-1.227.0-r1.ebuild
+++ b/dev-perl/Pango/Pango-1.227.0-r1.ebuild
@@ -13,7 +13,7 @@ DESCRIPTION="Layout and render international text"
 
 LICENSE="LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
 IUSE="examples test minimal"
 
 RDEPEND="



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

2019-11-16 Thread Tim Harder
commit: c6e8c3e344f390f876763038ce776484e038ddcd
Author: Tim Harder  gentoo  org>
AuthorDate: Sun Nov 17 02:40:52 2019 +
Commit: Tim Harder  gentoo  org>
CommitDate: Sun Nov 17 02:40:52 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6e8c3e3

dev-python/pathspec: drop unused doc use flag

Signed-off-by: Tim Harder  gentoo.org>

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

diff --git a/dev-python/pathspec/pathspec-0.6.0.ebuild 
b/dev-python/pathspec/pathspec-0.6.0.ebuild
index 867c106c652..291d7aea355 100644
--- a/dev-python/pathspec/pathspec-0.6.0.ebuild
+++ b/dev-python/pathspec/pathspec-0.6.0.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 LICENSE="MPL-2.0"
 SLOT="0"
 KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
-IUSE="doc"
+IUSE=""
 
 BDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
 



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

2019-11-16 Thread Tim Harder
commit: ff90b21293eae1b495f4651c18d821fef919ad73
Author: Tim Harder  gentoo  org>
AuthorDate: Sun Nov 17 02:09:55 2019 +
Commit: Tim Harder  gentoo  org>
CommitDate: Sun Nov 17 02:33:59 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff90b212

dev-python/pathspec: initial import

Signed-off-by: Tim Harder  gentoo.org>

 dev-python/pathspec/Manifest  |  1 +
 dev-python/pathspec/metadata.xml  | 12 
 dev-python/pathspec/pathspec-0.6.0.ebuild | 22 ++
 3 files changed, 35 insertions(+)

diff --git a/dev-python/pathspec/Manifest b/dev-python/pathspec/Manifest
new file mode 100644
index 000..9c3c4f13f22
--- /dev/null
+++ b/dev-python/pathspec/Manifest
@@ -0,0 +1 @@
+DIST pathspec-0.6.0.tar.gz 24159 BLAKE2B 
ac3f75d7f4b3f6d092d216176823f061fe91f3bead10947b01315267655133a0f99a29288283cbeeff7c2c9305c499b4ade1efcdccc554d756ecaaae2f84896c
 SHA512 
e08baa05a3fe58ec6ecd651577834115cdeef26b75eef274d843c3c6444cf771e86f99a2a2b2980a6d1ece946997f1ebe714f79ddd5c296071c2e18b73955a84

diff --git a/dev-python/pathspec/metadata.xml b/dev-python/pathspec/metadata.xml
new file mode 100644
index 000..a3135fd46ef
--- /dev/null
+++ b/dev-python/pathspec/metadata.xml
@@ -0,0 +1,12 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  
+pyt...@gentoo.org
+Python
+  
+  
+pathspec
+cpburnz/python-path-specification
+  
+

diff --git a/dev-python/pathspec/pathspec-0.6.0.ebuild 
b/dev-python/pathspec/pathspec-0.6.0.ebuild
new file mode 100644
index 000..867c106c652
--- /dev/null
+++ b/dev-python/pathspec/pathspec-0.6.0.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python2_7 python3_{5,6,7,8} pypy{,3} )
+
+inherit distutils-r1
+
+DESCRIPTION="Utility library for gitignore style pattern matching of file 
paths."
+HOMEPAGE="https://github.com/cpburnz/python-path-specification 
https://pypi.org/project/pathspec/;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MPL-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+IUSE="doc"
+
+BDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
+
+python_test() {
+   esetup.py test
+}



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

2019-11-16 Thread Tim Harder
commit: e381b92c16be7ecb04e5685a0c933d5d526a6937
Author: Tim Harder  gentoo  org>
AuthorDate: Sun Nov 17 02:10:16 2019 +
Commit: Tim Harder  gentoo  org>
CommitDate: Sun Nov 17 02:33:59 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e381b92c

dev-util/pkgcheck: add dev-python/pathspec rdep to live ebuild

Signed-off-by: Tim Harder  gentoo.org>

 dev-util/pkgcheck/pkgcheck-.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-util/pkgcheck/pkgcheck-.ebuild 
b/dev-util/pkgcheck/pkgcheck-.ebuild
index 5c6e0fb886b..46531c29150 100644
--- a/dev-util/pkgcheck/pkgcheck-.ebuild
+++ b/dev-util/pkgcheck/pkgcheck-.ebuild
@@ -34,6 +34,7 @@ fi
 RDEPEND+="
dev-python/chardet[${PYTHON_USEDEP}]
dev-python/lxml[${PYTHON_USEDEP}]
+   dev-python/pathspec[${PYTHON_USEDEP}]
network? ( dev-python/requests[${PYTHON_USEDEP}] )
perl? ( dev-perl/Gentoo-PerlMod-Version )
 "



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

2019-11-16 Thread Aaron Bauman
commit: 32e184ab3e970f6338aa06d3b6a76c4118ab1239
Author: Aaron Bauman  gentoo  org>
AuthorDate: Sun Nov 17 02:21:02 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun Nov 17 02:21:02 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32e184ab

media-plugins/tap-plugins: drop old EAPI

Signed-off-by: Aaron Bauman  gentoo.org>

 media-plugins/tap-plugins/Manifest |  1 -
 media-plugins/tap-plugins/tap-plugins-0.7.2.ebuild | 37 --
 2 files changed, 38 deletions(-)

diff --git a/media-plugins/tap-plugins/Manifest 
b/media-plugins/tap-plugins/Manifest
index 0eb048ce5df..431e4b15341 100644
--- a/media-plugins/tap-plugins/Manifest
+++ b/media-plugins/tap-plugins/Manifest
@@ -1,2 +1 @@
-DIST tap-plugins-0.7.2.tar.gz 70961 BLAKE2B 
65d69db60afbd04b4951135987b93c62d6dacae98f8d838378a2fd693ccc14b294ccc4878357f977383fdf92c55c4530eb724528bfd6c7a16e7bd1355cc919c1
 SHA512 
3cd7605b03c2732f22d7ff79c889b50db4514d232c639cf964d65b2428b8ce6193824e26622ded662cae74351daa38a321bc1b1590035e5fa0fb79bb4620edd0
 DIST tap-plugins-0.7.3.tar.gz 70495 BLAKE2B 
6e0974be78fa9a8092555282d1d8a3cb5d11731e78119bd0f71e843f6a7557aebd48cc2c8f3cdcc4f90e52eaea357926c0ad2fc9bd9c95bb361ecb7d181f098e
 SHA512 
c4e9c93b9fd8afb82067cf3a48ae665843da775c3af6124147ff1f8651d96734a4b961c4c5ea48877b32770e6d0b5a793af32a5cbb6e3b9afd5b59c8b3cc2621

diff --git a/media-plugins/tap-plugins/tap-plugins-0.7.2.ebuild 
b/media-plugins/tap-plugins/tap-plugins-0.7.2.ebuild
deleted file mode 100644
index 3f5724473fc..000
--- a/media-plugins/tap-plugins/tap-plugins-0.7.2.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit multilib toolchain-funcs eutils
-
-IUSE=""
-
-DESCRIPTION="A bunch of LADSPA plugins for audio processing"
-HOMEPAGE="http://tap-plugins.sourceforge.net;
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~ppc x86"
-
-DEPEND="media-libs/ladspa-sdk"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
-   epatch "${FILESDIR}/${PN}-0.7.0-cflags-ldflags.patch"
-}
-
-src_compile() {
-   emake CC=$(tc-getCC) OPT_CFLAGS="${CFLAGS}" EXTRA_LDFLAGS="${LDFLAGS}"
-}
-
-src_install() {
-   dodoc README CREDITS
-   insinto /usr/$(get_libdir)/ladspa
-   insopts -m0755
-   doins *.so
-   insinto /usr/share/ladspa/rdf
-   insopts -m0644
-   doins *.rdf
-}



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

2019-11-16 Thread Aaron Bauman
commit: fee0a8f030aef3633d5c8f873d9ac1e9c38c8717
Author: Aaron Bauman  gentoo  org>
AuthorDate: Sun Nov 17 02:28:05 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun Nov 17 02:28:05 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fee0a8f0

sys-apps/memtester: drop old EAPI

Signed-off-by: Aaron Bauman  gentoo.org>

 sys-apps/memtester/Manifest   |  1 -
 sys-apps/memtester/memtester-4.2.2.ebuild | 27 ---
 2 files changed, 28 deletions(-)

diff --git a/sys-apps/memtester/Manifest b/sys-apps/memtester/Manifest
index 877e685e6ed..2b946bdae37 100644
--- a/sys-apps/memtester/Manifest
+++ b/sys-apps/memtester/Manifest
@@ -1,2 +1 @@
-DIST memtester-4.2.2.tar.gz 20952 BLAKE2B 
cf0728363250f13b58f8376f1bfa707125e52af382b572643dc1c7676205d170ae525b8e14c79532cf44151ad9b46cc3a26c1319c01410c76e6167f71c271123
 SHA512 
9ddff98e3173583e3edd50fb5e8a951f20956a75768231c8576d33d091776f22eeb15717a8b87e968e9c49211c83551d518f62ad3a1b0ee1db76152fee925bfa
 DIST memtester-4.3.0.tar.gz 22113 BLAKE2B 
564cb874ea8263e23049d99417bb75f4d9f6fe1bbc022b2f2043735548c97f0060e877079087e524738bda3f9669d0ec171fb3aa9958a2904d848ace87d1cd91
 SHA512 
045bcc73855706ff03e8ca65297a0d6e5b5ac02f99dae0f17cef1310b403efcb78d9a7295eca6d2de703b0a7b2f71b58a37f5a42040f01fc77a321a8d2205888

diff --git a/sys-apps/memtester/memtester-4.2.2.ebuild 
b/sys-apps/memtester/memtester-4.2.2.ebuild
deleted file mode 100644
index 78eb7e3c08d..000
--- a/sys-apps/memtester/memtester-4.2.2.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="4"
-
-inherit toolchain-funcs
-
-DESCRIPTION="userspace utility for testing the memory subsystem for faults"
-HOMEPAGE="http://pyropus.ca/software/memtester/;
-SRC_URI="http://pyropus.ca/software/memtester/${P}.tar.gz
-   http://pyropus.ca/software/memtester/old-versions/${P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~ia64 ~mips ppc ppc64 ~sparc x86"
-IUSE=""
-
-src_prepare() {
-   echo "$(tc-getCC) ${CFLAGS} ${CPPFLAGS} -DPOSIX -c" > conf-cc
-   echo "$(tc-getCC) ${CFLAGS} ${LDFLAGS}" > conf-ld
-}
-
-src_install() {
-   dosbin memtester
-   doman memtester.8
-   dodoc BUGS CHANGELOG README README.tests
-}



[gentoo-commits] repo/gentoo:master commit in: net-nds/smbldap-tools/

2019-11-16 Thread Aaron Bauman
commit: bfcd327e6242825d549b296b91f7f1829c8b6ba4
Author: Aaron Bauman  gentoo  org>
AuthorDate: Sun Nov 17 02:22:59 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun Nov 17 02:22:59 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bfcd327e

net-nds/smbldap-tools: drop old EAPI

Signed-off-by: Aaron Bauman  gentoo.org>

 net-nds/smbldap-tools/Manifest|  1 -
 net-nds/smbldap-tools/smbldap-tools-0.9.10.ebuild | 52 ---
 net-nds/smbldap-tools/smbldap-tools-0.9.9.ebuild  | 52 ---
 3 files changed, 105 deletions(-)

diff --git a/net-nds/smbldap-tools/Manifest b/net-nds/smbldap-tools/Manifest
index 16c380dc610..529818fb404 100644
--- a/net-nds/smbldap-tools/Manifest
+++ b/net-nds/smbldap-tools/Manifest
@@ -1,3 +1,2 @@
 DIST smbldap-tools-0.9.10.tar.gz 336840 BLAKE2B 
8df7cf34d1fedb54ece3f5c018b7bf03a1b0f0ca8813980eaa21d338113fe30535d7627c0d61b8d30c331e20ebb81449ae4a0ddcdfd4a93cb028f2c376a2ce76
 SHA512 
e1aef98d91ec722427b27f3aed25d8ef4cd4a6c845f98935e2f99075dea93275fc0335760d517398be8ca7898084bfee457ada0a718b66226e6ce3f38fdf2b2e
 DIST smbldap-tools-0.9.8.tar.gz 335484 BLAKE2B 
8963a8b0d9130fb51d8746db850e34b6402631b1467d64e8547679dcdffb115d6e2c4576910f864f969a586bd00ee373fc834b02d592231e60c10562a75c5b2b
 SHA512 
e78531559591022331d4d8f62017a0ce3434e0d6e5ae1e1b5ea86d486cd6aeae29a7721ae88c36b034f5907aa0eea29583f365b9f7602da73172074301628d91
-DIST smbldap-tools-0.9.9.tar.gz 336212 BLAKE2B 
fed6d91f371b9d7695eb738033efd506bab96c37b33891114b3c220fe5ba0ea3a02633c6257aed3fc12fb619b42502770609d0339143bf802ca602eee64d7a9c
 SHA512 
c51eb2c03dc45aaadb4c3467c07ecab080891223e6e0bd5fff5c1b8ea6ca3d2839163b2014764c280e37df30b029417ecea8d93b3b6a5459f6fa068eea5d71a9

diff --git a/net-nds/smbldap-tools/smbldap-tools-0.9.10.ebuild 
b/net-nds/smbldap-tools/smbldap-tools-0.9.10.ebuild
deleted file mode 100644
index cf215dbf990..000
--- a/net-nds/smbldap-tools/smbldap-tools-0.9.10.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit eutils
-
-DESCRIPTION="Samba LDAP management tools"
-HOMEPAGE="https://gna.org/projects/smbldap-tools/;
-SRC_URI="http://download.gna.org/smbldap-tools/sources/${PV}/${P}.tar.gz;
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
-IUSE=""
-
-RDEPEND="
-   dev-perl/perl-ldap
-   dev-perl/Crypt-SmbHash
-   dev-perl/Digest-SHA1
-   dev-perl/Unicode-MapUTF8
-   dev-perl/IO-Socket-SSL
-   net-nds/openldap
-   net-fs/samba
-"
-DEPEND="${RDEPEND}"
-
-src_install() {
-   default
-
-   newsbin smbldap-config.cmd smbldap-config
-   dosym smbldap-passwd /usr/sbin/smbldap-passwd.cmd
-
-   dodoc CONTRIBUTORS ChangeLog FILES INFRA INSTALL README TODO doc/*conf* 
doc/smbldap-tools*
-   dodoc -r doc/migration_scripts
-
-   sed -i 's/.CMD//g' smbldap-[gpu]*.8 || die
-   doman smbldap-[gpu]*.8
-
-   insinto /etc/smbldap-tools
-   doins smbldap.conf smbldap_bind.conf
-
-   elog "Remember to read INSTALL when updating."
-}
-
-pkg_postinst() {
-   elog "- A good howto is found on 
http://download.gna.org/smbldap-tools/docs/samba-ldap-howto/;
-   elog "  and http://download.gna.org/smbldap-tools/docs/smbldap-tools/;
-   elog "- The configure script is installed as smbldap-configure.pl. 
Please run it to configure the tools."
-   elog "- Examples configuration files for Samba and slapd have been 
copied to ${EPREFIX}/usr/share/doc/${PF},"
-   elog "  together with the migration-scripts."
-   elog "- Also remember to read INSTALL when updating."
-}

diff --git a/net-nds/smbldap-tools/smbldap-tools-0.9.9.ebuild 
b/net-nds/smbldap-tools/smbldap-tools-0.9.9.ebuild
deleted file mode 100644
index adfeccf10e4..000
--- a/net-nds/smbldap-tools/smbldap-tools-0.9.9.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit eutils
-
-DESCRIPTION="Samba LDAP management tools"
-HOMEPAGE="https://gna.org/projects/smbldap-tools/;
-SRC_URI="http://download.gna.org/smbldap-tools/sources/${PV}/${P}.tar.gz;
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
-IUSE=""
-
-RDEPEND="
-   dev-perl/perl-ldap
-   dev-perl/Crypt-SmbHash
-   dev-perl/Digest-SHA1
-   dev-perl/Unicode-MapUTF8
-   dev-perl/IO-Socket-SSL
-   net-nds/openldap
-   net-fs/samba
-"
-DEPEND="${RDEPEND}"
-
-src_install() {
-   default
-
-   newsbin smbldap-config.cmd smbldap-config
-   dosym smbldap-passwd /usr/sbin/smbldap-passwd.cmd
-
-   dodoc CONTRIBUTORS ChangeLog FILES INFRA INSTALL README TODO doc/*conf* 
doc/smbldap-tools*
-   dodoc -r doc/migration_scripts
-
-   sed -i 's/.CMD//g' 

[gentoo-commits] repo/gentoo:master commit in: dev-vcs/tkcvs/

2019-11-16 Thread Aaron Bauman
commit: e82243ca3ce3b1e14d7550d61de32101d7915f08
Author: Aaron Bauman  gentoo  org>
AuthorDate: Sun Nov 17 02:18:38 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun Nov 17 02:18:38 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e82243ca

dev-vcs/tkcvs: drop old EAPI

Signed-off-by: Aaron Bauman  gentoo.org>

 dev-vcs/tkcvs/Manifest   |  1 -
 dev-vcs/tkcvs/tkcvs-8.2.2.ebuild | 45 
 2 files changed, 46 deletions(-)

diff --git a/dev-vcs/tkcvs/Manifest b/dev-vcs/tkcvs/Manifest
index da180a1346f..0789e503e18 100644
--- a/dev-vcs/tkcvs/Manifest
+++ b/dev-vcs/tkcvs/Manifest
@@ -1,2 +1 @@
 DIST tkcvs-8.2.3.tar.gz 570910 BLAKE2B 
e612fb2fa01ad0205973eef48eaa6c11677d3aec8f1a5344b1d1719aafde79e830f550f990a7bceb8063edb530de807b7878937015bcd0175aef038031663bb0
 SHA512 
42fb03acf6367e02f6f7b3e1ad66232be4825f152b3e4d123080e0ce7d2f53b5eacb71ac95fbc15224fb4c4c2cae979b612dbb11d0cd0b8fc4a0222a8cd40c8a
-DIST tkcvs_8_2_2.tar.gz 1183853 BLAKE2B 
01195764b85b7f3e24f937052d1f21e969f7c060bef97664ce8fc6000dd8025064274610b0159940630dd1f8c51b92e2331793146fd44fc4b736b512118328be
 SHA512 
7a3f76f8157601a9359382597746e7ee4ed491f94d4ba5992848d48b8c5de1c81c91e8245a88b17c68af6898f269fcd3bf6ba9c920bb083190c849ec13e7bf9f

diff --git a/dev-vcs/tkcvs/tkcvs-8.2.2.ebuild b/dev-vcs/tkcvs/tkcvs-8.2.2.ebuild
deleted file mode 100644
index c8898cdbe2e..000
--- a/dev-vcs/tkcvs/tkcvs-8.2.2.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit eutils multilib
-
-MY_P=${PN}_${PV//./_}
-
-DESCRIPTION="Tcl/Tk-based graphical interface to CVS with Subversion support"
-HOMEPAGE="http://www.twobarleycorns.net/tkcvs.html;
-SRC_URI="http://www.twobarleycorns.net/${MY_P}.tar.gz;
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="amd64 ppc x86"
-IUSE=""
-
-DEPEND="dev-lang/tk"
-RDEPEND="${DEPEND}
-   dev-vcs/cvs
-   dev-vcs/subversion
-   sys-apps/diffutils
-   dev-util/tkdiff"
-
-S="${WORKDIR}"/${MY_P}
-
-src_prepare() {
-   sed \
-   -e "/set MANDIR/s/man man1/share man man1/" \
-   -e "/set LIBDIR/s/lib/$(get_libdir)/" \
-   -i doinstall.tcl || die
-}
-
-src_install() {
-   # bug 66030
-   unset DISPLAY
-   ./doinstall.tcl -nox "${D}"/usr || die
-
-   # dev-tcktk/tkdiff
-   rm "${D}"/usr/bin/tkdiff
-
-   # Add docs...this is important
-   dodoc CHANGELOG FAQ
-}



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

2019-11-16 Thread Aaron Bauman
commit: f0b53b71d8de4ece479a2aa7f0689bf15ca94702
Author: Aaron Bauman  gentoo  org>
AuthorDate: Sun Nov 17 01:48:15 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun Nov 17 02:00:42 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0b53b71

dev-util/ccglue: last-rites

Signed-off-by: Aaron Bauman  gentoo.org>

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 84ea563114e..4da74c2ffa7 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -29,6 +29,10 @@
 
 #--- END OF EXAMPLES ---
 
+# Aaron Bauman  (2019-11-16)
+# EAPI=4 and fails to build
+dev-util/ccglue
+
 # Aaron Bauman  (2019-11-16)
 # EAPI=4. --filter=gay Really?!
 # Removal in 15 days



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

2019-11-16 Thread Aaron Bauman
commit: 7ef865f0a95130ea3bfcafbf98f2b2f92d606cbe
Author: Aaron Bauman  gentoo  org>
AuthorDate: Sun Nov 17 01:39:52 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun Nov 17 02:00:41 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ef865f0

dev-tex/metapost: drop old EAPI

Signed-off-by: Aaron Bauman  gentoo.org>

 dev-tex/metapost/Manifest  |  1 -
 dev-tex/metapost/metapost-1.780.ebuild | 73 --
 2 files changed, 74 deletions(-)

diff --git a/dev-tex/metapost/Manifest b/dev-tex/metapost/Manifest
index 010668a31e3..7410b8e2de9 100644
--- a/dev-tex/metapost/Manifest
+++ b/dev-tex/metapost/Manifest
@@ -1,3 +1,2 @@
-DIST metapost-1.780-src.tar.bz2 7723409 BLAKE2B 
851738637f4ec9cc0e9f8d416094f3904fb563be05e461d4f16b1a268675b0789047bb8d54f8fe6551e66b32b5c3e58e35bdf2ec64ef8486cb0c4e9476ec6c71
 SHA512 
3002da0706fcd33a2d183f42b770b7c2d72759a8ba0e49ae24e4a5cee5dd9cd0842e7e8d854e22962beaff4dfd1b943a63f41ee07a7743bb7d50a0cdfb4dd4ff
 DIST metapost-1.803-src.tar.bz2 8140579 BLAKE2B 
9232a875da449b8caa667623e725317336d737e16c2d0b2647e9579fad067ea3eae85eb74ae9a05bfb079e7b18edcb18ee7a7c26bbee343b8ecbd6f5ed84ce90
 SHA512 
7f59e93f73c9f9c6fe547028dd22527c948ea171c235758e1acf9477c85d2fb2cc145b3bd707646a4b5317e57ce5d49160ff347cdecca599b6e0da8a8f679d99
 DIST metapost-1.902-src.tar.bz2 6170876 BLAKE2B 
7b276fb4c9373a8ac43ef4c6c40c8e6c6726e93ab4cb82d4c34371025e448e985d1a5df587f8b108e786542bb1c4852977eaae964dd991824a506dca5eed9f53
 SHA512 
d1e38d9f6f16b6815999c1d05b70ece50668962660af0800c105075522a2d943156986aa8df76d7bd2b6d04f657295c15a04a6e67772ce1d8546b885c355aea3

diff --git a/dev-tex/metapost/metapost-1.780.ebuild 
b/dev-tex/metapost/metapost-1.780.ebuild
deleted file mode 100644
index ecc73131818..000
--- a/dev-tex/metapost/metapost-1.780.ebuild
+++ /dev/null
@@ -1,73 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-DESCRIPTION="System for producing graphics"
-HOMEPAGE="http://tug.org/metapost.html;
-SRC_URI="http://foundry.supelec.fr/gf/download/frsrelease/395/1879/${P}-src.tar.bz2;
-
-LICENSE="GPL-2 LGPL-3"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE=""
-
-RDEPEND="dev-libs/kpathsea
-   >=app-eselect/eselect-mpost-0.3
-   x11-libs/cairo
-   x11-libs/pixman
-   media-libs/libpng"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig"
-
-S=${WORKDIR}/${P}/source/texk/web2c
-
-src_configure() {
-   econf \
-   --disable-all-pkgs \
-   --enable-shared\
-   --disable-largefile \
-   --disable-ptex \
-   --enable-mp  \
-   --with-system-cairo \
-   --with-system-libpng \
-   --without-ptexenc \
-   --with-system-kpathsea \
-   --with-system-xpdf \
-   --with-system-freetype \
-   --with-system-freetype2 \
-   --with-system-gd \
-   --with-system-teckit \
-   --with-system-t1lib \
-   --with-system-icu \
-   --with-system-graphite \
-   --with-system-zziplib \
-   --with-system-poppler \
-   --with-system-zlib \
-   --with-system-pixman \
-   --disable-native-texlive-build \
-   --without-mf-x-toolkit --without-x
-}
-
-src_compile() {
-   emake mpost
-}
-
-src_install() {
-   emake DESTDIR="${D}" \
-   SUBDIRS="" \
-   bin_PROGRAMS="mpost" \
-   nodist_man_MANS="" \
-   dist_man_MANS="" \
-   install-binPROGRAMS
-   # Rename it
-   mv "${D}/usr/bin/mpost" "${D}/usr/bin/mpost-${P}" || die "renaming 
failed"
-
-   cd "${WORKDIR}/${P}"
-   dodoc README CHANGES
-}
-
-pkg_postinst(){
-   einfo "Calling eselect mpost update"
-   eselect mpost update
-}



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

2019-11-16 Thread Aaron Bauman
commit: c8e0f058a66575a8bbf5e31e2238aedb452ca54d
Author: Aaron Bauman  gentoo  org>
AuthorDate: Sun Nov 17 02:00:22 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun Nov 17 02:00:42 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8e0f058

net-irc/rbot: last-rites

Signed-off-by: Aaron Bauman  gentoo.org>

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 4da74c2ffa7..3aa46809083 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -35,8 +35,9 @@ dev-util/ccglue
 
 # Aaron Bauman  (2019-11-16)
 # EAPI=4. --filter=gay Really?!
-# Removal in 15 days
+# rdeps too. Removal in 15 days
 app-misc/toilet
+net-irc/rbot
 
 # Aaron Bauman  (2019-11-16)
 # EAPI=4. If anyone has this hardware then speak up.



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

2019-11-16 Thread Andreas Sturmlechner
commit: 45591f809588db5c248c0f61a6bb04945c5eb732
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Nov 17 01:58:19 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Nov 17 01:58:19 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45591f80

media-libs/openicc: EAPI-7 bump

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

 media-libs/openicc/openicc-0.1.0.ebuild | 13 +++--
 1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/media-libs/openicc/openicc-0.1.0.ebuild 
b/media-libs/openicc/openicc-0.1.0.ebuild
index c924a25f5f1..b1a307e6ee2 100644
--- a/media-libs/openicc/openicc-0.1.0.ebuild
+++ b/media-libs/openicc/openicc-0.1.0.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
 inherit cmake-multilib
 
@@ -14,13 +14,14 @@ SLOT="0"
 KEYWORDS="~amd64 ~x86"
 IUSE="doc static-libs test"
 
-RDEPEND="
-   dev-libs/yajl[${MULTILIB_USEDEP}]
-"
-DEPEND="${RDEPEND}
+BDEPEND="
sys-devel/gettext
doc? ( app-doc/doxygen )
 "
+DEPEND="
+   dev-libs/yajl[${MULTILIB_USEDEP}]
+"
+RDEPEND="${DEPEND}"
 
 REQUIRED_USE="test? ( static-libs )"
 



[gentoo-commits] proj/releng:master commit in: tools-uclibc/portage.amd64.vanilla/savedconfig/sys-libs/, ...

2019-11-16 Thread Anthony G. Basile
commit: af771ff5bb60dc11a2b7cdd8b6fe3ab808c7663b
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sun Nov 17 01:46:19 2019 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sun Nov 17 01:46:30 2019 +
URL:https://gitweb.gentoo.org/proj/releng.git/commit/?id=af771ff5

tools-uclibc: update configs for amd64

Signed-off-by: Anthony G. Basile  gentoo.org>

 tools-uclibc/portage.amd64.hardened/savedconfig/sys-libs/uclibc-ng | 3 ++-
 tools-uclibc/portage.amd64.vanilla/savedconfig/sys-libs/uclibc-ng  | 3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/tools-uclibc/portage.amd64.hardened/savedconfig/sys-libs/uclibc-ng 
b/tools-uclibc/portage.amd64.hardened/savedconfig/sys-libs/uclibc-ng
index ff79a099..5b40d282 100644
--- a/tools-uclibc/portage.amd64.hardened/savedconfig/sys-libs/uclibc-ng
+++ b/tools-uclibc/portage.amd64.hardened/savedconfig/sys-libs/uclibc-ng
@@ -1,6 +1,6 @@
 #
 # Automatically generated file; DO NOT EDIT.
-# uClibc-ng 0.1.0.30 C Library Configuration
+# uClibc-ng 0.1.0.32 C Library Configuration
 #
 # TARGET_aarch64 is not set
 # TARGET_alpha is not set
@@ -25,6 +25,7 @@
 # TARGET_nios2 is not set
 # TARGET_or1k is not set
 # TARGET_powerpc is not set
+# TARGET_riscv64 is not set
 # TARGET_sh is not set
 # TARGET_sparc is not set
 # TARGET_sparc64 is not set

diff --git a/tools-uclibc/portage.amd64.vanilla/savedconfig/sys-libs/uclibc-ng 
b/tools-uclibc/portage.amd64.vanilla/savedconfig/sys-libs/uclibc-ng
index ff79a099..5b40d282 100644
--- a/tools-uclibc/portage.amd64.vanilla/savedconfig/sys-libs/uclibc-ng
+++ b/tools-uclibc/portage.amd64.vanilla/savedconfig/sys-libs/uclibc-ng
@@ -1,6 +1,6 @@
 #
 # Automatically generated file; DO NOT EDIT.
-# uClibc-ng 0.1.0.30 C Library Configuration
+# uClibc-ng 0.1.0.32 C Library Configuration
 #
 # TARGET_aarch64 is not set
 # TARGET_alpha is not set
@@ -25,6 +25,7 @@
 # TARGET_nios2 is not set
 # TARGET_or1k is not set
 # TARGET_powerpc is not set
+# TARGET_riscv64 is not set
 # TARGET_sh is not set
 # TARGET_sparc is not set
 # TARGET_sparc64 is not set



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

2019-11-16 Thread Andreas Sturmlechner
commit: 75897554180954ebd53251a2f809f9e0596f91ae
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Nov 17 01:32:31 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Nov 17 01:34:21 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75897554

media-gfx/graphite2: EAPI-7 bump

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

 media-gfx/graphite2/graphite2-1.3.13.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/media-gfx/graphite2/graphite2-1.3.13.ebuild 
b/media-gfx/graphite2/graphite2-1.3.13.ebuild
index 5508e2ba642..1af96ad4ff9 100644
--- a/media-gfx/graphite2/graphite2-1.3.13.ebuild
+++ b/media-gfx/graphite2/graphite2-1.3.13.ebuild
@@ -1,7 +1,7 @@
 # Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
 PYTHON_COMPAT=( python3_{6,7} )
 
@@ -22,8 +22,8 @@ RDEPEND="
 "
 DEPEND="${RDEPEND}
perl? (
-   dev-perl/Module-Build
dev-perl/Locale-Maketext-Lexicon
+   dev-perl/Module-Build
)
test? (
${PYTHON_DEPS}
@@ -87,7 +87,7 @@ multilib_src_test() {
if multilib_is_native_abi; then
cmake-utils_src_test
else
-   einfo Cannot test since python is not multilib.
+   einfo "Cannot test since python is not multilib."
fi
 }
 



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

2019-11-16 Thread David Seifert
commit: c74bc54cd9551339d1479356a74017ec6f641dd7
Author: Martin Dummer  gmx  net>
AuthorDate: Sun Nov 17 01:33:47 2019 +
Commit: David Seifert  gentoo  org>
CommitDate: Sun Nov 17 01:33:47 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c74bc54c

media-plugins/vdr-permashift: fix multiple QA issues

* QA issue on package media-video/vdr:
  USE flag 'permashift_v1' uses reserved underscore character
  rename USE flag 'permashift_v1' to 'permashift' in package that
  depends on vdr[permashift]

Bug: https://bugs.gentoo.org/695066
Package-Manager: Portage-2.3.78, Repoman-2.3.17
Signed-off-by: Martin Dummer  gmx.net>
Signed-off-by: David Seifert  gentoo.org>

 media-plugins/vdr-permashift/metadata.xml   | 16 
 .../vdr-permashift/vdr-permashift-1.0.1-r1.ebuild   | 21 +
 2 files changed, 33 insertions(+), 4 deletions(-)

diff --git a/media-plugins/vdr-permashift/metadata.xml 
b/media-plugins/vdr-permashift/metadata.xml
index 27f419c289c..cd73dfdd596 100644
--- a/media-plugins/vdr-permashift/metadata.xml
+++ b/media-plugins/vdr-permashift/metadata.xml
@@ -1,8 +1,16 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-
-v...@gentoo.org
-Gentoo VDR Project
-
+   
+   martin.dum...@gmx.net
+   Martin Dummer
+   
+   
+   proxy-ma...@gentoo.org
+   Proxy Maintainers
+   
+   
+   v...@gentoo.org
+   Gentoo VDR Project
+   
 

diff --git a/media-plugins/vdr-permashift/vdr-permashift-1.0.1-r1.ebuild 
b/media-plugins/vdr-permashift/vdr-permashift-1.0.1-r1.ebuild
new file mode 100644
index 000..b9bc55b455b
--- /dev/null
+++ b/media-plugins/vdr-permashift/vdr-permashift-1.0.1-r1.ebuild
@@ -0,0 +1,21 @@
+# Copyright 2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit vdr-plugin-2
+
+DESCRIPTION="VDR Plugin: permanent timeshift by recording live TV on RAM"
+HOMEPAGE="http://ein-eike.de/vdr-plugin-permashift-english/;
+SRC_URI="http://ein-eike.de/wordpress/wp-content/uploads/2014/11/${P}.tgz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+DEPEND=">=media-video/vdr-2.0.6[permashift]"
+RDEPEND="${DEPEND}"
+
+QA_FLAGS_IGNORED="
+   usr/lib/vdr/plugins/libvdr-.*
+   usr/lib64/vdr/plugins/libvdr-.*"



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

2019-11-16 Thread David Seifert
commit: 2f472c1f91d21444530ed18c29a26db3fccc40a8
Author: Martin Dummer  gmx  net>
AuthorDate: Sun Nov 17 01:33:46 2019 +
Commit: David Seifert  gentoo  org>
CommitDate: Sun Nov 17 01:33:46 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f472c1f

media-video/vdr: fix multiple QA issues

* QA issue: USE flag 'permashift_v1' uses reserved underscore
  character, rename USE flag 'permashift_v1' to 'permashift'
* QA issue: UnnecessarySlashStrip in DESTDIR="${D%/}"
* QA issue: makefile installs pre-compressed manpages

Bug: https://bugs.gentoo.org/695066
Closes: https://github.com/gentoo/gentoo/pull/13588
Package-Manager: Portage-2.3.78, Repoman-2.3.17
Signed-off-by: Martin Dummer  gmx.net>
Signed-off-by: David Seifert  gentoo.org>

 media-video/vdr/files/vdr-2.2.0_gentoo.patch   | 35 +++-
 media-video/vdr/metadata.xml   | 12 -
 media-video/vdr/vdr-2.2.0-r3.ebuild|  4 +-
 .../{vdr-2.2.0-r3.ebuild => vdr-2.2.0-r4.ebuild}   | 62 +++---
 4 files changed, 63 insertions(+), 50 deletions(-)

diff --git a/media-video/vdr/files/vdr-2.2.0_gentoo.patch 
b/media-video/vdr/files/vdr-2.2.0_gentoo.patch
index 37ffd3c7b2c..70066f5b0c8 100644
--- a/media-video/vdr/files/vdr-2.2.0_gentoo.patch
+++ b/media-video/vdr/files/vdr-2.2.0_gentoo.patch
@@ -1,7 +1,6 @@
-diff -Naur vdr-2.1.7.orig/Makefile vdr-2.1.7/Makefile
 vdr-2.1.7.orig/Makefile2015-01-18 12:37:45.506034673 +0100
-+++ vdr-2.1.7/Makefile 2015-01-18 12:38:34.086037162 +0100
-@@ -116,7 +116,7 @@
+--- a/Makefile
 b/Makefile
+@@ -124,7 +124,7 @@
  VDRVERSION = $(shell sed -ne '/define VDRVERSION/s/^.*"\(.*\)".*$$/\1/p' 
config.h)
  APIVERSION = $(shell sed -ne '/define APIVERSION/s/^.*"\(.*\)".*$$/\1/p' 
config.h)
  
@@ -10,7 +9,7 @@ diff -Naur vdr-2.1.7.orig/Makefile vdr-2.1.7/Makefile
  
  # Implicit rules:
  
-@@ -170,7 +170,7 @@
+@@ -179,7 +179,7 @@
  
  PODIR = po
  LOCALEDIR = locale
@@ -19,7 +18,7 @@ diff -Naur vdr-2.1.7.orig/Makefile vdr-2.1.7/Makefile
  I18Nmo= $(addsuffix .mo, $(foreach file, $(I18Npo), $(basename $(file
  I18Nmsgs  = $(addprefix $(LOCALEDIR)/, $(addsuffix /LC_MESSAGES/vdr.mo, 
$(notdir $(foreach file, $(I18Npo), $(basename $(file))
  I18Npot   = $(PODIR)/vdr.pot
-@@ -193,7 +193,7 @@
+@@ -202,7 +202,7 @@
  
  install-i18n: i18n
@mkdir -p $(DESTDIR)$(LOCDIR)
@@ -28,7 +27,7 @@ diff -Naur vdr-2.1.7.orig/Makefile vdr-2.1.7/Makefile
  
  # The 'include' directory (for plugins):
  
-@@ -255,7 +255,7 @@
+@@ -264,7 +264,7 @@
  
  # Install the files (note that 'install-pc' must be first!):
  
@@ -37,16 +36,13 @@ diff -Naur vdr-2.1.7.orig/Makefile vdr-2.1.7/Makefile
  
  # VDR binary:
  
-@@ -267,12 +267,13 @@
+@@ -276,12 +276,10 @@
  
  install-dirs:
@mkdir -p $(DESTDIR)$(VIDEODIR)
 -  @mkdir -p $(DESTDIR)$(CONFDIR)
 -  @mkdir -p $(DESTDIR)$(ARGSDIR)
 -  @mkdir -p $(DESTDIR)$(CACHEDIR)
-+# @mkdir -p $(DESTDIR)$(CONFDIR)
-+# @mkdir -p $(DESTDIR)$(ARGSDIR)
-+# @mkdir -p $(DESTDIR)$(CACHEDIR)
@mkdir -p $(DESTDIR)$(RESDIR)
  
  install-conf:
@@ -54,14 +50,25 @@ diff -Naur vdr-2.1.7.orig/Makefile vdr-2.1.7/Makefile
@cp -pn *.conf $(DESTDIR)$(CONFDIR)
  
  # Documentation:
-@@ -299,8 +300,11 @@
+@@ -289,9 +287,9 @@
+ install-doc:
+   @mkdir -p $(DESTDIR)$(MANDIR)/man1
+   @mkdir -p $(DESTDIR)$(MANDIR)/man5
+-  @gzip -c vdr.1 > $(DESTDIR)$(MANDIR)/man1/vdr.1.gz
+-  @gzip -c vdr.5 > $(DESTDIR)$(MANDIR)/man5/vdr.5.gz
+-  @gzip -c svdrpsend.1 > $(DESTDIR)$(MANDIR)/man1/svdrpsend.1.gz
++  @cp vdr.1 $(DESTDIR)$(MANDIR)/man1/
++  @cp vdr.5 $(DESTDIR)$(MANDIR)/man5/
++  @cp svdrpsend.1 $(DESTDIR)$(MANDIR)/man1/
+ 
+ # Plugins:
+ 
+@@ -308,8 +306,9 @@
  # Includes:
  
  install-includes: include-dir
 -  @mkdir -p $(DESTDIR)$(INCDIR)
 -  @cp -pLR include/vdr include/libsi $(DESTDIR)$(INCDIR)
-+# @mkdir -p $(DESTDIR)$(INCDIR)
-+# @cp -pLR include/vdr include/libsi $(DESTDIR)$(INCDIR)
 +  @mkdir -p $(DESTDIR)$(INCDIR)/vdr $(DESTDIR)$(INCDIR)/vdr/libsi
 +  @cp -pLR include/vdr $(DESTDIR)$(INCDIR)
 +  @cp -pLR include/libsi Make.config $(DESTDIR)$(INCDIR)/vdr

diff --git a/media-video/vdr/metadata.xml b/media-video/vdr/metadata.xml
index 8ebb4b08a51..246bd87c200 100644
--- a/media-video/vdr/metadata.xml
+++ b/media-video/vdr/metadata.xml
@@ -1,6 +1,14 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
+   
+   martin.dum...@gmx.net
+   Martin Dummer
+   
+   
+   proxy-ma...@gentoo.org
+   Proxy Maintainers
+   

v...@gentoo.org
Gentoo VDR Project
@@ -19,8 +27,8 @@
Enables support for the 
media-plugins/vdr-menuorg
adds support for menu hotkeys of 
double digits
Removes NALU fill data from h.264-Streams 
of TS files
-   permanent timeshift by recording live 
TV on 

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

2019-11-16 Thread David Seifert
commit: 772af1f46384f33433f28a436865a1159be34688
Author: Martin Dummer  gmx  net>
AuthorDate: Sun Nov 17 01:33:48 2019 +
Commit: David Seifert  gentoo  org>
CommitDate: Sun Nov 17 01:33:48 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=772af1f4

media-plugins/vdr-pvr350: remove USE="yaepg"

USE flag "yaepg" is not needed any more, remove useflag from the ebuild

Closes: https://bugs.gentoo.org/699820
Package-Manager: Portage-2.3.78, Repoman-2.3.17
Signed-off-by: Martin Dummer  gmx.net>
Signed-off-by: David Seifert  gentoo.org>

 media-plugins/vdr-pvr350/metadata.xml| 20 
 media-plugins/vdr-pvr350/vdr-pvr350-1.7.5.ebuild | 21 ++---
 2 files changed, 18 insertions(+), 23 deletions(-)

diff --git a/media-plugins/vdr-pvr350/metadata.xml 
b/media-plugins/vdr-pvr350/metadata.xml
index f373077d872..cd73dfdd596 100644
--- a/media-plugins/vdr-pvr350/metadata.xml
+++ b/media-plugins/vdr-pvr350/metadata.xml
@@ -1,12 +1,16 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-
-v...@gentoo.org
-Gentoo VDR Project
-
-
-   Enables full support for the output format of
-   vdr-yaepg
-
+   
+   martin.dum...@gmx.net
+   Martin Dummer
+   
+   
+   proxy-ma...@gentoo.org
+   Proxy Maintainers
+   
+   
+   v...@gentoo.org
+   Gentoo VDR Project
+   
 

diff --git a/media-plugins/vdr-pvr350/vdr-pvr350-1.7.5.ebuild 
b/media-plugins/vdr-pvr350/vdr-pvr350-1.7.5.ebuild
index 18b1dc989e9..326a91d890a 100644
--- a/media-plugins/vdr-pvr350/vdr-pvr350-1.7.5.ebuild
+++ b/media-plugins/vdr-pvr350/vdr-pvr350-1.7.5.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
 inherit vdr-plugin-2
 
@@ -14,27 +14,18 @@ SRC_URI="mirror://vdr-developerorg/${VERSION}/${P}.tgz"
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="yaepg"
 
 DEPEND=">=media-video/vdr-2
media-sound/mpg123
media-sound/twolame
-   media-libs/a52dec
-   yaepg? ( >=media-video/vdr-2[yaepg] )"
+   media-libs/a52dec"
 RDEPEND="${DEPEND}"
 
-DEPEND="${DEPEND}
-   || ( >=sys-kernel/linux-headers-2.6.38 )"
-
 S="${WORKDIR}/${P#vdr-}"
 
-pkg_setup() {
-   vdr-plugin-2_pkg_setup
-
-   if use yaepg; then
-   BUILD_PARAMS="SET_VIDEO_WINDOW=1"
-   fi
-}
+QA_FLAGS_IGNORED="
+   usr/lib/vdr/plugins/libvdr-.*
+   usr/lib64/vdr/plugins/libvdr-.*"
 
 src_prepare() {
# remove empty language files



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

2019-11-16 Thread Aaron Bauman
commit: 0ea17bb2cfb1deb956ffa27a0c3bfb3b25cb2aba
Author: Aaron Bauman  gentoo  org>
AuthorDate: Sun Nov 17 01:28:46 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun Nov 17 01:28:46 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ea17bb2

app-misc/toilet: last-rites

Signed-off-by: Aaron Bauman  gentoo.org>

 profiles/package.mask | 5 +
 1 file changed, 5 insertions(+)

diff --git a/profiles/package.mask b/profiles/package.mask
index 40a240cd1b2..84ea563114e 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -29,6 +29,11 @@
 
 #--- END OF EXAMPLES ---
 
+# Aaron Bauman  (2019-11-16)
+# EAPI=4. --filter=gay Really?!
+# Removal in 15 days
+app-misc/toilet
+
 # Aaron Bauman  (2019-11-16)
 # EAPI=4. If anyone has this hardware then speak up.
 # Removal in 15 days



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

2019-11-16 Thread Aaron Bauman
commit: eb4a7f68bce2b4b32e0162b97cad06f3e3ede042
Author: Aaron Bauman  gentoo  org>
AuthorDate: Sun Nov 17 01:16:50 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun Nov 17 01:16:50 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb4a7f68

app-misc/scope: bump EAPI and stuff

Signed-off-by: Aaron Bauman  gentoo.org>

 app-misc/scope/scope-0.04-r1.ebuild | 7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/app-misc/scope/scope-0.04-r1.ebuild 
b/app-misc/scope/scope-0.04-r1.ebuild
index b84a1c79ec4..b3c295403ed 100644
--- a/app-misc/scope/scope-0.04-r1.ebuild
+++ b/app-misc/scope/scope-0.04-r1.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=4
+EAPI=7
 
 inherit toolchain-funcs
 
@@ -14,9 +14,10 @@ SLOT="0"
 KEYWORDS="amd64 x86"
 IUSE=""
 
-DOCS=( README )
+DOCS=( "README" )
 
 src_prepare() {
# bug 459848
tc-export CC
+   eapply_user
 }



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

2019-11-16 Thread Aaron Bauman
commit: d96d6e48ea8f4c27240b1a7fe0fecf3c192064d9
Author: Aaron Bauman  gentoo  org>
AuthorDate: Sun Nov 17 01:08:55 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun Nov 17 01:08:55 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d96d6e48

app-misc/rioutil: last-rites

Signed-off-by: Aaron Bauman  gentoo.org>

 profiles/package.mask | 5 +
 1 file changed, 5 insertions(+)

diff --git a/profiles/package.mask b/profiles/package.mask
index da15e2c5004..40a240cd1b2 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -29,6 +29,11 @@
 
 #--- END OF EXAMPLES ---
 
+# Aaron Bauman  (2019-11-16)
+# EAPI=4. If anyone has this hardware then speak up.
+# Removal in 15 days
+app-misc/rioutil
+
 # Lars Wendler  (2019-11-14)
 # Breaks archives containing relative paths
 # when being called with --no-absolute-filenames



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

2019-11-16 Thread Aaron Bauman
commit: ecb598abdccf90ceda7ee51a78174aa0dac79952
Author: Aaron Bauman  gentoo  org>
AuthorDate: Sun Nov 17 01:01:07 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun Nov 17 01:01:07 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ecb598ab

app-misc/dtach: drop old EAPI

Signed-off-by: Aaron Bauman  gentoo.org>

 app-misc/dtach/Manifest|  1 -
 app-misc/dtach/dtach-0.8-r1.ebuild | 25 -
 2 files changed, 26 deletions(-)

diff --git a/app-misc/dtach/Manifest b/app-misc/dtach/Manifest
index ae794c9475a..1ff91e5d0e4 100644
--- a/app-misc/dtach/Manifest
+++ b/app-misc/dtach/Manifest
@@ -1,2 +1 @@
-DIST dtach-0.8.tar.gz 55472 BLAKE2B 
9627075763f02787d7071658d1ae040d0c18dfe91f2954546398431e677b7c90cf67c23af0cc20182b354656d50b579c378f54d9f691853b7707a5761bc69b4f
 SHA512 
ad0a788d10a5e1e1be4c353b64e1e4a0dc8c888492a638b2442d7c59ef31d67975357116435a1059141bfc2c82a3a6e9e490faa87cf81e5fc3bc7457a99c1193
 DIST dtach-0.9.tar.gz 60608 BLAKE2B 
915b3a13cfd86a2e72505c9f8778ebbc9f25db761815e1352c0bc1281aaddcc95a837a880999379c19912fd3980bb77a20711796ef71b06282f1a27a6cc3572d
 SHA512 
28c13dc8c96c16b9c6153a3a11fdeb4a4bc72e84e1f2575043b047cd8e600a47232f29544ffd87d82e2575623ec2e999a26e23e9eac25ec81c7722bdf98cfb18

diff --git a/app-misc/dtach/dtach-0.8-r1.ebuild 
b/app-misc/dtach/dtach-0.8-r1.ebuild
deleted file mode 100644
index 34e56870b85..000
--- a/app-misc/dtach/dtach-0.8-r1.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit eutils
-
-DESCRIPTION="Emulates the detach feature of screen"
-HOMEPAGE="http://dtach.sourceforge.net/;
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="~alpha amd64 ~arm ppc x86"
-IUSE=""
-
-src_prepare() {
-   epatch "${FILESDIR}"/${P}-CVE-2012-3368.patch
-}
-
-src_install() {
-   dobin dtach
-   doman dtach.1
-   dodoc README
-}



[gentoo-commits] repo/gentoo:master commit in: kde-frameworks/breeze-icons-rcc/, kde-frameworks/breeze-icons/

2019-11-16 Thread Andreas Sturmlechner
commit: 1e7743fb67351610c130dfafc74d392f783ecfd7
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Nov 17 00:21:37 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Nov 17 00:29:46 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e7743fb

kde-frameworks/breeze-icons*: BDEPEND on ECM same as PV

Bug: https://bugs.gentoo.org/700286
Package-Manager: Portage-2.3.79, Repoman-2.3.18
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 kde-frameworks/breeze-icons-rcc/breeze-icons-rcc-5.64.0.ebuild | 3 ++-
 kde-frameworks/breeze-icons/breeze-icons-5.64.0.ebuild | 3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/kde-frameworks/breeze-icons-rcc/breeze-icons-rcc-5.64.0.ebuild 
b/kde-frameworks/breeze-icons-rcc/breeze-icons-rcc-5.64.0.ebuild
index 2a78bd8dcfa..224d82462d7 100644
--- a/kde-frameworks/breeze-icons-rcc/breeze-icons-rcc-5.64.0.ebuild
+++ b/kde-frameworks/breeze-icons-rcc/breeze-icons-rcc-5.64.0.ebuild
@@ -4,6 +4,7 @@
 EAPI=7
 
 KDE_ORG_NAME="breeze-icons"
+PVCUT=$(ver_cut 1-2)
 inherit cmake-utils kde.org
 
 DESCRIPTION="Breeze SVG icon theme binary resource"
@@ -12,8 +13,8 @@ KEYWORDS="~amd64 ~arm64 ~x86"
 IUSE="test"
 
 BDEPEND="
-   kde-frameworks/extra-cmake-modules:5
dev-qt/qtcore:5
+   >=kde-frameworks/extra-cmake-modules-${PVCUT}:5
test? ( app-misc/fdupes )
 "
 DEPEND="test? ( dev-qt/qttest:5 )"

diff --git a/kde-frameworks/breeze-icons/breeze-icons-5.64.0.ebuild 
b/kde-frameworks/breeze-icons/breeze-icons-5.64.0.ebuild
index 4a6392d4b77..53e0bf3e9e9 100644
--- a/kde-frameworks/breeze-icons/breeze-icons-5.64.0.ebuild
+++ b/kde-frameworks/breeze-icons/breeze-icons-5.64.0.ebuild
@@ -3,6 +3,7 @@
 
 EAPI=7
 
+PVCUT=$(ver_cut 1-2)
 inherit cmake-utils kde.org
 
 DESCRIPTION="Breeze SVG icon theme"
@@ -12,7 +13,7 @@ IUSE="test"
 
 BDEPEND="
dev-qt/qtcore:5
-   kde-frameworks/extra-cmake-modules:5
+   >=kde-frameworks/extra-cmake-modules-${PVCUT}:5
test? ( app-misc/fdupes )
 "
 DEPEND="test? ( dev-qt/qttest:5 )"



[gentoo-commits] proj/kde:master commit in: kde-frameworks/breeze-icons-rcc/, kde-frameworks/breeze-icons/

2019-11-16 Thread Andreas Sturmlechner
commit: 512b66558caa1b81acad210bfbd4c3fb5cf525c2
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Nov 17 00:21:37 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Nov 17 00:24:47 2019 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=512b6655

kde-frameworks/breeze-icons*: BDEPEND on ECM same as PV

Bug: https://bugs.gentoo.org/700286
Package-Manager: Portage-2.3.79, Repoman-2.3.18
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 kde-frameworks/breeze-icons-rcc/breeze-icons-rcc-.ebuild | 3 ++-
 kde-frameworks/breeze-icons/breeze-icons-.ebuild | 3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/kde-frameworks/breeze-icons-rcc/breeze-icons-rcc-.ebuild 
b/kde-frameworks/breeze-icons-rcc/breeze-icons-rcc-.ebuild
index 9d09a0ed37..26cdce58ab 100644
--- a/kde-frameworks/breeze-icons-rcc/breeze-icons-rcc-.ebuild
+++ b/kde-frameworks/breeze-icons-rcc/breeze-icons-rcc-.ebuild
@@ -4,6 +4,7 @@
 EAPI=7
 
 KDE_ORG_NAME="breeze-icons"
+PVCUT=$(ver_cut 1-2)
 inherit cmake-utils kde.org
 
 DESCRIPTION="Breeze SVG icon theme binary resource"
@@ -12,8 +13,8 @@ KEYWORDS=""
 IUSE="test"
 
 BDEPEND="
-   kde-frameworks/extra-cmake-modules:5
dev-qt/qtcore:5
+   >=kde-frameworks/extra-cmake-modules-${PVCUT}:5
test? ( app-misc/fdupes )
 "
 DEPEND="test? ( dev-qt/qttest:5 )"

diff --git a/kde-frameworks/breeze-icons/breeze-icons-.ebuild 
b/kde-frameworks/breeze-icons/breeze-icons-.ebuild
index d5c44fe286..5239911101 100644
--- a/kde-frameworks/breeze-icons/breeze-icons-.ebuild
+++ b/kde-frameworks/breeze-icons/breeze-icons-.ebuild
@@ -3,6 +3,7 @@
 
 EAPI=7
 
+PVCUT=$(ver_cut 1-2)
 inherit cmake-utils kde.org
 
 DESCRIPTION="Breeze SVG icon theme"
@@ -12,7 +13,7 @@ IUSE="test"
 
 BDEPEND="
dev-qt/qtcore:5
-   kde-frameworks/extra-cmake-modules:5
+   >=kde-frameworks/extra-cmake-modules-${PVCUT}:5
test? ( app-misc/fdupes )
 "
 DEPEND="test? ( dev-qt/qttest:5 )"



[gentoo-commits] repo/user/ssnb:master commit in: app-misc/cartao-cidadao-git/files/, app-misc/cartao-cidadao-git/

2019-11-16 Thread Samuel Bernardo
commit: f6793d420ef15d0306af4406c73659413373a47c
Author: Samuel Bernardo  gmail  com>
AuthorDate: Sun Nov 17 00:15:42 2019 +
Commit: Samuel Bernardo  gmail  com>
CommitDate: Sun Nov 17 00:15:42 2019 +
URL:https://gitweb.gentoo.org/repo/user/ssnb.git/commit/?id=f6793d42

add cartao-cidadao-git

Signed-off-by: Samuel Bernardo  gmail.com>

 app-misc/cartao-cidadao-git/Manifest   |  10 +++
 .../cartao-cidadao-git-3.0.20.ebuild   |  94 +
 .../cartao-cidadao-git/files/Makefile.gnu.patch|  17 
 .../files/XSECDOMUtils.hpp.patch   |  12 +++
 .../files/XadesSignature.cpp.3.0.16.patch  |  30 +++
 .../files/XadesSignature.cpp.patch |  38 +
 .../files/dlgQndPinpadInfo.cpp.patch   |  20 +
 .../cartao-cidadao-git/files/extras-3.0.16.tar.gz  | Bin 0 -> 93414 bytes
 .../cartao-cidadao-git/files/extras-3.0.20.tar.gz  | Bin 0 -> 133120 bytes
 app-misc/cartao-cidadao-git/files/qmake.patch  |  17 
 app-misc/cartao-cidadao-git/metadata.xml   |  11 +++
 11 files changed, 249 insertions(+)

diff --git a/app-misc/cartao-cidadao-git/Manifest 
b/app-misc/cartao-cidadao-git/Manifest
new file mode 100644
index 000..fe732a3
--- /dev/null
+++ b/app-misc/cartao-cidadao-git/Manifest
@@ -0,0 +1,10 @@
+AUX Makefile.gnu.patch 592 BLAKE2B 
417e9fd33f4ba6897f4ddbcd8ec6e53e2bc50e2f854188e1698ada8c9e2e0ea6bbdf5fbf40ddd11e653ec024abdd9fd37f091b38afcbabef7ed445c98ee3ce75
 SHA512 
8da9359d93fbd4a2ed6df8a58f15228ba13ee7117634e024c2ea759ee046b5ba255d374143b087b506a32d21f44c2cad63b2af95a6834ad051d52e0b5b8aa9cb
+AUX XSECDOMUtils.hpp.patch 536 BLAKE2B 
5ea81c2ef978ab408ece58fc068ab972251bd74b0d163c184169ec96064446d5a3781ca11b918ded7f1af9e04b9ab872a817dfdf45a54cd69326c346fa7fe153
 SHA512 
7ae206233ef95c5e0cd3c6e00dd8d47db81b85c1ee99bbf01c0dff143b8dcf2394a4c211eccb7a8f8fb1c3a2c78d624883865017d7f9a9118fcff9bd03564c66
+AUX XadesSignature.cpp.3.0.16.patch 1005 BLAKE2B 
756f629c778a3c5330631ea786395b4f5c41e5b41ff49d6f22f874a98d6c3bab9be8c46990896e67107f8d00bdbec79f4dd0dd543aa1043664c824f73d883163
 SHA512 
09070ccb55b7b4cc311cb84924dbf791e3b7584aeb7c66cdde8cf5e940169930e8b3f8a4be30fd224b2293ca91ba7e5a13351b3a5fb6ce81d1741ba2120d61e8
+AUX XadesSignature.cpp.patch 1260 BLAKE2B 
db162abcf4011fc99f6cbf09d70fb5109370b1a75057ad6a7f54dac357f748e144ea5a3585bfd4bbfc3f4d8cfa617137673a3e742208257661eeb12c18ca2d81
 SHA512 
0d216324c9bba7497aa1af1498bfc2f4bd048d5ba73b8c5479925a4df7f4950a07130b1285abf6928a36fac723b30943b777e1a9ce9213ab3651b94e0f56dca8
+AUX dlgQndPinpadInfo.cpp.patch 813 BLAKE2B 
47f0f20e56102ee6eeb65209ad9a11544101e7f03bec7d37cfbab35788066daf8afaa915193ce9b61fc566f30b5826fee3ebfb20d647d620b30ec4751221a4fa
 SHA512 
b8ddccf85b652fc28f9fea77016da45b1c2c6122a03e3ee3de6a558c552e60cca29a3009f8197f687a1aed65dedf77573c497267cffd297d3481afd05ededd72
+AUX extras-3.0.16.tar.gz 93414 BLAKE2B 
6f4f30fd6a0f7da8b0daef4bef0012085053d857a06fc811d2f4c534346cf66e91c9d02caa6807de4390a79bec8d4cded904a5b6a16eb34c2c064651d4dc8fa1
 SHA512 
c660421575bcf6e7af50e1e585a3f309e3e0ee855ec81ecc2bee87f42b395b7c817f264e3d4d74a81b98ad6bbf3c89b7c7abe1f7cf23df2ae998639bcb6bd1ae
+AUX extras-3.0.20.tar.gz 133120 BLAKE2B 
7743858d88359d05eae39e1f4e4589714d98fcace12b20d83c23619af37d76b72b63725196ccee5e815a2dfcafb0436bc2c3e40ac6ef2ebca59bc54d1a2c417d
 SHA512 
f7b1cd11e45e170d307de800fc92ea29c5fba7a2f8cae06079b813b9441f70a89bb0ccaae6769bf42007549eed45f6261028dcd6e147fcce9bfaec45bf62867a
+AUX qmake.patch 468 BLAKE2B 
2f91848f33b7d94de801e65d4a97dc3c030701888043df444e10a464f0d796dd7f5f9fc55feef2b8fa175fa984fe4b5f460b6268cce5e7d63d0de78b106deaaf
 SHA512 
ff8ed18d0748e04b1041c7b189a93dfe6674273e677ec86676187b2323ca794d61424204ec8c395c1f5b603c5dd6c346ae2db1cf9886fb42550a827f50c55d34
+EBUILD cartao-cidadao-git-3.0.20.ebuild 2075 BLAKE2B 
31d6e41f432f00381f5a42e51012a7e6dfb7a5e713dbb80768d57b0cbd9625e1c228cff70ec0cf2e6851b1db53975436d7980ea68c6539b870dce2efff936186
 SHA512 
cd8a240dfdaa8fdd7e142e60512dd27c9f32ff60db61a3236081ea2ff160588f64dabe7cda6cfffefdcb2a976bd61e384104f09400345b31d3ba32b86fd5699b
+MISC metadata.xml 352 BLAKE2B 
cd72105d43a6ffe93ea0b14ca747161283860b37f2c70aac1d29227bc1b774fbfc1d8020effb2fd24c3165d1ffab853ce8791dd263cbaf6ceaf44b36036af25b
 SHA512 
19f6c0e85c78157c5c542b951b3907f59b2891567d452163b46fd3369545095e772167eddc87c31a00e7b5283070f233d92edd86cac5159c123615ffd2c298b9

diff --git a/app-misc/cartao-cidadao-git/cartao-cidadao-git-3.0.20.ebuild 
b/app-misc/cartao-cidadao-git/cartao-cidadao-git-3.0.20.ebuild
new file mode 100644
index 000..c124da1
--- /dev/null
+++ b/app-misc/cartao-cidadao-git/cartao-cidadao-git-3.0.20.ebuild
@@ -0,0 +1,94 @@
+# Copyright 1999-2019 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Tools for authenticating with https://www.autenticacao.gov.pt/;
+HOMEPAGE="https://svn.gov.pt/projects/ccidadao;
+
+inherit git-r3 unpacker 

[gentoo-commits] repo/gentoo:master commit in: net-libs/libsignal-protocol-c/

2019-11-16 Thread Andrey Utkin
commit: aba90141a4c0ef90774bd95986cb9aeb35f12c1e
Author: Andrey Utkin  gentoo  org>
AuthorDate: Sat Nov 16 23:04:25 2019 +
Commit: Andrey Utkin  gentoo  org>
CommitDate: Sat Nov 16 23:25:05 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aba90141

net-libs/libsignal-protocol-c: fix comaintainer email

The value I used came from his overlay.

It didn't correspond to his Gentoo bugzilla account email address, which
caused an issue with proxy-maint scripts.

Reported-by: Joonas Niilola  gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.16
Signed-off-by: Andrey Utkin  gentoo.org>

 net-libs/libsignal-protocol-c/metadata.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libsignal-protocol-c/metadata.xml 
b/net-libs/libsignal-protocol-c/metadata.xml
index b84663d18fe..5a4e8024ed9 100644
--- a/net-libs/libsignal-protocol-c/metadata.xml
+++ b/net-libs/libsignal-protocol-c/metadata.xml
@@ -10,7 +10,7 @@
Proxy Maintainers


-   william+gentoo-over...@optmzr.se
+   will...@optmzr.se
William Wennerström





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

2019-11-16 Thread Andreas Sturmlechner
commit: ae0343bc7db4b858ccb3152f1b29eabdce38eef0
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Nov 16 22:23:33 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Nov 16 22:23:33 2019 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=ae0343bc

ecm.eclass: _ECM_UTILS_ECLASS -> _ECM_ECLASS

Was forgotten to rename w/ eclass.

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

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

diff --git a/eclass/ecm.eclass b/eclass/ecm.eclass
index 06c2e9f83e..af4646e959 100644
--- a/eclass/ecm.eclass
+++ b/eclass/ecm.eclass
@@ -27,8 +27,8 @@
 # - Rename vars and function names as needed, see kde5.eclass PORTING comments
 # - Instead of FRAMEWORKS_MINIMAL, define KFMIN in ebuilds and use it for deps
 
-if [[ -z ${_ECM_UTILS_ECLASS} ]]; then
-_ECM_UTILS_ECLASS=1
+if [[ -z ${_ECM_ECLASS} ]]; then
+_ECM_ECLASS=1
 
 # @ECLASS-VARIABLE: VIRTUALX_REQUIRED
 # @DESCRIPTION:



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

2019-11-16 Thread Andreas Sturmlechner
commit: 47b1cff3b25aa7f4b408361006bae4404d96f387
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Nov 16 22:27:31 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Nov 16 22:27:31 2019 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=47b1cff3

kde.org.eclass: Prefix internal functions as well

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

 eclass/kde.org.eclass | 14 +++---
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/eclass/kde.org.eclass b/eclass/kde.org.eclass
index 8e13232bb9..d1cdb1b15d 100644
--- a/eclass/kde.org.eclass
+++ b/eclass/kde.org.eclass
@@ -77,7 +77,7 @@ case ${CATEGORY} in
*) ;;
 esac
 
-_kde_is_unreleased() {
+_kde.org_is_unreleased() {
local pair
for pair in "${KDE_UNRELEASED[@]}" ; do
if [[ "${pair}" = "${CATEGORY}-${PV}" ]]; then
@@ -89,7 +89,7 @@ _kde_is_unreleased() {
 }
 
 # Determine fetch location for released tarballs
-_calculate_src_uri() {
+_kde.org_calculate_src_uri() {
debug-print-function ${FUNCNAME} "$@"
 
local _src_uri="mirror://kde/"
@@ -144,13 +144,13 @@ _calculate_src_uri() {
 
SRC_URI="${_src_uri}${KDE_ORG_NAME}-${PV}.tar.xz"
 
-   if _kde_is_unreleased ; then
+   if _kde.org_is_unreleased ; then
RESTRICT+=" fetch"
fi
 }
 
 # Determine fetch location for live sources
-_calculate_live_repo() {
+_kde.org_calculate_live_repo() {
debug-print-function ${FUNCNAME} "$@"
 
SRC_URI=""
@@ -181,9 +181,9 @@ _calculate_live_repo() {
 }
 
 case ${KDE_BUILD_TYPE} in
-   live) _calculate_live_repo ;;
+   live) _kde.org_calculate_live_repo ;;
*)
-   _calculate_src_uri
+   _kde.org_calculate_src_uri
debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: SRC_URI is 
${SRC_URI}"
;;
 esac
@@ -199,7 +199,7 @@ fi
 # KDE_UNRELEASED, display a giant warning that the package has not yet been
 # released upstream and should not be used.
 kde.org_pkg_nofetch() {
-   if ! _kde_is_unreleased ; then
+   if ! _kde.org_is_unreleased ; then
return
fi
 



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

2019-11-16 Thread Andreas Sturmlechner
commit: 085abe5c61e3bc01b41363a172ca14139f87a469
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Nov 16 19:36:19 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Nov 16 22:41:45 2019 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=085abe5c

kde-apps/kate: Workaround build failure by dropping po dir

Closes: https://bugs.gentoo.org/700244
Package-Manager: Portage-2.3.79, Repoman-2.3.18
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 kde-apps/kate/kate-19.11.80.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/kde-apps/kate/kate-19.11.80.ebuild 
b/kde-apps/kate/kate-19.11.80.ebuild
index 568126824f..d22ff32aeb 100644
--- a/kde-apps/kate/kate-19.11.80.ebuild
+++ b/kde-apps/kate/kate-19.11.80.ebuild
@@ -70,6 +70,7 @@ src_prepare() {
find po -type f -name "*po" -and -name "kwrite*" -delete || die
rm -rf po/*/docs/kwrite || die
fi
+   rm -r po || die # 700244
 }
 
 src_configure() {



  1   2   3   >